diff --git a/docs/0.9.1/.buildinfo b/docs/0.9.1/.buildinfo index 97e82f4d1a..6e1f3fbfa4 100644 --- a/docs/0.9.1/.buildinfo +++ b/docs/0.9.1/.buildinfo @@ -1,4 +1,4 @@ # Sphinx build info version 1 # This file hashes the configuration used when building these files. When it is not found, a full rebuild will be done. -config: cf3619ac3ad9acf90f2a5d3e90e572c5 +config: 9b2ff8faebec5aef9393bdaae11cef51 tags: 645f666f9bcd5a90fca523b33c5a78b7 diff --git a/docs/0.9.1/_modules/evennia.html b/docs/0.9.1/_modules/evennia.html index e92d9e7576..b311798ef1 100644 --- a/docs/0.9.1/_modules/evennia.html +++ b/docs/0.9.1/_modules/evennia.html @@ -490,13 +490,17 @@ # Stopped at breakpoint. Press 'n' to continue into the code. dbg.set_trace() + # initialize the doc string global __doc__ __doc__ = DOCSTRING.format( - "\n- " + "\n- ".join( - f"evennia.{key}" for key in sorted(globals()) - if not key.startswith("_") - and key not in ("DOCSTRING", ))) + "\n- " + + "\n- ".join( + f"evennia.{key}" + for key in sorted(globals()) + if not key.startswith("_") and key not in ("DOCSTRING",) + ) +)
diff --git a/docs/0.9.1/_modules/evennia/accounts/accounts.html b/docs/0.9.1/_modules/evennia/accounts/accounts.html index 9d6ce8354a..d1c8a54f42 100644 --- a/docs/0.9.1/_modules/evennia/accounts/accounts.html +++ b/docs/0.9.1/_modules/evennia/accounts/accounts.html @@ -692,6 +692,53 @@ logger.log_sec(f"Password successfully changed for {self}.") self.at_password_change() +
[docs] def create_character(self, *args, **kwargs): + """ + Create a character linked to this account. + + Args: + key (str, optional): If not given, use the same name as the account. + typeclass (str, optional): Typeclass to use for this character. If + not given, use settings.BASE_CHARACTER_TYPECLASS. + permissions (list, optional): If not given, use the account's permissions. + ip (str, optiona): The client IP creating this character. Will fall back to the + one stored for the account if not given. + kwargs (any): Other kwargs will be used in the create_call. + Returns: + Object: A new character of the `character_typeclass` type. None on an error. + list or None: A list of errors, or None. + + """ + # parse inputs + character_key = kwargs.pop("key", self.key) + character_ip = kwargs.pop("ip", self.db.creator_ip) + character_permissions = kwargs.pop("permissions", self.permissions) + + # Load the appropriate Character class + character_typeclass = kwargs.pop("typeclass", None) + character_typeclass = ( + character_typeclass if character_typeclass else settings.BASE_CHARACTER_TYPECLASS + ) + Character = class_from_module(character_typeclass) + + # Create the character + character, errs = Character.create( + character_key, + self, + ip=character_ip, + typeclass=character_typeclass, + permissions=character_permissions, + **kwargs, + ) + if character: + # Update playable character list + if character not in self.characters: + self.db._playable_characters.append(character) + + # We need to set this to have @ic auto-connect to this character + self.db._last_puppet = character + return character, errs
+
[docs] @classmethod def create(cls, *args, **kwargs): """ @@ -800,31 +847,13 @@ logger.log_err(string) if account and settings.MULTISESSION_MODE < 2: - # Load the appropriate Character class - character_typeclass = kwargs.get( - "character_typeclass", settings.BASE_CHARACTER_TYPECLASS + # Auto-create a character to go with this account + + character, errs = account.create_character( + typeclass=kwargs.get("character_typeclass") ) - character_home = kwargs.get("home") - Character = class_from_module(character_typeclass) - - # Create the character - character, errs = Character.create( - account.key, - account, - ip=ip, - typeclass=character_typeclass, - permissions=permissions, - home=character_home, - ) - errors.extend(errs) - - if character: - # Update playable character list - if character not in account.characters: - account.db._playable_characters.append(character) - - # We need to set this to have @ic auto-connect to this character - account.db._last_puppet = character + if errs: + errors.extend(errs) except Exception: # We are in the middle between logged in and -not, so we have @@ -961,6 +990,7 @@ nofound_string=None, multimatch_string=None, use_nicks=True, + quiet=False, **kwargs, ): """ @@ -987,9 +1017,13 @@ message to echo if `searchdata` leads to multiple matches. If not given, will fall back to the default handler. use_nicks (bool, optional): Use account-level nick replacement. + quiet (bool, optional): If set, will not show any error to the user, + and will also lead to returning a list of matches. Return: match (Account, Object or None): A single Account or Object match. + list: If `quiet=True` this is a list of 0, 1 or more Account or Object matches. + Notes: Extra keywords are ignored, but are allowed in call in order to make API more consistent with @@ -1001,28 +1035,31 @@ # handle wrapping of common terms if searchdata.lower() in ("me", "*me", "self", "*self"): return self - if search_object: - matches = ObjectDB.objects.object_search( - searchdata, typeclass=typeclass, use_nicks=use_nicks - ) - else: - searchdata = self.nicks.nickreplace( - searchdata, categories=("account",), include_account=False - ) - - matches = AccountDB.objects.account_search(searchdata, typeclass=typeclass) - matches = _AT_SEARCH_RESULT( - matches, - self, - query=searchdata, - nofound_string=nofound_string, - multimatch_string=multimatch_string, + searchdata = self.nicks.nickreplace( + searchdata, categories=("account",), include_account=False ) - if matches and return_puppet: - try: - return matches.puppet - except AttributeError: - return None + if search_object: + matches = ObjectDB.objects.object_search(searchdata, typeclass=typeclass) + else: + matches = AccountDB.objects.account_search(searchdata, typeclass=typeclass) + + if quiet: + matches = list(matches) + if return_puppet: + matches = [match.puppet for match in matches] + else: + matches = _AT_SEARCH_RESULT( + matches, + self, + query=searchdata, + nofound_string=nofound_string, + multimatch_string=multimatch_string, + ) + if matches and return_puppet: + try: + matches = matches.puppet + except AttributeError: + return None return matches
[docs] def access( @@ -1589,7 +1626,7 @@ try: # Find an available guest name. for name in settings.GUEST_LIST: - if not AccountDB.objects.filter(username__iexact=name).count(): + if not AccountDB.objects.filter(username__iexact=name).exists(): username = name break if not username: @@ -1615,6 +1652,15 @@ ip=ip, ) errors.extend(errs) + + if not account.characters: + # this can happen for multisession_mode > 1. For guests we + # always auto-create a character, regardless of multi-session-mode. + character, errs = account.create_character() + + if errs: + errors.extend(errs) + return account, errors except Exception as e: diff --git a/docs/0.9.1/_modules/evennia/accounts/admin.html b/docs/0.9.1/_modules/evennia/accounts/admin.html index 728639c9d1..44bb94cfa5 100644 --- a/docs/0.9.1/_modules/evennia/accounts/admin.html +++ b/docs/0.9.1/_modules/evennia/accounts/admin.html @@ -45,13 +45,26 @@ # from django import forms from django.conf import settings -from django.contrib import admin +from django.contrib import admin, messages +from django.contrib.admin.options import IS_POPUP_VAR from django.contrib.auth.admin import UserAdmin as BaseUserAdmin from django.contrib.auth.forms import UserChangeForm, UserCreationForm +from django.contrib.admin.utils import unquote +from django.template.response import TemplateResponse +from django.http import Http404, HttpResponseRedirect +from django.core.exceptions import PermissionDenied +from django.views.decorators.debug import sensitive_post_parameters +from django.utils.decorators import method_decorator +from django.utils.html import escape +from django.urls import path, reverse +from django.contrib.auth import update_session_auth_hash + from evennia.accounts.models import AccountDB from evennia.typeclasses.admin import AttributeInline, TagInline from evennia.utils import create +sensitive_post_parameters_m = method_decorator(sensitive_post_parameters()) + # handle the custom User editor
[docs]class AccountDBChangeForm(UserChangeForm): @@ -128,7 +141,8 @@
[docs] class Meta(object): model = AccountDB - fields = "__all__"
+ fields = "__all__" + app_label = "accounts"
db_key = forms.RegexField( label="Username", @@ -300,6 +314,70 @@ ), ) +
[docs] @sensitive_post_parameters_m + def user_change_password(self, request, id, form_url=""): + user = self.get_object(request, unquote(id)) + if not self.has_change_permission(request, user): + raise PermissionDenied + if user is None: + raise Http404("%(name)s object with primary key %(key)r does not exist.") % { + "name": self.model._meta.verbose_name, + "key": escape(id), + } + if request.method == "POST": + form = self.change_password_form(user, request.POST) + if form.is_valid(): + form.save() + change_message = self.construct_change_message(request, form, None) + self.log_change(request, user, change_message) + msg = "Password changed successfully." + messages.success(request, msg) + update_session_auth_hash(request, form.user) + return HttpResponseRedirect( + reverse( + "%s:%s_%s_change" + % ( + self.admin_site.name, + user._meta.app_label, + # the model_name is something we need to hardcode + # since our accountdb is a proxy: + "accountdb", + ), + args=(user.pk,), + ) + ) + else: + form = self.change_password_form(user) + + fieldsets = [(None, {"fields": list(form.base_fields)})] + adminForm = admin.helpers.AdminForm(form, fieldsets, {}) + + context = { + "title": "Change password: %s" % escape(user.get_username()), + "adminForm": adminForm, + "form_url": form_url, + "form": form, + "is_popup": (IS_POPUP_VAR in request.POST or IS_POPUP_VAR in request.GET), + "add": True, + "change": False, + "has_delete_permission": False, + "has_change_permission": True, + "has_absolute_url": False, + "opts": self.model._meta, + "original": user, + "save_as": False, + "show_save": True, + **self.admin_site.each_context(request), + } + + request.current_app = self.admin_site.name + + return TemplateResponse( + request, + self.change_user_password_template or "admin/auth/user/change_password.html", + context, + )
+
[docs] def save_model(self, request, obj, form, change): """ Custom save actions. diff --git a/docs/0.9.1/_modules/evennia/accounts/models.html b/docs/0.9.1/_modules/evennia/accounts/models.html index f166b17767..cf6d926220 100644 --- a/docs/0.9.1/_modules/evennia/accounts/models.html +++ b/docs/0.9.1/_modules/evennia/accounts/models.html @@ -150,8 +150,8 @@ __applabel__ = "accounts" __settingsclasspath__ = settings.BASE_SCRIPT_TYPECLASS - class Meta(object): - verbose_name = "Account" + # class Meta: + # verbose_name = "Account" # cmdset_storage property # This seems very sensitive to caching, so leaving it be for now /Griatch diff --git a/docs/0.9.1/_modules/evennia/commands/cmdhandler.html b/docs/0.9.1/_modules/evennia/commands/cmdhandler.html index 9e8a09b543..7eef0f6a20 100644 --- a/docs/0.9.1/_modules/evennia/commands/cmdhandler.html +++ b/docs/0.9.1/_modules/evennia/commands/cmdhandler.html @@ -513,13 +513,13 @@ tempmergers[prio] = cmdset # sort cmdsets after reverse priority (highest prio are merged in last) - cmdsets = yield sorted(list(tempmergers.values()), key=lambda x: x.priority) + sorted_cmdsets = yield sorted(list(tempmergers.values()), key=lambda x: x.priority) # Merge all command sets into one, beginning with the lowest-prio one - cmdset = cmdsets[0] - for merging_cmdset in cmdsets[1:]: + cmdset = sorted_cmdsets[0] + for merging_cmdset in sorted_cmdsets[1:]: cmdset = yield cmdset + merging_cmdset - # store the full sets for diagnosis + # store the original, ungrouped set for diagnosis cmdset.merged_from = cmdsets # cache _CMDSET_MERGE_CACHE[mergehash] = cmdset diff --git a/docs/0.9.1/_modules/evennia/commands/cmdset.html b/docs/0.9.1/_modules/evennia/commands/cmdset.html index 592f0f6d4c..1e70d02384 100644 --- a/docs/0.9.1/_modules/evennia/commands/cmdset.html +++ b/docs/0.9.1/_modules/evennia/commands/cmdset.html @@ -484,12 +484,12 @@ # print "__add__ for %s (prio %i) called with %s (prio %i)." % (self.key, self.priority, cmdset_a.key, cmdset_a.priority) # return the system commands to the cmdset - cmdset_c.add(sys_commands) + cmdset_c.add(sys_commands, allow_duplicates=True) return cmdset_c -
[docs] def add(self, cmd): +
[docs] def add(self, cmd, allow_duplicates=False): """ - Add a new command or commands to this CmdSetcommand, a list of + Add a new command or commands to this CmdSet, a list of commands or a cmdset to this cmdset. Note that this is *not* a merge operation (that is handled by the + operator). @@ -497,6 +497,9 @@ cmd (Command, list, Cmdset): This allows for adding one or more commands to this Cmdset in one go. If another Cmdset is given, all its commands will be added. + allow_duplicates (bool, optional): If set, will not try to remove + duplicate cmds in the set. This is needed during the merge process + to avoid wiping commands coming from cmdsets with duplicate=True. Notes: If cmd already exists in set, it will replace the old one @@ -539,8 +542,10 @@ commands[ic] = cmd # replace except ValueError: commands.append(cmd) - # extra run to make sure to avoid doublets - self.commands = list(set(commands)) + self.commands = commands + if not allow_duplicates: + # extra run to make sure to avoid doublets + self.commands = list(set(self.commands)) # add system_command to separate list as well, # for quick look-up if cmd.key.startswith("__"): diff --git a/docs/0.9.1/_modules/evennia/commands/default/account.html b/docs/0.9.1/_modules/evennia/commands/default/account.html index 803f5ad8aa..c70eaa5377 100644 --- a/docs/0.9.1/_modules/evennia/commands/default/account.html +++ b/docs/0.9.1/_modules/evennia/commands/default/account.html @@ -195,7 +195,8 @@ if not account.is_superuser and ( account.db._playable_characters and len(account.db._playable_characters) >= charmax ): - self.msg("You may only create a maximum of %i characters." % charmax) + plural = "" if charmax == 1 else "s" + self.msg(f"You may only create a maximum of {charmax} character{plural}.") return from evennia.objects.models import ObjectDB @@ -341,27 +342,68 @@ session = self.session new_character = None + character_candidates = [] + if not self.args: - new_character = account.db._last_puppet - if not new_character: + character_candidates = [account.db._last_puppet] or [] + if not character_candidates: self.msg("Usage: ic <character>") return - if not new_character: - # search for a matching character - new_character = [ - char for char in search.object_search(self.args) if char.access(account, "puppet") - ] - if not new_character: - self.msg("That is not a valid character choice.") - return - if len(new_character) > 1: - self.msg( - "Multiple targets with the same name:\n %s" - % ", ".join("%s(#%s)" % (obj.key, obj.id) for obj in new_character) + else: + # argument given + + if account.db._playable_characters: + # look at the playable_characters list first + character_candidates.extend( + account.search( + self.args, + candidates=account.db._playable_characters, + search_object=True, + quiet=True, + ) ) - return - else: - new_character = new_character[0] + + if account.locks.check_lockstring(account, "perm(Builder)"): + # builders and higher should be able to puppet more than their + # playable characters. + if session.puppet: + # start by local search - this helps to avoid the user + # getting locked into their playable characters should one + # happen to be named the same as another. We replace the suggestion + # from playable_characters here - this allows builders to puppet objects + # with the same name as their playable chars should it be necessary + # (by going to the same location). + character_candidates = [ + char + for char in session.puppet.search(self.args, quiet=True) + if char.access(account, "puppet") + ] + if not character_candidates: + # fall back to global search only if Builder+ has no + # playable_characers in list and is not standing in a room + # with a matching char. + character_candidates.extend( + [ + char + for char in search.object_search(self.args) + if char.access(account, "puppet") + ] + ) + + # handle possible candidates + if not character_candidates: + self.msg("That is not a valid character choice.") + return + if len(character_candidates) > 1: + self.msg( + "Multiple targets with the same name:\n %s" + % ", ".join("%s(#%s)" % (obj.key, obj.id) for obj in character_candidates) + ) + return + else: + new_character = character_candidates[0] + + # do the puppet puppet try: account.puppet_object(session, new_character) account.db._last_puppet = new_character diff --git a/docs/0.9.1/_modules/evennia/commands/default/batchprocess.html b/docs/0.9.1/_modules/evennia/commands/default/batchprocess.html index af9dbf9104..959f8e9f0a 100644 --- a/docs/0.9.1/_modules/evennia/commands/default/batchprocess.html +++ b/docs/0.9.1/_modules/evennia/commands/default/batchprocess.html @@ -91,35 +91,6 @@ Error reported was: '%s' """ -_PROCPOOL_BATCHCMD_SOURCE = """ -from evennia.commands.default.batchprocess import batch_cmd_exec, step_pointer, BatchSafeCmdSet -caller.ndb.batch_stack = commands -caller.ndb.batch_stackptr = 0 -caller.ndb.batch_batchmode = "batch_commands" -caller.cmdset.add(BatchSafeCmdSet) -for inum in range(len(commands)): - print "command:", inum - caller.cmdset.add(BatchSafeCmdSet) - if not batch_cmd_exec(caller): - break - step_pointer(caller, 1) -print "leaving run ..." -""" -_PROCPOOL_BATCHCODE_SOURCE = """ -from evennia.commands.default.batchprocess import batch_code_exec, step_pointer, BatchSafeCmdSet -caller.ndb.batch_stack = codes -caller.ndb.batch_stackptr = 0 -caller.ndb.batch_batchmode = "batch_code" -caller.cmdset.add(BatchSafeCmdSet) -for inum in range(len(codes)): - print "code:", inum - caller.cmdset.add(BatchSafeCmdSet) - if not batch_code_exec(caller): - break - step_pointer(caller, 1) -print "leaving run ..." -""" - # ------------------------------------------------------------- # Helper functions @@ -341,42 +312,17 @@ "for %s (this might take some time) ..." % python_path ) - procpool = False - if "PythonProcPool" in utils.server_services(): - if utils.uses_database("sqlite3"): - caller.msg("Batchprocessor disabled ProcPool under SQLite3.") - else: - procpool = True - - if procpool: - # run in parallel process - def callback(r): - caller.msg(" |GBatchfile '%s' applied." % python_path) - purge_processor(caller) - - def errback(e): - caller.msg(" |RError from processor: '%s'" % e) - purge_processor(caller) - - utils.run_async( - _PROCPOOL_BATCHCMD_SOURCE, - commands=commands, - caller=caller, - at_return=callback, - at_err=errback, - ) - else: - # run in-process (might block) - for _ in range(len(commands)): - # loop through the batch file - if not batch_cmd_exec(caller): - return - step_pointer(caller, 1) - # clean out the safety cmdset and clean out all other - # temporary attrs. - string = " Batchfile '%s' applied." % python_path - caller.msg("|G%s" % string) - purge_processor(caller)
+ # run in-process (might block) + for _ in range(len(commands)): + # loop through the batch file + if not batch_cmd_exec(caller): + return + step_pointer(caller, 1) + # clean out the safety cmdset and clean out all other + # temporary attrs. + string = " Batchfile '%s' applied." % python_path + caller.msg("|G%s" % string) + purge_processor(caller)
[docs]class CmdBatchCode(_COMMAND_DEFAULT_CLASS): @@ -461,41 +407,16 @@ else: caller.msg("Running Batch-code processor - Automatic mode for %s ..." % python_path) - procpool = False - if "PythonProcPool" in utils.server_services(): - if utils.uses_database("sqlite3"): - caller.msg("Batchprocessor disabled ProcPool under SQLite3.") - else: - procpool = True - if procpool: - # run in parallel process - def callback(r): - caller.msg(" |GBatchfile '%s' applied." % python_path) - purge_processor(caller) - - def errback(e): - caller.msg(" |RError from processor: '%s'" % e) - purge_processor(caller) - - utils.run_async( - _PROCPOOL_BATCHCODE_SOURCE, - codes=codes, - caller=caller, - at_return=callback, - at_err=errback, - ) - else: - # un in-process (will block) - for _ in range(len(codes)): - # loop through the batch file - if not batch_code_exec(caller): - return - step_pointer(caller, 1) - # clean out the safety cmdset and clean out all other - # temporary attrs. - string = " Batchfile '%s' applied." % python_path - caller.msg("|G%s" % string) - purge_processor(caller)
+ for _ in range(len(codes)): + # loop through the batch file + if not batch_code_exec(caller): + return + step_pointer(caller, 1) + # clean out the safety cmdset and clean out all other + # temporary attrs. + string = " Batchfile '%s' applied." % python_path + caller.msg("|G%s" % string) + purge_processor(caller) # ------------------------------------------------------------- diff --git a/docs/0.9.1/_modules/evennia/commands/default/building.html b/docs/0.9.1/_modules/evennia/commands/default/building.html index fd78e3de3a..157f50a97a 100644 --- a/docs/0.9.1/_modules/evennia/commands/default/building.html +++ b/docs/0.9.1/_modules/evennia/commands/default/building.html @@ -57,11 +57,13 @@ dbref, interactive, list_to_string, + display_len, ) from evennia.utils.eveditor import EvEditor from evennia.utils.evmore import EvMore from evennia.prototypes import spawner, prototypes as protlib, menus as olc_menus -from evennia.utils.ansi import raw +from evennia.utils.ansi import raw as ansi_raw +from evennia.utils.inlinefuncs import raw as inlinefunc_raw COMMAND_DEFAULT_CLASS = class_from_module(settings.COMMAND_DEFAULT_CLASS) @@ -1448,6 +1450,7 @@ locks = "cmd:perm(open) or perm(Builder)" help_category = "Building" + new_obj_lockstring = "control:id({id}) or perm(Admin);delete:id({id}) or perm(Admin)" # a custom member method to chug out exits and do checks
[docs] def create_exit(self, exit_name, location, destination, exit_aliases=None, typeclass=None): """ @@ -1493,10 +1496,16 @@ else: # exit does not exist before. Create a new one. + lockstring = self.new_obj_lockstring.format(id=caller.id) if not typeclass: typeclass = settings.BASE_EXIT_TYPECLASS exit_obj = create.create_object( - typeclass, key=exit_name, location=location, aliases=exit_aliases, report_to=caller + typeclass, + key=exit_name, + location=location, + aliases=exit_aliases, + locks=lockstring, + report_to=caller, ) if exit_obj: # storing a destination is what makes it an exit! @@ -2396,116 +2405,160 @@ arg_regex = r"(/\w+?(\s|$))|\s|$" account_mode = False + detail_color = "|c" + header_color = "|w" + quell_color = "|r" + separator = "-"
[docs] def list_attribute(self, crop, attr, category, value): """ Formats a single attribute line. + + Args: + crop (bool): If output should be cropped if too long. + attr (str): Attribute key. + category (str): Attribute category. + value (any): Attribute value. + Returns: """ + if attr is None: + return "No such attribute was found." + value = utils.to_str(value) if crop: - if not isinstance(value, str): - value = utils.to_str(value) value = utils.crop(value) + value = inlinefunc_raw(ansi_raw(value)) if category: - string = "\n %s[%s] = %s" % (attr, category, value) + return f"{attr}[{category}] = {value}" else: - string = "\n %s = %s" % (attr, value) - string = raw(string) - return string
+ return f"{attr} = {value}"
[docs] def format_attributes(self, obj, attrname=None, crop=True): """ Helper function that returns info about attributes and/or non-persistent data stored on object - """ + """ if attrname: - db_attr = [(attrname, obj.attributes.get(attrname), None)] + if obj.attributes.has(attrname): + db_attr = [(attrname, obj.attributes.get(attrname), None)] + else: + db_attr = None try: ndb_attr = [(attrname, object.__getattribute__(obj.ndb, attrname))] except Exception: ndb_attr = None + if not (db_attr or ndb_attr): + return {"Attribue(s)": f"\n No Attribute '{attrname}' found on {obj.name}"} else: db_attr = [(attr.key, attr.value, attr.category) for attr in obj.db_attributes.all()] try: ndb_attr = obj.nattributes.all(return_tuples=True) except Exception: - ndb_attr = None - string = "" + ndb_attr = (None, None, None) + + output = {} if db_attr and db_attr[0]: - string += "\n|wPersistent attributes|n:" - for attr, value, category in db_attr: - string += self.list_attribute(crop, attr, category, value) + output["Persistent attribute(s)"] = "\n " + "\n ".join( + sorted( + self.list_attribute(crop, attr, category, value) + for attr, value, category in db_attr + ) + ) if ndb_attr and ndb_attr[0]: - string += "\n|wNon-Persistent attributes|n:" - for attr, value in ndb_attr: - string += self.list_attribute(crop, attr, None, value) - return string
+ output["Non-Persistent attribute(s)"] = " \n" + " \n".join( + sorted(self.list_attribute(crop, attr, None, value) for attr, value in ndb_attr) + ) + return output
[docs] def format_output(self, obj, avail_cmdset): """ Helper function that creates a nice report about an object. - returns a string. + Args: + obj (any): Object to analyze. + avail_cmdset (CmdSet): Current cmdset for object. + + Returns: + str: The formatted string. + """ - string = "\n|wName/key|n: |c%s|n (%s)" % (obj.name, obj.dbref) + hclr = self.header_color + dclr = self.detail_color + qclr = self.quell_color + + output = {} + # main key + output["Name/key"] = f"{dclr}{obj.name}|n ({obj.dbref})" + # aliases if hasattr(obj, "aliases") and obj.aliases.all(): - string += "\n|wAliases|n: %s" % (", ".join(utils.make_iter(str(obj.aliases)))) + output["Aliases"] = ", ".join(utils.make_iter(str(obj.aliases))) + # typeclass + output["Typeclass"] = f"{obj.typename} ({obj.typeclass_path})" + # sessions if hasattr(obj, "sessions") and obj.sessions.all(): - string += "\n|wSession id(s)|n: %s" % ( - ", ".join("#%i" % sess.sessid for sess in obj.sessions.all()) - ) + output["Session id(s)"] = ", ".join(f"#{sess.sessid}" for sess in obj.sessions.all()) + # email, if any if hasattr(obj, "email") and obj.email: - string += "\n|wEmail|n: |c%s|n" % obj.email + output["Email"] = f"{dclr}{obj.email}|n" + # account, for puppeted objects if hasattr(obj, "has_account") and obj.has_account: - string += "\n|wAccount|n: |c%s|n" % obj.account.name + output["Account"] = f"{dclr}{obj.account.name}|n ({obj.account.dbref})" + # account typeclass + output[" Account Typeclass"] = f"{obj.account.typename} ({obj.account.typeclass_path})" + # account permissions perms = obj.account.permissions.all() if obj.account.is_superuser: perms = ["<Superuser>"] elif not perms: perms = ["<None>"] - string += "\n|wAccount Perms|n: %s" % (", ".join(perms)) + perms = ", ".join(perms) if obj.account.attributes.has("_quell"): - string += " |r(quelled)|n" - string += "\n|wTypeclass|n: %s (%s)" % (obj.typename, obj.typeclass_path) + perms += f" {qclr}(quelled)|n" + output[" Account Permissions"] = perms + # location if hasattr(obj, "location"): - string += "\n|wLocation|n: %s" % obj.location + loc = str(obj.location) if obj.location: - string += " (#%s)" % obj.location.id + loc += f" (#{obj.location.id})" + output["Location"] = loc + # home if hasattr(obj, "home"): - string += "\n|wHome|n: %s" % obj.home + home = str(obj.home) if obj.home: - string += " (#%s)" % obj.home.id + home += f" (#{obj.home.id})" + output["Home"] = home + # destination, for exits if hasattr(obj, "destination") and obj.destination: - string += "\n|wDestination|n: %s" % obj.destination + dest = str(obj.destination) if obj.destination: - string += " (#%s)" % obj.destination.id + dest += f" (#{obj.destination.id})" + output["Destination"] = dest + # main permissions perms = obj.permissions.all() + perms_string = "" if perms: perms_string = ", ".join(perms) - else: - perms_string = "<None>" if obj.is_superuser: - perms_string += " [Superuser]" - - string += "\n|wPermissions|n: %s" % perms_string - + perms_string += " <Superuser>" + if perms_string: + output["Permissions"] = perms_string + # locks locks = str(obj.locks) if locks: - locks_string = utils.fill("; ".join([lock for lock in locks.split(";")]), indent=6) + locks_string = "\n" + utils.fill( + "; ".join([lock for lock in locks.split(";")]), indent=2 + ) else: locks_string = " Default" - string += "\n|wLocks|n:%s" % locks_string - + output["Locks"] = locks_string + # cmdsets if not (len(obj.cmdset.all()) == 1 and obj.cmdset.current.key == "_EMPTY_CMDSET"): # all() returns a 'stack', so make a copy to sort. stored_cmdsets = sorted(obj.cmdset.all(), key=lambda x: x.priority, reverse=True) - string += "\n|wStored Cmdset(s)|n:\n %s" % ( - "\n ".join( - "%s [%s] (%s, prio %s)" - % (cmdset.path, cmdset.key, cmdset.mergetype, cmdset.priority) - for cmdset in stored_cmdsets - if cmdset.key != "_EMPTY_CMDSET" - ) + output["Stored Cmdset(s)"] = "\n " + "\n ".join( + f"{cmdset.path} [{cmdset.key}] ({cmdset.mergetype}, prio {cmdset.priority})" + for cmdset in stored_cmdsets + if cmdset.key != "_EMPTY_CMDSET" ) # this gets all components of the currently merged set @@ -2539,40 +2592,28 @@ pass all_cmdsets = [cmdset for cmdset in dict(all_cmdsets).values()] all_cmdsets.sort(key=lambda x: x.priority, reverse=True) - string += "\n|wMerged Cmdset(s)|n:\n %s" % ( - "\n ".join( - "%s [%s] (%s, prio %s)" - % (cmdset.path, cmdset.key, cmdset.mergetype, cmdset.priority) - for cmdset in all_cmdsets - ) + output["Merged Cmdset(s)"] = "\n " + "\n ".join( + f"{cmdset.path} [{cmdset.key}] ({cmdset.mergetype} prio {cmdset.priority})" + for cmdset in all_cmdsets ) - # list the commands available to this object avail_cmdset = sorted([cmd.key for cmd in avail_cmdset if cmd.access(obj, "cmd")]) - cmdsetstr = utils.fill(", ".join(avail_cmdset), indent=2) - string += "\n|wCommands available to %s (result of Merged CmdSets)|n:\n %s" % ( - obj.key, - cmdsetstr, - ) - + cmdsetstr = "\n" + utils.fill(", ".join(avail_cmdset), indent=2) + output[f"Commands available to {obj.key} (result of Merged CmdSets)"] = str(cmdsetstr) + # scripts if hasattr(obj, "scripts") and hasattr(obj.scripts, "all") and obj.scripts.all(): - string += "\n|wScripts|n:\n %s" % obj.scripts + output["Scripts"] = "\n " + f"{obj.scripts}" # add the attributes - string += self.format_attributes(obj) - - # display Tags - tags_string = utils.fill( - ", ".join( - "%s[%s]" % (tag, category) - for tag, category in obj.tags.all(return_key_and_category=True) - ), - indent=5, + output.update(self.format_attributes(obj)) + # Tags + tags = obj.tags.all(return_key_and_category=True) + tags_string = "\n" + utils.fill( + ", ".join(sorted(f"{tag}[{category}]" for tag, category in tags)), indent=2, ) - if tags_string: - string += "\n|wTags[category]|n: %s" % tags_string.strip() - - # add the contents + if tags: + output["Tags[category]"] = tags_string + # Contents of object exits = [] pobjs = [] things = [] @@ -2585,24 +2626,28 @@ else: things.append(content) if exits: - string += "\n|wExits|n: %s" % ", ".join( - ["%s(%s)" % (exit.name, exit.dbref) for exit in exits] + output["Exits (has .destination)"] = ", ".join( + f"{exit.name}({exit.dbref})" for exit in exits ) if pobjs: - string += "\n|wCharacters|n: %s" % ", ".join( - ["|c%s|n(%s)" % (pobj.name, pobj.dbref) for pobj in pobjs] + output["Characters"] = ", ".join( + f"{dclr}{pobj.name}|n({pobj.dbref})" for pobj in pobjs ) if things: - string += "\n|wContents|n: %s" % ", ".join( - [ - "%s(%s)" % (cont.name, cont.dbref) - for cont in obj.contents - if cont not in exits and cont not in pobjs - ] + output["Contents"] = ", ".join( + f"{cont.name}({cont.dbref})" + for cont in obj.contents + if cont not in exits and cont not in pobjs ) - separator = "-" * _DEFAULT_WIDTH - # output info - return "%s\n%s\n%s" % (separator, string.strip(), separator)
+ # format output + max_width = -1 + for block in output.values(): + max_width = max(max_width, max(display_len(line) for line in block.split("\n"))) + max_width = max(0, min(self.client_width(), max_width)) + + sep = self.separator * max_width + mainstr = "\n".join(f"{hclr}{header}|n: {block}" for (header, block) in output.items()) + return f"{sep}\n{mainstr}\n{sep}"
[docs] def func(self): """Process command""" @@ -2617,8 +2662,7 @@ that function finishes. Taking the resulting cmdset, we continue to format and output the result. """ - string = self.format_output(obj, cmdset) - self.msg(string.strip()) + self.msg(self.format_output(obj, cmdset).strip()) if not self.args: # If no arguments are provided, examine the invoker's location. @@ -2672,7 +2716,13 @@ if obj_attrs: for attrname in obj_attrs: # we are only interested in specific attributes - caller.msg(self.format_attributes(obj, attrname, crop=False)) + ret = "\n".join( + f"{self.header_color}{header}|n:{value}" + for header, value in self.format_attributes( + obj, attrname, crop=False + ).items() + ) + self.caller.msg(ret) else: session = None if obj.sessions.count(): diff --git a/docs/0.9.1/_modules/evennia/commands/default/general.html b/docs/0.9.1/_modules/evennia/commands/default/general.html index 67ae766650..bc36d35c79 100644 --- a/docs/0.9.1/_modules/evennia/commands/default/general.html +++ b/docs/0.9.1/_modules/evennia/commands/default/general.html @@ -467,11 +467,16 @@ if not obj.at_before_get(caller): return - obj.move_to(caller, quiet=True) - caller.msg("You pick up %s." % obj.name) - caller.location.msg_contents("%s picks up %s." % (caller.name, obj.name), exclude=caller) - # calling at_get hook method - obj.at_get(caller)
+ success = obj.move_to(caller, quiet=True) + if not success: + caller.msg("This can't be picked up.") + else: + caller.msg("You pick up %s." % obj.name) + caller.location.msg_contents( + "%s picks up %s." % (caller.name, obj.name), exclude=caller + ) + # calling at_get hook method + obj.at_get(caller)
[docs]class CmdDrop(COMMAND_DEFAULT_CLASS): @@ -512,11 +517,14 @@ if not obj.at_before_drop(caller): return - obj.move_to(caller.location, quiet=True) - caller.msg("You drop %s." % (obj.name,)) - caller.location.msg_contents("%s drops %s." % (caller.name, obj.name), exclude=caller) - # Call the object script's at_drop() method. - obj.at_drop(caller)
+ success = obj.move_to(caller.location, quiet=True) + if not success: + caller.msg("This couldn't be dropped.") + else: + caller.msg("You drop %s." % (obj.name,)) + caller.location.msg_contents("%s drops %s." % (caller.name, obj.name), exclude=caller) + # Call the object script's at_drop() method. + obj.at_drop(caller)
[docs]class CmdGive(COMMAND_DEFAULT_CLASS): @@ -563,11 +571,14 @@ return # give object - caller.msg("You give %s to %s." % (to_give.key, target.key)) - to_give.move_to(target, quiet=True) - target.msg("%s gives you %s." % (caller.key, to_give.key)) - # Call the object script's at_give() method. - to_give.at_give(caller, target)
+ success = to_give.move_to(target, quiet=True) + if not success: + caller.msg("This could not be given.") + else: + caller.msg("You give %s to %s." % (to_give.key, target.key)) + target.msg("%s gives you %s." % (caller.key, to_give.key)) + # Call the object script's at_give() method. + to_give.at_give(caller, target)
[docs]class CmdSetDesc(COMMAND_DEFAULT_CLASS): diff --git a/docs/0.9.1/_modules/evennia/commands/default/muxcommand.html b/docs/0.9.1/_modules/evennia/commands/default/muxcommand.html index 34cfed534e..cb4218bdad 100644 --- a/docs/0.9.1/_modules/evennia/commands/default/muxcommand.html +++ b/docs/0.9.1/_modules/evennia/commands/default/muxcommand.html @@ -243,12 +243,6 @@ else: self.character = None
- def get_command_info(self): - """ - Update of parent class's get_command_info() for MuxCommand. - """ - self.get_command_info() -
[docs] def get_command_info(self): """ Update of parent class's get_command_info() for MuxCommand. diff --git a/docs/0.9.1/_modules/evennia/commands/default/system.html b/docs/0.9.1/_modules/evennia/commands/default/system.html index 807917c8a8..c0d2e6f988 100644 --- a/docs/0.9.1/_modules/evennia/commands/default/system.html +++ b/docs/0.9.1/_modules/evennia/commands/default/system.html @@ -489,7 +489,9 @@ table.add_row( script.id, - script.obj.key if (hasattr(script, "obj") and script.obj) else "<Global>", + f"{script.obj.key}({script.obj.dbref})" + if (hasattr(script, "obj") and script.obj) + else "<Global>", script.key, script.interval if script.interval > 0 else "--", nextrep, diff --git a/docs/0.9.1/_modules/evennia/commands/default/tests.html b/docs/0.9.1/_modules/evennia/commands/default/tests.html index 3f9687fbdb..95af3e073a 100644 --- a/docs/0.9.1/_modules/evennia/commands/default/tests.html +++ b/docs/0.9.1/_modules/evennia/commands/default/tests.html @@ -58,7 +58,7 @@ from anything import Anything from django.conf import settings -from mock import Mock, mock +from unittest.mock import patch, Mock, MagicMock from evennia import DefaultRoom, DefaultExit, ObjectDB from evennia.commands.default.cmdset_character import CharacterCmdSet @@ -97,7 +97,8 @@ # ------------------------------------------------------------ -
[docs]class CommandTest(EvenniaTest): +
[docs]@patch("evennia.server.portal.portal.LoopingCall", new=MagicMock()) +class CommandTest(EvenniaTest): """ Tests a command """ @@ -190,11 +191,18 @@ returned_msg = msg_sep.join( _RE.sub("", ansi.parse_ansi(mess, strip_ansi=noansi)) for mess in stored_msg ).strip() - if msg == "" and returned_msg or not returned_msg.startswith(msg.strip()): + msg = msg.strip() + if msg == "" and returned_msg or not returned_msg.startswith(msg): + prt = "" + for ic, char in enumerate(msg): + import re + + prt += char + sep1 = "\n" + "=" * 30 + "Wanted message" + "=" * 34 + "\n" sep2 = "\n" + "=" * 30 + "Returned message" + "=" * 32 + "\n" sep3 = "\n" + "=" * 78 - retval = sep1 + msg.strip() + sep2 + returned_msg + sep3 + retval = sep1 + msg + sep2 + returned_msg + sep3 raise AssertionError(retval) else: returned_msg = "\n".join(str(msg) for msg in stored_msg) @@ -400,11 +408,29 @@ self.call(account.CmdOOC(), "", "You go OOC.", caller=self.account)
[docs] def test_ic(self): + self.account.db._playable_characters = [self.char1] self.account.unpuppet_object(self.session) self.call( account.CmdIC(), "Char", "You become Char.", caller=self.account, receiver=self.char1 )
+
[docs] def test_ic__other_object(self): + self.account.db._playable_characters = [self.obj1] + self.account.unpuppet_object(self.session) + self.call( + account.CmdIC(), "Obj", "You become Obj.", caller=self.account, receiver=self.obj1 + )
+ +
[docs] def test_ic__nonaccess(self): + self.account.unpuppet_object(self.session) + self.call( + account.CmdIC(), + "Nonexistent", + "That is not a valid character choice.", + caller=self.account, + receiver=self.account, + )
+
[docs] def test_password(self): self.call( account.CmdPassword(), @@ -510,10 +536,18 @@ self.call(building.CmdExamine(), "*TestAccount", "Name/key: TestAccount") self.char1.db.test = "testval" - self.call(building.CmdExamine(), "self/test", "Persistent attributes:\n test = testval") + self.call(building.CmdExamine(), "self/test", "Persistent attribute(s):\n test = testval") self.call(building.CmdExamine(), "NotFound", "Could not find 'NotFound'.") self.call(building.CmdExamine(), "out", "Name/key: out") + # escape inlinefuncs + self.char1.db.test2 = "this is a $random() value." + self.call( + building.CmdExamine(), + "self/test2", + "Persistent attribute(s):\n test2 = this is a \$random() value.", + ) + self.room1.scripts.add(self.script.__class__) self.call(building.CmdExamine(), "") self.account.scripts.add(self.script.__class__) @@ -559,7 +593,7 @@ self.call(building.CmdSetAttribute(), "Obj2/test2", "Attribute Obj2/test2 = value2") self.call(building.CmdSetAttribute(), "Obj2/NotFound", "Obj2 has no attribute 'notfound'.") - with mock.patch("evennia.commands.default.building.EvEditor") as mock_ed: + with patch("evennia.commands.default.building.EvEditor") as mock_ed: self.call(building.CmdSetAttribute(), "/edit Obj2/test3") mock_ed.assert_called_with(self.char1, Anything, Anything, key="Obj2/test3") @@ -843,7 +877,7 @@ ) self.call(building.CmdDesc(), "", "Usage: ") - with mock.patch("evennia.commands.default.building.EvEditor") as mock_ed: + with patch("evennia.commands.default.building.EvEditor") as mock_ed: self.call(building.CmdDesc(), "/edit") mock_ed.assert_called_with( self.char1, @@ -1058,9 +1092,9 @@ } ) ] - with mock.patch( + with patch( "evennia.commands.default.building.protlib.search_prototype", - new=mock.MagicMock(return_value=test_prototype), + new=MagicMock(return_value=test_prototype), ) as mprot: self.call( building.CmdTypeclass(), @@ -1126,7 +1160,7 @@ self.call(building.CmdFind(), "/exact Obj", "One Match") # Test multitype filtering - with mock.patch( + with patch( "evennia.commands.default.building.CHAR_TYPECLASS", "evennia.objects.objects.DefaultCharacter", ): @@ -1166,7 +1200,7 @@ "= Obj", "To create a global script you need scripts/add <typeclass>.", ) - self.call(building.CmdScript(), "Obj = ", "dbref obj") + self.call(building.CmdScript(), "Obj = ", "dbref obj") self.call( building.CmdScript(), "/start Obj", "0 scripts started on Obj" @@ -1594,11 +1628,11 @@ self.call(multimatch, "look", "")
-
[docs] @mock.patch("evennia.commands.default.syscommands.ChannelDB") +
[docs] @patch("evennia.commands.default.syscommands.ChannelDB") def test_channelcommand(self, mock_channeldb): - channel = mock.MagicMock() - channel.msg = mock.MagicMock() - mock_channeldb.objects.get_channel = mock.MagicMock(return_value=channel) + channel = MagicMock() + channel.msg = MagicMock() + mock_channeldb.objects.get_channel = MagicMock(return_value=channel) self.call(syscommands.SystemSendToChannel(), "public:Hello") channel.msg.assert_called()
diff --git a/docs/0.9.1/_modules/evennia/comms/comms.html b/docs/0.9.1/_modules/evennia/comms/comms.html index b21f182cb0..d9780789e0 100644 --- a/docs/0.9.1/_modules/evennia/comms/comms.html +++ b/docs/0.9.1/_modules/evennia/comms/comms.html @@ -91,7 +91,9 @@ if cdict.get("keep_log"): self.attributes.add("keep_log", cdict["keep_log"]) if cdict.get("desc"): - self.attributes.add("desc", cdict["desc"])
+ self.attributes.add("desc", cdict["desc"]) + if cdict.get("tags"): + self.tags.batch_add(*cdict["tags"])
[docs] def basetype_setup(self): # delayed import of the channelhandler @@ -435,7 +437,8 @@ to build senders for the message. sender_strings (list, optional): Name strings of senders. Used for external connections where the sender is not an account or object. - When this is defined, external will be assumed. + When this is defined, external will be assumed. The list will be + filtered so each sender-string only occurs once. keep_log (bool or None, optional): This allows to temporarily change the logging status of this channel message. If `None`, the Channel's `keep_log` Attribute will be used. If `True` or `False`, that logging status will be used for this @@ -466,6 +469,8 @@ msgobj = self.pre_send_message(msgobj) if not msgobj: return False + if sender_strings: + sender_strings = list(set(make_iter(sender_strings))) msgobj = self.message_transform( msgobj, emit=emit, sender_strings=sender_strings, external=external ) diff --git a/docs/0.9.1/_modules/evennia/contrib/gendersub.html b/docs/0.9.1/_modules/evennia/contrib/gendersub.html index 92edbcbc3c..d0b371e73f 100644 --- a/docs/0.9.1/_modules/evennia/contrib/gendersub.html +++ b/docs/0.9.1/_modules/evennia/contrib/gendersub.html @@ -184,9 +184,9 @@ """ try: if text and isinstance(text, tuple): - text = (self._RE_GENDER_PRONOUN.sub(self._get_pronoun, text[0]), *text[1:]) + text = (_RE_GENDER_PRONOUN.sub(self._get_pronoun, text[0]), *text[1:]) else: - text = self._RE_GENDER_PRONOUN.sub(self._get_pronoun, text) + text = _RE_GENDER_PRONOUN.sub(self._get_pronoun, text) except TypeError: pass except Exception as e: diff --git a/docs/0.9.1/_modules/evennia/contrib/turnbattle/tb_range.html b/docs/0.9.1/_modules/evennia/contrib/turnbattle/tb_range.html index 0c62f3c2da..90e3baf134 100644 --- a/docs/0.9.1/_modules/evennia/contrib/turnbattle/tb_range.html +++ b/docs/0.9.1/_modules/evennia/contrib/turnbattle/tb_range.html @@ -119,7 +119,7 @@ instead of the default: class Character(TBRangeCharacter): - + Do the same thing in your game's objects.py module for TBRangeObject: from evennia.contrib.turnbattle.tb_range import TBRangeObject @@ -287,10 +287,10 @@
[docs]def at_defeat(defeated): """ Announces the defeat of a fighter in combat. - + Args: defeated (obj): Fighter that's been defeated. - + Notes: All this does is announce a defeat message by default, but if you want anything else to happen to defeated fighters (like putting them @@ -341,11 +341,11 @@
[docs]def get_range(obj1, obj2): """ Gets the combat range between two objects. - + Args: obj1 (obj): First object obj2 (obj): Second object - + Returns: range (int or None): Distance between two objects or None if not applicable """ @@ -365,7 +365,7 @@
[docs]def distance_inc(mover, target): """ Function that increases distance in range field between mover and target. - + Args: mover (obj): The object moving target (obj): The object to be moved away from @@ -381,11 +381,11 @@
[docs]def approach(mover, target): """ Manages a character's whole approach, including changes in ranges to other characters. - + Args: mover (obj): The object moving target (obj): The object to be moved toward - + Notes: The mover will also automatically move toward any objects that are closer to the target than the mover is. The mover will also move away from anything they started @@ -395,7 +395,7 @@ def distance_dec(mover, target): """ Helper function that decreases distance in range field between mover and target. - + Args: mover (obj): The object moving target (obj): The object to be moved toward @@ -429,11 +429,11 @@
[docs]def withdraw(mover, target): """ Manages a character's whole withdrawal, including changes in ranges to other characters. - + Args: mover (obj): The object moving target (obj): The object to be moved away from - + Notes: The mover will also automatically move away from objects that are close to the target of their withdrawl. The mover will never inadvertently move toward anything else while @@ -581,7 +581,8 @@ room as its object. Fights persist until only one participant is left with any HP or all - remaining participants choose to end the combat with the 'disengage' command. + remaining participants choose to end the combat with the 'disengage' + command. """
[docs] def at_script_creation(self): @@ -656,7 +657,7 @@
[docs] def init_range(self, to_init): """ Initializes range values for an object at the start of a fight. - + Args: to_init (object): Object to initialize range field for. """ @@ -679,14 +680,13 @@
[docs] def join_rangefield(self, to_init, anchor_obj=None, add_distance=0): """ Adds a new object to the range field of a fight in progress. - + Args: to_init (object): Object to initialize range field for. - Keyword args: anchor_obj (object): Object to copy range values from, or None for a random object. add_distance (int): Distance to put between to_init object and anchor object. - + """ # Get a list of room's contents without to_init object. contents = self.obj.contents diff --git a/docs/0.9.1/_modules/evennia/locks/lockfuncs.html b/docs/0.9.1/_modules/evennia/locks/lockfuncs.html index 06785c92c5..f600379515 100644 --- a/docs/0.9.1/_modules/evennia/locks/lockfuncs.html +++ b/docs/0.9.1/_modules/evennia/locks/lockfuncs.html @@ -580,7 +580,9 @@ Only true if accessed_obj has the specified tag and optional category. """ - return bool(accessed_obj.tags.get(*args))
+ tagkey = args[0] if args else None + category = args[1] if len(args) > 1 else None + return bool(accessed_obj.tags.get(tagkey, category=category))
[docs]def inside(accessing_obj, accessed_obj, *args, **kwargs): diff --git a/docs/0.9.1/_modules/evennia/locks/lockhandler.html b/docs/0.9.1/_modules/evennia/locks/lockhandler.html index 0f06a68eda..7710110c81 100644 --- a/docs/0.9.1/_modules/evennia/locks/lockhandler.html +++ b/docs/0.9.1/_modules/evennia/locks/lockhandler.html @@ -277,7 +277,13 @@ elist.append(_("Lock: lock-function '%s' is not available.") % funcstring) continue args = list(arg.strip() for arg in rest.split(",") if arg and "=" not in arg) - kwargs = dict([arg.split("=", 1) for arg in rest.split(",") if arg and "=" in arg]) + kwargs = dict( + [ + (part.strip() for part in arg.split("=", 1)) + for arg in rest.split(",") + if arg and "=" in arg + ] + ) lock_funcs.append((func, args, kwargs)) evalstring = evalstring.replace(funcstring, "%s") if len(lock_funcs) < nfuncs: diff --git a/docs/0.9.1/_modules/evennia/objects/manager.html b/docs/0.9.1/_modules/evennia/objects/manager.html index 0d5ec12fc2..c1324a30c0 100644 --- a/docs/0.9.1/_modules/evennia/objects/manager.html +++ b/docs/0.9.1/_modules/evennia/objects/manager.html @@ -195,7 +195,7 @@ Args: attribute_name (str): Attribute key to search for. - attribute_value (str): Attribute value to search for. + attribute_value (any): Attribute value to search for. This can also be database objects. candidates (list, optional): Candidate objects to limit search to. typeclasses (list, optional): Python pats to restrict matches with. @@ -216,31 +216,13 @@ ) type_restriction = typeclasses and Q(db_typeclass_path__in=make_iter(typeclasses)) or Q() - # This doesn't work if attribute_value is an object. Workaround below - - if isinstance(attribute_value, (str, int, float, bool)): - return self.filter( - cand_restriction - & type_restriction - & Q(db_attributes__db_key=attribute_name, db_attributes__db_value=attribute_value) - ).order_by("id") - else: - # We must loop for safety since the referenced lookup gives deepcopy error if attribute value is an object. - global _ATTR - if not _ATTR: - from evennia.typeclasses.models import Attribute as _ATTR - cands = list( - self.filter( - cand_restriction & type_restriction & Q(db_attributes__db_key=attribute_name) - ) - ) - results = [ - attr.objectdb_set.all() - for attr in _ATTR.objects.filter( - objectdb__in=cands, db_value=attribute_value - ).order_by("id") - ] - return chain(*results) + results = self.filter( + cand_restriction + & type_restriction + & Q(db_attributes__db_key=attribute_name) + & Q(db_attributes__db_value=attribute_value) + ).order_by("id") + return results def get_objs_with_db_property(self, property_name, candidates=None): """ diff --git a/docs/0.9.1/_modules/evennia/objects/models.html b/docs/0.9.1/_modules/evennia/objects/models.html index b58129af6b..c872f8134b 100644 --- a/docs/0.9.1/_modules/evennia/objects/models.html +++ b/docs/0.9.1/_modules/evennia/objects/models.html @@ -66,7 +66,7 @@ from evennia.utils.utils import make_iter, dbref, lazy_property -
[docs]class ContentsHandler(object): +
[docs]class ContentsHandler: """ Handles and caches the contents of an object to avoid excessive lookups (this is done very often due to cmdhandler needing to look diff --git a/docs/0.9.1/_modules/evennia/objects/objects.html b/docs/0.9.1/_modules/evennia/objects/objects.html index 7ee1c41135..6223638d5e 100644 --- a/docs/0.9.1/_modules/evennia/objects/objects.html +++ b/docs/0.9.1/_modules/evennia/objects/objects.html @@ -250,7 +250,7 @@ # lockstring of newly created objects, for easy overloading. # Will be formatted with the appropriate attributes. - lockstring = "control:id({account_id}) or perm(Admin);" "delete:id({account_id}) or perm(Admin)" + lockstring = "control:id({account_id}) or perm(Admin);delete:id({account_id}) or perm(Admin)" objects = ObjectManager() @@ -434,8 +434,7 @@ - `me,self`: self-reference to this object - `<num>-<string>` - can be used to differentiate between multiple same-named matches - global_search (bool): Search all objects globally. This is overruled - by `location` keyword. + global_search (bool): Search all objects globally. This overrules 'location' data. use_nicks (bool): Use nickname-replace (nicktype "object") on `searchdata`. typeclass (str or Typeclass, or list of either): Limit search only to `Objects` with this typeclass. May be a list of typeclasses @@ -2083,10 +2082,13 @@ _content_types = ("character",) # lockstring of newly created rooms, for easy overloading. # Will be formatted with the appropriate attributes. - lockstring = "puppet:id({character_id}) or pid({account_id}) or perm(Developer) or pperm(Developer);delete:id({account_id}) or perm(Admin)" + lockstring = ( + "puppet:id({character_id}) or pid({account_id}) or perm(Developer) or pperm(Developer);" + "delete:id({account_id}) or perm(Admin)" + )
[docs] @classmethod - def create(cls, key, account, **kwargs): + def create(cls, key, account=None, **kwargs): """ Creates a basic Character with default parameters, unless otherwise specified or extended. @@ -2095,8 +2097,8 @@ Args: key (str): Name of the new Character. - account (obj): Account to associate this Character with. Required as - an argument, but one can fake it out by supplying None-- it will + account (obj, optional): Account to associate this Character with. + If unset supplying None-- it will change the default lockset and skip creator attribution. Keyword args: @@ -2346,7 +2348,7 @@ )
[docs] @classmethod - def create(cls, key, account, **kwargs): + def create(cls, key, account=None, **kwargs): """ Creates a basic Room with default parameters, unless otherwise specified or extended. @@ -2355,7 +2357,9 @@ Args: key (str): Name of the new Room. - account (obj): Account to associate this Room with. + account (obj, optional): Account to associate this Room with. If + given, it will be given specific control/edit permissions to this + object (along with normal Admin perms). If not given, default Keyword args: description (str): Brief description for this object. @@ -2384,13 +2388,20 @@ # Get description, if provided description = kwargs.pop("description", "") + # get locks if provided + locks = kwargs.pop("locks", "") + try: # Create the Room obj = create.create_object(**kwargs) - # Set appropriate locks - lockstring = kwargs.get("locks", cls.lockstring.format(id=account.id)) - obj.locks.add(lockstring) + # Add locks + if not locks and account: + locks = cls.lockstring.format(**{"id": account.id}) + elif not locks and not account: + locks = cls.lockstring(**{"id": obj.id}) + + obj.locks.add(locks) # Record creator id and creation IP if ip: @@ -2540,7 +2551,7 @@ # Command hooks
[docs] @classmethod - def create(cls, key, account, source, dest, **kwargs): + def create(cls, key, source, dest, account=None, **kwargs): """ Creates a basic Exit with default parameters, unless otherwise specified or extended. @@ -2584,13 +2595,18 @@ description = kwargs.pop("description", "") + locks = kwargs.get("locks", "") + try: # Create the Exit obj = create.create_object(**kwargs) # Set appropriate locks - lockstring = kwargs.get("locks", cls.lockstring.format(id=account.id)) - obj.locks.add(lockstring) + if not locks and account: + locks = cls.lockstring.format(**{"id": account.id}) + elif not locks and not account: + locks = cls.lockstring.format(**{"id": obj.id}) + obj.locks.add(locks) # Record creator id and creation IP if ip: diff --git a/docs/0.9.1/_modules/evennia/scripts/manager.html b/docs/0.9.1/_modules/evennia/scripts/manager.html index 2784785cd1..956f29a312 100644 --- a/docs/0.9.1/_modules/evennia/scripts/manager.html +++ b/docs/0.9.1/_modules/evennia/scripts/manager.html @@ -114,7 +114,7 @@ Get all scripts in the database. Args: - key (str, optional): Restrict result to only those + key (str or int, optional): Restrict result to only those with matching key or dbref. Returns: @@ -124,12 +124,9 @@ if key: script = [] dbref = self.dbref(key) - if dbref or dbref == 0: - # return either [] or a valid list (never [None]) - script = [res for res in [self.dbref_search(dbref)] if res] - if not script: - script = self.filter(db_key=key) - return script + if dbref: + return self.filter(id=dbref) + return self.filter(db_key__iexact=key.strip()) return self.all() def delete_script(self, dbref): @@ -272,7 +269,7 @@ ostring = ostring.strip() dbref = self.dbref(ostring) - if dbref or dbref == 0: + if dbref: # this is a dbref, try to find the script directly dbref_match = self.dbref_search(dbref) if dbref_match and not ( diff --git a/docs/0.9.1/_modules/evennia/server/portal/portal.html b/docs/0.9.1/_modules/evennia/server/portal/portal.html index be9a00aa97..c9c69651ac 100644 --- a/docs/0.9.1/_modules/evennia/server/portal/portal.html +++ b/docs/0.9.1/_modules/evennia/server/portal/portal.html @@ -54,6 +54,7 @@ from os.path import dirname, abspath from twisted.application import internet, service +from twisted.internet.task import LoopingCall from twisted.internet import protocol, reactor from twisted.python.log import ILogObserver @@ -61,6 +62,7 @@ django.setup() from django.conf import settings +from django.db import connection import evennia @@ -142,10 +144,29 @@ WEB_PLUGINS_MODULE = None INFO_DICT["errors"] = ( "WARNING: settings.WEB_PLUGINS_MODULE not found - " - "copy 'evennia/game_template/server/conf/web_plugins.py to mygame/server/conf." + "copy 'evennia/game_template/server/conf/web_plugins.py to " + "mygame/server/conf." ) +_MAINTENANCE_COUNT = 0 + + +def _portal_maintenance(): + """ + Repeated maintenance tasks for the portal. + + """ + global _MAINTENANCE_COUNT + + _MAINTENANCE_COUNT += 1 + + if _MAINTENANCE_COUNT % (3600 * 7) == 0: + # drop database connection every 7 hrs to avoid default timeouts on MySQL + # (see https://github.com/evennia/evennia/issues/1376) + connection.close() + + # ------------------------------------------------------------- # Portal Service object # ------------------------------------------------------------- @@ -184,6 +205,9 @@ self.start_time = time.time() + self.maintenance_task = LoopingCall(_portal_maintenance) + self.maintenance_task.start(60, now=True) # call every minute + # in non-interactive portal mode, this gets overwritten by # cmdline sent by the evennia launcher self.server_twistd_cmd = self._get_backup_server_twistd_cmd() diff --git a/docs/0.9.1/_modules/evennia/server/portal/webclient.html b/docs/0.9.1/_modules/evennia/server/portal/webclient.html index 7fabfe8962..9ae99149a5 100644 --- a/docs/0.9.1/_modules/evennia/server/portal/webclient.html +++ b/docs/0.9.1/_modules/evennia/server/portal/webclient.html @@ -290,6 +290,8 @@ return else: return + # just to be sure + text = to_str(text) flags = self.protocol_flags diff --git a/docs/0.9.1/_modules/evennia/typeclasses/attributes.html b/docs/0.9.1/_modules/evennia/typeclasses/attributes.html index 7618666034..feadc85bc2 100644 --- a/docs/0.9.1/_modules/evennia/typeclasses/attributes.html +++ b/docs/0.9.1/_modules/evennia/typeclasses/attributes.html @@ -1135,13 +1135,13 @@ repeat-calling add when having many Attributes to add. Args: - *args (tuple): Tuples of varying length representing the - Attribute to add to this object. Supported tuples are - - - (key, value) - - (key, value, category) - - (key, value, category, lockstring) - - (key, value, category, lockstring, default_access) + *args (tuple): Each argument should be a tuples (can be of varying + length) representing the Attribute to add to this object. + Supported tuples are + - `(key, value)` + - `(key, value, category)` + - `(key, value, category, lockstring)` + - `(key, value, category, lockstring, default_access)` Keyword args: strattr (bool): If `True`, value must be a string. This diff --git a/docs/0.9.1/_modules/evennia/typeclasses/models.html b/docs/0.9.1/_modules/evennia/typeclasses/models.html index 3ec043f528..36247e5d4f 100644 --- a/docs/0.9.1/_modules/evennia/typeclasses/models.html +++ b/docs/0.9.1/_modules/evennia/typeclasses/models.html @@ -151,10 +151,38 @@ attrs["typename"] = name attrs["path"] = "%s.%s" % (attrs["__module__"], name) + def _get_dbmodel(bases): + """Recursively get the dbmodel""" + if not hasattr(bases, "__iter__"): + bases = [bases] + for base in bases: + try: + if base._meta.proxy or base._meta.abstract: + for kls in base._meta.parents: + return _get_dbmodel(kls) + except AttributeError: + # this happens if trying to parse a non-typeclass mixin parent, + # without a _meta + continue + else: + return base + return None + + dbmodel = _get_dbmodel(bases) + + if not dbmodel: + raise TypeError(f"{name} does not appear to inherit from a database model.") + # typeclass proxy setup + # first check explicit __applabel__ on the typeclass, then figure + # it out from the dbmodel + if "__applabel__" not in attrs: + # find the app-label in one of the bases, usually the dbmodel + attrs["__applabel__"] = dbmodel._meta.app_label + if "Meta" not in attrs: - class Meta(object): + class Meta: proxy = True app_label = attrs.get("__applabel__", "typeclasses") @@ -163,6 +191,16 @@ new_class = ModelBase.__new__(cls, name, bases, attrs) + # django doesn't support inheriting proxy models so we hack support for + # it here by injecting `proxy_for_model` to the actual dbmodel. + # Unfortunately we cannot also set the correct model_name, because this + # would block multiple-inheritance of typeclasses (Django doesn't allow + # multiple bases of the same model). + if dbmodel: + new_class._meta.proxy_for_model = dbmodel + # Maybe Django will eventually handle this in the future: + # new_class._meta.model_name = dbmodel._meta.model_name + # attach signals signals.post_save.connect(call_at_first_save, sender=new_class) signals.pre_delete.connect(remove_attributes_on_delete, sender=new_class) diff --git a/docs/0.9.1/_modules/evennia/typeclasses/tags.html b/docs/0.9.1/_modules/evennia/typeclasses/tags.html index f2a0a81fa0..5a4f5270b4 100644 --- a/docs/0.9.1/_modules/evennia/typeclasses/tags.html +++ b/docs/0.9.1/_modules/evennia/typeclasses/tags.html @@ -77,7 +77,7 @@ indexed for efficient lookup in the database. Tags are shared between objects - a new tag is only created if the key+category combination did not previously exist, making them unsuitable for - storing object-related data (for this a full tag should be + storing object-related data (for this a regular Attribute should be used). The 'db_data' field is intended as a documentation field for the @@ -490,8 +490,8 @@ Batch-add tags from a list of tuples. Args: - tuples (tuple or str): Any number of `tagstr` keys, `(keystr, category)` or - `(keystr, category, data)` tuples. + *args (tuple or str): Each argument should be a `tagstr` keys or tuple `(keystr, category)` or + `(keystr, category, data)`. It's possible to mix input types. Notes: This will generate a mimimal number of self.add calls, diff --git a/docs/0.9.1/_modules/evennia/utils/create.html b/docs/0.9.1/_modules/evennia/utils/create.html index 707a586cd5..9e3687f9fb 100644 --- a/docs/0.9.1/_modules/evennia/utils/create.html +++ b/docs/0.9.1/_modules/evennia/utils/create.html @@ -345,7 +345,7 @@ # -
[docs]def create_help_entry(key, entrytext, category="General", locks=None, aliases=None): +
[docs]def create_help_entry(key, entrytext, category="General", locks=None, aliases=None, tags=None): """ Create a static help entry in the help database. Note that Command help entries are dynamic and directly taken from the __doc__ @@ -358,7 +358,8 @@ entrytext (str): The body of te help entry category (str, optional): The help category of the entry. locks (str, optional): A lockstring to restrict access. - aliases (list of str): List of alternative (likely shorter) keynames. + aliases (list of str, optional): List of alternative (likely shorter) keynames. + tags (lst, optional): List of tags or tuples `(tag, category)`. Returns: help (HelpEntry): A newly created help entry. @@ -376,7 +377,9 @@ if locks: new_help.locks.add(locks) if aliases: - new_help.aliases.add(aliases) + new_help.aliases.add(make_iter(aliases)) + if tags: + new_help.tags.batch_add(*tags) new_help.save() return new_help except IntegrityError: @@ -398,7 +401,9 @@ # Comm system methods -
[docs]def create_message(senderobj, message, channels=None, receivers=None, locks=None, header=None): +
[docs]def create_message( + senderobj, message, channels=None, receivers=None, locks=None, tags=None, header=None +): """ Create a new communication Msg. Msgs represent a unit of database-persistent communication between entites. @@ -414,6 +419,7 @@ receivers (Object, Account, str or list): An Account/Object to send to, or a list of them. May be Account objects or accountnames. locks (str): Lock definition string. + tags (list): A list of tags or tuples `(tag, category)`. header (str): Mime-type or other optional information for the message Notes: @@ -440,6 +446,9 @@ new_message.receivers = receiver if locks: new_message.locks.add(locks) + if tags: + new_message.tags.batch_add(*tags) + new_message.save() return new_message
@@ -448,7 +457,9 @@ create_msg = create_message -
[docs]def create_channel(key, aliases=None, desc=None, locks=None, keep_log=True, typeclass=None): +
[docs]def create_channel( + key, aliases=None, desc=None, locks=None, keep_log=True, typeclass=None, tags=None +): """ Create A communication Channel. A Channel serves as a central hub for distributing Msgs to groups of people without specifying the @@ -467,6 +478,7 @@ keep_log (bool): Log channel throughput. typeclass (str or class): The typeclass of the Channel (not often used). + tags (list): A list of tags or tuples `(tag, category)`. Returns: channel (Channel): A newly created channel. @@ -483,7 +495,7 @@ # store call signature for the signal new_channel._createdict = dict( - key=key, aliases=aliases, desc=desc, locks=locks, keep_log=keep_log + key=key, aliases=aliases, desc=desc, locks=locks, keep_log=keep_log, tags=tags ) # this will trigger the save signal which in turn calls the diff --git a/docs/0.9.1/_modules/evennia/utils/dbserialize.html b/docs/0.9.1/_modules/evennia/utils/dbserialize.html index 506460aa1d..6a8d1cc9a2 100644 --- a/docs/0.9.1/_modules/evennia/utils/dbserialize.html +++ b/docs/0.9.1/_modules/evennia/utils/dbserialize.html @@ -270,6 +270,12 @@ def __ne__(self, other): return self._data != other + def __lt__(self, other): + return self._data < other + + def __gt__(self, other): + return self._data > other + @_save def __setitem__(self, key, value): self._data.__setitem__(key, self._convert_mutables(value)) @@ -315,6 +321,13 @@ def index(self, value, *args): return self._data.index(value, *args) + @_save + def sort(self, *, key=None, reverse=False): + self._data.sort(key=key, reverse=reverse) + + def copy(self): + return self._data.copy() + class _SaverDict(_SaverMutable, MutableMapping): """ diff --git a/docs/0.9.1/_modules/evennia/utils/evtable.html b/docs/0.9.1/_modules/evennia/utils/evtable.html index c28df16d9b..c6d4b3c7ab 100644 --- a/docs/0.9.1/_modules/evennia/utils/evtable.html +++ b/docs/0.9.1/_modules/evennia/utils/evtable.html @@ -158,7 +158,7 @@ from django.conf import settings from textwrap import TextWrapper from copy import deepcopy, copy -from evennia.utils.utils import m_len, is_iter +from evennia.utils.utils import is_iter, display_len as d_len from evennia.utils.ansi import ANSIString _DEFAULT_WIDTH = settings.CLIENT_DEFAULT_WIDTH @@ -272,7 +272,7 @@ indent = self.initial_indent # Maximum width for this line. - width = self.width - m_len(indent) + width = self.width - d_len(indent) # First chunk on line is whitespace -- drop it, unless this # is the very beginning of the text (ie. no lines started yet). @@ -280,7 +280,7 @@ del chunks[-1] while chunks: - l = m_len(chunks[-1]) + l = d_len(chunks[-1]) # Can at least squeeze this chunk onto the current line. if cur_len + l <= width: @@ -293,7 +293,7 @@ # The current line is full, and the next chunk is too big to # fit on *any* line (not just this one). - if chunks and m_len(chunks[-1]) > width: + if chunks and d_len(chunks[-1]) > width: self._handle_long_word(chunks, cur_line, cur_len, width) # If the last chunk on this line is all whitespace, drop it. @@ -483,7 +483,7 @@ self.valign = kwargs.get("valign", "c") self.data = self._split_lines(_to_ansi(data)) - self.raw_width = max(m_len(line) for line in self.data) + self.raw_width = max(d_len(line) for line in self.data) self.raw_height = len(self.data) # this is extra trimming required for cels in the middle of a table only @@ -522,9 +522,9 @@ width (int): The width to crop `text` to. """ - if m_len(text) > width: + if d_len(text) > width: crop_string = self.crop_string - return text[: width - m_len(crop_string)] + crop_string + return text[: width - d_len(crop_string)] + crop_string return text def _reformat(self): @@ -565,7 +565,7 @@ width = self.width adjusted_data = [] for line in data: - if 0 < width < m_len(line): + if 0 < width < d_len(line): # replace_whitespace=False, expand_tabs=False is a # fix for ANSIString not supporting expand_tabs/translate adjusted_data.extend( @@ -608,7 +608,7 @@ text (str): Centered text. """ - excess = width - m_len(text) + excess = width - d_len(text) if excess <= 0: return text if excess % 2: @@ -647,13 +647,13 @@ if line.startswith(" ") and not line.startswith(" ") else line ) - + hfill_char * (width - m_len(line)) + + hfill_char * (width - d_len(line)) for line in data ] return lines elif align == "r": return [ - hfill_char * (width - m_len(line)) + hfill_char * (width - d_len(line)) + ( " " + line.rstrip(" ") if line.endswith(" ") and not line.endswith(" ") @@ -794,7 +794,7 @@ natural_width (int): Width of cell. """ - return m_len(self.formatted[0]) # if self.formatted else 0
+ return d_len(self.formatted[0]) # if self.formatted else 0
[docs] def replace_data(self, data, **kwargs): """ @@ -809,7 +809,7 @@ """ self.data = self._split_lines(_to_ansi(data)) - self.raw_width = max(m_len(line) for line in self.data) + self.raw_width = max(d_len(line) for line in self.data) self.raw_height = len(self.data) self.reformat(**kwargs)
diff --git a/docs/0.9.1/_modules/evennia/utils/inlinefuncs.html b/docs/0.9.1/_modules/evennia/utils/inlinefuncs.html index 43879c580f..bc1260fed2 100644 --- a/docs/0.9.1/_modules/evennia/utils/inlinefuncs.html +++ b/docs/0.9.1/_modules/evennia/utils/inlinefuncs.html @@ -106,14 +106,66 @@ import re import fnmatch +import random as base_random from django.conf import settings from evennia.utils import utils, logger +# The stack size is a security measure. Set to <=0 to disable. +_STACK_MAXSIZE = settings.INLINEFUNC_STACK_MAXSIZE + # example/testing inline functions +
[docs]def random(*args, **kwargs): + """ + Inlinefunc. Returns a random number between + 0 and 1, from 0 to a maximum value, or within a given range (inclusive). + + Args: + minval (str, optional): Minimum value. If not given, assumed 0. + maxval (str, optional): Maximum value. + + Keyword argumuents: + session (Session): Session getting the string. + + Notes: + If either of the min/maxvalue has a '.' in it, a floating-point random + value will be returned. Otherwise it will be an integer value in the + given range. + + Example: + `$random()` + `$random(5)` + `$random(5, 10)` + + """ + nargs = len(args) + if nargs == 1: + # only maxval given + minval, maxval = "0", args[0] + elif nargs > 1: + minval, maxval = args[:2] + else: + minval, maxval = ("0", "1") + + if "." in minval or "." in maxval: + # float mode + try: + minval, maxval = float(minval), float(maxval) + except ValueError: + minval, maxval = 0, 1 + return "{:.2f}".format(minval + maxval * base_random.random()) + else: + # int mode + try: + minval, maxval = int(minval), int(maxval) + except ValueError: + minval, maxval = 0, 1 + return str(base_random.randint(minval, maxval))
+ +
[docs]def pad(*args, **kwargs): """ Inlinefunc. Pads text to given width. @@ -123,7 +175,8 @@ width (str, optional): Will be converted to integer. Width of padding. align (str, optional): Alignment of padding; one of 'c', 'l' or 'r'. - fillchar (str, optional): Character used for padding. Defaults to a space. + fillchar (str, optional): Character used for padding. Defaults to a + space. Keyword args: session (Session): Session performing the pad. @@ -271,12 +324,6 @@ raise -# The stack size is a security measure. Set to <=0 to disable. -try: - _STACK_MAXSIZE = settings.INLINEFUNC_STACK_MAXSIZE -except AttributeError: - _STACK_MAXSIZE = 20 - # regex definitions _RE_STARTTOKEN = re.compile(r"(?<!\\)\$(\w+)\(") # unescaped $funcname( (start of function call) @@ -509,6 +556,20 @@ return retval
+
[docs]def raw(string): + """ + Escape all inlinefuncs in a string so they won't get parsed. + + Args: + string (str): String with inlinefuncs to escape. + """ + + def _escape(match): + return "\\" + match.group(0) + + return _RE_STARTTOKEN.sub(_escape, string)
+ + # # Nick templating # diff --git a/docs/0.9.1/_modules/evennia/utils/picklefield.html b/docs/0.9.1/_modules/evennia/utils/picklefield.html index 6a7c61ac0b..486a31390b 100644 --- a/docs/0.9.1/_modules/evennia/utils/picklefield.html +++ b/docs/0.9.1/_modules/evennia/utils/picklefield.html @@ -72,7 +72,7 @@ from ast import literal_eval from datetime import datetime -from copy import deepcopy +from copy import deepcopy, Error as CopyError from base64 import b64encode, b64decode from zlib import compress, decompress @@ -85,6 +85,7 @@ from pickle import loads, dumps from django.utils.encoding import force_str +from evennia.utils.dbserialize import pack_dbobj DEFAULT_PROTOCOL = 4 @@ -133,7 +134,15 @@ # The reason this is important is because we do all of our lookups as # simple string matches, thus the character streams must be the same # for the lookups to work properly. See tests.py for more information. - value = dumps(deepcopy(value), protocol=pickle_protocol) + try: + value = deepcopy(value) + except CopyError: + # this can happen on a manager query where the search query string is a + # database model. + value = pack_dbobj(value) + + value = dumps(value, protocol=pickle_protocol) + if compress_object: value = compress(value) value = b64encode(value).decode() # decode bytes to str diff --git a/docs/0.9.1/_modules/evennia/utils/utils.html b/docs/0.9.1/_modules/evennia/utils/utils.html index 9f215e5951..0568cbb795 100644 --- a/docs/0.9.1/_modules/evennia/utils/utils.html +++ b/docs/0.9.1/_modules/evennia/utils/utils.html @@ -50,6 +50,7 @@ import os import gc import sys +import copy import types import math import re @@ -60,6 +61,7 @@ import importlib import importlib.util import importlib.machinery +from unicodedata import east_asian_width from twisted.internet.task import deferLater from twisted.internet.defer import returnValue # noqa - used as import target from os.path import join as osjoin @@ -70,6 +72,8 @@ from django.utils import timezone from django.utils.translation import gettext as _ from django.apps import apps +from django.core.validators import validate_email as django_validate_email +from django.core.exceptions import ValidationError as DjangoValidationError from evennia.utils import logger _MULTIMATCH_TEMPLATE = settings.SEARCH_MULTIMATCH_TEMPLATE @@ -381,14 +385,16 @@ return "\n".join(rows)
-
[docs]def list_to_string(inlist, endsep="and", addquote=False): +
[docs]def iter_to_string(initer, endsep="and", addquote=False): """ - This pretty-formats a list as string output, adding an optional + This pretty-formats an iterable list as string output, adding an optional alternative separator to the second to last entry. If `addquote` is `True`, the outgoing strings will be surrounded by quotes. Args: - inlist (list): The list to print. + initer (any): Usually an iterable to print. Each element must be possible to + present with a string. Note that if this is a generator, it will be + consumed by this operation. endsep (str, optional): If set, the last item separator will be replaced with this value. addquote (bool, optional): This will surround all outgoing @@ -413,16 +419,21 @@ endsep = "," else: endsep = " " + endsep - if not inlist: + if not initer: return "" + initer = tuple(str(val) for val in make_iter(initer)) if addquote: - if len(inlist) == 1: - return '"%s"' % inlist[0] - return ", ".join('"%s"' % v for v in inlist[:-1]) + "%s %s" % (endsep, '"%s"' % inlist[-1]) + if len(initer) == 1: + return '"%s"' % initer[0] + return ", ".join('"%s"' % v for v in initer[:-1]) + "%s %s" % (endsep, '"%s"' % initer[-1]) else: - if len(inlist) == 1: - return str(inlist[0]) - return ", ".join(str(v) for v in inlist[:-1]) + "%s %s" % (endsep, inlist[-1])
+ if len(initer) == 1: + return str(initer[0]) + return ", ".join(str(v) for v in initer[:-1]) + "%s %s" % (endsep, initer[-1])
+ + +# legacy alias +list_to_string = iter_to_string
[docs]def wildcard_to_regexp(instring): @@ -947,69 +958,25 @@
[docs]def validate_email_address(emailaddress): """ - Checks if an email address is syntactically correct. + Checks if an email address is syntactically correct. Makes use + of the django email-validator for consistency. Args: emailaddress (str): Email address to validate. Returns: - is_valid (bool): If this is a valid email or not. - - Notes. - (This snippet was adapted from - http://commandline.org.uk/python/email-syntax-check.) + bool: If this is a valid email or not. """ - - emailaddress = r"%s" % emailaddress - - domains = ( - "aero", - "asia", - "biz", - "cat", - "com", - "coop", - "edu", - "gov", - "info", - "int", - "jobs", - "mil", - "mobi", - "museum", - "name", - "net", - "org", - "pro", - "tel", - "travel", - ) - - # Email address must be more than 7 characters in total. - if len(emailaddress) < 7: - return False # Address too short. - - # Split up email address into parts. try: - localpart, domainname = emailaddress.rsplit("@", 1) - host, toplevel = domainname.rsplit(".", 1) - except ValueError: - return False # Address does not have enough parts. - - # Check for Country code or Generic Domain. - if len(toplevel) != 2 and toplevel not in domains: - return False # Not a domain name. - - for i in "-_.%+.": - localpart = localpart.replace(i, "") - for i in "-_.": - host = host.replace(i, "") - - if localpart.isalnum() and host.isalnum(): - return True # Email address is fine. + django_validate_email(str(emailaddress)) + except DjangoValidationError: + return False + except Exception: + logger.log_trace() + return False else: - return False # Email address has funny characters.
+ return True
[docs]def inherits_from(obj, parent): @@ -2078,7 +2045,7 @@ back to normal len for other objects. Args: - target (string): A string with potential MXP components + target (str): A string with potential MXP components to search. Returns: @@ -2093,6 +2060,33 @@ return len(target)
+
[docs]def display_len(target): + """ + Calculate the 'visible width' of text. This is not necessarily the same as the + number of characters in the case of certain asian characters. This will also + strip MXP patterns. + + Args: + target (any): Something to measure the length of. If a string, it will be + measured keeping asian-character and MXP links in mind. + + Return: + int: The visible width of the target. + + """ + # Would create circular import if in module root. + from evennia.utils.ansi import ANSI_PARSER + + if inherits_from(target, str): + # str or ANSIString + target = ANSI_PARSER.strip_mxp(target) + target = ANSI_PARSER.parse_ansi(target, strip_ansi=True) + extra_wide = ("F", "W") + return sum(2 if east_asian_width(char) in extra_wide else 1 for char in target) + else: + return len(target)
+ + # ------------------------------------------------------------------- # Search handler function # ------------------------------------------------------------------- diff --git a/docs/0.9.1/_modules/evennia/utils/validatorfuncs.html b/docs/0.9.1/_modules/evennia/utils/validatorfuncs.html index c936030982..a64dc88b1e 100644 --- a/docs/0.9.1/_modules/evennia/utils/validatorfuncs.html +++ b/docs/0.9.1/_modules/evennia/utils/validatorfuncs.html @@ -52,10 +52,8 @@ import re as _re import pytz as _pytz import datetime as _dt -from django.core.exceptions import ValidationError as _error -from django.core.validators import validate_email as _val_email from evennia.utils.ansi import strip_ansi -from evennia.utils.utils import string_partial_matching as _partial +from evennia.utils.utils import string_partial_matching as _partial, validate_email_address from django.utils.translation import gettext as _ _TZ_DICT = {str(tz): _pytz.timezone(tz) for tz in _pytz.common_timezones} @@ -255,9 +253,8 @@
[docs]def email(entry, option_key="Email Address", **kwargs): if not entry: raise ValueError("Email address field empty!") - try: - _val_email(str(entry)) # offloading the hard work to Django! - except _error: + valid = validate_email_address(entry) + if not valid: raise ValueError(f"That isn't a valid {option_key}!") return entry
diff --git a/docs/0.9.1/api/evennia.accounts.accounts.html b/docs/0.9.1/api/evennia.accounts.accounts.html index 323a6f8fb0..504ff11591 100644 --- a/docs/0.9.1/api/evennia.accounts.accounts.html +++ b/docs/0.9.1/api/evennia.accounts.accounts.html @@ -439,6 +439,29 @@ error (ValidationError, None): Any validation error(s) raised. Multiple

would mean old passwords in the database (pre validation checks) could get invalidated.

+
+
+create_character(*args, **kwargs)[source]
+

Create a character linked to this account.

+
+
Parameters
+
    +
  • key (str, optional) – If not given, use the same name as the account.

  • +
  • typeclass (str, optional) – Typeclass to use for this character. If +not given, use settings.BASE_CHARACTER_TYPECLASS.

  • +
  • permissions (list, optional) – If not given, use the account’s permissions.

  • +
  • ip (str, optiona) – The client IP creating this character. Will fall back to the +one stored for the account if not given.

  • +
  • kwargs (any) – Other kwargs will be used in the create_call.

  • +
+
+
Returns
+

Object – A new character of the character_typeclass type. None on an error. +list or None: A list of errors, or None.

+
+
+
+
classmethod create(*args, **kwargs)[source]
@@ -532,7 +555,7 @@ commands at run-time.

-search(searchdata, return_puppet=False, search_object=False, typeclass=None, nofound_string=None, multimatch_string=None, use_nicks=True, **kwargs)[source]
+search(searchdata, return_puppet=False, search_object=False, typeclass=None, nofound_string=None, multimatch_string=None, use_nicks=True, quiet=False, **kwargs)[source]

This is similar to DefaultObject.search but defaults to searching for Accounts only.

@@ -557,10 +580,13 @@ will fall back to the default handler.

message to echo if searchdata leads to multiple matches. If not given, will fall back to the default handler.

  • use_nicks (bool, optional) – Use account-level nick replacement.

  • +
  • quiet (bool, optional) – If set, will not show any error to the user, +and will also lead to returning a list of matches.

  • Returns
    -

    match (Account, Object or None) – A single Account or Object match.

    +

    match (Account, Object or None) – A single Account or Object match. +list: If quiet=True this is a list of 0, 1 or more Account or Object matches.

    Notes

    diff --git a/docs/0.9.1/api/evennia.accounts.admin.html b/docs/0.9.1/api/evennia.accounts.admin.html index 8de3238739..ef37ef55b7 100644 --- a/docs/0.9.1/api/evennia.accounts.admin.html +++ b/docs/0.9.1/api/evennia.accounts.admin.html @@ -150,6 +150,11 @@ fields = '__all__'
    +
    +
    +app_label = 'accounts'
    +
    +
    @@ -297,6 +302,11 @@ add_fieldsets = ((None, {'fields': ('username', 'password1', 'password2', 'email'), 'description': '<i>These account details are shared by the admin system and the game.</i>'}),)
    +
    +
    +user_change_password(*args, **kwargs)[source]
    +
    +
    save_model(request, obj, form, change)[source]
    diff --git a/docs/0.9.1/api/evennia.commands.cmdset.html b/docs/0.9.1/api/evennia.commands.cmdset.html index 1671d509de..9c4804d976 100644 --- a/docs/0.9.1/api/evennia.commands.cmdset.html +++ b/docs/0.9.1/api/evennia.commands.cmdset.html @@ -230,15 +230,20 @@ helps if wanting to selectively remov cmdsets.

    -add(cmd)[source]
    -

    Add a new command or commands to this CmdSetcommand, a list of +add(cmd, allow_duplicates=False)[source] +

    Add a new command or commands to this CmdSet, a list of commands or a cmdset to this cmdset. Note that this is not a merge operation (that is handled by the + operator).

    Parameters
    -

    cmd (Command, list, Cmdset) – This allows for adding one or +

      +
    • cmd (Command, list, Cmdset) – This allows for adding one or more commands to this Cmdset in one go. If another Cmdset -is given, all its commands will be added.

      +is given, all its commands will be added.

    • +
    • allow_duplicates (bool, optional) – If set, will not try to remove +duplicate cmds in the set. This is needed during the merge process +to avoid wiping commands coming from cmdsets with duplicate=True.

    • +

    Notes

    diff --git a/docs/0.9.1/api/evennia.commands.default.account.html b/docs/0.9.1/api/evennia.commands.default.account.html index 3a39b3052c..50ae417f65 100644 --- a/docs/0.9.1/api/evennia.commands.default.account.html +++ b/docs/0.9.1/api/evennia.commands.default.account.html @@ -69,7 +69,7 @@ method. Otherwise all text will be returned to all connected sessions.

    -aliases = ['l', 'ls']
    +aliases = ['ls', 'l']
    @@ -100,7 +100,7 @@ method. Otherwise all text will be returned to all connected sessions.

    -search_index_entry = {'aliases': 'l ls', 'category': 'general', 'key': 'look', 'tags': '', 'text': '\n look while out-of-character\n\n Usage:\n look\n\n Look in the ooc state.\n '}
    +search_index_entry = {'aliases': 'ls l', 'category': 'general', 'key': 'look', 'tags': '', 'text': '\n look while out-of-character\n\n Usage:\n look\n\n Look in the ooc state.\n '}
    diff --git a/docs/0.9.1/api/evennia.commands.default.admin.html b/docs/0.9.1/api/evennia.commands.default.admin.html index 4ff5af2b25..9b35d2964a 100644 --- a/docs/0.9.1/api/evennia.commands.default.admin.html +++ b/docs/0.9.1/api/evennia.commands.default.admin.html @@ -253,7 +253,7 @@ to accounts respectively.

    -aliases = ['pemit', 'remit']
    +aliases = ['remit', 'pemit']
    @@ -284,7 +284,7 @@ to accounts respectively.

    -search_index_entry = {'aliases': 'pemit remit', 'category': 'admin', 'key': 'emit', 'tags': '', 'text': '\n admin command for emitting message to multiple objects\n\n Usage:\n emit[/switches] [<obj>, <obj>, ... =] <message>\n remit [<obj>, <obj>, ... =] <message>\n pemit [<obj>, <obj>, ... =] <message>\n\n Switches:\n room - limit emits to rooms only (default)\n accounts - limit emits to accounts only\n contents - send to the contents of matched objects too\n\n Emits a message to the selected objects or to\n your immediate surroundings. If the object is a room,\n send to its contents. remit and pemit are just\n limited forms of emit, for sending to rooms and\n to accounts respectively.\n '}
    +search_index_entry = {'aliases': 'remit pemit', 'category': 'admin', 'key': 'emit', 'tags': '', 'text': '\n admin command for emitting message to multiple objects\n\n Usage:\n emit[/switches] [<obj>, <obj>, ... =] <message>\n remit [<obj>, <obj>, ... =] <message>\n pemit [<obj>, <obj>, ... =] <message>\n\n Switches:\n room - limit emits to rooms only (default)\n accounts - limit emits to accounts only\n contents - send to the contents of matched objects too\n\n Emits a message to the selected objects or to\n your immediate surroundings. If the object is a room,\n send to its contents. remit and pemit are just\n limited forms of emit, for sending to rooms and\n to accounts respectively.\n '}
    diff --git a/docs/0.9.1/api/evennia.commands.default.building.html b/docs/0.9.1/api/evennia.commands.default.building.html index 33b227f741..f6890359e8 100644 --- a/docs/0.9.1/api/evennia.commands.default.building.html +++ b/docs/0.9.1/api/evennia.commands.default.building.html @@ -1018,6 +1018,11 @@ unique.

    help_category = 'building'
    +
    +
    +new_obj_lockstring = 'control:id({id}) or perm(Admin);delete:id({id}) or perm(Admin)'
    +
    +
    create_exit(exit_name, location, destination, exit_aliases=None, typeclass=None)[source]
    @@ -1262,7 +1267,7 @@ server settings.

    -aliases = ['parent', 'swap', 'update', 'type']
    +aliases = ['parent', 'swap', 'type', 'update']
    @@ -1293,7 +1298,7 @@ server settings.

    -search_index_entry = {'aliases': 'parent swap update type', 'category': 'building', 'key': 'typeclass', 'tags': '', 'text': "\n set or change an object's typeclass\n\n Usage:\n typeclass[/switch] <object> [= typeclass.path]\n typeclass/prototype <object> = prototype_key\n\n typeclass/list/show [typeclass.path]\n swap - this is a shorthand for using /force/reset flags.\n update - this is a shorthand for using the /force/reload flag.\n\n Switch:\n show, examine - display the current typeclass of object (default) or, if\n given a typeclass path, show the docstring of that typeclass.\n update - *only* re-run at_object_creation on this object\n meaning locks or other properties set later may remain.\n reset - clean out *all* the attributes and properties on the\n object - basically making this a new clean object.\n force - change to the typeclass also if the object\n already has a typeclass of the same name.\n list - show available typeclasses. Only typeclasses in modules actually\n imported or used from somewhere in the code will show up here\n (those typeclasses are still available if you know the path)\n prototype - clean and overwrite the object with the specified\n prototype key - effectively making a whole new object.\n\n Example:\n type button = examples.red_button.RedButton\n type/prototype button=a red button\n\n If the typeclass_path is not given, the current object's typeclass is\n assumed.\n\n View or set an object's typeclass. If setting, the creation hooks of the\n new typeclass will be run on the object. If you have clashing properties on\n the old class, use /reset. By default you are protected from changing to a\n typeclass of the same name as the one you already have - use /force to\n override this protection.\n\n The given typeclass must be identified by its location using python\n dot-notation pointing to the correct module and class. If no typeclass is\n given (or a wrong typeclass is given). Errors in the path or new typeclass\n will lead to the old typeclass being kept. The location of the typeclass\n module is searched from the default typeclass directory, as defined in the\n server settings.\n\n "}
    +search_index_entry = {'aliases': 'parent swap type update', 'category': 'building', 'key': 'typeclass', 'tags': '', 'text': "\n set or change an object's typeclass\n\n Usage:\n typeclass[/switch] <object> [= typeclass.path]\n typeclass/prototype <object> = prototype_key\n\n typeclass/list/show [typeclass.path]\n swap - this is a shorthand for using /force/reset flags.\n update - this is a shorthand for using the /force/reload flag.\n\n Switch:\n show, examine - display the current typeclass of object (default) or, if\n given a typeclass path, show the docstring of that typeclass.\n update - *only* re-run at_object_creation on this object\n meaning locks or other properties set later may remain.\n reset - clean out *all* the attributes and properties on the\n object - basically making this a new clean object.\n force - change to the typeclass also if the object\n already has a typeclass of the same name.\n list - show available typeclasses. Only typeclasses in modules actually\n imported or used from somewhere in the code will show up here\n (those typeclasses are still available if you know the path)\n prototype - clean and overwrite the object with the specified\n prototype key - effectively making a whole new object.\n\n Example:\n type button = examples.red_button.RedButton\n type/prototype button=a red button\n\n If the typeclass_path is not given, the current object's typeclass is\n assumed.\n\n View or set an object's typeclass. If setting, the creation hooks of the\n new typeclass will be run on the object. If you have clashing properties on\n the old class, use /reset. By default you are protected from changing to a\n typeclass of the same name as the one you already have - use /force to\n override this protection.\n\n The given typeclass must be identified by its location using python\n dot-notation pointing to the correct module and class. If no typeclass is\n given (or a wrong typeclass is given). Errors in the path or new typeclass\n will lead to the old typeclass being kept. The location of the typeclass\n module is searched from the default typeclass directory, as defined in the\n server settings.\n\n "}
    @@ -1446,7 +1451,7 @@ If object is not specified, the current location is examined.

    -aliases = ['exam', 'ex']
    +aliases = ['ex', 'exam']
    @@ -1469,10 +1474,41 @@ If object is not specified, the current location is examined.

    account_mode = False
    +
    +
    +detail_color = '|c'
    +
    + +
    +
    +header_color = '|w'
    +
    + +
    +
    +quell_color = '|r'
    +
    + +
    +
    +separator = '-'
    +
    +
    list_attribute(crop, attr, category, value)[source]

    Formats a single attribute line.

    +
    +
    Parameters
    +
      +
    • crop (bool) – If output should be cropped if too long.

    • +
    • attr (str) – Attribute key.

    • +
    • category (str) – Attribute category.

    • +
    • value (any) – Attribute value.

    • +
    +
    +
    +

    Returns:

    @@ -1486,7 +1522,17 @@ non-persistent data stored on object

    format_output(obj, avail_cmdset)[source]

    Helper function that creates a nice report about an object.

    -

    returns a string.

    +
    +
    Parameters
    +
      +
    • obj (any) – Object to analyze.

    • +
    • avail_cmdset (CmdSet) – Current cmdset for object.

    • +
    +
    +
    Returns
    +

    str – The formatted string.

    +
    +
    @@ -1502,7 +1548,7 @@ non-persistent data stored on object

    -search_index_entry = {'aliases': 'exam ex', 'category': 'building', 'key': 'examine', 'tags': '', 'text': '\n get detailed information about an object\n\n Usage:\n examine [<object>[/attrname]]\n examine [*<account>[/attrname]]\n\n Switch:\n account - examine an Account (same as adding *)\n object - examine an Object (useful when OOC)\n\n The examine command shows detailed game info about an\n object and optionally a specific attribute on it.\n If object is not specified, the current location is examined.\n\n Append a * before the search string to examine an account.\n\n '}
    +search_index_entry = {'aliases': 'ex exam', 'category': 'building', 'key': 'examine', 'tags': '', 'text': '\n get detailed information about an object\n\n Usage:\n examine [<object>[/attrname]]\n examine [*<account>[/attrname]]\n\n Switch:\n account - examine an Account (same as adding *)\n object - examine an Object (useful when OOC)\n\n The examine command shows detailed game info about an\n object and optionally a specific attribute on it.\n If object is not specified, the current location is examined.\n\n Append a * before the search string to examine an account.\n\n '}
    @@ -1536,7 +1582,7 @@ one is given.

    -aliases = ['locate', 'search']
    +aliases = ['search', 'locate']
    @@ -1567,7 +1613,7 @@ one is given.

    -search_index_entry = {'aliases': 'locate search', 'category': 'building', 'key': 'find', 'tags': '', 'text': '\n search the database for objects\n\n Usage:\n find[/switches] <name or dbref or *account> [= dbrefmin[-dbrefmax]]\n locate - this is a shorthand for using the /loc switch.\n\n Switches:\n room - only look for rooms (location=None)\n exit - only look for exits (destination!=None)\n char - only look for characters (BASE_CHARACTER_TYPECLASS)\n exact - only exact matches are returned.\n loc - display object location if exists and match has one result\n startswith - search for names starting with the string, rather than containing\n\n Searches the database for an object of a particular name or exact #dbref.\n Use *accountname to search for an account. The switches allows for\n limiting object matches to certain game entities. Dbrefmin and dbrefmax\n limits matches to within the given dbrefs range, or above/below if only\n one is given.\n '}
    +search_index_entry = {'aliases': 'search locate', 'category': 'building', 'key': 'find', 'tags': '', 'text': '\n search the database for objects\n\n Usage:\n find[/switches] <name or dbref or *account> [= dbrefmin[-dbrefmax]]\n locate - this is a shorthand for using the /loc switch.\n\n Switches:\n room - only look for rooms (location=None)\n exit - only look for exits (destination!=None)\n char - only look for characters (BASE_CHARACTER_TYPECLASS)\n exact - only exact matches are returned.\n loc - display object location if exists and match has one result\n startswith - search for names starting with the string, rather than containing\n\n Searches the database for an object of a particular name or exact #dbref.\n Use *accountname to search for an account. The switches allows for\n limiting object matches to certain game entities. Dbrefmin and dbrefmax\n limits matches to within the given dbrefs range, or above/below if only\n one is given.\n '}
    diff --git a/docs/0.9.1/api/evennia.commands.default.comms.html b/docs/0.9.1/api/evennia.commands.default.comms.html index 778c412cd0..b0dfb4ab15 100644 --- a/docs/0.9.1/api/evennia.commands.default.comms.html +++ b/docs/0.9.1/api/evennia.commands.default.comms.html @@ -233,7 +233,7 @@ Use addcom/delcom to join and leave channels

    -aliases = ['comlist', 'clist', 'chanlist', 'all channels', 'channellist']
    +aliases = ['clist', 'all channels', 'channellist', 'chanlist', 'comlist']
    @@ -264,7 +264,7 @@ Use addcom/delcom to join and leave channels

    -search_index_entry = {'aliases': 'comlist clist chanlist all channels channellist', 'category': 'comms', 'key': 'channels', 'tags': '', 'text': "\n list all channels available to you\n\n Usage:\n channels\n clist\n comlist\n\n Lists all channels available to you, whether you listen to them or not.\n Use 'comlist' to only view your current channel subscriptions.\n Use addcom/delcom to join and leave channels\n "}
    +search_index_entry = {'aliases': 'clist all channels channellist chanlist comlist', 'category': 'comms', 'key': 'channels', 'tags': '', 'text': "\n list all channels available to you\n\n Usage:\n channels\n clist\n comlist\n\n Lists all channels available to you, whether you listen to them or not.\n Use 'comlist' to only view your current channel subscriptions.\n Use addcom/delcom to join and leave channels\n "}
    diff --git a/docs/0.9.1/api/evennia.commands.default.general.html b/docs/0.9.1/api/evennia.commands.default.general.html index 17824d627a..826f469d49 100644 --- a/docs/0.9.1/api/evennia.commands.default.general.html +++ b/docs/0.9.1/api/evennia.commands.default.general.html @@ -111,7 +111,7 @@ look *<account&g
    -aliases = ['l', 'ls']
    +aliases = ['ls', 'l']
    @@ -142,7 +142,7 @@ look *<account&g
    -search_index_entry = {'aliases': 'l ls', 'category': 'general', 'key': 'look', 'tags': '', 'text': '\n look at location or object\n\n Usage:\n look\n look <obj>\n look *<account>\n\n Observes your location or objects in your vicinity.\n '}
    +search_index_entry = {'aliases': 'ls l', 'category': 'general', 'key': 'look', 'tags': '', 'text': '\n look at location or object\n\n Usage:\n look\n look <obj>\n look *<account>\n\n Observes your location or objects in your vicinity.\n '}
    @@ -259,7 +259,7 @@ inv

    -aliases = ['inv', 'i']
    +aliases = ['i', 'inv']
    @@ -290,7 +290,7 @@ inv

    -search_index_entry = {'aliases': 'inv i', 'category': 'general', 'key': 'inventory', 'tags': '', 'text': '\n view inventory\n\n Usage:\n inventory\n inv\n\n Shows your inventory.\n '}
    +search_index_entry = {'aliases': 'i inv', 'category': 'general', 'key': 'inventory', 'tags': '', 'text': '\n view inventory\n\n Usage:\n inventory\n inv\n\n Shows your inventory.\n '}
    @@ -534,7 +534,7 @@ placing it in their inventory.

    -aliases = ["'", '"']
    +aliases = ['"', "'"]
    @@ -560,7 +560,7 @@ placing it in their inventory.

    -search_index_entry = {'aliases': '\' "', 'category': 'general', 'key': 'say', 'tags': '', 'text': '\n speak as your character\n\n Usage:\n say <message>\n\n Talk to those in your current location.\n '}
    +search_index_entry = {'aliases': '" \'', 'category': 'general', 'key': 'say', 'tags': '', 'text': '\n speak as your character\n\n Usage:\n say <message>\n\n Talk to those in your current location.\n '}
    @@ -699,7 +699,7 @@ which permission groups you are a member of.

    -aliases = ['hierarchy', 'groups']
    +aliases = ['groups', 'hierarchy']
    @@ -730,7 +730,7 @@ which permission groups you are a member of.

    -search_index_entry = {'aliases': 'hierarchy groups', 'category': 'general', 'key': 'access', 'tags': '', 'text': '\n show your current game access\n\n Usage:\n access\n\n This command shows you the permission hierarchy and\n which permission groups you are a member of.\n '}
    +search_index_entry = {'aliases': 'groups hierarchy', 'category': 'general', 'key': 'access', 'tags': '', 'text': '\n show your current game access\n\n Usage:\n access\n\n This command shows you the permission hierarchy and\n which permission groups you are a member of.\n '}
    diff --git a/docs/0.9.1/api/evennia.commands.default.system.html b/docs/0.9.1/api/evennia.commands.default.system.html index 520987bca2..87c7b3c9a5 100644 --- a/docs/0.9.1/api/evennia.commands.default.system.html +++ b/docs/0.9.1/api/evennia.commands.default.system.html @@ -373,7 +373,7 @@ given, <nr> defaults to 10.

    -aliases = ['db', 'listobjs', 'stats', 'listobjects']
    +aliases = ['db', 'stats', 'listobjs', 'listobjects']
    @@ -399,7 +399,7 @@ given, <nr> defaults to 10.

    -search_index_entry = {'aliases': 'db listobjs stats listobjects', 'category': 'system', 'key': 'objects', 'tags': '', 'text': '\n statistics on objects in the database\n\n Usage:\n objects [<nr>]\n\n Gives statictics on objects in database as well as\n a list of <nr> latest objects in database. If not\n given, <nr> defaults to 10.\n '}
    +search_index_entry = {'aliases': 'db stats listobjs listobjects', 'category': 'system', 'key': 'objects', 'tags': '', 'text': '\n statistics on objects in the database\n\n Usage:\n objects [<nr>]\n\n Gives statictics on objects in database as well as\n a list of <nr> latest objects in database. If not\n given, <nr> defaults to 10.\n '}
    diff --git a/docs/0.9.1/api/evennia.commands.default.tests.html b/docs/0.9.1/api/evennia.commands.default.tests.html index e4afb4c6b6..badbb9084a 100644 --- a/docs/0.9.1/api/evennia.commands.default.tests.html +++ b/docs/0.9.1/api/evennia.commands.default.tests.html @@ -243,6 +243,16 @@ output sent to caller.msg in the game

    test_ic()[source]
    +
    +
    +test_ic__other_object()[source]
    +
    + +
    +
    +test_ic__nonaccess()[source]
    +
    +
    test_password()[source]
    diff --git a/docs/0.9.1/api/evennia.commands.default.unloggedin.html b/docs/0.9.1/api/evennia.commands.default.unloggedin.html index 322e93853d..d496d63eeb 100644 --- a/docs/0.9.1/api/evennia.commands.default.unloggedin.html +++ b/docs/0.9.1/api/evennia.commands.default.unloggedin.html @@ -58,7 +58,7 @@ connect “account name” “pass word”

    -aliases = ['con', 'conn', 'co']
    +aliases = ['conn', 'co', 'con']
    @@ -93,7 +93,7 @@ there is no object yet before the account has logged in)

    -search_index_entry = {'aliases': 'con conn co', 'category': 'general', 'key': 'connect', 'tags': '', 'text': '\n connect to the game\n\n Usage (at login screen):\n connect accountname password\n connect "account name" "pass word"\n\n Use the create command to first create an account before logging in.\n\n If you have spaces in your name, enclose it in double quotes.\n '}
    +search_index_entry = {'aliases': 'conn co con', 'category': 'general', 'key': 'connect', 'tags': '', 'text': '\n connect to the game\n\n Usage (at login screen):\n connect accountname password\n connect "account name" "pass word"\n\n Use the create command to first create an account before logging in.\n\n If you have spaces in your name, enclose it in double quotes.\n '}
    @@ -222,7 +222,7 @@ All it does is display the connect screen.

    -aliases = ['l', 'look']
    +aliases = ['look', 'l']
    @@ -248,7 +248,7 @@ All it does is display the connect screen.

    -search_index_entry = {'aliases': 'l look', 'category': 'general', 'key': '__unloggedin_look_command', 'tags': '', 'text': '\n look when in unlogged-in state\n\n Usage:\n look\n\n This is an unconnected version of the look command for simplicity.\n\n This is called by the server and kicks everything in gear.\n All it does is display the connect screen.\n '}
    +search_index_entry = {'aliases': 'look l', 'category': 'general', 'key': '__unloggedin_look_command', 'tags': '', 'text': '\n look when in unlogged-in state\n\n Usage:\n look\n\n This is an unconnected version of the look command for simplicity.\n\n This is called by the server and kicks everything in gear.\n All it does is display the connect screen.\n '}
    @@ -271,7 +271,7 @@ for simplicity. It shows a pane of info.

    -aliases = ['?', 'h']
    +aliases = ['h', '?']
    @@ -297,7 +297,7 @@ for simplicity. It shows a pane of info.

    -search_index_entry = {'aliases': '? h', 'category': 'general', 'key': 'help', 'tags': '', 'text': '\n get help when in unconnected-in state\n\n Usage:\n help\n\n This is an unconnected version of the help command,\n for simplicity. It shows a pane of info.\n '}
    +search_index_entry = {'aliases': 'h ?', 'category': 'general', 'key': 'help', 'tags': '', 'text': '\n get help when in unconnected-in state\n\n Usage:\n help\n\n This is an unconnected version of the help command,\n for simplicity. It shows a pane of info.\n '}
    diff --git a/docs/0.9.1/api/evennia.comms.comms.html b/docs/0.9.1/api/evennia.comms.comms.html index bcfd92c591..f501a8f97b 100644 --- a/docs/0.9.1/api/evennia.comms.comms.html +++ b/docs/0.9.1/api/evennia.comms.comms.html @@ -304,7 +304,8 @@ and senders keywords to create a Msg instance on the fly.

  • sender_strings (list, optional) – Name strings of senders. Used for external connections where the sender is not an account or object. -When this is defined, external will be assumed.

  • +When this is defined, external will be assumed. The list will be +filtered so each sender-string only occurs once.

  • keep_log (bool or None, optional) – This allows to temporarily change the logging status of this channel message. If None, the Channel’s keep_log Attribute will be used. If True or False, that logging status will be used for this diff --git a/docs/0.9.1/api/evennia.contrib.barter.html b/docs/0.9.1/api/evennia.contrib.barter.html index eecc4f3929..1e0bab8286 100644 --- a/docs/0.9.1/api/evennia.contrib.barter.html +++ b/docs/0.9.1/api/evennia.contrib.barter.html @@ -680,7 +680,7 @@ try to influence the other part in the deal.

    -aliases = ['offers', 'deal']
    +aliases = ['deal', 'offers']
    @@ -706,7 +706,7 @@ try to influence the other part in the deal.

    -search_index_entry = {'aliases': 'offers deal', 'category': 'trading', 'key': 'status', 'tags': '', 'text': "\n show a list of the current deal\n\n Usage:\n status\n deal\n offers\n\n Shows the currently suggested offers on each sides of the deal. To\n accept the current deal, use the 'accept' command. Use 'offer' to\n change your deal. You might also want to use 'say', 'emote' etc to\n try to influence the other part in the deal.\n "}
    +search_index_entry = {'aliases': 'deal offers', 'category': 'trading', 'key': 'status', 'tags': '', 'text': "\n show a list of the current deal\n\n Usage:\n status\n deal\n offers\n\n Shows the currently suggested offers on each sides of the deal. To\n accept the current deal, use the 'accept' command. Use 'offer' to\n change your deal. You might also want to use 'say', 'emote' etc to\n try to influence the other part in the deal.\n "}
    diff --git a/docs/0.9.1/api/evennia.contrib.chargen.html b/docs/0.9.1/api/evennia.contrib.chargen.html index 505d9d3b9d..2c330bf7ef 100644 --- a/docs/0.9.1/api/evennia.contrib.chargen.html +++ b/docs/0.9.1/api/evennia.contrib.chargen.html @@ -76,7 +76,7 @@ at them with this command.

    -aliases = ['l', 'ls']
    +aliases = ['ls', 'l']
    @@ -108,7 +108,7 @@ that is checked by the @ic command directly.

    -search_index_entry = {'aliases': 'l ls', 'category': 'general', 'key': 'look', 'tags': '', 'text': '\n ooc look\n\n Usage:\n look\n look <character>\n\n This is an OOC version of the look command. Since an Account doesn\'t\n have an in-game existence, there is no concept of location or\n "self".\n\n If any characters are available for you to control, you may look\n at them with this command.\n '}
    +search_index_entry = {'aliases': 'ls l', 'category': 'general', 'key': 'look', 'tags': '', 'text': '\n ooc look\n\n Usage:\n look\n look <character>\n\n This is an OOC version of the look command. Since an Account doesn\'t\n have an in-game existence, there is no concept of location or\n "self".\n\n If any characters are available for you to control, you may look\n at them with this command.\n '}
    diff --git a/docs/0.9.1/api/evennia.contrib.clothing.html b/docs/0.9.1/api/evennia.contrib.clothing.html index 672dfce56b..a977afaa8b 100644 --- a/docs/0.9.1/api/evennia.contrib.clothing.html +++ b/docs/0.9.1/api/evennia.contrib.clothing.html @@ -627,7 +627,7 @@ inv

    -aliases = ['inv', 'i']
    +aliases = ['i', 'inv']
    @@ -658,7 +658,7 @@ inv

    -search_index_entry = {'aliases': 'inv i', 'category': 'general', 'key': 'inventory', 'tags': '', 'text': '\n view inventory\n\n Usage:\n inventory\n inv\n\n Shows your inventory.\n '}
    +search_index_entry = {'aliases': 'i inv', 'category': 'general', 'key': 'inventory', 'tags': '', 'text': '\n view inventory\n\n Usage:\n inventory\n inv\n\n Shows your inventory.\n '}
    diff --git a/docs/0.9.1/api/evennia.contrib.dice.html b/docs/0.9.1/api/evennia.contrib.dice.html index 54c507dc22..171f1264b8 100644 --- a/docs/0.9.1/api/evennia.contrib.dice.html +++ b/docs/0.9.1/api/evennia.contrib.dice.html @@ -148,7 +148,7 @@ everyone but the person rolling.

    -aliases = ['@dice', 'roll']
    +aliases = ['roll', '@dice']
    @@ -174,7 +174,7 @@ everyone but the person rolling.

    -search_index_entry = {'aliases': '@dice roll', 'category': 'general', 'key': 'dice', 'tags': '', 'text': "\n roll dice\n\n Usage:\n dice[/switch] <nr>d<sides> [modifier] [success condition]\n\n Switch:\n hidden - tell the room the roll is being done, but don't show the result\n secret - don't inform the room about neither roll nor result\n\n Examples:\n dice 3d6 + 4\n dice 1d100 - 2 < 50\n\n This will roll the given number of dice with given sides and modifiers.\n So e.g. 2d6 + 3 means to 'roll a 6-sided die 2 times and add the result,\n then add 3 to the total'.\n Accepted modifiers are +, -, * and /.\n A success condition is given as normal Python conditionals\n (<,>,<=,>=,==,!=). So e.g. 2d6 + 3 > 10 means that the roll will succeed\n only if the final result is above 8. If a success condition is given, the\n outcome (pass/fail) will be echoed along with how much it succeeded/failed\n with. The hidden/secret switches will hide all or parts of the roll from\n everyone but the person rolling.\n "}
    +search_index_entry = {'aliases': 'roll @dice', 'category': 'general', 'key': 'dice', 'tags': '', 'text': "\n roll dice\n\n Usage:\n dice[/switch] <nr>d<sides> [modifier] [success condition]\n\n Switch:\n hidden - tell the room the roll is being done, but don't show the result\n secret - don't inform the room about neither roll nor result\n\n Examples:\n dice 3d6 + 4\n dice 1d100 - 2 < 50\n\n This will roll the given number of dice with given sides and modifiers.\n So e.g. 2d6 + 3 means to 'roll a 6-sided die 2 times and add the result,\n then add 3 to the total'.\n Accepted modifiers are +, -, * and /.\n A success condition is given as normal Python conditionals\n (<,>,<=,>=,==,!=). So e.g. 2d6 + 3 > 10 means that the roll will succeed\n only if the final result is above 8. If a success condition is given, the\n outcome (pass/fail) will be echoed along with how much it succeeded/failed\n with. The hidden/secret switches will hide all or parts of the roll from\n everyone but the person rolling.\n "}
    diff --git a/docs/0.9.1/api/evennia.contrib.email_login.html b/docs/0.9.1/api/evennia.contrib.email_login.html index 17917c97c9..6998051d27 100644 --- a/docs/0.9.1/api/evennia.contrib.email_login.html +++ b/docs/0.9.1/api/evennia.contrib.email_login.html @@ -73,7 +73,7 @@ the module given by settings.CONNECTION_SCREEN_MODULE.

    -aliases = ['con', 'conn', 'co']
    +aliases = ['conn', 'co', 'con']
    @@ -103,7 +103,7 @@ there is no object yet before the account has logged in)

    -search_index_entry = {'aliases': 'con conn co', 'category': 'general', 'key': 'connect', 'tags': '', 'text': '\n Connect to the game.\n\n Usage (at login screen):\n connect <email> <password>\n\n Use the create command to first create an account before logging in.\n '}
    +search_index_entry = {'aliases': 'conn co con', 'category': 'general', 'key': 'connect', 'tags': '', 'text': '\n Connect to the game.\n\n Usage (at login screen):\n connect <email> <password>\n\n Use the create command to first create an account before logging in.\n '}
    @@ -225,7 +225,7 @@ All it does is display the connect screen.

    -aliases = ['l', 'look']
    +aliases = ['look', 'l']
    @@ -251,7 +251,7 @@ All it does is display the connect screen.

    -search_index_entry = {'aliases': 'l look', 'category': 'general', 'key': '__unloggedin_look_command', 'tags': '', 'text': '\n This is an unconnected version of the `look` command for simplicity.\n\n This is called by the server and kicks everything in gear.\n All it does is display the connect screen.\n '}
    +search_index_entry = {'aliases': 'look l', 'category': 'general', 'key': '__unloggedin_look_command', 'tags': '', 'text': '\n This is an unconnected version of the `look` command for simplicity.\n\n This is called by the server and kicks everything in gear.\n All it does is display the connect screen.\n '}
    @@ -269,7 +269,7 @@ for simplicity. It shows a pane of info.

    -aliases = ['?', 'h']
    +aliases = ['h', '?']
    @@ -295,7 +295,7 @@ for simplicity. It shows a pane of info.

    -search_index_entry = {'aliases': '? h', 'category': 'general', 'key': 'help', 'tags': '', 'text': '\n This is an unconnected version of the help command,\n for simplicity. It shows a pane of info.\n '}
    +search_index_entry = {'aliases': 'h ?', 'category': 'general', 'key': 'help', 'tags': '', 'text': '\n This is an unconnected version of the help command,\n for simplicity. It shows a pane of info.\n '}
    diff --git a/docs/0.9.1/api/evennia.contrib.extended_room.html b/docs/0.9.1/api/evennia.contrib.extended_room.html index ea60a4ce4a..8f04d80591 100644 --- a/docs/0.9.1/api/evennia.contrib.extended_room.html +++ b/docs/0.9.1/api/evennia.contrib.extended_room.html @@ -275,7 +275,7 @@ look *<account&g
    -aliases = ['l', 'ls']
    +aliases = ['ls', 'l']
    @@ -295,7 +295,7 @@ look *<account&g
    -search_index_entry = {'aliases': 'l ls', 'category': 'general', 'key': 'look', 'tags': '', 'text': '\n look\n\n Usage:\n look\n look <obj>\n look <room detail>\n look *<account>\n\n Observes your location, details at your location or objects in your vicinity.\n '}
    +search_index_entry = {'aliases': 'ls l', 'category': 'general', 'key': 'look', 'tags': '', 'text': '\n look\n\n Usage:\n look\n look <obj>\n look <room detail>\n look *<account>\n\n Observes your location, details at your location or objects in your vicinity.\n '}
    diff --git a/docs/0.9.1/api/evennia.contrib.ingame_python.commands.html b/docs/0.9.1/api/evennia.contrib.ingame_python.commands.html index 6922c39ba3..5350d4f11a 100644 --- a/docs/0.9.1/api/evennia.contrib.ingame_python.commands.html +++ b/docs/0.9.1/api/evennia.contrib.ingame_python.commands.html @@ -51,7 +51,7 @@
    -aliases = ['@callback', '@calls', '@callbacks']
    +aliases = ['@calls', '@callback', '@callbacks']
    @@ -132,7 +132,7 @@ on user permission.

    -search_index_entry = {'aliases': '@callback @calls @callbacks', 'category': 'building', 'key': '@call', 'tags': '', 'text': '\n Command to edit callbacks.\n '}
    +search_index_entry = {'aliases': '@calls @callback @callbacks', 'category': 'building', 'key': '@call', 'tags': '', 'text': '\n Command to edit callbacks.\n '}
    diff --git a/docs/0.9.1/api/evennia.contrib.rpsystem.html b/docs/0.9.1/api/evennia.contrib.rpsystem.html index 02911bb9a5..3e9c50c12a 100644 --- a/docs/0.9.1/api/evennia.contrib.rpsystem.html +++ b/docs/0.9.1/api/evennia.contrib.rpsystem.html @@ -635,7 +635,7 @@ a different language.

    -aliases = ["'", '"']
    +aliases = ['"', "'"]
    @@ -661,7 +661,7 @@ a different language.

    -search_index_entry = {'aliases': '\' "', 'category': 'general', 'key': 'say', 'tags': '', 'text': '\n speak as your character\n\n Usage:\n say <message>\n\n Talk to those in your current location.\n '}
    +search_index_entry = {'aliases': '" \'', 'category': 'general', 'key': 'say', 'tags': '', 'text': '\n speak as your character\n\n Usage:\n say <message>\n\n Talk to those in your current location.\n '}
    diff --git a/docs/0.9.1/api/evennia.contrib.turnbattle.tb_range.html b/docs/0.9.1/api/evennia.contrib.turnbattle.tb_range.html index 3fa71ccbf9..0d8fdc1fed 100644 --- a/docs/0.9.1/api/evennia.contrib.turnbattle.tb_range.html +++ b/docs/0.9.1/api/evennia.contrib.turnbattle.tb_range.html @@ -437,7 +437,8 @@ to its roster and then sorts them into a turn order. There can only be one fight going on in a single room at a time, so the script is assigned to a room as its object.

    Fights persist until only one participant is left with any HP or all -remaining participants choose to end the combat with the ‘disengage’ command.

    +remaining participants choose to end the combat with the ‘disengage’ +command.

    at_script_creation()[source]
    diff --git a/docs/0.9.1/api/evennia.contrib.tutorial_examples.cmdset_red_button.html b/docs/0.9.1/api/evennia.contrib.tutorial_examples.cmdset_red_button.html index eecdf6b30f..69d0db6e39 100644 --- a/docs/0.9.1/api/evennia.contrib.tutorial_examples.cmdset_red_button.html +++ b/docs/0.9.1/api/evennia.contrib.tutorial_examples.cmdset_red_button.html @@ -109,7 +109,7 @@ push the lid of the button away.

    -aliases = ['push', 'press', 'press button']
    +aliases = ['press button', 'push', 'press']
    @@ -140,7 +140,7 @@ lid-state respectively.

    -search_index_entry = {'aliases': 'push press press button', 'category': 'general', 'key': 'push button', 'tags': '', 'text': '\n Push the red button\n\n Usage:\n push button\n\n '}
    +search_index_entry = {'aliases': 'press button push press', 'category': 'general', 'key': 'push button', 'tags': '', 'text': '\n Push the red button\n\n Usage:\n push button\n\n '}
    @@ -210,7 +210,7 @@ of causing the lamp to break.

    -aliases = ['open button', 'open']
    +aliases = ['open', 'open button']
    @@ -236,7 +236,7 @@ of causing the lamp to break.

    -search_index_entry = {'aliases': 'open button open', 'category': 'general', 'key': 'open lid', 'tags': '', 'text': '\n open lid\n\n Usage:\n open lid\n\n '}
    +search_index_entry = {'aliases': 'open open button', 'category': 'general', 'key': 'open lid', 'tags': '', 'text': '\n open lid\n\n Usage:\n open lid\n\n '}
    @@ -306,7 +306,7 @@ of causing the lamp to break.

    -aliases = ['examine', 'l', 'get', 'listen', 'feel', 'ex']
    +aliases = ['feel', 'examine', 'ex', 'l', 'listen', 'get']
    @@ -332,7 +332,7 @@ of causing the lamp to break.

    -search_index_entry = {'aliases': 'examine l get listen feel ex', 'category': 'general', 'key': 'look', 'tags': '', 'text': "\n Looking around in darkness\n\n Usage:\n look <obj>\n\n ... not that there's much to see in the dark.\n\n "}
    +search_index_entry = {'aliases': 'feel examine ex l listen get', 'category': 'general', 'key': 'look', 'tags': '', 'text': "\n Looking around in darkness\n\n Usage:\n look <obj>\n\n ... not that there's much to see in the dark.\n\n "}
    diff --git a/docs/0.9.1/api/evennia.contrib.tutorial_world.objects.html b/docs/0.9.1/api/evennia.contrib.tutorial_world.objects.html index d9a2ab54fe..dfd1239022 100644 --- a/docs/0.9.1/api/evennia.contrib.tutorial_world.objects.html +++ b/docs/0.9.1/api/evennia.contrib.tutorial_world.objects.html @@ -360,7 +360,7 @@ of the object. We overload it with our own version.

    -aliases = ['burn', 'light']
    +aliases = ['light', 'burn']
    @@ -387,7 +387,7 @@ to sit on a “lightable” object, we operate only on self.obj.

    -search_index_entry = {'aliases': 'burn light', 'category': 'tutorialworld', 'key': 'on', 'tags': '', 'text': '\n Creates light where there was none. Something to burn.\n '}
    +search_index_entry = {'aliases': 'light burn', 'category': 'tutorialworld', 'key': 'on', 'tags': '', 'text': '\n Creates light where there was none. Something to burn.\n '}
    @@ -491,7 +491,7 @@ shift green root up/down

    -aliases = ['shiftroot', 'push', 'pull', 'move']
    +aliases = ['shiftroot', 'push', 'move', 'pull']
    @@ -527,7 +527,7 @@ yellow/green - horizontal roots

    -search_index_entry = {'aliases': 'shiftroot push pull move', 'category': 'tutorialworld', 'key': 'shift', 'tags': '', 'text': '\n Shifts roots around.\n\n Usage:\n shift blue root left/right\n shift red root left/right\n shift yellow root up/down\n shift green root up/down\n\n '}
    +search_index_entry = {'aliases': 'shiftroot push move pull', 'category': 'tutorialworld', 'key': 'shift', 'tags': '', 'text': '\n Shifts roots around.\n\n Usage:\n shift blue root left/right\n shift red root left/right\n shift yellow root up/down\n shift green root up/down\n\n '}
    @@ -544,7 +544,7 @@ yellow/green - horizontal roots

    -aliases = ['push button', 'button', 'press button']
    +aliases = ['button', 'press button', 'push button']
    @@ -570,7 +570,7 @@ yellow/green - horizontal roots

    -search_index_entry = {'aliases': 'push button button press button', 'category': 'tutorialworld', 'key': 'press', 'tags': '', 'text': '\n Presses a button.\n '}
    +search_index_entry = {'aliases': 'button press button push button', 'category': 'tutorialworld', 'key': 'press', 'tags': '', 'text': '\n Presses a button.\n '}
    @@ -714,7 +714,7 @@ parry - forgoes your attack but will make you harder to hit on next

    -aliases = ['thrust', 'defend', 'parry', 'pierce', 'slash', 'fight', 'kill', 'hit', 'stab', 'chop']
    +aliases = ['pierce', 'kill', 'hit', 'slash', 'fight', 'thrust', 'stab', 'parry', 'chop', 'defend']
    @@ -740,7 +740,7 @@ parry - forgoes your attack but will make you harder to hit on next

    -search_index_entry = {'aliases': 'thrust defend parry pierce slash fight kill hit stab chop', 'category': 'tutorialworld', 'key': 'attack', 'tags': '', 'text': '\n Attack the enemy. Commands:\n\n stab <enemy>\n slash <enemy>\n parry\n\n stab - (thrust) makes a lot of damage but is harder to hit with.\n slash - is easier to land, but does not make as much damage.\n parry - forgoes your attack but will make you harder to hit on next\n enemy attack.\n\n '}
    +search_index_entry = {'aliases': 'pierce kill hit slash fight thrust stab parry chop defend', 'category': 'tutorialworld', 'key': 'attack', 'tags': '', 'text': '\n Attack the enemy. Commands:\n\n stab <enemy>\n slash <enemy>\n parry\n\n stab - (thrust) makes a lot of damage but is harder to hit with.\n slash - is easier to land, but does not make as much damage.\n parry - forgoes your attack but will make you harder to hit on next\n enemy attack.\n\n '}
    diff --git a/docs/0.9.1/api/evennia.contrib.tutorial_world.rooms.html b/docs/0.9.1/api/evennia.contrib.tutorial_world.rooms.html index 5d9897be2e..80213e508a 100644 --- a/docs/0.9.1/api/evennia.contrib.tutorial_world.rooms.html +++ b/docs/0.9.1/api/evennia.contrib.tutorial_world.rooms.html @@ -183,7 +183,7 @@ code except for adding in the details.

    -aliases = ['l', 'ls']
    +aliases = ['ls', 'l']
    @@ -198,7 +198,7 @@ code except for adding in the details.

    -search_index_entry = {'aliases': 'l ls', 'category': 'tutorialworld', 'key': 'look', 'tags': '', 'text': '\n looks at the room and on details\n\n Usage:\n look <obj>\n look <room detail>\n look *<account>\n\n Observes your location, details at your location or objects\n in your vicinity.\n\n Tutorial: This is a child of the default Look command, that also\n allows us to look at "details" in the room. These details are\n things to examine and offers some extra description without\n actually having to be actual database objects. It uses the\n return_detail() hook on TutorialRooms for this.\n '}
    +search_index_entry = {'aliases': 'ls l', 'category': 'tutorialworld', 'key': 'look', 'tags': '', 'text': '\n looks at the room and on details\n\n Usage:\n look <obj>\n look <room detail>\n look *<account>\n\n Observes your location, details at your location or objects\n in your vicinity.\n\n Tutorial: This is a child of the default Look command, that also\n allows us to look at "details" in the room. These details are\n things to examine and offers some extra description without\n actually having to be actual database objects. It uses the\n return_detail() hook on TutorialRooms for this.\n '}
    @@ -602,7 +602,7 @@ if they fall off the bridge.

    -aliases = ['?', 'h']
    +aliases = ['h', '?']
    @@ -628,7 +628,7 @@ if they fall off the bridge.

    -search_index_entry = {'aliases': '? h', 'category': 'tutorial world', 'key': 'help', 'tags': '', 'text': '\n Overwritten help command while on the bridge.\n '}
    +search_index_entry = {'aliases': 'h ?', 'category': 'tutorial world', 'key': 'help', 'tags': '', 'text': '\n Overwritten help command while on the bridge.\n '}
    @@ -754,7 +754,7 @@ to find something.

    -aliases = ['fiddle', 'search', 'l', 'feel around', 'feel']
    +aliases = ['feel', 'search', 'feel around', 'l', 'fiddle']
    @@ -782,7 +782,7 @@ random chance of eventually finding a light source.

    -search_index_entry = {'aliases': 'fiddle search l feel around feel', 'category': 'tutorialworld', 'key': 'look', 'tags': '', 'text': '\n Look around in darkness\n\n Usage:\n look\n\n Look around in the darkness, trying\n to find something.\n '}
    +search_index_entry = {'aliases': 'feel search feel around l fiddle', 'category': 'tutorialworld', 'key': 'look', 'tags': '', 'text': '\n Look around in darkness\n\n Usage:\n look\n\n Look around in the darkness, trying\n to find something.\n '}
    diff --git a/docs/0.9.1/api/evennia.objects.objects.html b/docs/0.9.1/api/evennia.objects.objects.html index d86589666a..a11c13c086 100644 --- a/docs/0.9.1/api/evennia.objects.objects.html +++ b/docs/0.9.1/api/evennia.objects.objects.html @@ -335,8 +335,7 @@ the keyword attribute_name specifies otherwise.
  • -
  • global_search (bool) – Search all objects globally. This is overruled -by location keyword.

  • +
  • global_search (bool) – Search all objects globally. This overrules ‘location’ data.

  • use_nicks (bool) – Use nickname-replace (nicktype “object”) on searchdata.

  • typeclass (str or Typeclass, or list of either) – Limit search only to Objects with this typeclass. May be a list of typeclasses @@ -1477,7 +1476,7 @@ a character avatar controlled by an account.

    -classmethod create(key, account, **kwargs)[source]
    +classmethod create(key, account=None, **kwargs)[source]

    Creates a basic Character with default parameters, unless otherwise specified or extended.

    Provides a friendlier interface to the utils.create_character() function.

    @@ -1485,8 +1484,8 @@ specified or extended.

    Parameters
    • key (str) – Name of the new Character.

    • -
    • account (obj) – Account to associate this Character with. Required as -an argument, but one can fake it out by supplying None– it will +

    • account (obj, optional) – Account to associate this Character with. +If unset supplying None– it will change the default lockset and skip creator attribution.

    @@ -1651,7 +1650,7 @@ location is always None.

    -classmethod create(key, account, **kwargs)[source]
    +classmethod create(key, account=None, **kwargs)[source]

    Creates a basic Room with default parameters, unless otherwise specified or extended.

    Provides a friendlier interface to the utils.create_object() function.

    @@ -1659,7 +1658,9 @@ specified or extended.

    Parameters
    • key (str) – Name of the new Room.

    • -
    • account (obj) – Account to associate this Room with.

    • +
    • account (obj, optional) – Account to associate this Room with. If +given, it will be given specific control/edit permissions to this +object (along with normal Admin perms). If not given, default

    Keyword Arguments
    @@ -1811,7 +1812,7 @@ exit’s name, triggering the movement between rooms.

    -classmethod create(key, account, source, dest, **kwargs)[source]
    +classmethod create(key, source, dest, account=None, **kwargs)[source]

    Creates a basic Exit with default parameters, unless otherwise specified or extended.

    Provides a friendlier interface to the utils.create_object() function.

    diff --git a/docs/0.9.1/api/evennia.typeclasses.attributes.html b/docs/0.9.1/api/evennia.typeclasses.attributes.html index bfeb67fa22..85a665cfaf 100644 --- a/docs/0.9.1/api/evennia.typeclasses.attributes.html +++ b/docs/0.9.1/api/evennia.typeclasses.attributes.html @@ -1041,14 +1041,17 @@ will be exited.

  • repeat-calling add when having many Attributes to add.

    Parameters
    -

    *args (tuple) –

    Tuples of varying length representing the -Attribute to add to this object. Supported tuples are

    -
      -
    • (key, value)

    • -
    • (key, value, category)

    • -
    • (key, value, category, lockstring)

    • -
    • (key, value, category, lockstring, default_access)

    • +

      *args (tuple) –

      Each argument should be a tuples (can be of varying +length) representing the Attribute to add to this object. +Supported tuples are

      +
      +
        +
      • (key, value)

      • +
      • (key, value, category)

      • +
      • (key, value, category, lockstring)

      • +
      • (key, value, category, lockstring, default_access)

      +

      Keyword Arguments
      diff --git a/docs/0.9.1/api/evennia.typeclasses.tags.html b/docs/0.9.1/api/evennia.typeclasses.tags.html index 6a40b24fe3..82a8585145 100644 --- a/docs/0.9.1/api/evennia.typeclasses.tags.html +++ b/docs/0.9.1/api/evennia.typeclasses.tags.html @@ -58,7 +58,7 @@ limited in what data it can hold, and the tag key+category is indexed for efficient lookup in the database. Tags are shared between objects - a new tag is only created if the key+category combination did not previously exist, making them unsuitable for -storing object-related data (for this a full tag should be +storing object-related data (for this a regular Attribute should be used).

      The ‘db_data’ field is intended as a documentation field for the tag itself, such as to document what this tag+category stands for @@ -363,8 +363,8 @@ tuples [(key, category), …].

      Batch-add tags from a list of tuples.

      Parameters
      -

      tuples (tuple or str) – Any number of tagstr keys, (keystr, category) or -(keystr, category, data) tuples.

      +

      *args (tuple or str) – Each argument should be a tagstr keys or tuple (keystr, category) or +(keystr, category, data). It’s possible to mix input types.

      Notes

      diff --git a/docs/0.9.1/api/evennia.utils.create.html b/docs/0.9.1/api/evennia.utils.create.html index c88bfb562d..784fc06372 100644 --- a/docs/0.9.1/api/evennia.utils.create.html +++ b/docs/0.9.1/api/evennia.utils.create.html @@ -132,7 +132,7 @@ scripts in the database.

      -evennia.utils.create.create_help_entry(key, entrytext, category='General', locks=None, aliases=None)[source]
      +evennia.utils.create.create_help_entry(key, entrytext, category='General', locks=None, aliases=None, tags=None)[source]

      Create a static help entry in the help database. Note that Command help entries are dynamic and directly taken from the __doc__ entries of the command. The database-stored help entries are @@ -145,7 +145,8 @@ in-game setting information and so on.

    • entrytext (str) – The body of te help entry

    • category (str, optional) – The help category of the entry.

    • locks (str, optional) – A lockstring to restrict access.

    • -
    • aliases (list of str) – List of alternative (likely shorter) keynames.

    • +
    • aliases (list of str, optional) – List of alternative (likely shorter) keynames.

    • +
    • tags (lst, optional) – List of tags or tuples (tag, category).

    Returns
    @@ -156,7 +157,7 @@ in-game setting information and so on.

    -evennia.utils.create.create_message(senderobj, message, channels=None, receivers=None, locks=None, header=None)[source]
    +evennia.utils.create.create_message(senderobj, message, channels=None, receivers=None, locks=None, tags=None, header=None)[source]

    Create a new communication Msg. Msgs represent a unit of database-persistent communication between entites.

    @@ -172,6 +173,7 @@ unique key strings.

  • receivers (Object, Account, str or list) – An Account/Object to send to, or a list of them. May be Account objects or accountnames.

  • locks (str) – Lock definition string.

  • +
  • tags (list) – A list of tags or tuples (tag, category).

  • header (str) – Mime-type or other optional information for the message

  • @@ -185,7 +187,7 @@ limit this as desired.

    -evennia.utils.create.create_channel(key, aliases=None, desc=None, locks=None, keep_log=True, typeclass=None)[source]
    +evennia.utils.create.create_channel(key, aliases=None, desc=None, locks=None, keep_log=True, typeclass=None, tags=None)[source]

    Create A communication Channel. A Channel serves as a central hub for distributing Msgs to groups of people without specifying the receivers explicitly. Instead accounts may ‘connect’ to the channel @@ -204,6 +206,7 @@ keep_log switch.

  • keep_log (bool) – Log channel throughput.

  • typeclass (str or class) – The typeclass of the Channel (not often used).

  • +
  • tags (list) – A list of tags or tuples (tag, category).

  • Returns
    diff --git a/docs/0.9.1/api/evennia.utils.eveditor.html b/docs/0.9.1/api/evennia.utils.eveditor.html index 547ac80158..a43510e18a 100644 --- a/docs/0.9.1/api/evennia.utils.eveditor.html +++ b/docs/0.9.1/api/evennia.utils.eveditor.html @@ -273,7 +273,7 @@ indentation.

    -aliases = [':q', ':UU', ':x', ':', ':j', ':A', ':u', ':y', ':s', ':>', ':DD', ':!', ':<', ':wq', ':dw', ':r', ':fd', ':f', ':h', ':p', ':I', '::', ':uu', ':q!', ':fi', ':S', ':i', ':::', ':=', ':w', ':dd', ':echo']
    +aliases = [':', ':::', ':>', ':echo', ':<', ':r', ':s', ':fi', ':UU', ':x', ':y', ':uu', ':dd', ':p', ':!', ':u', ':I', ':h', ':S', ':w', ':q', ':wq', ':j', ':A', ':fd', ':f', ':DD', ':dw', '::', ':i', ':q!', ':=']
    @@ -301,7 +301,7 @@ efficient presentation.

    -search_index_entry = {'aliases': ':q :UU :x : :j :A :u :y :s :> :DD :! :< :wq :dw :r :fd :f :h :p :I :: :uu :q! :fi :S :i ::: := :w :dd :echo', 'category': 'general', 'key': ':editor_command_group', 'tags': '', 'text': '\n Commands for the editor\n '}
    +search_index_entry = {'aliases': ': ::: :> :echo :< :r :s :fi :UU :x :y :uu :dd :p :! :u :I :h :S :w :q :wq :j :A :fd :f :DD :dw :: :i :q! :=', 'category': 'general', 'key': ':editor_command_group', 'tags': '', 'text': '\n Commands for the editor\n '}
    diff --git a/docs/0.9.1/api/evennia.utils.evmore.html b/docs/0.9.1/api/evennia.utils.evmore.html index 88ad62b3f0..c8bd4f8fb5 100644 --- a/docs/0.9.1/api/evennia.utils.evmore.html +++ b/docs/0.9.1/api/evennia.utils.evmore.html @@ -74,7 +74,7 @@ the caller.msg() construct every time the page is updated.

    -aliases = ['t', 'quit', 'e', 'top', 'next', 'back', 'a', 'b', 'end', 'abort', 'n', 'q']
    +aliases = ['abort', 'top', 'n', 'q', 't', 'a', 'back', 'e', 'next', 'b', 'quit', 'end']
    @@ -100,7 +100,7 @@ the caller.msg() construct every time the page is updated.

    -search_index_entry = {'aliases': 't quit e top next back a b end abort n q', 'category': 'general', 'key': '__noinput_command', 'tags': '', 'text': '\n Manipulate the text paging\n '}
    +search_index_entry = {'aliases': 'abort top n q t a back e next b quit end', 'category': 'general', 'key': '__noinput_command', 'tags': '', 'text': '\n Manipulate the text paging\n '}
    diff --git a/docs/0.9.1/api/evennia.utils.inlinefuncs.html b/docs/0.9.1/api/evennia.utils.inlinefuncs.html index d651fd5eb1..1c0229b482 100644 --- a/docs/0.9.1/api/evennia.utils.inlinefuncs.html +++ b/docs/0.9.1/api/evennia.utils.inlinefuncs.html @@ -89,6 +89,33 @@ error message.

    blocks, will lead to the entire string remaining unparsed. Inlineparsing should never traceback.


    +
    +
    +evennia.utils.inlinefuncs.random(*args, **kwargs)[source]
    +

    Inlinefunc. Returns a random number between +0 and 1, from 0 to a maximum value, or within a given range (inclusive).

    +
    +
    Parameters
    +
      +
    • minval (str, optional) – Minimum value. If not given, assumed 0.

    • +
    • maxval (str, optional) – Maximum value.

    • +
    +
    +
    +
    +
    Keyword argumuents:

    session (Session): Session getting the string.

    +
    +
    +

    Notes

    +

    If either of the min/maxvalue has a ‘.’ in it, a floating-point random +value will be returned. Otherwise it will be an integer value in the +given range.

    +

    Example

    +

    $random() +$random(5) +$random(5, 10)

    +
    +
    evennia.utils.inlinefuncs.pad(*args, **kwargs)[source]
    @@ -100,7 +127,8 @@ never traceback.

  • width (str, optional) – Will be converted to integer. Width of padding.

  • align (str, optional) – Alignment of padding; one of ‘c’, ‘l’ or ‘r’.

  • -
  • fillchar (str, optional) – Character used for padding. Defaults to a space.

  • +
  • fillchar (str, optional) – Character used for padding. Defaults to a +space.

  • Keyword Arguments
    @@ -242,6 +270,17 @@ it. It is passed to the inlinefunc.

    +
    +
    +evennia.utils.inlinefuncs.raw(string)[source]
    +

    Escape all inlinefuncs in a string so they won’t get parsed.

    +
    +
    Parameters
    +

    string (str) – String with inlinefuncs to escape.

    +
    +
    +
    +
    exception evennia.utils.inlinefuncs.NickTemplateInvalid[source]
    diff --git a/docs/0.9.1/api/evennia.utils.utils.html b/docs/0.9.1/api/evennia.utils.utils.html index 6f79143618..e239e1aba9 100644 --- a/docs/0.9.1/api/evennia.utils.utils.html +++ b/docs/0.9.1/api/evennia.utils.utils.html @@ -230,15 +230,50 @@ Defaults to client’s default width.

    -
    -evennia.utils.utils.list_to_string(inlist, endsep='and', addquote=False)[source]
    -

    This pretty-formats a list as string output, adding an optional +

    +evennia.utils.utils.iter_to_string(initer, endsep='and', addquote=False)[source]
    +

    This pretty-formats an iterable list as string output, adding an optional alternative separator to the second to last entry. If addquote is True, the outgoing strings will be surrounded by quotes.

    Parameters
      -
    • inlist (list) – The list to print.

    • +
    • initer (any) – Usually an iterable to print. Each element must be possible to +present with a string. Note that if this is a generator, it will be +consumed by this operation.

    • +
    • endsep (str, optional) – If set, the last item separator will +be replaced with this value.

    • +
    • addquote (bool, optional) – This will surround all outgoing +values with double quotes.

    • +
    +
    +
    Returns
    +

    str – The list represented as a string.

    +
    +
    +

    Examples

    +
    >>> list_to_string([1,2,3], endsep='')
    +'1, 2, 3'
    +>>> list_to_string([1,2,3], ensdep='and')
    +'1, 2 and 3'
    +>>> list_to_string([1,2,3], endsep='and', addquote=True)
    +'"1", "2" and "3"'
    +
    +
    +
    + +
    +
    +evennia.utils.utils.list_to_string(initer, endsep='and', addquote=False)
    +

    This pretty-formats an iterable list as string output, adding an optional +alternative separator to the second to last entry. If addquote +is True, the outgoing strings will be surrounded by quotes.

    +
    +
    Parameters
    +
      +
    • initer (any) – Usually an iterable to print. Each element must be possible to +present with a string. Note that if this is a generator, it will be +consumed by this operation.

    • endsep (str, optional) – If set, the last item separator will be replaced with this value.

    • addquote (bool, optional) – This will surround all outgoing @@ -543,18 +578,14 @@ falling back to settings.ENCODINGS.

    • evennia.utils.utils.validate_email_address(emailaddress)[source]
      -

      Checks if an email address is syntactically correct.

      +

      Checks if an email address is syntactically correct. Makes use +of the django email-validator for consistency.

      Parameters

      emailaddress (str) – Email address to validate.

      Returns
      -

      is_valid (bool) – If this is a valid email or not.

      -
      -
      -
      -
      Notes.

      (This snippet was adapted from -http://commandline.org.uk/python/email-syntax-check.)

      +

      bool – If this is a valid email or not.

      @@ -1254,7 +1285,7 @@ print the caller of the caller etc.

      back to normal len for other objects.

      Parameters
      -

      target (string) – A string with potential MXP components +

      target (str) – A string with potential MXP components to search.

      Returns
      @@ -1263,6 +1294,23 @@ to search.

    +
    +
    +evennia.utils.utils.display_len(target)[source]
    +

    Calculate the ‘visible width’ of text. This is not necessarily the same as the +number of characters in the case of certain asian characters. This will also +strip MXP patterns.

    +
    +
    Parameters
    +

    target (any) – Something to measure the length of. If a string, it will be +measured keeping asian-character and MXP links in mind.

    +
    +
    Returns
    +

    int – The visible width of the target.

    +
    +
    +
    +
    evennia.utils.utils.at_search_result(matches, caller, query='', quiet=False, **kwargs)[source]
    diff --git a/docs/0.9.1/genindex.html b/docs/0.9.1/genindex.html index b41e560b83..8869e459d0 100644 --- a/docs/0.9.1/genindex.html +++ b/docs/0.9.1/genindex.html @@ -1169,6 +1169,8 @@
  • ANSIString (class in evennia.utils.ansi)
  • ANSITextWrapper (class in evennia.utils.evtable) +
  • +
  • app_label (evennia.accounts.admin.AccountForm.Meta attribute)
  • append() (evennia.locks.lockhandler.LockHandler method) @@ -3297,6 +3299,8 @@
  • create_channel() (in module evennia.utils.create)
  • create_channels() (in module evennia.server.initial_setup) +
  • +
  • create_character() (evennia.accounts.accounts.DefaultAccount method)
  • create_delays() (evennia.scripts.taskhandler.TaskHandler method)
  • @@ -3700,10 +3704,10 @@
  • decode() (evennia.utils.ansi.ANSIString method)
  • - - + +
  • display_len() (in module evennia.utils.utils) +
  • display_meter() (in module evennia.contrib.health_bar)
  • display_nodetext() (evennia.utils.evmenu.EvMenu method) @@ -7015,6 +7023,8 @@
  • has_perm() (evennia.commands.default.muxcommand.MuxCommand method)
  • header() (evennia.comms.models.Msg property) +
  • +
  • header_color (evennia.commands.default.building.CmdExamine attribute)
  • hello() (in module evennia.server.inputfuncs)
  • @@ -7853,6 +7863,8 @@
  • itemfunc_heal() (in module evennia.contrib.turnbattle.tb_items)
  • ITEMFUNCS (in module evennia.contrib.turnbattle.tb_items) +
  • +
  • iter_to_string() (in module evennia.utils.utils)
  • @@ -10408,7 +10420,11 @@
  • nested_re (evennia.commands.default.building.CmdSetAttribute attribute)
  • new_obj_lockstring (evennia.commands.default.building.CmdCreate attribute) + +
  • new_room_lockstring (evennia.commands.default.building.CmdDig attribute)
  • next_turn() (evennia.contrib.turnbattle.tb_basic.TBBasicTurnHandler method) @@ -11413,6 +11429,8 @@

    Q

    - + - +
    -
  • use_item() (in module evennia.contrib.turnbattle.tb_items) +
  • +
  • user_change_password() (evennia.accounts.admin.AccountDBAdmin method)
  • user_permissions (evennia.accounts.models.AccountDB attribute)
  • diff --git a/docs/0.9.1/objects.inv b/docs/0.9.1/objects.inv index b0651701d1..eac366b618 100644 Binary files a/docs/0.9.1/objects.inv and b/docs/0.9.1/objects.inv differ diff --git a/docs/0.9.1/searchindex.js b/docs/0.9.1/searchindex.js index edb9f29de7..efedb5d118 100644 --- a/docs/0.9.1/searchindex.js +++ b/docs/0.9.1/searchindex.js @@ -1 +1 @@ -Search.setIndex({docnames:["A-voice-operated-elevator-using-events","API-refactoring","Accounts","Add-a-simple-new-web-page","Add-a-wiki-on-your-website","Adding-Command-Tutorial","Adding-Object-Typeclass-Tutorial","Administrative-Docs","Apache-Config","Arxcode-installing-help","Async-Process","Attributes","Banning","Batch-Code-Processor","Batch-Command-Processor","Batch-Processors","Bootstrap-&-Evennia","Bootstrap-Components-and-Utilities","Builder-Docs","Building-Permissions","Building-Quickstart","Building-a-mech-tutorial","Building-menus","Choosing-An-SQL-Server","Client-Support-Grid","Coding-FAQ","Coding-Introduction","Coding-Utils","Command-Cooldown","Command-Duration","Command-Prompt","Command-Sets","Command-System","Commands","Communications","Connection-Screen","Continuous-Integration","Contributing","Coordinates","Custom-Protocols","Customize-channels","Debugging","Default-Command-Help","Default-Exit-Errors","Developer-Central","Dialogues-in-events","Directory-Overview","Docs-refactoring","Dynamic-In-Game-Map","EvEditor","EvMenu","EvMore","Evennia-API","Evennia-Game-Index","Evennia-Introduction","Evennia-for-Diku-Users","Evennia-for-MUSH-Users","Evennia-for-roleplaying-sessions","Execute-Python-Code","First-Steps-Coding","Game-Planning","Gametime-Tutorial","Getting-Started","Glossary","Grapevine","Guest-Logins","HAProxy-Config-(Optional)","Help-System","Help-System-Tutorial","How-To-Get-And-Give-Help","How-to-connect-Evennia-to-Twitter","IRC","Implementing-a-game-rule-system","Inputfuncs","Installing-on-Android","Internationalization","Learn-Python-for-Evennia-The-Hard-Way","Licensing","Links","Locks","Manually-Configuring-Color","Mass-and-weight-for-objects","Messagepath","MonitorHandler","NPC-shop-Tutorial","New-Models","Nicks","OOB","Objects","Online-Setup","Parsing-command-arguments,-theory-and-best-practices","Portal-And-Server","Profiling","Python-3","Python-basic-introduction","Python-basic-tutorial-part-two","Quirks","RSS","Roadmap","Running-Evennia-in-Docker","Screenshot","Scripts","Security","Server-Conf","Sessions","Setting-up-PyCharm","Signals","Soft-Code","Spawner-and-Prototypes","Start-Stop-Reload","Static-In-Game-Map","Tags","Text-Encodings","TextTags","TickerHandler","Turn-based-Combat-System","Tutorial-Aggressive-NPCs","Tutorial-NPCs-listening","Tutorial-Searching-For-Objects","Tutorial-Tweeting-Game-Stats","Tutorial-Vehicles","Tutorial-World-Introduction","Tutorial-for-basic-MUSH-like-game","Tutorials","Typeclasses","Understanding-Color-Tags","Unit-Testing","Updating-Your-Game","Using-MUX-as-a-Standard","Using-Travis","Version-Control","Weather-Tutorial","Web-Character-Generation","Web-Character-View-Tutorial","Web-Features","Web-Tutorial","Webclient","Webclient-brainstorm","Wiki-Index","Zones","api/evennia","api/evennia-api","api/evennia.accounts","api/evennia.accounts.accounts","api/evennia.accounts.admin","api/evennia.accounts.bots","api/evennia.accounts.manager","api/evennia.accounts.models","api/evennia.commands","api/evennia.commands.cmdhandler","api/evennia.commands.cmdparser","api/evennia.commands.cmdset","api/evennia.commands.cmdsethandler","api/evennia.commands.command","api/evennia.commands.default","api/evennia.commands.default.account","api/evennia.commands.default.admin","api/evennia.commands.default.batchprocess","api/evennia.commands.default.building","api/evennia.commands.default.cmdset_account","api/evennia.commands.default.cmdset_character","api/evennia.commands.default.cmdset_session","api/evennia.commands.default.cmdset_unloggedin","api/evennia.commands.default.comms","api/evennia.commands.default.general","api/evennia.commands.default.help","api/evennia.commands.default.muxcommand","api/evennia.commands.default.syscommands","api/evennia.commands.default.system","api/evennia.commands.default.tests","api/evennia.commands.default.unloggedin","api/evennia.comms","api/evennia.comms.admin","api/evennia.comms.channelhandler","api/evennia.comms.comms","api/evennia.comms.managers","api/evennia.comms.models","api/evennia.contrib","api/evennia.contrib.barter","api/evennia.contrib.building_menu","api/evennia.contrib.chargen","api/evennia.contrib.clothing","api/evennia.contrib.color_markups","api/evennia.contrib.custom_gametime","api/evennia.contrib.dice","api/evennia.contrib.email_login","api/evennia.contrib.extended_room","api/evennia.contrib.fieldfill","api/evennia.contrib.gendersub","api/evennia.contrib.health_bar","api/evennia.contrib.ingame_python","api/evennia.contrib.ingame_python.callbackhandler","api/evennia.contrib.ingame_python.commands","api/evennia.contrib.ingame_python.eventfuncs","api/evennia.contrib.ingame_python.scripts","api/evennia.contrib.ingame_python.tests","api/evennia.contrib.ingame_python.typeclasses","api/evennia.contrib.ingame_python.utils","api/evennia.contrib.mail","api/evennia.contrib.mapbuilder","api/evennia.contrib.menu_login","api/evennia.contrib.multidescer","api/evennia.contrib.puzzles","api/evennia.contrib.random_string_generator","api/evennia.contrib.rplanguage","api/evennia.contrib.rpsystem","api/evennia.contrib.security","api/evennia.contrib.security.auditing","api/evennia.contrib.security.auditing.outputs","api/evennia.contrib.security.auditing.server","api/evennia.contrib.security.auditing.tests","api/evennia.contrib.simpledoor","api/evennia.contrib.slow_exit","api/evennia.contrib.talking_npc","api/evennia.contrib.tree_select","api/evennia.contrib.turnbattle","api/evennia.contrib.turnbattle.tb_basic","api/evennia.contrib.turnbattle.tb_equip","api/evennia.contrib.turnbattle.tb_items","api/evennia.contrib.turnbattle.tb_magic","api/evennia.contrib.turnbattle.tb_range","api/evennia.contrib.tutorial_examples","api/evennia.contrib.tutorial_examples.bodyfunctions","api/evennia.contrib.tutorial_examples.cmdset_red_button","api/evennia.contrib.tutorial_examples.example_batch_code","api/evennia.contrib.tutorial_examples.red_button","api/evennia.contrib.tutorial_examples.red_button_scripts","api/evennia.contrib.tutorial_examples.tests","api/evennia.contrib.tutorial_world","api/evennia.contrib.tutorial_world.mob","api/evennia.contrib.tutorial_world.objects","api/evennia.contrib.tutorial_world.rooms","api/evennia.contrib.unixcommand","api/evennia.contrib.wilderness","api/evennia.help","api/evennia.help.admin","api/evennia.help.manager","api/evennia.help.models","api/evennia.locks","api/evennia.locks.lockfuncs","api/evennia.locks.lockhandler","api/evennia.objects","api/evennia.objects.admin","api/evennia.objects.manager","api/evennia.objects.models","api/evennia.objects.objects","api/evennia.prototypes","api/evennia.prototypes.menus","api/evennia.prototypes.protfuncs","api/evennia.prototypes.prototypes","api/evennia.prototypes.spawner","api/evennia.scripts","api/evennia.scripts.admin","api/evennia.scripts.manager","api/evennia.scripts.models","api/evennia.scripts.monitorhandler","api/evennia.scripts.scripthandler","api/evennia.scripts.scripts","api/evennia.scripts.taskhandler","api/evennia.scripts.tickerhandler","api/evennia.server","api/evennia.server.admin","api/evennia.server.amp_client","api/evennia.server.connection_wizard","api/evennia.server.deprecations","api/evennia.server.evennia_launcher","api/evennia.server.game_index_client","api/evennia.server.game_index_client.client","api/evennia.server.game_index_client.service","api/evennia.server.initial_setup","api/evennia.server.inputfuncs","api/evennia.server.manager","api/evennia.server.models","api/evennia.server.portal","api/evennia.server.portal.amp","api/evennia.server.portal.amp_server","api/evennia.server.portal.grapevine","api/evennia.server.portal.irc","api/evennia.server.portal.mccp","api/evennia.server.portal.mssp","api/evennia.server.portal.mxp","api/evennia.server.portal.naws","api/evennia.server.portal.portal","api/evennia.server.portal.portalsessionhandler","api/evennia.server.portal.rss","api/evennia.server.portal.ssh","api/evennia.server.portal.ssl","api/evennia.server.portal.suppress_ga","api/evennia.server.portal.telnet","api/evennia.server.portal.telnet_oob","api/evennia.server.portal.telnet_ssl","api/evennia.server.portal.tests","api/evennia.server.portal.ttype","api/evennia.server.portal.webclient","api/evennia.server.portal.webclient_ajax","api/evennia.server.profiling","api/evennia.server.profiling.dummyrunner","api/evennia.server.profiling.dummyrunner_settings","api/evennia.server.profiling.memplot","api/evennia.server.profiling.settings_mixin","api/evennia.server.profiling.test_queries","api/evennia.server.profiling.tests","api/evennia.server.profiling.timetrace","api/evennia.server.server","api/evennia.server.serversession","api/evennia.server.session","api/evennia.server.sessionhandler","api/evennia.server.signals","api/evennia.server.throttle","api/evennia.server.validators","api/evennia.server.webserver","api/evennia.settings_default","api/evennia.typeclasses","api/evennia.typeclasses.admin","api/evennia.typeclasses.attributes","api/evennia.typeclasses.managers","api/evennia.typeclasses.models","api/evennia.typeclasses.tags","api/evennia.utils","api/evennia.utils.ansi","api/evennia.utils.batchprocessors","api/evennia.utils.containers","api/evennia.utils.create","api/evennia.utils.dbserialize","api/evennia.utils.eveditor","api/evennia.utils.evform","api/evennia.utils.evmenu","api/evennia.utils.evmore","api/evennia.utils.evtable","api/evennia.utils.gametime","api/evennia.utils.idmapper","api/evennia.utils.idmapper.manager","api/evennia.utils.idmapper.models","api/evennia.utils.idmapper.tests","api/evennia.utils.inlinefuncs","api/evennia.utils.logger","api/evennia.utils.optionclasses","api/evennia.utils.optionhandler","api/evennia.utils.picklefield","api/evennia.utils.search","api/evennia.utils.test_resources","api/evennia.utils.text2html","api/evennia.utils.utils","api/evennia.utils.validatorfuncs","api/evennia.web","api/evennia.web.urls","api/evennia.web.utils","api/evennia.web.utils.backends","api/evennia.web.utils.general_context","api/evennia.web.utils.middleware","api/evennia.web.utils.tests","api/evennia.web.webclient","api/evennia.web.webclient.urls","api/evennia.web.webclient.views","api/evennia.web.website","api/evennia.web.website.forms","api/evennia.web.website.templatetags","api/evennia.web.website.templatetags.addclass","api/evennia.web.website.tests","api/evennia.web.website.urls","api/evennia.web.website.views","index","toc"],envversion:{"sphinx.domains.c":2,"sphinx.domains.changeset":1,"sphinx.domains.citation":1,"sphinx.domains.cpp":3,"sphinx.domains.index":1,"sphinx.domains.javascript":2,"sphinx.domains.math":2,"sphinx.domains.python":2,"sphinx.domains.rst":2,"sphinx.domains.std":1,"sphinx.ext.todo":2,"sphinx.ext.viewcode":1,sphinx:56},filenames:["A-voice-operated-elevator-using-events.md","API-refactoring.md","Accounts.md","Add-a-simple-new-web-page.md","Add-a-wiki-on-your-website.md","Adding-Command-Tutorial.md","Adding-Object-Typeclass-Tutorial.md","Administrative-Docs.md","Apache-Config.md","Arxcode-installing-help.md","Async-Process.md","Attributes.md","Banning.md","Batch-Code-Processor.md","Batch-Command-Processor.md","Batch-Processors.md","Bootstrap-&-Evennia.md","Bootstrap-Components-and-Utilities.md","Builder-Docs.md","Building-Permissions.md","Building-Quickstart.md","Building-a-mech-tutorial.md","Building-menus.md","Choosing-An-SQL-Server.md","Client-Support-Grid.md","Coding-FAQ.md","Coding-Introduction.md","Coding-Utils.md","Command-Cooldown.md","Command-Duration.md","Command-Prompt.md","Command-Sets.md","Command-System.md","Commands.md","Communications.md","Connection-Screen.md","Continuous-Integration.md","Contributing.md","Coordinates.md","Custom-Protocols.md","Customize-channels.md","Debugging.md","Default-Command-Help.md","Default-Exit-Errors.md","Developer-Central.md","Dialogues-in-events.md","Directory-Overview.md","Docs-refactoring.md","Dynamic-In-Game-Map.md","EvEditor.md","EvMenu.md","EvMore.md","Evennia-API.md","Evennia-Game-Index.md","Evennia-Introduction.md","Evennia-for-Diku-Users.md","Evennia-for-MUSH-Users.md","Evennia-for-roleplaying-sessions.md","Execute-Python-Code.md","First-Steps-Coding.md","Game-Planning.md","Gametime-Tutorial.md","Getting-Started.md","Glossary.md","Grapevine.md","Guest-Logins.md","HAProxy-Config-(Optional).md","Help-System.md","Help-System-Tutorial.md","How-To-Get-And-Give-Help.md","How-to-connect-Evennia-to-Twitter.md","IRC.md","Implementing-a-game-rule-system.md","Inputfuncs.md","Installing-on-Android.md","Internationalization.md","Learn-Python-for-Evennia-The-Hard-Way.md","Licensing.md","Links.md","Locks.md","Manually-Configuring-Color.md","Mass-and-weight-for-objects.md","Messagepath.md","MonitorHandler.md","NPC-shop-Tutorial.md","New-Models.md","Nicks.md","OOB.md","Objects.md","Online-Setup.md","Parsing-command-arguments,-theory-and-best-practices.md","Portal-And-Server.md","Profiling.md","Python-3.md","Python-basic-introduction.md","Python-basic-tutorial-part-two.md","Quirks.md","RSS.md","Roadmap.md","Running-Evennia-in-Docker.md","Screenshot.md","Scripts.md","Security.md","Server-Conf.md","Sessions.md","Setting-up-PyCharm.md","Signals.md","Soft-Code.md","Spawner-and-Prototypes.md","Start-Stop-Reload.md","Static-In-Game-Map.md","Tags.md","Text-Encodings.md","TextTags.md","TickerHandler.md","Turn-based-Combat-System.md","Tutorial-Aggressive-NPCs.md","Tutorial-NPCs-listening.md","Tutorial-Searching-For-Objects.md","Tutorial-Tweeting-Game-Stats.md","Tutorial-Vehicles.md","Tutorial-World-Introduction.md","Tutorial-for-basic-MUSH-like-game.md","Tutorials.md","Typeclasses.md","Understanding-Color-Tags.md","Unit-Testing.md","Updating-Your-Game.md","Using-MUX-as-a-Standard.md","Using-Travis.md","Version-Control.md","Weather-Tutorial.md","Web-Character-Generation.md","Web-Character-View-Tutorial.md","Web-Features.md","Web-Tutorial.md","Webclient.md","Webclient-brainstorm.md","Wiki-Index.md","Zones.md","api/evennia.rst","api/evennia-api.rst","api/evennia.accounts.rst","api/evennia.accounts.accounts.rst","api/evennia.accounts.admin.rst","api/evennia.accounts.bots.rst","api/evennia.accounts.manager.rst","api/evennia.accounts.models.rst","api/evennia.commands.rst","api/evennia.commands.cmdhandler.rst","api/evennia.commands.cmdparser.rst","api/evennia.commands.cmdset.rst","api/evennia.commands.cmdsethandler.rst","api/evennia.commands.command.rst","api/evennia.commands.default.rst","api/evennia.commands.default.account.rst","api/evennia.commands.default.admin.rst","api/evennia.commands.default.batchprocess.rst","api/evennia.commands.default.building.rst","api/evennia.commands.default.cmdset_account.rst","api/evennia.commands.default.cmdset_character.rst","api/evennia.commands.default.cmdset_session.rst","api/evennia.commands.default.cmdset_unloggedin.rst","api/evennia.commands.default.comms.rst","api/evennia.commands.default.general.rst","api/evennia.commands.default.help.rst","api/evennia.commands.default.muxcommand.rst","api/evennia.commands.default.syscommands.rst","api/evennia.commands.default.system.rst","api/evennia.commands.default.tests.rst","api/evennia.commands.default.unloggedin.rst","api/evennia.comms.rst","api/evennia.comms.admin.rst","api/evennia.comms.channelhandler.rst","api/evennia.comms.comms.rst","api/evennia.comms.managers.rst","api/evennia.comms.models.rst","api/evennia.contrib.rst","api/evennia.contrib.barter.rst","api/evennia.contrib.building_menu.rst","api/evennia.contrib.chargen.rst","api/evennia.contrib.clothing.rst","api/evennia.contrib.color_markups.rst","api/evennia.contrib.custom_gametime.rst","api/evennia.contrib.dice.rst","api/evennia.contrib.email_login.rst","api/evennia.contrib.extended_room.rst","api/evennia.contrib.fieldfill.rst","api/evennia.contrib.gendersub.rst","api/evennia.contrib.health_bar.rst","api/evennia.contrib.ingame_python.rst","api/evennia.contrib.ingame_python.callbackhandler.rst","api/evennia.contrib.ingame_python.commands.rst","api/evennia.contrib.ingame_python.eventfuncs.rst","api/evennia.contrib.ingame_python.scripts.rst","api/evennia.contrib.ingame_python.tests.rst","api/evennia.contrib.ingame_python.typeclasses.rst","api/evennia.contrib.ingame_python.utils.rst","api/evennia.contrib.mail.rst","api/evennia.contrib.mapbuilder.rst","api/evennia.contrib.menu_login.rst","api/evennia.contrib.multidescer.rst","api/evennia.contrib.puzzles.rst","api/evennia.contrib.random_string_generator.rst","api/evennia.contrib.rplanguage.rst","api/evennia.contrib.rpsystem.rst","api/evennia.contrib.security.rst","api/evennia.contrib.security.auditing.rst","api/evennia.contrib.security.auditing.outputs.rst","api/evennia.contrib.security.auditing.server.rst","api/evennia.contrib.security.auditing.tests.rst","api/evennia.contrib.simpledoor.rst","api/evennia.contrib.slow_exit.rst","api/evennia.contrib.talking_npc.rst","api/evennia.contrib.tree_select.rst","api/evennia.contrib.turnbattle.rst","api/evennia.contrib.turnbattle.tb_basic.rst","api/evennia.contrib.turnbattle.tb_equip.rst","api/evennia.contrib.turnbattle.tb_items.rst","api/evennia.contrib.turnbattle.tb_magic.rst","api/evennia.contrib.turnbattle.tb_range.rst","api/evennia.contrib.tutorial_examples.rst","api/evennia.contrib.tutorial_examples.bodyfunctions.rst","api/evennia.contrib.tutorial_examples.cmdset_red_button.rst","api/evennia.contrib.tutorial_examples.example_batch_code.rst","api/evennia.contrib.tutorial_examples.red_button.rst","api/evennia.contrib.tutorial_examples.red_button_scripts.rst","api/evennia.contrib.tutorial_examples.tests.rst","api/evennia.contrib.tutorial_world.rst","api/evennia.contrib.tutorial_world.mob.rst","api/evennia.contrib.tutorial_world.objects.rst","api/evennia.contrib.tutorial_world.rooms.rst","api/evennia.contrib.unixcommand.rst","api/evennia.contrib.wilderness.rst","api/evennia.help.rst","api/evennia.help.admin.rst","api/evennia.help.manager.rst","api/evennia.help.models.rst","api/evennia.locks.rst","api/evennia.locks.lockfuncs.rst","api/evennia.locks.lockhandler.rst","api/evennia.objects.rst","api/evennia.objects.admin.rst","api/evennia.objects.manager.rst","api/evennia.objects.models.rst","api/evennia.objects.objects.rst","api/evennia.prototypes.rst","api/evennia.prototypes.menus.rst","api/evennia.prototypes.protfuncs.rst","api/evennia.prototypes.prototypes.rst","api/evennia.prototypes.spawner.rst","api/evennia.scripts.rst","api/evennia.scripts.admin.rst","api/evennia.scripts.manager.rst","api/evennia.scripts.models.rst","api/evennia.scripts.monitorhandler.rst","api/evennia.scripts.scripthandler.rst","api/evennia.scripts.scripts.rst","api/evennia.scripts.taskhandler.rst","api/evennia.scripts.tickerhandler.rst","api/evennia.server.rst","api/evennia.server.admin.rst","api/evennia.server.amp_client.rst","api/evennia.server.connection_wizard.rst","api/evennia.server.deprecations.rst","api/evennia.server.evennia_launcher.rst","api/evennia.server.game_index_client.rst","api/evennia.server.game_index_client.client.rst","api/evennia.server.game_index_client.service.rst","api/evennia.server.initial_setup.rst","api/evennia.server.inputfuncs.rst","api/evennia.server.manager.rst","api/evennia.server.models.rst","api/evennia.server.portal.rst","api/evennia.server.portal.amp.rst","api/evennia.server.portal.amp_server.rst","api/evennia.server.portal.grapevine.rst","api/evennia.server.portal.irc.rst","api/evennia.server.portal.mccp.rst","api/evennia.server.portal.mssp.rst","api/evennia.server.portal.mxp.rst","api/evennia.server.portal.naws.rst","api/evennia.server.portal.portal.rst","api/evennia.server.portal.portalsessionhandler.rst","api/evennia.server.portal.rss.rst","api/evennia.server.portal.ssh.rst","api/evennia.server.portal.ssl.rst","api/evennia.server.portal.suppress_ga.rst","api/evennia.server.portal.telnet.rst","api/evennia.server.portal.telnet_oob.rst","api/evennia.server.portal.telnet_ssl.rst","api/evennia.server.portal.tests.rst","api/evennia.server.portal.ttype.rst","api/evennia.server.portal.webclient.rst","api/evennia.server.portal.webclient_ajax.rst","api/evennia.server.profiling.rst","api/evennia.server.profiling.dummyrunner.rst","api/evennia.server.profiling.dummyrunner_settings.rst","api/evennia.server.profiling.memplot.rst","api/evennia.server.profiling.settings_mixin.rst","api/evennia.server.profiling.test_queries.rst","api/evennia.server.profiling.tests.rst","api/evennia.server.profiling.timetrace.rst","api/evennia.server.server.rst","api/evennia.server.serversession.rst","api/evennia.server.session.rst","api/evennia.server.sessionhandler.rst","api/evennia.server.signals.rst","api/evennia.server.throttle.rst","api/evennia.server.validators.rst","api/evennia.server.webserver.rst","api/evennia.settings_default.rst","api/evennia.typeclasses.rst","api/evennia.typeclasses.admin.rst","api/evennia.typeclasses.attributes.rst","api/evennia.typeclasses.managers.rst","api/evennia.typeclasses.models.rst","api/evennia.typeclasses.tags.rst","api/evennia.utils.rst","api/evennia.utils.ansi.rst","api/evennia.utils.batchprocessors.rst","api/evennia.utils.containers.rst","api/evennia.utils.create.rst","api/evennia.utils.dbserialize.rst","api/evennia.utils.eveditor.rst","api/evennia.utils.evform.rst","api/evennia.utils.evmenu.rst","api/evennia.utils.evmore.rst","api/evennia.utils.evtable.rst","api/evennia.utils.gametime.rst","api/evennia.utils.idmapper.rst","api/evennia.utils.idmapper.manager.rst","api/evennia.utils.idmapper.models.rst","api/evennia.utils.idmapper.tests.rst","api/evennia.utils.inlinefuncs.rst","api/evennia.utils.logger.rst","api/evennia.utils.optionclasses.rst","api/evennia.utils.optionhandler.rst","api/evennia.utils.picklefield.rst","api/evennia.utils.search.rst","api/evennia.utils.test_resources.rst","api/evennia.utils.text2html.rst","api/evennia.utils.utils.rst","api/evennia.utils.validatorfuncs.rst","api/evennia.web.rst","api/evennia.web.urls.rst","api/evennia.web.utils.rst","api/evennia.web.utils.backends.rst","api/evennia.web.utils.general_context.rst","api/evennia.web.utils.middleware.rst","api/evennia.web.utils.tests.rst","api/evennia.web.webclient.rst","api/evennia.web.webclient.urls.rst","api/evennia.web.webclient.views.rst","api/evennia.web.website.rst","api/evennia.web.website.forms.rst","api/evennia.web.website.templatetags.rst","api/evennia.web.website.templatetags.addclass.rst","api/evennia.web.website.tests.rst","api/evennia.web.website.urls.rst","api/evennia.web.website.views.rst","index.md","toc.md"],objects:{"":{evennia:[140,0,0,"-"]},"evennia.accounts":{accounts:[143,0,0,"-"],admin:[144,0,0,"-"],bots:[145,0,0,"-"],manager:[146,0,0,"-"],models:[147,0,0,"-"]},"evennia.accounts.accounts":{DefaultAccount:[143,1,1,""],DefaultGuest:[143,1,1,""]},"evennia.accounts.accounts.DefaultAccount":{"delete":[143,3,1,""],DoesNotExist:[143,2,1,""],MultipleObjectsReturned:[143,2,1,""],access:[143,3,1,""],at_access:[143,3,1,""],at_account_creation:[143,3,1,""],at_cmdset_get:[143,3,1,""],at_disconnect:[143,3,1,""],at_failed_login:[143,3,1,""],at_first_login:[143,3,1,""],at_first_save:[143,3,1,""],at_init:[143,3,1,""],at_look:[143,3,1,""],at_msg_receive:[143,3,1,""],at_msg_send:[143,3,1,""],at_password_change:[143,3,1,""],at_post_disconnect:[143,3,1,""],at_post_login:[143,3,1,""],at_pre_login:[143,3,1,""],at_server_reload:[143,3,1,""],at_server_shutdown:[143,3,1,""],authenticate:[143,3,1,""],basetype_setup:[143,3,1,""],character:[143,3,1,""],characters:[143,3,1,""],cmdset:[143,4,1,""],connection_time:[143,3,1,""],create:[143,3,1,""],disconnect_session_from_account:[143,3,1,""],execute_cmd:[143,3,1,""],get_all_puppets:[143,3,1,""],get_puppet:[143,3,1,""],get_username_validators:[143,3,1,""],idle_time:[143,3,1,""],is_banned:[143,3,1,""],msg:[143,3,1,""],nicks:[143,4,1,""],normalize_username:[143,3,1,""],objects:[143,4,1,""],options:[143,4,1,""],path:[143,4,1,""],puppet:[143,3,1,""],puppet_object:[143,3,1,""],scripts:[143,4,1,""],search:[143,3,1,""],sessions:[143,4,1,""],set_password:[143,3,1,""],typename:[143,4,1,""],unpuppet_all:[143,3,1,""],unpuppet_object:[143,3,1,""],validate_password:[143,3,1,""],validate_username:[143,3,1,""]},"evennia.accounts.accounts.DefaultGuest":{DoesNotExist:[143,2,1,""],MultipleObjectsReturned:[143,2,1,""],at_post_disconnect:[143,3,1,""],at_post_login:[143,3,1,""],at_server_shutdown:[143,3,1,""],authenticate:[143,3,1,""],create:[143,3,1,""],path:[143,4,1,""],typename:[143,4,1,""]},"evennia.accounts.admin":{AccountAttributeInline:[144,1,1,""],AccountDBAdmin:[144,1,1,""],AccountDBChangeForm:[144,1,1,""],AccountDBCreationForm:[144,1,1,""],AccountForm:[144,1,1,""],AccountInline:[144,1,1,""],AccountTagInline:[144,1,1,""]},"evennia.accounts.admin.AccountAttributeInline":{media:[144,3,1,""],model:[144,4,1,""],related_field:[144,4,1,""]},"evennia.accounts.admin.AccountDBAdmin":{add_fieldsets:[144,4,1,""],add_form:[144,4,1,""],fieldsets:[144,4,1,""],form:[144,4,1,""],inlines:[144,4,1,""],list_display:[144,4,1,""],media:[144,3,1,""],response_add:[144,3,1,""],save_model:[144,3,1,""]},"evennia.accounts.admin.AccountDBChangeForm":{Meta:[144,1,1,""],base_fields:[144,4,1,""],clean_username:[144,3,1,""],declared_fields:[144,4,1,""],media:[144,3,1,""]},"evennia.accounts.admin.AccountDBChangeForm.Meta":{fields:[144,4,1,""],model:[144,4,1,""]},"evennia.accounts.admin.AccountDBCreationForm":{Meta:[144,1,1,""],base_fields:[144,4,1,""],clean_username:[144,3,1,""],declared_fields:[144,4,1,""],media:[144,3,1,""]},"evennia.accounts.admin.AccountDBCreationForm.Meta":{fields:[144,4,1,""],model:[144,4,1,""]},"evennia.accounts.admin.AccountForm":{Meta:[144,1,1,""],base_fields:[144,4,1,""],declared_fields:[144,4,1,""],media:[144,3,1,""]},"evennia.accounts.admin.AccountForm.Meta":{fields:[144,4,1,""],model:[144,4,1,""]},"evennia.accounts.admin.AccountInline":{extra:[144,4,1,""],fieldsets:[144,4,1,""],form:[144,4,1,""],max_num:[144,4,1,""],media:[144,3,1,""],model:[144,4,1,""],template:[144,4,1,""]},"evennia.accounts.admin.AccountTagInline":{media:[144,3,1,""],model:[144,4,1,""],related_field:[144,4,1,""]},"evennia.accounts.bots":{Bot:[145,1,1,""],BotStarter:[145,1,1,""],GrapevineBot:[145,1,1,""],IRCBot:[145,1,1,""],RSSBot:[145,1,1,""]},"evennia.accounts.bots.Bot":{DoesNotExist:[145,2,1,""],MultipleObjectsReturned:[145,2,1,""],at_server_shutdown:[145,3,1,""],basetype_setup:[145,3,1,""],execute_cmd:[145,3,1,""],msg:[145,3,1,""],path:[145,4,1,""],start:[145,3,1,""],typename:[145,4,1,""]},"evennia.accounts.bots.BotStarter":{DoesNotExist:[145,2,1,""],MultipleObjectsReturned:[145,2,1,""],at_repeat:[145,3,1,""],at_script_creation:[145,3,1,""],at_server_reload:[145,3,1,""],at_server_shutdown:[145,3,1,""],at_start:[145,3,1,""],path:[145,4,1,""],typename:[145,4,1,""]},"evennia.accounts.bots.GrapevineBot":{DoesNotExist:[145,2,1,""],MultipleObjectsReturned:[145,2,1,""],at_msg_send:[145,3,1,""],execute_cmd:[145,3,1,""],factory_path:[145,4,1,""],msg:[145,3,1,""],path:[145,4,1,""],start:[145,3,1,""],typename:[145,4,1,""]},"evennia.accounts.bots.IRCBot":{DoesNotExist:[145,2,1,""],MultipleObjectsReturned:[145,2,1,""],at_msg_send:[145,3,1,""],execute_cmd:[145,3,1,""],factory_path:[145,4,1,""],get_nicklist:[145,3,1,""],msg:[145,3,1,""],path:[145,4,1,""],ping:[145,3,1,""],reconnect:[145,3,1,""],start:[145,3,1,""],typename:[145,4,1,""]},"evennia.accounts.bots.RSSBot":{DoesNotExist:[145,2,1,""],MultipleObjectsReturned:[145,2,1,""],execute_cmd:[145,3,1,""],path:[145,4,1,""],start:[145,3,1,""],typename:[145,4,1,""]},"evennia.accounts.manager":{AccountManager:[146,1,1,""]},"evennia.accounts.models":{AccountDB:[147,1,1,""]},"evennia.accounts.models.AccountDB":{DoesNotExist:[147,2,1,""],MultipleObjectsReturned:[147,2,1,""],account_subscription_set:[147,4,1,""],cmdset_storage:[147,3,1,""],db_attributes:[147,4,1,""],db_cmdset_storage:[147,4,1,""],db_is_bot:[147,4,1,""],db_is_connected:[147,4,1,""],db_tags:[147,4,1,""],get_next_by_date_joined:[147,3,1,""],get_next_by_db_date_created:[147,3,1,""],get_previous_by_date_joined:[147,3,1,""],get_previous_by_db_date_created:[147,3,1,""],groups:[147,4,1,""],hide_from_accounts_set:[147,4,1,""],id:[147,4,1,""],is_bot:[147,3,1,""],is_connected:[147,3,1,""],key:[147,3,1,""],logentry_set:[147,4,1,""],name:[147,3,1,""],objectdb_set:[147,4,1,""],objects:[147,4,1,""],path:[147,4,1,""],receiver_account_set:[147,4,1,""],scriptdb_set:[147,4,1,""],sender_account_set:[147,4,1,""],typename:[147,4,1,""],uid:[147,3,1,""],user_permissions:[147,4,1,""]},"evennia.commands":{"default":[154,0,0,"-"],cmdhandler:[149,0,0,"-"],cmdparser:[150,0,0,"-"],cmdset:[151,0,0,"-"],cmdsethandler:[152,0,0,"-"],command:[153,0,0,"-"]},"evennia.commands.cmdhandler":{InterruptCommand:[149,2,1,""],cmdhandler:[149,5,1,""]},"evennia.commands.cmdparser":{build_matches:[150,5,1,""],cmdparser:[150,5,1,""],create_match:[150,5,1,""],try_num_prefixes:[150,5,1,""]},"evennia.commands.cmdset":{CmdSet:[151,1,1,""]},"evennia.commands.cmdset.CmdSet":{__init__:[151,3,1,""],add:[151,3,1,""],at_cmdset_creation:[151,3,1,""],count:[151,3,1,""],duplicates:[151,4,1,""],errmessage:[151,4,1,""],get:[151,3,1,""],get_all_cmd_keys_and_aliases:[151,3,1,""],get_system_cmds:[151,3,1,""],key:[151,4,1,""],key_mergetypes:[151,4,1,""],make_unique:[151,3,1,""],mergetype:[151,4,1,""],no_channels:[151,4,1,""],no_exits:[151,4,1,""],no_objs:[151,4,1,""],path:[151,4,1,""],permanent:[151,4,1,""],priority:[151,4,1,""],remove:[151,3,1,""],to_duplicate:[151,4,1,""]},"evennia.commands.cmdsethandler":{CmdSetHandler:[152,1,1,""],import_cmdset:[152,5,1,""]},"evennia.commands.cmdsethandler.CmdSetHandler":{"delete":[152,3,1,""],__init__:[152,3,1,""],add:[152,3,1,""],add_default:[152,3,1,""],all:[152,3,1,""],clear:[152,3,1,""],delete_default:[152,3,1,""],get:[152,3,1,""],has:[152,3,1,""],has_cmdset:[152,3,1,""],remove:[152,3,1,""],remove_default:[152,3,1,""],reset:[152,3,1,""],update:[152,3,1,""]},"evennia.commands.command":{Command:[153,1,1,""],CommandMeta:[153,1,1,""],InterruptCommand:[153,2,1,""]},"evennia.commands.command.Command":{__init__:[153,3,1,""],access:[153,3,1,""],aliases:[153,4,1,""],arg_regex:[153,4,1,""],at_post_cmd:[153,3,1,""],at_pre_cmd:[153,3,1,""],auto_help:[153,4,1,""],client_width:[153,3,1,""],execute_cmd:[153,3,1,""],func:[153,3,1,""],get_command_info:[153,3,1,""],get_extra_info:[153,3,1,""],get_help:[153,3,1,""],help_category:[153,4,1,""],is_exit:[153,4,1,""],key:[153,4,1,""],lock_storage:[153,4,1,""],lockhandler:[153,4,1,""],locks:[153,4,1,""],match:[153,3,1,""],msg:[153,3,1,""],msg_all_sessions:[153,4,1,""],parse:[153,3,1,""],save_for_next:[153,4,1,""],search_index_entry:[153,4,1,""],set_aliases:[153,3,1,""],set_key:[153,3,1,""],styled_footer:[153,3,1,""],styled_header:[153,3,1,""],styled_separator:[153,3,1,""],styled_table:[153,3,1,""]},"evennia.commands.command.CommandMeta":{__init__:[153,3,1,""]},"evennia.commands.default":{account:[155,0,0,"-"],admin:[156,0,0,"-"],batchprocess:[157,0,0,"-"],building:[158,0,0,"-"],cmdset_account:[159,0,0,"-"],cmdset_character:[160,0,0,"-"],cmdset_session:[161,0,0,"-"],cmdset_unloggedin:[162,0,0,"-"],comms:[163,0,0,"-"],general:[164,0,0,"-"],help:[165,0,0,"-"],muxcommand:[166,0,0,"-"],syscommands:[167,0,0,"-"],system:[168,0,0,"-"],unloggedin:[170,0,0,"-"]},"evennia.commands.default.account":{CmdCharCreate:[155,1,1,""],CmdCharDelete:[155,1,1,""],CmdColorTest:[155,1,1,""],CmdIC:[155,1,1,""],CmdOOC:[155,1,1,""],CmdOOCLook:[155,1,1,""],CmdOption:[155,1,1,""],CmdPassword:[155,1,1,""],CmdQuell:[155,1,1,""],CmdQuit:[155,1,1,""],CmdSessions:[155,1,1,""],CmdStyle:[155,1,1,""],CmdWho:[155,1,1,""]},"evennia.commands.default.account.CmdCharCreate":{account_caller:[155,4,1,""],aliases:[155,4,1,""],func:[155,3,1,""],help_category:[155,4,1,""],key:[155,4,1,""],lock_storage:[155,4,1,""],locks:[155,4,1,""],search_index_entry:[155,4,1,""]},"evennia.commands.default.account.CmdCharDelete":{aliases:[155,4,1,""],func:[155,3,1,""],help_category:[155,4,1,""],key:[155,4,1,""],lock_storage:[155,4,1,""],locks:[155,4,1,""],search_index_entry:[155,4,1,""]},"evennia.commands.default.account.CmdColorTest":{account_caller:[155,4,1,""],aliases:[155,4,1,""],func:[155,3,1,""],help_category:[155,4,1,""],key:[155,4,1,""],lock_storage:[155,4,1,""],locks:[155,4,1,""],search_index_entry:[155,4,1,""],slice_bright_bg:[155,4,1,""],slice_bright_fg:[155,4,1,""],slice_dark_bg:[155,4,1,""],slice_dark_fg:[155,4,1,""],table_format:[155,3,1,""]},"evennia.commands.default.account.CmdIC":{account_caller:[155,4,1,""],aliases:[155,4,1,""],func:[155,3,1,""],help_category:[155,4,1,""],key:[155,4,1,""],lock_storage:[155,4,1,""],locks:[155,4,1,""],search_index_entry:[155,4,1,""]},"evennia.commands.default.account.CmdOOC":{account_caller:[155,4,1,""],aliases:[155,4,1,""],func:[155,3,1,""],help_category:[155,4,1,""],key:[155,4,1,""],lock_storage:[155,4,1,""],locks:[155,4,1,""],search_index_entry:[155,4,1,""]},"evennia.commands.default.account.CmdOOCLook":{account_caller:[155,4,1,""],aliases:[155,4,1,""],func:[155,3,1,""],help_category:[155,4,1,""],key:[155,4,1,""],lock_storage:[155,4,1,""],locks:[155,4,1,""],search_index_entry:[155,4,1,""]},"evennia.commands.default.account.CmdOption":{account_caller:[155,4,1,""],aliases:[155,4,1,""],func:[155,3,1,""],help_category:[155,4,1,""],key:[155,4,1,""],lock_storage:[155,4,1,""],locks:[155,4,1,""],search_index_entry:[155,4,1,""],switch_options:[155,4,1,""]},"evennia.commands.default.account.CmdPassword":{account_caller:[155,4,1,""],aliases:[155,4,1,""],func:[155,3,1,""],help_category:[155,4,1,""],key:[155,4,1,""],lock_storage:[155,4,1,""],locks:[155,4,1,""],search_index_entry:[155,4,1,""]},"evennia.commands.default.account.CmdQuell":{account_caller:[155,4,1,""],aliases:[155,4,1,""],func:[155,3,1,""],help_category:[155,4,1,""],key:[155,4,1,""],lock_storage:[155,4,1,""],locks:[155,4,1,""],search_index_entry:[155,4,1,""]},"evennia.commands.default.account.CmdQuit":{account_caller:[155,4,1,""],aliases:[155,4,1,""],func:[155,3,1,""],help_category:[155,4,1,""],key:[155,4,1,""],lock_storage:[155,4,1,""],locks:[155,4,1,""],search_index_entry:[155,4,1,""],switch_options:[155,4,1,""]},"evennia.commands.default.account.CmdSessions":{account_caller:[155,4,1,""],aliases:[155,4,1,""],func:[155,3,1,""],help_category:[155,4,1,""],key:[155,4,1,""],lock_storage:[155,4,1,""],locks:[155,4,1,""],search_index_entry:[155,4,1,""]},"evennia.commands.default.account.CmdStyle":{aliases:[155,4,1,""],func:[155,3,1,""],help_category:[155,4,1,""],key:[155,4,1,""],list_styles:[155,3,1,""],lock_storage:[155,4,1,""],search_index_entry:[155,4,1,""],set:[155,3,1,""],switch_options:[155,4,1,""]},"evennia.commands.default.account.CmdWho":{account_caller:[155,4,1,""],aliases:[155,4,1,""],func:[155,3,1,""],help_category:[155,4,1,""],key:[155,4,1,""],lock_storage:[155,4,1,""],locks:[155,4,1,""],search_index_entry:[155,4,1,""]},"evennia.commands.default.admin":{CmdBan:[156,1,1,""],CmdBoot:[156,1,1,""],CmdEmit:[156,1,1,""],CmdForce:[156,1,1,""],CmdNewPassword:[156,1,1,""],CmdPerm:[156,1,1,""],CmdUnban:[156,1,1,""],CmdWall:[156,1,1,""]},"evennia.commands.default.admin.CmdBan":{aliases:[156,4,1,""],func:[156,3,1,""],help_category:[156,4,1,""],key:[156,4,1,""],lock_storage:[156,4,1,""],locks:[156,4,1,""],search_index_entry:[156,4,1,""]},"evennia.commands.default.admin.CmdBoot":{aliases:[156,4,1,""],func:[156,3,1,""],help_category:[156,4,1,""],key:[156,4,1,""],lock_storage:[156,4,1,""],locks:[156,4,1,""],search_index_entry:[156,4,1,""],switch_options:[156,4,1,""]},"evennia.commands.default.admin.CmdEmit":{aliases:[156,4,1,""],func:[156,3,1,""],help_category:[156,4,1,""],key:[156,4,1,""],lock_storage:[156,4,1,""],locks:[156,4,1,""],search_index_entry:[156,4,1,""],switch_options:[156,4,1,""]},"evennia.commands.default.admin.CmdForce":{aliases:[156,4,1,""],func:[156,3,1,""],help_category:[156,4,1,""],key:[156,4,1,""],lock_storage:[156,4,1,""],locks:[156,4,1,""],perm_used:[156,4,1,""],search_index_entry:[156,4,1,""]},"evennia.commands.default.admin.CmdNewPassword":{aliases:[156,4,1,""],func:[156,3,1,""],help_category:[156,4,1,""],key:[156,4,1,""],lock_storage:[156,4,1,""],locks:[156,4,1,""],search_index_entry:[156,4,1,""]},"evennia.commands.default.admin.CmdPerm":{aliases:[156,4,1,""],func:[156,3,1,""],help_category:[156,4,1,""],key:[156,4,1,""],lock_storage:[156,4,1,""],locks:[156,4,1,""],search_index_entry:[156,4,1,""],switch_options:[156,4,1,""]},"evennia.commands.default.admin.CmdUnban":{aliases:[156,4,1,""],func:[156,3,1,""],help_category:[156,4,1,""],key:[156,4,1,""],lock_storage:[156,4,1,""],locks:[156,4,1,""],search_index_entry:[156,4,1,""]},"evennia.commands.default.admin.CmdWall":{aliases:[156,4,1,""],func:[156,3,1,""],help_category:[156,4,1,""],key:[156,4,1,""],lock_storage:[156,4,1,""],locks:[156,4,1,""],search_index_entry:[156,4,1,""]},"evennia.commands.default.batchprocess":{CmdBatchCode:[157,1,1,""],CmdBatchCommands:[157,1,1,""]},"evennia.commands.default.batchprocess.CmdBatchCode":{aliases:[157,4,1,""],func:[157,3,1,""],help_category:[157,4,1,""],key:[157,4,1,""],lock_storage:[157,4,1,""],locks:[157,4,1,""],search_index_entry:[157,4,1,""],switch_options:[157,4,1,""]},"evennia.commands.default.batchprocess.CmdBatchCommands":{aliases:[157,4,1,""],func:[157,3,1,""],help_category:[157,4,1,""],key:[157,4,1,""],lock_storage:[157,4,1,""],locks:[157,4,1,""],search_index_entry:[157,4,1,""],switch_options:[157,4,1,""]},"evennia.commands.default.building":{CmdCopy:[158,1,1,""],CmdCpAttr:[158,1,1,""],CmdCreate:[158,1,1,""],CmdDesc:[158,1,1,""],CmdDestroy:[158,1,1,""],CmdDig:[158,1,1,""],CmdExamine:[158,1,1,""],CmdFind:[158,1,1,""],CmdLink:[158,1,1,""],CmdListCmdSets:[158,1,1,""],CmdLock:[158,1,1,""],CmdMvAttr:[158,1,1,""],CmdName:[158,1,1,""],CmdOpen:[158,1,1,""],CmdScript:[158,1,1,""],CmdSetAttribute:[158,1,1,""],CmdSetHome:[158,1,1,""],CmdSetObjAlias:[158,1,1,""],CmdSpawn:[158,1,1,""],CmdTag:[158,1,1,""],CmdTeleport:[158,1,1,""],CmdTunnel:[158,1,1,""],CmdTypeclass:[158,1,1,""],CmdUnLink:[158,1,1,""],CmdWipe:[158,1,1,""],ObjManipCommand:[158,1,1,""]},"evennia.commands.default.building.CmdCopy":{aliases:[158,4,1,""],func:[158,3,1,""],help_category:[158,4,1,""],key:[158,4,1,""],lock_storage:[158,4,1,""],locks:[158,4,1,""],search_index_entry:[158,4,1,""]},"evennia.commands.default.building.CmdCpAttr":{aliases:[158,4,1,""],check_from_attr:[158,3,1,""],check_has_attr:[158,3,1,""],check_to_attr:[158,3,1,""],func:[158,3,1,""],get_attr:[158,3,1,""],help_category:[158,4,1,""],key:[158,4,1,""],lock_storage:[158,4,1,""],locks:[158,4,1,""],search_index_entry:[158,4,1,""],switch_options:[158,4,1,""]},"evennia.commands.default.building.CmdCreate":{aliases:[158,4,1,""],func:[158,3,1,""],help_category:[158,4,1,""],key:[158,4,1,""],lock_storage:[158,4,1,""],locks:[158,4,1,""],new_obj_lockstring:[158,4,1,""],search_index_entry:[158,4,1,""],switch_options:[158,4,1,""]},"evennia.commands.default.building.CmdDesc":{aliases:[158,4,1,""],edit_handler:[158,3,1,""],func:[158,3,1,""],help_category:[158,4,1,""],key:[158,4,1,""],lock_storage:[158,4,1,""],locks:[158,4,1,""],search_index_entry:[158,4,1,""],switch_options:[158,4,1,""]},"evennia.commands.default.building.CmdDestroy":{aliases:[158,4,1,""],confirm:[158,4,1,""],default_confirm:[158,4,1,""],func:[158,3,1,""],help_category:[158,4,1,""],key:[158,4,1,""],lock_storage:[158,4,1,""],locks:[158,4,1,""],search_index_entry:[158,4,1,""],switch_options:[158,4,1,""]},"evennia.commands.default.building.CmdDig":{aliases:[158,4,1,""],func:[158,3,1,""],help_category:[158,4,1,""],key:[158,4,1,""],lock_storage:[158,4,1,""],locks:[158,4,1,""],new_room_lockstring:[158,4,1,""],search_index_entry:[158,4,1,""],switch_options:[158,4,1,""]},"evennia.commands.default.building.CmdExamine":{account_mode:[158,4,1,""],aliases:[158,4,1,""],arg_regex:[158,4,1,""],format_attributes:[158,3,1,""],format_output:[158,3,1,""],func:[158,3,1,""],help_category:[158,4,1,""],key:[158,4,1,""],list_attribute:[158,3,1,""],lock_storage:[158,4,1,""],locks:[158,4,1,""],search_index_entry:[158,4,1,""]},"evennia.commands.default.building.CmdFind":{aliases:[158,4,1,""],func:[158,3,1,""],help_category:[158,4,1,""],key:[158,4,1,""],lock_storage:[158,4,1,""],locks:[158,4,1,""],search_index_entry:[158,4,1,""],switch_options:[158,4,1,""]},"evennia.commands.default.building.CmdLink":{aliases:[158,4,1,""],func:[158,3,1,""],help_category:[158,4,1,""],key:[158,4,1,""],lock_storage:[158,4,1,""],locks:[158,4,1,""],search_index_entry:[158,4,1,""]},"evennia.commands.default.building.CmdListCmdSets":{aliases:[158,4,1,""],func:[158,3,1,""],help_category:[158,4,1,""],key:[158,4,1,""],lock_storage:[158,4,1,""],locks:[158,4,1,""],search_index_entry:[158,4,1,""]},"evennia.commands.default.building.CmdLock":{aliases:[158,4,1,""],func:[158,3,1,""],help_category:[158,4,1,""],key:[158,4,1,""],lock_storage:[158,4,1,""],locks:[158,4,1,""],search_index_entry:[158,4,1,""]},"evennia.commands.default.building.CmdMvAttr":{aliases:[158,4,1,""],func:[158,3,1,""],help_category:[158,4,1,""],key:[158,4,1,""],lock_storage:[158,4,1,""],locks:[158,4,1,""],search_index_entry:[158,4,1,""],switch_options:[158,4,1,""]},"evennia.commands.default.building.CmdName":{aliases:[158,4,1,""],func:[158,3,1,""],help_category:[158,4,1,""],key:[158,4,1,""],lock_storage:[158,4,1,""],locks:[158,4,1,""],search_index_entry:[158,4,1,""]},"evennia.commands.default.building.CmdOpen":{aliases:[158,4,1,""],create_exit:[158,3,1,""],func:[158,3,1,""],help_category:[158,4,1,""],key:[158,4,1,""],lock_storage:[158,4,1,""],locks:[158,4,1,""],search_index_entry:[158,4,1,""]},"evennia.commands.default.building.CmdScript":{aliases:[158,4,1,""],func:[158,3,1,""],help_category:[158,4,1,""],key:[158,4,1,""],lock_storage:[158,4,1,""],locks:[158,4,1,""],search_index_entry:[158,4,1,""],switch_options:[158,4,1,""]},"evennia.commands.default.building.CmdSetAttribute":{aliases:[158,4,1,""],check_attr:[158,3,1,""],check_obj:[158,3,1,""],do_nested_lookup:[158,3,1,""],edit_handler:[158,3,1,""],func:[158,3,1,""],help_category:[158,4,1,""],key:[158,4,1,""],lock_storage:[158,4,1,""],locks:[158,4,1,""],nested_re:[158,4,1,""],not_found:[158,4,1,""],rm_attr:[158,3,1,""],search_for_obj:[158,3,1,""],search_index_entry:[158,4,1,""],set_attr:[158,3,1,""],split_nested_attr:[158,3,1,""],view_attr:[158,3,1,""]},"evennia.commands.default.building.CmdSetHome":{aliases:[158,4,1,""],func:[158,3,1,""],help_category:[158,4,1,""],key:[158,4,1,""],lock_storage:[158,4,1,""],locks:[158,4,1,""],search_index_entry:[158,4,1,""]},"evennia.commands.default.building.CmdSetObjAlias":{aliases:[158,4,1,""],func:[158,3,1,""],help_category:[158,4,1,""],key:[158,4,1,""],lock_storage:[158,4,1,""],locks:[158,4,1,""],search_index_entry:[158,4,1,""],switch_options:[158,4,1,""]},"evennia.commands.default.building.CmdSpawn":{aliases:[158,4,1,""],func:[158,3,1,""],help_category:[158,4,1,""],key:[158,4,1,""],lock_storage:[158,4,1,""],locks:[158,4,1,""],search_index_entry:[158,4,1,""],switch_options:[158,4,1,""]},"evennia.commands.default.building.CmdTag":{aliases:[158,4,1,""],arg_regex:[158,4,1,""],func:[158,3,1,""],help_category:[158,4,1,""],key:[158,4,1,""],lock_storage:[158,4,1,""],locks:[158,4,1,""],options:[158,4,1,""],search_index_entry:[158,4,1,""]},"evennia.commands.default.building.CmdTeleport":{aliases:[158,4,1,""],func:[158,3,1,""],help_category:[158,4,1,""],key:[158,4,1,""],lock_storage:[158,4,1,""],locks:[158,4,1,""],rhs_split:[158,4,1,""],search_index_entry:[158,4,1,""],switch_options:[158,4,1,""]},"evennia.commands.default.building.CmdTunnel":{aliases:[158,4,1,""],directions:[158,4,1,""],func:[158,3,1,""],help_category:[158,4,1,""],key:[158,4,1,""],lock_storage:[158,4,1,""],locks:[158,4,1,""],search_index_entry:[158,4,1,""],switch_options:[158,4,1,""]},"evennia.commands.default.building.CmdTypeclass":{aliases:[158,4,1,""],func:[158,3,1,""],help_category:[158,4,1,""],key:[158,4,1,""],lock_storage:[158,4,1,""],locks:[158,4,1,""],search_index_entry:[158,4,1,""],switch_options:[158,4,1,""]},"evennia.commands.default.building.CmdUnLink":{aliases:[158,4,1,""],func:[158,3,1,""],help_category:[158,4,1,""],help_key:[158,4,1,""],key:[158,4,1,""],lock_storage:[158,4,1,""],locks:[158,4,1,""],search_index_entry:[158,4,1,""]},"evennia.commands.default.building.CmdWipe":{aliases:[158,4,1,""],func:[158,3,1,""],help_category:[158,4,1,""],key:[158,4,1,""],lock_storage:[158,4,1,""],locks:[158,4,1,""],search_index_entry:[158,4,1,""]},"evennia.commands.default.building.ObjManipCommand":{aliases:[158,4,1,""],help_category:[158,4,1,""],key:[158,4,1,""],lock_storage:[158,4,1,""],parse:[158,3,1,""],search_index_entry:[158,4,1,""]},"evennia.commands.default.cmdset_account":{AccountCmdSet:[159,1,1,""]},"evennia.commands.default.cmdset_account.AccountCmdSet":{at_cmdset_creation:[159,3,1,""],key:[159,4,1,""],path:[159,4,1,""],priority:[159,4,1,""]},"evennia.commands.default.cmdset_character":{CharacterCmdSet:[160,1,1,""]},"evennia.commands.default.cmdset_character.CharacterCmdSet":{at_cmdset_creation:[160,3,1,""],key:[160,4,1,""],path:[160,4,1,""],priority:[160,4,1,""]},"evennia.commands.default.cmdset_session":{SessionCmdSet:[161,1,1,""]},"evennia.commands.default.cmdset_session.SessionCmdSet":{at_cmdset_creation:[161,3,1,""],key:[161,4,1,""],path:[161,4,1,""],priority:[161,4,1,""]},"evennia.commands.default.cmdset_unloggedin":{UnloggedinCmdSet:[162,1,1,""]},"evennia.commands.default.cmdset_unloggedin.UnloggedinCmdSet":{at_cmdset_creation:[162,3,1,""],key:[162,4,1,""],path:[162,4,1,""],priority:[162,4,1,""]},"evennia.commands.default.comms":{CmdAddCom:[163,1,1,""],CmdAllCom:[163,1,1,""],CmdCBoot:[163,1,1,""],CmdCWho:[163,1,1,""],CmdCdesc:[163,1,1,""],CmdCdestroy:[163,1,1,""],CmdCemit:[163,1,1,""],CmdChannelCreate:[163,1,1,""],CmdChannels:[163,1,1,""],CmdClock:[163,1,1,""],CmdDelCom:[163,1,1,""],CmdIRC2Chan:[163,1,1,""],CmdPage:[163,1,1,""],CmdRSS2Chan:[163,1,1,""]},"evennia.commands.default.comms.CmdAddCom":{account_caller:[163,4,1,""],aliases:[163,4,1,""],func:[163,3,1,""],help_category:[163,4,1,""],key:[163,4,1,""],lock_storage:[163,4,1,""],locks:[163,4,1,""],search_index_entry:[163,4,1,""]},"evennia.commands.default.comms.CmdAllCom":{account_caller:[163,4,1,""],aliases:[163,4,1,""],func:[163,3,1,""],help_category:[163,4,1,""],key:[163,4,1,""],lock_storage:[163,4,1,""],locks:[163,4,1,""],search_index_entry:[163,4,1,""]},"evennia.commands.default.comms.CmdCBoot":{account_caller:[163,4,1,""],aliases:[163,4,1,""],func:[163,3,1,""],help_category:[163,4,1,""],key:[163,4,1,""],lock_storage:[163,4,1,""],locks:[163,4,1,""],search_index_entry:[163,4,1,""],switch_options:[163,4,1,""]},"evennia.commands.default.comms.CmdCWho":{account_caller:[163,4,1,""],aliases:[163,4,1,""],func:[163,3,1,""],help_category:[163,4,1,""],key:[163,4,1,""],lock_storage:[163,4,1,""],locks:[163,4,1,""],search_index_entry:[163,4,1,""]},"evennia.commands.default.comms.CmdCdesc":{account_caller:[163,4,1,""],aliases:[163,4,1,""],func:[163,3,1,""],help_category:[163,4,1,""],key:[163,4,1,""],lock_storage:[163,4,1,""],locks:[163,4,1,""],search_index_entry:[163,4,1,""]},"evennia.commands.default.comms.CmdCdestroy":{account_caller:[163,4,1,""],aliases:[163,4,1,""],func:[163,3,1,""],help_category:[163,4,1,""],key:[163,4,1,""],lock_storage:[163,4,1,""],locks:[163,4,1,""],search_index_entry:[163,4,1,""]},"evennia.commands.default.comms.CmdCemit":{account_caller:[163,4,1,""],aliases:[163,4,1,""],func:[163,3,1,""],help_category:[163,4,1,""],key:[163,4,1,""],lock_storage:[163,4,1,""],locks:[163,4,1,""],search_index_entry:[163,4,1,""],switch_options:[163,4,1,""]},"evennia.commands.default.comms.CmdChannelCreate":{account_caller:[163,4,1,""],aliases:[163,4,1,""],func:[163,3,1,""],help_category:[163,4,1,""],key:[163,4,1,""],lock_storage:[163,4,1,""],locks:[163,4,1,""],search_index_entry:[163,4,1,""]},"evennia.commands.default.comms.CmdChannels":{account_caller:[163,4,1,""],aliases:[163,4,1,""],func:[163,3,1,""],help_category:[163,4,1,""],key:[163,4,1,""],lock_storage:[163,4,1,""],locks:[163,4,1,""],search_index_entry:[163,4,1,""]},"evennia.commands.default.comms.CmdClock":{account_caller:[163,4,1,""],aliases:[163,4,1,""],func:[163,3,1,""],help_category:[163,4,1,""],key:[163,4,1,""],lock_storage:[163,4,1,""],locks:[163,4,1,""],search_index_entry:[163,4,1,""]},"evennia.commands.default.comms.CmdDelCom":{account_caller:[163,4,1,""],aliases:[163,4,1,""],func:[163,3,1,""],help_category:[163,4,1,""],key:[163,4,1,""],lock_storage:[163,4,1,""],locks:[163,4,1,""],search_index_entry:[163,4,1,""]},"evennia.commands.default.comms.CmdIRC2Chan":{aliases:[163,4,1,""],func:[163,3,1,""],help_category:[163,4,1,""],key:[163,4,1,""],lock_storage:[163,4,1,""],locks:[163,4,1,""],search_index_entry:[163,4,1,""],switch_options:[163,4,1,""]},"evennia.commands.default.comms.CmdPage":{account_caller:[163,4,1,""],aliases:[163,4,1,""],func:[163,3,1,""],help_category:[163,4,1,""],key:[163,4,1,""],lock_storage:[163,4,1,""],locks:[163,4,1,""],search_index_entry:[163,4,1,""],switch_options:[163,4,1,""]},"evennia.commands.default.comms.CmdRSS2Chan":{aliases:[163,4,1,""],func:[163,3,1,""],help_category:[163,4,1,""],key:[163,4,1,""],lock_storage:[163,4,1,""],locks:[163,4,1,""],search_index_entry:[163,4,1,""],switch_options:[163,4,1,""]},"evennia.commands.default.general":{CmdAccess:[164,1,1,""],CmdDrop:[164,1,1,""],CmdGet:[164,1,1,""],CmdGive:[164,1,1,""],CmdHome:[164,1,1,""],CmdInventory:[164,1,1,""],CmdLook:[164,1,1,""],CmdNick:[164,1,1,""],CmdPose:[164,1,1,""],CmdSay:[164,1,1,""],CmdSetDesc:[164,1,1,""],CmdWhisper:[164,1,1,""]},"evennia.commands.default.general.CmdAccess":{aliases:[164,4,1,""],arg_regex:[164,4,1,""],func:[164,3,1,""],help_category:[164,4,1,""],key:[164,4,1,""],lock_storage:[164,4,1,""],locks:[164,4,1,""],search_index_entry:[164,4,1,""]},"evennia.commands.default.general.CmdDrop":{aliases:[164,4,1,""],arg_regex:[164,4,1,""],func:[164,3,1,""],help_category:[164,4,1,""],key:[164,4,1,""],lock_storage:[164,4,1,""],locks:[164,4,1,""],search_index_entry:[164,4,1,""]},"evennia.commands.default.general.CmdGet":{aliases:[164,4,1,""],arg_regex:[164,4,1,""],func:[164,3,1,""],help_category:[164,4,1,""],key:[164,4,1,""],lock_storage:[164,4,1,""],locks:[164,4,1,""],search_index_entry:[164,4,1,""]},"evennia.commands.default.general.CmdGive":{aliases:[164,4,1,""],arg_regex:[164,4,1,""],func:[164,3,1,""],help_category:[164,4,1,""],key:[164,4,1,""],lock_storage:[164,4,1,""],locks:[164,4,1,""],rhs_split:[164,4,1,""],search_index_entry:[164,4,1,""]},"evennia.commands.default.general.CmdHome":{aliases:[164,4,1,""],arg_regex:[164,4,1,""],func:[164,3,1,""],help_category:[164,4,1,""],key:[164,4,1,""],lock_storage:[164,4,1,""],locks:[164,4,1,""],search_index_entry:[164,4,1,""]},"evennia.commands.default.general.CmdInventory":{aliases:[164,4,1,""],arg_regex:[164,4,1,""],func:[164,3,1,""],help_category:[164,4,1,""],key:[164,4,1,""],lock_storage:[164,4,1,""],locks:[164,4,1,""],search_index_entry:[164,4,1,""]},"evennia.commands.default.general.CmdLook":{aliases:[164,4,1,""],arg_regex:[164,4,1,""],func:[164,3,1,""],help_category:[164,4,1,""],key:[164,4,1,""],lock_storage:[164,4,1,""],locks:[164,4,1,""],search_index_entry:[164,4,1,""]},"evennia.commands.default.general.CmdNick":{aliases:[164,4,1,""],func:[164,3,1,""],help_category:[164,4,1,""],key:[164,4,1,""],lock_storage:[164,4,1,""],locks:[164,4,1,""],parse:[164,3,1,""],search_index_entry:[164,4,1,""],switch_options:[164,4,1,""]},"evennia.commands.default.general.CmdPose":{aliases:[164,4,1,""],func:[164,3,1,""],help_category:[164,4,1,""],key:[164,4,1,""],lock_storage:[164,4,1,""],locks:[164,4,1,""],parse:[164,3,1,""],search_index_entry:[164,4,1,""]},"evennia.commands.default.general.CmdSay":{aliases:[164,4,1,""],func:[164,3,1,""],help_category:[164,4,1,""],key:[164,4,1,""],lock_storage:[164,4,1,""],locks:[164,4,1,""],search_index_entry:[164,4,1,""]},"evennia.commands.default.general.CmdSetDesc":{aliases:[164,4,1,""],arg_regex:[164,4,1,""],func:[164,3,1,""],help_category:[164,4,1,""],key:[164,4,1,""],lock_storage:[164,4,1,""],locks:[164,4,1,""],search_index_entry:[164,4,1,""]},"evennia.commands.default.general.CmdWhisper":{aliases:[164,4,1,""],func:[164,3,1,""],help_category:[164,4,1,""],key:[164,4,1,""],lock_storage:[164,4,1,""],locks:[164,4,1,""],search_index_entry:[164,4,1,""]},"evennia.commands.default.help":{CmdHelp:[165,1,1,""],CmdSetHelp:[165,1,1,""]},"evennia.commands.default.help.CmdHelp":{aliases:[165,4,1,""],arg_regex:[165,4,1,""],check_show_help:[165,3,1,""],format_help_entry:[165,3,1,""],format_help_list:[165,3,1,""],func:[165,3,1,""],help_category:[165,4,1,""],help_more:[165,4,1,""],key:[165,4,1,""],lock_storage:[165,4,1,""],locks:[165,4,1,""],msg_help:[165,3,1,""],parse:[165,3,1,""],return_cmdset:[165,4,1,""],search_index_entry:[165,4,1,""],should_list_cmd:[165,3,1,""],suggestion_cutoff:[165,4,1,""],suggestion_maxnum:[165,4,1,""]},"evennia.commands.default.help.CmdSetHelp":{aliases:[165,4,1,""],func:[165,3,1,""],help_category:[165,4,1,""],key:[165,4,1,""],lock_storage:[165,4,1,""],locks:[165,4,1,""],search_index_entry:[165,4,1,""],switch_options:[165,4,1,""]},"evennia.commands.default.muxcommand":{MuxAccountCommand:[166,1,1,""],MuxCommand:[166,1,1,""]},"evennia.commands.default.muxcommand.MuxAccountCommand":{account_caller:[166,4,1,""],aliases:[166,4,1,""],help_category:[166,4,1,""],key:[166,4,1,""],lock_storage:[166,4,1,""],search_index_entry:[166,4,1,""]},"evennia.commands.default.muxcommand.MuxCommand":{aliases:[166,4,1,""],at_post_cmd:[166,3,1,""],at_pre_cmd:[166,3,1,""],func:[166,3,1,""],get_command_info:[166,3,1,""],has_perm:[166,3,1,""],help_category:[166,4,1,""],key:[166,4,1,""],lock_storage:[166,4,1,""],parse:[166,3,1,""],search_index_entry:[166,4,1,""]},"evennia.commands.default.syscommands":{SystemMultimatch:[167,1,1,""],SystemNoInput:[167,1,1,""],SystemNoMatch:[167,1,1,""],SystemSendToChannel:[167,1,1,""]},"evennia.commands.default.syscommands.SystemMultimatch":{aliases:[167,4,1,""],func:[167,3,1,""],help_category:[167,4,1,""],key:[167,4,1,""],lock_storage:[167,4,1,""],locks:[167,4,1,""],search_index_entry:[167,4,1,""]},"evennia.commands.default.syscommands.SystemNoInput":{aliases:[167,4,1,""],func:[167,3,1,""],help_category:[167,4,1,""],key:[167,4,1,""],lock_storage:[167,4,1,""],locks:[167,4,1,""],search_index_entry:[167,4,1,""]},"evennia.commands.default.syscommands.SystemNoMatch":{aliases:[167,4,1,""],func:[167,3,1,""],help_category:[167,4,1,""],key:[167,4,1,""],lock_storage:[167,4,1,""],locks:[167,4,1,""],search_index_entry:[167,4,1,""]},"evennia.commands.default.syscommands.SystemSendToChannel":{aliases:[167,4,1,""],func:[167,3,1,""],help_category:[167,4,1,""],key:[167,4,1,""],lock_storage:[167,4,1,""],locks:[167,4,1,""],parse:[167,3,1,""],search_index_entry:[167,4,1,""]},"evennia.commands.default.system":{CmdAbout:[168,1,1,""],CmdObjects:[168,1,1,""],CmdPy:[168,1,1,""],CmdReload:[168,1,1,""],CmdReset:[168,1,1,""],CmdScripts:[168,1,1,""],CmdServerLoad:[168,1,1,""],CmdService:[168,1,1,""],CmdShutdown:[168,1,1,""],CmdTime:[168,1,1,""]},"evennia.commands.default.system.CmdAbout":{aliases:[168,4,1,""],func:[168,3,1,""],help_category:[168,4,1,""],key:[168,4,1,""],lock_storage:[168,4,1,""],locks:[168,4,1,""],search_index_entry:[168,4,1,""]},"evennia.commands.default.system.CmdObjects":{aliases:[168,4,1,""],func:[168,3,1,""],help_category:[168,4,1,""],key:[168,4,1,""],lock_storage:[168,4,1,""],locks:[168,4,1,""],search_index_entry:[168,4,1,""]},"evennia.commands.default.system.CmdPy":{aliases:[168,4,1,""],func:[168,3,1,""],help_category:[168,4,1,""],key:[168,4,1,""],lock_storage:[168,4,1,""],locks:[168,4,1,""],search_index_entry:[168,4,1,""],switch_options:[168,4,1,""]},"evennia.commands.default.system.CmdReload":{aliases:[168,4,1,""],func:[168,3,1,""],help_category:[168,4,1,""],key:[168,4,1,""],lock_storage:[168,4,1,""],locks:[168,4,1,""],search_index_entry:[168,4,1,""]},"evennia.commands.default.system.CmdReset":{aliases:[168,4,1,""],func:[168,3,1,""],help_category:[168,4,1,""],key:[168,4,1,""],lock_storage:[168,4,1,""],locks:[168,4,1,""],search_index_entry:[168,4,1,""]},"evennia.commands.default.system.CmdScripts":{aliases:[168,4,1,""],excluded_typeclass_paths:[168,4,1,""],func:[168,3,1,""],help_category:[168,4,1,""],key:[168,4,1,""],lock_storage:[168,4,1,""],locks:[168,4,1,""],search_index_entry:[168,4,1,""],switch_options:[168,4,1,""]},"evennia.commands.default.system.CmdServerLoad":{aliases:[168,4,1,""],func:[168,3,1,""],help_category:[168,4,1,""],key:[168,4,1,""],lock_storage:[168,4,1,""],locks:[168,4,1,""],search_index_entry:[168,4,1,""],switch_options:[168,4,1,""]},"evennia.commands.default.system.CmdService":{aliases:[168,4,1,""],func:[168,3,1,""],help_category:[168,4,1,""],key:[168,4,1,""],lock_storage:[168,4,1,""],locks:[168,4,1,""],search_index_entry:[168,4,1,""],switch_options:[168,4,1,""]},"evennia.commands.default.system.CmdShutdown":{aliases:[168,4,1,""],func:[168,3,1,""],help_category:[168,4,1,""],key:[168,4,1,""],lock_storage:[168,4,1,""],locks:[168,4,1,""],search_index_entry:[168,4,1,""]},"evennia.commands.default.system.CmdTime":{aliases:[168,4,1,""],func:[168,3,1,""],help_category:[168,4,1,""],key:[168,4,1,""],lock_storage:[168,4,1,""],locks:[168,4,1,""],search_index_entry:[168,4,1,""]},"evennia.commands.default.tests":{CmdInterrupt:[169,1,1,""],CommandTest:[169,1,1,""],TestAccount:[169,1,1,""],TestAdmin:[169,1,1,""],TestBatchProcess:[169,1,1,""],TestBuilding:[169,1,1,""],TestComms:[169,1,1,""],TestGeneral:[169,1,1,""],TestHelp:[169,1,1,""],TestInterruptCommand:[169,1,1,""],TestSystem:[169,1,1,""],TestSystemCommands:[169,1,1,""],TestUnconnectedCommand:[169,1,1,""]},"evennia.commands.default.tests.CmdInterrupt":{aliases:[169,4,1,""],func:[169,3,1,""],help_category:[169,4,1,""],key:[169,4,1,""],lock_storage:[169,4,1,""],parse:[169,3,1,""],search_index_entry:[169,4,1,""]},"evennia.commands.default.tests.CommandTest":{call:[169,3,1,""]},"evennia.commands.default.tests.TestAccount":{test_char_create:[169,3,1,""],test_char_delete:[169,3,1,""],test_color_test:[169,3,1,""],test_ic:[169,3,1,""],test_ooc:[169,3,1,""],test_ooc_look:[169,3,1,""],test_option:[169,3,1,""],test_password:[169,3,1,""],test_quell:[169,3,1,""],test_quit:[169,3,1,""],test_sessions:[169,3,1,""],test_who:[169,3,1,""]},"evennia.commands.default.tests.TestAdmin":{test_ban:[169,3,1,""],test_emit:[169,3,1,""],test_force:[169,3,1,""],test_perm:[169,3,1,""],test_wall:[169,3,1,""]},"evennia.commands.default.tests.TestBatchProcess":{test_batch_commands:[169,3,1,""]},"evennia.commands.default.tests.TestBuilding":{test_attribute_commands:[169,3,1,""],test_copy:[169,3,1,""],test_create:[169,3,1,""],test_desc:[169,3,1,""],test_desc_default_to_room:[169,3,1,""],test_destroy:[169,3,1,""],test_destroy_sequence:[169,3,1,""],test_dig:[169,3,1,""],test_do_nested_lookup:[169,3,1,""],test_empty_desc:[169,3,1,""],test_examine:[169,3,1,""],test_exit_commands:[169,3,1,""],test_find:[169,3,1,""],test_list_cmdsets:[169,3,1,""],test_lock:[169,3,1,""],test_name:[169,3,1,""],test_nested_attribute_commands:[169,3,1,""],test_script:[169,3,1,""],test_set_home:[169,3,1,""],test_set_obj_alias:[169,3,1,""],test_spawn:[169,3,1,""],test_split_nested_attr:[169,3,1,""],test_tag:[169,3,1,""],test_teleport:[169,3,1,""],test_tunnel:[169,3,1,""],test_tunnel_exit_typeclass:[169,3,1,""],test_typeclass:[169,3,1,""]},"evennia.commands.default.tests.TestComms":{setUp:[169,3,1,""],test_all_com:[169,3,1,""],test_cboot:[169,3,1,""],test_cdesc:[169,3,1,""],test_cdestroy:[169,3,1,""],test_cemit:[169,3,1,""],test_channels:[169,3,1,""],test_clock:[169,3,1,""],test_cwho:[169,3,1,""],test_page:[169,3,1,""],test_toggle_com:[169,3,1,""]},"evennia.commands.default.tests.TestGeneral":{test_access:[169,3,1,""],test_get_and_drop:[169,3,1,""],test_give:[169,3,1,""],test_home:[169,3,1,""],test_inventory:[169,3,1,""],test_look:[169,3,1,""],test_mux_command:[169,3,1,""],test_nick:[169,3,1,""],test_pose:[169,3,1,""],test_say:[169,3,1,""],test_whisper:[169,3,1,""]},"evennia.commands.default.tests.TestHelp":{setUp:[169,3,1,""],tearDown:[169,3,1,""],test_help:[169,3,1,""],test_set_help:[169,3,1,""]},"evennia.commands.default.tests.TestInterruptCommand":{test_interrupt_command:[169,3,1,""]},"evennia.commands.default.tests.TestSystem":{test_about:[169,3,1,""],test_objects:[169,3,1,""],test_py:[169,3,1,""],test_scripts:[169,3,1,""],test_server_load:[169,3,1,""]},"evennia.commands.default.tests.TestSystemCommands":{test_channelcommand:[169,3,1,""],test_multimatch:[169,3,1,""],test_simple_defaults:[169,3,1,""]},"evennia.commands.default.tests.TestUnconnectedCommand":{test_info_command:[169,3,1,""]},"evennia.commands.default.unloggedin":{CmdUnconnectedConnect:[170,1,1,""],CmdUnconnectedCreate:[170,1,1,""],CmdUnconnectedHelp:[170,1,1,""],CmdUnconnectedLook:[170,1,1,""],CmdUnconnectedQuit:[170,1,1,""]},"evennia.commands.default.unloggedin.CmdUnconnectedConnect":{aliases:[170,4,1,""],arg_regex:[170,4,1,""],func:[170,3,1,""],help_category:[170,4,1,""],key:[170,4,1,""],lock_storage:[170,4,1,""],locks:[170,4,1,""],search_index_entry:[170,4,1,""]},"evennia.commands.default.unloggedin.CmdUnconnectedCreate":{aliases:[170,4,1,""],arg_regex:[170,4,1,""],func:[170,3,1,""],help_category:[170,4,1,""],key:[170,4,1,""],lock_storage:[170,4,1,""],locks:[170,4,1,""],search_index_entry:[170,4,1,""]},"evennia.commands.default.unloggedin.CmdUnconnectedHelp":{aliases:[170,4,1,""],func:[170,3,1,""],help_category:[170,4,1,""],key:[170,4,1,""],lock_storage:[170,4,1,""],locks:[170,4,1,""],search_index_entry:[170,4,1,""]},"evennia.commands.default.unloggedin.CmdUnconnectedLook":{aliases:[170,4,1,""],func:[170,3,1,""],help_category:[170,4,1,""],key:[170,4,1,""],lock_storage:[170,4,1,""],locks:[170,4,1,""],search_index_entry:[170,4,1,""]},"evennia.commands.default.unloggedin.CmdUnconnectedQuit":{aliases:[170,4,1,""],func:[170,3,1,""],help_category:[170,4,1,""],key:[170,4,1,""],lock_storage:[170,4,1,""],locks:[170,4,1,""],search_index_entry:[170,4,1,""]},"evennia.comms":{admin:[172,0,0,"-"],channelhandler:[173,0,0,"-"],comms:[174,0,0,"-"],managers:[175,0,0,"-"],models:[176,0,0,"-"]},"evennia.comms.admin":{ChannelAdmin:[172,1,1,""],ChannelAttributeInline:[172,1,1,""],ChannelTagInline:[172,1,1,""],MsgAdmin:[172,1,1,""]},"evennia.comms.admin.ChannelAdmin":{fieldsets:[172,4,1,""],inlines:[172,4,1,""],list_display:[172,4,1,""],list_display_links:[172,4,1,""],list_select_related:[172,4,1,""],media:[172,3,1,""],ordering:[172,4,1,""],raw_id_fields:[172,4,1,""],response_add:[172,3,1,""],save_as:[172,4,1,""],save_model:[172,3,1,""],save_on_top:[172,4,1,""],search_fields:[172,4,1,""],subscriptions:[172,3,1,""]},"evennia.comms.admin.ChannelAttributeInline":{media:[172,3,1,""],model:[172,4,1,""],related_field:[172,4,1,""]},"evennia.comms.admin.ChannelTagInline":{media:[172,3,1,""],model:[172,4,1,""],related_field:[172,4,1,""]},"evennia.comms.admin.MsgAdmin":{list_display:[172,4,1,""],list_display_links:[172,4,1,""],list_select_related:[172,4,1,""],media:[172,3,1,""],ordering:[172,4,1,""],save_as:[172,4,1,""],save_on_top:[172,4,1,""],search_fields:[172,4,1,""]},"evennia.comms.channelhandler":{ChannelCommand:[173,1,1,""],ChannelHandler:[173,1,1,""]},"evennia.comms.channelhandler.ChannelCommand":{aliases:[173,4,1,""],arg_regex:[173,4,1,""],func:[173,3,1,""],get_extra_info:[173,3,1,""],help_category:[173,4,1,""],is_channel:[173,4,1,""],key:[173,4,1,""],lock_storage:[173,4,1,""],obj:[173,4,1,""],parse:[173,3,1,""],search_index_entry:[173,4,1,""]},"evennia.comms.channelhandler.ChannelHandler":{__init__:[173,3,1,""],add:[173,3,1,""],add_channel:[173,3,1,""],clear:[173,3,1,""],get:[173,3,1,""],get_cmdset:[173,3,1,""],remove:[173,3,1,""],update:[173,3,1,""]},"evennia.comms.comms":{DefaultChannel:[174,1,1,""]},"evennia.comms.comms.DefaultChannel":{"delete":[174,3,1,""],DoesNotExist:[174,2,1,""],MultipleObjectsReturned:[174,2,1,""],access:[174,3,1,""],at_channel_creation:[174,3,1,""],at_first_save:[174,3,1,""],at_init:[174,3,1,""],basetype_setup:[174,3,1,""],channel_prefix:[174,3,1,""],connect:[174,3,1,""],create:[174,3,1,""],disconnect:[174,3,1,""],distribute_message:[174,3,1,""],format_external:[174,3,1,""],format_message:[174,3,1,""],format_senders:[174,3,1,""],get_absolute_url:[174,3,1,""],has_connection:[174,3,1,""],message_transform:[174,3,1,""],msg:[174,3,1,""],mute:[174,3,1,""],mutelist:[174,3,1,""],objects:[174,4,1,""],path:[174,4,1,""],pose_transform:[174,3,1,""],post_join_channel:[174,3,1,""],post_leave_channel:[174,3,1,""],post_send_message:[174,3,1,""],pre_join_channel:[174,3,1,""],pre_leave_channel:[174,3,1,""],pre_send_message:[174,3,1,""],tempmsg:[174,3,1,""],typename:[174,4,1,""],unmute:[174,3,1,""],web_get_admin_url:[174,3,1,""],web_get_create_url:[174,3,1,""],web_get_delete_url:[174,3,1,""],web_get_detail_url:[174,3,1,""],web_get_update_url:[174,3,1,""],wholist:[174,3,1,""]},"evennia.comms.managers":{ChannelDBManager:[175,1,1,""],ChannelManager:[175,1,1,""],CommError:[175,2,1,""],MsgManager:[175,1,1,""],identify_object:[175,5,1,""],to_object:[175,5,1,""]},"evennia.comms.managers.ChannelDBManager":{channel_search:[175,3,1,""],get_all_channels:[175,3,1,""],get_channel:[175,3,1,""],get_subscriptions:[175,3,1,""],search_channel:[175,3,1,""]},"evennia.comms.managers.MsgManager":{get_message_by_id:[175,3,1,""],get_messages_by_channel:[175,3,1,""],get_messages_by_receiver:[175,3,1,""],get_messages_by_sender:[175,3,1,""],identify_object:[175,3,1,""],message_search:[175,3,1,""],search_message:[175,3,1,""]},"evennia.comms.models":{ChannelDB:[176,1,1,""],Msg:[176,1,1,""],TempMsg:[176,1,1,""]},"evennia.comms.models.ChannelDB":{DoesNotExist:[176,2,1,""],MultipleObjectsReturned:[176,2,1,""],channel_set:[176,4,1,""],db_account_subscriptions:[176,4,1,""],db_attributes:[176,4,1,""],db_object_subscriptions:[176,4,1,""],db_tags:[176,4,1,""],get_next_by_db_date_created:[176,3,1,""],get_previous_by_db_date_created:[176,3,1,""],hide_from_channels_set:[176,4,1,""],id:[176,4,1,""],objects:[176,4,1,""],path:[176,4,1,""],subscriptions:[176,4,1,""],typename:[176,4,1,""]},"evennia.comms.models.Msg":{DoesNotExist:[176,2,1,""],MultipleObjectsReturned:[176,2,1,""],__init__:[176,3,1,""],access:[176,3,1,""],channels:[176,3,1,""],date_created:[176,3,1,""],db_date_created:[176,4,1,""],db_header:[176,4,1,""],db_hide_from_accounts:[176,4,1,""],db_hide_from_channels:[176,4,1,""],db_hide_from_objects:[176,4,1,""],db_lock_storage:[176,4,1,""],db_message:[176,4,1,""],db_receivers_accounts:[176,4,1,""],db_receivers_channels:[176,4,1,""],db_receivers_objects:[176,4,1,""],db_receivers_scripts:[176,4,1,""],db_sender_accounts:[176,4,1,""],db_sender_external:[176,4,1,""],db_sender_objects:[176,4,1,""],db_sender_scripts:[176,4,1,""],db_tags:[176,4,1,""],get_next_by_db_date_created:[176,3,1,""],get_previous_by_db_date_created:[176,3,1,""],header:[176,3,1,""],hide_from:[176,3,1,""],id:[176,4,1,""],lock_storage:[176,3,1,""],locks:[176,4,1,""],message:[176,3,1,""],objects:[176,4,1,""],path:[176,4,1,""],receivers:[176,3,1,""],remove_receiver:[176,3,1,""],remove_sender:[176,3,1,""],sender_external:[176,3,1,""],senders:[176,3,1,""],tags:[176,4,1,""],typename:[176,4,1,""]},"evennia.comms.models.TempMsg":{__init__:[176,3,1,""],access:[176,3,1,""],locks:[176,4,1,""],remove_receiver:[176,3,1,""],remove_sender:[176,3,1,""]},"evennia.contrib":{barter:[178,0,0,"-"],building_menu:[179,0,0,"-"],chargen:[180,0,0,"-"],clothing:[181,0,0,"-"],color_markups:[182,0,0,"-"],custom_gametime:[183,0,0,"-"],dice:[184,0,0,"-"],email_login:[185,0,0,"-"],extended_room:[186,0,0,"-"],fieldfill:[187,0,0,"-"],gendersub:[188,0,0,"-"],health_bar:[189,0,0,"-"],ingame_python:[190,0,0,"-"],mail:[198,0,0,"-"],mapbuilder:[199,0,0,"-"],menu_login:[200,0,0,"-"],multidescer:[201,0,0,"-"],puzzles:[202,0,0,"-"],random_string_generator:[203,0,0,"-"],rplanguage:[204,0,0,"-"],rpsystem:[205,0,0,"-"],security:[206,0,0,"-"],simpledoor:[211,0,0,"-"],slow_exit:[212,0,0,"-"],talking_npc:[213,0,0,"-"],tree_select:[214,0,0,"-"],turnbattle:[215,0,0,"-"],tutorial_examples:[221,0,0,"-"],tutorial_world:[228,0,0,"-"],unixcommand:[232,0,0,"-"],wilderness:[233,0,0,"-"]},"evennia.contrib.barter":{CmdAccept:[178,1,1,""],CmdDecline:[178,1,1,""],CmdEvaluate:[178,1,1,""],CmdFinish:[178,1,1,""],CmdOffer:[178,1,1,""],CmdStatus:[178,1,1,""],CmdTrade:[178,1,1,""],CmdTradeBase:[178,1,1,""],CmdTradeHelp:[178,1,1,""],CmdsetTrade:[178,1,1,""],TradeHandler:[178,1,1,""],TradeTimeout:[178,1,1,""]},"evennia.contrib.barter.CmdAccept":{aliases:[178,4,1,""],func:[178,3,1,""],help_category:[178,4,1,""],key:[178,4,1,""],lock_storage:[178,4,1,""],locks:[178,4,1,""],search_index_entry:[178,4,1,""]},"evennia.contrib.barter.CmdDecline":{aliases:[178,4,1,""],func:[178,3,1,""],help_category:[178,4,1,""],key:[178,4,1,""],lock_storage:[178,4,1,""],locks:[178,4,1,""],search_index_entry:[178,4,1,""]},"evennia.contrib.barter.CmdEvaluate":{aliases:[178,4,1,""],func:[178,3,1,""],help_category:[178,4,1,""],key:[178,4,1,""],lock_storage:[178,4,1,""],locks:[178,4,1,""],search_index_entry:[178,4,1,""]},"evennia.contrib.barter.CmdFinish":{aliases:[178,4,1,""],func:[178,3,1,""],help_category:[178,4,1,""],key:[178,4,1,""],lock_storage:[178,4,1,""],locks:[178,4,1,""],search_index_entry:[178,4,1,""]},"evennia.contrib.barter.CmdOffer":{aliases:[178,4,1,""],func:[178,3,1,""],help_category:[178,4,1,""],key:[178,4,1,""],lock_storage:[178,4,1,""],locks:[178,4,1,""],search_index_entry:[178,4,1,""]},"evennia.contrib.barter.CmdStatus":{aliases:[178,4,1,""],func:[178,3,1,""],help_category:[178,4,1,""],key:[178,4,1,""],lock_storage:[178,4,1,""],locks:[178,4,1,""],search_index_entry:[178,4,1,""]},"evennia.contrib.barter.CmdTrade":{aliases:[178,4,1,""],func:[178,3,1,""],help_category:[178,4,1,""],key:[178,4,1,""],lock_storage:[178,4,1,""],locks:[178,4,1,""],search_index_entry:[178,4,1,""]},"evennia.contrib.barter.CmdTradeBase":{aliases:[178,4,1,""],help_category:[178,4,1,""],key:[178,4,1,""],lock_storage:[178,4,1,""],parse:[178,3,1,""],search_index_entry:[178,4,1,""]},"evennia.contrib.barter.CmdTradeHelp":{aliases:[178,4,1,""],func:[178,3,1,""],help_category:[178,4,1,""],key:[178,4,1,""],lock_storage:[178,4,1,""],locks:[178,4,1,""],search_index_entry:[178,4,1,""]},"evennia.contrib.barter.CmdsetTrade":{at_cmdset_creation:[178,3,1,""],key:[178,4,1,""],path:[178,4,1,""]},"evennia.contrib.barter.TradeHandler":{__init__:[178,3,1,""],accept:[178,3,1,""],decline:[178,3,1,""],finish:[178,3,1,""],get_other:[178,3,1,""],join:[178,3,1,""],list:[178,3,1,""],msg_other:[178,3,1,""],offer:[178,3,1,""],search:[178,3,1,""],unjoin:[178,3,1,""]},"evennia.contrib.barter.TradeTimeout":{DoesNotExist:[178,2,1,""],MultipleObjectsReturned:[178,2,1,""],at_repeat:[178,3,1,""],at_script_creation:[178,3,1,""],is_valid:[178,3,1,""],path:[178,4,1,""],typename:[178,4,1,""]},"evennia.contrib.building_menu":{BuildingMenu:[179,1,1,""],BuildingMenuCmdSet:[179,1,1,""],Choice:[179,1,1,""],CmdNoInput:[179,1,1,""],CmdNoMatch:[179,1,1,""],GenericBuildingCmd:[179,1,1,""],GenericBuildingMenu:[179,1,1,""],menu_edit:[179,5,1,""],menu_quit:[179,5,1,""],menu_setattr:[179,5,1,""]},"evennia.contrib.building_menu.BuildingMenu":{__init__:[179,3,1,""],add_choice:[179,3,1,""],add_choice_edit:[179,3,1,""],add_choice_quit:[179,3,1,""],close:[179,3,1,""],current_choice:[179,3,1,""],display:[179,3,1,""],display_choice:[179,3,1,""],display_title:[179,3,1,""],init:[179,3,1,""],joker_key:[179,4,1,""],keys_go_back:[179,4,1,""],min_shortcut:[179,4,1,""],move:[179,3,1,""],open:[179,3,1,""],open_parent_menu:[179,3,1,""],open_submenu:[179,3,1,""],relevant_choices:[179,3,1,""],restore:[179,3,1,""],sep_keys:[179,4,1,""]},"evennia.contrib.building_menu.BuildingMenuCmdSet":{at_cmdset_creation:[179,3,1,""],key:[179,4,1,""],path:[179,4,1,""],priority:[179,4,1,""]},"evennia.contrib.building_menu.Choice":{__init__:[179,3,1,""],enter:[179,3,1,""],format_text:[179,3,1,""],keys:[179,3,1,""],leave:[179,3,1,""],nomatch:[179,3,1,""]},"evennia.contrib.building_menu.CmdNoInput":{__init__:[179,3,1,""],aliases:[179,4,1,""],func:[179,3,1,""],help_category:[179,4,1,""],key:[179,4,1,""],lock_storage:[179,4,1,""],locks:[179,4,1,""],search_index_entry:[179,4,1,""]},"evennia.contrib.building_menu.CmdNoMatch":{__init__:[179,3,1,""],aliases:[179,4,1,""],func:[179,3,1,""],help_category:[179,4,1,""],key:[179,4,1,""],lock_storage:[179,4,1,""],locks:[179,4,1,""],search_index_entry:[179,4,1,""]},"evennia.contrib.building_menu.GenericBuildingCmd":{aliases:[179,4,1,""],func:[179,3,1,""],help_category:[179,4,1,""],key:[179,4,1,""],lock_storage:[179,4,1,""],search_index_entry:[179,4,1,""]},"evennia.contrib.building_menu.GenericBuildingMenu":{init:[179,3,1,""]},"evennia.contrib.chargen":{CmdOOCCharacterCreate:[180,1,1,""],CmdOOCLook:[180,1,1,""],OOCCmdSetCharGen:[180,1,1,""]},"evennia.contrib.chargen.CmdOOCCharacterCreate":{aliases:[180,4,1,""],func:[180,3,1,""],help_category:[180,4,1,""],key:[180,4,1,""],lock_storage:[180,4,1,""],locks:[180,4,1,""],search_index_entry:[180,4,1,""]},"evennia.contrib.chargen.CmdOOCLook":{aliases:[180,4,1,""],func:[180,3,1,""],help_category:[180,4,1,""],key:[180,4,1,""],lock_storage:[180,4,1,""],locks:[180,4,1,""],search_index_entry:[180,4,1,""]},"evennia.contrib.chargen.OOCCmdSetCharGen":{at_cmdset_creation:[180,3,1,""],path:[180,4,1,""]},"evennia.contrib.clothing":{ClothedCharacter:[181,1,1,""],ClothedCharacterCmdSet:[181,1,1,""],Clothing:[181,1,1,""],CmdCover:[181,1,1,""],CmdDrop:[181,1,1,""],CmdGive:[181,1,1,""],CmdInventory:[181,1,1,""],CmdRemove:[181,1,1,""],CmdUncover:[181,1,1,""],CmdWear:[181,1,1,""],clothing_type_count:[181,5,1,""],get_worn_clothes:[181,5,1,""],order_clothes_list:[181,5,1,""],single_type_count:[181,5,1,""]},"evennia.contrib.clothing.ClothedCharacter":{DoesNotExist:[181,2,1,""],MultipleObjectsReturned:[181,2,1,""],path:[181,4,1,""],return_appearance:[181,3,1,""],typename:[181,4,1,""]},"evennia.contrib.clothing.ClothedCharacterCmdSet":{at_cmdset_creation:[181,3,1,""],key:[181,4,1,""],path:[181,4,1,""]},"evennia.contrib.clothing.Clothing":{DoesNotExist:[181,2,1,""],MultipleObjectsReturned:[181,2,1,""],at_get:[181,3,1,""],path:[181,4,1,""],remove:[181,3,1,""],typename:[181,4,1,""],wear:[181,3,1,""]},"evennia.contrib.clothing.CmdCover":{aliases:[181,4,1,""],func:[181,3,1,""],help_category:[181,4,1,""],key:[181,4,1,""],lock_storage:[181,4,1,""],search_index_entry:[181,4,1,""]},"evennia.contrib.clothing.CmdDrop":{aliases:[181,4,1,""],arg_regex:[181,4,1,""],func:[181,3,1,""],help_category:[181,4,1,""],key:[181,4,1,""],lock_storage:[181,4,1,""],locks:[181,4,1,""],search_index_entry:[181,4,1,""]},"evennia.contrib.clothing.CmdGive":{aliases:[181,4,1,""],arg_regex:[181,4,1,""],func:[181,3,1,""],help_category:[181,4,1,""],key:[181,4,1,""],lock_storage:[181,4,1,""],locks:[181,4,1,""],search_index_entry:[181,4,1,""]},"evennia.contrib.clothing.CmdInventory":{aliases:[181,4,1,""],arg_regex:[181,4,1,""],func:[181,3,1,""],help_category:[181,4,1,""],key:[181,4,1,""],lock_storage:[181,4,1,""],locks:[181,4,1,""],search_index_entry:[181,4,1,""]},"evennia.contrib.clothing.CmdRemove":{aliases:[181,4,1,""],func:[181,3,1,""],help_category:[181,4,1,""],key:[181,4,1,""],lock_storage:[181,4,1,""],search_index_entry:[181,4,1,""]},"evennia.contrib.clothing.CmdUncover":{aliases:[181,4,1,""],func:[181,3,1,""],help_category:[181,4,1,""],key:[181,4,1,""],lock_storage:[181,4,1,""],search_index_entry:[181,4,1,""]},"evennia.contrib.clothing.CmdWear":{aliases:[181,4,1,""],func:[181,3,1,""],help_category:[181,4,1,""],key:[181,4,1,""],lock_storage:[181,4,1,""],search_index_entry:[181,4,1,""]},"evennia.contrib.custom_gametime":{GametimeScript:[183,1,1,""],custom_gametime:[183,5,1,""],gametime_to_realtime:[183,5,1,""],real_seconds_until:[183,5,1,""],realtime_to_gametime:[183,5,1,""],schedule:[183,5,1,""],time_to_tuple:[183,5,1,""]},"evennia.contrib.custom_gametime.GametimeScript":{DoesNotExist:[183,2,1,""],MultipleObjectsReturned:[183,2,1,""],at_repeat:[183,3,1,""],at_script_creation:[183,3,1,""],path:[183,4,1,""],typename:[183,4,1,""]},"evennia.contrib.dice":{CmdDice:[184,1,1,""],DiceCmdSet:[184,1,1,""],roll_dice:[184,5,1,""]},"evennia.contrib.dice.CmdDice":{aliases:[184,4,1,""],func:[184,3,1,""],help_category:[184,4,1,""],key:[184,4,1,""],lock_storage:[184,4,1,""],locks:[184,4,1,""],search_index_entry:[184,4,1,""]},"evennia.contrib.dice.DiceCmdSet":{at_cmdset_creation:[184,3,1,""],path:[184,4,1,""]},"evennia.contrib.email_login":{CmdUnconnectedConnect:[185,1,1,""],CmdUnconnectedCreate:[185,1,1,""],CmdUnconnectedHelp:[185,1,1,""],CmdUnconnectedLook:[185,1,1,""],CmdUnconnectedQuit:[185,1,1,""]},"evennia.contrib.email_login.CmdUnconnectedConnect":{aliases:[185,4,1,""],func:[185,3,1,""],help_category:[185,4,1,""],key:[185,4,1,""],lock_storage:[185,4,1,""],locks:[185,4,1,""],search_index_entry:[185,4,1,""]},"evennia.contrib.email_login.CmdUnconnectedCreate":{aliases:[185,4,1,""],func:[185,3,1,""],help_category:[185,4,1,""],key:[185,4,1,""],lock_storage:[185,4,1,""],locks:[185,4,1,""],parse:[185,3,1,""],search_index_entry:[185,4,1,""]},"evennia.contrib.email_login.CmdUnconnectedHelp":{aliases:[185,4,1,""],func:[185,3,1,""],help_category:[185,4,1,""],key:[185,4,1,""],lock_storage:[185,4,1,""],locks:[185,4,1,""],search_index_entry:[185,4,1,""]},"evennia.contrib.email_login.CmdUnconnectedLook":{aliases:[185,4,1,""],func:[185,3,1,""],help_category:[185,4,1,""],key:[185,4,1,""],lock_storage:[185,4,1,""],locks:[185,4,1,""],search_index_entry:[185,4,1,""]},"evennia.contrib.email_login.CmdUnconnectedQuit":{aliases:[185,4,1,""],func:[185,3,1,""],help_category:[185,4,1,""],key:[185,4,1,""],lock_storage:[185,4,1,""],locks:[185,4,1,""],search_index_entry:[185,4,1,""]},"evennia.contrib.extended_room":{CmdExtendedRoomDesc:[186,1,1,""],CmdExtendedRoomDetail:[186,1,1,""],CmdExtendedRoomGameTime:[186,1,1,""],CmdExtendedRoomLook:[186,1,1,""],ExtendedRoom:[186,1,1,""],ExtendedRoomCmdSet:[186,1,1,""]},"evennia.contrib.extended_room.CmdExtendedRoomDesc":{aliases:[186,4,1,""],func:[186,3,1,""],help_category:[186,4,1,""],key:[186,4,1,""],lock_storage:[186,4,1,""],reset_times:[186,3,1,""],search_index_entry:[186,4,1,""],switch_options:[186,4,1,""]},"evennia.contrib.extended_room.CmdExtendedRoomDetail":{aliases:[186,4,1,""],func:[186,3,1,""],help_category:[186,4,1,""],key:[186,4,1,""],lock_storage:[186,4,1,""],locks:[186,4,1,""],search_index_entry:[186,4,1,""]},"evennia.contrib.extended_room.CmdExtendedRoomGameTime":{aliases:[186,4,1,""],func:[186,3,1,""],help_category:[186,4,1,""],key:[186,4,1,""],lock_storage:[186,4,1,""],locks:[186,4,1,""],search_index_entry:[186,4,1,""]},"evennia.contrib.extended_room.CmdExtendedRoomLook":{aliases:[186,4,1,""],func:[186,3,1,""],help_category:[186,4,1,""],key:[186,4,1,""],lock_storage:[186,4,1,""],search_index_entry:[186,4,1,""]},"evennia.contrib.extended_room.ExtendedRoom":{DoesNotExist:[186,2,1,""],MultipleObjectsReturned:[186,2,1,""],at_object_creation:[186,3,1,""],del_detail:[186,3,1,""],get_time_and_season:[186,3,1,""],path:[186,4,1,""],replace_timeslots:[186,3,1,""],return_appearance:[186,3,1,""],return_detail:[186,3,1,""],set_detail:[186,3,1,""],typename:[186,4,1,""],update_current_description:[186,3,1,""]},"evennia.contrib.extended_room.ExtendedRoomCmdSet":{at_cmdset_creation:[186,3,1,""],path:[186,4,1,""]},"evennia.contrib.fieldfill":{CmdTestMenu:[187,1,1,""],FieldEvMenu:[187,1,1,""],display_formdata:[187,5,1,""],form_template_to_dict:[187,5,1,""],init_delayed_message:[187,5,1,""],init_fill_field:[187,5,1,""],menunode_fieldfill:[187,5,1,""],sendmessage:[187,5,1,""],verify_online_player:[187,5,1,""]},"evennia.contrib.fieldfill.CmdTestMenu":{aliases:[187,4,1,""],func:[187,3,1,""],help_category:[187,4,1,""],key:[187,4,1,""],lock_storage:[187,4,1,""],search_index_entry:[187,4,1,""]},"evennia.contrib.fieldfill.FieldEvMenu":{node_formatter:[187,3,1,""]},"evennia.contrib.gendersub":{GenderCharacter:[188,1,1,""],SetGender:[188,1,1,""]},"evennia.contrib.gendersub.GenderCharacter":{DoesNotExist:[188,2,1,""],MultipleObjectsReturned:[188,2,1,""],at_object_creation:[188,3,1,""],msg:[188,3,1,""],path:[188,4,1,""],typename:[188,4,1,""]},"evennia.contrib.gendersub.SetGender":{aliases:[188,4,1,""],func:[188,3,1,""],help_category:[188,4,1,""],key:[188,4,1,""],lock_storage:[188,4,1,""],locks:[188,4,1,""],search_index_entry:[188,4,1,""]},"evennia.contrib.health_bar":{display_meter:[189,5,1,""]},"evennia.contrib.ingame_python":{callbackhandler:[191,0,0,"-"],commands:[192,0,0,"-"],eventfuncs:[193,0,0,"-"],scripts:[194,0,0,"-"],tests:[195,0,0,"-"],typeclasses:[196,0,0,"-"],utils:[197,0,0,"-"]},"evennia.contrib.ingame_python.callbackhandler":{Callback:[191,1,1,""],CallbackHandler:[191,1,1,""]},"evennia.contrib.ingame_python.callbackhandler.Callback":{author:[191,3,1,""],code:[191,3,1,""],created_on:[191,3,1,""],name:[191,3,1,""],number:[191,3,1,""],obj:[191,3,1,""],parameters:[191,3,1,""],updated_by:[191,3,1,""],updated_on:[191,3,1,""],valid:[191,3,1,""]},"evennia.contrib.ingame_python.callbackhandler.CallbackHandler":{__init__:[191,3,1,""],add:[191,3,1,""],all:[191,3,1,""],call:[191,3,1,""],edit:[191,3,1,""],format_callback:[191,3,1,""],get:[191,3,1,""],get_variable:[191,3,1,""],remove:[191,3,1,""],script:[191,4,1,""]},"evennia.contrib.ingame_python.commands":{CmdCallback:[192,1,1,""]},"evennia.contrib.ingame_python.commands.CmdCallback":{accept_callback:[192,3,1,""],add_callback:[192,3,1,""],aliases:[192,4,1,""],del_callback:[192,3,1,""],edit_callback:[192,3,1,""],func:[192,3,1,""],get_help:[192,3,1,""],help_category:[192,4,1,""],key:[192,4,1,""],list_callbacks:[192,3,1,""],list_tasks:[192,3,1,""],lock_storage:[192,4,1,""],locks:[192,4,1,""],search_index_entry:[192,4,1,""]},"evennia.contrib.ingame_python.eventfuncs":{call_event:[193,5,1,""],deny:[193,5,1,""],get:[193,5,1,""]},"evennia.contrib.ingame_python.scripts":{EventHandler:[194,1,1,""],TimeEventScript:[194,1,1,""],complete_task:[194,5,1,""]},"evennia.contrib.ingame_python.scripts.EventHandler":{DoesNotExist:[194,2,1,""],MultipleObjectsReturned:[194,2,1,""],accept_callback:[194,3,1,""],add_callback:[194,3,1,""],add_event:[194,3,1,""],at_script_creation:[194,3,1,""],at_start:[194,3,1,""],call:[194,3,1,""],del_callback:[194,3,1,""],edit_callback:[194,3,1,""],get_callbacks:[194,3,1,""],get_events:[194,3,1,""],get_variable:[194,3,1,""],handle_error:[194,3,1,""],path:[194,4,1,""],set_task:[194,3,1,""],typename:[194,4,1,""]},"evennia.contrib.ingame_python.scripts.TimeEventScript":{DoesNotExist:[194,2,1,""],MultipleObjectsReturned:[194,2,1,""],at_repeat:[194,3,1,""],at_script_creation:[194,3,1,""],path:[194,4,1,""],typename:[194,4,1,""]},"evennia.contrib.ingame_python.tests":{TestCmdCallback:[195,1,1,""],TestDefaultCallbacks:[195,1,1,""],TestEventHandler:[195,1,1,""]},"evennia.contrib.ingame_python.tests.TestCmdCallback":{setUp:[195,3,1,""],tearDown:[195,3,1,""],test_accept:[195,3,1,""],test_add:[195,3,1,""],test_del:[195,3,1,""],test_list:[195,3,1,""],test_lock:[195,3,1,""]},"evennia.contrib.ingame_python.tests.TestDefaultCallbacks":{setUp:[195,3,1,""],tearDown:[195,3,1,""],test_exit:[195,3,1,""]},"evennia.contrib.ingame_python.tests.TestEventHandler":{setUp:[195,3,1,""],tearDown:[195,3,1,""],test_accept:[195,3,1,""],test_add_validation:[195,3,1,""],test_call:[195,3,1,""],test_del:[195,3,1,""],test_edit:[195,3,1,""],test_edit_validation:[195,3,1,""],test_handler:[195,3,1,""],test_start:[195,3,1,""]},"evennia.contrib.ingame_python.typeclasses":{EventCharacter:[196,1,1,""],EventExit:[196,1,1,""],EventObject:[196,1,1,""],EventRoom:[196,1,1,""]},"evennia.contrib.ingame_python.typeclasses.EventCharacter":{DoesNotExist:[196,2,1,""],MultipleObjectsReturned:[196,2,1,""],announce_move_from:[196,3,1,""],announce_move_to:[196,3,1,""],at_after_move:[196,3,1,""],at_before_move:[196,3,1,""],at_before_say:[196,3,1,""],at_object_delete:[196,3,1,""],at_post_puppet:[196,3,1,""],at_pre_unpuppet:[196,3,1,""],at_say:[196,3,1,""],callbacks:[196,4,1,""],path:[196,4,1,""],typename:[196,4,1,""]},"evennia.contrib.ingame_python.typeclasses.EventExit":{DoesNotExist:[196,2,1,""],MultipleObjectsReturned:[196,2,1,""],at_traverse:[196,3,1,""],callbacks:[196,4,1,""],path:[196,4,1,""],typename:[196,4,1,""]},"evennia.contrib.ingame_python.typeclasses.EventObject":{DoesNotExist:[196,2,1,""],MultipleObjectsReturned:[196,2,1,""],at_drop:[196,3,1,""],at_get:[196,3,1,""],callbacks:[196,4,1,""],path:[196,4,1,""],typename:[196,4,1,""]},"evennia.contrib.ingame_python.typeclasses.EventRoom":{DoesNotExist:[196,2,1,""],MultipleObjectsReturned:[196,2,1,""],at_object_delete:[196,3,1,""],callbacks:[196,4,1,""],path:[196,4,1,""],typename:[196,4,1,""]},"evennia.contrib.ingame_python.utils":{InterruptEvent:[197,2,1,""],get_event_handler:[197,5,1,""],get_next_wait:[197,5,1,""],keyword_event:[197,5,1,""],phrase_event:[197,5,1,""],register_events:[197,5,1,""],time_event:[197,5,1,""]},"evennia.contrib.mail":{CmdMail:[198,1,1,""],CmdMailCharacter:[198,1,1,""]},"evennia.contrib.mail.CmdMail":{aliases:[198,4,1,""],func:[198,3,1,""],get_all_mail:[198,3,1,""],help_category:[198,4,1,""],key:[198,4,1,""],lock:[198,4,1,""],lock_storage:[198,4,1,""],parse:[198,3,1,""],search_index_entry:[198,4,1,""],search_targets:[198,3,1,""],send_mail:[198,3,1,""]},"evennia.contrib.mail.CmdMailCharacter":{account_caller:[198,4,1,""],aliases:[198,4,1,""],help_category:[198,4,1,""],key:[198,4,1,""],lock_storage:[198,4,1,""],search_index_entry:[198,4,1,""]},"evennia.contrib.mapbuilder":{CmdMapBuilder:[199,1,1,""],build_map:[199,5,1,""],example1_build_forest:[199,5,1,""],example1_build_mountains:[199,5,1,""],example1_build_temple:[199,5,1,""],example2_build_forest:[199,5,1,""],example2_build_horizontal_exit:[199,5,1,""],example2_build_verticle_exit:[199,5,1,""]},"evennia.contrib.mapbuilder.CmdMapBuilder":{aliases:[199,4,1,""],func:[199,3,1,""],help_category:[199,4,1,""],key:[199,4,1,""],lock_storage:[199,4,1,""],locks:[199,4,1,""],search_index_entry:[199,4,1,""]},"evennia.contrib.menu_login":{CmdUnloggedinLook:[200,1,1,""],UnloggedinCmdSet:[200,1,1,""],node_enter_password:[200,5,1,""],node_enter_username:[200,5,1,""],node_quit_or_login:[200,5,1,""]},"evennia.contrib.menu_login.CmdUnloggedinLook":{aliases:[200,4,1,""],arg_regex:[200,4,1,""],func:[200,3,1,""],help_category:[200,4,1,""],key:[200,4,1,""],lock_storage:[200,4,1,""],locks:[200,4,1,""],search_index_entry:[200,4,1,""]},"evennia.contrib.menu_login.UnloggedinCmdSet":{at_cmdset_creation:[200,3,1,""],key:[200,4,1,""],path:[200,4,1,""],priority:[200,4,1,""]},"evennia.contrib.multidescer":{CmdMultiDesc:[201,1,1,""],DescValidateError:[201,2,1,""]},"evennia.contrib.multidescer.CmdMultiDesc":{aliases:[201,4,1,""],func:[201,3,1,""],help_category:[201,4,1,""],key:[201,4,1,""],lock_storage:[201,4,1,""],locks:[201,4,1,""],search_index_entry:[201,4,1,""]},"evennia.contrib.puzzles":{CmdArmPuzzle:[202,1,1,""],CmdCreatePuzzleRecipe:[202,1,1,""],CmdEditPuzzle:[202,1,1,""],CmdListArmedPuzzles:[202,1,1,""],CmdListPuzzleRecipes:[202,1,1,""],CmdUsePuzzleParts:[202,1,1,""],PuzzleRecipe:[202,1,1,""],PuzzleSystemCmdSet:[202,1,1,""],maskout_protodef:[202,5,1,""],proto_def:[202,5,1,""]},"evennia.contrib.puzzles.CmdArmPuzzle":{aliases:[202,4,1,""],func:[202,3,1,""],help_category:[202,4,1,""],key:[202,4,1,""],lock_storage:[202,4,1,""],locks:[202,4,1,""],search_index_entry:[202,4,1,""]},"evennia.contrib.puzzles.CmdCreatePuzzleRecipe":{aliases:[202,4,1,""],confirm:[202,4,1,""],default_confirm:[202,4,1,""],func:[202,3,1,""],help_category:[202,4,1,""],key:[202,4,1,""],lock_storage:[202,4,1,""],locks:[202,4,1,""],search_index_entry:[202,4,1,""]},"evennia.contrib.puzzles.CmdEditPuzzle":{aliases:[202,4,1,""],func:[202,3,1,""],help_category:[202,4,1,""],key:[202,4,1,""],lock_storage:[202,4,1,""],locks:[202,4,1,""],search_index_entry:[202,4,1,""]},"evennia.contrib.puzzles.CmdListArmedPuzzles":{aliases:[202,4,1,""],func:[202,3,1,""],help_category:[202,4,1,""],key:[202,4,1,""],lock_storage:[202,4,1,""],locks:[202,4,1,""],search_index_entry:[202,4,1,""]},"evennia.contrib.puzzles.CmdListPuzzleRecipes":{aliases:[202,4,1,""],func:[202,3,1,""],help_category:[202,4,1,""],key:[202,4,1,""],lock_storage:[202,4,1,""],locks:[202,4,1,""],search_index_entry:[202,4,1,""]},"evennia.contrib.puzzles.CmdUsePuzzleParts":{aliases:[202,4,1,""],func:[202,3,1,""],help_category:[202,4,1,""],key:[202,4,1,""],lock_storage:[202,4,1,""],locks:[202,4,1,""],search_index_entry:[202,4,1,""]},"evennia.contrib.puzzles.PuzzleRecipe":{DoesNotExist:[202,2,1,""],MultipleObjectsReturned:[202,2,1,""],path:[202,4,1,""],save_recipe:[202,3,1,""],typename:[202,4,1,""]},"evennia.contrib.puzzles.PuzzleSystemCmdSet":{at_cmdset_creation:[202,3,1,""],path:[202,4,1,""]},"evennia.contrib.random_string_generator":{ExhaustedGenerator:[203,2,1,""],RandomStringGenerator:[203,1,1,""],RandomStringGeneratorScript:[203,1,1,""],RejectedRegex:[203,2,1,""]},"evennia.contrib.random_string_generator.RandomStringGenerator":{__init__:[203,3,1,""],all:[203,3,1,""],clear:[203,3,1,""],get:[203,3,1,""],remove:[203,3,1,""],script:[203,4,1,""]},"evennia.contrib.random_string_generator.RandomStringGeneratorScript":{DoesNotExist:[203,2,1,""],MultipleObjectsReturned:[203,2,1,""],at_script_creation:[203,3,1,""],path:[203,4,1,""],typename:[203,4,1,""]},"evennia.contrib.rplanguage":{LanguageError:[204,2,1,""],LanguageExistsError:[204,2,1,""],LanguageHandler:[204,1,1,""],add_language:[204,5,1,""],available_languages:[204,5,1,""],obfuscate_language:[204,5,1,""],obfuscate_whisper:[204,5,1,""]},"evennia.contrib.rplanguage.LanguageHandler":{DoesNotExist:[204,2,1,""],MultipleObjectsReturned:[204,2,1,""],add:[204,3,1,""],at_script_creation:[204,3,1,""],path:[204,4,1,""],translate:[204,3,1,""],typename:[204,4,1,""]},"evennia.contrib.rpsystem":{CmdEmote:[205,1,1,""],CmdMask:[205,1,1,""],CmdPose:[205,1,1,""],CmdRecog:[205,1,1,""],CmdSay:[205,1,1,""],CmdSdesc:[205,1,1,""],ContribRPCharacter:[205,1,1,""],ContribRPObject:[205,1,1,""],ContribRPRoom:[205,1,1,""],EmoteError:[205,2,1,""],LanguageError:[205,2,1,""],RPCommand:[205,1,1,""],RPSystemCmdSet:[205,1,1,""],RecogError:[205,2,1,""],RecogHandler:[205,1,1,""],SdescError:[205,2,1,""],SdescHandler:[205,1,1,""],ordered_permutation_regex:[205,5,1,""],parse_language:[205,5,1,""],parse_sdescs_and_recogs:[205,5,1,""],regex_tuple_from_key_alias:[205,5,1,""],send_emote:[205,5,1,""]},"evennia.contrib.rpsystem.CmdEmote":{aliases:[205,4,1,""],func:[205,3,1,""],help_category:[205,4,1,""],key:[205,4,1,""],lock_storage:[205,4,1,""],locks:[205,4,1,""],search_index_entry:[205,4,1,""]},"evennia.contrib.rpsystem.CmdMask":{aliases:[205,4,1,""],func:[205,3,1,""],help_category:[205,4,1,""],key:[205,4,1,""],lock_storage:[205,4,1,""],search_index_entry:[205,4,1,""]},"evennia.contrib.rpsystem.CmdPose":{aliases:[205,4,1,""],func:[205,3,1,""],help_category:[205,4,1,""],key:[205,4,1,""],lock_storage:[205,4,1,""],parse:[205,3,1,""],search_index_entry:[205,4,1,""]},"evennia.contrib.rpsystem.CmdRecog":{aliases:[205,4,1,""],func:[205,3,1,""],help_category:[205,4,1,""],key:[205,4,1,""],lock_storage:[205,4,1,""],parse:[205,3,1,""],search_index_entry:[205,4,1,""]},"evennia.contrib.rpsystem.CmdSay":{aliases:[205,4,1,""],func:[205,3,1,""],help_category:[205,4,1,""],key:[205,4,1,""],lock_storage:[205,4,1,""],locks:[205,4,1,""],search_index_entry:[205,4,1,""]},"evennia.contrib.rpsystem.CmdSdesc":{aliases:[205,4,1,""],func:[205,3,1,""],help_category:[205,4,1,""],key:[205,4,1,""],lock_storage:[205,4,1,""],locks:[205,4,1,""],search_index_entry:[205,4,1,""]},"evennia.contrib.rpsystem.ContribRPCharacter":{DoesNotExist:[205,2,1,""],MultipleObjectsReturned:[205,2,1,""],at_before_say:[205,3,1,""],at_object_creation:[205,3,1,""],get_display_name:[205,3,1,""],path:[205,4,1,""],process_language:[205,3,1,""],process_recog:[205,3,1,""],process_sdesc:[205,3,1,""],recog:[205,4,1,""],sdesc:[205,4,1,""],typename:[205,4,1,""]},"evennia.contrib.rpsystem.ContribRPObject":{DoesNotExist:[205,2,1,""],MultipleObjectsReturned:[205,2,1,""],at_object_creation:[205,3,1,""],get_display_name:[205,3,1,""],path:[205,4,1,""],return_appearance:[205,3,1,""],search:[205,3,1,""],typename:[205,4,1,""]},"evennia.contrib.rpsystem.ContribRPRoom":{DoesNotExist:[205,2,1,""],MultipleObjectsReturned:[205,2,1,""],path:[205,4,1,""],typename:[205,4,1,""]},"evennia.contrib.rpsystem.RPCommand":{aliases:[205,4,1,""],help_category:[205,4,1,""],key:[205,4,1,""],lock_storage:[205,4,1,""],parse:[205,3,1,""],search_index_entry:[205,4,1,""]},"evennia.contrib.rpsystem.RPSystemCmdSet":{at_cmdset_creation:[205,3,1,""],path:[205,4,1,""]},"evennia.contrib.rpsystem.RecogHandler":{__init__:[205,3,1,""],add:[205,3,1,""],all:[205,3,1,""],get:[205,3,1,""],get_regex_tuple:[205,3,1,""],remove:[205,3,1,""]},"evennia.contrib.rpsystem.SdescHandler":{__init__:[205,3,1,""],add:[205,3,1,""],get:[205,3,1,""],get_regex_tuple:[205,3,1,""]},"evennia.contrib.security":{auditing:[207,0,0,"-"]},"evennia.contrib.security.auditing":{outputs:[208,0,0,"-"],server:[209,0,0,"-"],tests:[210,0,0,"-"]},"evennia.contrib.security.auditing.outputs":{to_file:[208,5,1,""],to_syslog:[208,5,1,""]},"evennia.contrib.security.auditing.server":{AuditedServerSession:[209,1,1,""]},"evennia.contrib.security.auditing.server.AuditedServerSession":{audit:[209,3,1,""],data_in:[209,3,1,""],data_out:[209,3,1,""],mask:[209,3,1,""]},"evennia.contrib.security.auditing.tests":{AuditingTest:[210,1,1,""]},"evennia.contrib.security.auditing.tests.AuditingTest":{test_audit:[210,3,1,""],test_mask:[210,3,1,""]},"evennia.contrib.simpledoor":{CmdOpen:[211,1,1,""],CmdOpenCloseDoor:[211,1,1,""],SimpleDoor:[211,1,1,""]},"evennia.contrib.simpledoor.CmdOpen":{aliases:[211,4,1,""],create_exit:[211,3,1,""],help_category:[211,4,1,""],key:[211,4,1,""],lock_storage:[211,4,1,""],search_index_entry:[211,4,1,""]},"evennia.contrib.simpledoor.CmdOpenCloseDoor":{aliases:[211,4,1,""],func:[211,3,1,""],help_category:[211,4,1,""],key:[211,4,1,""],lock_storage:[211,4,1,""],locks:[211,4,1,""],search_index_entry:[211,4,1,""]},"evennia.contrib.simpledoor.SimpleDoor":{"delete":[211,3,1,""],DoesNotExist:[211,2,1,""],MultipleObjectsReturned:[211,2,1,""],at_failed_traverse:[211,3,1,""],at_object_creation:[211,3,1,""],path:[211,4,1,""],setdesc:[211,3,1,""],setlock:[211,3,1,""],typename:[211,4,1,""]},"evennia.contrib.slow_exit":{CmdSetSpeed:[212,1,1,""],CmdStop:[212,1,1,""],SlowExit:[212,1,1,""]},"evennia.contrib.slow_exit.CmdSetSpeed":{aliases:[212,4,1,""],func:[212,3,1,""],help_category:[212,4,1,""],key:[212,4,1,""],lock_storage:[212,4,1,""],search_index_entry:[212,4,1,""]},"evennia.contrib.slow_exit.CmdStop":{aliases:[212,4,1,""],func:[212,3,1,""],help_category:[212,4,1,""],key:[212,4,1,""],lock_storage:[212,4,1,""],search_index_entry:[212,4,1,""]},"evennia.contrib.slow_exit.SlowExit":{DoesNotExist:[212,2,1,""],MultipleObjectsReturned:[212,2,1,""],at_traverse:[212,3,1,""],path:[212,4,1,""],typename:[212,4,1,""]},"evennia.contrib.talking_npc":{CmdTalk:[213,1,1,""],END:[213,5,1,""],TalkingCmdSet:[213,1,1,""],TalkingNPC:[213,1,1,""],info1:[213,5,1,""],info2:[213,5,1,""],info3:[213,5,1,""],menu_start_node:[213,5,1,""]},"evennia.contrib.talking_npc.CmdTalk":{aliases:[213,4,1,""],func:[213,3,1,""],help_category:[213,4,1,""],key:[213,4,1,""],lock_storage:[213,4,1,""],locks:[213,4,1,""],search_index_entry:[213,4,1,""]},"evennia.contrib.talking_npc.TalkingCmdSet":{at_cmdset_creation:[213,3,1,""],key:[213,4,1,""],path:[213,4,1,""]},"evennia.contrib.talking_npc.TalkingNPC":{DoesNotExist:[213,2,1,""],MultipleObjectsReturned:[213,2,1,""],at_object_creation:[213,3,1,""],path:[213,4,1,""],typename:[213,4,1,""]},"evennia.contrib.tree_select":{CmdNameColor:[214,1,1,""],change_name_color:[214,5,1,""],dashcount:[214,5,1,""],go_up_one_category:[214,5,1,""],index_to_selection:[214,5,1,""],init_tree_selection:[214,5,1,""],is_category:[214,5,1,""],menunode_treeselect:[214,5,1,""],optlist_to_menuoptions:[214,5,1,""],parse_opts:[214,5,1,""]},"evennia.contrib.tree_select.CmdNameColor":{aliases:[214,4,1,""],func:[214,3,1,""],help_category:[214,4,1,""],key:[214,4,1,""],lock_storage:[214,4,1,""],search_index_entry:[214,4,1,""]},"evennia.contrib.turnbattle":{tb_basic:[216,0,0,"-"],tb_equip:[217,0,0,"-"],tb_items:[218,0,0,"-"],tb_magic:[219,0,0,"-"],tb_range:[220,0,0,"-"]},"evennia.contrib.turnbattle.tb_basic":{ACTIONS_PER_TURN:[216,6,1,""],BattleCmdSet:[216,1,1,""],CmdAttack:[216,1,1,""],CmdCombatHelp:[216,1,1,""],CmdDisengage:[216,1,1,""],CmdFight:[216,1,1,""],CmdPass:[216,1,1,""],CmdRest:[216,1,1,""],TBBasicCharacter:[216,1,1,""],TBBasicTurnHandler:[216,1,1,""],apply_damage:[216,5,1,""],at_defeat:[216,5,1,""],combat_cleanup:[216,5,1,""],get_attack:[216,5,1,""],get_damage:[216,5,1,""],get_defense:[216,5,1,""],is_in_combat:[216,5,1,""],is_turn:[216,5,1,""],resolve_attack:[216,5,1,""],roll_init:[216,5,1,""],spend_action:[216,5,1,""]},"evennia.contrib.turnbattle.tb_basic.BattleCmdSet":{at_cmdset_creation:[216,3,1,""],key:[216,4,1,""],path:[216,4,1,""]},"evennia.contrib.turnbattle.tb_basic.CmdAttack":{aliases:[216,4,1,""],func:[216,3,1,""],help_category:[216,4,1,""],key:[216,4,1,""],lock_storage:[216,4,1,""],search_index_entry:[216,4,1,""]},"evennia.contrib.turnbattle.tb_basic.CmdCombatHelp":{aliases:[216,4,1,""],func:[216,3,1,""],help_category:[216,4,1,""],key:[216,4,1,""],lock_storage:[216,4,1,""],search_index_entry:[216,4,1,""]},"evennia.contrib.turnbattle.tb_basic.CmdDisengage":{aliases:[216,4,1,""],func:[216,3,1,""],help_category:[216,4,1,""],key:[216,4,1,""],lock_storage:[216,4,1,""],search_index_entry:[216,4,1,""]},"evennia.contrib.turnbattle.tb_basic.CmdFight":{aliases:[216,4,1,""],func:[216,3,1,""],help_category:[216,4,1,""],key:[216,4,1,""],lock_storage:[216,4,1,""],search_index_entry:[216,4,1,""]},"evennia.contrib.turnbattle.tb_basic.CmdPass":{aliases:[216,4,1,""],func:[216,3,1,""],help_category:[216,4,1,""],key:[216,4,1,""],lock_storage:[216,4,1,""],search_index_entry:[216,4,1,""]},"evennia.contrib.turnbattle.tb_basic.CmdRest":{aliases:[216,4,1,""],func:[216,3,1,""],help_category:[216,4,1,""],key:[216,4,1,""],lock_storage:[216,4,1,""],search_index_entry:[216,4,1,""]},"evennia.contrib.turnbattle.tb_basic.TBBasicCharacter":{DoesNotExist:[216,2,1,""],MultipleObjectsReturned:[216,2,1,""],at_before_move:[216,3,1,""],at_object_creation:[216,3,1,""],path:[216,4,1,""],typename:[216,4,1,""]},"evennia.contrib.turnbattle.tb_basic.TBBasicTurnHandler":{DoesNotExist:[216,2,1,""],MultipleObjectsReturned:[216,2,1,""],at_repeat:[216,3,1,""],at_script_creation:[216,3,1,""],at_stop:[216,3,1,""],initialize_for_combat:[216,3,1,""],join_fight:[216,3,1,""],next_turn:[216,3,1,""],path:[216,4,1,""],start_turn:[216,3,1,""],turn_end_check:[216,3,1,""],typename:[216,4,1,""]},"evennia.contrib.turnbattle.tb_equip":{ACTIONS_PER_TURN:[217,6,1,""],BattleCmdSet:[217,1,1,""],CmdAttack:[217,1,1,""],CmdCombatHelp:[217,1,1,""],CmdDisengage:[217,1,1,""],CmdDoff:[217,1,1,""],CmdDon:[217,1,1,""],CmdFight:[217,1,1,""],CmdPass:[217,1,1,""],CmdRest:[217,1,1,""],CmdUnwield:[217,1,1,""],CmdWield:[217,1,1,""],TBEArmor:[217,1,1,""],TBEWeapon:[217,1,1,""],TBEquipCharacter:[217,1,1,""],TBEquipTurnHandler:[217,1,1,""],apply_damage:[217,5,1,""],at_defeat:[217,5,1,""],combat_cleanup:[217,5,1,""],get_attack:[217,5,1,""],get_damage:[217,5,1,""],get_defense:[217,5,1,""],is_in_combat:[217,5,1,""],is_turn:[217,5,1,""],resolve_attack:[217,5,1,""],roll_init:[217,5,1,""],spend_action:[217,5,1,""]},"evennia.contrib.turnbattle.tb_equip.BattleCmdSet":{at_cmdset_creation:[217,3,1,""],key:[217,4,1,""],path:[217,4,1,""]},"evennia.contrib.turnbattle.tb_equip.CmdAttack":{aliases:[217,4,1,""],func:[217,3,1,""],help_category:[217,4,1,""],key:[217,4,1,""],lock_storage:[217,4,1,""],search_index_entry:[217,4,1,""]},"evennia.contrib.turnbattle.tb_equip.CmdCombatHelp":{aliases:[217,4,1,""],func:[217,3,1,""],help_category:[217,4,1,""],key:[217,4,1,""],lock_storage:[217,4,1,""],search_index_entry:[217,4,1,""]},"evennia.contrib.turnbattle.tb_equip.CmdDisengage":{aliases:[217,4,1,""],func:[217,3,1,""],help_category:[217,4,1,""],key:[217,4,1,""],lock_storage:[217,4,1,""],search_index_entry:[217,4,1,""]},"evennia.contrib.turnbattle.tb_equip.CmdDoff":{aliases:[217,4,1,""],func:[217,3,1,""],help_category:[217,4,1,""],key:[217,4,1,""],lock_storage:[217,4,1,""],search_index_entry:[217,4,1,""]},"evennia.contrib.turnbattle.tb_equip.CmdDon":{aliases:[217,4,1,""],func:[217,3,1,""],help_category:[217,4,1,""],key:[217,4,1,""],lock_storage:[217,4,1,""],search_index_entry:[217,4,1,""]},"evennia.contrib.turnbattle.tb_equip.CmdFight":{aliases:[217,4,1,""],func:[217,3,1,""],help_category:[217,4,1,""],key:[217,4,1,""],lock_storage:[217,4,1,""],search_index_entry:[217,4,1,""]},"evennia.contrib.turnbattle.tb_equip.CmdPass":{aliases:[217,4,1,""],func:[217,3,1,""],help_category:[217,4,1,""],key:[217,4,1,""],lock_storage:[217,4,1,""],search_index_entry:[217,4,1,""]},"evennia.contrib.turnbattle.tb_equip.CmdRest":{aliases:[217,4,1,""],func:[217,3,1,""],help_category:[217,4,1,""],key:[217,4,1,""],lock_storage:[217,4,1,""],search_index_entry:[217,4,1,""]},"evennia.contrib.turnbattle.tb_equip.CmdUnwield":{aliases:[217,4,1,""],func:[217,3,1,""],help_category:[217,4,1,""],key:[217,4,1,""],lock_storage:[217,4,1,""],search_index_entry:[217,4,1,""]},"evennia.contrib.turnbattle.tb_equip.CmdWield":{aliases:[217,4,1,""],func:[217,3,1,""],help_category:[217,4,1,""],key:[217,4,1,""],lock_storage:[217,4,1,""],search_index_entry:[217,4,1,""]},"evennia.contrib.turnbattle.tb_equip.TBEArmor":{DoesNotExist:[217,2,1,""],MultipleObjectsReturned:[217,2,1,""],at_before_drop:[217,3,1,""],at_before_give:[217,3,1,""],at_drop:[217,3,1,""],at_give:[217,3,1,""],at_object_creation:[217,3,1,""],path:[217,4,1,""],typename:[217,4,1,""]},"evennia.contrib.turnbattle.tb_equip.TBEWeapon":{DoesNotExist:[217,2,1,""],MultipleObjectsReturned:[217,2,1,""],at_drop:[217,3,1,""],at_give:[217,3,1,""],at_object_creation:[217,3,1,""],path:[217,4,1,""],typename:[217,4,1,""]},"evennia.contrib.turnbattle.tb_equip.TBEquipCharacter":{DoesNotExist:[217,2,1,""],MultipleObjectsReturned:[217,2,1,""],at_before_move:[217,3,1,""],at_object_creation:[217,3,1,""],path:[217,4,1,""],typename:[217,4,1,""]},"evennia.contrib.turnbattle.tb_equip.TBEquipTurnHandler":{DoesNotExist:[217,2,1,""],MultipleObjectsReturned:[217,2,1,""],at_repeat:[217,3,1,""],at_script_creation:[217,3,1,""],at_stop:[217,3,1,""],initialize_for_combat:[217,3,1,""],join_fight:[217,3,1,""],next_turn:[217,3,1,""],path:[217,4,1,""],start_turn:[217,3,1,""],turn_end_check:[217,3,1,""],typename:[217,4,1,""]},"evennia.contrib.turnbattle.tb_items":{BattleCmdSet:[218,1,1,""],CmdAttack:[218,1,1,""],CmdCombatHelp:[218,1,1,""],CmdDisengage:[218,1,1,""],CmdFight:[218,1,1,""],CmdPass:[218,1,1,""],CmdRest:[218,1,1,""],CmdUse:[218,1,1,""],DEF_DOWN_MOD:[218,6,1,""],ITEMFUNCS:[218,6,1,""],TBItemsCharacter:[218,1,1,""],TBItemsCharacterTest:[218,1,1,""],TBItemsTurnHandler:[218,1,1,""],add_condition:[218,5,1,""],apply_damage:[218,5,1,""],at_defeat:[218,5,1,""],combat_cleanup:[218,5,1,""],condition_tickdown:[218,5,1,""],get_attack:[218,5,1,""],get_damage:[218,5,1,""],get_defense:[218,5,1,""],is_in_combat:[218,5,1,""],is_turn:[218,5,1,""],itemfunc_add_condition:[218,5,1,""],itemfunc_attack:[218,5,1,""],itemfunc_cure_condition:[218,5,1,""],itemfunc_heal:[218,5,1,""],resolve_attack:[218,5,1,""],roll_init:[218,5,1,""],spend_action:[218,5,1,""],spend_item_use:[218,5,1,""],use_item:[218,5,1,""]},"evennia.contrib.turnbattle.tb_items.BattleCmdSet":{at_cmdset_creation:[218,3,1,""],key:[218,4,1,""],path:[218,4,1,""]},"evennia.contrib.turnbattle.tb_items.CmdAttack":{aliases:[218,4,1,""],func:[218,3,1,""],help_category:[218,4,1,""],key:[218,4,1,""],lock_storage:[218,4,1,""],search_index_entry:[218,4,1,""]},"evennia.contrib.turnbattle.tb_items.CmdCombatHelp":{aliases:[218,4,1,""],func:[218,3,1,""],help_category:[218,4,1,""],key:[218,4,1,""],lock_storage:[218,4,1,""],search_index_entry:[218,4,1,""]},"evennia.contrib.turnbattle.tb_items.CmdDisengage":{aliases:[218,4,1,""],func:[218,3,1,""],help_category:[218,4,1,""],key:[218,4,1,""],lock_storage:[218,4,1,""],search_index_entry:[218,4,1,""]},"evennia.contrib.turnbattle.tb_items.CmdFight":{aliases:[218,4,1,""],func:[218,3,1,""],help_category:[218,4,1,""],key:[218,4,1,""],lock_storage:[218,4,1,""],search_index_entry:[218,4,1,""]},"evennia.contrib.turnbattle.tb_items.CmdPass":{aliases:[218,4,1,""],func:[218,3,1,""],help_category:[218,4,1,""],key:[218,4,1,""],lock_storage:[218,4,1,""],search_index_entry:[218,4,1,""]},"evennia.contrib.turnbattle.tb_items.CmdRest":{aliases:[218,4,1,""],func:[218,3,1,""],help_category:[218,4,1,""],key:[218,4,1,""],lock_storage:[218,4,1,""],search_index_entry:[218,4,1,""]},"evennia.contrib.turnbattle.tb_items.CmdUse":{aliases:[218,4,1,""],func:[218,3,1,""],help_category:[218,4,1,""],key:[218,4,1,""],lock_storage:[218,4,1,""],search_index_entry:[218,4,1,""]},"evennia.contrib.turnbattle.tb_items.TBItemsCharacter":{DoesNotExist:[218,2,1,""],MultipleObjectsReturned:[218,2,1,""],apply_turn_conditions:[218,3,1,""],at_before_move:[218,3,1,""],at_object_creation:[218,3,1,""],at_turn_start:[218,3,1,""],at_update:[218,3,1,""],path:[218,4,1,""],typename:[218,4,1,""]},"evennia.contrib.turnbattle.tb_items.TBItemsCharacterTest":{DoesNotExist:[218,2,1,""],MultipleObjectsReturned:[218,2,1,""],at_object_creation:[218,3,1,""],path:[218,4,1,""],typename:[218,4,1,""]},"evennia.contrib.turnbattle.tb_items.TBItemsTurnHandler":{DoesNotExist:[218,2,1,""],MultipleObjectsReturned:[218,2,1,""],at_repeat:[218,3,1,""],at_script_creation:[218,3,1,""],at_stop:[218,3,1,""],initialize_for_combat:[218,3,1,""],join_fight:[218,3,1,""],next_turn:[218,3,1,""],path:[218,4,1,""],start_turn:[218,3,1,""],turn_end_check:[218,3,1,""],typename:[218,4,1,""]},"evennia.contrib.turnbattle.tb_magic":{ACTIONS_PER_TURN:[219,6,1,""],BattleCmdSet:[219,1,1,""],CmdAttack:[219,1,1,""],CmdCast:[219,1,1,""],CmdCombatHelp:[219,1,1,""],CmdDisengage:[219,1,1,""],CmdFight:[219,1,1,""],CmdLearnSpell:[219,1,1,""],CmdPass:[219,1,1,""],CmdRest:[219,1,1,""],CmdStatus:[219,1,1,""],TBMagicCharacter:[219,1,1,""],TBMagicTurnHandler:[219,1,1,""],apply_damage:[219,5,1,""],at_defeat:[219,5,1,""],combat_cleanup:[219,5,1,""],get_attack:[219,5,1,""],get_damage:[219,5,1,""],get_defense:[219,5,1,""],is_in_combat:[219,5,1,""],is_turn:[219,5,1,""],resolve_attack:[219,5,1,""],roll_init:[219,5,1,""],spell_attack:[219,5,1,""],spell_conjure:[219,5,1,""],spell_healing:[219,5,1,""],spend_action:[219,5,1,""]},"evennia.contrib.turnbattle.tb_magic.BattleCmdSet":{at_cmdset_creation:[219,3,1,""],key:[219,4,1,""],path:[219,4,1,""]},"evennia.contrib.turnbattle.tb_magic.CmdAttack":{aliases:[219,4,1,""],func:[219,3,1,""],help_category:[219,4,1,""],key:[219,4,1,""],lock_storage:[219,4,1,""],search_index_entry:[219,4,1,""]},"evennia.contrib.turnbattle.tb_magic.CmdCast":{aliases:[219,4,1,""],func:[219,3,1,""],help_category:[219,4,1,""],key:[219,4,1,""],lock_storage:[219,4,1,""],search_index_entry:[219,4,1,""]},"evennia.contrib.turnbattle.tb_magic.CmdCombatHelp":{aliases:[219,4,1,""],func:[219,3,1,""],help_category:[219,4,1,""],key:[219,4,1,""],lock_storage:[219,4,1,""],search_index_entry:[219,4,1,""]},"evennia.contrib.turnbattle.tb_magic.CmdDisengage":{aliases:[219,4,1,""],func:[219,3,1,""],help_category:[219,4,1,""],key:[219,4,1,""],lock_storage:[219,4,1,""],search_index_entry:[219,4,1,""]},"evennia.contrib.turnbattle.tb_magic.CmdFight":{aliases:[219,4,1,""],func:[219,3,1,""],help_category:[219,4,1,""],key:[219,4,1,""],lock_storage:[219,4,1,""],search_index_entry:[219,4,1,""]},"evennia.contrib.turnbattle.tb_magic.CmdLearnSpell":{aliases:[219,4,1,""],func:[219,3,1,""],help_category:[219,4,1,""],key:[219,4,1,""],lock_storage:[219,4,1,""],search_index_entry:[219,4,1,""]},"evennia.contrib.turnbattle.tb_magic.CmdPass":{aliases:[219,4,1,""],func:[219,3,1,""],help_category:[219,4,1,""],key:[219,4,1,""],lock_storage:[219,4,1,""],search_index_entry:[219,4,1,""]},"evennia.contrib.turnbattle.tb_magic.CmdRest":{aliases:[219,4,1,""],func:[219,3,1,""],help_category:[219,4,1,""],key:[219,4,1,""],lock_storage:[219,4,1,""],search_index_entry:[219,4,1,""]},"evennia.contrib.turnbattle.tb_magic.CmdStatus":{aliases:[219,4,1,""],func:[219,3,1,""],help_category:[219,4,1,""],key:[219,4,1,""],lock_storage:[219,4,1,""],search_index_entry:[219,4,1,""]},"evennia.contrib.turnbattle.tb_magic.TBMagicCharacter":{DoesNotExist:[219,2,1,""],MultipleObjectsReturned:[219,2,1,""],at_before_move:[219,3,1,""],at_object_creation:[219,3,1,""],path:[219,4,1,""],typename:[219,4,1,""]},"evennia.contrib.turnbattle.tb_magic.TBMagicTurnHandler":{DoesNotExist:[219,2,1,""],MultipleObjectsReturned:[219,2,1,""],at_repeat:[219,3,1,""],at_script_creation:[219,3,1,""],at_stop:[219,3,1,""],initialize_for_combat:[219,3,1,""],join_fight:[219,3,1,""],next_turn:[219,3,1,""],path:[219,4,1,""],start_turn:[219,3,1,""],turn_end_check:[219,3,1,""],typename:[219,4,1,""]},"evennia.contrib.turnbattle.tb_range":{ACTIONS_PER_TURN:[220,6,1,""],BattleCmdSet:[220,1,1,""],CmdApproach:[220,1,1,""],CmdAttack:[220,1,1,""],CmdCombatHelp:[220,1,1,""],CmdDisengage:[220,1,1,""],CmdFight:[220,1,1,""],CmdPass:[220,1,1,""],CmdRest:[220,1,1,""],CmdShoot:[220,1,1,""],CmdStatus:[220,1,1,""],CmdWithdraw:[220,1,1,""],TBRangeCharacter:[220,1,1,""],TBRangeObject:[220,1,1,""],TBRangeTurnHandler:[220,1,1,""],apply_damage:[220,5,1,""],approach:[220,5,1,""],at_defeat:[220,5,1,""],combat_cleanup:[220,5,1,""],combat_status_message:[220,5,1,""],distance_inc:[220,5,1,""],get_attack:[220,5,1,""],get_damage:[220,5,1,""],get_defense:[220,5,1,""],get_range:[220,5,1,""],is_in_combat:[220,5,1,""],is_turn:[220,5,1,""],resolve_attack:[220,5,1,""],roll_init:[220,5,1,""],spend_action:[220,5,1,""],withdraw:[220,5,1,""]},"evennia.contrib.turnbattle.tb_range.BattleCmdSet":{at_cmdset_creation:[220,3,1,""],key:[220,4,1,""],path:[220,4,1,""]},"evennia.contrib.turnbattle.tb_range.CmdApproach":{aliases:[220,4,1,""],func:[220,3,1,""],help_category:[220,4,1,""],key:[220,4,1,""],lock_storage:[220,4,1,""],search_index_entry:[220,4,1,""]},"evennia.contrib.turnbattle.tb_range.CmdAttack":{aliases:[220,4,1,""],func:[220,3,1,""],help_category:[220,4,1,""],key:[220,4,1,""],lock_storage:[220,4,1,""],search_index_entry:[220,4,1,""]},"evennia.contrib.turnbattle.tb_range.CmdCombatHelp":{aliases:[220,4,1,""],func:[220,3,1,""],help_category:[220,4,1,""],key:[220,4,1,""],lock_storage:[220,4,1,""],search_index_entry:[220,4,1,""]},"evennia.contrib.turnbattle.tb_range.CmdDisengage":{aliases:[220,4,1,""],func:[220,3,1,""],help_category:[220,4,1,""],key:[220,4,1,""],lock_storage:[220,4,1,""],search_index_entry:[220,4,1,""]},"evennia.contrib.turnbattle.tb_range.CmdFight":{aliases:[220,4,1,""],func:[220,3,1,""],help_category:[220,4,1,""],key:[220,4,1,""],lock_storage:[220,4,1,""],search_index_entry:[220,4,1,""]},"evennia.contrib.turnbattle.tb_range.CmdPass":{aliases:[220,4,1,""],func:[220,3,1,""],help_category:[220,4,1,""],key:[220,4,1,""],lock_storage:[220,4,1,""],search_index_entry:[220,4,1,""]},"evennia.contrib.turnbattle.tb_range.CmdRest":{aliases:[220,4,1,""],func:[220,3,1,""],help_category:[220,4,1,""],key:[220,4,1,""],lock_storage:[220,4,1,""],search_index_entry:[220,4,1,""]},"evennia.contrib.turnbattle.tb_range.CmdShoot":{aliases:[220,4,1,""],func:[220,3,1,""],help_category:[220,4,1,""],key:[220,4,1,""],lock_storage:[220,4,1,""],search_index_entry:[220,4,1,""]},"evennia.contrib.turnbattle.tb_range.CmdStatus":{aliases:[220,4,1,""],func:[220,3,1,""],help_category:[220,4,1,""],key:[220,4,1,""],lock_storage:[220,4,1,""],search_index_entry:[220,4,1,""]},"evennia.contrib.turnbattle.tb_range.CmdWithdraw":{aliases:[220,4,1,""],func:[220,3,1,""],help_category:[220,4,1,""],key:[220,4,1,""],lock_storage:[220,4,1,""],search_index_entry:[220,4,1,""]},"evennia.contrib.turnbattle.tb_range.TBRangeCharacter":{DoesNotExist:[220,2,1,""],MultipleObjectsReturned:[220,2,1,""],at_before_move:[220,3,1,""],at_object_creation:[220,3,1,""],path:[220,4,1,""],typename:[220,4,1,""]},"evennia.contrib.turnbattle.tb_range.TBRangeObject":{DoesNotExist:[220,2,1,""],MultipleObjectsReturned:[220,2,1,""],at_before_drop:[220,3,1,""],at_before_get:[220,3,1,""],at_before_give:[220,3,1,""],at_drop:[220,3,1,""],at_get:[220,3,1,""],at_give:[220,3,1,""],path:[220,4,1,""],typename:[220,4,1,""]},"evennia.contrib.turnbattle.tb_range.TBRangeTurnHandler":{DoesNotExist:[220,2,1,""],MultipleObjectsReturned:[220,2,1,""],at_repeat:[220,3,1,""],at_script_creation:[220,3,1,""],at_stop:[220,3,1,""],init_range:[220,3,1,""],initialize_for_combat:[220,3,1,""],join_fight:[220,3,1,""],join_rangefield:[220,3,1,""],next_turn:[220,3,1,""],path:[220,4,1,""],start_turn:[220,3,1,""],turn_end_check:[220,3,1,""],typename:[220,4,1,""]},"evennia.contrib.tutorial_examples":{bodyfunctions:[222,0,0,"-"],cmdset_red_button:[223,0,0,"-"],red_button:[225,0,0,"-"],red_button_scripts:[226,0,0,"-"],tests:[227,0,0,"-"]},"evennia.contrib.tutorial_examples.bodyfunctions":{BodyFunctions:[222,1,1,""]},"evennia.contrib.tutorial_examples.bodyfunctions.BodyFunctions":{DoesNotExist:[222,2,1,""],MultipleObjectsReturned:[222,2,1,""],at_repeat:[222,3,1,""],at_script_creation:[222,3,1,""],path:[222,4,1,""],send_random_message:[222,3,1,""],typename:[222,4,1,""]},"evennia.contrib.tutorial_examples.cmdset_red_button":{BlindCmdSet:[223,1,1,""],CmdBlindHelp:[223,1,1,""],CmdBlindLook:[223,1,1,""],CmdCloseLid:[223,1,1,""],CmdNudge:[223,1,1,""],CmdOpenLid:[223,1,1,""],CmdPush:[223,1,1,""],CmdSmashGlass:[223,1,1,""],DefaultCmdSet:[223,1,1,""],LidClosedCmdSet:[223,1,1,""],LidOpenCmdSet:[223,1,1,""]},"evennia.contrib.tutorial_examples.cmdset_red_button.BlindCmdSet":{at_cmdset_creation:[223,3,1,""],key:[223,4,1,""],mergetype:[223,4,1,""],no_exits:[223,4,1,""],no_objs:[223,4,1,""],path:[223,4,1,""]},"evennia.contrib.tutorial_examples.cmdset_red_button.CmdBlindHelp":{aliases:[223,4,1,""],func:[223,3,1,""],help_category:[223,4,1,""],key:[223,4,1,""],lock_storage:[223,4,1,""],locks:[223,4,1,""],search_index_entry:[223,4,1,""]},"evennia.contrib.tutorial_examples.cmdset_red_button.CmdBlindLook":{aliases:[223,4,1,""],func:[223,3,1,""],help_category:[223,4,1,""],key:[223,4,1,""],lock_storage:[223,4,1,""],locks:[223,4,1,""],search_index_entry:[223,4,1,""]},"evennia.contrib.tutorial_examples.cmdset_red_button.CmdCloseLid":{aliases:[223,4,1,""],func:[223,3,1,""],help_category:[223,4,1,""],key:[223,4,1,""],lock_storage:[223,4,1,""],locks:[223,4,1,""],search_index_entry:[223,4,1,""]},"evennia.contrib.tutorial_examples.cmdset_red_button.CmdNudge":{aliases:[223,4,1,""],func:[223,3,1,""],help_category:[223,4,1,""],key:[223,4,1,""],lock_storage:[223,4,1,""],locks:[223,4,1,""],search_index_entry:[223,4,1,""]},"evennia.contrib.tutorial_examples.cmdset_red_button.CmdOpenLid":{aliases:[223,4,1,""],func:[223,3,1,""],help_category:[223,4,1,""],key:[223,4,1,""],lock_storage:[223,4,1,""],locks:[223,4,1,""],search_index_entry:[223,4,1,""]},"evennia.contrib.tutorial_examples.cmdset_red_button.CmdPush":{aliases:[223,4,1,""],func:[223,3,1,""],help_category:[223,4,1,""],key:[223,4,1,""],lock_storage:[223,4,1,""],locks:[223,4,1,""],search_index_entry:[223,4,1,""]},"evennia.contrib.tutorial_examples.cmdset_red_button.CmdSmashGlass":{aliases:[223,4,1,""],func:[223,3,1,""],help_category:[223,4,1,""],key:[223,4,1,""],lock_storage:[223,4,1,""],locks:[223,4,1,""],search_index_entry:[223,4,1,""]},"evennia.contrib.tutorial_examples.cmdset_red_button.DefaultCmdSet":{at_cmdset_creation:[223,3,1,""],key:[223,4,1,""],mergetype:[223,4,1,""],path:[223,4,1,""]},"evennia.contrib.tutorial_examples.cmdset_red_button.LidClosedCmdSet":{at_cmdset_creation:[223,3,1,""],key:[223,4,1,""],key_mergetype:[223,4,1,""],path:[223,4,1,""]},"evennia.contrib.tutorial_examples.cmdset_red_button.LidOpenCmdSet":{at_cmdset_creation:[223,3,1,""],key:[223,4,1,""],key_mergetype:[223,4,1,""],path:[223,4,1,""]},"evennia.contrib.tutorial_examples.red_button":{RedButton:[225,1,1,""]},"evennia.contrib.tutorial_examples.red_button.RedButton":{DoesNotExist:[225,2,1,""],MultipleObjectsReturned:[225,2,1,""],at_object_creation:[225,3,1,""],blink:[225,3,1,""],break_lamp:[225,3,1,""],close_lid:[225,3,1,""],open_lid:[225,3,1,""],path:[225,4,1,""],press_button:[225,3,1,""],typename:[225,4,1,""]},"evennia.contrib.tutorial_examples.red_button_scripts":{BlindedState:[226,1,1,""],BlinkButtonEvent:[226,1,1,""],CloseLidEvent:[226,1,1,""],ClosedLidState:[226,1,1,""],DeactivateButtonEvent:[226,1,1,""],OpenLidState:[226,1,1,""]},"evennia.contrib.tutorial_examples.red_button_scripts.BlindedState":{DoesNotExist:[226,2,1,""],MultipleObjectsReturned:[226,2,1,""],at_script_creation:[226,3,1,""],at_start:[226,3,1,""],at_stop:[226,3,1,""],path:[226,4,1,""],typename:[226,4,1,""]},"evennia.contrib.tutorial_examples.red_button_scripts.BlinkButtonEvent":{DoesNotExist:[226,2,1,""],MultipleObjectsReturned:[226,2,1,""],at_repeat:[226,3,1,""],at_script_creation:[226,3,1,""],is_valid:[226,3,1,""],path:[226,4,1,""],typename:[226,4,1,""]},"evennia.contrib.tutorial_examples.red_button_scripts.CloseLidEvent":{DoesNotExist:[226,2,1,""],MultipleObjectsReturned:[226,2,1,""],at_repeat:[226,3,1,""],at_script_creation:[226,3,1,""],is_valid:[226,3,1,""],path:[226,4,1,""],typename:[226,4,1,""]},"evennia.contrib.tutorial_examples.red_button_scripts.ClosedLidState":{DoesNotExist:[226,2,1,""],MultipleObjectsReturned:[226,2,1,""],at_script_creation:[226,3,1,""],at_start:[226,3,1,""],at_stop:[226,3,1,""],is_valid:[226,3,1,""],path:[226,4,1,""],typename:[226,4,1,""]},"evennia.contrib.tutorial_examples.red_button_scripts.DeactivateButtonEvent":{DoesNotExist:[226,2,1,""],MultipleObjectsReturned:[226,2,1,""],at_repeat:[226,3,1,""],at_script_creation:[226,3,1,""],at_start:[226,3,1,""],path:[226,4,1,""],typename:[226,4,1,""]},"evennia.contrib.tutorial_examples.red_button_scripts.OpenLidState":{DoesNotExist:[226,2,1,""],MultipleObjectsReturned:[226,2,1,""],at_script_creation:[226,3,1,""],at_start:[226,3,1,""],at_stop:[226,3,1,""],is_valid:[226,3,1,""],path:[226,4,1,""],typename:[226,4,1,""]},"evennia.contrib.tutorial_examples.tests":{TestBodyFunctions:[227,1,1,""]},"evennia.contrib.tutorial_examples.tests.TestBodyFunctions":{script_typeclass:[227,4,1,""],setUp:[227,3,1,""],tearDown:[227,3,1,""],test_at_repeat:[227,3,1,""],test_send_random_message:[227,3,1,""]},"evennia.contrib.tutorial_world":{mob:[229,0,0,"-"],objects:[230,0,0,"-"],rooms:[231,0,0,"-"]},"evennia.contrib.tutorial_world.mob":{CmdMobOnOff:[229,1,1,""],Mob:[229,1,1,""],MobCmdSet:[229,1,1,""]},"evennia.contrib.tutorial_world.mob.CmdMobOnOff":{aliases:[229,4,1,""],func:[229,3,1,""],help_category:[229,4,1,""],key:[229,4,1,""],lock_storage:[229,4,1,""],locks:[229,4,1,""],search_index_entry:[229,4,1,""]},"evennia.contrib.tutorial_world.mob.Mob":{DoesNotExist:[229,2,1,""],MultipleObjectsReturned:[229,2,1,""],at_hit:[229,3,1,""],at_init:[229,3,1,""],at_new_arrival:[229,3,1,""],at_object_creation:[229,3,1,""],do_attack:[229,3,1,""],do_hunting:[229,3,1,""],do_patrol:[229,3,1,""],path:[229,4,1,""],set_alive:[229,3,1,""],set_dead:[229,3,1,""],start_attacking:[229,3,1,""],start_hunting:[229,3,1,""],start_idle:[229,3,1,""],start_patrolling:[229,3,1,""],typename:[229,4,1,""]},"evennia.contrib.tutorial_world.mob.MobCmdSet":{at_cmdset_creation:[229,3,1,""],path:[229,4,1,""]},"evennia.contrib.tutorial_world.objects":{CmdAttack:[230,1,1,""],CmdClimb:[230,1,1,""],CmdGetWeapon:[230,1,1,""],CmdLight:[230,1,1,""],CmdPressButton:[230,1,1,""],CmdRead:[230,1,1,""],CmdSetClimbable:[230,1,1,""],CmdSetCrumblingWall:[230,1,1,""],CmdSetLight:[230,1,1,""],CmdSetReadable:[230,1,1,""],CmdSetWeapon:[230,1,1,""],CmdSetWeaponRack:[230,1,1,""],CmdShiftRoot:[230,1,1,""],CrumblingWall:[230,1,1,""],LightSource:[230,1,1,""],Obelisk:[230,1,1,""],TutorialClimbable:[230,1,1,""],TutorialObject:[230,1,1,""],TutorialReadable:[230,1,1,""],TutorialWeapon:[230,1,1,""],TutorialWeaponRack:[230,1,1,""]},"evennia.contrib.tutorial_world.objects.CmdAttack":{aliases:[230,4,1,""],func:[230,3,1,""],help_category:[230,4,1,""],key:[230,4,1,""],lock_storage:[230,4,1,""],locks:[230,4,1,""],search_index_entry:[230,4,1,""]},"evennia.contrib.tutorial_world.objects.CmdClimb":{aliases:[230,4,1,""],func:[230,3,1,""],help_category:[230,4,1,""],key:[230,4,1,""],lock_storage:[230,4,1,""],locks:[230,4,1,""],search_index_entry:[230,4,1,""]},"evennia.contrib.tutorial_world.objects.CmdGetWeapon":{aliases:[230,4,1,""],func:[230,3,1,""],help_category:[230,4,1,""],key:[230,4,1,""],lock_storage:[230,4,1,""],locks:[230,4,1,""],search_index_entry:[230,4,1,""]},"evennia.contrib.tutorial_world.objects.CmdLight":{aliases:[230,4,1,""],func:[230,3,1,""],help_category:[230,4,1,""],key:[230,4,1,""],lock_storage:[230,4,1,""],locks:[230,4,1,""],search_index_entry:[230,4,1,""]},"evennia.contrib.tutorial_world.objects.CmdPressButton":{aliases:[230,4,1,""],func:[230,3,1,""],help_category:[230,4,1,""],key:[230,4,1,""],lock_storage:[230,4,1,""],locks:[230,4,1,""],search_index_entry:[230,4,1,""]},"evennia.contrib.tutorial_world.objects.CmdRead":{aliases:[230,4,1,""],func:[230,3,1,""],help_category:[230,4,1,""],key:[230,4,1,""],lock_storage:[230,4,1,""],locks:[230,4,1,""],search_index_entry:[230,4,1,""]},"evennia.contrib.tutorial_world.objects.CmdSetClimbable":{at_cmdset_creation:[230,3,1,""],path:[230,4,1,""]},"evennia.contrib.tutorial_world.objects.CmdSetCrumblingWall":{at_cmdset_creation:[230,3,1,""],key:[230,4,1,""],path:[230,4,1,""],priority:[230,4,1,""]},"evennia.contrib.tutorial_world.objects.CmdSetLight":{at_cmdset_creation:[230,3,1,""],key:[230,4,1,""],path:[230,4,1,""],priority:[230,4,1,""]},"evennia.contrib.tutorial_world.objects.CmdSetReadable":{at_cmdset_creation:[230,3,1,""],path:[230,4,1,""]},"evennia.contrib.tutorial_world.objects.CmdSetWeapon":{at_cmdset_creation:[230,3,1,""],path:[230,4,1,""]},"evennia.contrib.tutorial_world.objects.CmdSetWeaponRack":{at_cmdset_creation:[230,3,1,""],key:[230,4,1,""],path:[230,4,1,""]},"evennia.contrib.tutorial_world.objects.CmdShiftRoot":{aliases:[230,4,1,""],func:[230,3,1,""],help_category:[230,4,1,""],key:[230,4,1,""],lock_storage:[230,4,1,""],locks:[230,4,1,""],parse:[230,3,1,""],search_index_entry:[230,4,1,""]},"evennia.contrib.tutorial_world.objects.CrumblingWall":{DoesNotExist:[230,2,1,""],MultipleObjectsReturned:[230,2,1,""],at_after_traverse:[230,3,1,""],at_failed_traverse:[230,3,1,""],at_init:[230,3,1,""],at_object_creation:[230,3,1,""],open_wall:[230,3,1,""],path:[230,4,1,""],reset:[230,3,1,""],return_appearance:[230,3,1,""],typename:[230,4,1,""]},"evennia.contrib.tutorial_world.objects.LightSource":{DoesNotExist:[230,2,1,""],MultipleObjectsReturned:[230,2,1,""],at_init:[230,3,1,""],at_object_creation:[230,3,1,""],light:[230,3,1,""],path:[230,4,1,""],typename:[230,4,1,""]},"evennia.contrib.tutorial_world.objects.Obelisk":{DoesNotExist:[230,2,1,""],MultipleObjectsReturned:[230,2,1,""],at_object_creation:[230,3,1,""],path:[230,4,1,""],return_appearance:[230,3,1,""],typename:[230,4,1,""]},"evennia.contrib.tutorial_world.objects.TutorialClimbable":{DoesNotExist:[230,2,1,""],MultipleObjectsReturned:[230,2,1,""],at_object_creation:[230,3,1,""],path:[230,4,1,""],typename:[230,4,1,""]},"evennia.contrib.tutorial_world.objects.TutorialObject":{DoesNotExist:[230,2,1,""],MultipleObjectsReturned:[230,2,1,""],at_object_creation:[230,3,1,""],path:[230,4,1,""],reset:[230,3,1,""],typename:[230,4,1,""]},"evennia.contrib.tutorial_world.objects.TutorialReadable":{DoesNotExist:[230,2,1,""],MultipleObjectsReturned:[230,2,1,""],at_object_creation:[230,3,1,""],path:[230,4,1,""],typename:[230,4,1,""]},"evennia.contrib.tutorial_world.objects.TutorialWeapon":{DoesNotExist:[230,2,1,""],MultipleObjectsReturned:[230,2,1,""],at_object_creation:[230,3,1,""],path:[230,4,1,""],reset:[230,3,1,""],typename:[230,4,1,""]},"evennia.contrib.tutorial_world.objects.TutorialWeaponRack":{DoesNotExist:[230,2,1,""],MultipleObjectsReturned:[230,2,1,""],at_object_creation:[230,3,1,""],path:[230,4,1,""],produce_weapon:[230,3,1,""],typename:[230,4,1,""]},"evennia.contrib.tutorial_world.rooms":{BridgeCmdSet:[231,1,1,""],BridgeRoom:[231,1,1,""],CmdBridgeHelp:[231,1,1,""],CmdDarkHelp:[231,1,1,""],CmdDarkNoMatch:[231,1,1,""],CmdEast:[231,1,1,""],CmdLookBridge:[231,1,1,""],CmdLookDark:[231,1,1,""],CmdTutorial:[231,1,1,""],CmdTutorialLook:[231,1,1,""],CmdTutorialSetDetail:[231,1,1,""],CmdWest:[231,1,1,""],DarkCmdSet:[231,1,1,""],DarkRoom:[231,1,1,""],IntroRoom:[231,1,1,""],OutroRoom:[231,1,1,""],TeleportRoom:[231,1,1,""],TutorialRoom:[231,1,1,""],TutorialRoomCmdSet:[231,1,1,""],WeatherRoom:[231,1,1,""]},"evennia.contrib.tutorial_world.rooms.BridgeCmdSet":{at_cmdset_creation:[231,3,1,""],key:[231,4,1,""],path:[231,4,1,""],priority:[231,4,1,""]},"evennia.contrib.tutorial_world.rooms.BridgeRoom":{DoesNotExist:[231,2,1,""],MultipleObjectsReturned:[231,2,1,""],at_object_creation:[231,3,1,""],at_object_leave:[231,3,1,""],at_object_receive:[231,3,1,""],path:[231,4,1,""],typename:[231,4,1,""],update_weather:[231,3,1,""]},"evennia.contrib.tutorial_world.rooms.CmdBridgeHelp":{aliases:[231,4,1,""],func:[231,3,1,""],help_category:[231,4,1,""],key:[231,4,1,""],lock_storage:[231,4,1,""],locks:[231,4,1,""],search_index_entry:[231,4,1,""]},"evennia.contrib.tutorial_world.rooms.CmdDarkHelp":{aliases:[231,4,1,""],func:[231,3,1,""],help_category:[231,4,1,""],key:[231,4,1,""],lock_storage:[231,4,1,""],locks:[231,4,1,""],search_index_entry:[231,4,1,""]},"evennia.contrib.tutorial_world.rooms.CmdDarkNoMatch":{aliases:[231,4,1,""],func:[231,3,1,""],help_category:[231,4,1,""],key:[231,4,1,""],lock_storage:[231,4,1,""],locks:[231,4,1,""],search_index_entry:[231,4,1,""]},"evennia.contrib.tutorial_world.rooms.CmdEast":{aliases:[231,4,1,""],func:[231,3,1,""],help_category:[231,4,1,""],key:[231,4,1,""],lock_storage:[231,4,1,""],locks:[231,4,1,""],search_index_entry:[231,4,1,""]},"evennia.contrib.tutorial_world.rooms.CmdLookBridge":{aliases:[231,4,1,""],func:[231,3,1,""],help_category:[231,4,1,""],key:[231,4,1,""],lock_storage:[231,4,1,""],locks:[231,4,1,""],search_index_entry:[231,4,1,""]},"evennia.contrib.tutorial_world.rooms.CmdLookDark":{aliases:[231,4,1,""],func:[231,3,1,""],help_category:[231,4,1,""],key:[231,4,1,""],lock_storage:[231,4,1,""],locks:[231,4,1,""],search_index_entry:[231,4,1,""]},"evennia.contrib.tutorial_world.rooms.CmdTutorial":{aliases:[231,4,1,""],func:[231,3,1,""],help_category:[231,4,1,""],key:[231,4,1,""],lock_storage:[231,4,1,""],locks:[231,4,1,""],search_index_entry:[231,4,1,""]},"evennia.contrib.tutorial_world.rooms.CmdTutorialLook":{aliases:[231,4,1,""],func:[231,3,1,""],help_category:[231,4,1,""],key:[231,4,1,""],lock_storage:[231,4,1,""],search_index_entry:[231,4,1,""]},"evennia.contrib.tutorial_world.rooms.CmdTutorialSetDetail":{aliases:[231,4,1,""],func:[231,3,1,""],help_category:[231,4,1,""],key:[231,4,1,""],lock_storage:[231,4,1,""],locks:[231,4,1,""],search_index_entry:[231,4,1,""]},"evennia.contrib.tutorial_world.rooms.CmdWest":{aliases:[231,4,1,""],func:[231,3,1,""],help_category:[231,4,1,""],key:[231,4,1,""],lock_storage:[231,4,1,""],locks:[231,4,1,""],search_index_entry:[231,4,1,""]},"evennia.contrib.tutorial_world.rooms.DarkCmdSet":{at_cmdset_creation:[231,3,1,""],key:[231,4,1,""],mergetype:[231,4,1,""],path:[231,4,1,""],priority:[231,4,1,""]},"evennia.contrib.tutorial_world.rooms.DarkRoom":{DoesNotExist:[231,2,1,""],MultipleObjectsReturned:[231,2,1,""],at_init:[231,3,1,""],at_object_creation:[231,3,1,""],at_object_leave:[231,3,1,""],at_object_receive:[231,3,1,""],check_light_state:[231,3,1,""],path:[231,4,1,""],typename:[231,4,1,""]},"evennia.contrib.tutorial_world.rooms.IntroRoom":{DoesNotExist:[231,2,1,""],MultipleObjectsReturned:[231,2,1,""],at_object_creation:[231,3,1,""],at_object_receive:[231,3,1,""],path:[231,4,1,""],typename:[231,4,1,""]},"evennia.contrib.tutorial_world.rooms.OutroRoom":{DoesNotExist:[231,2,1,""],MultipleObjectsReturned:[231,2,1,""],at_object_creation:[231,3,1,""],at_object_receive:[231,3,1,""],path:[231,4,1,""],typename:[231,4,1,""]},"evennia.contrib.tutorial_world.rooms.TeleportRoom":{DoesNotExist:[231,2,1,""],MultipleObjectsReturned:[231,2,1,""],at_object_creation:[231,3,1,""],at_object_receive:[231,3,1,""],path:[231,4,1,""],typename:[231,4,1,""]},"evennia.contrib.tutorial_world.rooms.TutorialRoom":{DoesNotExist:[231,2,1,""],MultipleObjectsReturned:[231,2,1,""],at_object_creation:[231,3,1,""],at_object_receive:[231,3,1,""],path:[231,4,1,""],return_detail:[231,3,1,""],set_detail:[231,3,1,""],typename:[231,4,1,""]},"evennia.contrib.tutorial_world.rooms.TutorialRoomCmdSet":{at_cmdset_creation:[231,3,1,""],key:[231,4,1,""],path:[231,4,1,""],priority:[231,4,1,""]},"evennia.contrib.tutorial_world.rooms.WeatherRoom":{DoesNotExist:[231,2,1,""],MultipleObjectsReturned:[231,2,1,""],at_object_creation:[231,3,1,""],path:[231,4,1,""],typename:[231,4,1,""],update_weather:[231,3,1,""]},"evennia.contrib.unixcommand":{HelpAction:[232,1,1,""],ParseError:[232,2,1,""],UnixCommand:[232,1,1,""],UnixCommandParser:[232,1,1,""]},"evennia.contrib.unixcommand.UnixCommand":{__init__:[232,3,1,""],aliases:[232,4,1,""],func:[232,3,1,""],get_help:[232,3,1,""],help_category:[232,4,1,""],init_parser:[232,3,1,""],key:[232,4,1,""],lock_storage:[232,4,1,""],parse:[232,3,1,""],search_index_entry:[232,4,1,""]},"evennia.contrib.unixcommand.UnixCommandParser":{__init__:[232,3,1,""],format_help:[232,3,1,""],format_usage:[232,3,1,""],print_help:[232,3,1,""],print_usage:[232,3,1,""]},"evennia.contrib.wilderness":{WildernessExit:[233,1,1,""],WildernessMapProvider:[233,1,1,""],WildernessRoom:[233,1,1,""],WildernessScript:[233,1,1,""],create_wilderness:[233,5,1,""],enter_wilderness:[233,5,1,""],get_new_coordinates:[233,5,1,""]},"evennia.contrib.wilderness.WildernessExit":{DoesNotExist:[233,2,1,""],MultipleObjectsReturned:[233,2,1,""],at_traverse:[233,3,1,""],at_traverse_coordinates:[233,3,1,""],mapprovider:[233,3,1,""],path:[233,4,1,""],typename:[233,4,1,""],wilderness:[233,3,1,""]},"evennia.contrib.wilderness.WildernessMapProvider":{at_prepare_room:[233,3,1,""],exit_typeclass:[233,4,1,""],get_location_name:[233,3,1,""],is_valid_coordinates:[233,3,1,""],room_typeclass:[233,4,1,""]},"evennia.contrib.wilderness.WildernessRoom":{DoesNotExist:[233,2,1,""],MultipleObjectsReturned:[233,2,1,""],at_object_leave:[233,3,1,""],at_object_receive:[233,3,1,""],coordinates:[233,3,1,""],get_display_name:[233,3,1,""],location_name:[233,3,1,""],path:[233,4,1,""],set_active_coordinates:[233,3,1,""],typename:[233,4,1,""],wilderness:[233,3,1,""]},"evennia.contrib.wilderness.WildernessScript":{DoesNotExist:[233,2,1,""],MultipleObjectsReturned:[233,2,1,""],at_after_object_leave:[233,3,1,""],at_script_creation:[233,3,1,""],at_start:[233,3,1,""],get_obj_coordinates:[233,3,1,""],get_objs_at_coordinates:[233,3,1,""],is_valid_coordinates:[233,3,1,""],itemcoordinates:[233,3,1,""],mapprovider:[233,3,1,""],move_obj:[233,3,1,""],path:[233,4,1,""],typename:[233,4,1,""]},"evennia.help":{admin:[235,0,0,"-"],manager:[236,0,0,"-"],models:[237,0,0,"-"]},"evennia.help.admin":{HelpEntryAdmin:[235,1,1,""],HelpEntryForm:[235,1,1,""],HelpTagInline:[235,1,1,""]},"evennia.help.admin.HelpEntryAdmin":{fieldsets:[235,4,1,""],form:[235,4,1,""],inlines:[235,4,1,""],list_display:[235,4,1,""],list_display_links:[235,4,1,""],list_select_related:[235,4,1,""],media:[235,3,1,""],ordering:[235,4,1,""],save_as:[235,4,1,""],save_on_top:[235,4,1,""],search_fields:[235,4,1,""]},"evennia.help.admin.HelpEntryForm":{Meta:[235,1,1,""],base_fields:[235,4,1,""],declared_fields:[235,4,1,""],media:[235,3,1,""]},"evennia.help.admin.HelpEntryForm.Meta":{fields:[235,4,1,""],model:[235,4,1,""]},"evennia.help.admin.HelpTagInline":{media:[235,3,1,""],model:[235,4,1,""],related_field:[235,4,1,""]},"evennia.help.manager":{HelpEntryManager:[236,1,1,""]},"evennia.help.manager.HelpEntryManager":{all_to_category:[236,3,1,""],find_apropos:[236,3,1,""],find_topicmatch:[236,3,1,""],find_topics_with_category:[236,3,1,""],find_topicsuggestions:[236,3,1,""],get_all_categories:[236,3,1,""],get_all_topics:[236,3,1,""],search_help:[236,3,1,""]},"evennia.help.models":{HelpEntry:[237,1,1,""]},"evennia.help.models.HelpEntry":{DoesNotExist:[237,2,1,""],MultipleObjectsReturned:[237,2,1,""],access:[237,3,1,""],aliases:[237,4,1,""],db_entrytext:[237,4,1,""],db_help_category:[237,4,1,""],db_key:[237,4,1,""],db_lock_storage:[237,4,1,""],db_staff_only:[237,4,1,""],db_tags:[237,4,1,""],entrytext:[237,3,1,""],get_absolute_url:[237,3,1,""],help_category:[237,3,1,""],id:[237,4,1,""],key:[237,3,1,""],lock_storage:[237,3,1,""],locks:[237,4,1,""],objects:[237,4,1,""],path:[237,4,1,""],search_index_entry:[237,3,1,""],staff_only:[237,3,1,""],tags:[237,4,1,""],typename:[237,4,1,""],web_get_admin_url:[237,3,1,""],web_get_create_url:[237,3,1,""],web_get_delete_url:[237,3,1,""],web_get_detail_url:[237,3,1,""],web_get_update_url:[237,3,1,""]},"evennia.locks":{lockfuncs:[239,0,0,"-"],lockhandler:[240,0,0,"-"]},"evennia.locks.lockfuncs":{"false":[239,5,1,""],"true":[239,5,1,""],all:[239,5,1,""],attr:[239,5,1,""],attr_eq:[239,5,1,""],attr_ge:[239,5,1,""],attr_gt:[239,5,1,""],attr_le:[239,5,1,""],attr_lt:[239,5,1,""],attr_ne:[239,5,1,""],dbref:[239,5,1,""],has_account:[239,5,1,""],holds:[239,5,1,""],id:[239,5,1,""],inside:[239,5,1,""],inside_rec:[239,5,1,""],locattr:[239,5,1,""],none:[239,5,1,""],objattr:[239,5,1,""],objlocattr:[239,5,1,""],objtag:[239,5,1,""],pdbref:[239,5,1,""],perm:[239,5,1,""],perm_above:[239,5,1,""],pid:[239,5,1,""],pperm:[239,5,1,""],pperm_above:[239,5,1,""],self:[239,5,1,""],serversetting:[239,5,1,""],superuser:[239,5,1,""],tag:[239,5,1,""]},"evennia.locks.lockhandler":{LockException:[240,2,1,""],LockHandler:[240,1,1,""]},"evennia.locks.lockhandler.LockHandler":{"delete":[240,3,1,""],__init__:[240,3,1,""],add:[240,3,1,""],all:[240,3,1,""],append:[240,3,1,""],cache_lock_bypass:[240,3,1,""],check:[240,3,1,""],check_lockstring:[240,3,1,""],clear:[240,3,1,""],get:[240,3,1,""],remove:[240,3,1,""],replace:[240,3,1,""],reset:[240,3,1,""],validate:[240,3,1,""]},"evennia.objects":{admin:[242,0,0,"-"],manager:[243,0,0,"-"],models:[244,0,0,"-"],objects:[245,0,0,"-"]},"evennia.objects.admin":{ObjectAttributeInline:[242,1,1,""],ObjectCreateForm:[242,1,1,""],ObjectDBAdmin:[242,1,1,""],ObjectEditForm:[242,1,1,""],ObjectTagInline:[242,1,1,""]},"evennia.objects.admin.ObjectAttributeInline":{media:[242,3,1,""],model:[242,4,1,""],related_field:[242,4,1,""]},"evennia.objects.admin.ObjectCreateForm":{Meta:[242,1,1,""],base_fields:[242,4,1,""],declared_fields:[242,4,1,""],media:[242,3,1,""],raw_id_fields:[242,4,1,""]},"evennia.objects.admin.ObjectCreateForm.Meta":{fields:[242,4,1,""],model:[242,4,1,""]},"evennia.objects.admin.ObjectDBAdmin":{add_fieldsets:[242,4,1,""],add_form:[242,4,1,""],fieldsets:[242,4,1,""],form:[242,4,1,""],get_fieldsets:[242,3,1,""],get_form:[242,3,1,""],inlines:[242,4,1,""],list_display:[242,4,1,""],list_display_links:[242,4,1,""],list_filter:[242,4,1,""],list_select_related:[242,4,1,""],media:[242,3,1,""],ordering:[242,4,1,""],raw_id_fields:[242,4,1,""],response_add:[242,3,1,""],save_as:[242,4,1,""],save_model:[242,3,1,""],save_on_top:[242,4,1,""],search_fields:[242,4,1,""]},"evennia.objects.admin.ObjectEditForm":{Meta:[242,1,1,""],base_fields:[242,4,1,""],declared_fields:[242,4,1,""],media:[242,3,1,""]},"evennia.objects.admin.ObjectEditForm.Meta":{fields:[242,4,1,""]},"evennia.objects.admin.ObjectTagInline":{media:[242,3,1,""],model:[242,4,1,""],related_field:[242,4,1,""]},"evennia.objects.manager":{ObjectManager:[243,1,1,""]},"evennia.objects.models":{ContentsHandler:[244,1,1,""],ObjectDB:[244,1,1,""]},"evennia.objects.models.ContentsHandler":{__init__:[244,3,1,""],add:[244,3,1,""],clear:[244,3,1,""],get:[244,3,1,""],init:[244,3,1,""],load:[244,3,1,""],remove:[244,3,1,""]},"evennia.objects.models.ObjectDB":{DoesNotExist:[244,2,1,""],MultipleObjectsReturned:[244,2,1,""],account:[244,3,1,""],at_db_location_postsave:[244,3,1,""],cmdset_storage:[244,3,1,""],contents_cache:[244,4,1,""],db_account:[244,4,1,""],db_account_id:[244,4,1,""],db_attributes:[244,4,1,""],db_cmdset_storage:[244,4,1,""],db_destination:[244,4,1,""],db_destination_id:[244,4,1,""],db_home:[244,4,1,""],db_home_id:[244,4,1,""],db_location:[244,4,1,""],db_location_id:[244,4,1,""],db_sessid:[244,4,1,""],db_tags:[244,4,1,""],destination:[244,3,1,""],destinations_set:[244,4,1,""],get_next_by_db_date_created:[244,3,1,""],get_previous_by_db_date_created:[244,3,1,""],hide_from_objects_set:[244,4,1,""],home:[244,3,1,""],homes_set:[244,4,1,""],id:[244,4,1,""],location:[244,3,1,""],locations_set:[244,4,1,""],object_subscription_set:[244,4,1,""],objects:[244,4,1,""],path:[244,4,1,""],receiver_object_set:[244,4,1,""],scriptdb_set:[244,4,1,""],sender_object_set:[244,4,1,""],sessid:[244,3,1,""],typename:[244,4,1,""]},"evennia.objects.objects":{DefaultCharacter:[245,1,1,""],DefaultExit:[245,1,1,""],DefaultObject:[245,1,1,""],DefaultRoom:[245,1,1,""],ExitCommand:[245,1,1,""],ObjectSessionHandler:[245,1,1,""]},"evennia.objects.objects.DefaultCharacter":{DoesNotExist:[245,2,1,""],MultipleObjectsReturned:[245,2,1,""],at_after_move:[245,3,1,""],at_post_puppet:[245,3,1,""],at_post_unpuppet:[245,3,1,""],at_pre_puppet:[245,3,1,""],basetype_setup:[245,3,1,""],connection_time:[245,3,1,""],create:[245,3,1,""],idle_time:[245,3,1,""],lockstring:[245,4,1,""],normalize_name:[245,3,1,""],path:[245,4,1,""],typename:[245,4,1,""],validate_name:[245,3,1,""]},"evennia.objects.objects.DefaultExit":{DoesNotExist:[245,2,1,""],MultipleObjectsReturned:[245,2,1,""],at_cmdset_get:[245,3,1,""],at_failed_traverse:[245,3,1,""],at_init:[245,3,1,""],at_traverse:[245,3,1,""],basetype_setup:[245,3,1,""],create:[245,3,1,""],create_exit_cmdset:[245,3,1,""],exit_command:[245,4,1,""],lockstring:[245,4,1,""],path:[245,4,1,""],priority:[245,4,1,""],typename:[245,4,1,""]},"evennia.objects.objects.DefaultObject":{"delete":[245,3,1,""],DoesNotExist:[245,2,1,""],MultipleObjectsReturned:[245,2,1,""],access:[245,3,1,""],announce_move_from:[245,3,1,""],announce_move_to:[245,3,1,""],at_access:[245,3,1,""],at_after_move:[245,3,1,""],at_after_traverse:[245,3,1,""],at_before_drop:[245,3,1,""],at_before_get:[245,3,1,""],at_before_give:[245,3,1,""],at_before_move:[245,3,1,""],at_before_say:[245,3,1,""],at_cmdset_get:[245,3,1,""],at_desc:[245,3,1,""],at_drop:[245,3,1,""],at_failed_traverse:[245,3,1,""],at_first_save:[245,3,1,""],at_get:[245,3,1,""],at_give:[245,3,1,""],at_init:[245,3,1,""],at_look:[245,3,1,""],at_msg_receive:[245,3,1,""],at_msg_send:[245,3,1,""],at_object_creation:[245,3,1,""],at_object_delete:[245,3,1,""],at_object_leave:[245,3,1,""],at_object_post_copy:[245,3,1,""],at_object_receive:[245,3,1,""],at_post_puppet:[245,3,1,""],at_post_unpuppet:[245,3,1,""],at_pre_puppet:[245,3,1,""],at_pre_unpuppet:[245,3,1,""],at_say:[245,3,1,""],at_server_reload:[245,3,1,""],at_server_shutdown:[245,3,1,""],at_traverse:[245,3,1,""],basetype_posthook_setup:[245,3,1,""],basetype_setup:[245,3,1,""],clear_contents:[245,3,1,""],clear_exits:[245,3,1,""],cmdset:[245,4,1,""],contents:[245,3,1,""],contents_get:[245,3,1,""],contents_set:[245,3,1,""],copy:[245,3,1,""],create:[245,3,1,""],execute_cmd:[245,3,1,""],exits:[245,3,1,""],for_contents:[245,3,1,""],get_display_name:[245,3,1,""],get_numbered_name:[245,3,1,""],has_account:[245,3,1,""],is_connected:[245,3,1,""],is_superuser:[245,3,1,""],lockstring:[245,4,1,""],move_to:[245,3,1,""],msg:[245,3,1,""],msg_contents:[245,3,1,""],nicks:[245,4,1,""],objects:[245,4,1,""],path:[245,4,1,""],return_appearance:[245,3,1,""],scripts:[245,4,1,""],search:[245,3,1,""],search_account:[245,3,1,""],sessions:[245,4,1,""],typename:[245,4,1,""]},"evennia.objects.objects.DefaultRoom":{DoesNotExist:[245,2,1,""],MultipleObjectsReturned:[245,2,1,""],basetype_setup:[245,3,1,""],create:[245,3,1,""],lockstring:[245,4,1,""],path:[245,4,1,""],typename:[245,4,1,""]},"evennia.objects.objects.ExitCommand":{aliases:[245,4,1,""],func:[245,3,1,""],get_extra_info:[245,3,1,""],help_category:[245,4,1,""],key:[245,4,1,""],lock_storage:[245,4,1,""],obj:[245,4,1,""],search_index_entry:[245,4,1,""]},"evennia.objects.objects.ObjectSessionHandler":{__init__:[245,3,1,""],add:[245,3,1,""],all:[245,3,1,""],clear:[245,3,1,""],count:[245,3,1,""],get:[245,3,1,""],remove:[245,3,1,""]},"evennia.prototypes":{menus:[247,0,0,"-"],protfuncs:[248,0,0,"-"],prototypes:[249,0,0,"-"],spawner:[250,0,0,"-"]},"evennia.prototypes.menus":{OLCMenu:[247,1,1,""],node_apply_diff:[247,5,1,""],node_destination:[247,5,1,""],node_examine_entity:[247,5,1,""],node_home:[247,5,1,""],node_index:[247,5,1,""],node_key:[247,5,1,""],node_location:[247,5,1,""],node_prototype_desc:[247,5,1,""],node_prototype_key:[247,5,1,""],node_prototype_save:[247,5,1,""],node_prototype_spawn:[247,5,1,""],node_validate_prototype:[247,5,1,""],start_olc:[247,5,1,""]},"evennia.prototypes.menus.OLCMenu":{display_helptext:[247,3,1,""],helptext_formatter:[247,3,1,""],nodetext_formatter:[247,3,1,""],options_formatter:[247,3,1,""]},"evennia.prototypes.protfuncs":{add:[248,5,1,""],base_random:[248,5,1,""],center_justify:[248,5,1,""],choice:[248,5,1,""],dbref:[248,5,1,""],div:[248,5,1,""],eval:[248,5,1,""],full_justify:[248,5,1,""],left_justify:[248,5,1,""],mult:[248,5,1,""],obj:[248,5,1,""],objlist:[248,5,1,""],protkey:[248,5,1,""],randint:[248,5,1,""],random:[248,5,1,""],right_justify:[248,5,1,""],sub:[248,5,1,""],toint:[248,5,1,""]},"evennia.prototypes.prototypes":{DbPrototype:[249,1,1,""],PermissionError:[249,2,1,""],ValidationError:[249,2,1,""],check_permission:[249,5,1,""],create_prototype:[249,5,1,""],delete_prototype:[249,5,1,""],format_available_protfuncs:[249,5,1,""],homogenize_prototype:[249,5,1,""],init_spawn_value:[249,5,1,""],list_prototypes:[249,5,1,""],protfunc_parser:[249,5,1,""],prototype_to_str:[249,5,1,""],save_prototype:[249,5,1,""],search_objects_with_prototype:[249,5,1,""],search_prototype:[249,5,1,""],validate_prototype:[249,5,1,""],value_to_obj:[249,5,1,""],value_to_obj_or_any:[249,5,1,""]},"evennia.prototypes.prototypes.DbPrototype":{DoesNotExist:[249,2,1,""],MultipleObjectsReturned:[249,2,1,""],at_script_creation:[249,3,1,""],path:[249,4,1,""],prototype:[249,3,1,""],typename:[249,4,1,""]},"evennia.prototypes.spawner":{Unset:[250,1,1,""],batch_create_object:[250,5,1,""],batch_update_objects_with_prototype:[250,5,1,""],flatten_diff:[250,5,1,""],flatten_prototype:[250,5,1,""],format_diff:[250,5,1,""],prototype_diff:[250,5,1,""],prototype_diff_from_object:[250,5,1,""],prototype_from_object:[250,5,1,""],spawn:[250,5,1,""]},"evennia.scripts":{admin:[252,0,0,"-"],manager:[253,0,0,"-"],models:[254,0,0,"-"],monitorhandler:[255,0,0,"-"],scripthandler:[256,0,0,"-"],scripts:[257,0,0,"-"],taskhandler:[258,0,0,"-"],tickerhandler:[259,0,0,"-"]},"evennia.scripts.admin":{ScriptAttributeInline:[252,1,1,""],ScriptDBAdmin:[252,1,1,""],ScriptTagInline:[252,1,1,""]},"evennia.scripts.admin.ScriptAttributeInline":{media:[252,3,1,""],model:[252,4,1,""],related_field:[252,4,1,""]},"evennia.scripts.admin.ScriptDBAdmin":{fieldsets:[252,4,1,""],inlines:[252,4,1,""],list_display:[252,4,1,""],list_display_links:[252,4,1,""],list_select_related:[252,4,1,""],media:[252,3,1,""],ordering:[252,4,1,""],raw_id_fields:[252,4,1,""],save_as:[252,4,1,""],save_model:[252,3,1,""],save_on_top:[252,4,1,""],search_fields:[252,4,1,""]},"evennia.scripts.admin.ScriptTagInline":{media:[252,3,1,""],model:[252,4,1,""],related_field:[252,4,1,""]},"evennia.scripts.manager":{ScriptManager:[253,1,1,""]},"evennia.scripts.models":{ScriptDB:[254,1,1,""]},"evennia.scripts.models.ScriptDB":{DoesNotExist:[254,2,1,""],MultipleObjectsReturned:[254,2,1,""],account:[254,3,1,""],db_account:[254,4,1,""],db_account_id:[254,4,1,""],db_attributes:[254,4,1,""],db_desc:[254,4,1,""],db_interval:[254,4,1,""],db_is_active:[254,4,1,""],db_obj:[254,4,1,""],db_obj_id:[254,4,1,""],db_persistent:[254,4,1,""],db_repeats:[254,4,1,""],db_start_delay:[254,4,1,""],db_tags:[254,4,1,""],desc:[254,3,1,""],get_next_by_db_date_created:[254,3,1,""],get_previous_by_db_date_created:[254,3,1,""],id:[254,4,1,""],interval:[254,3,1,""],is_active:[254,3,1,""],obj:[254,3,1,""],object:[254,3,1,""],objects:[254,4,1,""],path:[254,4,1,""],persistent:[254,3,1,""],receiver_script_set:[254,4,1,""],repeats:[254,3,1,""],sender_script_set:[254,4,1,""],start_delay:[254,3,1,""],typename:[254,4,1,""]},"evennia.scripts.monitorhandler":{MonitorHandler:[255,1,1,""]},"evennia.scripts.monitorhandler.MonitorHandler":{__init__:[255,3,1,""],add:[255,3,1,""],all:[255,3,1,""],at_update:[255,3,1,""],clear:[255,3,1,""],remove:[255,3,1,""],restore:[255,3,1,""],save:[255,3,1,""]},"evennia.scripts.scripthandler":{ScriptHandler:[256,1,1,""]},"evennia.scripts.scripthandler.ScriptHandler":{"delete":[256,3,1,""],__init__:[256,3,1,""],add:[256,3,1,""],all:[256,3,1,""],get:[256,3,1,""],start:[256,3,1,""],stop:[256,3,1,""],validate:[256,3,1,""]},"evennia.scripts.scripts":{DefaultScript:[257,1,1,""],DoNothing:[257,1,1,""],Store:[257,1,1,""]},"evennia.scripts.scripts.DefaultScript":{DoesNotExist:[257,2,1,""],MultipleObjectsReturned:[257,2,1,""],at_idmapper_flush:[257,3,1,""],at_repeat:[257,3,1,""],at_script_creation:[257,3,1,""],at_server_reload:[257,3,1,""],at_server_shutdown:[257,3,1,""],at_start:[257,3,1,""],at_stop:[257,3,1,""],create:[257,3,1,""],force_repeat:[257,3,1,""],is_valid:[257,3,1,""],path:[257,4,1,""],pause:[257,3,1,""],remaining_repeats:[257,3,1,""],reset_callcount:[257,3,1,""],restart:[257,3,1,""],start:[257,3,1,""],stop:[257,3,1,""],time_until_next_repeat:[257,3,1,""],typename:[257,4,1,""],unpause:[257,3,1,""]},"evennia.scripts.scripts.DoNothing":{DoesNotExist:[257,2,1,""],MultipleObjectsReturned:[257,2,1,""],at_script_creation:[257,3,1,""],path:[257,4,1,""],typename:[257,4,1,""]},"evennia.scripts.scripts.Store":{DoesNotExist:[257,2,1,""],MultipleObjectsReturned:[257,2,1,""],at_script_creation:[257,3,1,""],path:[257,4,1,""],typename:[257,4,1,""]},"evennia.scripts.taskhandler":{TaskHandler:[258,1,1,""]},"evennia.scripts.taskhandler.TaskHandler":{__init__:[258,3,1,""],add:[258,3,1,""],create_delays:[258,3,1,""],do_task:[258,3,1,""],load:[258,3,1,""],remove:[258,3,1,""],save:[258,3,1,""]},"evennia.scripts.tickerhandler":{Ticker:[259,1,1,""],TickerHandler:[259,1,1,""],TickerPool:[259,1,1,""]},"evennia.scripts.tickerhandler.Ticker":{__init__:[259,3,1,""],add:[259,3,1,""],remove:[259,3,1,""],stop:[259,3,1,""],validate:[259,3,1,""]},"evennia.scripts.tickerhandler.TickerHandler":{__init__:[259,3,1,""],add:[259,3,1,""],all:[259,3,1,""],all_display:[259,3,1,""],clear:[259,3,1,""],remove:[259,3,1,""],restore:[259,3,1,""],save:[259,3,1,""],ticker_pool_class:[259,4,1,""]},"evennia.scripts.tickerhandler.TickerPool":{__init__:[259,3,1,""],add:[259,3,1,""],remove:[259,3,1,""],stop:[259,3,1,""],ticker_class:[259,4,1,""]},"evennia.server":{admin:[261,0,0,"-"],amp_client:[262,0,0,"-"],connection_wizard:[263,0,0,"-"],deprecations:[264,0,0,"-"],evennia_launcher:[265,0,0,"-"],game_index_client:[266,0,0,"-"],initial_setup:[269,0,0,"-"],inputfuncs:[270,0,0,"-"],manager:[271,0,0,"-"],models:[272,0,0,"-"],portal:[273,0,0,"-"],profiling:[295,0,0,"-"],server:[303,0,0,"-"],serversession:[304,0,0,"-"],session:[305,0,0,"-"],sessionhandler:[306,0,0,"-"],signals:[307,0,0,"-"],throttle:[308,0,0,"-"],validators:[309,0,0,"-"],webserver:[310,0,0,"-"]},"evennia.server.admin":{ServerConfigAdmin:[261,1,1,""]},"evennia.server.admin.ServerConfigAdmin":{list_display:[261,4,1,""],list_display_links:[261,4,1,""],list_select_related:[261,4,1,""],media:[261,3,1,""],ordering:[261,4,1,""],save_as:[261,4,1,""],save_on_top:[261,4,1,""],search_fields:[261,4,1,""]},"evennia.server.amp_client":{AMPClientFactory:[262,1,1,""],AMPServerClientProtocol:[262,1,1,""]},"evennia.server.amp_client.AMPClientFactory":{__init__:[262,3,1,""],buildProtocol:[262,3,1,""],clientConnectionFailed:[262,3,1,""],clientConnectionLost:[262,3,1,""],factor:[262,4,1,""],initialDelay:[262,4,1,""],maxDelay:[262,4,1,""],noisy:[262,4,1,""],startedConnecting:[262,3,1,""]},"evennia.server.amp_client.AMPServerClientProtocol":{connectionMade:[262,3,1,""],data_to_portal:[262,3,1,""],send_AdminServer2Portal:[262,3,1,""],send_MsgServer2Portal:[262,3,1,""],server_receive_adminportal2server:[262,3,1,""],server_receive_msgportal2server:[262,3,1,""],server_receive_status:[262,3,1,""]},"evennia.server.connection_wizard":{ConnectionWizard:[263,1,1,""],node_game_index_fields:[263,5,1,""],node_game_index_start:[263,5,1,""],node_mssp_start:[263,5,1,""],node_start:[263,5,1,""],node_view_and_apply_settings:[263,5,1,""]},"evennia.server.connection_wizard.ConnectionWizard":{__init__:[263,3,1,""],ask_choice:[263,3,1,""],ask_continue:[263,3,1,""],ask_input:[263,3,1,""],ask_node:[263,3,1,""],ask_yesno:[263,3,1,""],display:[263,3,1,""]},"evennia.server.deprecations":{check_errors:[264,5,1,""],check_warnings:[264,5,1,""]},"evennia.server.evennia_launcher":{AMPLauncherProtocol:[265,1,1,""],MsgLauncher2Portal:[265,1,1,""],MsgStatus:[265,1,1,""],check_database:[265,5,1,""],check_main_evennia_dependencies:[265,5,1,""],collectstatic:[265,5,1,""],create_game_directory:[265,5,1,""],create_secret_key:[265,5,1,""],create_settings_file:[265,5,1,""],create_superuser:[265,5,1,""],del_pid:[265,5,1,""],error_check_python_modules:[265,5,1,""],evennia_version:[265,5,1,""],get_pid:[265,5,1,""],getenv:[265,5,1,""],init_game_directory:[265,5,1,""],kill:[265,5,1,""],list_settings:[265,5,1,""],main:[265,5,1,""],query_info:[265,5,1,""],query_status:[265,5,1,""],reboot_evennia:[265,5,1,""],reload_evennia:[265,5,1,""],run_connect_wizard:[265,5,1,""],run_dummyrunner:[265,5,1,""],run_menu:[265,5,1,""],send_instruction:[265,5,1,""],set_gamedir:[265,5,1,""],show_version_info:[265,5,1,""],start_evennia:[265,5,1,""],start_only_server:[265,5,1,""],start_portal_interactive:[265,5,1,""],start_server_interactive:[265,5,1,""],stop_evennia:[265,5,1,""],stop_server_only:[265,5,1,""],tail_log_files:[265,5,1,""],wait_for_status:[265,5,1,""],wait_for_status_reply:[265,5,1,""]},"evennia.server.evennia_launcher.AMPLauncherProtocol":{__init__:[265,3,1,""],receive_status_from_portal:[265,3,1,""],wait_for_status:[265,3,1,""]},"evennia.server.evennia_launcher.MsgLauncher2Portal":{allErrors:[265,4,1,""],arguments:[265,4,1,""],commandName:[265,4,1,""],errors:[265,4,1,""],key:[265,4,1,""],response:[265,4,1,""],reverseErrors:[265,4,1,""]},"evennia.server.evennia_launcher.MsgStatus":{allErrors:[265,4,1,""],arguments:[265,4,1,""],commandName:[265,4,1,""],errors:[265,4,1,""],key:[265,4,1,""],response:[265,4,1,""],reverseErrors:[265,4,1,""]},"evennia.server.game_index_client":{client:[267,0,0,"-"],service:[268,0,0,"-"]},"evennia.server.game_index_client.client":{EvenniaGameIndexClient:[267,1,1,""],QuietHTTP11ClientFactory:[267,1,1,""],SimpleResponseReceiver:[267,1,1,""],StringProducer:[267,1,1,""]},"evennia.server.game_index_client.client.EvenniaGameIndexClient":{__init__:[267,3,1,""],handle_egd_response:[267,3,1,""],send_game_details:[267,3,1,""]},"evennia.server.game_index_client.client.QuietHTTP11ClientFactory":{noisy:[267,4,1,""]},"evennia.server.game_index_client.client.SimpleResponseReceiver":{__init__:[267,3,1,""],connectionLost:[267,3,1,""],dataReceived:[267,3,1,""]},"evennia.server.game_index_client.client.StringProducer":{__init__:[267,3,1,""],pauseProducing:[267,3,1,""],startProducing:[267,3,1,""],stopProducing:[267,3,1,""]},"evennia.server.game_index_client.service":{EvenniaGameIndexService:[268,1,1,""]},"evennia.server.game_index_client.service.EvenniaGameIndexService":{__init__:[268,3,1,""],name:[268,4,1,""],startService:[268,3,1,""],stopService:[268,3,1,""]},"evennia.server.initial_setup":{at_initial_setup:[269,5,1,""],collectstatic:[269,5,1,""],create_channels:[269,5,1,""],create_objects:[269,5,1,""],get_god_account:[269,5,1,""],handle_setup:[269,5,1,""],reset_server:[269,5,1,""]},"evennia.server.inputfuncs":{"default":[270,5,1,""],bot_data_in:[270,5,1,""],client_options:[270,5,1,""],echo:[270,5,1,""],external_discord_hello:[270,5,1,""],get_client_options:[270,5,1,""],get_inputfuncs:[270,5,1,""],get_value:[270,5,1,""],hello:[270,5,1,""],login:[270,5,1,""],monitor:[270,5,1,""],monitored:[270,5,1,""],msdp_list:[270,5,1,""],msdp_report:[270,5,1,""],msdp_send:[270,5,1,""],msdp_unreport:[270,5,1,""],repeat:[270,5,1,""],supports_set:[270,5,1,""],text:[270,5,1,""],unmonitor:[270,5,1,""],unrepeat:[270,5,1,""],webclient_options:[270,5,1,""]},"evennia.server.manager":{ServerConfigManager:[271,1,1,""]},"evennia.server.manager.ServerConfigManager":{conf:[271,3,1,""]},"evennia.server.models":{ServerConfig:[272,1,1,""]},"evennia.server.models.ServerConfig":{DoesNotExist:[272,2,1,""],MultipleObjectsReturned:[272,2,1,""],db_key:[272,4,1,""],db_value:[272,4,1,""],id:[272,4,1,""],key:[272,3,1,""],objects:[272,4,1,""],path:[272,4,1,""],store:[272,3,1,""],typename:[272,4,1,""],value:[272,3,1,""]},"evennia.server.portal":{amp:[274,0,0,"-"],amp_server:[275,0,0,"-"],grapevine:[276,0,0,"-"],irc:[277,0,0,"-"],mccp:[278,0,0,"-"],mssp:[279,0,0,"-"],mxp:[280,0,0,"-"],naws:[281,0,0,"-"],portal:[282,0,0,"-"],portalsessionhandler:[283,0,0,"-"],rss:[284,0,0,"-"],ssh:[285,0,0,"-"],ssl:[286,0,0,"-"],suppress_ga:[287,0,0,"-"],telnet:[288,0,0,"-"],telnet_oob:[289,0,0,"-"],telnet_ssl:[290,0,0,"-"],tests:[291,0,0,"-"],ttype:[292,0,0,"-"],webclient:[293,0,0,"-"],webclient_ajax:[294,0,0,"-"]},"evennia.server.portal.amp":{AMPMultiConnectionProtocol:[274,1,1,""],AdminPortal2Server:[274,1,1,""],AdminServer2Portal:[274,1,1,""],Compressed:[274,1,1,""],FunctionCall:[274,1,1,""],MsgLauncher2Portal:[274,1,1,""],MsgPortal2Server:[274,1,1,""],MsgServer2Portal:[274,1,1,""],MsgStatus:[274,1,1,""],dumps:[274,5,1,""],loads:[274,5,1,""]},"evennia.server.portal.amp.AMPMultiConnectionProtocol":{__init__:[274,3,1,""],broadcast:[274,3,1,""],connectionLost:[274,3,1,""],connectionMade:[274,3,1,""],dataReceived:[274,3,1,""],data_in:[274,3,1,""],errback:[274,3,1,""],makeConnection:[274,3,1,""],receive_functioncall:[274,3,1,""],send_FunctionCall:[274,3,1,""]},"evennia.server.portal.amp.AdminPortal2Server":{allErrors:[274,4,1,""],arguments:[274,4,1,""],commandName:[274,4,1,""],errors:[274,4,1,""],key:[274,4,1,""],response:[274,4,1,""],reverseErrors:[274,4,1,""]},"evennia.server.portal.amp.AdminServer2Portal":{allErrors:[274,4,1,""],arguments:[274,4,1,""],commandName:[274,4,1,""],errors:[274,4,1,""],key:[274,4,1,""],response:[274,4,1,""],reverseErrors:[274,4,1,""]},"evennia.server.portal.amp.Compressed":{fromBox:[274,3,1,""],fromString:[274,3,1,""],toBox:[274,3,1,""],toString:[274,3,1,""]},"evennia.server.portal.amp.FunctionCall":{allErrors:[274,4,1,""],arguments:[274,4,1,""],commandName:[274,4,1,""],errors:[274,4,1,""],key:[274,4,1,""],response:[274,4,1,""],reverseErrors:[274,4,1,""]},"evennia.server.portal.amp.MsgLauncher2Portal":{allErrors:[274,4,1,""],arguments:[274,4,1,""],commandName:[274,4,1,""],errors:[274,4,1,""],key:[274,4,1,""],response:[274,4,1,""],reverseErrors:[274,4,1,""]},"evennia.server.portal.amp.MsgPortal2Server":{allErrors:[274,4,1,""],arguments:[274,4,1,""],commandName:[274,4,1,""],errors:[274,4,1,""],key:[274,4,1,""],response:[274,4,1,""],reverseErrors:[274,4,1,""]},"evennia.server.portal.amp.MsgServer2Portal":{allErrors:[274,4,1,""],arguments:[274,4,1,""],commandName:[274,4,1,""],errors:[274,4,1,""],key:[274,4,1,""],response:[274,4,1,""],reverseErrors:[274,4,1,""]},"evennia.server.portal.amp.MsgStatus":{allErrors:[274,4,1,""],arguments:[274,4,1,""],commandName:[274,4,1,""],errors:[274,4,1,""],key:[274,4,1,""],response:[274,4,1,""],reverseErrors:[274,4,1,""]},"evennia.server.portal.amp_server":{AMPServerFactory:[275,1,1,""],AMPServerProtocol:[275,1,1,""],getenv:[275,5,1,""]},"evennia.server.portal.amp_server.AMPServerFactory":{__init__:[275,3,1,""],buildProtocol:[275,3,1,""],logPrefix:[275,3,1,""],noisy:[275,4,1,""]},"evennia.server.portal.amp_server.AMPServerProtocol":{connectionLost:[275,3,1,""],data_to_server:[275,3,1,""],get_status:[275,3,1,""],portal_receive_adminserver2portal:[275,3,1,""],portal_receive_launcher2portal:[275,3,1,""],portal_receive_server2portal:[275,3,1,""],portal_receive_status:[275,3,1,""],send_AdminPortal2Server:[275,3,1,""],send_MsgPortal2Server:[275,3,1,""],send_Status2Launcher:[275,3,1,""],start_server:[275,3,1,""],stop_server:[275,3,1,""],wait_for_disconnect:[275,3,1,""],wait_for_server_connect:[275,3,1,""]},"evennia.server.portal.grapevine":{GrapevineClient:[276,1,1,""],RestartingWebsocketServerFactory:[276,1,1,""]},"evennia.server.portal.grapevine.GrapevineClient":{__init__:[276,3,1,""],at_login:[276,3,1,""],data_in:[276,3,1,""],disconnect:[276,3,1,""],onClose:[276,3,1,""],onMessage:[276,3,1,""],onOpen:[276,3,1,""],send_authenticate:[276,3,1,""],send_channel:[276,3,1,""],send_default:[276,3,1,""],send_heartbeat:[276,3,1,""],send_subscribe:[276,3,1,""],send_unsubscribe:[276,3,1,""]},"evennia.server.portal.grapevine.RestartingWebsocketServerFactory":{__init__:[276,3,1,""],buildProtocol:[276,3,1,""],clientConnectionFailed:[276,3,1,""],clientConnectionLost:[276,3,1,""],factor:[276,4,1,""],initialDelay:[276,4,1,""],maxDelay:[276,4,1,""],reconnect:[276,3,1,""],start:[276,3,1,""],startedConnecting:[276,3,1,""]},"evennia.server.portal.irc":{IRCBot:[277,1,1,""],IRCBotFactory:[277,1,1,""],parse_ansi_to_irc:[277,5,1,""],parse_irc_to_ansi:[277,5,1,""]},"evennia.server.portal.irc.IRCBot":{action:[277,3,1,""],at_login:[277,3,1,""],channel:[277,4,1,""],data_in:[277,3,1,""],disconnect:[277,3,1,""],factory:[277,4,1,""],get_nicklist:[277,3,1,""],irc_RPL_ENDOFNAMES:[277,3,1,""],irc_RPL_NAMREPLY:[277,3,1,""],lineRate:[277,4,1,""],logger:[277,4,1,""],nickname:[277,4,1,""],pong:[277,3,1,""],privmsg:[277,3,1,""],send_channel:[277,3,1,""],send_default:[277,3,1,""],send_ping:[277,3,1,""],send_privmsg:[277,3,1,""],send_reconnect:[277,3,1,""],send_request_nicklist:[277,3,1,""],signedOn:[277,3,1,""],sourceURL:[277,4,1,""]},"evennia.server.portal.irc.IRCBotFactory":{__init__:[277,3,1,""],buildProtocol:[277,3,1,""],clientConnectionFailed:[277,3,1,""],clientConnectionLost:[277,3,1,""],factor:[277,4,1,""],initialDelay:[277,4,1,""],maxDelay:[277,4,1,""],reconnect:[277,3,1,""],start:[277,3,1,""],startedConnecting:[277,3,1,""]},"evennia.server.portal.mccp":{Mccp:[278,1,1,""],mccp_compress:[278,5,1,""]},"evennia.server.portal.mccp.Mccp":{__init__:[278,3,1,""],do_mccp:[278,3,1,""],no_mccp:[278,3,1,""]},"evennia.server.portal.mssp":{Mssp:[279,1,1,""]},"evennia.server.portal.mssp.Mssp":{__init__:[279,3,1,""],do_mssp:[279,3,1,""],get_player_count:[279,3,1,""],get_uptime:[279,3,1,""],no_mssp:[279,3,1,""]},"evennia.server.portal.mxp":{Mxp:[280,1,1,""],mxp_parse:[280,5,1,""]},"evennia.server.portal.mxp.Mxp":{__init__:[280,3,1,""],do_mxp:[280,3,1,""],no_mxp:[280,3,1,""]},"evennia.server.portal.naws":{Naws:[281,1,1,""]},"evennia.server.portal.naws.Naws":{__init__:[281,3,1,""],do_naws:[281,3,1,""],negotiate_sizes:[281,3,1,""],no_naws:[281,3,1,""]},"evennia.server.portal.portal":{Portal:[282,1,1,""],Websocket:[282,1,1,""]},"evennia.server.portal.portal.Portal":{__init__:[282,3,1,""],get_info_dict:[282,3,1,""],shutdown:[282,3,1,""]},"evennia.server.portal.portalsessionhandler":{PortalSessionHandler:[283,1,1,""]},"evennia.server.portal.portalsessionhandler.PortalSessionHandler":{__init__:[283,3,1,""],announce_all:[283,3,1,""],at_server_connection:[283,3,1,""],connect:[283,3,1,""],count_loggedin:[283,3,1,""],data_in:[283,3,1,""],data_out:[283,3,1,""],disconnect:[283,3,1,""],disconnect_all:[283,3,1,""],generate_sessid:[283,3,1,""],server_connect:[283,3,1,""],server_disconnect:[283,3,1,""],server_disconnect_all:[283,3,1,""],server_logged_in:[283,3,1,""],server_session_sync:[283,3,1,""],sessions_from_csessid:[283,3,1,""],sync:[283,3,1,""]},"evennia.server.portal.rss":{RSSBotFactory:[284,1,1,""],RSSReader:[284,1,1,""]},"evennia.server.portal.rss.RSSBotFactory":{__init__:[284,3,1,""],start:[284,3,1,""]},"evennia.server.portal.rss.RSSReader":{__init__:[284,3,1,""],data_in:[284,3,1,""],disconnect:[284,3,1,""],get_new:[284,3,1,""],update:[284,3,1,""]},"evennia.server.portal.ssh":{AccountDBPasswordChecker:[285,1,1,""],ExtraInfoAuthServer:[285,1,1,""],PassAvatarIdTerminalRealm:[285,1,1,""],SSHServerFactory:[285,1,1,""],SshProtocol:[285,1,1,""],TerminalSessionTransport_getPeer:[285,1,1,""],getKeyPair:[285,5,1,""],makeFactory:[285,5,1,""]},"evennia.server.portal.ssh.AccountDBPasswordChecker":{__init__:[285,3,1,""],credentialInterfaces:[285,4,1,""],noisy:[285,4,1,""],requestAvatarId:[285,3,1,""]},"evennia.server.portal.ssh.ExtraInfoAuthServer":{auth_password:[285,3,1,""],noisy:[285,4,1,""]},"evennia.server.portal.ssh.PassAvatarIdTerminalRealm":{noisy:[285,4,1,""]},"evennia.server.portal.ssh.SSHServerFactory":{logPrefix:[285,3,1,""],noisy:[285,4,1,""]},"evennia.server.portal.ssh.SshProtocol":{__init__:[285,3,1,""],at_login:[285,3,1,""],connectionLost:[285,3,1,""],connectionMade:[285,3,1,""],data_out:[285,3,1,""],disconnect:[285,3,1,""],getClientAddress:[285,3,1,""],handle_EOF:[285,3,1,""],handle_FF:[285,3,1,""],handle_INT:[285,3,1,""],handle_QUIT:[285,3,1,""],lineReceived:[285,3,1,""],noisy:[285,4,1,""],sendLine:[285,3,1,""],send_default:[285,3,1,""],send_prompt:[285,3,1,""],send_text:[285,3,1,""],terminalSize:[285,3,1,""]},"evennia.server.portal.ssh.TerminalSessionTransport_getPeer":{__init__:[285,3,1,""],noisy:[285,4,1,""]},"evennia.server.portal.ssl":{SSLProtocol:[286,1,1,""],getSSLContext:[286,5,1,""],verify_SSL_key_and_cert:[286,5,1,""]},"evennia.server.portal.ssl.SSLProtocol":{__init__:[286,3,1,""]},"evennia.server.portal.suppress_ga":{SuppressGA:[287,1,1,""]},"evennia.server.portal.suppress_ga.SuppressGA":{__init__:[287,3,1,""],will_suppress_ga:[287,3,1,""],wont_suppress_ga:[287,3,1,""]},"evennia.server.portal.telnet":{TelnetProtocol:[288,1,1,""],TelnetServerFactory:[288,1,1,""]},"evennia.server.portal.telnet.TelnetProtocol":{__init__:[288,3,1,""],applicationDataReceived:[288,3,1,""],at_login:[288,3,1,""],connectionLost:[288,3,1,""],connectionMade:[288,3,1,""],dataReceived:[288,3,1,""],data_in:[288,3,1,""],data_out:[288,3,1,""],disableLocal:[288,3,1,""],disableRemote:[288,3,1,""],disconnect:[288,3,1,""],enableLocal:[288,3,1,""],enableRemote:[288,3,1,""],handshake_done:[288,3,1,""],sendLine:[288,3,1,""],send_default:[288,3,1,""],send_prompt:[288,3,1,""],send_text:[288,3,1,""],toggle_nop_keepalive:[288,3,1,""]},"evennia.server.portal.telnet.TelnetServerFactory":{logPrefix:[288,3,1,""],noisy:[288,4,1,""]},"evennia.server.portal.telnet_oob":{TelnetOOB:[289,1,1,""]},"evennia.server.portal.telnet_oob.TelnetOOB":{__init__:[289,3,1,""],data_out:[289,3,1,""],decode_gmcp:[289,3,1,""],decode_msdp:[289,3,1,""],do_gmcp:[289,3,1,""],do_msdp:[289,3,1,""],encode_gmcp:[289,3,1,""],encode_msdp:[289,3,1,""],no_gmcp:[289,3,1,""],no_msdp:[289,3,1,""]},"evennia.server.portal.telnet_ssl":{SSLProtocol:[290,1,1,""],getSSLContext:[290,5,1,""],verify_or_create_SSL_key_and_cert:[290,5,1,""]},"evennia.server.portal.telnet_ssl.SSLProtocol":{__init__:[290,3,1,""]},"evennia.server.portal.tests":{TestAMPServer:[291,1,1,""],TestIRC:[291,1,1,""],TestTelnet:[291,1,1,""],TestWebSocket:[291,1,1,""]},"evennia.server.portal.tests.TestAMPServer":{setUp:[291,3,1,""],test_amp_in:[291,3,1,""],test_amp_out:[291,3,1,""],test_large_msg:[291,3,1,""]},"evennia.server.portal.tests.TestIRC":{test_bold:[291,3,1,""],test_colors:[291,3,1,""],test_identity:[291,3,1,""],test_italic:[291,3,1,""],test_plain_ansi:[291,3,1,""]},"evennia.server.portal.tests.TestTelnet":{setUp:[291,3,1,""],test_mudlet_ttype:[291,3,1,""]},"evennia.server.portal.tests.TestWebSocket":{setUp:[291,3,1,""],tearDown:[291,3,1,""],test_data_in:[291,3,1,""],test_data_out:[291,3,1,""]},"evennia.server.portal.ttype":{Ttype:[292,1,1,""]},"evennia.server.portal.ttype.Ttype":{__init__:[292,3,1,""],will_ttype:[292,3,1,""],wont_ttype:[292,3,1,""]},"evennia.server.portal.webclient":{WebSocketClient:[293,1,1,""]},"evennia.server.portal.webclient.WebSocketClient":{__init__:[293,3,1,""],at_login:[293,3,1,""],data_in:[293,3,1,""],disconnect:[293,3,1,""],get_client_session:[293,3,1,""],nonce:[293,4,1,""],onClose:[293,3,1,""],onMessage:[293,3,1,""],onOpen:[293,3,1,""],sendLine:[293,3,1,""],send_default:[293,3,1,""],send_prompt:[293,3,1,""],send_text:[293,3,1,""]},"evennia.server.portal.webclient_ajax":{AjaxWebClient:[294,1,1,""],AjaxWebClientSession:[294,1,1,""],LazyEncoder:[294,1,1,""],jsonify:[294,5,1,""]},"evennia.server.portal.webclient_ajax.AjaxWebClient":{__init__:[294,3,1,""],allowedMethods:[294,4,1,""],at_login:[294,3,1,""],client_disconnect:[294,3,1,""],get_client_sessid:[294,3,1,""],isLeaf:[294,4,1,""],lineSend:[294,3,1,""],mode_close:[294,3,1,""],mode_init:[294,3,1,""],mode_input:[294,3,1,""],mode_keepalive:[294,3,1,""],mode_receive:[294,3,1,""],render_POST:[294,3,1,""]},"evennia.server.portal.webclient_ajax.AjaxWebClientSession":{__init__:[294,3,1,""],at_login:[294,3,1,""],data_in:[294,3,1,""],data_out:[294,3,1,""],disconnect:[294,3,1,""],get_client_session:[294,3,1,""],send_default:[294,3,1,""],send_prompt:[294,3,1,""],send_text:[294,3,1,""]},"evennia.server.portal.webclient_ajax.LazyEncoder":{"default":[294,3,1,""]},"evennia.server.profiling":{dummyrunner:[296,0,0,"-"],dummyrunner_settings:[297,0,0,"-"],memplot:[298,0,0,"-"],settings_mixin:[299,0,0,"-"],test_queries:[300,0,0,"-"],tests:[301,0,0,"-"],timetrace:[302,0,0,"-"]},"evennia.server.profiling.dummyrunner":{DummyClient:[296,1,1,""],DummyFactory:[296,1,1,""],gidcounter:[296,5,1,""],idcounter:[296,5,1,""],makeiter:[296,5,1,""],start_all_dummy_clients:[296,5,1,""]},"evennia.server.profiling.dummyrunner.DummyClient":{connectionLost:[296,3,1,""],connectionMade:[296,3,1,""],counter:[296,3,1,""],dataReceived:[296,3,1,""],error:[296,3,1,""],logout:[296,3,1,""],step:[296,3,1,""]},"evennia.server.profiling.dummyrunner.DummyFactory":{__init__:[296,3,1,""],protocol:[296,4,1,""]},"evennia.server.profiling.dummyrunner_settings":{c_creates_button:[297,5,1,""],c_creates_obj:[297,5,1,""],c_digs:[297,5,1,""],c_examines:[297,5,1,""],c_help:[297,5,1,""],c_idles:[297,5,1,""],c_login:[297,5,1,""],c_login_nodig:[297,5,1,""],c_logout:[297,5,1,""],c_looks:[297,5,1,""],c_moves:[297,5,1,""],c_moves_n:[297,5,1,""],c_moves_s:[297,5,1,""],c_socialize:[297,5,1,""]},"evennia.server.profiling.memplot":{Memplot:[298,1,1,""]},"evennia.server.profiling.memplot.Memplot":{DoesNotExist:[298,2,1,""],MultipleObjectsReturned:[298,2,1,""],at_repeat:[298,3,1,""],at_script_creation:[298,3,1,""],path:[298,4,1,""],typename:[298,4,1,""]},"evennia.server.profiling.test_queries":{count_queries:[300,5,1,""]},"evennia.server.profiling.tests":{TestDummyrunnerSettings:[301,1,1,""],TestMemPlot:[301,1,1,""]},"evennia.server.profiling.tests.TestDummyrunnerSettings":{clear_client_lists:[301,3,1,""],perception_method_tests:[301,3,1,""],setUp:[301,3,1,""],test_c_creates_button:[301,3,1,""],test_c_creates_obj:[301,3,1,""],test_c_digs:[301,3,1,""],test_c_examines:[301,3,1,""],test_c_help:[301,3,1,""],test_c_login:[301,3,1,""],test_c_login_no_dig:[301,3,1,""],test_c_logout:[301,3,1,""],test_c_looks:[301,3,1,""],test_c_move_n:[301,3,1,""],test_c_move_s:[301,3,1,""],test_c_moves:[301,3,1,""],test_c_socialize:[301,3,1,""],test_idles:[301,3,1,""]},"evennia.server.profiling.tests.TestMemPlot":{test_memplot:[301,3,1,""]},"evennia.server.profiling.timetrace":{timetrace:[302,5,1,""]},"evennia.server.server":{Evennia:[303,1,1,""]},"evennia.server.server.Evennia":{__init__:[303,3,1,""],at_post_portal_sync:[303,3,1,""],at_server_cold_start:[303,3,1,""],at_server_cold_stop:[303,3,1,""],at_server_reload_start:[303,3,1,""],at_server_reload_stop:[303,3,1,""],at_server_start:[303,3,1,""],at_server_stop:[303,3,1,""],get_info_dict:[303,3,1,""],run_init_hooks:[303,3,1,""],run_initial_setup:[303,3,1,""],shutdown:[303,3,1,""],sqlite3_prep:[303,3,1,""],update_defaults:[303,3,1,""]},"evennia.server.serversession":{ServerSession:[304,1,1,""]},"evennia.server.serversession.ServerSession":{__init__:[304,3,1,""],access:[304,3,1,""],at_cmdset_get:[304,3,1,""],at_disconnect:[304,3,1,""],at_login:[304,3,1,""],at_sync:[304,3,1,""],attributes:[304,4,1,""],cmdset_storage:[304,3,1,""],data_in:[304,3,1,""],data_out:[304,3,1,""],db:[304,3,1,""],execute_cmd:[304,3,1,""],get_account:[304,3,1,""],get_character:[304,3,1,""],get_client_size:[304,3,1,""],get_puppet:[304,3,1,""],get_puppet_or_account:[304,3,1,""],id:[304,3,1,""],log:[304,3,1,""],msg:[304,3,1,""],nattributes:[304,4,1,""],ndb:[304,3,1,""],ndb_del:[304,3,1,""],ndb_get:[304,3,1,""],ndb_set:[304,3,1,""],update_flags:[304,3,1,""],update_session_counters:[304,3,1,""]},"evennia.server.session":{Session:[305,1,1,""]},"evennia.server.session.Session":{at_sync:[305,3,1,""],data_in:[305,3,1,""],data_out:[305,3,1,""],disconnect:[305,3,1,""],get_sync_data:[305,3,1,""],init_session:[305,3,1,""],load_sync_data:[305,3,1,""]},"evennia.server.sessionhandler":{DummySession:[306,1,1,""],ServerSessionHandler:[306,1,1,""],SessionHandler:[306,1,1,""],delayed_import:[306,5,1,""]},"evennia.server.sessionhandler.DummySession":{sessid:[306,4,1,""]},"evennia.server.sessionhandler.ServerSessionHandler":{__init__:[306,3,1,""],account_count:[306,3,1,""],all_connected_accounts:[306,3,1,""],all_sessions_portal_sync:[306,3,1,""],announce_all:[306,3,1,""],call_inputfuncs:[306,3,1,""],data_in:[306,3,1,""],data_out:[306,3,1,""],disconnect:[306,3,1,""],disconnect_all_sessions:[306,3,1,""],disconnect_duplicate_sessions:[306,3,1,""],get_inputfuncs:[306,3,1,""],login:[306,3,1,""],portal_connect:[306,3,1,""],portal_disconnect:[306,3,1,""],portal_disconnect_all:[306,3,1,""],portal_reset_server:[306,3,1,""],portal_restart_server:[306,3,1,""],portal_session_sync:[306,3,1,""],portal_sessions_sync:[306,3,1,""],portal_shutdown:[306,3,1,""],session_from_account:[306,3,1,""],session_from_sessid:[306,3,1,""],session_portal_partial_sync:[306,3,1,""],session_portal_sync:[306,3,1,""],sessions_from_account:[306,3,1,""],sessions_from_character:[306,3,1,""],sessions_from_csessid:[306,3,1,""],sessions_from_puppet:[306,3,1,""],start_bot_session:[306,3,1,""],validate_sessions:[306,3,1,""]},"evennia.server.sessionhandler.SessionHandler":{clean_senddata:[306,3,1,""],get:[306,3,1,""],get_all_sync_data:[306,3,1,""],get_sessions:[306,3,1,""]},"evennia.server.throttle":{Throttle:[308,1,1,""]},"evennia.server.throttle.Throttle":{__init__:[308,3,1,""],check:[308,3,1,""],error_msg:[308,4,1,""],get:[308,3,1,""],update:[308,3,1,""]},"evennia.server.validators":{EvenniaPasswordValidator:[309,1,1,""],EvenniaUsernameAvailabilityValidator:[309,1,1,""]},"evennia.server.validators.EvenniaPasswordValidator":{__init__:[309,3,1,""],get_help_text:[309,3,1,""],validate:[309,3,1,""]},"evennia.server.webserver":{DjangoWebRoot:[310,1,1,""],EvenniaReverseProxyResource:[310,1,1,""],HTTPChannelWithXForwardedFor:[310,1,1,""],LockableThreadPool:[310,1,1,""],PrivateStaticRoot:[310,1,1,""],WSGIWebServer:[310,1,1,""],Website:[310,1,1,""]},"evennia.server.webserver.DjangoWebRoot":{__init__:[310,3,1,""],empty_threadpool:[310,3,1,""],getChild:[310,3,1,""]},"evennia.server.webserver.EvenniaReverseProxyResource":{getChild:[310,3,1,""],render:[310,3,1,""]},"evennia.server.webserver.HTTPChannelWithXForwardedFor":{allHeadersReceived:[310,3,1,""]},"evennia.server.webserver.LockableThreadPool":{__init__:[310,3,1,""],callInThread:[310,3,1,""],lock:[310,3,1,""]},"evennia.server.webserver.PrivateStaticRoot":{directoryListing:[310,3,1,""]},"evennia.server.webserver.WSGIWebServer":{__init__:[310,3,1,""],startService:[310,3,1,""],stopService:[310,3,1,""]},"evennia.server.webserver.Website":{log:[310,3,1,""],logPrefix:[310,3,1,""],noisy:[310,4,1,""]},"evennia.typeclasses":{admin:[313,0,0,"-"],attributes:[314,0,0,"-"],managers:[315,0,0,"-"],models:[316,0,0,"-"],tags:[317,0,0,"-"]},"evennia.typeclasses.admin":{AttributeForm:[313,1,1,""],AttributeFormSet:[313,1,1,""],AttributeInline:[313,1,1,""],TagAdmin:[313,1,1,""],TagForm:[313,1,1,""],TagFormSet:[313,1,1,""],TagInline:[313,1,1,""]},"evennia.typeclasses.admin.AttributeForm":{Meta:[313,1,1,""],__init__:[313,3,1,""],base_fields:[313,4,1,""],clean_attr_value:[313,3,1,""],declared_fields:[313,4,1,""],media:[313,3,1,""],save:[313,3,1,""]},"evennia.typeclasses.admin.AttributeForm.Meta":{fields:[313,4,1,""]},"evennia.typeclasses.admin.AttributeFormSet":{save:[313,3,1,""]},"evennia.typeclasses.admin.AttributeInline":{extra:[313,4,1,""],form:[313,4,1,""],formset:[313,4,1,""],get_formset:[313,3,1,""],media:[313,3,1,""],model:[313,4,1,""],related_field:[313,4,1,""]},"evennia.typeclasses.admin.TagAdmin":{fields:[313,4,1,""],list_display:[313,4,1,""],list_filter:[313,4,1,""],media:[313,3,1,""],search_fields:[313,4,1,""]},"evennia.typeclasses.admin.TagForm":{Meta:[313,1,1,""],__init__:[313,3,1,""],base_fields:[313,4,1,""],declared_fields:[313,4,1,""],media:[313,3,1,""],save:[313,3,1,""]},"evennia.typeclasses.admin.TagForm.Meta":{fields:[313,4,1,""]},"evennia.typeclasses.admin.TagFormSet":{save:[313,3,1,""]},"evennia.typeclasses.admin.TagInline":{extra:[313,4,1,""],form:[313,4,1,""],formset:[313,4,1,""],get_formset:[313,3,1,""],media:[313,3,1,""],model:[313,4,1,""],related_field:[313,4,1,""]},"evennia.typeclasses.attributes":{Attribute:[314,1,1,""],AttributeHandler:[314,1,1,""],DbHolder:[314,1,1,""],IAttribute:[314,1,1,""],IAttributeBackend:[314,1,1,""],InMemoryAttribute:[314,1,1,""],InMemoryAttributeBackend:[314,1,1,""],ModelAttributeBackend:[314,1,1,""],NickHandler:[314,1,1,""],NickTemplateInvalid:[314,2,1,""],initialize_nick_templates:[314,5,1,""],parse_nick_template:[314,5,1,""]},"evennia.typeclasses.attributes.Attribute":{DoesNotExist:[314,2,1,""],MultipleObjectsReturned:[314,2,1,""],accountdb_set:[314,4,1,""],attrtype:[314,3,1,""],category:[314,3,1,""],channeldb_set:[314,4,1,""],date_created:[314,3,1,""],db_attrtype:[314,4,1,""],db_category:[314,4,1,""],db_date_created:[314,4,1,""],db_key:[314,4,1,""],db_lock_storage:[314,4,1,""],db_model:[314,4,1,""],db_strvalue:[314,4,1,""],db_value:[314,4,1,""],get_next_by_db_date_created:[314,3,1,""],get_previous_by_db_date_created:[314,3,1,""],id:[314,4,1,""],key:[314,3,1,""],lock_storage:[314,3,1,""],model:[314,3,1,""],objectdb_set:[314,4,1,""],path:[314,4,1,""],scriptdb_set:[314,4,1,""],strvalue:[314,3,1,""],typename:[314,4,1,""],value:[314,3,1,""]},"evennia.typeclasses.attributes.AttributeHandler":{__init__:[314,3,1,""],add:[314,3,1,""],all:[314,3,1,""],batch_add:[314,3,1,""],clear:[314,3,1,""],get:[314,3,1,""],has:[314,3,1,""],remove:[314,3,1,""],reset_cache:[314,3,1,""]},"evennia.typeclasses.attributes.DbHolder":{__init__:[314,3,1,""],all:[314,3,1,""],get_all:[314,3,1,""]},"evennia.typeclasses.attributes.IAttribute":{access:[314,3,1,""],attrtype:[314,3,1,""],category:[314,3,1,""],date_created:[314,3,1,""],key:[314,3,1,""],lock_storage:[314,3,1,""],locks:[314,4,1,""],model:[314,3,1,""],strvalue:[314,3,1,""]},"evennia.typeclasses.attributes.IAttributeBackend":{__init__:[314,3,1,""],batch_add:[314,3,1,""],clear_attributes:[314,3,1,""],create_attribute:[314,3,1,""],delete_attribute:[314,3,1,""],do_batch_delete:[314,3,1,""],do_batch_finish:[314,3,1,""],do_batch_update_attribute:[314,3,1,""],do_create_attribute:[314,3,1,""],do_delete_attribute:[314,3,1,""],do_update_attribute:[314,3,1,""],get:[314,3,1,""],get_all_attributes:[314,3,1,""],query_all:[314,3,1,""],query_category:[314,3,1,""],query_key:[314,3,1,""],reset_cache:[314,3,1,""],update_attribute:[314,3,1,""]},"evennia.typeclasses.attributes.InMemoryAttribute":{__init__:[314,3,1,""],value:[314,3,1,""]},"evennia.typeclasses.attributes.InMemoryAttributeBackend":{__init__:[314,3,1,""],do_batch_finish:[314,3,1,""],do_batch_update_attribute:[314,3,1,""],do_create_attribute:[314,3,1,""],do_delete_attribute:[314,3,1,""],do_update_attribute:[314,3,1,""],query_all:[314,3,1,""],query_category:[314,3,1,""],query_key:[314,3,1,""]},"evennia.typeclasses.attributes.ModelAttributeBackend":{__init__:[314,3,1,""],do_batch_finish:[314,3,1,""],do_batch_update_attribute:[314,3,1,""],do_create_attribute:[314,3,1,""],do_delete_attribute:[314,3,1,""],do_update_attribute:[314,3,1,""],query_all:[314,3,1,""],query_category:[314,3,1,""],query_key:[314,3,1,""]},"evennia.typeclasses.attributes.NickHandler":{__init__:[314,3,1,""],add:[314,3,1,""],get:[314,3,1,""],has:[314,3,1,""],nickreplace:[314,3,1,""],remove:[314,3,1,""]},"evennia.typeclasses.managers":{TypedObjectManager:[315,1,1,""]},"evennia.typeclasses.managers.TypedObjectManager":{create_tag:[315,3,1,""],dbref:[315,3,1,""],dbref_search:[315,3,1,""],get_alias:[315,3,1,""],get_attribute:[315,3,1,""],get_by_alias:[315,3,1,""],get_by_attribute:[315,3,1,""],get_by_nick:[315,3,1,""],get_by_permission:[315,3,1,""],get_by_tag:[315,3,1,""],get_dbref_range:[315,3,1,""],get_id:[315,3,1,""],get_nick:[315,3,1,""],get_permission:[315,3,1,""],get_tag:[315,3,1,""],get_typeclass_totals:[315,3,1,""],object_totals:[315,3,1,""],typeclass_search:[315,3,1,""]},"evennia.typeclasses.models":{TypedObject:[316,1,1,""]},"evennia.typeclasses.models.TypedObject":{"delete":[316,3,1,""],Meta:[316,1,1,""],__init__:[316,3,1,""],access:[316,3,1,""],aliases:[316,4,1,""],at_idmapper_flush:[316,3,1,""],at_rename:[316,3,1,""],attributes:[316,4,1,""],check_permstring:[316,3,1,""],date_created:[316,3,1,""],db:[316,3,1,""],db_attributes:[316,4,1,""],db_date_created:[316,4,1,""],db_key:[316,4,1,""],db_lock_storage:[316,4,1,""],db_tags:[316,4,1,""],db_typeclass_path:[316,4,1,""],dbid:[316,3,1,""],dbref:[316,3,1,""],get_absolute_url:[316,3,1,""],get_display_name:[316,3,1,""],get_extra_info:[316,3,1,""],get_next_by_db_date_created:[316,3,1,""],get_previous_by_db_date_created:[316,3,1,""],is_typeclass:[316,3,1,""],key:[316,3,1,""],lock_storage:[316,3,1,""],locks:[316,4,1,""],name:[316,3,1,""],nattributes:[316,4,1,""],ndb:[316,3,1,""],objects:[316,4,1,""],path:[316,4,1,""],permissions:[316,4,1,""],set_class_from_typeclass:[316,3,1,""],swap_typeclass:[316,3,1,""],tags:[316,4,1,""],typeclass_path:[316,3,1,""],typename:[316,4,1,""],web_get_admin_url:[316,3,1,""],web_get_create_url:[316,3,1,""],web_get_delete_url:[316,3,1,""],web_get_detail_url:[316,3,1,""],web_get_puppet_url:[316,3,1,""],web_get_update_url:[316,3,1,""]},"evennia.typeclasses.models.TypedObject.Meta":{"abstract":[316,4,1,""],ordering:[316,4,1,""],verbose_name:[316,4,1,""]},"evennia.typeclasses.tags":{AliasHandler:[317,1,1,""],PermissionHandler:[317,1,1,""],Tag:[317,1,1,""],TagHandler:[317,1,1,""]},"evennia.typeclasses.tags.Tag":{DoesNotExist:[317,2,1,""],MultipleObjectsReturned:[317,2,1,""],accountdb_set:[317,4,1,""],channeldb_set:[317,4,1,""],db_category:[317,4,1,""],db_data:[317,4,1,""],db_key:[317,4,1,""],db_model:[317,4,1,""],db_tagtype:[317,4,1,""],helpentry_set:[317,4,1,""],id:[317,4,1,""],msg_set:[317,4,1,""],objectdb_set:[317,4,1,""],objects:[317,4,1,""],scriptdb_set:[317,4,1,""]},"evennia.typeclasses.tags.TagHandler":{__init__:[317,3,1,""],add:[317,3,1,""],all:[317,3,1,""],batch_add:[317,3,1,""],clear:[317,3,1,""],get:[317,3,1,""],remove:[317,3,1,""],reset_cache:[317,3,1,""]},"evennia.utils":{ansi:[319,0,0,"-"],batchprocessors:[320,0,0,"-"],containers:[321,0,0,"-"],create:[322,0,0,"-"],dbserialize:[323,0,0,"-"],eveditor:[324,0,0,"-"],evform:[325,0,0,"-"],evmenu:[326,0,0,"-"],evmore:[327,0,0,"-"],evtable:[328,0,0,"-"],gametime:[329,0,0,"-"],idmapper:[330,0,0,"-"],inlinefuncs:[334,0,0,"-"],logger:[335,0,0,"-"],optionclasses:[336,0,0,"-"],optionhandler:[337,0,0,"-"],picklefield:[338,0,0,"-"],search:[339,0,0,"-"],test_resources:[340,0,0,"-"],text2html:[341,0,0,"-"],utils:[342,0,0,"-"],validatorfuncs:[343,0,0,"-"]},"evennia.utils.ansi":{ANSIMeta:[319,1,1,""],ANSIParser:[319,1,1,""],ANSIString:[319,1,1,""],parse_ansi:[319,5,1,""],raw:[319,5,1,""],strip_ansi:[319,5,1,""],strip_raw_ansi:[319,5,1,""]},"evennia.utils.ansi.ANSIMeta":{__init__:[319,3,1,""]},"evennia.utils.ansi.ANSIParser":{ansi_escapes:[319,4,1,""],ansi_map:[319,4,1,""],ansi_map_dict:[319,4,1,""],ansi_re:[319,4,1,""],ansi_regex:[319,4,1,""],ansi_sub:[319,4,1,""],ansi_xterm256_bright_bg_map:[319,4,1,""],ansi_xterm256_bright_bg_map_dict:[319,4,1,""],brightbg_sub:[319,4,1,""],mxp_re:[319,4,1,""],mxp_sub:[319,4,1,""],parse_ansi:[319,3,1,""],strip_mxp:[319,3,1,""],strip_raw_codes:[319,3,1,""],sub_ansi:[319,3,1,""],sub_brightbg:[319,3,1,""],sub_xterm256:[319,3,1,""],xterm256_bg:[319,4,1,""],xterm256_bg_sub:[319,4,1,""],xterm256_fg:[319,4,1,""],xterm256_fg_sub:[319,4,1,""],xterm256_gbg:[319,4,1,""],xterm256_gbg_sub:[319,4,1,""],xterm256_gfg:[319,4,1,""],xterm256_gfg_sub:[319,4,1,""]},"evennia.utils.ansi.ANSIString":{__init__:[319,3,1,""],capitalize:[319,3,1,""],center:[319,3,1,""],clean:[319,3,1,""],count:[319,3,1,""],decode:[319,3,1,""],encode:[319,3,1,""],endswith:[319,3,1,""],expandtabs:[319,3,1,""],find:[319,3,1,""],format:[319,3,1,""],index:[319,3,1,""],isalnum:[319,3,1,""],isalpha:[319,3,1,""],isdigit:[319,3,1,""],islower:[319,3,1,""],isspace:[319,3,1,""],istitle:[319,3,1,""],isupper:[319,3,1,""],join:[319,3,1,""],ljust:[319,3,1,""],lower:[319,3,1,""],lstrip:[319,3,1,""],partition:[319,3,1,""],raw:[319,3,1,""],re_format:[319,4,1,""],replace:[319,3,1,""],rfind:[319,3,1,""],rindex:[319,3,1,""],rjust:[319,3,1,""],rsplit:[319,3,1,""],rstrip:[319,3,1,""],split:[319,3,1,""],startswith:[319,3,1,""],strip:[319,3,1,""],swapcase:[319,3,1,""],translate:[319,3,1,""],upper:[319,3,1,""]},"evennia.utils.batchprocessors":{BatchCodeProcessor:[320,1,1,""],BatchCommandProcessor:[320,1,1,""],read_batchfile:[320,5,1,""],tb_filename:[320,5,1,""],tb_iter:[320,5,1,""]},"evennia.utils.batchprocessors.BatchCodeProcessor":{code_exec:[320,3,1,""],parse_file:[320,3,1,""]},"evennia.utils.batchprocessors.BatchCommandProcessor":{parse_file:[320,3,1,""]},"evennia.utils.containers":{Container:[321,1,1,""],GlobalScriptContainer:[321,1,1,""],OptionContainer:[321,1,1,""]},"evennia.utils.containers.Container":{__init__:[321,3,1,""],all:[321,3,1,""],get:[321,3,1,""],load_data:[321,3,1,""],storage_modules:[321,4,1,""]},"evennia.utils.containers.GlobalScriptContainer":{__init__:[321,3,1,""],all:[321,3,1,""],get:[321,3,1,""],load_data:[321,3,1,""],start:[321,3,1,""]},"evennia.utils.containers.OptionContainer":{storage_modules:[321,4,1,""]},"evennia.utils.create":{create_account:[322,5,1,""],create_channel:[322,5,1,""],create_help_entry:[322,5,1,""],create_message:[322,5,1,""],create_object:[322,5,1,""],create_script:[322,5,1,""]},"evennia.utils.dbserialize":{dbserialize:[323,5,1,""],dbunserialize:[323,5,1,""],do_pickle:[323,5,1,""],do_unpickle:[323,5,1,""],from_pickle:[323,5,1,""],to_pickle:[323,5,1,""]},"evennia.utils.eveditor":{CmdEditorBase:[324,1,1,""],CmdEditorGroup:[324,1,1,""],CmdLineInput:[324,1,1,""],CmdSaveYesNo:[324,1,1,""],EvEditor:[324,1,1,""],EvEditorCmdSet:[324,1,1,""],SaveYesNoCmdSet:[324,1,1,""]},"evennia.utils.eveditor.CmdEditorBase":{aliases:[324,4,1,""],editor:[324,4,1,""],help_category:[324,4,1,""],help_entry:[324,4,1,""],key:[324,4,1,""],lock_storage:[324,4,1,""],locks:[324,4,1,""],parse:[324,3,1,""],search_index_entry:[324,4,1,""]},"evennia.utils.eveditor.CmdEditorGroup":{aliases:[324,4,1,""],arg_regex:[324,4,1,""],func:[324,3,1,""],help_category:[324,4,1,""],key:[324,4,1,""],lock_storage:[324,4,1,""],search_index_entry:[324,4,1,""]},"evennia.utils.eveditor.CmdLineInput":{aliases:[324,4,1,""],func:[324,3,1,""],help_category:[324,4,1,""],key:[324,4,1,""],lock_storage:[324,4,1,""],search_index_entry:[324,4,1,""]},"evennia.utils.eveditor.CmdSaveYesNo":{aliases:[324,4,1,""],func:[324,3,1,""],help_category:[324,4,1,""],help_cateogory:[324,4,1,""],key:[324,4,1,""],lock_storage:[324,4,1,""],locks:[324,4,1,""],search_index_entry:[324,4,1,""]},"evennia.utils.eveditor.EvEditor":{__init__:[324,3,1,""],decrease_indent:[324,3,1,""],deduce_indent:[324,3,1,""],display_buffer:[324,3,1,""],display_help:[324,3,1,""],get_buffer:[324,3,1,""],increase_indent:[324,3,1,""],load_buffer:[324,3,1,""],quit:[324,3,1,""],save_buffer:[324,3,1,""],swap_autoindent:[324,3,1,""],update_buffer:[324,3,1,""],update_undo:[324,3,1,""]},"evennia.utils.eveditor.EvEditorCmdSet":{at_cmdset_creation:[324,3,1,""],key:[324,4,1,""],mergetype:[324,4,1,""],path:[324,4,1,""]},"evennia.utils.eveditor.SaveYesNoCmdSet":{at_cmdset_creation:[324,3,1,""],key:[324,4,1,""],mergetype:[324,4,1,""],path:[324,4,1,""],priority:[324,4,1,""]},"evennia.utils.evform":{EvForm:[325,1,1,""]},"evennia.utils.evform.EvForm":{__init__:[325,3,1,""],map:[325,3,1,""],reload:[325,3,1,""]},"evennia.utils.evmenu":{CmdEvMenuNode:[326,1,1,""],CmdGetInput:[326,1,1,""],CmdTestMenu:[326,1,1,""],EvMenu:[326,1,1,""],EvMenuCmdSet:[326,1,1,""],EvMenuError:[326,2,1,""],InputCmdSet:[326,1,1,""],get_input:[326,5,1,""],list_node:[326,5,1,""],test_displayinput_node:[326,5,1,""],test_dynamic_node:[326,5,1,""],test_end_node:[326,5,1,""],test_look_node:[326,5,1,""],test_set_node:[326,5,1,""],test_start_node:[326,5,1,""],test_view_node:[326,5,1,""]},"evennia.utils.evmenu.CmdEvMenuNode":{aliases:[326,4,1,""],func:[326,3,1,""],help_category:[326,4,1,""],key:[326,4,1,""],lock_storage:[326,4,1,""],locks:[326,4,1,""],search_index_entry:[326,4,1,""]},"evennia.utils.evmenu.CmdGetInput":{aliases:[326,4,1,""],func:[326,3,1,""],help_category:[326,4,1,""],key:[326,4,1,""],lock_storage:[326,4,1,""],search_index_entry:[326,4,1,""]},"evennia.utils.evmenu.CmdTestMenu":{aliases:[326,4,1,""],func:[326,3,1,""],help_category:[326,4,1,""],key:[326,4,1,""],lock_storage:[326,4,1,""],search_index_entry:[326,4,1,""]},"evennia.utils.evmenu.EvMenu":{"goto":[326,3,1,""],__init__:[326,3,1,""],close_menu:[326,3,1,""],display_helptext:[326,3,1,""],display_nodetext:[326,3,1,""],extract_goto_exec:[326,3,1,""],helptext_formatter:[326,3,1,""],node_border_char:[326,4,1,""],node_formatter:[326,3,1,""],nodetext_formatter:[326,3,1,""],options_formatter:[326,3,1,""],parse_input:[326,3,1,""],print_debug_info:[326,3,1,""],run_exec:[326,3,1,""],run_exec_then_goto:[326,3,1,""]},"evennia.utils.evmenu.EvMenuCmdSet":{at_cmdset_creation:[326,3,1,""],key:[326,4,1,""],mergetype:[326,4,1,""],no_channels:[326,4,1,""],no_exits:[326,4,1,""],no_objs:[326,4,1,""],path:[326,4,1,""],priority:[326,4,1,""]},"evennia.utils.evmenu.InputCmdSet":{at_cmdset_creation:[326,3,1,""],key:[326,4,1,""],mergetype:[326,4,1,""],no_channels:[326,4,1,""],no_exits:[326,4,1,""],no_objs:[326,4,1,""],path:[326,4,1,""],priority:[326,4,1,""]},"evennia.utils.evmore":{CmdMore:[327,1,1,""],CmdMoreLook:[327,1,1,""],CmdSetMore:[327,1,1,""],EvMore:[327,1,1,""],msg:[327,5,1,""],queryset_maxsize:[327,5,1,""]},"evennia.utils.evmore.CmdMore":{aliases:[327,4,1,""],auto_help:[327,4,1,""],func:[327,3,1,""],help_category:[327,4,1,""],key:[327,4,1,""],lock_storage:[327,4,1,""],search_index_entry:[327,4,1,""]},"evennia.utils.evmore.CmdMoreLook":{aliases:[327,4,1,""],auto_help:[327,4,1,""],func:[327,3,1,""],help_category:[327,4,1,""],key:[327,4,1,""],lock_storage:[327,4,1,""],search_index_entry:[327,4,1,""]},"evennia.utils.evmore.CmdSetMore":{at_cmdset_creation:[327,3,1,""],key:[327,4,1,""],path:[327,4,1,""],priority:[327,4,1,""]},"evennia.utils.evmore.EvMore":{__init__:[327,3,1,""],display:[327,3,1,""],format_page:[327,3,1,""],init_evtable:[327,3,1,""],init_f_str:[327,3,1,""],init_iterable:[327,3,1,""],init_queryset:[327,3,1,""],init_str:[327,3,1,""],page_back:[327,3,1,""],page_end:[327,3,1,""],page_next:[327,3,1,""],page_quit:[327,3,1,""],page_top:[327,3,1,""],paginator_index:[327,3,1,""],paginator_slice:[327,3,1,""],start:[327,3,1,""]},"evennia.utils.evtable":{ANSITextWrapper:[328,1,1,""],EvCell:[328,1,1,""],EvColumn:[328,1,1,""],EvTable:[328,1,1,""],fill:[328,5,1,""],wrap:[328,5,1,""]},"evennia.utils.evtable.EvCell":{__init__:[328,3,1,""],get:[328,3,1,""],get_height:[328,3,1,""],get_min_height:[328,3,1,""],get_min_width:[328,3,1,""],get_width:[328,3,1,""],reformat:[328,3,1,""],replace_data:[328,3,1,""]},"evennia.utils.evtable.EvColumn":{__init__:[328,3,1,""],add_rows:[328,3,1,""],reformat:[328,3,1,""],reformat_cell:[328,3,1,""]},"evennia.utils.evtable.EvTable":{__init__:[328,3,1,""],add_column:[328,3,1,""],add_header:[328,3,1,""],add_row:[328,3,1,""],get:[328,3,1,""],reformat:[328,3,1,""],reformat_column:[328,3,1,""]},"evennia.utils.gametime":{TimeScript:[329,1,1,""],game_epoch:[329,5,1,""],gametime:[329,5,1,""],portal_uptime:[329,5,1,""],real_seconds_until:[329,5,1,""],reset_gametime:[329,5,1,""],runtime:[329,5,1,""],schedule:[329,5,1,""],server_epoch:[329,5,1,""],uptime:[329,5,1,""]},"evennia.utils.gametime.TimeScript":{DoesNotExist:[329,2,1,""],MultipleObjectsReturned:[329,2,1,""],at_repeat:[329,3,1,""],at_script_creation:[329,3,1,""],path:[329,4,1,""],typename:[329,4,1,""]},"evennia.utils.idmapper":{manager:[331,0,0,"-"],models:[332,0,0,"-"],tests:[333,0,0,"-"]},"evennia.utils.idmapper.manager":{SharedMemoryManager:[331,1,1,""]},"evennia.utils.idmapper.manager.SharedMemoryManager":{get:[331,3,1,""]},"evennia.utils.idmapper.models":{SharedMemoryModel:[332,1,1,""],SharedMemoryModelBase:[332,1,1,""],WeakSharedMemoryModel:[332,1,1,""],WeakSharedMemoryModelBase:[332,1,1,""],cache_size:[332,5,1,""],conditional_flush:[332,5,1,""],flush_cache:[332,5,1,""],flush_cached_instance:[332,5,1,""],update_cached_instance:[332,5,1,""]},"evennia.utils.idmapper.models.SharedMemoryModel":{"delete":[332,3,1,""],Meta:[332,1,1,""],at_idmapper_flush:[332,3,1,""],cache_instance:[332,3,1,""],flush_cached_instance:[332,3,1,""],flush_from_cache:[332,3,1,""],flush_instance_cache:[332,3,1,""],get_all_cached_instances:[332,3,1,""],get_cached_instance:[332,3,1,""],objects:[332,4,1,""],path:[332,4,1,""],save:[332,3,1,""],typename:[332,4,1,""]},"evennia.utils.idmapper.models.SharedMemoryModel.Meta":{"abstract":[332,4,1,""]},"evennia.utils.idmapper.models.WeakSharedMemoryModel":{Meta:[332,1,1,""],path:[332,4,1,""],typename:[332,4,1,""]},"evennia.utils.idmapper.models.WeakSharedMemoryModel.Meta":{"abstract":[332,4,1,""]},"evennia.utils.idmapper.tests":{Article:[333,1,1,""],Category:[333,1,1,""],RegularArticle:[333,1,1,""],RegularCategory:[333,1,1,""],SharedMemorysTest:[333,1,1,""]},"evennia.utils.idmapper.tests.Article":{DoesNotExist:[333,2,1,""],MultipleObjectsReturned:[333,2,1,""],category2:[333,4,1,""],category2_id:[333,4,1,""],category:[333,4,1,""],category_id:[333,4,1,""],id:[333,4,1,""],name:[333,4,1,""],path:[333,4,1,""],typename:[333,4,1,""]},"evennia.utils.idmapper.tests.Category":{DoesNotExist:[333,2,1,""],MultipleObjectsReturned:[333,2,1,""],article_set:[333,4,1,""],id:[333,4,1,""],name:[333,4,1,""],path:[333,4,1,""],regulararticle_set:[333,4,1,""],typename:[333,4,1,""]},"evennia.utils.idmapper.tests.RegularArticle":{DoesNotExist:[333,2,1,""],MultipleObjectsReturned:[333,2,1,""],category2:[333,4,1,""],category2_id:[333,4,1,""],category:[333,4,1,""],category_id:[333,4,1,""],id:[333,4,1,""],name:[333,4,1,""],objects:[333,4,1,""]},"evennia.utils.idmapper.tests.RegularCategory":{DoesNotExist:[333,2,1,""],MultipleObjectsReturned:[333,2,1,""],article_set:[333,4,1,""],id:[333,4,1,""],name:[333,4,1,""],objects:[333,4,1,""],regulararticle_set:[333,4,1,""]},"evennia.utils.idmapper.tests.SharedMemorysTest":{setUp:[333,3,1,""],testMixedReferences:[333,3,1,""],testObjectDeletion:[333,3,1,""],testRegularReferences:[333,3,1,""],testSharedMemoryReferences:[333,3,1,""]},"evennia.utils.inlinefuncs":{"null":[334,5,1,""],InlinefuncError:[334,2,1,""],NickTemplateInvalid:[334,2,1,""],ParseStack:[334,1,1,""],clr:[334,5,1,""],crop:[334,5,1,""],initialize_nick_templates:[334,5,1,""],nomatch:[334,5,1,""],pad:[334,5,1,""],parse_inlinefunc:[334,5,1,""],parse_nick_template:[334,5,1,""],space:[334,5,1,""]},"evennia.utils.inlinefuncs.ParseStack":{__init__:[334,3,1,""],append:[334,3,1,""]},"evennia.utils.logger":{EvenniaLogFile:[335,1,1,""],PortalLogObserver:[335,1,1,""],ServerLogObserver:[335,1,1,""],WeeklyLogFile:[335,1,1,""],log_dep:[335,5,1,""],log_depmsg:[335,5,1,""],log_err:[335,5,1,""],log_errmsg:[335,5,1,""],log_file:[335,5,1,""],log_info:[335,5,1,""],log_infomsg:[335,5,1,""],log_msg:[335,5,1,""],log_sec:[335,5,1,""],log_secmsg:[335,5,1,""],log_server:[335,5,1,""],log_trace:[335,5,1,""],log_tracemsg:[335,5,1,""],log_warn:[335,5,1,""],log_warnmsg:[335,5,1,""],tail_log_file:[335,5,1,""],timeformat:[335,5,1,""]},"evennia.utils.logger.EvenniaLogFile":{num_lines_to_append:[335,4,1,""],readlines:[335,3,1,""],rotate:[335,3,1,""],seek:[335,3,1,""],settings:[335,4,1,""]},"evennia.utils.logger.PortalLogObserver":{emit:[335,3,1,""],prefix:[335,4,1,""],timeFormat:[335,4,1,""]},"evennia.utils.logger.ServerLogObserver":{prefix:[335,4,1,""]},"evennia.utils.logger.WeeklyLogFile":{__init__:[335,3,1,""],shouldRotate:[335,3,1,""],suffix:[335,3,1,""],write:[335,3,1,""]},"evennia.utils.optionclasses":{BaseOption:[336,1,1,""],Boolean:[336,1,1,""],Color:[336,1,1,""],Datetime:[336,1,1,""],Duration:[336,1,1,""],Email:[336,1,1,""],Future:[336,1,1,""],Lock:[336,1,1,""],PositiveInteger:[336,1,1,""],SignedInteger:[336,1,1,""],Text:[336,1,1,""],Timezone:[336,1,1,""],UnsignedInteger:[336,1,1,""]},"evennia.utils.optionclasses.BaseOption":{"default":[336,3,1,""],__init__:[336,3,1,""],changed:[336,3,1,""],deserialize:[336,3,1,""],display:[336,3,1,""],load:[336,3,1,""],save:[336,3,1,""],serialize:[336,3,1,""],set:[336,3,1,""],validate:[336,3,1,""],value:[336,3,1,""]},"evennia.utils.optionclasses.Boolean":{deserialize:[336,3,1,""],display:[336,3,1,""],serialize:[336,3,1,""],validate:[336,3,1,""]},"evennia.utils.optionclasses.Color":{deserialize:[336,3,1,""],display:[336,3,1,""],validate:[336,3,1,""]},"evennia.utils.optionclasses.Datetime":{deserialize:[336,3,1,""],serialize:[336,3,1,""],validate:[336,3,1,""]},"evennia.utils.optionclasses.Duration":{deserialize:[336,3,1,""],serialize:[336,3,1,""],validate:[336,3,1,""]},"evennia.utils.optionclasses.Email":{deserialize:[336,3,1,""],validate:[336,3,1,""]},"evennia.utils.optionclasses.Future":{validate:[336,3,1,""]},"evennia.utils.optionclasses.Lock":{validate:[336,3,1,""]},"evennia.utils.optionclasses.PositiveInteger":{deserialize:[336,3,1,""],validate:[336,3,1,""]},"evennia.utils.optionclasses.SignedInteger":{deserialize:[336,3,1,""],validate:[336,3,1,""]},"evennia.utils.optionclasses.Text":{deserialize:[336,3,1,""]},"evennia.utils.optionclasses.Timezone":{"default":[336,3,1,""],deserialize:[336,3,1,""],serialize:[336,3,1,""],validate:[336,3,1,""]},"evennia.utils.optionclasses.UnsignedInteger":{deserialize:[336,3,1,""],validate:[336,3,1,""],validator_key:[336,4,1,""]},"evennia.utils.optionhandler":{InMemorySaveHandler:[337,1,1,""],OptionHandler:[337,1,1,""]},"evennia.utils.optionhandler.InMemorySaveHandler":{__init__:[337,3,1,""],add:[337,3,1,""],get:[337,3,1,""]},"evennia.utils.optionhandler.OptionHandler":{__init__:[337,3,1,""],all:[337,3,1,""],get:[337,3,1,""],set:[337,3,1,""]},"evennia.utils.picklefield":{PickledFormField:[338,1,1,""],PickledObject:[338,1,1,""],PickledObjectField:[338,1,1,""],PickledWidget:[338,1,1,""],dbsafe_decode:[338,5,1,""],dbsafe_encode:[338,5,1,""],wrap_conflictual_object:[338,5,1,""]},"evennia.utils.picklefield.PickledFormField":{__init__:[338,3,1,""],clean:[338,3,1,""],default_error_messages:[338,4,1,""],widget:[338,4,1,""]},"evennia.utils.picklefield.PickledObjectField":{__init__:[338,3,1,""],formfield:[338,3,1,""],from_db_value:[338,3,1,""],get_db_prep_lookup:[338,3,1,""],get_db_prep_value:[338,3,1,""],get_default:[338,3,1,""],get_internal_type:[338,3,1,""],pre_save:[338,3,1,""],value_to_string:[338,3,1,""]},"evennia.utils.picklefield.PickledWidget":{media:[338,3,1,""],render:[338,3,1,""],value_from_datadict:[338,3,1,""]},"evennia.utils.search":{search_account:[339,5,1,""],search_account_tag:[339,5,1,""],search_channel:[339,5,1,""],search_channel_tag:[339,5,1,""],search_help_entry:[339,5,1,""],search_message:[339,5,1,""],search_object:[339,5,1,""],search_script:[339,5,1,""],search_script_tag:[339,5,1,""],search_tag:[339,5,1,""]},"evennia.utils.test_resources":{EvenniaTest:[340,1,1,""],LocalEvenniaTest:[340,1,1,""],mockdeferLater:[340,5,1,""],mockdelay:[340,5,1,""],unload_module:[340,5,1,""]},"evennia.utils.test_resources.EvenniaTest":{account_typeclass:[340,4,1,""],character_typeclass:[340,4,1,""],exit_typeclass:[340,4,1,""],object_typeclass:[340,4,1,""],room_typeclass:[340,4,1,""],script_typeclass:[340,4,1,""],setUp:[340,3,1,""],tearDown:[340,3,1,""]},"evennia.utils.test_resources.LocalEvenniaTest":{account_typeclass:[340,4,1,""],character_typeclass:[340,4,1,""],exit_typeclass:[340,4,1,""],object_typeclass:[340,4,1,""],room_typeclass:[340,4,1,""],script_typeclass:[340,4,1,""]},"evennia.utils.text2html":{TextToHTMLparser:[341,1,1,""],parse_html:[341,5,1,""]},"evennia.utils.text2html.TextToHTMLparser":{bg_colormap:[341,4,1,""],bgfgstart:[341,4,1,""],bgfgstop:[341,4,1,""],bgstart:[341,4,1,""],bgstop:[341,4,1,""],blink:[341,4,1,""],colorback:[341,4,1,""],colorcodes:[341,4,1,""],convert_linebreaks:[341,3,1,""],convert_urls:[341,3,1,""],fg_colormap:[341,4,1,""],fgstart:[341,4,1,""],fgstop:[341,4,1,""],hilite:[341,4,1,""],inverse:[341,4,1,""],normal:[341,4,1,""],parse:[341,3,1,""],re_bgfg:[341,4,1,""],re_bgs:[341,4,1,""],re_blink:[341,4,1,""],re_blinking:[341,3,1,""],re_bold:[341,3,1,""],re_color:[341,3,1,""],re_dblspace:[341,4,1,""],re_double_space:[341,3,1,""],re_fgs:[341,4,1,""],re_hilite:[341,4,1,""],re_inverse:[341,4,1,""],re_inversing:[341,3,1,""],re_mxplink:[341,4,1,""],re_normal:[341,4,1,""],re_string:[341,4,1,""],re_uline:[341,4,1,""],re_underline:[341,3,1,""],re_unhilite:[341,4,1,""],re_url:[341,4,1,""],remove_backspaces:[341,3,1,""],remove_bells:[341,3,1,""],sub_dblspace:[341,3,1,""],sub_mxp_links:[341,3,1,""],sub_text:[341,3,1,""],tabstop:[341,4,1,""],underline:[341,4,1,""],unhilite:[341,4,1,""]},"evennia.utils.utils":{LimitedSizeOrderedDict:[342,1,1,""],all_from_module:[342,5,1,""],at_search_result:[342,5,1,""],callables_from_module:[342,5,1,""],calledby:[342,5,1,""],check_evennia_dependencies:[342,5,1,""],class_from_module:[342,5,1,""],columnize:[342,5,1,""],crop:[342,5,1,""],datetime_format:[342,5,1,""],dbid_to_obj:[342,5,1,""],dbref:[342,5,1,""],dbref_to_obj:[342,5,1,""],dedent:[342,5,1,""],deepsize:[342,5,1,""],delay:[342,5,1,""],fill:[342,5,1,""],format_grid:[342,5,1,""],format_table:[342,5,1,""],fuzzy_import_from_module:[342,5,1,""],get_all_typeclasses:[342,5,1,""],get_evennia_pids:[342,5,1,""],get_evennia_version:[342,5,1,""],get_game_dir_path:[342,5,1,""],has_parent:[342,5,1,""],host_os_is:[342,5,1,""],inherits_from:[342,5,1,""],init_new_account:[342,5,1,""],interactive:[342,5,1,""],is_iter:[342,5,1,""],justify:[342,5,1,""],latinify:[342,5,1,""],lazy_property:[342,1,1,""],list_to_string:[342,5,1,""],m_len:[342,5,1,""],make_iter:[342,5,1,""],mod_import:[342,5,1,""],mod_import_from_path:[342,5,1,""],object_from_module:[342,5,1,""],pad:[342,5,1,""],percent:[342,5,1,""],percentile:[342,5,1,""],pypath_to_realpath:[342,5,1,""],random_string_from_module:[342,5,1,""],run_async:[342,5,1,""],server_services:[342,5,1,""],string_from_module:[342,5,1,""],string_partial_matching:[342,5,1,""],string_similarity:[342,5,1,""],string_suggestions:[342,5,1,""],strip_control_sequences:[342,5,1,""],time_format:[342,5,1,""],to_bytes:[342,5,1,""],to_str:[342,5,1,""],uses_database:[342,5,1,""],validate_email_address:[342,5,1,""],variable_from_module:[342,5,1,""],wildcard_to_regexp:[342,5,1,""],wrap:[342,5,1,""]},"evennia.utils.utils.LimitedSizeOrderedDict":{__init__:[342,3,1,""],update:[342,3,1,""]},"evennia.utils.utils.lazy_property":{__init__:[342,3,1,""]},"evennia.utils.validatorfuncs":{"boolean":[343,5,1,""],color:[343,5,1,""],datetime:[343,5,1,""],duration:[343,5,1,""],email:[343,5,1,""],future:[343,5,1,""],lock:[343,5,1,""],positive_integer:[343,5,1,""],signed_integer:[343,5,1,""],text:[343,5,1,""],timezone:[343,5,1,""],unsigned_integer:[343,5,1,""]},"evennia.web":{urls:[345,0,0,"-"],utils:[346,0,0,"-"],webclient:[351,0,0,"-"],website:[354,0,0,"-"]},"evennia.web.utils":{backends:[347,0,0,"-"],general_context:[348,0,0,"-"],middleware:[349,0,0,"-"],tests:[350,0,0,"-"]},"evennia.web.utils.backends":{CaseInsensitiveModelBackend:[347,1,1,""]},"evennia.web.utils.backends.CaseInsensitiveModelBackend":{authenticate:[347,3,1,""]},"evennia.web.utils.general_context":{general_context:[348,5,1,""],set_game_name_and_slogan:[348,5,1,""],set_webclient_settings:[348,5,1,""]},"evennia.web.utils.middleware":{SharedLoginMiddleware:[349,1,1,""]},"evennia.web.utils.middleware.SharedLoginMiddleware":{__init__:[349,3,1,""],make_shared_login:[349,3,1,""]},"evennia.web.utils.tests":{TestGeneralContext:[350,1,1,""]},"evennia.web.utils.tests.TestGeneralContext":{maxDiff:[350,4,1,""],test_general_context:[350,3,1,""],test_set_game_name_and_slogan:[350,3,1,""],test_set_webclient_settings:[350,3,1,""]},"evennia.web.webclient":{urls:[352,0,0,"-"],views:[353,0,0,"-"]},"evennia.web.webclient.views":{webclient:[353,5,1,""]},"evennia.web.website":{forms:[355,0,0,"-"],templatetags:[356,0,0,"-"],tests:[358,0,0,"-"],urls:[359,0,0,"-"],views:[360,0,0,"-"]},"evennia.web.website.forms":{AccountForm:[355,1,1,""],CharacterForm:[355,1,1,""],CharacterUpdateForm:[355,1,1,""],EvenniaForm:[355,1,1,""],ObjectForm:[355,1,1,""]},"evennia.web.website.forms.AccountForm":{Meta:[355,1,1,""],base_fields:[355,4,1,""],declared_fields:[355,4,1,""],media:[355,3,1,""]},"evennia.web.website.forms.AccountForm.Meta":{field_classes:[355,4,1,""],fields:[355,4,1,""],model:[355,4,1,""]},"evennia.web.website.forms.CharacterForm":{Meta:[355,1,1,""],base_fields:[355,4,1,""],declared_fields:[355,4,1,""],media:[355,3,1,""]},"evennia.web.website.forms.CharacterForm.Meta":{fields:[355,4,1,""],labels:[355,4,1,""],model:[355,4,1,""]},"evennia.web.website.forms.CharacterUpdateForm":{base_fields:[355,4,1,""],declared_fields:[355,4,1,""],media:[355,3,1,""]},"evennia.web.website.forms.EvenniaForm":{base_fields:[355,4,1,""],clean:[355,3,1,""],declared_fields:[355,4,1,""],media:[355,3,1,""]},"evennia.web.website.forms.ObjectForm":{Meta:[355,1,1,""],base_fields:[355,4,1,""],declared_fields:[355,4,1,""],media:[355,3,1,""]},"evennia.web.website.forms.ObjectForm.Meta":{fields:[355,4,1,""],labels:[355,4,1,""],model:[355,4,1,""]},"evennia.web.website.templatetags":{addclass:[357,0,0,"-"]},"evennia.web.website.templatetags.addclass":{addclass:[357,5,1,""]},"evennia.web.website.tests":{AdminTest:[358,1,1,""],ChannelDetailTest:[358,1,1,""],ChannelListTest:[358,1,1,""],CharacterCreateView:[358,1,1,""],CharacterDeleteView:[358,1,1,""],CharacterListView:[358,1,1,""],CharacterManageView:[358,1,1,""],CharacterPuppetView:[358,1,1,""],CharacterUpdateView:[358,1,1,""],EvenniaWebTest:[358,1,1,""],IndexTest:[358,1,1,""],LoginTest:[358,1,1,""],LogoutTest:[358,1,1,""],PasswordResetTest:[358,1,1,""],RegisterTest:[358,1,1,""],WebclientTest:[358,1,1,""]},"evennia.web.website.tests.AdminTest":{unauthenticated_response:[358,4,1,""],url_name:[358,4,1,""]},"evennia.web.website.tests.ChannelDetailTest":{get_kwargs:[358,3,1,""],setUp:[358,3,1,""],url_name:[358,4,1,""]},"evennia.web.website.tests.ChannelListTest":{url_name:[358,4,1,""]},"evennia.web.website.tests.CharacterCreateView":{test_valid_access_multisession_0:[358,3,1,""],test_valid_access_multisession_2:[358,3,1,""],unauthenticated_response:[358,4,1,""],url_name:[358,4,1,""]},"evennia.web.website.tests.CharacterDeleteView":{get_kwargs:[358,3,1,""],test_invalid_access:[358,3,1,""],test_valid_access:[358,3,1,""],unauthenticated_response:[358,4,1,""],url_name:[358,4,1,""]},"evennia.web.website.tests.CharacterListView":{unauthenticated_response:[358,4,1,""],url_name:[358,4,1,""]},"evennia.web.website.tests.CharacterManageView":{unauthenticated_response:[358,4,1,""],url_name:[358,4,1,""]},"evennia.web.website.tests.CharacterPuppetView":{get_kwargs:[358,3,1,""],test_invalid_access:[358,3,1,""],unauthenticated_response:[358,4,1,""],url_name:[358,4,1,""]},"evennia.web.website.tests.CharacterUpdateView":{get_kwargs:[358,3,1,""],test_invalid_access:[358,3,1,""],test_valid_access:[358,3,1,""],unauthenticated_response:[358,4,1,""],url_name:[358,4,1,""]},"evennia.web.website.tests.EvenniaWebTest":{account_typeclass:[358,4,1,""],authenticated_response:[358,4,1,""],channel_typeclass:[358,4,1,""],character_typeclass:[358,4,1,""],exit_typeclass:[358,4,1,""],get_kwargs:[358,3,1,""],login:[358,3,1,""],object_typeclass:[358,4,1,""],room_typeclass:[358,4,1,""],script_typeclass:[358,4,1,""],setUp:[358,3,1,""],test_get:[358,3,1,""],test_get_authenticated:[358,3,1,""],test_valid_chars:[358,3,1,""],unauthenticated_response:[358,4,1,""],url_name:[358,4,1,""]},"evennia.web.website.tests.IndexTest":{url_name:[358,4,1,""]},"evennia.web.website.tests.LoginTest":{url_name:[358,4,1,""]},"evennia.web.website.tests.LogoutTest":{url_name:[358,4,1,""]},"evennia.web.website.tests.PasswordResetTest":{unauthenticated_response:[358,4,1,""],url_name:[358,4,1,""]},"evennia.web.website.tests.RegisterTest":{url_name:[358,4,1,""]},"evennia.web.website.tests.WebclientTest":{test_get:[358,3,1,""],test_get_disabled:[358,3,1,""],url_name:[358,4,1,""]},"evennia.web.website.views":{AccountCreateView:[360,1,1,""],AccountMixin:[360,1,1,""],ChannelDetailView:[360,1,1,""],ChannelListView:[360,1,1,""],ChannelMixin:[360,1,1,""],CharacterCreateView:[360,1,1,""],CharacterDeleteView:[360,1,1,""],CharacterDetailView:[360,1,1,""],CharacterListView:[360,1,1,""],CharacterManageView:[360,1,1,""],CharacterMixin:[360,1,1,""],CharacterPuppetView:[360,1,1,""],CharacterUpdateView:[360,1,1,""],EvenniaCreateView:[360,1,1,""],EvenniaDeleteView:[360,1,1,""],EvenniaDetailView:[360,1,1,""],EvenniaIndexView:[360,1,1,""],EvenniaUpdateView:[360,1,1,""],HelpDetailView:[360,1,1,""],HelpListView:[360,1,1,""],HelpMixin:[360,1,1,""],ObjectCreateView:[360,1,1,""],ObjectDeleteView:[360,1,1,""],ObjectDetailView:[360,1,1,""],ObjectUpdateView:[360,1,1,""],TypeclassMixin:[360,1,1,""],admin_wrapper:[360,5,1,""],evennia_admin:[360,5,1,""],to_be_implemented:[360,5,1,""]},"evennia.web.website.views.AccountCreateView":{form_valid:[360,3,1,""],success_url:[360,4,1,""],template_name:[360,4,1,""]},"evennia.web.website.views.AccountMixin":{form_class:[360,4,1,""],model:[360,4,1,""]},"evennia.web.website.views.ChannelDetailView":{attributes:[360,4,1,""],get_context_data:[360,3,1,""],get_object:[360,3,1,""],max_num_lines:[360,4,1,""],template_name:[360,4,1,""]},"evennia.web.website.views.ChannelListView":{get_context_data:[360,3,1,""],max_popular:[360,4,1,""],page_title:[360,4,1,""],paginate_by:[360,4,1,""],template_name:[360,4,1,""]},"evennia.web.website.views.ChannelMixin":{access_type:[360,4,1,""],get_queryset:[360,3,1,""],model:[360,4,1,""],page_title:[360,4,1,""]},"evennia.web.website.views.CharacterCreateView":{form_valid:[360,3,1,""],template_name:[360,4,1,""]},"evennia.web.website.views.CharacterDetailView":{access_type:[360,4,1,""],attributes:[360,4,1,""],get_queryset:[360,3,1,""],template_name:[360,4,1,""]},"evennia.web.website.views.CharacterListView":{access_type:[360,4,1,""],get_queryset:[360,3,1,""],page_title:[360,4,1,""],paginate_by:[360,4,1,""],template_name:[360,4,1,""]},"evennia.web.website.views.CharacterManageView":{page_title:[360,4,1,""],paginate_by:[360,4,1,""],template_name:[360,4,1,""]},"evennia.web.website.views.CharacterMixin":{form_class:[360,4,1,""],get_queryset:[360,3,1,""],model:[360,4,1,""],success_url:[360,4,1,""]},"evennia.web.website.views.CharacterPuppetView":{get_redirect_url:[360,3,1,""]},"evennia.web.website.views.CharacterUpdateView":{form_class:[360,4,1,""],template_name:[360,4,1,""]},"evennia.web.website.views.EvenniaCreateView":{page_title:[360,3,1,""]},"evennia.web.website.views.EvenniaDeleteView":{page_title:[360,3,1,""]},"evennia.web.website.views.EvenniaDetailView":{page_title:[360,3,1,""]},"evennia.web.website.views.EvenniaIndexView":{get_context_data:[360,3,1,""],template_name:[360,4,1,""]},"evennia.web.website.views.EvenniaUpdateView":{page_title:[360,3,1,""]},"evennia.web.website.views.HelpDetailView":{get_context_data:[360,3,1,""],get_object:[360,3,1,""],template_name:[360,4,1,""]},"evennia.web.website.views.HelpListView":{page_title:[360,4,1,""],paginate_by:[360,4,1,""],template_name:[360,4,1,""]},"evennia.web.website.views.HelpMixin":{get_queryset:[360,3,1,""],model:[360,4,1,""],page_title:[360,4,1,""]},"evennia.web.website.views.ObjectCreateView":{model:[360,4,1,""]},"evennia.web.website.views.ObjectDeleteView":{"delete":[360,3,1,""],access_type:[360,4,1,""],model:[360,4,1,""],template_name:[360,4,1,""]},"evennia.web.website.views.ObjectDetailView":{access_type:[360,4,1,""],attributes:[360,4,1,""],get_context_data:[360,3,1,""],get_object:[360,3,1,""],model:[360,4,1,""],template_name:[360,4,1,""]},"evennia.web.website.views.ObjectUpdateView":{access_type:[360,4,1,""],form_valid:[360,3,1,""],get_initial:[360,3,1,""],get_success_url:[360,3,1,""],model:[360,4,1,""]},"evennia.web.website.views.TypeclassMixin":{typeclass:[360,3,1,""]},evennia:{accounts:[142,0,0,"-"],commands:[148,0,0,"-"],comms:[171,0,0,"-"],contrib:[177,0,0,"-"],help:[234,0,0,"-"],locks:[238,0,0,"-"],objects:[241,0,0,"-"],prototypes:[246,0,0,"-"],scripts:[251,0,0,"-"],server:[260,0,0,"-"],set_trace:[140,5,1,""],settings_default:[311,0,0,"-"],typeclasses:[312,0,0,"-"],utils:[318,0,0,"-"],web:[344,0,0,"-"]}},objnames:{"0":["py","module","Python module"],"1":["py","class","Python class"],"2":["py","exception","Python exception"],"3":["py","method","Python method"],"4":["py","attribute","Python attribute"],"5":["py","function","Python function"],"6":["py","data","Python data"]},objtypes:{"0":"py:module","1":"py:class","2":"py:exception","3":"py:method","4":"py:attribute","5":"py:function","6":"py:data"},terms:{"001s":126,"010S":25,"015public":25,"020t":25,"030a":25,"040f":25,"050f":25,"0b16":24,"0d0":55,"0x045a0990":41,"0x852be2c":58,"100m":341,"100mb":89,"101m":341,"102m":341,"103m":341,"104m":341,"105m":341,"106m":341,"107m":341,"108m":341,"109m":341,"10m":66,"110m":341,"111m":341,"112m":341,"113m":341,"114m":341,"115m":341,"116m":341,"117m":341,"118m":341,"119m":341,"120m":341,"121m":341,"122m":341,"123dark":80,"123m":341,"124m":341,"125m":341,"126m":341,"127m":341,"128m":341,"129m":341,"12s":27,"130m":341,"131m":341,"132m":341,"133m":341,"134m":341,"135m":341,"136m":341,"137m":341,"138m":341,"139m":341,"140m":341,"141m":341,"142m":341,"143m":341,"144m":341,"145m":341,"146m":341,"147m":341,"148m":341,"149m":341,"150m":341,"151m":341,"152m":341,"153m":341,"154m":341,"155m":341,"156m":341,"156s":126,"157m":341,"158m":341,"159m":341,"160m":341,"161m":341,"162m":341,"163m":341,"164m":341,"165m":341,"166m":341,"167m":341,"168m":341,"169m":341,"16m":341,"170m":341,"171m":341,"172m":341,"173m":341,"174m":341,"175m":341,"176m":341,"177m":341,"178m":341,"179m":341,"17m":341,"180m":341,"181m":341,"182m":341,"183m":341,"184m":341,"185m":341,"186m":341,"187m":341,"188m":341,"189m":341,"18m":341,"190m":341,"191m":341,"192m":341,"193m":341,"194m":341,"195m":341,"196m":341,"197m":341,"198m":341,"199m":341,"19m":341,"1_7":126,"1d100":[72,184],"1d2":55,"1d6":72,"1gb":89,"1st":61,"200m":341,"201m":341,"2020_01_29":335,"2020_01_29__1":335,"2020_01_29__2":335,"202m":341,"203m":341,"204m":341,"205m":341,"206m":341,"207m":341,"208m":341,"209m":341,"20m":341,"210m":341,"211m":341,"212m":341,"213m":341,"214m":341,"215m":341,"216m":341,"217m":341,"218m":341,"219m":341,"21m":341,"220m":341,"221m":341,"222m":341,"223m":341,"224m":341,"225m":341,"226m":341,"227m":341,"228m":341,"229m":341,"22m":[319,341],"22nd":342,"230m":341,"231m":341,"232m":341,"233m":341,"234m":341,"235m":341,"236m":341,"237m":341,"238m":341,"239m":341,"23m":341,"240m":341,"241m":341,"242m":341,"243m":341,"244m":341,"245m":341,"246m":341,"247m":341,"248m":341,"249m":341,"24m":341,"250m":341,"251m":341,"252m":341,"253m":341,"254m":341,"255m":341,"25m":341,"26m":341,"27m":341,"28gmcp":289,"28m":341,"29m":341,"2d6":[57,184],"2gb":89,"30m":[319,341],"31m":[319,341],"31st":61,"32bit":[24,62],"32m":[319,341],"32nd":57,"33m":[319,341],"34m":[319,341],"35m":[319,341],"36m":[319,341],"37m":[319,341],"38m":341,"39m":341,"3c3ccec30f037be174d3":342,"3d6":184,"3rd":61,"40m":[319,341],"41m":[319,341],"42m":[319,341],"43m":[319,341],"44m":[319,341],"45m":[27,319,341],"46m":[319,341],"47m":[319,341],"48m":341,"49m":341,"4er43233fwefwfw":9,"4th":78,"50m":341,"50mb":89,"51m":341,"52m":341,"53m":341,"54m":341,"550n":25,"551e":25,"552w":25,"553b":25,"554i":25,"555e":25,"55m":341,"56m":341,"57m":341,"58m":341,"59m":341,"5d5":55,"5x5":110,"60m":341,"61m":341,"62m":341,"63m":341,"64m":341,"65m":341,"66m":341,"67m":341,"68m":341,"69m":341,"6d6":55,"70m":341,"71m":341,"72m":341,"73m":341,"74m":341,"75m":341,"76m":341,"77m":341,"78m":341,"79m":341,"80m":341,"81m":341,"82m":341,"83m":341,"84m":341,"85m":341,"86m":341,"87m":341,"88m":341,"89m":341,"8f64fec2670c":89,"90m":341,"90s":343,"91m":341,"92m":341,"93m":341,"94m":341,"95m":341,"96m":341,"97m":341,"98m":341,"99m":341,"\u6d4b\u8bd5":25,"abstract":[46,63,85,118,220,314,315,316,332,336,342],"boolean":[13,33,132,136,153,184,187,240,245,248,257,285,314,319,320,336,343],"break":[10,12,14,30,37,41,53,56,57,60,90,95,102,107,110,113,124,136,140,166,167,201,223,225,274,327,342],"byte":[15,27,93,112,267,274,276,285,293,342],"case":[1,6,8,10,11,12,13,14,15,21,22,25,27,28,29,31,33,34,37,39,40,41,42,43,45,48,50,54,57,58,59,60,61,63,68,73,78,79,80,81,82,85,87,88,90,94,95,99,101,102,104,106,107,108,109,110,112,113,115,118,119,120,122,124,126,127,130,132,136,143,145,150,152,155,158,164,166,167,173,174,175,178,179,181,184,186,187,195,203,205,210,231,236,237,239,240,245,254,256,270,274,278,282,296,303,306,314,315,316,317,319,321,332,339,342,347],"catch":[15,26,27,30,42,57,86,90,96,101,114,117,145,164,231,255,265,270,277,303,304,324,332,335,338,360],"char":[42,55,57,70,72,84,87,104,110,115,116,118,119,132,143,158,164,188,231,245,262,275,288,289,310,319,325,328],"class":[1,2,3,5,6,10,11,12,16,17,20,21,25,26,28,29,30,31,38,39,41,42,43,46,48,49,50,51,54,55,56,57,59,60,61,63,67,70,72,76,80,81,84,85,88,90,96,101,104,108,115,116,117,118,119,120,122,123,131,132,133,134,143,144,145,146,147,148,151,152,153,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,172,173,174,175,176,178,179,180,181,183,184,185,186,187,188,191,192,194,195,196,197,198,199,200,201,202,203,204,205,209,210,211,212,213,214,216,217,218,219,220,222,223,225,226,227,229,230,231,232,233,235,236,237,240,241,242,243,244,245,247,249,250,252,253,254,255,256,257,258,259,261,262,263,265,267,268,271,272,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,296,298,301,303,304,305,306,308,309,310,312,313,314,315,316,317,319,320,321,322,323,324,325,326,327,328,329,331,332,333,334,335,336,337,338,339,340,341,342,347,349,350,355,358,360],"const":232,"default":[0,1,2,3,4,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,27,29,31,32,33,34,35,36,38,39,40,41,44,45,46,48,49,50,52,55,56,57,58,61,62,63,64,65,66,67,68,70,71,74,75,76,80,81,82,84,85,86,87,88,89,90,92,94,95,96,99,100,101,102,103,104,105,106,108,110,111,112,113,115,116,117,118,120,122,123,124,125,126,127,128,130,132,133,134,135,137,138,139,140,141,143,144,145,147,148,149,150,151,152,153,174,176,178,179,180,181,182,183,184,185,186,187,188,189,192,194,195,196,198,199,201,202,204,205,208,209,211,212,213,214,216,217,218,219,220,223,229,231,232,233,234,236,237,238,240,245,249,250,254,255,257,259,263,265,267,269,270,271,275,287,288,289,294,296,297,303,304,305,306,310,311,314,315,316,317,319,321,322,324,326,327,328,331,332,334,335,336,337,338,339,342,343,347,355,360,362],"export":74,"final":[10,23,26,27,29,33,36,38,40,42,57,62,67,68,69,72,75,79,82,84,85,101,102,104,108,113,115,122,124,125,126,132,133,135,136,149,150,158,167,184,214,240,250,302,306,319,321,326,327,334],"float":[48,145,183,193,194,197,248,258,265,277,315,329,338,342],"function":[3,4,5,6,9,10,11,13,14,18,19,20,21,23,25,26,27,29,33,34,37,39,40,42,43,45,47,49,50,51,54,56,57,58,59,60,61,62,63,67,68,72,73,74,76,80,81,82,84,85,87,90,92,95,103,105,106,107,108,109,110,114,117,118,120,121,122,123,124,126,127,132,133,134,136,137,139,140,143,147,150,152,153,155,156,157,158,159,163,164,165,166,168,169,174,175,178,179,180,183,184,186,187,189,193,194,197,198,199,202,204,205,210,211,214,216,217,218,219,220,223,225,226,230,232,233,237,238,239,240,245,248,249,250,255,257,258,259,265,270,274,285,286,291,294,297,304,306,308,316,317,318,319,320,322,323,324,326,327,329,334,335,336,337,341,342,343,348,360],"g\u00e9n\u00e9ral":78,"goto":[84,326],"import":[0,2,3,4,5,6,9,10,11,13,14,15,16,19,20,21,22,25,27,28,29,30,31,33,38,39,41,42,43,44,45,46,47,48,49,50,51,53,54,55,56,57,58,59,60,61,62,63,67,68,70,71,72,73,75,76,79,80,82,83,84,85,88,89,90,92,93,95,96,101,102,103,104,105,106,109,110,111,112,113,114,115,116,117,118,119,120,122,124,125,126,129,131,132,133,134,135,136,137,139,140,152,158,168,173,178,179,180,181,182,183,184,186,187,197,198,199,201,203,204,205,211,212,214,216,217,218,219,220,226,230,231,233,236,240,250,259,265,269,277,278,299,303,306,307,314,316,320,321,324,325,326,327,328,339,340,342,360],"int":[11,25,31,38,48,50,55,57,73,84,90,113,122,124,133,143,145,150,151,153,175,178,181,183,184,187,189,191,193,194,197,199,205,214,216,217,218,219,220,232,245,250,256,257,258,259,262,263,265,269,270,274,275,276,277,279,283,284,285,293,294,296,306,308,310,314,315,319,322,324,325,326,328,329,332,334,335,339,342],"long":[9,10,15,20,22,23,25,26,27,29,33,37,39,42,43,45,48,50,51,54,57,59,61,63,67,70,71,72,77,78,79,80,84,85,86,89,104,107,110,112,114,117,120,124,125,126,128,130,132,134,137,138,155,163,178,185,194,202,212,219,226,232,274,279,294,319,320,327,328,342],"new":[0,2,5,9,11,12,13,14,16,19,20,21,22,23,25,26,27,29,31,33,34,35,36,37,38,39,40,42,43,44,48,49,50,53,54,56,60,61,62,63,64,67,69,70,71,72,74,75,76,77,78,79,80,81,82,83,84,87,88,89,90,91,92,94,95,97,99,100,103,104,105,106,107,108,110,111,115,116,117,120,121,122,123,127,128,130,131,133,134,135,136,137,138,143,144,145,151,152,153,155,156,158,163,166,167,169,170,172,173,174,179,180,181,185,186,187,191,194,196,198,199,200,201,202,203,204,205,211,212,214,216,217,218,219,220,229,230,231,233,237,240,242,244,245,247,249,250,252,254,257,258,259,262,265,274,275,276,277,283,284,285,290,297,305,306,310,314,315,316,317,319,320,322,325,326,328,332,334,335,336,358,360,362],"null":[8,85,313,334],"public":[25,34,40,42,57,64,66,71,89,92,99,102,130,133,163,245,310,328],"return":[3,4,6,10,11,15,20,21,22,25,27,28,29,30,33,36,38,39,40,41,42,43,47,48,49,51,57,59,61,63,67,68,70,72,73,75,76,79,80,81,84,88,90,92,94,95,96,99,101,102,106,107,108,109,110,111,113,115,116,117,118,120,122,124,126,128,132,133,136,137,143,144,145,147,149,150,151,152,153,155,158,165,168,169,173,174,175,176,178,179,181,183,184,186,187,189,191,192,193,194,196,197,198,199,202,203,204,205,209,210,211,214,216,217,218,219,220,222,229,230,231,232,233,235,236,237,239,240,242,244,245,247,248,249,250,255,256,257,259,262,263,265,270,271,274,275,277,278,279,280,282,283,284,285,286,288,289,290,292,293,294,296,297,303,304,306,308,309,310,313,314,315,316,317,319,320,321,322,323,324,326,327,328,329,332,334,335,336,337,338,339,341,342,343,348,355,360],"short":[20,22,29,38,41,45,50,53,56,57,60,61,69,70,82,86,88,94,95,102,109,111,113,122,128,136,139,179,181,194,201,204,205,226,232,250,320,342],"static":[48,57,93,123,134,135,136,138,165,179,191,205,213,310,322,353,360,361,362],"super":[5,22,25,31,39,40,48,56,57,59,61,80,88,95,117,120,122,124,179,181,205],"switch":[0,2,9,10,13,14,16,19,20,23,25,31,33,34,42,45,49,57,64,67,71,75,79,80,81,87,89,97,113,115,120,121,122,124,125,128,130,137,155,156,157,158,163,164,165,166,167,168,173,174,184,186,198,199,201,202,217,254,316,322,343],"th\u00ed":20,"throw":[11,22,42,65,74,108,130,132,152,165,342],"true":[1,2,4,5,10,11,13,20,21,22,25,26,27,29,31,33,34,39,40,48,49,50,53,55,57,61,64,65,66,67,68,71,73,75,79,80,83,84,85,86,89,90,95,97,99,101,104,113,114,115,116,119,120,121,122,124,125,126,132,134,136,137,143,147,149,151,152,153,155,158,163,165,166,169,172,173,174,175,176,178,179,181,182,183,184,187,189,191,194,196,199,202,203,204,205,211,214,216,217,218,219,220,223,225,229,233,235,239,240,242,244,245,247,249,250,252,254,255,256,257,258,259,261,263,265,270,271,274,276,283,288,293,294,304,306,308,310,313,314,315,316,319,322,324,326,327,328,329,332,334,337,338,339,342,343],"try":[0,4,5,6,8,9,10,11,12,13,15,16,20,21,22,23,25,26,27,29,30,38,41,42,43,45,47,48,49,50,53,54,55,56,57,59,60,62,63,64,65,67,68,72,73,74,76,79,80,85,89,90,92,94,95,96,101,102,107,108,109,110,112,117,118,119,120,122,123,125,126,132,133,134,135,136,137,139,143,147,153,158,174,176,178,179,185,195,203,204,205,211,212,216,217,218,219,220,223,226,229,230,231,233,237,245,249,257,262,265,274,289,290,294,308,313,314,316,319,321,322,324,325,338,342],"var":[66,87,136,199,208,289,320],"void":55,"while":[0,9,10,11,13,14,20,22,23,25,28,29,31,33,35,37,40,42,48,49,50,54,55,56,57,61,62,69,74,82,85,89,90,92,94,95,102,107,108,109,110,113,115,117,118,120,121,123,126,128,132,133,135,136,137,143,155,158,166,174,178,187,195,196,202,203,217,220,223,226,229,231,233,245,250,257,289,312,313,316,326,328,342,343,360],AIs:78,AND:[42,72,79,118,158,187,240,314],ARE:76,AWS:[89,99],Adding:[18,32,33,44,52,59,70,81,107,115,123,138,186,362],Age:[187,355],And:[0,4,9,10,11,21,22,25,26,29,33,36,40,41,45,50,56,60,61,68,72,79,85,90,95,110,125,132,136,137,152,181,214,216,217,218,219,220,362],Are:[33,60,78,81],Aye:45,BGs:125,Being:[57,80,121,122],But:[0,6,10,11,13,15,20,21,22,25,26,27,28,29,31,33,37,38,40,41,43,50,53,54,56,58,59,60,61,63,68,71,72,79,81,82,84,85,90,94,95,99,101,103,106,108,110,113,118,124,125,126,132,133,137,151,152,178,226,317,360],DNS:89,DOING:187,DoS:283,Doing:[29,33,42,54,72,133,152,155],For:[0,2,5,6,8,9,12,13,14,16,17,19,20,21,22,23,25,27,29,31,33,36,37,38,40,41,42,45,48,50,52,54,55,56,57,58,61,62,63,68,71,72,75,78,79,80,82,84,85,87,89,90,92,94,95,97,99,101,102,104,108,109,110,112,113,115,120,122,125,126,128,129,130,131,132,133,134,135,137,138,139,152,158,168,173,174,175,176,179,181,184,186,187,188,196,197,199,205,211,213,214,217,229,237,240,250,285,294,314,316,319,323,326,336,338,342,355,360,362],GMs:57,Going:232,Has:[24,216,217,218,219,220],His:[56,188],IDE:[47,105],IDEs:56,IDs:[0,99,132,133,193,314,342],INTO:[42,158,187],IOS:24,IPs:[12,102,208,308],IRE:[87,289],Its:[40,61,68,79,82,85,88,104,188,250,324,326,342],LTS:96,NOT:[11,25,33,42,79,89,102,118,136,158,240,250,257,308,362],Not:[8,24,30,40,53,56,60,73,89,107,111,114,126,130,131,132,136,145,152,166,167,245,262,275,276,277,279,280,281,287,289,292,314,315,336],OBS:[19,42],ONE:102,Obs:126,One:[0,8,12,20,22,25,29,34,36,45,48,50,56,57,59,62,63,68,75,78,79,86,90,93,94,101,104,109,114,116,120,122,125,127,129,130,131,137,140,147,149,178,184,204,214,229,230,249,250,275,303,313,314,315,319,320,327,342],PRs:130,Such:[6,13,28,33,37,42,47,50,56,63,72,126,158,250,319,326],THAT:90,THE:[187,226],THEN:[152,187],THERE:187,TLS:102,That:[0,3,4,9,10,15,21,22,25,26,31,33,38,40,41,45,48,52,54,56,61,63,67,68,72,73,76,90,92,94,95,97,101,104,110,111,114,118,121,124,130,133,135,137,139,178,179,185,214,240,250,306],The:[0,2,4,5,6,7,8,9,12,15,17,20,21,23,24,25,27,28,30,31,33,34,36,37,38,39,41,42,43,44,47,51,52,53,54,55,56,58,59,60,61,62,63,65,67,69,71,72,73,74,75,77,78,79,80,81,83,85,86,87,88,89,90,91,93,94,96,97,99,100,101,102,103,104,105,106,107,109,110,111,112,113,114,117,118,119,120,121,123,124,125,126,127,128,129,130,131,132,133,135,136,137,138,139,143,145,146,147,149,150,151,152,153,155,158,162,163,164,165,166,167,168,169,170,172,173,174,175,176,178,179,181,183,184,185,186,187,188,189,191,192,193,194,196,197,198,199,202,203,204,205,211,212,214,216,217,218,219,220,222,223,225,226,229,230,231,232,233,234,236,237,239,240,244,245,247,248,249,250,253,254,255,256,257,259,262,263,264,265,267,269,270,272,274,275,276,277,278,279,280,281,282,283,284,285,287,288,289,290,292,293,294,296,297,302,303,304,305,306,310,313,314,315,316,317,319,320,321,322,323,324,325,326,327,328,329,330,332,334,335,336,337,338,339,340,342,343,355,360,361,362],Their:[50,72,102,108,113,123,188],Theirs:188,Then:[0,9,15,22,38,40,41,45,55,60,62,66,68,90,92,99,106,126,130,136,186],There:[0,5,8,10,11,13,14,15,19,20,21,22,23,25,26,27,31,33,34,40,45,48,50,54,56,57,59,60,61,63,67,68,71,72,76,78,79,80,84,85,87,88,89,90,92,94,95,96,97,101,102,103,104,106,107,110,111,112,113,115,116,117,118,120,122,124,126,127,132,135,136,137,138,166,186,187,214,216,217,218,219,220,233,250,259,270,289,306,319,320,326,334,361],These:[0,4,5,9,11,13,17,22,25,33,34,35,38,39,42,46,48,50,58,60,64,67,68,72,73,82,85,87,89,90,94,95,99,101,102,104,106,108,109,110,111,113,118,120,121,123,124,126,130,132,136,137,138,142,143,144,149,151,153,155,157,159,167,175,179,183,197,198,202,204,205,209,226,231,236,240,245,249,250,259,264,271,290,293,294,296,305,306,307,314,316,319,323,326,327,328,335,336,337,342],USE:[239,362],Use:[1,2,4,5,8,9,12,13,14,20,22,23,25,31,42,47,50,53,57,59,62,64,68,69,88,89,92,94,95,99,104,108,113,115,121,122,124,126,130,136,143,150,155,156,158,163,164,168,170,178,179,183,185,196,198,199,201,202,203,205,217,218,219,220,225,232,242,244,245,267,271,276,293,294,296,297,300,314,316,319,325,326,328,332,339,342],Used:[33,42,120,138,149,152,158,174,187,201,214,233,244,257,267,285,314,316,327,328,348],Useful:[50,89],Uses:[24,113,158,170,185,208,229,265,314,327,328,332],Using:[18,22,27,42,45,50,52,54,57,59,61,67,79,90,95,114,120,122,138,158,205,217,232,245,285,312,326,362],VCS:36,VHS:187,VPS:89,WILL:[24,90,257],WIS:57,WITH:[23,187],Will:[31,73,109,113,143,183,203,205,245,248,250,263,265,274,275,316,326,328,329,334,337,342],With:[8,11,15,19,23,52,54,56,76,86,99,110,121,122,140,143,179,205,250,319],Yes:[33,137,187,324],__1:335,__2:335,_________________:124,_________________________:50,______________________________:50,________________________________:50,_________________________________:124,______________________________________:326,______________________________________________:50,_______________________________________________:50,____________________________________________________:50,_________________________________________________________:84,__________________________________________________________:84,__all__:[144,235,242],__defaultclasspath__:316,__doc__:[33,42,58,67,153,166,168,169,237,322],__example__:96,__ge__:96,__getitem__:319,__init_:328,__init__:[3,6,11,39,46,48,52,95,96,106,124,151,152,153,173,176,178,179,191,203,205,225,232,240,244,245,255,256,258,259,262,263,265,267,268,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,292,293,294,296,303,304,306,308,309,310,313,314,316,317,319,321,324,325,326,327,328,334,335,336,337,338,342,349],__iter__:11,__multimatch_command:167,__noinput_command:[151,167,179,324,326,327],__nomatch_command:[167,179,231,324,326],__send_to_channel_command:167,__settingsclasspath__:316,__unloggedin_look_command:[170,185,200],_action_thre:50,_action_two:50,_asynctest:291,_attrs_to_sync:305,_attrtyp:314,_cach:316,_cached_cmdset:152,_call_or_get:179,_callback:[27,259],_char_index:319,_character_dbref:180,_check_password:50,_check_usernam:50,_clean_str:319,_cleanup_charact:115,_code_index:319,_copi:[42,158,245],_creation:124,_default:[50,326],_defend:50,_errorcmdset:152,_event:197,_famili:118,_file:335,_flag:249,_footer:33,_format_diff_text_and_opt:250,_get_a_random_goblin_nam:108,_get_db_hold:[304,316],_get_top:68,_getinput:326,_gettabl:270,_http11clientfactori:267,_init_charact:115,_is_fight:29,_is_in_mage_guild:50,_italic_:53,_loadfunc:324,_menutre:[25,50,326],_monitor:270,_monitor_callback:83,_nicklist_cal:145,_oob_at_:332,_option:50,_pending_request:310,_permission_hierarchi:239,_ping_cal:145,_playable_charact:[68,132],_postsav:332,_prefix:205,_quell:239,_quitfunc:324,_raw_str:319,_reactor_stop:[282,303],_recog_obj2recog:205,_recog_obj2regex:205,_recog_ref2recog:205,_regex:205,_repeat:270,_safe_contents_upd:244,_savefunc:324,_saver:[11,323],_saverdict:[11,323],_saverlist:[11,323],_saverset:323,_sdesc:205,_select:50,_sensitive_:347,_session:326,_set:118,_set_attribut:50,_set_nam:50,_some_other_monitor_callback:83,_start_delai:259,_stop_serv:282,_test:149,_validate_fieldnam:57,a2enmod:8,a8oc3d5b:99,a_off:178,aardwolf:87,abbrevi:[42,75,113,158,201,334],abcd:[42,164],abi:59,abid:125,abil:[6,10,20,31,33,51,54,55,56,57,59,72,76,79,89,99,101,107,108,122,126,133,136,137,138,204,205,212,216,217,218,219,220,245,257,265,314],abl:[0,3,4,5,8,11,13,14,19,20,21,22,23,26,27,28,29,31,33,36,40,41,42,46,48,50,51,54,56,57,58,59,60,62,63,68,70,72,74,75,80,84,85,86,88,89,90,92,94,95,99,102,103,105,108,110,111,113,115,120,121,122,129,130,132,133,137,139,152,155,156,158,159,173,176,179,183,189,198,205,211,216,217,218,219,220,226,257,314,316,323,338,342,358],abod:239,abort:[25,27,33,50,51,76,88,143,153,158,174,196,212,245,248,327],about:[0,3,9,10,11,12,13,14,15,16,17,20,21,22,23,24,25,26,30,31,33,36,37,38,40,41,43,44,45,47,50,53,54,56,58,59,60,62,63,67,68,69,70,72,74,75,76,77,78,80,82,84,85,89,90,92,93,94,95,96,99,100,102,103,107,108,109,111,112,113,115,117,118,119,122,123,125,126,130,133,134,135,137,138,143,158,168,173,178,179,181,184,213,218,219,220,225,226,230,231,237,245,265,267,270,279,281,283,292,294,304,306,313,315,317,319,332,334,342,361],abov:[2,4,8,9,10,11,12,13,14,21,23,24,27,28,29,30,31,33,36,37,39,42,43,45,48,49,50,55,56,57,58,59,61,62,63,67,68,73,79,80,83,84,85,89,90,92,94,95,99,101,104,105,108,109,110,111,113,115,117,118,120,122,124,126,130,131,132,134,136,137,139,151,152,158,179,184,187,189,198,199,203,205,212,213,214,216,218,219,220,240,245,270,313,326,337,348],abridg:40,absolut:[27,55,61,78,90,133,181,183,184,188,325,329,342],absorb:73,abspath:342,abstractus:147,abus:[7,102],academi:78,accept:[11,14,22,23,27,31,37,42,50,53,57,58,73,79,87,89,94,95,108,113,114,124,130,132,133,137,143,149,150,168,178,184,187,192,195,203,204,205,212,229,231,239,245,265,270,283,309,310,315,320,326,334,338,342],accept_callback:[192,194],accesing_obj:239,access:[0,4,7,8,11,12,13,14,19,21,22,23,25,27,29,31,33,34,38,39,40,46,48,50,51,55,56,57,58,59,62,63,65,67,68,70,72,73,79,82,83,84,85,86,88,89,90,94,95,99,100,101,102,103,104,106,107,108,110,111,113,115,118,120,122,123,124,125,126,127,130,132,133,134,136,138,143,144,147,151,152,153,155,156,158,163,164,165,166,167,168,173,174,175,176,179,186,189,191,193,202,204,205,216,217,218,219,220,231,232,237,238,239,240,244,245,248,249,250,254,256,258,259,262,265,274,275,304,306,312,313,314,316,317,320,321,322,335,341,342,355,360],access_obj:[239,314],access_opt:343,access_token_kei:[70,119],access_token_secret:[70,119],access_typ:[42,67,143,153,158,174,176,237,239,240,245,314,316,360],accessed_obj:[25,79,120,239,240],accessing_obj:[1,11,25,79,120,143,174,176,237,239,240,245,314,316],accessing_object:[11,239],accessor:[147,176,237,244,254,314,316,317,333],accessori:62,accident:[15,31,42,122,137,156,158,304],accommod:4,accomod:[100,328],accompani:122,accomplish:[12,25,40,48,54],accord:[31,33,110,115,125,179,181,199,203,204,217,258,319,320],accordingli:[48,57,89,105,174,232],account1:358,account2:358,account:[0,4,6,9,11,12,14,17,19,20,21,22,24,25,27,31,33,34,35,37,40,44,46,48,49,50,51,54,55,56,60,61,64,65,68,70,73,79,80,82,86,88,89,90,91,95,99,103,104,106,107,108,109,110,111,113,118,119,122,124,125,126,128,130,132,133,134,137,138,140,141,148,149,150,151,152,153,154,156,158,159,160,163,164,165,166,170,173,174,175,176,179,180,181,183,185,186,187,189,191,192,194,196,198,199,200,205,208,211,216,218,219,220,223,226,229,230,231,233,237,239,240,244,245,247,249,251,254,265,269,270,285,296,297,304,305,306,314,316,319,322,326,327,336,337,339,340,342,343,347,355,358,360,362],account_cal:[155,163,166,198],account_count:306,account_id:[132,245],account_mod:158,account_nam:55,account_search:[205,245],account_subscription_set:147,account_typeclass:[340,358],accountattributeinlin:144,accountcmdset:[2,22,31,40,42,56,57,61,155,159,163,180,198],accountcreateview:360,accountdb:[118,124,132,140,143,144,147,174,237,312,313,316,336,343],accountdb_db_attribut:144,accountdb_db_tag:144,accountdb_set:[314,317],accountdbadmin:144,accountdbchangeform:144,accountdbcreationform:144,accountdbmanag:[146,147],accountdbpasswordcheck:285,accountform:[144,355,360],accountid:132,accountinlin:144,accountlist:57,accountmanag:[143,146],accountmixin:360,accountnam:[42,57,158,170,175,185,322],accounttaginlin:144,accru:143,accur:[22,153,176,191,217,220,250,258,263,265,267,268,276,285,286,288,290,293,294,314,319,334,337,338,349],accuraci:[45,90,217,218,219],accus:72,accustom:[86,123],acept:187,achiev:[0,22,27,33,56,113,123,125,137,219,265],ack:51,acquaint:56,acquir:321,across:[16,20,39,50,55,60,85,90,101,104,107,108,124,143,151,152,181,187,231,236,245,248,257,259,262,274,275,289,306,328],act:[2,8,13,23,29,31,34,37,42,48,50,55,57,60,69,76,94,101,104,109,110,122,138,140,158,176,187,214,239,262,274,275,294,314,317,321,326],action1:115,action2:115,action:[0,11,22,29,38,40,41,42,45,54,56,60,61,63,72,87,89,90,92,101,113,115,116,117,122,132,137,144,145,164,174,178,187,205,216,217,218,219,220,232,236,237,248,249,254,255,277,296,297,298,308,316,332],action_count:115,action_nam:[216,217,218,219,220],actiondict:115,actions_per_turn:[216,217,219,220],activ:[4,9,12,13,26,27,28,31,33,36,42,60,61,62,63,64,65,71,74,75,78,79,80,82,88,89,92,94,97,101,104,109,113,127,130,134,135,137,143,149,152,156,158,168,173,174,192,200,209,226,229,233,244,245,248,257,270,277,278,279,280,281,285,287,288,289,296,306,308,314,315,326,327,328,334,342],activest:341,actor:220,actual:[2,5,8,10,11,13,14,19,20,21,22,26,27,29,34,36,39,40,41,42,43,45,46,48,50,52,57,58,59,60,62,63,67,68,70,72,78,79,80,82,84,85,86,87,88,89,90,92,94,95,96,99,103,104,105,108,110,111,112,113,114,115,118,120,122,125,126,127,132,133,135,136,137,143,149,153,155,158,164,166,167,169,174,176,178,179,181,186,187,196,197,201,202,204,205,212,213,214,216,217,218,219,220,226,230,231,233,237,239,240,244,245,249,250,285,288,294,296,302,304,305,306,310,311,314,316,319,321,322,324,326,332,336,337,338,342,360],actual_return:126,adapt:[0,4,21,39,68,72,132,342],add:[0,2,5,6,8,9,10,11,13,14,15,16,17,19,20,21,22,26,29,30,31,33,34,35,36,37,38,39,40,41,42,43,45,46,47,48,49,50,53,54,56,57,60,61,63,64,65,66,67,68,70,72,73,75,76,77,78,79,80,81,83,84,85,86,87,88,89,90,92,93,94,95,97,99,101,103,104,105,108,110,111,112,113,114,115,116,117,118,119,120,122,123,124,126,127,129,130,131,132,133,134,136,137,138,139,140,143,147,151,152,158,163,164,165,167,173,174,178,179,180,181,182,184,185,186,191,192,194,195,196,197,198,199,200,201,202,204,205,208,211,212,214,216,217,218,219,220,222,223,225,226,229,230,231,232,239,240,244,245,248,250,254,255,256,258,259,265,270,271,275,278,279,281,283,287,294,296,297,299,307,314,317,320,324,325,326,327,328,332,334,335,337,338,360,362],add_:328,add_act:115,add_argu:232,add_callback:[192,194],add_channel:173,add_charact:115,add_choic:179,add_choice_:179,add_choice_edit:[22,179],add_choice_quit:[22,179],add_collumn:153,add_column:[57,328],add_condit:218,add_default:[21,31,84,95,120,152,223],add_dist:220,add_ev:194,add_fieldset:[144,242],add_form:[144,242],add_head:328,add_languag:204,add_row:[57,81,153,328],add_view:[144,172,242],add_xp:72,addblindedcmdset:226,addcallback:[33,245],addclass:[136,344,354,356],addcom:[57,163],added:[0,4,5,17,21,22,24,25,27,31,33,34,36,39,40,41,42,54,56,57,59,64,68,69,72,74,76,77,79,85,87,90,95,99,101,105,107,108,109,110,111,113,115,116,118,120,122,127,130,131,132,137,143,149,151,152,153,167,168,178,179,181,182,184,188,191,194,197,205,216,217,218,219,220,223,233,240,245,250,256,270,304,314,317,320,326,328,334,335,342,348],addendum:37,adding:[0,3,5,9,14,17,21,22,27,29,31,35,36,39,42,45,50,56,57,61,68,75,79,80,85,90,96,101,103,105,107,108,111,113,114,115,120,122,124,125,127,130,132,136,137,138,151,152,156,158,165,179,183,187,189,191,194,198,204,205,214,216,217,218,219,226,231,232,248,249,250,256,265,296,313,314,322,328,342],addingservermxp:280,addit:[4,8,22,25,31,36,37,45,48,49,57,61,68,75,81,87,89,90,102,103,113,118,133,143,145,152,153,174,179,182,191,192,194,196,199,204,208,214,220,232,240,245,258,276,304,314,316,355],addition:[25,110,118,220],additionalcmdset:31,addpart:202,addquot:342,addr:[262,275,276,277,322],address:[3,9,12,23,33,39,42,48,66,86,89,90,102,104,130,134,143,156,174,185,188,245,262,275,277,285,305,308,342,343,361],address_and_port:285,addresult:202,addscript:[42,158],addservic:39,adjac:[199,220,229],adject:96,adjoin:205,adjust:[0,33,37,62,125,132,189,326,328],admin:[2,9,11,12,15,19,21,33,34,40,48,57,60,67,68,71,79,84,85,97,100,109,118,120,122,132,133,137,140,141,142,147,148,154,158,163,165,168,170,171,174,185,229,234,237,240,241,244,245,251,260,274,275,312,316,322,338,360,361],admin_sit:[144,172,235,242,252,261,313],admin_wrapp:360,administr:[10,23,33,36,40,54,57,62,63,67,79,102,128,138,262,274,275,362],adminportal2serv:274,adminserver2port:274,adminstr:262,admintest:358,admit:38,adopt:[21,22,26,56,63,176,289],advanc:[10,12,13,22,28,31,33,38,39,42,43,50,54,57,63,78,85,92,103,104,107,108,110,118,122,123,124,138,158,166,186,199,203,205,216,217,218,219,220,225,280,320,324,325,328,362],advantag:[3,14,15,28,36,38,45,50,54,55,57,58,61,67,68,72,89,102,103,108,115,117,122,132,178,179,208,214,216,217,218,219,220,317,320],advent:180,adventur:[20,40,76,110,121,123],advic:78,advis:[0,22,25,76],aeioui:118,aesthet:49,affair:321,affect:[11,13,14,19,25,31,33,42,60,61,72,79,80,104,111,113,115,125,126,127,130,137,140,141,143,151,168,182,197,204,211,218,238,245,249,316,320,328,336],afford:[84,104],afraid:89,after:[0,5,8,9,10,11,14,15,20,21,22,25,27,28,29,30,31,33,36,38,40,42,43,45,48,49,50,54,57,59,62,67,75,76,78,79,82,84,85,89,90,95,99,101,102,106,113,115,116,120,121,122,125,126,127,129,130,132,135,136,137,138,143,151,152,153,154,155,158,166,168,169,173,174,178,179,181,183,184,185,186,187,189,194,196,202,204,205,214,216,217,218,219,220,226,227,229,230,231,232,233,244,245,248,250,255,257,265,287,288,291,303,304,305,306,308,310,314,319,320,321,324,326,327,332,334,337,340,341,342,360],after_mov:245,afternoon:186,afterthought:47,afterward:[20,29,68,85,90,118,130,179],again:[0,6,12,13,14,20,21,22,23,24,28,29,33,38,40,41,42,46,47,48,50,53,55,56,57,59,60,61,62,63,68,72,75,79,80,84,85,89,90,92,94,95,97,99,101,104,105,109,110,113,115,118,120,122,125,127,130,132,137,145,152,163,183,194,203,216,219,220,225,226,233,257,265,282,285,288,308,319,320,323,338,340],against:[6,11,21,31,33,37,56,57,82,89,102,115,118,124,126,143,150,151,173,205,216,217,218,219,220,240,245,249,250,283,308,314,316,334,339,342],age:[187,232,355],agenc:102,agent:36,agenta:113,ages:187,aggreg:78,aggress:[11,14,74,121,123,138,229,316,362],aggressive_pac:229,agi:[11,59,126],agil:[11,59],agnost:[37,63,174],ago:[25,99,342],agre:[1,72,112,178],agree:178,ahead:[14,22,24,36,48,60,89,107,120,287],aid:[112,165,166,167,178,310],aim:[7,54,57,60,72,84,85,89,94,107,125,175,249],ain:45,ainnev:[72,118],air:[20,21,110],ajax:[24,39,54,89,136,294,305],ajaxwebcli:294,ajaxwebclientsess:294,aka:[9,11,92,202,342],alarm:[20,81],alert:[136,196,245],alexandrian:78,algebra:48,algorith:204,algorithm:342,alia:[2,6,9,20,21,22,31,33,40,43,47,56,57,58,59,62,86,88,89,94,104,110,111,118,124,126,128,130,144,147,150,153,155,158,163,164,165,166,167,169,172,173,186,191,205,211,227,229,231,233,235,239,242,244,245,248,250,252,254,259,270,296,313,315,316,317,322,338,339,340,355,360],alias1:[42,158,186],alias2:[42,158,186],alias3:186,alias:[2,13,20,21,22,25,27,29,31,33,34,40,42,43,44,47,50,57,59,73,80,81,84,86,88,108,110,115,118,122,128,130,139,143,151,153,155,156,157,158,163,164,165,166,167,168,169,170,173,174,175,178,179,180,181,184,185,186,187,188,192,198,199,200,201,202,205,211,212,213,214,216,217,218,219,220,223,229,230,231,232,233,236,237,244,245,250,315,316,317,322,324,326,327,335,339],aliaschan:[42,163],aliasdb:143,aliashandl:[313,317],aliasnam:250,aliasstr:322,align:[40,57,108,113,189,319,327,328,334,342],alik:67,alist:96,aliv:[54,229],alkarouri:341,all:[0,1,2,3,5,6,8,9,10,11,12,13,14,15,16,17,19,20,21,22,23,26,27,28,29,30,31,33,34,35,36,37,38,39,40,42,43,45,46,47,48,49,50,53,54,55,56,57,58,59,60,61,62,63,67,69,71,72,73,74,75,76,77,78,79,80,81,82,84,85,86,87,88,89,90,92,93,94,95,96,97,99,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,120,121,122,123,124,125,126,127,128,130,131,132,133,134,135,136,137,138,139,143,144,145,148,149,150,151,152,153,154,155,156,157,158,159,160,163,164,165,166,167,168,169,170,173,174,175,176,178,179,180,181,184,185,186,187,188,191,194,196,198,200,201,202,203,204,205,209,211,212,213,214,216,217,218,219,220,223,225,226,229,230,231,232,233,235,236,237,238,239,240,241,242,244,245,249,250,255,256,257,259,260,264,265,269,270,271,274,276,277,279,281,282,283,284,285,288,289,292,293,294,296,297,303,304,305,306,308,310,311,312,313,314,315,316,317,319,320,321,322,323,324,325,326,327,328,332,334,335,337,339,341,342,343,348,355,360,361],all_alias:111,all_attr:316,all_connected_account:306,all_displai:259,all_famili:118,all_from_modul:342,all_opt:337,all_receiv:245,all_room:13,all_script:101,all_sessions_portal_sync:306,all_to_categori:236,allcom:163,allerror:[265,274],allevi:[11,107,126,310],allheadersreceiv:310,alli:220,alloc:89,allow:[0,2,3,4,6,8,9,10,11,12,13,14,15,16,19,21,22,23,26,27,29,30,31,33,34,36,38,40,41,42,43,45,46,48,50,53,54,56,57,58,60,62,63,64,67,70,71,72,73,74,75,77,79,80,84,85,86,88,89,90,91,94,95,96,97,99,100,101,102,103,105,107,108,110,111,112,113,115,118,120,122,124,125,128,130,132,133,134,136,137,143,145,147,149,151,152,153,155,156,157,158,163,166,167,168,169,174,175,176,178,179,181,183,184,186,187,188,194,196,199,201,203,204,205,214,216,217,218,219,220,229,230,231,232,233,237,239,240,245,248,249,250,255,257,258,259,265,269,270,272,276,278,279,280,281,288,289,290,292,297,303,304,306,308,309,314,316,317,319,320,322,324,326,327,328,329,332,336,337,338,340,342,355,360],allow_dupl:151,allow_nan:294,allow_quit:326,allowed_attr:57,allowed_fieldnam:57,allowed_host:[89,102],allowed_propnam:122,allowedmethod:294,allowext:310,almost:[19,33,40,94,114,118,124,179,181,267,274,312],alon:[13,29,48,50,55,57,72,79,85,86,115,126,137,259,270,296,320,322,328],alone_suffix:301,along:[5,12,33,42,47,50,59,63,69,73,77,87,90,92,95,103,106,113,120,121,138,143,155,178,184,204,208,214,219,240,245,294,312],alongsid:[5,187],alonw:254,alpha:[53,89,319],alphabet:[15,110,112,319,361],alreadi:[0,2,5,6,9,11,13,15,21,22,25,27,29,31,33,34,39,40,42,45,48,49,50,53,55,56,57,59,60,62,63,67,68,69,71,72,76,79,80,81,84,87,88,90,93,94,95,99,101,102,104,105,109,111,115,116,117,118,119,120,122,124,126,127,130,132,133,134,135,136,137,138,151,152,155,158,163,166,167,168,173,174,175,178,180,181,203,204,205,216,217,218,219,220,226,229,230,233,240,245,250,257,265,274,282,283,285,290,293,298,303,304,306,317,319,322,327,342,347],alredi:39,alright:178,also:[0,1,2,3,5,6,8,9,10,11,12,13,14,15,16,17,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,45,46,47,48,49,50,52,53,54,55,56,57,58,59,60,61,62,63,64,65,67,68,69,71,72,73,74,76,78,79,80,81,82,83,84,85,86,87,88,89,90,92,94,95,96,97,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,139,143,147,150,151,152,153,155,156,157,158,160,164,166,168,169,173,174,175,176,178,179,180,181,184,186,187,189,194,198,199,201,203,204,205,212,214,218,219,220,225,229,230,231,233,238,239,240,244,245,248,249,250,251,254,257,258,259,260,265,269,270,274,276,283,285,288,289,292,293,296,297,306,310,312,314,315,316,317,318,319,320,321,322,323,324,325,326,327,328,329,332,334,339,342,344,360,361],alt:319,alter:[0,4,23,40,63,110,136,314],altern:[23,29,33,34,50,54,56,62,63,67,71,75,80,86,89,110,111,113,117,118,121,130,132,136,137,139,166,167,174,202,205,220,223,239,240,283,322,334,342],although:[22,29,38,41,62,118,155,179,180,184,310,338,342],althougn:45,altogeth:[49,102,113],alwai:[0,2,4,6,8,11,12,13,14,20,21,23,25,27,30,31,33,34,37,38,42,46,48,50,52,56,57,60,61,62,63,68,71,72,73,76,79,84,85,87,88,89,90,94,95,101,104,106,108,111,113,114,120,122,124,125,126,127,130,133,134,136,143,151,152,153,155,157,158,163,166,169,174,175,176,198,204,205,211,223,226,239,240,244,245,248,249,250,257,259,265,267,270,274,282,285,288,289,293,294,297,304,306,311,314,315,316,317,319,322,327,332,334,338,339,342,343,360],always_pag:327,always_return:265,amaz:74,amazon:[78,89],ambianc:107,ambigu:[40,153,173,188,245,316],ambiti:[107,128],amend:130,amfl:14,ammo:21,among:[2,35,36,42,61,63,78,88,103,110,122,126,164,181,223,230,240,328,339],amongst:[76,199],amor:195,amount:[11,16,37,42,60,67,72,101,102,113,122,168,216,217,218,219,220,245,306,324],amp:[39,82,91,93,104,140,260,262,265,273,275,283,291,303,306],amp_client:[140,141,260],amp_maxlen:291,amp_port:89,amp_serv:[140,260,273],ampclientfactori:262,ampersand:107,amphack:274,ampl:123,amplauncherprotocol:265,ampmulticonnectionprotocol:[262,274,275],ampprotocol:262,ampserverclientprotocol:262,ampserverfactori:275,ampserverprotocol:275,amsterdam:89,anaconda:9,analog:[48,82],analys:50,analysi:209,analyz:[15,33,40,50,79,117,149,174,205,249,250,255,265,342],anchor:[174,220,237,316],anchor_obj:220,ancient:113,andr:24,android:[138,362],anew:[62,110,265],angl:128,angri:40,angular:[42,168],ani:[0,1,2,5,6,8,10,11,12,14,15,16,19,20,21,22,23,24,25,27,30,31,33,34,36,37,38,39,40,41,42,43,47,48,49,50,53,55,56,57,58,59,60,62,63,64,67,69,71,72,73,75,76,78,79,80,81,82,83,84,85,86,87,88,89,90,94,95,96,97,99,101,102,103,104,106,108,111,113,114,115,116,117,118,120,121,122,124,125,126,127,128,130,132,133,134,135,136,137,138,139,143,147,149,150,151,152,153,155,156,158,164,168,169,174,175,176,178,179,180,181,185,186,187,188,189,193,198,201,203,204,205,208,209,212,216,217,218,219,220,222,223,229,231,232,233,239,240,245,248,249,250,254,255,257,258,259,262,263,265,267,269,270,274,275,277,283,284,285,288,293,294,296,304,305,306,314,315,316,317,319,320,321,323,324,325,326,327,328,334,335,336,337,338,339,341,342,360],anim:[27,51],anna:[42,57,62,71,116,117,122,158],annoi:[12,84,90],annot:78,announc:[25,37,42,78,115,122,127,156,168,196,216,217,218,219,220,245],announce_al:[283,306],announce_move_from:[25,76,88,196,245],announce_move_to:[25,76,88,196,245],annoy:143,anonym:[4,65,68,205],anonymous_add:205,anoth:[0,8,10,11,13,14,16,21,22,29,31,33,36,38,41,42,45,48,50,55,56,57,61,62,63,68,76,77,79,88,89,90,95,96,97,101,104,105,107,108,110,111,112,113,115,120,122,126,130,131,135,136,137,138,139,143,151,152,155,158,163,164,174,178,179,181,187,193,198,203,205,214,216,217,218,219,220,230,233,237,245,248,306,314,316,320,324,326,327,334,342],another_batch_fil:320,another_nod:326,another_script:101,ansi:[24,42,54,73,80,136,140,141,155,182,189,201,270,277,285,288,293,294,318,328,334,341,362],ansi_escap:319,ansi_map:319,ansi_map_dict:319,ansi_pars:319,ansi_r:319,ansi_regex:319,ansi_sub:319,ansi_xterm256_bright_bg_map:319,ansi_xterm256_bright_bg_map_dict:319,ansimatch:319,ansimeta:319,ansipars:319,ansistr:[140,319,328],ansitextwrapp:328,answer:[0,11,21,25,26,33,45,50,60,62,68,69,72,94,95,102,126,263,269],anul:8,anwer:43,anybodi:[58,102],anymor:[4,180,194,202,203,233,326,338],anyon:[1,4,12,21,25,29,40,41,53,57,59,75,79,84,89,115,117,118,122,137],anyth:[0,1,5,11,13,16,19,20,22,23,26,29,31,33,34,39,40,41,45,48,50,55,60,62,63,68,79,81,82,84,86,88,89,90,93,94,95,99,101,103,105,110,115,117,120,122,124,126,127,130,132,134,135,136,137,151,153,167,179,205,214,216,217,218,219,220,240,277,311,314,320,326],anywai:[0,4,14,20,50,54,74,75,90,94,107,113,139,178,180,185],anywher:[33,50,59,63,94,95,124,133,324],apach:[7,23,89,102,138,310,362],apache2:8,apache_wsgi:8,apart:[2,11,20,27,34,46,54,62,79,80,99,103,124,125,126,133,220],api:[13,15,26,27,34,41,42,46,47,51,58,59,70,72,88,95,104,108,110,119,124,132,137,138,140,143,157,168,170,176,185,304,314,316,320,321,361,362],api_kei:70,api_secret:70,apostroph:15,app:[4,39,70,79,85,133,134,135,137,138],app_id:132,app_nam:68,appar:[47,57,125],apparit:231,appeal:[50,60,113],appear:[9,10,21,22,25,26,27,30,42,46,47,50,59,62,64,65,67,71,79,81,89,94,95,99,101,103,105,110,113,122,125,130,136,137,140,155,165,181,194,205,211,233,245,289,290,313,316,328,334,335],append:[20,22,25,27,31,38,39,42,48,49,52,67,68,79,84,87,88,89,90,92,95,96,115,122,126,132,137,153,158,165,181,198,205,240,298,320,334,335,342],appendix:239,appendto:136,appform:132,appl:[178,245],appli:[0,8,9,13,16,22,23,31,33,36,37,59,79,80,101,105,110,114,120,124,125,127,132,143,149,151,166,182,216,217,218,219,220,233,240,245,249,250,254,259,306,314,315,316,319,320,325,328,329,339,342],applic:[8,39,52,62,78,79,85,93,99,102,111,123,127,132,133,134,135,143,186,187,220,265,268,278,282,289,303,304,310,352,360],applicationdatareceiv:288,applied_d:132,apply_damag:[216,217,218,219,220],apply_turn_condit:218,appnam:[11,79],appreci:[22,37,69,77,332],approach:[22,25,38,55,76,90,105,114,132,179,220],appropri:[8,9,23,31,33,36,54,70,90,105,118,120,128,132,137,143,156,174,189,265,304,336,338,342],approrpri:39,approv:[132,133,137],approxim:[5,42,168,342],april:61,apt:[8,62,66,74,89,102,130],arbitr:60,arbitrari:[11,13,19,27,45,58,63,79,95,96,99,110,124,136,137,138,139,143,174,186,214,220,245,250,257,263,274,294,314,323,334,335,338],arcan:128,archer:250,architectur:[79,250],archiv:[78,102],archwizard:250,area:[2,22,24,47,48,57,60,78,116,121,126,137,229,233,239,325,328,342],aren:[0,4,29,38,68,102,126,130,132,135,137,143,181,187,194,202,218,335,338],arg1:[79,153,166,167,169,248,314,334],arg2:[153,166,167,169,248,314,334],arg:[1,5,10,21,22,25,29,30,33,38,39,40,41,42,50,57,58,67,70,72,73,79,80,82,84,87,95,108,113,114,115,118,120,122,128,131,136,143,144,145,146,147,149,150,153,158,166,167,169,174,175,176,178,181,183,186,188,191,194,196,202,203,204,205,211,212,213,214,216,217,218,219,220,222,225,226,229,230,231,232,233,236,237,239,240,243,244,245,248,249,250,253,254,257,258,259,262,270,271,272,274,275,276,277,282,283,285,286,288,289,290,293,294,298,304,306,310,313,314,315,316,317,319,326,328,329,331,332,334,335,338,340,342,343,355,360],arg_regex:[40,43,153,158,164,165,169,170,173,181,200,324],arglist:[166,167],argpars:232,argu:11,argument:[3,4,5,10,12,14,20,21,22,23,25,27,29,31,33,34,39,40,41,42,45,47,49,51,56,57,58,61,66,68,73,79,80,82,84,86,87,88,92,94,95,101,108,110,113,114,118,122,123,124,126,128,133,138,143,145,149,150,152,153,155,156,158,163,164,165,166,167,168,169,174,175,179,181,183,186,187,188,191,193,194,196,199,203,204,205,209,211,216,217,218,219,220,231,232,240,245,248,249,250,255,257,258,259,263,265,270,274,275,276,277,283,284,285,288,289,293,294,296,297,304,305,306,308,309,314,315,316,319,320,322,324,325,326,327,328,332,334,336,338,339,342,360,362],argumentpars:232,argumnet:328,aribtrarili:342,aris:102,arm:[26,33,202],armi:84,armor:[29,81,181,217],armour:29,armouri:76,armpuzzl:202,armscii:[15,112],arnold:86,around:[0,4,10,13,14,15,21,23,29,31,34,38,41,42,48,54,57,60,62,63,68,69,70,72,76,78,79,84,88,89,90,95,108,110,112,113,115,116,118,120,122,128,135,137,138,158,166,167,181,183,193,202,205,220,223,229,230,231,233,245,319,320,328,335],arrai:[87,90,289,342],arrang:22,array_of_known_message_types_to_assign:136,array_of_split_percentag:136,arrayclos:[87,289],arrayopen:[87,289],arriv:[0,25,29,42,72,76,82,104,158,277],arrow:[41,136],art:[113,325],articl:[4,15,21,38,40,47,56,60,78,112,126,130,333],article_set:333,artifact:328,artifici:72,arx:78,arxcod:[138,362],as_view:[174,237,316],ascii:[9,15,110,112,143,199,325,328,342],asciiusernamevalid:143,asdf:158,ashlei:[181,187,189,214,216,217,218,219,220],asid:[9,226],ask:[1,10,21,23,26,34,37,41,42,45,47,49,53,57,62,67,68,69,72,83,89,90,92,96,118,123,130,132,151,153,158,178,183,192,200,203,232,263,265,292,326,329,342],ask_choic:263,ask_continu:263,ask_input:263,ask_nod:263,ask_yesno:263,asn:208,aspect:[47,50,56,59,63,67,72,85,108,126,189],assert:[115,126],assertequ:126,asserttru:126,asset:[102,135,269],assetown:9,assign:[2,6,11,12,13,20,36,42,50,55,57,79,86,88,96,101,108,111,114,115,118,120,122,130,136,137,143,149,150,152,158,165,166,167,169,182,186,187,205,216,217,218,219,220,231,240,244,245,249,250,270,277,283,285,288,304,323],assist:89,associ:[4,11,29,42,50,78,82,89,104,121,134,137,143,148,158,174,191,194,205,245,304,306,315,360],assort:360,assum:[0,3,5,9,12,13,14,15,19,20,21,22,25,27,28,29,31,33,34,37,38,39,40,42,43,45,46,48,50,54,55,57,59,61,67,72,73,74,79,80,81,83,84,88,89,94,95,96,99,101,102,104,105,107,108,109,110,112,114,115,116,117,119,120,122,127,131,132,133,137,149,152,153,155,158,169,174,179,180,205,212,230,231,239,245,250,255,257,289,306,319,320,326,327,342,347,360],assumpt:150,assur:[48,124],asterisk:[2,12,42,156],astronaut:76,astronom:61,async:[132,138,342,362],asynccommand:10,asynchron:[27,28,29,33,44,54,63,91,92,138,145,245,274,275,289,335,342],at_:[124,332],at_access:[143,245],at_account_cr:[2,143],at_after_mov:[76,88,95,116,196,245],at_after_object_leav:233,at_after_travers:[88,196,230,245],at_befor:245,at_before_drop:[217,220,245],at_before_g:[217,220,245],at_before_get:[220,245],at_before_leav:88,at_before_mov:[25,76,88,196,216,217,218,219,220,245],at_before_sai:[95,196,205,245],at_channel_cr:174,at_char_ent:116,at_cmdset_cr:[5,21,22,25,30,31,33,40,43,56,57,61,80,84,115,120,122,151,159,160,161,162,178,179,180,181,184,186,198,200,201,202,205,213,216,217,218,219,220,223,229,230,231,324,326,327],at_cmdset_get:[143,245,304],at_db_location_postsav:244,at_defeat:[216,217,218,219,220],at_desc:245,at_disconnect:[143,304],at_drop:[196,217,220,245],at_end:254,at_err:[10,342],at_err_funct:10,at_err_kwarg:[10,342],at_failed_login:143,at_failed_travers:[88,196,211,230,245],at_first_login:143,at_first_sav:[143,174,245],at_first_start:316,at_get:[181,196,220,245],at_giv:[217,220,245],at_heard_sai:117,at_hit:229,at_idmapper_flush:[257,316,332],at_init:[6,106,124,143,174,229,230,231,245],at_initial_setup:[103,269],at_initial_setup_hook_modul:269,at_login:[39,124,276,277,285,288,293,294,304],at_look:[95,143,245],at_message_rec:143,at_message_send:143,at_msg_rec:[143,188,245],at_msg_send:[143,145,188,245],at_new_arriv:229,at_now_add:85,at_object_cr:[5,6,21,25,31,38,42,57,59,72,79,80,84,88,95,120,122,124,131,158,186,188,205,211,213,216,217,218,219,220,225,229,230,231,245,316],at_object_delet:[196,245],at_object_leav:[231,233,245],at_object_post_copi:245,at_object_rec:[88,116,231,233,245],at_password_chang:143,at_post_cmd:[30,33,149,153,166,169],at_post_command:33,at_post_disconnect:143,at_post_login:[25,143],at_post_portal_sync:303,at_post_puppet:[95,196,245],at_post_unpuppet:[95,245],at_pre_cmd:[33,149,153,166,169],at_pre_command:33,at_pre_login:143,at_pre_puppet:[95,245],at_pre_unpuppet:[196,245],at_prepare_room:233,at_reload:[42,168,303],at_renam:316,at_repeat:[101,115,119,120,124,145,178,183,194,216,217,218,219,220,222,226,257,298,329],at_return:[10,342],at_return_funct:10,at_return_kwarg:[10,342],at_sai:[117,196,245],at_script_cr:[101,115,119,120,145,178,183,194,203,204,216,217,218,219,220,222,226,233,249,257,298,329],at_search_result:[167,342],at_server_cold_start:303,at_server_cold_stop:303,at_server_connect:283,at_server_reload:[101,109,143,145,245,257],at_server_reload_start:303,at_server_reload_stop:[25,303],at_server_shutdown:[101,109,143,145,245,257],at_server_start:303,at_server_startstop:[25,103],at_server_stop:303,at_shutdown:303,at_start:[101,115,145,194,226,233,254,257],at_startstop_modul:259,at_stop:[101,115,120,216,217,218,219,220,226,257],at_sunris:61,at_sync:[304,305],at_tick:[114,259],at_travers:[88,196,212,233,245],at_traverse_coordin:233,at_turn_start:218,at_upd:[218,255],at_weather_upd:131,atlanti:24,atom:97,atop:233,atribut:323,att:50,attach:[4,11,21,40,42,55,57,63,76,88,94,101,104,109,111,118,139,153,158,163,166,188,198,214,233,240,245,256,302,313,317],attachmentsconfig:4,attack:[14,28,29,30,45,50,72,76,89,102,115,118,121,133,138,152,205,214,216,217,218,219,220,229,230,245,250,283],attack_count:219,attack_nam:219,attack_skil:250,attack_typ:220,attack_valu:[216,217,218,219,220],attempt:[0,2,22,24,29,31,42,50,59,60,86,90,102,105,118,119,134,155,158,186,209,211,216,217,218,219,220,262,265,270,303,308,316,342,360],attent:[55,57,88,102,110],attitud:56,attr1:[42,158,202],attr2:[42,158,202],attr3:[42,158],attr:[11,22,42,48,50,57,79,108,118,136,158,165,179,231,239,249,250,304,314,316,332,338],attr_categori:313,attr_eq:239,attr_g:[79,239],attr_gt:[79,239],attr_kei:313,attr_l:[79,239],attr_lockstr:313,attr_lt:[79,239],attr_n:[79,239],attr_nam:158,attr_obj:[314,316],attr_object:316,attr_typ:313,attr_valu:313,attract:37,attrcreat:[79,314],attread:11,attredit:[11,79,314],attrib:240,attribiut:314,attribut:[0,2,6,12,20,22,25,27,28,30,38,40,41,42,44,45,48,49,50,55,56,57,59,60,68,72,73,76,79,80,81,83,84,85,86,88,90,94,101,104,107,108,111,114,115,118,122,124,126,132,133,137,138,140,141,143,144,147,152,158,167,168,172,174,179,180,186,193,194,201,202,205,212,216,217,218,219,220,225,229,230,231,239,242,244,245,248,249,250,252,254,255,270,304,312,313,315,316,317,322,323,324,335,336,339,342,355,360,362],attribute1:122,attribute2:122,attribute_list:314,attribute_nam:[143,205,245,339],attributeerror:[41,59,85,304,314],attributeform:313,attributeformset:313,attributehandl:[1,124,314,337,342],attributeinlin:[144,172,242,252,313],attributeobject:11,attrkei:250,attrlist:314,attrnam:[11,42,50,79,108,124,158,239,316],attrread:[11,79,314],attrtyp:[11,314,315],attrvalu:50,attryp:315,atttribut:48,atyp:240,audibl:204,audio:136,audit:[140,174,177,206,245],audit_callback:208,auditedserversess:[208,209],auditingtest:210,aug:9,august:[9,342],aut:51,auth:[143,144,147,285,347,355,360],auth_password:285,auth_profile_modul:147,authent:[39,102,104,106,132,137,143,276,283,285,288,294,304,306,347,360],authenticated_respons:358,author:[40,89,125,143,191,194],auto:[0,5,12,14,21,31,32,33,34,41,42,44,50,52,62,70,88,94,95,104,121,130,132,137,140,143,147,149,153,157,158,165,168,169,204,205,226,234,237,240,245,250,254,257,259,262,265,276,286,293,294,303,306,316,321,327,328,347],auto_help:[33,40,43,50,67,68,153,169,187,247,326,327],auto_id:[144,235,242,355],auto_look:[50,187,247,326],auto_now_add:85,auto_quit:[50,187,247,326],auto_transl:204,autobahn:[276,282,293],autofield:132,autologin:347,autom:[14,36,56,57,78,85,99,102,109,360],automat:[0,6,10,14,19,22,23,27,30,31,34,37,40,42,45,46,49,50,52,54,57,59,61,63,64,65,67,70,71,79,80,83,84,85,89,95,96,99,101,103,104,108,110,115,116,117,118,120,122,123,124,125,127,130,134,135,136,138,139,143,151,152,153,158,163,164,166,173,178,179,180,181,193,194,195,199,200,202,203,204,205,213,220,225,226,232,240,244,245,256,257,258,259,270,279,282,285,290,303,306,320,324,326,327,328,342,348,361],automatical:259,autostart:[256,322],autumn:[96,98,186],avail:[0,5,7,8,10,11,13,16,21,22,23,24,25,26,31,33,36,38,39,40,41,42,43,45,47,48,50,52,56,57,59,61,62,63,64,71,73,74,75,76,77,78,79,80,81,84,87,88,89,90,94,95,97,99,101,103,104,105,107,108,109,110,112,113,115,118,120,121,122,124,126,127,130,132,133,136,137,138,140,143,149,150,151,152,153,155,158,160,163,164,165,166,167,168,169,170,178,179,180,184,186,188,194,198,201,203,204,205,213,214,216,217,218,219,220,223,230,231,239,240,245,248,249,250,254,270,294,297,308,319,320,321,326,327,328,334,342,360],avail_cmdset:158,available_choic:[50,326],available_func:334,available_funct:249,available_languag:204,available_weapon:230,avatar:[63,87,95,245,285],avatarid:285,avenu:181,averag:[13,42,89,92,168,194,204,232],avoid:[8,11,23,26,27,31,33,37,39,41,42,50,79,80,84,94,96,99,108,110,113,124,125,126,128,130,137,138,158,203,204,232,233,239,244,270,274,284,294,304,314,316,319,320,321,324,327,332],awai:[0,9,10,11,14,15,21,26,29,41,42,45,48,50,54,65,67,68,72,79,85,89,95,101,104,108,110,120,122,130,164,181,214,217,220,223,225,229,231,233,245,254,305,319,342],await:10,awar:[11,14,26,31,33,43,50,87,94,95,109,124,125,131,132,188,203,205,229,232,233,245,316,319],awesom:[62,134],aws:89,axhear:239,axi:199,azur:99,b64decod:338,b64encod:338,b_offer:178,baaaad:126,babi:137,back:[0,3,5,10,11,12,13,14,20,21,22,23,26,27,29,31,33,34,36,42,45,48,49,50,55,57,59,60,62,63,68,72,73,80,82,84,85,86,89,90,94,95,96,99,101,104,105,109,110,112,115,117,118,120,121,122,124,125,130,132,134,136,140,143,152,155,158,163,167,178,179,205,211,214,219,223,247,257,265,270,274,277,283,285,288,303,316,323,326,327,335,342],back_exit:0,backbon:[132,320],backend:[23,36,108,126,134,140,314,342,344,346],backend_class:314,background:[10,17,29,50,89,102,109,113,125,132,182,189,319,334,360],backpack:31,backslash:113,backtick:130,backtrack:130,backup:[10,88,89,104,130,167,320],backward:[49,50,57,120,335],bad:[0,22,24,37,40,57,63,69,75,84,118,126,209,267],bad_back:240,badg:129,bag:342,balanc:[29,55,60,78,115,328],balk:94,ball:[31,58,103,150,151,250],ballon:202,balloon:202,ban:[7,25,79,138,143,156,240,362],band:[44,87,136,285,288,289],bandit:45,bandwidth:278,banid:[42,156],bank:60,bar:[50,81,82,83,87,111,134,136,189,205,214,289,326,342],bare:[33,54,57,72,103,189,217],barehandattack:55,bargain:85,barkeep:[41,205],barter:[60,62,101,116,140,141,177],bartl:78,base:[3,4,6,9,13,16,17,20,21,22,23,30,33,34,36,38,40,41,42,48,50,54,55,56,57,59,60,62,63,68,71,72,74,76,78,79,82,84,85,88,89,93,95,99,101,102,104,107,110,112,114,118,119,122,123,124,125,126,128,132,133,135,136,137,138,140,143,144,145,146,147,149,151,152,153,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,172,173,174,175,176,178,179,180,181,183,184,185,186,187,188,191,192,194,195,196,197,198,199,200,201,202,203,204,205,209,210,211,212,213,214,216,217,218,219,220,222,223,225,226,227,229,230,231,232,233,235,236,237,240,242,243,244,245,247,249,250,252,253,254,255,256,257,258,259,261,262,263,265,267,268,271,272,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,296,297,298,301,303,304,305,306,308,309,310,313,314,315,316,317,319,320,321,324,325,326,327,328,329,331,332,333,334,335,336,337,338,339,340,341,342,347,349,350,355,358,360,362],base_account_typeclass:[2,140],base_channel_typeclass:140,base_char_typeclass:119,base_character_typeclass:[42,80,119,132,133,140,158],base_exit_typeclass:140,base_field:[144,235,242,313,355],base_guest_typeclass:[65,140],base_object_typeclass:[108,140,250,316],base_random:248,base_room_typeclass:140,base_script_path:239,base_script_typeclass:[101,140],base_set:9,baseclass:230,basecontain:321,baseinlineformset:313,baseline_index:342,baseobject:124,baseopt:336,basepath:342,basetyp:[245,320],basetype_posthook_setup:245,basetype_setup:[38,79,95,143,145,174,245],bash:[36,62],basi:[4,33,37,61,89,135,137,166,176,205,239,294,316,325],basic:[0,2,3,6,15,16,17,19,20,22,26,29,31,33,34,36,38,39,42,45,46,47,55,56,57,59,60,61,68,72,76,78,79,80,82,85,86,109,110,112,115,116,117,120,121,123,125,127,132,133,134,136,138,143,145,158,163,165,174,176,187,193,199,202,217,219,230,239,241,245,296,340,344,355,360,362],bat:[9,62],batch:[18,20,42,47,62,78,110,121,123,138,140,141,157,250,274,314,317,318,362],batch_add:[250,314,317],batch_cmd:14,batch_cod:[13,320],batch_code_insert:13,batch_create_object:250,batch_exampl:320,batch_import_path:[13,14],batch_insert_fil:14,batch_update_objects_with_prototyp:250,batchcmd:[42,157],batchcmdfil:[14,320],batchcod:[14,78,110,157],batchcode_map:110,batchcode_world:110,batchcodefil:13,batchcodeprocessor:320,batchcommand:[14,20,22,62,121,157,320],batchcommandprocessor:320,batchfil:[14,15,110,320],batchprocess:[140,148,154],batchprocessor:[13,140,141,157,318],batchscript:[13,320],batteri:143,battl:[78,102,115,121,216,217,218,219,220],battlecmdset:[216,217,218,219,220],baz:214,bazaar:107,beach:110,bear:[203,229],beat:[60,115],beaten:[115,231],beauti:[22,48,132],beazlei:78,becam:[29,125],becasu:52,becaus:[0,2,6,8,9,10,11,12,13,15,16,21,22,25,29,31,36,39,40,41,43,45,53,55,58,63,67,72,75,76,79,88,90,94,95,106,107,108,110,114,115,116,118,124,125,132,133,135,144,152,170,174,185,193,196,204,219,223,233,245,257,277,283,296,306,313,319,336,338],becom:[0,5,10,22,37,40,41,42,46,48,50,55,58,60,63,69,72,77,79,80,85,86,87,94,95,101,103,108,110,118,127,155,188,202,204,214,217,250,304,320,326],bed:60,been:[0,4,5,6,13,14,19,21,22,23,36,40,41,42,45,48,50,57,68,69,75,78,84,90,92,93,95,102,104,115,116,118,122,125,127,130,132,133,134,136,137,151,152,157,158,166,167,174,179,194,196,199,202,203,205,216,217,218,219,220,231,233,237,240,244,245,250,259,267,279,283,285,293,303,304,305,306,308,313,314,316,320,324,325,342,360],befit:124,befor:[1,4,10,11,12,13,14,15,20,21,22,25,27,28,29,31,33,37,40,41,42,45,47,48,50,55,56,57,59,60,68,70,74,76,78,79,80,83,84,85,89,90,92,95,96,99,101,102,103,105,106,107,108,110,111,112,113,114,115,116,117,118,120,122,123,124,125,126,129,130,131,132,133,134,136,137,138,143,149,150,153,158,163,166,170,174,183,185,186,187,188,189,193,196,197,200,204,205,208,209,214,216,217,218,219,220,225,226,230,233,239,240,244,245,248,250,257,258,259,265,274,283,285,291,299,301,303,304,308,310,314,319,320,321,322,326,327,328,329,333,335,338,342,360],beforehand:[11,130,321],beg:14,beggar:0,begin:[0,4,6,10,13,14,20,22,25,33,40,41,42,45,49,54,57,60,68,71,79,90,94,95,105,106,110,115,116,118,126,131,133,164,193,196,205,214,216,217,218,219,220,245,257,319,320,339],beginn:[54,59,76,78,90,94,123],behav:[11,13,20,22,29,68,90,94,106,109,126,249,342],behavior:[0,5,11,31,33,40,49,67,68,92,95,101,108,113,125,134,136,137,143,153,169,181,187,218,220,231,232,265,313],behaviour:[11,31,33,79,125,199,311,322,328,342],behind:[11,12,21,33,42,48,54,58,60,62,73,96,108,111,113,121,125,130,157,203,231,254,259,332],being:[0,5,6,10,11,13,20,21,22,25,28,31,33,34,36,37,41,42,50,53,55,58,60,62,63,68,82,87,89,90,92,94,95,101,102,106,108,110,114,117,124,125,126,128,130,132,137,143,150,158,164,168,174,183,184,188,198,204,205,216,217,218,219,220,225,226,231,237,245,267,270,277,306,308,313,314,316,319,320,322,326,327,328,342],beipmu:24,belong:[4,14,42,63,82,94,102,111,118,132,139,152,205,214,233,237,248],below:[0,1,5,8,9,10,11,12,13,14,15,19,20,22,23,25,27,29,31,33,34,36,38,41,42,47,48,49,50,56,57,58,59,60,61,62,63,68,69,72,73,79,80,86,87,89,93,94,95,99,101,104,105,108,109,110,113,116,117,118,122,124,126,130,132,133,135,137,139,147,158,166,167,176,179,181,184,189,196,199,204,205,214,216,217,218,219,220,227,232,237,239,244,245,254,277,297,314,316,317,328,333,334],belt:76,beneath:27,benefici:[48,218],benefit:[77,89,99,102,107,126,152,314,320],besid:[0,14,31,105,110,189],best:[9,22,24,26,37,49,56,57,58,60,71,75,101,102,103,107,132,134,138,165,179,204,214,232,250,265,285,328,336,362],bet:[31,104,137,316],beta:[35,53,89],betray:50,better:[0,9,15,23,25,34,40,41,43,44,50,54,57,58,60,63,67,69,72,80,84,85,90,92,94,107,108,111,113,132,133,180,212,217,223,231,245,250,282,285,288,296,314,320],bettween:72,between:[0,2,10,14,22,25,28,31,33,36,38,39,40,42,45,48,55,56,57,63,68,72,75,84,86,87,89,90,99,101,104,108,111,112,113,115,119,120,121,122,123,125,130,136,137,139,150,153,158,165,168,169,176,178,181,182,193,194,196,197,198,199,201,203,204,205,214,216,217,218,219,220,245,250,259,265,274,277,284,285,288,289,296,297,304,317,319,320,322,326,328,329,334,342,349],bew:186,bewar:38,beyond:[1,2,9,22,25,33,37,51,56,63,87,88,89,126,133,153,158,169,176,179,205,214,249,314,316,326,328],bg_colormap:341,bgcolor:341,bgfgstart:341,bgfgstop:341,bgstart:341,bgstop:341,bias:158,bidirect:274,big:[9,11,13,14,20,28,29,33,37,44,56,72,79,95,121,137,139,150,167,320,327,339,342],bigger:[21,37,39,68,118,122,136],biggest:[71,137,342],biggui:33,bigmech:21,bigsw:29,bikesh:118,bill:[89,102],bin:[4,9,36,46,62,63,74,95,99],binari:[23,46,62,92,94,276,278,293],bind:66,birth:355,bit:[0,4,9,12,17,22,26,29,35,38,40,41,42,45,58,60,61,62,68,74,75,80,95,101,105,108,120,121,126,130,133,136,137,170,185,240,245,320],bitbucket:56,bite:[60,110],black:[72,113,125],blackbird:78,blackbox:137,blacklist:102,blade:230,blank:[50,85,116,133,143,187,319],blankmsg:187,blargh:108,blatant:12,blaufeuer:118,bleed:[113,130,328],blend:202,blender:202,bless:137,blind:[113,117,223,226],blindcmdset:223,blindedst:226,blindli:240,blink:[20,225,226,341],blinkbuttonev:226,blist:96,blob:137,block:[3,12,25,28,42,49,50,54,57,63,68,79,89,90,96,101,102,109,113,122,128,132,133,138,156,157,158,186,220,229,230,233,247,284,320,326,334,342,360],blocking_cmdset:25,blockingcmdset:25,blockingroom:25,blocktitl:68,blog:[37,54,78,89,97],blowtorch:24,blue:[13,56,80,113,125,230],blueprint:[56,95,110,136],blurb:53,board:[34,48,60,78,79,120],boat:[31,120,152],bob:[33,42,80,137,156],bodi:[3,17,22,27,33,40,45,50,57,94,108,126,128,132,174,192,198,267,322,342],bodyfunct:[20,101,140,177,221,227],bog:21,boi:111,boiler:124,bold:53,bolt:250,bone:[54,72],bonu:[40,72,89,217,218,254],bonus:[29,217],book:[3,48,61,72,78,90,94,108,134],bool:[2,31,33,34,50,73,83,101,143,144,145,147,149,150,152,153,172,174,175,176,178,179,181,183,184,187,189,191,194,196,199,203,204,205,214,216,217,218,219,220,225,233,236,240,242,244,245,248,249,250,252,254,255,256,257,258,259,265,270,271,276,277,282,283,284,288,293,294,302,304,306,308,314,315,316,317,319,320,322,324,326,327,328,329,332,334,337,339,341,342],booleanfield:[132,144,235],boom:21,boot:[79,99,109,156,259],bootstrap:[4,123,137,138,362],border:[42,57,81,110,155,187,325,327,328],border_bottom:328,border_bottom_char:328,border_char:328,border_left:328,border_left_char:328,border_right:328,border_right_char:328,border_top:328,border_top_char:328,border_width:328,borderless:57,borderstyl:187,bore:[12,54,102],borrow:[31,62,151,274],bort:51,boss:57,bot:[42,46,64,71,92,102,118,132,140,141,142,147,163,174,270,276,277,284,306,360],bot_data_in:[145,270],both:[0,11,15,19,22,23,25,26,27,31,33,34,36,37,39,42,43,48,55,56,57,61,64,68,70,73,78,83,84,85,86,87,89,90,94,96,102,103,104,105,109,110,115,118,120,123,124,126,127,130,132,133,135,137,149,151,158,163,168,176,178,182,189,196,198,199,200,202,211,214,219,220,231,240,245,249,250,251,254,257,259,274,283,293,294,303,305,308,314,315,319,322,326,328,337,342],bother:[29,102,127,173,314],botnam:[42,71,163,277,306],botnet:102,botstart:145,bottom:[4,38,40,51,53,56,57,59,68,84,94,100,105,110,124,126,132,136,152,198,219,233,250,320,327,328],bought:84,bouncer:[27,102,325],bound:[6,27,56,107,191,342],boundari:342,bounti:69,bountysourc:69,bow:250,box:[0,3,8,20,41,42,45,57,62,65,68,69,70,72,79,86,89,103,105,108,110,122,134,137,158,205,239,274,320,355,361],brace:[0,22,25,40,90,196,245,319],bracket:[42,95,128,168,182],brainstorm:[138,362],branch:[9,36,37,40,62,99,203,214],branchnam:130,brandymail:198,bread:16,breadth:220,break_lamp:225,break_long_word:328,break_on_hyphen:328,breakdown:[42,168],breakpoint:[16,105,140],breez:[101,131],breviti:57,bribe:50,brick:81,bridg:[22,23,78,82,104,231],bridgecmdset:231,bridgeroom:231,brief:[3,16,19,20,21,25,45,57,59,84,85,94,95,100,109,123,130,138,187,232,245,309],briefer:[88,109],briefli:[16,89,109],bright:[80,113,125,182,319],brightbg_sub:319,brighten:113,brighter:113,brilliant:130,bring:[23,48,52,95,99,102,120,122,132,135,214,220,223,229,307],broad:38,broadcast:[42,163,274],broader:[38,205,245],broadli:93,broken:[60,107,113,204,225,226,334],brought:101,brows:[3,9,25,38,54,57,61,68,84,89,90,102,105,122,130,135,136,137,360,361],browser:[3,8,9,16,54,62,63,68,69,74,76,89,94,95,100,102,132,133,134,135,136,137,293,294,360],brutal:232,bsd:77,btest:113,btn:17,bucket:208,buf:324,buffer:[22,33,49,136,167,267,294,324],bug:[10,13,26,37,41,53,56,59,60,69,77,93,94,95,109,122,126,130,226,245,316],buggi:[11,326],bui:[84,137,178],build:[1,6,7,9,10,11,13,14,15,27,31,36,46,50,54,56,59,62,63,67,68,74,76,78,79,80,85,86,88,95,99,104,105,107,108,111,112,118,119,121,122,124,128,129,135,136,138,139,140,148,150,154,156,157,164,165,174,179,186,192,199,204,205,211,229,232,240,245,249,250,265,276,277,320,328,355,361,362],build_exit:199,build_forest:199,build_map:199,build_match:150,build_mountain:199,build_templ:199,builder:[2,4,14,19,22,25,42,55,57,59,60,67,79,84,107,108,111,113,122,123,138,156,158,164,168,179,181,186,187,199,202,205,211,231,232,233,240,245,248,296,316,320,361,362],buildier:250,building_menu:[140,141,177],buildingmenu:[22,179],buildingmenucmdset:179,buildmap:199,buildprotocol:[262,275,276,277],buildshop:84,built:[13,16,20,27,39,50,53,54,56,57,60,62,63,72,74,76,94,95,99,102,120,121,122,134,137,138,147,176,202,204,237,244,254,259,314,316,317,320,324,326,333],builtin:[93,278],bulk:[95,102],bullet:60,bulletin:[60,78,79],bunch:[15,27,57,107,112],burden:81,buri:[107,121],burn:[60,72,89,230],busi:[63,69,89,178],butch:95,butt:137,butter:16,button:[9,13,14,31,33,42,79,82,86,87,105,130,132,133,134,136,137,158,223,225,226,230,297],button_expos:230,buy_ware_result:84,byngyri:204,bypass:[4,10,19,20,42,52,57,79,115,125,143,158,174,211,239,240,316,322,339,347],bypass_superus:79,bytecod:319,bytestr:[274,342],bytestream:342,c_creates_button:297,c_creates_obj:297,c_dig:297,c_examin:297,c_help:297,c_idl:297,c_login:297,c_login_nodig:297,c_logout:297,c_look:297,c_move:297,c_moves_:297,c_moves_n:297,c_social:297,cabl:81,cach:[6,8,11,12,28,33,38,42,85,118,124,126,136,143,153,168,173,174,186,229,230,240,244,245,269,313,314,316,317,318,330,332,342],cache_inst:332,cache_lock_bypass:240,cache_s:[308,332],cached_properti:342,cactu:219,cake:31,calcul:[10,25,27,38,72,115,118,122,138,152,183,186,197,204,216,217,219,220,250,327,329,332,342,360],calculated_node_to_go_to:50,calculu:55,calendar:[183,197,329],call:[0,2,3,4,5,6,10,11,13,14,16,20,21,22,23,25,26,27,28,29,30,31,36,38,39,40,41,42,45,46,47,48,49,50,54,55,56,57,58,59,60,61,62,63,64,68,70,71,72,73,74,79,80,82,83,84,85,87,88,89,90,92,94,95,99,101,103,104,106,107,108,109,110,113,114,115,116,117,118,119,120,121,122,124,125,126,127,130,131,132,133,134,136,137,143,145,149,150,151,152,153,155,158,163,166,167,168,169,170,173,174,178,179,181,183,184,185,186,187,188,191,192,193,194,195,196,197,199,200,202,203,204,205,211,213,214,216,217,218,219,220,222,223,225,226,229,230,231,232,233,239,240,244,245,248,249,250,255,256,257,258,259,262,265,267,269,270,274,275,276,277,278,279,280,281,283,284,285,286,287,288,289,290,292,293,294,296,297,298,303,304,305,306,307,310,313,314,316,317,319,320,321,322,324,326,328,329,332,334,335,337,338,339,342,355,360],call_async:10,call_command:126,call_ev:[0,193],call_inputfunc:[82,304,306],callabl:[48,49,50,83,108,114,122,179,187,194,214,218,245,248,249,250,255,259,263,265,267,275,321,324,326,327,335,337,338,342],callables_from_modul:342,callbac:22,callback1:326,callback:[4,10,22,27,29,33,49,50,61,73,83,114,137,145,179,183,187,191,192,193,194,195,196,197,209,214,245,255,257,258,259,263,265,267,270,274,275,276,278,292,293,296,307,326,329,335,340,342,362],callback_nam:[191,194],callbackhandl:[140,177,190,196],called_bi:149,calledbi:342,caller:[5,10,11,13,21,22,25,27,28,29,30,33,40,41,42,43,48,49,55,57,58,59,70,72,79,80,81,82,84,85,86,87,88,90,110,114,115,118,120,122,124,128,145,149,150,151,153,155,158,159,163,164,165,166,167,168,169,173,179,187,192,198,199,200,202,205,213,214,230,231,232,233,240,245,247,249,320,324,326,327,334,336,342],callerdepth:342,callertyp:149,callinthread:310,calllback:193,callsign:[50,270],calm:110,came:[9,21,25,54,78,110,131,137,196,229,233,245],camp:110,campfir:110,campsit:110,can:[0,1,2,3,4,5,6,9,10,12,13,14,15,17,19,20,21,23,24,25,26,27,28,29,30,31,33,34,35,36,37,38,39,40,41,42,43,45,47,48,49,50,52,53,55,56,57,58,59,60,61,62,63,64,65,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,129,130,132,133,134,135,136,137,138,139,142,143,145,147,150,151,152,153,155,156,158,163,164,165,166,167,168,169,173,174,175,176,178,179,181,182,183,184,186,187,188,189,193,194,196,197,198,199,202,203,204,205,208,211,214,216,217,218,219,220,223,225,226,229,230,231,232,233,237,239,240,244,245,248,249,250,251,254,255,256,257,259,265,276,280,283,285,288,289,293,294,296,297,303,304,305,306,307,310,311,312,314,315,316,317,319,320,321,322,324,325,326,327,328,334,336,337,338,339,340,342,343,355,360,361],can_:193,cancel:[27,29,73,193,196,216,217,218,219,220,245],candid:[22,33,118,132,150,202,205,245,339],candl:152,cannot:[5,9,10,11,13,14,19,21,22,25,27,28,29,31,33,38,42,43,45,49,50,52,55,59,60,62,68,69,72,75,79,84,89,103,108,111,113,121,122,126,127,132,138,143,145,155,158,174,179,186,187,191,194,196,211,214,220,226,229,230,236,239,240,245,259,314,321,323,325,328,332,342],cantanker:336,cantclear:187,cantillon:78,cantmov:25,canva:48,capabl:[6,36,42,48,57,63,79,82,87,104,155,213,270,292,355],cape:56,capfirst:68,capit:[9,12,25,29,42,63,87,94,122,158,188,203,204,319],captcha:132,captur:[25,90,137,335,360],car:[86,120],card:102,cardin:[42,43,48,57,158],care:[0,4,10,12,23,33,43,48,50,55,56,61,63,77,85,90,109,115,120,125,131,143,151,174,186,202,205,229,239,245,248,316,320,324,326,327,328,342],carefulli:[54,92,104,110,132],carri:[20,31,60,79,81,84,115,116,176,181,217,229,239,304,315],cascad:332,caseinsensitivemodelbackend:347,cast:[28,108,111,214,219],caster:[28,219],castl:[13,110,121,186,231],cat:74,catchi:4,categor:111,categori:[1,5,11,33,36,38,42,50,67,68,85,108,111,118,126,139,153,154,155,156,157,158,163,164,165,166,167,168,169,170,173,178,179,180,181,184,185,186,187,188,192,198,199,200,201,202,205,211,212,213,214,216,217,218,219,220,223,229,230,231,232,236,237,239,245,249,250,314,315,317,322,324,326,327,333,336,339,342,360],categoris:55,category2:333,category2_id:333,category_id:333,category_index:214,cater:29,caught:[41,50,96,175],caus:[11,12,29,30,31,41,59,60,63,76,79,89,95,113,115,116,118,122,126,136,139,152,185,223,225,233,245,296,328,342],caution:[61,136,326],cave:45,caveat:[5,10],caveman:55,cblue:130,cboot:[12,163],cc1:62,cccacccc:325,ccccc2ccccc:57,cccccccc:325,ccccccccccc:57,cccccccccccccccccbccccccccccccccccc:325,ccccccccccccccccccccccccccccccccccc:325,ccreat:[40,57,64,71,97,163],cdesc:[40,163],cdestroi:163,cdmset:31,cdn:102,ceas:[42,76,158],cel:325,celebr:60,cell:[57,68,110,187,325,328],celltext:325,cemit:163,censu:315,center:[4,16,38,48,108,110,113,189,248,319,328,342],center_justifi:[108,248],centos7:66,centr:110,central:[26,54,60,63,73,99,110,122,123,126,131,137,138,143,176,245,250,274,322,332,361,362],centre_east:110,centre_north:110,centre_south:110,centre_west:110,centric:[9,79,104,122,205],cert:[8,66,286,290],certain:[13,14,16,19,25,29,31,33,37,42,47,63,74,79,87,89,96,101,104,106,107,113,114,120,137,158,175,178,204,208,226,230,233,239,257,265,271,288,292,307,313,314,315,324,328,339,342,355],certainli:[15,43,137],certbot:[89,102],certfil:[286,290],certif:[8,89,286,290],cet:335,cflag:74,cgi:89,cha:[50,57],chain:[0,10,29,45,50,108,118,193,194,297,326,342],chain_1:0,chainedprotocol:285,chainsol:118,chair:[13,60,88,90,111,124],challeng:[72,78],chanalia:[42,163],chanc:[21,22,28,31,53,60,65,66,72,114,115,121,130,151,216,217,218,219,220,223,230,231,297],chance_of_act:297,chance_of_login:297,chandler:115,chang:[2,3,4,7,8,9,11,12,13,14,15,16,19,20,21,22,23,26,29,30,31,33,34,35,36,37,38,40,41,42,44,46,48,49,50,53,56,60,61,62,63,65,67,70,72,73,74,76,77,79,80,82,83,84,85,86,88,89,90,93,94,95,99,101,103,104,106,108,109,110,111,113,114,115,117,120,122,124,125,126,129,131,132,133,134,136,137,138,143,144,152,153,155,156,158,163,164,169,172,174,178,179,181,185,186,188,189,191,194,196,200,201,204,205,211,212,214,216,217,218,219,220,229,230,231,232,233,237,242,245,250,252,254,255,257,259,265,270,281,296,303,304,311,313,314,316,320,323,324,327,328,335,336,337,338,360],change_name_color:214,changeabl:75,changelog:95,changepag:133,chanlist:[42,163],channam:40,channel:[2,6,7,11,12,19,27,31,33,44,54,64,69,70,71,78,79,81,85,86,89,97,106,111,118,122,123,124,137,138,143,145,149,151,152,158,163,167,171,172,173,174,175,176,194,269,276,277,284,297,304,306,314,322,335,339,358,360,362],channel_:34,channel_ban:[40,163],channel_color:25,channel_command_class:[34,40],channel_connectinfo:304,channel_detail:360,channel_handl:[140,173],channel_list:360,channel_prefix:[25,174],channel_search:175,channel_set:176,channel_typeclass:358,channeladmin:172,channelam:173,channelattributeinlin:172,channelcmdset:31,channelcommand:[34,40,173],channelconnect:176,channelcr:[42,163],channelcreateview:174,channeldb:[40,124,140,172,174,176,312],channeldb_db_attribut:172,channeldb_db_tag:172,channeldb_set:[314,317],channeldbmanag:[175,176],channeldeleteview:174,channeldesc:[40,173],channeldetailtest:358,channeldetailview:[174,360],channelhandl:[34,40,140,141,149,171,174],channelkei:[40,173,175],channellist:[42,163],channellisttest:358,channellistview:360,channelmanag:[174,175],channelmixin:360,channelnam:[34,40,71,145,173,276],channeltaginlin:172,channelupdateview:174,char1:[42,72,126,164,358],char2:[42,72,126,164,358],char_health:231,char_nam:132,charac:83,charact:[0,2,5,9,11,14,15,17,19,20,21,22,23,27,28,29,30,31,33,34,36,38,39,40,41,42,44,46,48,49,50,54,55,56,61,67,68,70,73,75,76,79,80,84,85,86,87,90,94,96,101,104,110,112,113,115,116,117,118,119,120,123,124,126,128,134,135,137,138,140,142,143,150,151,153,155,158,159,160,164,165,166,173,174,179,180,181,186,187,188,189,191,193,194,196,198,199,201,203,204,205,208,213,214,216,217,218,219,220,222,229,230,231,233,237,240,245,257,270,291,304,309,314,316,319,320,325,326,328,334,340,342,343,355,358,360,362],character1:72,character2:72,character_cmdset:186,character_form:360,character_id:245,character_list:360,character_manage_list:360,character_typeclass:[126,143,340,358],charactercmdset:[5,21,22,25,30,31,40,42,43,56,57,59,61,80,122,160,179,181,186,198,201,211,216,217,218,219,220,231],charactercreateview:[358,360],characterdeleteview:[358,360],characterdetailview:360,characterform:[355,360],characterlistview:[358,360],charactermanageview:[358,360],charactermixin:360,characternam:113,characterpuppetview:[358,360],charactersheet:50,characterupdateform:[355,360],characterupdateview:[358,360],charapp:132,charat:187,charcreat:[0,45,68,155,180],chardata:57,chardelet:155,chardeleteview:[237,316],chardetailview:[237,316],charfield:[85,132,144,235,242,313,338,355],charg:89,chargen:[132,138,140,141,174,177,237,316],chargencmdset:122,chargenroom:122,chargenview:[237,316],charnam:[42,57,155],charpuppetview:316,charset:342,charsheet:57,charsheetform:57,charupdateview:[237,316],chase:121,chat:[1,2,9,26,34,37,47,54,57,59,62,64,69,71,78,79,97,122,130,138,294,335],chatroom:56,chatzilla:71,cheap:130,cheaper:[60,114],cheapest:89,cheapli:231,cheat:[23,72],cheatsheet:47,check:[0,4,5,12,13,14,19,22,25,26,27,28,29,31,33,36,37,38,39,40,41,42,43,45,48,50,53,55,57,59,62,64,67,68,69,70,72,76,80,81,84,85,86,88,89,90,94,96,97,99,101,102,105,108,109,110,111,113,114,115,116,117,118,120,122,124,126,127,129,130,132,135,136,137,138,143,144,149,150,151,152,153,155,157,158,164,165,166,168,170,174,176,178,180,181,185,186,187,194,198,216,217,218,219,220,222,223,226,229,231,232,233,239,240,244,245,249,250,254,256,257,264,265,269,274,280,285,289,304,306,308,309,310,313,314,316,317,319,320,322,336,337,342,343,360],check_attr:158,check_circular:294,check_databas:265,check_db:265,check_defeat:72,check_end_turn:115,check_error:264,check_evennia_depend:342,check_from_attr:158,check_grid:48,check_has_attr:158,check_light_st:231,check_lockstr:[4,79,240],check_main_evennia_depend:265,check_obj:158,check_permiss:249,check_permstr:[143,316],check_show_help:165,check_to_attr:158,check_warn:264,checkbox:132,checker:[15,48,93,239,285,343],checkout:[9,99,130],checkoutdir:36,chest:[79,90],child:[6,33,42,50,63,79,95,115,145,147,153,158,169,231,244,250,254,310,333],childhood:50,children:[21,33,63,95,111,116,118,124,147,244,245,254,265,315,333],chillout:[42,158],chime:27,chines:[25,78,112],chip:57,chmod:36,choci:179,chocol:59,choic:[4,15,23,33,42,50,54,59,77,89,90,94,104,106,108,112,115,118,123,126,128,131,143,155,158,178,179,187,216,232,248,263,324,326],choice1:128,choice2:128,choice3:128,choos:[7,9,10,13,48,50,56,61,63,71,72,84,100,105,115,119,122,125,132,134,137,138,139,213,214,216,217,218,219,220,223,229,278,326,341,362],chop:[33,230],chore:67,chose:[53,57,85,102,132,214],chosen:[22,50,87,105,115,131,137,187,189,326],chown:99,chractercmdset:231,christin:95,chrome:24,chronicl:187,chroot:66,chug:33,chunk:[13,68,110,267,320,334],church:27,church_clock:27,cid:297,cillum:51,circl:38,circuit:136,circular:[267,321],circumst:[45,50,56,84,118,151,219,355],circumv:[42,156],clang:74,clank:0,clarif:[1,47],clarifi:25,clariti:[74,85,90,122],clash:[23,31,42,89,158,173,316],class_from_modul:342,classic:[3,13,78,104,111,114,115],classmethod:[38,143,174,237,245,257,316,332,349],classnam:11,classobj:316,claus:[77,117],clean:[1,4,17,25,28,42,47,50,75,109,110,113,115,121,130,144,151,153,158,174,178,205,216,217,218,219,220,226,230,231,233,245,254,265,269,283,293,306,313,316,319,324,326,332,338,341,342,355],clean_attr_valu:313,clean_attribut:[124,143,316],clean_cmdset:[124,316],clean_senddata:306,clean_str:319,clean_usernam:144,cleaned_data:132,cleaner:[90,122],cleanli:[63,101,104,109,149,153,163,173,187,267,276,282,293,306,324],cleanup:[1,11,22,33,39,42,44,49,50,101,126,144,168,178,231,326,361],clear:[1,4,11,12,15,22,29,33,37,39,42,47,49,58,60,63,68,69,72,80,103,109,110,111,112,114,124,127,128,130,131,136,137,152,155,156,158,164,173,187,203,205,226,231,240,244,245,255,259,267,304,314,316,317,326,332],clear_attribut:314,clear_client_list:301,clear_cont:[88,245],clear_exit:[88,245],clearal:[42,128,164],clearli:[12,37,47,127,226,332],cleartext:[209,322],clemesha:310,clever:[10,31,50,94,240],cleverli:104,click:[36,68,89,100,105,113,127,130,132,134,136,137,326],clickabl:18,client:[3,7,8,9,12,22,23,25,30,33,36,39,42,44,49,51,53,54,59,62,63,64,66,71,73,74,78,80,83,90,94,95,99,100,102,103,104,106,107,110,112,113,115,116,125,127,135,137,138,140,143,145,153,155,168,209,260,262,266,268,270,274,275,276,277,278,279,280,281,283,285,287,288,289,290,292,293,294,296,297,303,304,305,306,323,324,326,341,342,360,362],client_address:39,client_default_height:51,client_disconnect:294,client_encod:23,client_opt:[270,289],client_secret:64,client_width:[33,153],clientconnectionfail:[262,276,277],clientconnectionlost:[262,276,277],clientfactori:296,clienthelp:136,clientraw:[42,168],clientsess:[293,294],cliff:[20,42,158],climat:111,climb:[33,42,54,76,92,158,230],climbabl:230,clipboard:[1,47],clist:[42,163],clock:[12,27,33,72,163],clone:[46,62,63,75,95,127,129],close:[0,14,22,25,38,39,40,42,45,47,49,50,63,68,75,89,93,95,99,102,104,105,109,124,130,132,136,168,170,178,179,185,189,211,220,223,225,226,267,275,276,283,285,293,294,306,314,320,326,334],close_lid:225,close_menu:326,closedlidst:226,closelidev:226,closer:[204,220],closest:[38,113,342],cloth:[140,141,177,320],clothedcharact:181,clothedcharactercmdset:181,clothes_list:181,clothing_typ:181,clothing_type_count:181,clothing_type_ord:181,cloud:[89,99,101,102,131],cloud_keep:199,cloudi:101,clr:[113,249,334],cls:[38,143],clue:230,clunki:[130,220],clutter:152,cma:130,cmd:[12,14,22,25,28,29,31,33,40,42,43,57,59,61,70,79,81,84,87,94,120,122,151,153,155,156,157,158,163,164,165,166,167,168,169,170,173,178,179,180,181,184,185,186,187,188,192,198,199,200,201,202,205,211,212,213,214,216,217,218,219,220,223,229,230,231,232,234,245,289,293,294,320,324,326,327],cmd_arg:90,cmd_channel:[33,149],cmd_ignore_prefix:150,cmd_kei:90,cmd_last:104,cmd_last_vis:104,cmd_loginstart:33,cmd_multimatch:[33,149],cmd_na_m:87,cmd_name:87,cmd_noinput:[33,149,326],cmd_nomatch:[33,149,231,326],cmd_noperm:33,cmd_on_exit:[50,187,214,247,326],cmd_total:104,cmdabil:[59,126],cmdabout:168,cmdaccept:178,cmdaccess:164,cmdaddcom:163,cmdallcom:163,cmdapproach:220,cmdarmpuzzl:202,cmdasync:10,cmdattack:[29,72,115,122,216,217,218,219,220,230],cmdban:156,cmdbatchcod:157,cmdbatchcommand:157,cmdbigsw:29,cmdblindhelp:223,cmdblindlook:223,cmdblock:25,cmdboot:156,cmdbridgehelp:231,cmdbui:84,cmdbuildshop:84,cmdcallback:192,cmdcast:219,cmdcboot:163,cmdcdesc:163,cmdcdestroi:163,cmdcemit:163,cmdchannel:163,cmdchannelcr:163,cmdcharactercr:180,cmdcharcreat:155,cmdchardelet:155,cmdclimb:230,cmdclock:163,cmdcloselid:223,cmdcolortest:155,cmdcombathelp:[216,217,218,219,220],cmdconfigcolor:80,cmdconfirm:33,cmdconnect:40,cmdcopi:158,cmdcover:181,cmdcpattr:158,cmdcraftarmour:29,cmdcreat:158,cmdcreatenpc:122,cmdcreatepuzzlerecip:202,cmdcwho:163,cmddarkhelp:231,cmddarknomatch:231,cmddeclin:178,cmddefend:115,cmddelcom:163,cmddesc:[158,186],cmddestroi:158,cmddiagnos:30,cmddice:[57,184],cmddig:158,cmddisconnect:40,cmddisengag:[115,216,217,218,219,220],cmddoff:217,cmddon:217,cmddrop:[164,181],cmdeast:231,cmdecho:[5,29,33],cmdedit:179,cmdeditnpc:122,cmdeditorbas:324,cmdeditorgroup:324,cmdeditpuzzl:202,cmdemit:156,cmdemot:205,cmdentertrain:120,cmdevalu:178,cmdevmenunod:326,cmdexamin:158,cmdexiterror:43,cmdexiterroreast:43,cmdexiterrornorth:43,cmdexiterrorsouth:43,cmdexiterrorwest:43,cmdextendedroomdesc:186,cmdextendedroomdetail:186,cmdextendedroomgametim:186,cmdextendedroomlook:186,cmdfeint:115,cmdfight:[216,217,218,219,220],cmdfind:158,cmdfinish:178,cmdforc:156,cmdget:[25,164],cmdgetinput:326,cmdgetweapon:230,cmdgive:[164,181],cmdgmsheet:57,cmdhandler:[31,33,82,88,140,141,143,148,150,151,152,153,155,166,167,169,173,186,202,244,245,254,342],cmdhelp:[115,165,216,217,218,219,220],cmdhit:115,cmdhome:164,cmdic:155,cmdid:270,cmdinsid:120,cmdinterrupt:169,cmdinventori:[81,164,181],cmdirc2chan:163,cmdlaunch:21,cmdlearnspel:219,cmdleavetrain:120,cmdlen:[150,167],cmdlight:230,cmdline:265,cmdlineinput:324,cmdlink:158,cmdlistarmedpuzzl:202,cmdlistcmdset:158,cmdlisthangout:118,cmdlistpuzzlerecip:202,cmdlock:158,cmdlook:[30,52,126,164,180,186,231],cmdlookbridg:231,cmdlookdark:231,cmdmail:198,cmdmailcharact:198,cmdmakegm:57,cmdmapbuild:199,cmdmask:205,cmdmobonoff:229,cmdmore:327,cmdmorelook:327,cmdmultidesc:[56,201],cmdmvattr:158,cmdmycmd:[55,67],cmdname2:150,cmdname3:150,cmdname:[39,58,73,82,87,122,136,149,150,153,158,166,167,169,270,288,289,293,294,306],cmdnamecolor:214,cmdnewpassword:156,cmdnick:164,cmdnoinput:179,cmdnomatch:179,cmdnpc:122,cmdnudg:223,cmdobj:[149,150,167,169],cmdobj_kei:149,cmdobject:[149,150,168],cmdoffer:178,cmdooc:155,cmdooccharactercr:180,cmdooclook:[155,180],cmdopen:[158,211],cmdopenclosedoor:211,cmdopenlid:223,cmdoption:155,cmdpage:163,cmdparri:115,cmdparser:[103,140,141,148],cmdpass:[216,217,218,219,220],cmdpassword:155,cmdperm:156,cmdplant:232,cmdpoke:118,cmdpose:[115,164,205],cmdpressbutton:230,cmdpush:223,cmdpy:168,cmdquell:155,cmdquit:155,cmdread:230,cmdrecog:205,cmdreload:168,cmdremov:181,cmdreset:168,cmdrest:[216,217,218,219,220],cmdroll:90,cmdrss2chan:163,cmdsai:[115,164,205],cmdsaveyesno:324,cmdscript:[158,168],cmdsdesc:205,cmdser:326,cmdserverload:168,cmdservic:168,cmdsession:155,cmdset:[2,7,14,21,22,25,31,33,34,39,40,41,43,46,50,56,59,61,67,68,80,84,88,95,96,104,115,120,122,140,141,143,148,149,150,152,153,158,159,160,161,162,165,166,167,168,169,173,178,179,180,181,184,186,188,192,198,200,202,205,212,213,216,217,218,219,220,223,226,229,230,231,232,239,244,245,254,296,303,304,316,324,326,327],cmdset_account:[2,140,148,154,180],cmdset_charact:[5,95,140,148,154,181,216,217,218,219,220],cmdset_mergetyp:[50,187,247,326],cmdset_prior:[50,187,247,326],cmdset_red_button:[140,177,221],cmdset_sess:[104,140,148,154],cmdset_stack:152,cmdset_storag:[147,244,304],cmdset_trad:178,cmdset_unloggedin:[33,140,148,154,185,200],cmdsetattribut:158,cmdsetclimb:230,cmdsetcommand:151,cmdsetcrumblingwal:230,cmdsetdesc:164,cmdsethandl:[104,140,141,148],cmdsethelp:165,cmdsethom:158,cmdsetkei:31,cmdsetkeystr:151,cmdsetlight:230,cmdsetmor:327,cmdsetobj:[151,152,159,160,161,162,178,179,180,181,184,186,200,202,205,213,216,217,218,219,220,223,229,230,231,324,326,327],cmdsetobjalia:158,cmdsetpow:122,cmdsetread:230,cmdsetspe:212,cmdsettestattr:49,cmdsettrad:178,cmdsettrain:120,cmdsetweapon:230,cmdsetweaponrack:230,cmdsheet:57,cmdshiftroot:230,cmdshoot:[21,220],cmdshutdown:168,cmdsmashglass:223,cmdsmile:33,cmdspawn:158,cmdspellfirestorm:28,cmdstatu:[178,219,220],cmdstop:212,cmdstring:[33,57,149,153,166,167,169],cmdstyle:155,cmdtag:158,cmdtalk:213,cmdteleport:158,cmdtest:[29,41,90],cmdtestid:33,cmdtestinput:50,cmdtestmenu:[50,187,326],cmdtime:[61,168],cmdtrade:178,cmdtradebas:178,cmdtradehelp:178,cmdtunnel:158,cmdtutori:231,cmdtutoriallook:231,cmdtutorialsetdetail:231,cmdtweet:70,cmdtypeclass:158,cmdunban:156,cmdunconnectedconnect:[170,185],cmdunconnectedcr:[170,185],cmdunconnectedhelp:[170,185],cmdunconnectedlook:[170,185],cmdunconnectedquit:[170,185],cmduncov:181,cmdunlink:158,cmdunloggedinlook:200,cmdunwield:217,cmduse:218,cmdusepuzzlepart:202,cmdwait:33,cmdwall:156,cmdwear:181,cmdwerewolf:25,cmdwest:231,cmdwhisper:164,cmdwho:155,cmdwield:217,cmdwipe:158,cmdwithdraw:220,cmset:152,cmsg:[42,163],cmud:24,cnf:[23,36],cnt:118,coast:[110,121],coastal:110,cockpit:21,code:[0,1,2,4,5,6,7,9,10,11,12,14,15,16,18,19,20,29,31,33,34,36,37,38,39,42,44,45,46,47,48,50,52,54,55,56,57,61,62,63,67,68,69,75,76,78,79,83,85,87,88,90,92,93,94,95,96,97,99,101,102,103,104,105,108,109,110,111,113,114,115,116,117,118,120,121,122,124,125,126,128,131,133,134,135,138,140,141,143,148,149,152,155,157,158,163,168,171,177,178,179,183,184,189,191,194,199,203,218,231,232,240,250,254,276,277,293,304,307,316,318,319,324,326,328,339,340,341,342,360,361,362],code_exec:320,codebas:[54,55,126,128,130,138,139,169],codec:319,codefunc:324,coder:[22,26,55,60,78,95,123,149,245,361],coerc:337,coexist:125,coin:[60,69,178],col:[3,16,328],cold:[12,42,109,168,250,255,259,303],cole:342,collabor:[4,60,63,89,130,165],collat:[82,249],collect:[11,26,31,52,135,149,151,202,257,314,342],collector:135,collectstat:[135,136,265,269],collid:[31,53,89,326],collis:[31,130],colon:[27,40,59,79,94,240],color:[16,18,20,33,48,50,57,58,62,68,73,78,94,108,110,113,123,128,136,138,153,155,182,189,205,214,232,249,270,277,285,288,293,294,319,328,334,336,341,343,362],color_ansi_bright_bg_extra_map:182,color_ansi_bright_bgs_extra_map:182,color_ansi_extra_map:182,color_markup:[140,141,177],color_no_default:182,color_typ:319,color_xterm256_extra_bg:182,color_xterm256_extra_fg:182,color_xterm256_extra_gbg:182,color_xterm256_extra_gfg:182,colorablecharact:80,colorback:341,colorcod:341,colour:[27,42,54,138,158,292,319,328],column:[16,45,48,57,63,68,85,110,136,153,155,233,328,342],com:[8,9,22,23,42,53,54,62,66,74,78,89,93,97,99,102,107,127,129,130,132,134,137,140,163,179,185,277,280,289,293,310,328,341,342,355],comb:1,combat:[11,14,25,28,31,45,54,62,63,72,78,101,107,108,110,116,121,123,124,130,138,152,216,217,218,219,220,229,254,362],combat_:[216,217,218,219,220],combat_cleanup:[216,217,218,219,220],combat_cmdset:115,combat_handl:115,combat_handler_:115,combat_movesleft:[216,217,218,219],combat_scor:122,combat_status_messag:220,combatcmdset:115,combathandl:115,combatscor:122,combatt:11,combin:[8,11,12,20,27,28,30,31,33,34,40,42,54,56,57,83,89,108,111,113,114,117,118,120,126,149,150,151,158,174,201,202,204,225,240,249,259,265,315,317,322,336,342],combo:104,come:[0,2,3,4,6,10,11,15,16,20,21,23,25,27,29,33,34,39,45,48,50,51,54,56,57,60,61,63,68,72,79,82,84,87,90,92,99,104,110,113,115,117,118,120,122,123,125,128,130,132,133,134,136,143,151,186,203,216,217,218,219,220,250,283,288,293,294,296,302,319,327,360],comet:[39,54,136,294],comfort:[15,54,68,90,130],comlist:[42,163],comm:[33,34,40,46,63,67,70,140,141,148,154,322],comma:[20,42,45,85,94,113,133,158,166,167,197,198,240,245,334],command:[0,2,4,6,8,9,10,11,12,13,15,18,19,20,21,23,24,26,27,34,36,39,45,46,47,48,49,50,51,54,55,56,58,60,62,63,64,65,66,68,71,72,73,74,75,76,78,79,82,85,86,88,89,91,92,94,95,97,101,102,103,104,105,107,108,109,110,111,112,113,116,117,118,119,121,123,124,125,127,128,130,135,136,137,138,139,140,141,143,145,173,174,177,178,179,180,181,184,185,186,187,188,190,193,195,196,198,199,200,201,202,205,209,211,212,213,214,216,217,218,219,220,223,225,226,229,230,231,232,233,234,237,239,240,245,249,250,254,262,265,270,274,275,283,285,288,289,293,294,296,297,303,304,316,318,319,322,324,326,327,336,339,342,360,362],command_default_arg_regex:33,command_default_class:25,command_pars:150,commandhandl:[73,152,167,342],commandlin:342,commandmeta:153,commandnam:[33,73,82,232,265,274,304,306],commandset:[5,79,88,152,180],commandtest:[126,169,195],comment:[8,9,13,14,24,25,37,40,47,59,89,95,117,124,137,320],commerc:78,commerci:[89,105],commerror:175,commit:[15,23,25,36,37,63,65,97,99,107,127,129,208,313],commmand:[211,216,217,218,219,220],common:[1,6,10,12,15,16,20,26,27,30,33,39,40,42,50,58,59,60,61,62,63,67,68,72,73,78,79,82,87,89,90,93,96,104,106,108,111,112,114,115,118,122,123,124,130,132,138,151,158,178,204,205,212,240,254,293,297,315,325,337,339,342,348,360],commonli:[23,52,62,63,82,85,86,95,103,104,106,114,118,127,245],commun:[8,22,23,33,39,40,44,46,54,56,59,63,69,71,78,82,87,89,90,91,102,105,112,113,136,138,160,171,173,174,175,176,198,244,262,274,275,285,286,288,289,290,291,304,306,322,323,338,362],compact:[84,133],compani:[63,87],compar:[4,9,13,15,27,28,29,31,40,43,57,72,82,84,90,96,115,118,122,126,130,169,199,202,204,216,217,218,219,220,239,240,250,319,342],comparison:[13,92,239,250,326],compartment:57,compass:20,compat:[14,21,50,93,158,328,335],compet:[15,87],compil:[9,33,46,55,62,74,75,89,93,94,107,158,164,165,170,173,181,200,205,319,324,341],compilemessag:75,complain:[41,59,85,90,109,127],complement:[26,106],complementari:112,complet:[2,10,11,13,14,15,22,23,25,27,31,33,36,37,42,43,48,49,50,52,57,58,60,61,63,69,76,80,84,87,88,89,94,95,101,103,104,106,109,110,121,122,126,127,130,138,143,151,152,153,166,168,173,182,186,187,189,194,196,199,217,231,245,265,267,275,276,293,320,325,326,327,334,339,342,355],complete_task:194,completli:226,complex:[11,14,15,20,31,33,58,60,61,63,72,75,76,85,92,95,99,103,107,110,114,115,122,126,137,152,195,203,213,250,297],complianc:[24,186],compliant:[38,289],complic:[0,10,22,29,40,42,48,68,89,90,110,132,133,170,185,187,214,314],compon:[29,33,39,42,48,57,89,92,93,95,101,109,113,115,123,126,134,136,137,138,158,168,174,175,176,183,202,204,250,251,254,257,265,294,322,325,339,342,362],componentid:136,componentnam:136,componentst:[136,137],compos:[99,187],composit:[291,315],comprehens:[34,54,62,79,92,95,102,123,124,126],compress:[73,270,274,278,338],compress_object:338,compris:143,compromis:[102,208],comput:[10,12,42,48,55,59,62,63,71,72,99,112,114,123,130,131,156,168,205,342,343],computation:114,comsystem:[163,176],con:[42,57,78,170,185],concaten:[319,334],concept:[11,37,38,39,45,56,60,68,75,76,91,95,114,123,130,138,180,201],conceptu:[48,50],concern:[43,62,75,87,94,95,151,203,237],conch:[93,285,288,296],conclud:[95,178,326],concurr:23,conda:9,conder:320,condit:[8,45,48,54,60,72,84,90,92,95,122,123,149,184,205,218,240,245,257,264,265,310,342],condition:25,condition_result:184,condition_tickdown:218,conditional_flush:332,conduct:135,conductor:120,conect:306,conf:[4,8,9,23,25,35,36,39,40,46,53,61,64,66,68,73,75,79,80,85,89,92,102,108,113,119,120,126,130,132,133,134,138,143,182,200,265,271,272,311,320,335,362],confer:[78,342],confid:[37,38,41],config:[2,4,9,36,39,58,62,89,97,102,105,129,130,136,137,138,261,265,267,271,272,283,362],config_1:2,config_2:2,config_3:2,config_color:80,configcmd:80,configdict:[285,306],configur:[0,2,7,25,36,42,44,46,53,58,61,62,63,66,68,89,99,102,113,119,123,126,135,137,138,143,147,150,155,208,209,232,258,267,272,283,306,310,311,315,355,362],configut:105,configvalu:58,confirm:[8,33,42,62,102,136,158,185,202,289,292,360],conflict:[40,41,125],confus:[10,22,26,31,43,57,58,59,63,76,79,86,89,90,92,96,113,118,125,130,135,136,139,185,360],conid:284,conjur:219,conn:[42,170,185],conn_tim:104,connect:[0,2,4,7,8,9,11,12,13,17,18,23,24,25,31,33,34,39,40,45,46,48,54,56,59,62,63,64,65,68,71,73,75,76,79,82,84,87,88,90,91,92,95,97,99,100,101,102,103,104,106,109,110,113,119,122,124,125,126,135,136,138,143,145,147,155,156,158,163,170,174,176,185,189,191,192,194,196,200,209,212,244,245,251,260,262,265,267,274,275,276,277,278,283,284,285,288,293,294,296,297,303,304,305,306,307,310,314,316,322,338,362],connection_cr:106,connection_screen:[35,103,200],connection_screen_modul:185,connection_set:53,connection_tim:[143,245],connection_wizard:[140,141,260],connectiondon:267,connectionlost:[267,274,275,285,288,296],connectionmad:[262,274,285,288,296],connectionwizard:263,connector:[262,276,277,283,306],consecut:50,consequ:[89,152],consid:[0,4,10,12,13,14,23,26,27,31,33,37,38,39,43,45,50,54,56,60,62,63,69,73,77,79,81,84,85,89,92,95,96,101,102,104,108,111,112,113,114,118,120,124,130,132,133,134,143,151,187,202,204,205,220,232,245,250,254,270,285,288,315,320,321,326,327],consider:[67,85,103,110,117,239,250,328],consist:[2,11,17,33,43,45,47,50,67,79,85,91,94,95,108,109,113,115,121,122,134,136,143,150,166,175,178,202,204,234,240,248,250,289,294,304,313,314,316,322,327,328,360],consol:[9,19,23,26,41,42,59,62,63,74,89,92,94,95,96,99,105,113,122,136,137,168,205,265],conson:204,constant:[0,87,274,340],constantli:[95,116,231],constitu:[152,166,167],constraint:[0,23],construct:[20,29,34,36,50,63,118,132,137,250,309,314,319,327,355],constructor:[22,33,179,276],consum:[10,267],consumer_kei:[70,119],consumer_secret:[70,119],consumpt:[23,308],contact:[88,89,99,136],contain:[0,5,7,9,10,11,13,14,16,17,18,20,21,22,25,26,31,33,34,37,38,39,40,42,45,46,50,54,55,56,61,62,63,67,68,74,78,79,85,88,90,94,95,96,100,101,103,104,113,117,118,121,122,123,125,126,127,128,132,133,135,136,137,138,140,141,143,145,148,149,150,151,152,154,157,158,165,171,179,187,188,191,192,193,194,195,196,197,199,202,203,204,205,209,210,212,214,218,223,230,232,233,236,238,245,247,248,249,250,258,260,264,268,270,296,309,310,314,315,316,317,318,319,320,323,325,326,327,328,339,341,342,343,353,360,361],container:99,contempl:55,content:[3,4,13,16,17,21,27,38,42,47,48,52,55,57,68,76,78,81,84,88,89,90,92,94,95,116,118,120,122,124,130,132,133,136,137,138,153,156,158,205,244,245,313,317,319,320,321,324,327,328,339,344,353],content_typ:[244,245],contentof:328,contents_cach:244,contents_get:[118,245],contents_set:245,contentshandl:244,context:[45,54,68,90,113,118,125,132,179,194,286,290,348,360],contextu:111,continu:[7,10,11,21,27,29,33,37,41,44,45,48,50,54,57,59,68,70,74,84,85,89,94,95,111,113,114,115,118,122,123,126,135,138,199,245,263,274,310,314,326,335,342,362],contrari:[0,40,42,61,168,317],contrast:[55,89,95,112,137,289],contrib:[4,13,14,20,46,56,57,61,62,63,72,77,101,115,121,140,141,143,144,147,172,235,242,252,261,307,313,320,347,355,360,362],contribrpcharact:205,contribrpobject:205,contribrproom:205,contribut:[1,4,22,26,44,54,69,77,81,123,126,130,135,138,177,178,180,181,182,184,186,198,199,200,202,203,205,208,209,211,212,213,232,362],contributor:[77,179],control:[2,5,7,9,11,12,13,14,19,20,21,24,31,33,34,36,37,41,42,46,49,50,51,52,54,56,57,60,62,63,67,72,73,79,80,82,85,88,89,91,92,95,101,102,104,107,108,109,113,117,120,122,123,127,134,137,138,143,145,155,157,158,163,178,180,193,205,226,229,231,233,239,245,254,265,304,306,316,326,355,362],convei:[196,205,245],convenei:106,conveni:[8,9,10,11,21,34,36,39,40,42,50,54,56,58,68,73,79,85,88,95,97,101,105,107,108,109,124,126,132,139,143,158,168,179,198,199,245,308,320,321,326,327,335,338,339],convent:[0,31,85,95,106,118,125],convention:[40,153,173,245,316],convers:[50,86,120,126,137,204,213,293,294,319,342,361],convert:[11,27,38,39,48,58,61,63,78,80,82,84,86,87,102,108,112,113,118,125,127,156,183,184,187,214,239,249,250,255,274,276,285,288,289,306,310,319,323,327,328,329,334,338,341,342],convert_linebreak:341,convert_url:341,convinc:[50,89],cool:[3,9,21,22,26,42,60,78,158],cool_gui:79,cooldown:[29,115,123,138,362],coord:38,coordi:38,coordin:[48,123,136,138,199,220,233,362],coordx:38,coordz:38,cope:219,copi:[0,1,4,13,14,20,25,26,33,36,46,47,49,50,61,63,80,89,92,95,99,103,104,108,110,122,127,130,132,134,135,136,137,157,158,181,194,216,217,218,219,220,231,245,265,274,311,319,335,360],copy_object:245,copyright:[77,89],cor:137,core:[19,37,42,46,48,75,77,87,88,93,95,103,105,124,126,130,138,143,147,168,176,177,196,198,237,239,244,245,254,260,272,282,289,303,314,316,317,320,327,333,355,360],corner:[17,38,56,78,137,233,328],corner_bottom_left_char:328,corner_bottom_right_char:328,corner_char:328,corner_top_left_char:328,corner_top_right_char:328,corpu:204,correct:[10,11,14,21,23,27,30,31,33,37,42,47,49,59,79,90,112,113,120,122,125,136,149,155,158,175,186,202,227,240,280,283,285,291,305,319,342],correctli:[4,8,9,27,29,33,36,41,43,48,49,50,60,61,71,76,79,84,89,90,93,96,109,111,114,120,121,122,125,143,147,152,155,255,274,310,338],correl:250,correspond:[20,33,79,84,104,134,183,199,202,214,313,355],correspondingli:127,corrupt:55,cosi:110,cosin:342,cosmet:233,cost:[28,84,89,219,233],cottag:[110,113],could:[0,1,2,3,4,5,6,9,10,11,12,13,14,15,19,20,21,22,25,28,29,30,31,33,34,36,37,38,39,40,41,42,43,45,46,47,48,50,54,56,57,59,60,61,62,63,64,67,68,70,71,72,78,79,80,81,82,83,84,85,86,87,88,89,90,92,94,95,97,101,105,107,108,110,111,112,113,114,115,116,117,118,119,120,122,124,125,126,127,128,131,132,134,135,137,139,143,152,158,165,175,176,178,179,184,189,196,197,203,205,212,214,231,233,239,240,245,270,289,294,310,316,319,320,324,328,329,332,337,342],couldn:[11,19,38,43,63,75,90,125,133,139,203],count:[63,101,103,115,118,119,151,181,214,218,245,257,279,283,296,300,306,308,315,319,326,335],count_loggedin:283,count_queri:300,countdown:[20,29],counter:[6,22,29,68,84,104,115,127,145,231,283,296,297,304,326],counterpart:[13,113,270,306,323],countless:94,countri:[42,156],coupl:[22,47,68,99,116,130,212],cours:[0,4,9,12,15,21,22,26,33,40,45,56,60,63,76,77,90,92,105,107,113,114,121,122,123,129,131,139,217,220],courtesi:12,cousin:[90,128],cover:[6,8,9,13,14,23,29,37,39,47,56,58,62,78,79,85,89,94,95,119,126,130,181,186,231,245,342,361],coverag:126,coveral:126,cpanel:89,cpattr:158,cpu:[12,42,89,102,168],cpython:92,crack:[60,85],craft:[29,79,110,187],crank:[114,256],crash:[26,59,60,78,102,110,269,314],crate:[20,86,123],crawl:102,crawler:279,cre:[42,170,185],creat:[4,9,11,13,14,15,16,19,22,23,25,26,29,31,34,35,37,38,39,40,41,43,45,46,48,49,50,53,54,55,56,57,59,60,61,62,63,64,65,67,69,70,71,72,74,75,76,77,78,79,80,84,86,89,90,92,94,95,101,102,103,104,105,106,107,108,111,115,116,117,118,119,121,123,126,128,129,130,131,133,134,135,136,137,138,139,140,141,143,144,145,147,149,150,151,152,153,155,158,163,164,165,166,167,169,170,173,174,176,178,179,180,181,183,184,185,186,187,188,193,194,195,197,198,199,200,201,202,203,204,205,209,211,213,214,216,217,218,219,220,222,223,225,226,229,230,231,232,233,237,240,242,244,245,247,248,249,250,254,257,258,259,262,265,269,270,275,277,278,283,285,286,290,297,305,306,310,314,315,316,317,318,320,321,324,325,326,328,329,334,335,342,358,360,361],create_:[88,124],create_account:[106,124,140,322],create_attribut:314,create_channel:[34,140,173,174,269,322],create_charact:245,create_delai:258,create_exit:[158,211],create_exit_cmdset:245,create_forward_many_to_many_manag:[147,176,237,244,254,314,316,317,333],create_game_directori:265,create_grid:48,create_help_entri:[67,140,322],create_kwarg:250,create_match:150,create_messag:[34,140,322],create_object:[13,27,79,84,88,110,122,124,132,140,245,250,269,320,322],create_prototyp:[249,250],create_script:[55,101,115,124,140,257,320,322],create_secret_kei:265,create_settings_fil:265,create_superus:265,create_tag:315,create_wild:233,created_on:191,createview:360,creation:[11,14,20,21,42,46,48,50,57,59,60,78,79,80,85,88,96,104,110,122,124,130,132,138,139,140,143,144,147,158,165,174,180,199,202,205,209,211,216,217,218,219,220,230,231,237,242,244,245,250,254,259,298,313,316,322,324,325,326,328,355,360,361],creation_:322,creativ:[78,107],creator:[50,78,79,110,122,139,165,174,199,216,217,218,219,220,245,328],cred:[93,130,285],credenti:[89,102,130,143,285],credentialinterfac:285,credit:[89,102,130,341,342],creset:130,crew:118,criteria:[50,118,175,193,203,249,315,339],criterion:[118,130,143,178,205,236,245,256,339,342],critic:[19,26,31,59,62,96,101,104,113,127,240,264,265,335],critici:316,crop:[57,113,158,325,328,334,342],crop_str:328,cross:[110,137,231,328],crossbario:293,crossbow:29,crossroad:110,crowd:[60,102],crt:[8,66],crucial:[90,114],crude:0,cruft:1,crumblingwal:230,crumblingwall_cmdset:230,crush:21,cryptic:137,cryptocurr:102,cscore:122,csessid:[283,293,294,306],csession:[293,294],csrf_token:132,css:[17,54,123,134,135,136,341],cssclass:136,ctrl:[47,62,89,92,94,99,109,296],culpa:51,cumbersom:[50,120,127,214],cumul:297,cup:69,cupidatat:51,cur_valu:189,cure:[218,219],cure_condit:218,curi:48,curiou:107,curli:[40,95,182],curly_color_ansi_bright_bg_extra_map:182,curly_color_ansi_bright_bgs_extra_map:182,curly_color_ansi_extra_map:182,curly_color_xterm256_extra_bg:182,curly_color_xterm256_extra_fg:182,curly_color_xterm256_extra_gbg:182,curly_color_xterm256_extra_gfg:182,curr_sess:306,curr_tim:186,currenc:[84,119],current:[0,2,9,11,12,13,14,19,20,21,22,24,25,27,28,29,31,33,40,42,45,47,48,49,50,57,58,59,63,67,73,75,76,78,79,84,85,88,93,96,99,101,103,104,105,111,113,114,115,118,119,120,122,123,126,127,130,132,136,137,143,147,149,150,152,153,155,156,158,163,164,165,167,168,174,178,179,181,186,187,189,194,197,199,201,203,205,211,212,214,216,217,218,219,220,230,231,233,236,244,245,250,254,258,259,265,270,275,281,282,285,286,297,304,306,308,315,316,324,326,328,329,335,336,339,342,360],current_choic:179,current_coordin:233,current_kei:[248,249],current_us:132,current_weath:101,currentroom:120,curriculum:78,curs:41,curv:[54,55],curx:48,custom:[0,2,6,11,12,14,15,16,17,18,20,21,25,26,27,30,31,33,34,35,42,48,54,55,57,59,60,63,64,65,67,68,70,72,73,77,78,82,84,85,86,88,89,96,99,101,103,108,109,111,113,115,116,117,118,120,121,122,124,125,131,132,135,137,138,139,143,144,145,146,147,149,151,152,153,158,163,164,165,173,174,178,180,181,183,184,186,187,188,194,196,197,199,202,204,205,208,209,230,231,233,236,239,243,245,247,248,249,250,253,259,261,265,269,271,274,296,305,316,321,324,328,332,334,336,337,341,342,347,360,362],custom_add:194,custom_cal:[194,197],custom_gametim:[61,140,141,177],custom_kei:249,custom_pattern:[3,4,68,132,133],customis:233,customiz:[17,40,179,187,189,205],customlog:8,cut:[20,39,48,49,54,90,110,122,136,250],cute:135,cutoff:342,cvcc:204,cvccv:204,cvccvcv:204,cvcvcc:204,cvcvccc:204,cvcvccvv:204,cvcvcvcvv:204,cvcvvcvvcc:204,cvv:204,cvvc:204,cwho:163,cyan:[113,125],cyberspac:78,cycl:[13,14,25,55,60,61,131,216,217,218,219,220],cyril:15,daemon:[8,92,99,102,109,282,310],dai:[27,36,55,60,61,99,102,107,119,125,130,131,138,183,186,329,335,342,343],daili:86,dailylogfil:335,dali:204,dalnet:[42,163],dam:55,damag:[14,21,28,60,72,84,102,115,121,216,217,218,219,220,229,230],damage_rang:219,damage_taken:55,damage_valu:[216,217,218,219,220],damnedscholar:47,dandi:139,danger:[13,31,81,96,104,151],dare:33,dark:[13,14,17,31,72,78,110,113,121,125,152,186,223,231,239,254,320],darkcmdset:231,darker:[113,125],darkgrai:125,darkroom:231,darkroom_cmdset:231,darkstat:231,dash:[118,203,214],dashcount:214,data:[2,10,13,15,22,23,25,27,42,55,56,57,58,60,63,74,82,85,86,87,89,92,95,96,99,101,103,108,111,112,118,124,127,132,133,134,136,137,138,143,144,145,153,158,168,174,187,189,193,194,205,208,209,235,242,244,245,247,251,257,259,262,263,267,271,272,274,275,276,277,278,283,284,285,286,288,289,290,292,293,294,296,297,298,303,304,305,306,312,313,314,315,316,317,319,320,321,322,323,325,326,327,328,331,335,336,337,338,355,360],data_in:[39,82,209,274,276,277,283,284,288,293,294,304,305,306],data_out:[39,209,283,285,288,289,294,304,305,306],data_to_port:262,data_to_serv:275,databa:265,databas:[0,4,5,6,7,11,12,13,15,17,19,20,21,23,27,28,29,31,34,36,38,42,44,46,54,55,56,57,58,59,60,62,63,73,76,79,83,86,88,90,92,99,100,101,103,104,106,109,110,111,114,115,118,122,123,124,126,129,130,132,133,134,135,137,138,139,143,147,151,152,158,165,168,172,173,174,175,176,186,193,194,196,205,219,231,234,236,237,239,242,244,245,248,249,251,252,254,255,259,265,269,271,282,296,303,312,313,314,315,316,317,320,322,323,330,332,338,339,342,344],datareceiv:[267,274,288,296],datastor:85,datbas:118,date:[7,11,12,23,34,48,61,67,74,75,85,125,127,130,132,137,144,152,156,208,329,335,343],date_appli:132,date_cr:[124,143,147,176,254,314,316],date_join:[144,147],date_s:34,datetim:[61,124,132,314,329,335,336,342,343],datetime_format:342,datetimefield:[85,132,144,147,176,244,254,314,316,342],david:78,day_rot:335,db3:[23,110,127,130],db_:[83,85,118,124,205,245,255,270,339],db_account:[181,242,244,254],db_account__db_kei:242,db_account_id:[244,254],db_account_subscript:[172,176],db_attribut:[106,118,144,147,176,242,244,254,316],db_attrtyp:314,db_attryp:86,db_categori:[85,313,314,317],db_category__iequ:85,db_channel:172,db_cmdset_storag:[144,147,181,242,244],db_data:[313,317],db_date_cr:[85,147,172,176,181,244,254,314,316],db_desc:254,db_destin:[181,242,244],db_destination__isnul:119,db_destination_id:244,db_entrytext:[235,237],db_header:176,db_help_categori:[235,237],db_hide_from_account:176,db_hide_from_channel:176,db_hide_from_object:176,db_hide_from_receiv:176,db_hide_from_send:176,db_home:[181,242,244],db_home_id:244,db_index:85,db_interv:[252,254],db_is_act:254,db_is_bot:[144,147],db_is_connect:[144,147],db_kei:[68,83,85,118,124,144,172,181,193,235,237,242,252,255,261,272,313,314,316,317,355],db_key__contain:124,db_key__icontain:85,db_key__istartswith:118,db_key__startswith:[118,124],db_locat:[83,118,181,242,244],db_location__db_tags__db_kei:118,db_location__isnul:119,db_location_id:244,db_lock_storag:[144,172,176,181,235,237,242,314,316],db_messag:[172,176],db_model:[314,317],db_obj:[252,254,323],db_obj_id:254,db_object_subscript:[172,176],db_permiss:[85,144],db_persist:[252,254],db_properti:270,db_protototyp:249,db_receiv:172,db_receivers_account:176,db_receivers_channel:176,db_receivers_object:176,db_receivers_script:176,db_repeat:[252,254],db_sender:172,db_sender_account:176,db_sender_extern:176,db_sender_object:176,db_sender_script:176,db_sessid:[181,242,244],db_staff_onli:[235,237],db_start_delai:[252,254],db_strvalu:314,db_tag:[118,144,147,176,235,237,242,244,254,316,317],db_tags__db_categori:[38,118],db_tags__db_kei:[38,118,172],db_tags__db_key__in:38,db_tagtyp:[313,317],db_text:85,db_typeclass_path:[85,119,144,181,242,244,252,316,342],db_valu:[83,261,272,314],dbef:339,dbhandler:355,dbholder:314,dbid:[42,124,145,163,316],dbid_to_obj:342,dbmodel:315,dbobj:[11,314],dbobject:[11,315,316],dbprototyp:[168,249],dbref:[12,13,20,42,57,65,79,108,110,115,118,120,121,124,127,143,147,156,158,168,175,187,202,205,211,231,233,239,244,245,248,249,250,254,256,315,316,322,339,342],dbref_search:315,dbref_to_obj:342,dbrefmax:[42,158],dbrefmin:[42,158],dbsafe_decod:338,dbsafe_encod:338,dbserial:[11,96,140,141,255,318],dbshell:[23,85,109,127],dbunseri:323,ddesc:55,deactiv:[42,62,63,80,116,163,186,226,229,326],deactivatebuttonev:226,dead:[111,229,230,303,306,332],deadli:121,deal:[10,11,12,15,40,50,63,68,72,90,102,104,111,112,115,123,125,130,133,137,138,143,178,179,183,187,216,217,218,219,220,244,245,304,316,319,336,360],dealt:[166,167,218,219],dealth:218,death:[50,72,119],death_msg:229,death_pac:229,debat:90,debian:[8,23,62,66,130],debug:[14,27,42,44,50,58,71,73,90,94,101,105,134,138,149,153,157,168,187,247,265,270,276,277,288,310,320,326,335,342,362],debugg:[15,41,109,140],decemb:89,decend:149,decent:[92,204],decic:204,decid:[4,14,15,25,33,40,45,57,60,68,72,84,85,87,89,102,104,111,113,115,125,137,149,178,216,240,327],deciph:47,decis:[72,114],declar:[113,338],declared_field:[144,235,242,313,355],declin:[50,178],decod:[15,289,319,342],decode_gmcp:289,decode_msdp:289,decoded_text:342,decompos:132,decompress:[274,338],deconstruct:[121,169,227,291,340],decor:[0,29,33,45,106,130,147,244,254,262,274,275,316,322,326,327,342],decoupl:[9,249],decoupled_mut:11,decreas:[219,231,324],decrease_ind:324,dedent:[49,342],dedic:[72,89,126],deduc:324,deduce_ind:324,deduct:[72,84,216,217,218,219,220],deem:[37,56,128,130,177,360],deep:78,deeper:[40,214],deepest:158,deepli:11,deepsiz:342,def:[1,3,4,5,6,10,11,21,22,25,27,28,29,30,31,33,38,39,40,41,43,47,48,49,50,55,56,57,59,61,68,70,72,73,78,79,80,81,83,84,88,90,94,95,101,106,108,110,113,115,116,117,118,119,120,122,124,126,131,132,133,179,186,232,233,248,294,307,324,326,334,342],def_down_mod:218,defalt_cmdset:70,default_access:[1,11,314,322],default_categori:236,default_channel:34,default_charact:188,default_cmd:[5,21,22,25,28,29,30,40,43,52,56,57,61,80,115,118,140,179,181,186,198],default_cmdset:[5,22,25,30,35,40,43,56,57,59,61,80,104,122,152,179,180,181,186,187,199,201,211,214,216,217,218,219,220],default_command:25,default_confirm:[158,202],default_error_messag:338,default_hom:[58,108],default_in:136,default_out:136,default_pass:322,default_screen_width:33,default_set:[3,126],default_transaction_isol:23,default_unload:136,defaultaccount:[2,40,42,63,124,140,143,145,159,245,340],defaultchannel:[6,124,140,174],defaultcharact:[5,6,22,25,42,56,57,59,61,72,80,85,88,95,122,124,126,140,143,160,179,181,188,196,205,216,217,218,219,220,245,340],defaultcmdset:[184,223],defaultdict:255,defaultexit:[6,84,88,124,140,196,211,212,230,233,245,340],defaultguest:[140,143],defaultlock:239,defaultmod:335,defaultobject:[5,6,26,52,59,63,81,84,85,88,95,110,116,118,120,124,140,143,181,196,205,213,217,220,225,230,245,316,340],defaultpath:342,defaultroom:[6,38,48,55,84,88,124,131,140,186,196,205,231,233,245,340],defaultscript:[55,101,115,119,120,124,140,145,178,183,194,202,203,204,216,217,218,219,220,222,226,233,249,256,257,298,329,340],defaultsess:[42,161],defaultset:5,defaulttyp:310,defaultunloggedin:[42,162,200],defeat:[72,115,121,216,217,218,219,220,229],defeat_msg:229,defeat_msg_room:229,defend:[50,115,121,216,217,218,219,220,230,245],defens:[115,216,217,218,219,220],defense_valu:[216,217,218,219,220],defer:[10,27,29,33,93,132,144,147,149,176,186,212,237,244,245,254,258,262,272,274,275,306,310,314,316,317,333,335,342],deferredlist:310,defin:[0,2,4,5,10,11,12,13,14,20,21,22,25,27,30,35,36,39,41,42,43,45,48,49,54,55,56,57,58,60,61,63,67,68,72,73,76,77,80,82,84,87,88,90,94,95,96,103,105,108,110,112,113,114,116,118,120,122,124,125,126,128,132,134,135,136,137,138,140,142,144,147,149,151,152,153,155,158,164,166,167,168,169,172,174,175,176,179,181,182,183,184,186,187,193,194,197,199,202,203,204,205,213,214,218,219,222,223,226,230,231,234,235,236,237,238,239,240,241,242,244,245,249,250,254,257,259,260,262,265,272,275,296,297,304,305,306,309,312,314,315,316,317,319,320,321,324,326,329,333,334,337,339,342,344,355,360],define_charact:50,definit:[0,2,5,10,12,14,20,33,34,38,40,41,42,54,59,60,67,68,81,86,87,88,108,113,114,123,126,151,153,158,163,166,167,191,202,225,230,238,240,244,249,250,256,320,322,326,334,338],deflist:310,degrad:126,deindent:342,del:[11,12,29,42,57,79,115,121,156,158,186,201,202,248,316],del_callback:[192,194],del_detail:186,del_pid:265,delaccount:12,delai:[0,28,33,44,119,183,187,194,212,230,258,259,277,283,306,321,342],delaliaschan:[42,163],delayed_import:306,delchanalia:[42,163],delcom:[57,163],deleg:[147,176,237,244,254,314,316,317,333],delet:[2,4,7,11,12,13,20,22,23,31,42,49,50,62,65,67,79,86,88,97,99,101,104,106,110,111,115,121,127,130,143,152,155,156,157,158,163,164,165,168,173,174,176,186,191,192,194,195,196,198,201,202,211,226,230,237,240,245,249,255,256,257,259,271,283,304,313,314,316,319,320,326,332,358,360],delete_attribut:314,delete_default:[31,152],delete_prototyp:249,deletet:186,deleteview:360,deliber:[11,41,128],delic:181,delimit:[90,166,167,320],delin:47,deliv:[89,198,205],delpart:202,delresult:202,deltatim:342,delux:89,demand:[30,57,60,72,89,114,116,143,174,186,245,307,321],demo:[22,54,78,137,228,326],demon:108,demonin:342,demonstr:[0,4,22,125,132,179,187,208,218],demowiki:4,deni:[8,102,193,197],denot:[55,113,133,320],denounc:325,depart:48,depend:[0,4,10,11,12,14,15,16,22,27,31,33,34,37,39,42,45,48,50,54,56,57,60,62,63,68,71,72,73,74,82,84,87,89,92,94,96,99,101,102,103,104,105,110,113,114,115,117,122,124,130,132,133,136,137,142,149,151,153,155,168,174,179,180,184,186,192,204,233,240,245,249,257,259,265,285,288,294,296,306,316,317,324,342],deplet:218,deploi:[45,89,102],deploy:[36,78,89,99,105],depmsg:335,deprec:[27,50,108,140,141,250,260,335,342],deprecationwarn:264,depreci:319,depth:[16,17,36,94,113,121,123,214,250],dequ:[11,308],deriv:[23,55,62,66,99,107,118,124,126,232,319,343],desc:[14,20,21,22,34,40,56,57,59,68,73,79,81,83,84,88,101,108,110,115,119,133,152,155,158,169,179,181,186,201,202,211,214,219,233,254,263,320,322,324,325,326,355,360],desc_al:229,desc_dead:229,desc_lamp_broken:225,desc_lid_clos:225,desc_lid_open:225,descend:[118,355],describ:[5,9,11,13,14,20,21,22,30,31,33,37,42,45,50,54,57,61,62,63,67,68,70,74,75,78,79,84,85,87,89,91,95,101,108,109,110,112,113,115,123,124,126,127,129,130,132,134,136,138,151,158,162,163,164,176,181,183,186,203,205,219,225,242,250,257,262,283,285,288,298,326,341,342,361],descripion:229,descript:[0,14,15,20,21,22,34,38,40,42,45,48,50,53,54,56,57,59,60,67,73,76,84,89,95,101,108,110,111,125,128,130,132,133,134,138,144,155,158,163,164,174,178,179,181,186,201,203,205,211,214,225,229,230,231,232,233,235,239,242,245,254,320,322,326,336,337],description_str:110,descvalidateerror:201,deseri:[11,96,336],deserunt:51,design:[14,16,23,26,33,37,38,40,54,56,60,78,88,90,107,108,110,111,116,117,118,123,128,132,137,152,158,179,193,205,208,230,245,320,336,342],desir:[1,4,27,28,29,42,48,56,57,58,90,107,111,113,114,118,120,122,132,136,158,182,204,240,265,310,314,322,328,343],desired_perm:240,desktop:[15,16,137],despit:[11,13,56,62,63,78,80,104,231],dest:[232,245],destin:[0,22,25,33,42,48,73,76,84,88,90,108,110,118,120,158,196,199,208,211,212,216,217,218,219,220,230,239,244,245,250,322,360],destinations_set:244,destroi:[0,20,88,102,115,126,143,145,158,163,202,218,245],destroy:211,destruct:[31,151],detach:105,detail:[2,5,9,12,15,19,20,22,26,30,33,34,37,40,45,50,57,59,60,62,63,79,87,88,89,90,92,94,95,104,108,110,113,115,117,121,123,124,127,128,130,133,134,135,138,144,152,153,158,174,179,186,202,203,205,217,231,233,237,242,249,250,267,268,304,306,316,319,324,334,342,358,360],detailkei:[186,231],detailview:360,detect:[31,33,36,60,80,87,88,102,104,117,150,153,167,174,277],determ:315,determin:[2,4,13,15,20,27,29,31,33,34,38,42,43,48,49,50,51,62,72,79,81,82,84,86,92,101,108,109,115,122,135,136,143,144,151,152,153,155,166,172,174,178,199,204,205,212,214,216,217,218,219,220,230,237,240,242,245,249,289,314,315,316,319,324,327,342],detour:[21,82,306],dev:[1,23,37,54,56,60,62,63,66,70,75,78,89,94,97,137],develop:[3,9,15,16,19,20,25,26,27,33,36,37,41,42,47,53,54,55,57,59,60,62,63,67,69,70,71,75,76,79,85,87,89,90,92,93,95,96,98,103,105,107,108,110,113,122,125,130,132,134,135,136,137,138,156,157,163,168,174,191,192,197,208,226,237,245,250,311,316,320,326,361,362],devoid:319,dex:[11,50,57,325],dexter:[216,217,218,219,220],diagnos:[30,96],diagram:124,dialog:136,dialogu:[0,123,138,362],dice:[62,72,90,115,140,141,177],dicecmdset:184,dicenum:184,dicetyp:184,dict:[0,11,13,25,31,42,45,50,87,106,108,118,126,143,145,151,153,158,174,181,183,186,187,191,194,196,197,199,204,205,208,209,214,218,220,245,247,248,249,250,257,259,262,263,265,270,275,276,278,283,285,288,293,294,305,306,308,315,320,321,323,325,326,327,334,337,342,355,360],dictat:[31,61,116],dictionari:[0,10,11,13,25,31,42,48,54,55,61,68,72,79,95,96,108,115,123,133,137,156,158,181,183,186,187,191,194,197,199,204,205,208,209,210,214,218,219,231,233,240,250,270,283,292,304,305,306,308,315,319,321,325,326,332,336,337,338,342,355,360],did:[2,21,22,29,56,59,63,67,90,94,95,103,110,122,130,143,178,245,317,338,342],did_declin:178,didn:[5,20,22,40,41,43,48,50,57,58,60,71,79,90,99,103,118,120,125,126,132,135,139],die:[72,90,105,116,184,204,306],dies:229,diff:[74,130,184,250],differ:[0,2,8,9,11,13,14,15,16,19,20,21,22,25,27,31,33,37,38,39,40,41,42,43,45,46,48,49,50,53,54,56,57,60,61,62,63,65,67,68,69,72,78,79,81,82,83,86,87,90,92,94,95,99,101,102,104,105,106,108,109,110,111,112,113,114,115,117,118,119,120,121,123,125,126,128,130,132,135,136,137,138,139,140,143,144,149,151,152,155,158,167,168,170,174,179,183,184,185,194,195,198,203,205,212,214,216,217,218,219,220,223,232,233,245,247,249,250,254,257,259,263,267,289,294,296,313,314,316,320,322,326,335,338,342,360],differenti:[55,56,57,181,205,214,245,342],differet:60,difficult:[4,38,92,102,132,219,220],difficulti:132,dig:[0,20,31,33,39,56,57,88,92,95,108,120,122,139,158,211,297],digit:[12,89,113,203,309,319,335],diku:[54,63,123,138,362],dikumud:128,dime:107,dimens:[48,54],dimension:57,diminish:113,dimli:110,dinner:45,dip:95,dir:[9,21,23,36,53,57,62,63,74,78,89,95,99,101,126,127,130,133,335,342],direct:[0,3,8,10,11,12,20,22,31,42,43,44,48,50,57,69,73,87,89,99,108,110,115,117,118,120,127,136,137,138,158,193,199,209,233,240,265,326,328,335,339,342,362],direction_of_split:136,directli:[2,5,8,13,14,20,21,23,27,29,30,33,37,39,41,43,45,49,50,52,54,55,57,58,60,61,63,71,79,87,88,89,92,93,94,95,99,101,103,108,109,110,113,115,117,118,122,124,127,130,136,137,153,169,174,175,178,179,180,184,197,205,214,219,220,226,232,236,240,244,245,249,254,271,276,285,288,293,298,304,314,316,320,322,326,340,342],director:205,directori:[4,8,9,13,20,25,27,36,37,42,44,52,57,58,61,62,63,68,74,75,94,95,99,105,122,124,126,127,129,130,132,133,134,135,136,138,158,208,265,285,286,310,320,335,342,362],directorylist:310,dirnam:265,dirti:54,disabl:[0,4,24,25,49,79,80,105,113,126,136,153,169,187,205,214,232,240,288,327,332,343],disableloc:288,disableremot:288,disadvantag:[57,89,115,220],disambigu:[40,71,118,153,173,245,316],disappear:102,discard:[174,319],disconcert:40,disconnect:[2,11,12,39,40,42,54,56,59,91,96,104,106,109,111,115,122,127,136,143,155,158,163,166,168,174,200,245,275,276,277,283,284,285,288,293,294,297,303,304,305,306],disconnect_al:283,disconnect_all_sess:306,disconnect_duplicate_sess:306,disconnect_session_from_account:143,discontinu:24,discord:[9,62,71,78],discordia:107,discourag:[63,74],discov:[90,121,314],discoveri:209,discrimin:102,discuss:[1,4,25,26,33,37,44,47,54,62,68,69,115,137,138],discworld:87,disengag:[115,143,216,217,218,219,220],disk:[11,27,85,99,107,109,204,208,247],dislik:56,disonnect:11,dispel:125,displai:[0,17,22,25,30,31,33,41,42,45,49,50,52,57,58,59,60,67,68,79,80,81,82,84,87,88,90,92,100,101,102,103,110,113,115,118,122,123,132,133,134,135,136,137,138,144,153,155,158,165,168,170,172,174,178,179,181,185,186,187,189,192,194,196,198,200,205,214,230,231,232,233,235,245,250,252,263,265,282,300,303,308,316,317,324,325,326,327,328,336,337,338,341,342,343,355,360],display:259,display_buff:324,display_choic:179,display_formdata:187,display_help:324,display_helptext:[247,326],display_met:189,display_nodetext:326,display_titl:179,dispos:[110,202],disput:115,disregard:33,dist3:93,dist:62,distanc:[6,27,38,45,48,63,124,204,219,220,245,342],distance_inc:220,distance_to_room:38,distant:[48,137,186,231],distinct:[54,63,104,139,220],distinguish:[22,153,214,220],distribut:[8,9,15,23,31,34,41,62,63,77,95,96,123,126,127,174,176,205,319,322,342],distribute_messag:174,distributor:34,distro:[8,23,62,66,71],disturb:[27,139],distutil:62,distutilserror:62,ditto:62,div:[3,16,17,108,136,248],dive:[22,40,62],diverg:82,divid:[13,63,68,183,231,342],dividend:183,divisiblebi:68,divisor:183,django:[2,3,4,9,15,23,25,36,38,54,62,68,72,75,78,85,93,100,102,103,106,111,112,119,123,124,126,127,133,135,136,138,143,144,147,170,172,174,176,185,235,237,242,244,252,254,261,264,265,271,272,285,291,293,294,301,307,309,310,313,314,316,317,320,323,327,331,332,333,338,340,342,344,347,350,355,360],django_admin:358,django_nyt:4,djangonytconfig:4,djangoproject:[23,355],djangowebroot:310,dmg:72,dnf:[8,62,66],do_attack:229,do_batch_delet:314,do_batch_finish:314,do_batch_update_attribut:314,do_create_attribut:314,do_delete_attribut:314,do_flush:[316,332],do_gmcp:289,do_hunt:229,do_mccp:278,do_msdp:289,do_mssp:279,do_mxp:280,do_naw:281,do_nested_lookup:158,do_not_exce:25,do_patrol:229,do_pickl:323,do_task:258,do_unpickl:323,do_update_attribut:314,do_xterm256:319,doabl:[14,137],doc:[16,17,23,25,33,44,50,59,63,67,69,78,85,94,95,108,109,124,128,129,135,138,140,158,203,232,276,342,355,361,362],docker:[7,62,78,89,138,362],dockerfil:99,dockerhub:99,docstr:[1,5,25,40,42,67,73,95,153,158,169,179,192,204,205,214,232,326],documen:95,document:[0,3,5,6,9,16,17,20,22,23,25,26,29,40,42,45,46,47,51,52,54,56,57,59,63,67,69,75,78,85,89,93,95,102,103,105,110,113,120,121,122,123,124,126,130,132,134,135,138,152,166,179,203,232,314,317,325,332,360,362],dodg:217,doe:[2,4,5,9,11,20,21,23,24,25,26,29,31,33,37,38,39,40,42,48,50,53,54,55,56,57,59,60,62,63,67,68,72,77,79,84,87,88,90,94,95,99,101,103,108,109,110,111,112,113,115,116,117,118,120,122,124,125,126,128,130,131,132,135,136,137,139,143,145,155,163,166,168,170,173,180,181,182,185,186,199,201,202,214,216,217,218,219,220,230,231,232,233,245,249,250,257,264,265,269,270,271,274,277,285,286,292,314,316,321,326,334,335,338,342,347,355,360],doesn:[0,4,9,11,13,15,22,26,29,33,36,37,38,43,45,48,50,56,59,60,62,68,70,71,72,74,75,77,85,87,88,89,90,94,95,102,109,110,120,122,124,125,126,127,132,135,136,137,176,180,186,193,194,205,218,240,258,265,278,285,289,314,319,326,337,342],doesnotexist:[143,145,147,174,176,178,181,183,186,188,194,196,202,203,204,205,211,212,213,216,217,218,219,220,222,225,226,229,230,231,233,237,244,245,249,254,257,272,298,314,317,322,329,333],doff:217,dog:[27,95],doing:[2,4,10,11,27,29,31,33,36,38,42,45,48,50,56,57,58,59,60,63,68,69,78,79,88,89,94,95,96,104,109,113,114,118,124,125,126,132,133,136,137,143,155,178,181,193,205,214,216,217,218,219,220,225,229,230,233,239,245,259,296,326,332,338],dolor:51,dom:136,domain:[8,54,89,102,137,322],domexcept:89,dominion:9,dompc:9,don:[0,1,3,4,6,9,10,11,20,21,22,23,25,26,27,29,30,31,33,34,37,38,40,41,42,43,45,46,49,50,53,57,58,60,61,62,63,67,68,69,71,72,74,79,80,82,84,85,87,89,90,92,94,95,96,101,102,103,104,105,110,113,115,118,121,122,124,125,126,127,130,131,132,133,134,135,136,137,139,143,145,151,152,158,163,164,165,166,167,173,174,179,184,193,197,204,205,217,218,219,223,226,231,232,233,240,244,245,249,250,259,269,270,277,282,283,288,290,297,304,311,316,319,320,326,332,335,338,342,355,360],donald:92,donat:[69,89],done:[1,4,6,9,10,11,20,21,22,25,29,30,31,33,34,36,37,38,40,42,43,48,50,54,55,56,57,58,60,61,62,63,68,69,72,75,79,81,84,86,89,90,92,99,106,107,109,114,115,116,117,118,119,120,122,125,127,130,132,135,136,143,153,155,173,174,178,184,204,220,226,233,240,244,245,257,259,265,278,282,284,286,290,294,300,303,304,306,311,314,319,320,327,332,342,360],donoth:257,dont:287,doom:250,door:[0,20,22,27,42,48,60,79,84,88,102,158,211],doorwai:211,dot:[22,42,52,118,152,158,320,342],dotal:[319,341],dotpath:342,doubl:[22,42,56,96,118,132,151,170,341,342],doublet:[151,152],doubt:[22,137,232],down:[0,4,6,11,12,21,22,29,31,33,36,38,40,42,48,49,50,52,54,56,57,60,62,72,80,84,85,89,90,92,95,99,101,102,103,105,107,110,113,118,121,122,135,136,143,158,168,194,208,214,217,218,230,233,239,245,250,257,259,265,267,274,275,282,283,303,304,306,319,327,328,342],download:[5,9,23,26,62,63,71,74,78,89,99,100,127,129,130,138],downtim:[29,102,329],downward:[42,155],dozen:[25,54,107],drag:136,draggabl:137,dragon:55,dramat:[11,60],drape:181,draw:[14,38,48,72,118,328],draw_room_on_map:48,drawback:[14,23,28,29,50,57,72,85,137,180,320],drawn:[48,57,110],drawtext:72,dream:[26,54,60,128],dress:181,drink:[314,316],drive:[9,19,21,60,62,63,95,99,120,130,132],driven:[25,78,122,213,247],driver:23,drizzl:[101,131],drop:[6,9,14,20,21,23,25,33,37,39,54,56,57,59,68,69,79,84,85,86,87,88,89,116,117,120,127,136,137,158,164,181,196,202,213,217,220,225,239,245,274,316,320,342,361],drop_whitespac:328,dropdown:[105,137],droplock:239,dropper:[196,217,220,245],drum:89,dtobj:342,duck:[27,94],duckclient:24,due:[5,6,12,22,29,31,33,39,42,57,59,61,62,63,75,89,90,92,94,95,103,106,124,125,139,152,168,196,244,245,267,303,306,313,319,335],duh:107,dull:[20,26,110],dumb:[20,137,306,319],dummi:[9,33,53,58,79,92,126,205,240,265,283,296,297,304],dummycli:296,dummyfactori:296,dummyrunn:[140,260,265,283,295,297,299],dummyrunner_act:296,dummyrunner_actions_modul:296,dummyrunner_set:[92,140,260,265,295],dummyrunner_settings_modul:92,dummysess:306,dump:[34,208,274],dungeon:[54,76,111],dupic:31,duplic:[31,37,95,151,158,259,316,335],durat:[10,28,131,138,218,336,343,362],dure:[9,11,29,31,39,54,59,60,62,65,67,78,79,94,96,99,101,104,106,115,122,131,134,135,136,139,143,169,186,199,202,226,229,231,232,240,242,256,274,284,320,322,326,335,355,361],duti:63,dwarf:110,dying:[216,217,218,219,220],dynam:[2,3,34,42,67,81,85,89,110,113,114,123,132,136,137,138,143,147,153,165,168,169,173,176,187,205,214,216,217,218,219,220,237,244,245,254,259,314,316,317,322,324,326,333,336,342,360,362],dynamic_split:136,dyndns_system:89,each:[0,1,2,4,5,10,11,13,19,20,22,27,29,31,33,34,36,38,39,41,42,47,48,50,54,55,56,57,58,60,61,63,68,72,76,79,81,82,84,85,94,95,96,99,101,103,104,107,108,110,111,113,114,115,118,120,122,123,124,125,126,131,132,135,136,137,139,143,150,151,152,156,158,167,174,178,180,181,182,186,187,199,202,204,205,214,216,218,219,220,227,233,237,240,244,245,250,256,259,267,270,283,285,288,292,297,304,305,306,314,316,319,320,322,324,325,326,327,328,332,334,342],eaoiui:204,earli:[36,137,216,217,218,219,220,267],earlier:[3,9,13,31,36,50,53,57,59,60,61,63,73,84,94,95,105,118,120,122,130,133,270],earn:123,earnest:123,earth:[81,102],eas:[31,33,38,85,89,99,125],easi:[0,5,10,13,17,22,23,26,29,33,38,42,45,50,54,55,60,61,67,68,71,72,75,78,80,81,84,87,88,89,99,101,105,107,110,112,115,117,122,124,125,126,127,130,132,133,137,139,152,156,163,181,187,214,326,332],easier:[1,4,10,11,12,22,25,37,38,46,50,54,55,56,57,60,61,68,72,85,89,90,94,95,101,108,125,135,204,214,216,217,218,219,220,230,258,307,317,327,342],easiest:[0,5,12,15,25,27,30,45,57,62,69,75,122,127,130,132,134,208,316],easili:[0,3,4,11,12,13,14,17,20,25,27,28,33,34,37,38,45,47,48,50,54,57,59,60,61,62,67,69,72,79,82,84,87,89,90,95,97,99,102,104,105,106,107,108,110,111,118,121,122,130,132,135,136,137,139,165,176,178,179,181,187,189,193,204,211,214,216,217,218,219,220,232,236,237,239,259,320,326,337],east:[25,43,48,110,158,199,231],east_exit:231,east_west:110,eastern:[61,110],eastward:231,eccel:328,echo1:29,echo2:29,echo3:29,echo:[5,10,12,20,26,27,28,29,33,36,42,43,48,49,54,58,64,70,89,94,95,97,99,103,108,109,115,117,122,131,139,143,145,156,158,163,168,181,184,196,205,225,229,230,231,245,263,270,285,288,324,342],echotest:5,econom:[54,78,85],economi:[60,72,101,107,119,178],ecosystem:99,edg:[16,27,130,328,342],edgi:48,edit:[0,1,4,5,6,9,11,13,14,23,25,26,30,33,35,37,39,40,42,45,47,53,55,57,58,59,60,61,66,67,68,69,74,75,78,79,80,85,94,95,96,99,100,103,105,108,110,113,127,132,133,134,135,136,137,156,158,165,168,179,185,187,191,192,194,195,200,201,202,235,240,242,245,247,249,250,314,324,355,360],edit_callback:[192,194],edit_handl:158,editcmd:22,editor:[0,5,9,15,21,22,33,42,44,45,56,59,62,75,78,94,95,96,107,108,110,130,138,158,165,167,168,179,201,254,320,324],editor_command_group:324,editorcmdset:324,editsheet:57,effect:[6,10,11,14,27,28,29,31,35,38,42,55,56,57,60,72,86,94,103,106,109,110,113,114,115,116,123,125,126,127,128,137,139,140,141,143,151,152,158,167,184,194,217,218,219,225,226,229,231,238,245,251,254,278,334,342],effici:[11,26,28,29,38,54,55,63,75,78,85,86,92,94,102,111,114,118,124,131,178,205,212,240,245,259,314,315,317,324,327],effort:[37,55,130,133,360],egg:74,egg_info:62,egi:267,either:[0,4,9,12,13,17,23,27,29,31,33,34,37,38,40,42,43,45,48,50,55,56,57,68,72,79,82,89,90,92,94,96,101,102,104,108,109,110,111,113,115,118,120,122,124,125,127,130,136,137,143,145,151,152,153,168,173,174,175,179,191,197,198,200,204,205,211,214,216,219,220,240,245,249,250,254,256,257,259,263,274,286,290,297,315,316,317,326,328,335,337,339,342],elabor:[4,22,84,90,122],electr:89,eleg:37,element:[16,17,22,40,42,50,54,90,113,150,155,179,183,203,204,245,250,314,315,317,320,325,326,327,342],elev:[45,81,123,138,362],elif:[0,40,48,50,57,72,101,115,116,122],elimin:[95,99,319],ellipsi:95,ellow:113,els:[0,1,2,5,9,10,12,19,20,21,22,23,25,27,29,30,33,38,40,41,45,47,48,50,57,59,67,68,72,79,80,81,83,84,89,90,94,101,102,110,113,114,115,116,119,120,122,126,130,132,133,136,178,181,187,203,216,217,218,219,220,233,244,294,316,342],elsewher:[2,29,31,57,69,95,111,132,137,152,231,265,306,314],elvish:204,emac:[14,78],email:[62,63,130,143,144,185,322,336,342,343,355],email_login:[140,141,177],emailaddress:342,emailfield:[144,355],emb:[57,108,113,186,250],embark:120,embed:[108,113,124,137,248,325,334,342],emerg:[75,79,102],emi:204,emit:[25,34,107,136,152,156,174,188,245,304,335],emit_to_obj:[152,245],emo:21,emoji:24,emot:[33,40,42,54,67,115,164,178,204,205],emoteerror:205,emoteexcept:205,emphas:60,emploi:343,empti:[0,2,3,6,9,10,14,31,33,40,41,42,46,48,50,53,57,59,62,63,68,72,76,83,85,87,88,90,95,96,99,113,114,116,118,122,124,126,127,130,133,136,137,149,150,156,158,169,179,189,191,205,249,250,263,270,274,296,297,313,320,322,326,328,339,342],empty_color:189,empty_permit:[144,235,242,355],empty_threadpool:310,emptyset:31,emul:[42,63,74,104,122,128,168],enabl:[8,24,42,70,99,102,105,113,125,133,136,143,174,187,288,343],enable_recog:205,enableloc:288,enableremot:288,encamp:45,encapsul:336,encarnia:78,encas:324,enclos:[35,42,49,170,185,334],encod:[7,27,57,110,138,276,289,293,294,319,338,342,362],encode_gmcp:289,encode_msdp:289,encoded_text:342,encompass:27,encount:[59,94,152,343],encourag:[3,22,38,69,90,93],encrypt:[7,8,42,82,102,163,285,286,290],end:[1,5,6,8,9,10,11,13,14,19,20,21,22,23,25,27,28,29,31,33,34,38,39,42,46,49,50,53,54,57,59,61,63,64,68,72,75,79,80,82,85,86,87,89,90,92,94,95,99,104,106,107,108,113,115,117,118,120,121,122,125,127,130,132,133,134,136,137,139,143,145,151,152,158,164,165,173,178,180,181,184,189,201,205,213,214,216,217,218,219,220,231,236,248,269,276,277,285,288,289,299,304,308,310,315,319,320,322,326,327,328,334,335,342,360],end_convers:50,end_turn:115,endblock:[3,68,132,133],endclr:[113,334],endfor:[68,132,133],endhour:25,endif:[68,132,133],endlessli:102,endpoint:102,endsep:342,endswith:319,enemi:[11,29,50,60,108,115,121,218,219,220,229,230,231],enemynam:50,enforc:[10,33,40,60,72,79,113,125,137,285,288,327,328,360],enforce_s:328,engag:[54,220,229],engin:[22,23,33,36,42,54,55,63,67,72,76,78,88,101,102,103,121,126,130,135,139,149,152,167,168,209,231,236,265,276,282,285,288,293,303,305,320,322],english:[15,75,78,96,112,138],enhanc:[58,80,113,136,208,319,360],enigmat:20,enjoi:[60,62,90,105],enough:[4,6,21,29,38,40,41,42,54,56,57,60,62,63,68,69,79,83,84,86,89,90,95,107,111,114,118,122,125,135,152,158,203,204,225,233,326,327,328],ensdep:342,ensur:[48,68,93,99,105,116,125,126,214,340,360],ensure_ascii:294,enter:[0,1,3,5,9,13,14,15,20,21,22,23,25,26,27,29,31,33,35,36,40,41,42,43,45,50,57,61,62,63,65,68,74,76,79,82,84,86,88,90,94,95,99,108,110,113,115,116,118,122,123,127,128,130,132,134,137,138,140,143,150,152,157,166,167,168,173,178,179,181,186,187,197,200,214,216,217,218,219,220,229,231,233,239,245,250,254,263,304,326,355],enter_guild:50,enter_nam:50,enter_wild:233,enterlock:239,enterpris:36,entir:[10,11,13,14,19,22,27,29,33,45,48,49,50,59,60,68,79,85,89,90,107,110,113,114,122,124,126,135,179,204,205,214,232,239,240,245,250,316,320,328,332,334,342,360],entireti:[50,72,187,326],entit:322,entiti:[6,11,27,34,42,46,50,52,54,58,60,63,79,83,86,88,101,104,106,108,111,115,118,124,125,138,142,143,153,158,168,174,175,176,205,211,239,245,247,248,249,250,251,254,255,257,259,306,314,315,317,322,326,327,331,339,342],entitii:106,entitl:89,entranc:110,entri:[4,5,11,15,25,27,31,33,34,42,46,47,50,53,57,58,62,68,69,71,76,79,90,94,106,118,120,130,137,138,143,153,165,166,169,189,196,203,214,216,217,218,219,220,234,235,236,237,240,245,259,284,297,314,320,322,324,326,328,335,336,339,342,343,360],entriest:[42,155],entrust:58,entrypoint:99,entrytext:[68,237,322],enul:8,enumar:342,enumer:133,env:[265,275],environ:[4,7,9,13,25,36,42,44,52,58,60,62,63,64,81,89,94,99,102,127,168,169,227,265,275,291,300,320,326,340,358],environment:265,eof:285,epic:78,epilog:232,epoch:[27,61,329],epollreactor:310,epub:78,equal:[0,16,19,20,25,31,33,38,45,90,92,95,96,113,120,151,186,205,216,217,218,219,220,245,342],equip:[14,56,113,181,216,217,219,220],equival:[10,11,13,39,42,46,62,86,87,100,102,103,109,113,127,142,158,236,283,289,314,342,360],eras:[9,94,220],err:[57,79,296,320],err_travers:[88,245],errback:[10,262,265,274,275,342],errmessag:151,errmsg:[122,335],erron:[112,122,274,328],error:[1,5,6,8,9,10,11,14,15,20,22,23,24,26,27,31,33,37,41,42,50,52,55,56,57,58,59,62,63,70,73,74,75,79,82,85,86,88,89,90,96,102,103,104,108,110,112,113,117,118,119,121,122,124,126,127,130,132,134,138,143,149,151,152,158,174,194,199,203,205,214,226,230,232,240,245,248,249,257,262,264,265,267,269,274,288,296,316,319,320,322,325,326,334,335,338,342,343,362],error_check_python_modul:265,error_class:[144,235,242,355],error_cmd:43,error_msg:308,errorlist:[144,235,242,355],errorlog:8,escal:[2,19,42,79,155,239],escap:[42,68,113,164,168,232,248,319,334,341,355],escript:[22,179],especi:[1,8,15,22,23,29,59,60,62,79,104,110,111,123,189,204,320,327],ess:51,essai:78,essenti:[28,48,55,74,78,105,112,175,265,322],est:51,establish:[33,60,72,104,143,196,216,245,262,274,276,283,285,288,293,296,303,305],estat:136,estim:[30,250,332],esult:245,etc:[2,5,6,8,11,12,20,22,23,24,25,27,29,30,33,35,39,40,42,46,47,48,50,54,55,56,57,60,61,62,63,72,78,79,82,83,85,86,87,88,94,95,99,101,102,104,106,107,108,109,115,118,119,124,125,126,130,131,136,137,143,147,149,150,151,152,155,157,158,166,167,168,174,178,182,183,187,189,202,204,205,211,217,219,223,226,232,245,248,249,250,283,285,288,292,293,294,304,305,313,314,316,319,320,322,323,324,325,326,334,335,342,360],etern:50,ev_channel:145,eval:[108,178,248],evalstr:240,evalu:[33,118,150,178,240,248],evbot:[42,163,306],evcast:78,evcel:[325,328],evcolor:78,evcolum:328,evcolumn:328,eve:342,eveditor:[22,44,138,140,141,179,318,362],eveditorcmdset:324,even:[1,4,6,9,11,12,14,19,21,22,25,26,27,29,31,37,38,40,41,42,45,48,49,50,53,54,55,56,57,59,60,61,62,63,68,69,72,76,79,84,85,89,90,92,96,101,102,104,105,107,109,113,114,115,117,118,121,122,124,125,128,130,134,137,151,153,156,181,183,186,187,196,204,216,217,218,219,220,231,232,245,250,288,328,332,342],evenli:[27,183,342],evenn:99,evenna:9,evenni:4,evennia:[0,1,2,3,6,10,11,13,14,15,17,19,20,21,22,24,27,28,29,30,31,33,34,35,36,37,38,39,42,43,47,48,49,50,51,58,59,60,61,62,63,64,65,67,68,69,71,72,73,77,79,80,82,83,84,85,86,87,88,91,92,93,96,97,98,100,101,102,103,104,106,107,110,111,112,113,114,115,116,117,118,119,120,121,122,124,128,129,131,132,133,134,135,137,138,362],evennia_access:8,evennia_admin:360,evennia_channel:[42,64,71,97,163],evennia_dir:342,evennia_error:8,evennia_gener:135,evennia_launch:[105,140,141,260,263],evennia_logo:135,evennia_vers:265,evennia_websocket_webcli:293,evennia_wsgi_apach:8,evenniacreateview:360,evenniadeleteview:360,evenniadetailview:360,evenniaform:355,evenniagameindexcli:267,evenniagameindexservic:268,evenniaindexview:360,evennialogfil:335,evennian:24,evenniapasswordvalid:309,evenniareverseproxyresourc:310,evenniatest:[169,195,210,227,291,340,358],evenniaupdateview:360,evenniausernameavailabilityvalid:[143,309],evenniawebtest:358,event:[50,63,72,102,106,136,138,140,145,178,183,193,194,195,196,197,205,208,226,254,257,307,362],event_nam:[193,197],eventcharact:196,eventdict:335,eventexit:196,eventfunc:[0,140,177,190,194],eventhandl:194,eventi:[153,179,232],eventobject:196,eventroom:196,eventu:[4,11,12,19,29,33,40,57,60,69,75,79,82,87,89,109,115,118,122,132,135,143,149,150,167,169,184,196,204,205,231,240,245,249,250,262,270,296,304,305,317,321,322,326,328,353],evenv:[4,36,62,63,74,96,105],evenwidth:328,ever:[11,12,13,14,15,22,23,33,40,56,63,72,85,90,101,104,109,110,111,112,117,124,127,130,137,239,259,276,277,283,314,326],everi:[0,4,6,11,13,20,21,26,27,28,31,33,36,37,38,40,42,45,47,48,50,56,61,62,63,68,72,73,74,76,84,85,89,90,95,99,101,103,107,108,110,111,112,113,114,115,118,119,120,121,122,124,126,127,129,130,131,132,133,134,135,136,137,143,158,163,181,187,194,204,205,214,216,217,218,219,220,222,226,233,245,250,257,259,270,287,297,303,312,313,314,316,326,327,328],everror:194,everybodi:40,everyon:[19,21,24,33,34,42,50,57,60,63,70,72,76,77,79,86,97,101,109,111,113,115,120,122,126,127,130,131,158,164,165,184,216,217,218,219,220,245,283],everyth:[9,11,19,21,26,28,31,36,41,42,46,48,52,54,57,60,62,63,68,71,72,74,78,79,80,82,84,86,89,90,96,99,102,103,108,109,110,112,114,115,118,121,126,127,130,134,135,136,137,138,148,153,163,164,166,167,168,169,170,180,185,231,239,244,254,269,296,304,314,316,320,334],everywher:[9,55,93],evform:[27,44,140,141,318],evgam:[42,163],evid:71,evil:[14,92,225,250],evmenu:[22,27,33,44,57,84,123,138,140,141,179,187,200,213,214,247,318,327,362],evmenucmdset:326,evmenuerror:326,evmor:[44,138,140,141,318,362],evtabl:[27,33,44,48,110,140,141,153,187,249,318,325,327,342],evtable_arg:327,evtable_kwarg:327,exact:[33,40,42,50,79,92,94,95,118,128,137,143,150,158,167,175,205,220,236,245,249,250,315,316,338,339,342],exactli:[2,10,19,20,39,41,45,57,61,62,63,68,72,75,82,85,90,94,95,99,101,109,110,113,114,122,127,130,135,137,205,245,265,316,339],exam:[42,158],examin:[2,11,12,20,22,33,57,59,72,79,82,84,90,95,105,114,121,122,130,136,139,143,158,178,223,230,231,297],exampl:[0,2,4,5,6,8,10,11,13,14,15,17,19,20,21,22,25,27,28,29,30,31,33,36,37,39,40,42,43,47,48,52,54,55,56,57,58,59,60,61,62,63,66,67,70,73,76,80,81,82,83,84,85,86,87,88,90,92,94,95,96,97,99,102,103,104,105,108,109,110,111,113,114,116,117,118,120,121,122,123,124,125,128,129,130,131,132,134,135,137,138,139,140,143,147,150,151,152,153,156,157,158,163,164,165,166,167,169,173,175,176,178,179,181,183,184,186,187,188,189,198,199,202,203,204,205,208,211,212,213,214,216,217,218,219,220,222,225,226,229,231,232,233,237,240,244,245,250,254,257,259,270,285,288,289,294,297,306,310,313,314,316,317,318,319,321,325,326,327,328,329,333,334,335,336,339,340,342,343,355,360,361,362],example1_build_forest:199,example1_build_mountain:199,example1_build_templ:199,example1_legend:199,example1_map:199,example2_build_forest:199,example2_build_horizontal_exit:199,example2_build_verticle_exit:199,example2_legend:199,example2_map:199,example_batch_cod:[13,140,177,221],exapmpl:5,excalibur:84,exce:[81,216,217,218,219,220,308,332],exceed:308,excel:[55,78,79,101,107],excempt:151,except:[4,9,10,11,14,19,20,21,22,27,28,29,31,33,38,40,45,49,57,62,63,74,79,82,88,89,90,94,96,101,108,110,113,115,117,118,119,120,122,125,132,133,143,145,147,149,152,153,166,167,174,175,176,178,181,183,186,188,193,194,196,197,201,202,203,204,205,211,212,213,216,217,218,219,220,222,225,226,229,230,231,232,233,237,239,240,244,245,249,254,257,265,270,272,274,286,288,290,294,298,310,314,317,319,322,325,326,328,329,333,334,335,337,342],excepteur:51,excerpt:49,excess:[22,79,108,166,167,244,320],exchang:[13,89,101,178,323],excit:[20,35,53],exclam:21,exclud:[63,118,119,122,181,202,231,244,245,324,326],exclude_channel_messag:175,exclude_cov:181,excluded_typeclass_path:168,exclus:[50,60,79,245,254,315,326],exclusiv:322,exe:[62,105,127],exec:[50,84,108,250,326],exec_kwarg:326,exec_str:300,execcgi:8,execut:[0,9,10,12,13,14,19,22,25,28,29,31,33,36,42,44,45,46,49,50,54,61,62,63,68,74,82,84,86,88,90,94,101,105,108,110,113,118,126,127,136,138,143,145,147,148,149,153,156,157,165,166,168,169,176,179,194,199,205,214,232,237,239,240,244,245,249,250,251,254,258,262,270,272,275,276,282,285,288,293,297,300,303,304,314,316,317,320,326,327,333,334,342,362],execute_cmd:[2,33,88,116,117,122,143,145,153,245,270,304],execute_command:33,executor:36,exemplifi:[28,39,121],exercis:[21,40,41,57,84,94,95,110,115,122,131,291,301,333],exhaust:22,exhaustedgener:203,exidbobj:245,exis:43,exist:[0,2,3,5,11,12,13,20,21,22,25,27,31,33,35,36,38,39,40,42,43,45,47,48,50,55,56,57,59,60,63,64,67,68,69,71,75,79,85,95,96,99,101,104,108,110,111,114,115,116,122,123,127,130,133,135,137,138,142,143,144,145,151,152,153,158,165,166,167,168,174,179,180,186,191,193,194,197,198,201,202,204,205,212,219,230,233,239,240,244,245,247,250,257,258,265,269,271,285,286,290,298,303,304,306,314,315,316,317,320,322,324,325,326,328,335,337,342],existen:304,exit:[20,21,22,23,31,38,40,42,44,48,49,50,54,57,62,79,84,85,90,99,105,108,110,118,120,121,122,123,124,127,138,140,149,151,152,158,168,178,179,195,196,199,200,211,212,214,220,229,230,231,232,233,239,244,245,250,285,297,314,322,324,326,327,340,358,362],exit_alias:[158,211],exit_back:57,exit_cmd:[50,327],exit_command:245,exit_nam:[48,158,211],exit_on_lastpag:327,exit_ther:57,exit_to_her:[42,158],exit_to_ther:[42,158],exit_typeclass:[233,340,358],exitbuildingmenu:22,exitcmdset:[31,245],exitcommand:245,exitnam:211,exitobject:43,exixt:283,exot:33,exp:325,expand:[0,1,4,5,6,20,21,23,48,54,56,57,60,63,69,73,80,84,88,89,103,110,113,116,119,122,123,130,131,134,138,139,158,185,211,216,217,218,219,220,245,319,328],expand_tab:328,expandtab:[319,328],expans:[43,60],expect:[0,1,6,9,10,33,34,37,46,55,57,60,74,79,82,86,87,88,89,90,93,94,95,96,106,112,113,114,121,122,123,125,126,127,133,137,158,166,167,179,191,193,203,226,233,239,245,249,250,263,313,316,326,327,332,347,360],expected_return:126,expedit:95,expens:[89,114,118,339],experi:[26,41,50,56,59,60,61,62,72,76,80,89,94,99,110,121,130,134,138],experienc:[50,60,63,78,94],experienced_betray:50,experienced_viol:50,experiment:[42,73,168,172,242,361],explain:[20,22,33,38,47,50,54,57,63,70,78,85,118,120,123,125,126,128,130,133,135,138],explan:[25,31,33,38,63,68,76,113,123,138,309],explicit:[0,1,22,31,39,47,68,70,87,90,103,128,135,203,265,287,314],explicitli:[4,9,21,30,31,42,57,58,62,67,79,82,83,84,85,86,95,96,108,111,113,114,123,124,152,153,158,203,245,250,259,316,319,322,338],explor:[0,2,10,20,41,42,52,58,62,68,82,94,103,110,115,121,124,168],expos:[102,133],express:[3,33,42,50,55,79,108,118,133,134,139,158,183,203,220,248,342],ext:50,extend:[1,3,5,27,34,38,42,54,55,68,72,78,84,85,107,110,116,117,124,132,133,147,153,165,169,174,180,182,186,194,197,233,242,244,245,316,319,336,355,360],extended_room:[140,141,177],extendedloopingcal:259,extendedroom:186,extendedroomcmdset:186,extens:[1,3,9,23,50,54,55,60,62,63,87,95,96,103,110,113,126,137,147,209,216,280,288,322,331,341],extent:[22,55,72],extern:[8,15,23,34,39,40,42,53,54,56,62,64,71,89,97,105,107,108,110,123,138,140,163,171,174,176,208,249,263,265,267],external_discord_hello:270,extra:[1,6,8,14,16,21,23,25,29,31,33,37,40,50,56,57,79,88,89,92,94,95,106,113,118,122,124,125,126,133,135,136,137,143,144,147,153,165,178,186,188,201,205,231,245,248,259,262,313,315,319,320,324,326,328,335,336,337,341,342],extra_environ:320,extra_spac:342,extract:[11,40,55,90,95,96,106,137,153,205,209,240,279,293,327,342],extract_goto_exec:326,extrainfoauthserv:285,extran:187,extrem:[26,55,90,109,127,216,217,219,220,278,336],eye:[59,96,110,113,250,327],eyed:135,eyes:[33,37,56],eyesight:[57,79,113],f6d4ca9b2b22:99,face:[89,102,121,188,309,326],facil:335,fact:[10,11,14,21,29,33,54,56,57,60,75,82,88,102,105,113,116,122,124,125,133,137,139,306,334],facter:137,factor:[0,61,81,113,217,219,262,276,277],factori:[39,95,262,267,275,276,277,283,284,285,286,288,296],factory_path:145,fade:[107,204],fail:[4,9,10,11,12,13,14,24,27,31,40,50,59,60,62,88,90,102,106,108,109,112,115,116,120,126,152,167,174,184,205,211,230,239,240,245,249,257,262,263,265,269,276,277,287,308,313,314,316,334,336,338,342,360],failmsg:308,failtext:72,failur:[10,14,62,72,118,126,143,231,267,274,276,277,296,308,319,342],failure_teleport_msg:231,failure_teleport_to:231,faint:101,fair:[72,184],fairli:[38,68,74,181,187,214,217],fake:[182,245,296,306,314],fall:[26,31,59,61,63,72,96,101,110,112,140,143,167,188,205,231,342,355,360],fall_exit:231,fallback:[43,48,54,149,153,176,186,240,257,265,289,294,314,326,337,342],fals:[1,2,4,6,11,20,21,22,25,27,29,31,33,40,43,48,49,50,57,61,67,73,76,79,80,81,83,85,88,95,101,102,114,115,117,119,120,122,124,126,132,136,143,144,147,150,151,152,153,158,165,174,175,176,178,179,181,182,183,184,187,191,194,196,198,204,205,211,214,216,217,218,219,220,232,233,235,236,237,239,240,242,244,245,247,249,250,254,255,256,257,259,262,265,267,271,274,275,282,283,284,285,288,294,302,304,306,308,310,313,314,315,316,317,319,320,322,324,326,327,328,329,332,334,337,338,339,341,342,343,355],falsestr:187,falter:60,fame:121,famili:[9,50,56],familiar:[3,9,20,29,31,33,38,57,59,62,84,89,90,94,95,110,118,123,124,132],famou:[51,324],fan:78,fanci:[15,17,36,72,137,181],fanclub:118,faq:[44,123,138,287,362],far:[0,13,20,21,22,31,33,38,40,43,45,48,53,54,56,58,60,74,87,89,90,94,95,99,105,110,113,118,130,137,151,220,233,239,267,292,314,324,332],fashion:110,fast:[11,15,23,26,27,29,55,61,63,81,88,107,114,130,156],faster:[23,61,92,118,174,176,178,314],fastest:5,fatal:265,faulti:94,favor:27,favorit:[21,37],fear:27,featgmcp:289,featur:[0,4,15,17,20,22,25,26,27,31,33,34,36,37,41,44,45,46,47,48,49,55,56,58,60,61,62,63,69,71,77,80,84,90,95,102,106,108,110,113,118,121,122,123,124,127,128,130,137,138,143,152,153,186,194,205,214,232,259,282,303,307,316,324,342,360,362],februari:61,fed:[10,33,79,283,314,323,325],fedora:[8,62,66,130],feed:[7,15,42,48,50,54,72,97,108,127,138,145,163,267,284,285,316],feedback:[37,41,60,69,88,117,175,225,324],feedpars:[97,284],feedread:145,feel:[0,10,17,22,37,38,45,54,56,59,60,62,63,68,69,70,72,76,89,90,107,117,121,122,124,130,132,137,204,214,217,223,231],feend78:198,feint:115,felin:27,fellow:325,felt:[101,131],femal:188,fetch:[11,62,89,99,127,130,132,199,314,327,360],few:[0,4,6,9,10,11,15,17,20,23,31,33,34,36,40,41,42,48,49,54,58,59,60,63,65,72,73,78,79,85,87,88,90,102,109,113,115,118,120,121,122,125,126,130,137,168,183,204,226,244,280,289,308,319,328,342,360],fewer:[107,306,315],fg_colormap:341,fgstart:341,fgstop:341,fiction:[50,54,61,76,326],fictional_word:204,fictiv:204,fiddl:231,fido:95,field:[3,11,23,34,53,55,57,73,83,85,86,88,101,105,106,111,118,124,127,132,134,144,147,172,176,187,191,205,220,229,235,237,239,242,244,245,249,250,252,254,255,259,272,313,314,315,316,317,325,333,338,339,355,357,360],field_class:355,field_or_argnam:73,field_ord:355,fieldevmenu:187,fieldfil:[140,141,177],fieldnam:[57,83,187,255,316,332,355],fieldset:[144,172,235,242,252],fieldtyp:187,fifi:95,fifo:342,fifth:48,fight:[29,31,60,115,121,216,217,218,219,220,230],fighter:[216,217,218,219,220],figur:[3,12,26,33,37,41,48,79,82,89,90,92,95,96,118,120,130,132,137,178,180,183,205,265],file:[2,3,4,5,6,8,9,19,20,21,22,23,25,26,27,31,34,36,37,39,40,41,43,46,47,53,55,56,57,58,59,61,62,63,64,65,66,67,68,71,74,75,78,79,80,84,85,89,92,94,95,96,97,99,102,105,109,110,113,116,118,119,120,122,127,129,132,133,134,135,136,137,138,140,141,143,144,157,165,174,179,181,182,183,185,199,200,204,208,232,233,235,239,242,250,264,265,285,286,289,290,297,298,299,303,310,311,313,318,325,326,335,338,339,342,355,360],file_end:[320,342],filelogobserv:335,filenam:[27,59,130,320,325,335],filename1:265,filename2:265,filesystem:[62,99,102],fill:[36,40,48,49,57,60,64,69,105,110,113,118,132,134,187,248,313,314,319,325,327,328,342],fill_char:328,fill_color:189,fillabl:187,fillchar:[113,319,334,342],filo:342,filter:[31,34,38,42,68,85,105,113,118,119,124,132,137,151,156,179,186,205,244,245,342,360],filter_famili:[118,124],filthi:77,final_valu:10,find:[0,3,4,6,10,11,12,13,14,17,20,21,22,23,24,25,26,27,29,31,33,34,37,39,40,41,45,46,47,48,49,54,55,56,57,59,60,61,62,67,68,69,72,73,74,75,77,78,79,83,85,86,88,89,90,92,94,95,96,99,101,102,107,108,109,111,113,118,121,122,123,124,126,127,130,132,133,134,135,138,139,143,150,158,175,183,186,199,205,211,214,231,232,245,249,250,256,265,279,314,315,319,321,339,342],find_apropo:236,find_topicmatch:236,find_topics_with_categori:236,find_topicsuggest:236,fine:[12,15,20,33,40,43,45,63,84,85,88,94,104,111,114,117,121,122,137,145,231,314,322,342],finer:12,finish:[10,14,29,33,57,58,60,99,106,121,122,123,127,132,135,140,143,153,155,166,178,186,202,230,245,265,269,277,288,303,310,321,326,342],finish_chargen:50,finit:90,fire:[2,20,21,27,28,29,33,45,50,57,60,95,101,105,106,110,114,117,119,131,138,145,149,194,218,219,245,248,250,257,265,274,276,293,326,327,332,342],firebreath:57,firefox:71,firestorm:28,firestorm_lastcast:28,firewal:89,first:[2,3,4,5,6,7,9,10,11,12,13,14,15,16,19,20,21,23,24,26,27,29,31,33,35,38,39,40,41,42,44,47,48,49,50,54,55,57,58,60,61,62,64,67,68,69,70,72,74,75,76,79,80,82,84,85,88,89,90,92,95,96,97,99,101,102,103,104,105,106,107,108,109,112,113,115,117,118,119,120,121,122,124,125,126,127,130,131,132,133,134,135,136,137,138,143,145,147,150,151,158,166,167,170,174,176,178,179,181,182,183,185,186,199,200,203,204,205,211,213,216,217,218,219,220,222,226,229,230,231,232,233,237,239,244,245,249,250,254,257,265,269,270,272,283,285,288,289,293,294,296,297,303,306,314,316,317,319,320,322,324,325,326,328,329,332,333,334,341,342,361,362],first_lin:122,first_nam:144,firsthand:79,firstli:[9,88,89,95,96],firstspac:341,fish:[72,152,202],fist:250,fit:[11,23,38,46,57,79,87,120,128,129,132,217,220,325,327,328,342],five:[28,33,89,110,118,152,214,342,343],fix:[13,14,16,26,27,33,37,41,42,50,56,59,60,62,63,69,74,77,82,84,89,94,95,96,108,109,120,122,124,126,137,204,265,325,327,328,338],fix_sentence_end:328,fixer:118,fixing_strange_bug:130,fixtur:[169,227,291,301,333,340],flag:[9,13,14,20,28,29,30,31,33,39,40,42,50,57,60,73,75,82,85,107,114,122,130,143,149,153,158,229,239,240,245,265,272,276,285,288,293,304,324,326,342],flame:[28,219],flash:[14,226],flat:[22,26,27,44,46,47,52,55,58,59,95,124,140,250],flatfil:55,flaticon:78,flatten:250,flatten_diff:250,flatten_prototyp:250,flattened_diff:250,flatul:101,flavor:[20,89,219],flavour:[86,125],flaw:120,fled:[115,229],fledg:[15,89,107,122,132,157,184],flee:[115,116,220,229],fleevalu:115,flesh:[20,57],flexibl:[1,13,21,22,29,38,42,50,52,56,58,72,87,89,101,107,108,110,115,133,136,137,147,158,178,179,187,214,239,314,342,360],flick:343,flip:[50,80],flood:[27,49],floor:[0,81,205],flow:[17,36,39,54,60,82,85,114,130,136,322,334],flower:[12,20,42,60,86,88,118,158],flowerpot:[12,56],fluent:78,fluid:[16,17],flurri:205,flush:[23,33,42,110,127,168,257,314,316,332],flush_cach:332,flush_cached_inst:332,flush_from_cach:332,flush_instance_cach:332,flusher:332,flushmem:[42,168],fly:[3,12,21,27,31,33,34,42,50,54,63,84,101,108,118,137,143,164,166,167,174,176,237,245,259,272,283,286,290,314,320,329,342,360],focu:[4,60,115,123],focus:[55,56,60,76,78,105,122,123,220],foe:217,fold:214,folder:[3,5,8,13,14,21,27,30,46,48,54,56,57,59,62,63,68,72,74,75,85,94,95,99,102,105,109,110,115,116,117,122,126,127,132,133,134,135,136,199,216,217,218,219,220,265],folder_nam:63,foldernam:59,follow:[0,2,4,5,7,8,9,10,11,13,14,16,17,19,20,22,23,25,31,33,34,37,38,39,40,41,42,45,46,47,48,49,50,52,53,57,59,60,61,62,64,67,68,70,72,73,74,75,78,79,81,84,85,87,88,89,90,92,94,95,96,99,101,102,105,109,111,113,115,116,118,119,120,122,124,126,127,130,132,133,134,136,143,145,147,149,150,153,158,166,167,169,174,176,179,181,182,184,188,194,196,198,199,205,214,218,219,225,231,237,239,240,244,245,248,250,254,255,269,270,280,289,293,294,297,307,314,316,319,320,322,325,326,328,334,335,342],follwo:240,fond:61,font:[25,110,136],foo:[33,39,50,82,83,87,94,106,111,118,126,214,326,340],foo_bar:87,foobarfoo:12,foolish:225,footer:[68,132,153],footnot:15,footprint:[42,168],footwear:56,for_cont:245,forai:95,forbid:40,forbidden:130,forc:[0,6,8,10,31,33,57,59,62,72,80,81,90,99,102,109,115,120,122,124,126,136,137,145,152,156,158,178,186,188,202,204,205,240,245,249,256,276,277,283,288,306,327,328,332],force_init:245,force_repeat:[101,115,257],force_restart:257,force_str:338,forcibl:[101,256],fore:303,forebod:186,foreground:[41,99,113,125,182,265,334],foreign:124,foreignkei:[147,244,254,313,316,333],forens:209,forest:[13,110,111,139,186,199],forest_meadow:111,forest_room:111,forestobj:139,forev:[60,101],forget:[3,9,10,13,25,27,33,40,53,61,71,84,85,94,95,99,122,130,205,320],forgo:230,forgotten:[28,48,76,84],fork:[9,78],forloop:68,form:[11,13,27,31,33,34,42,44,50,54,57,58,60,63,67,69,73,75,76,79,82,87,88,92,95,96,108,111,112,113,114,115,117,122,123,124,126,128,134,140,143,144,145,150,152,153,156,158,166,167,169,172,174,175,176,178,187,188,204,205,209,235,237,239,240,242,245,249,250,252,255,257,259,263,283,285,289,293,304,306,313,314,315,316,319,320,322,323,324,325,328,334,335,338,339,342,343,344,354,360],form_char:325,form_class:360,form_template_to_dict:187,form_valid:360,formal:[60,79,95,137,245,289],format:[0,14,17,19,22,23,27,31,33,37,40,41,45,47,54,57,61,67,68,75,78,80,82,87,95,97,102,107,108,110,112,113,118,123,128,130,132,137,151,153,155,158,165,167,169,173,174,179,181,182,183,187,197,205,208,214,218,232,233,237,245,247,249,250,255,265,270,280,285,305,307,314,316,319,320,322,324,326,327,328,329,334,335,337,342,343,361],format_attribut:158,format_available_protfunc:249,format_callback:191,format_diff:250,format_extern:174,format_grid:342,format_help:232,format_help_entri:165,format_help_list:165,format_messag:174,format_output:158,format_pag:327,format_send:174,format_t:342,format_text:179,format_usag:232,formatt:[187,249,326,327],formatted_list:174,formcallback:187,formchar:[57,325],formdata:187,former:[17,23,63,125,326],formfield:338,formhelptext:187,formset:313,formstr:57,formtempl:187,formul:133,forth:[27,42,130,158,219],fortress:110,fortun:[4,33,38,47,68,121,127],forum:[1,9,37,47,54,56,62,89,97,127],forward:[13,14,20,41,44,49,50,61,68,89,120,125,143,147,176,198,208,237,244,254,310,314,316,317,325,327,333],forwardfor:66,forwardmanytoonedescriptor:[244,254,333],forwardonetoonedescriptor:[244,254,333],foul:108,found:[2,4,6,9,10,13,14,15,20,22,23,25,27,31,33,38,39,40,41,42,48,50,52,54,56,57,58,62,67,72,73,75,77,79,82,84,88,89,90,93,96,102,103,108,111,115,118,121,122,124,126,127,133,134,136,137,140,143,148,149,150,151,153,158,166,167,174,178,179,191,193,194,196,199,205,231,237,240,245,248,249,250,256,259,264,265,271,280,283,294,304,306,314,315,316,319,320,321,322,326,328,332,334,337,339,342,344],foundat:[48,54,76,78,216],four:[4,14,27,38,39,67,72,81,85,86,110,113,118,152,176,186,240],fourth:38,fqdn:89,fractal:55,fraction:126,frame:[136,137],framework:[3,16,63,93,123,132,135,136,169,216,219,338],frankli:128,free:[0,22,29,37,47,54,56,59,60,63,75,76,78,89,105,111,115,122,123,125,129,132,138,178,205,214,217,249],freedn:89,freedom:[14,26,43,62],freeform:[72,115,181],freeli:[54,76,99,102,320],freenod:[9,42,62,69,71,78,89,145,163,306],freepik:78,freetext:[175,339],freez:[29,33,41,193],frequenc:204,frequent:[90,179],fresh:[11,31,57,127,265],freshli:110,fri:12,friarzen:137,friend:[37,57,60,81,102],friendli:[22,77,94,132,137,147],friendlier:[174,245],frighten:218,from:[0,2,3,5,6,8,9,10,11,12,13,14,15,16,17,19,21,22,23,26,27,28,29,30,31,33,34,35,36,38,39,40,41,42,43,45,46,47,48,49,51,53,55,56,57,58,60,61,62,63,65,67,68,69,70,71,72,73,74,75,78,79,80,81,82,83,84,85,86,88,90,91,92,94,96,97,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,133,134,135,138,139,140,143,145,147,148,149,150,151,152,153,155,156,157,158,163,164,165,166,167,168,169,170,172,173,174,175,176,178,179,180,181,182,183,184,185,186,187,188,193,194,196,197,198,199,201,202,203,204,205,208,209,210,211,212,214,216,217,218,219,220,223,225,226,229,230,231,232,233,236,237,239,240,241,244,245,249,250,254,255,256,257,258,259,262,265,270,271,272,274,275,276,277,278,282,283,284,285,288,293,294,297,299,303,304,305,306,310,311,312,313,314,315,316,317,319,320,321,322,323,324,325,326,327,328,329,332,333,334,335,336,338,339,341,342,343,355,360,361,362],from_channel:145,from_db_valu:338,from_obj:[80,82,117,143,145,153,188,245],from_pickl:323,from_tz:343,frombox:274,fromstr:274,fromtimestamp:329,front:[8,13,20,52,72,79,84,95,102,108,130,136,138],frontend:[214,314],frozen:[29,33,121,194],fruit:202,ftabl:342,ftp:341,fuel:[21,219],fugiat:51,fulfil:265,full:[4,9,13,14,15,16,17,20,21,23,24,25,26,27,33,37,42,50,52,54,56,57,58,59,60,63,72,74,79,83,87,88,89,94,95,96,99,100,101,104,107,108,109,110,114,115,116,118,120,122,123,124,126,127,130,132,133,134,135,145,150,152,153,157,158,163,167,168,169,178,179,184,186,189,201,204,205,214,219,232,240,250,255,277,283,296,306,307,314,316,317,320,324,326,328,342],full_justifi:[108,248],full_nam:86,full_result:184,fuller:57,fulli:[4,11,19,33,50,54,57,58,60,62,84,85,89,92,102,109,121,143,204,240,245,257,293,305,322,342],fun:[20,26,60,78,80,110,135],func1:[42,158,240,297],func2:[42,158,240,297],func:[5,10,21,22,25,28,29,30,33,41,43,49,50,55,57,59,61,70,72,79,80,81,82,84,90,115,118,120,122,149,153,155,156,157,158,163,164,165,166,167,168,169,170,173,178,179,180,181,183,184,185,186,187,188,192,198,199,200,201,202,205,211,212,213,214,216,217,218,219,220,223,229,230,231,232,239,240,245,276,297,301,310,324,326,327,329,342,360],func_arg:274,func_kwarg:274,funciton:219,funcnam:[73,113,240,248,259,334],functioncal:274,functionnam:[274,334],functool:62,fund:69,fundament:[33,56,76,88,94,95,111,245],furnitur:[13,111,124],further:[0,9,11,27,31,34,41,42,43,48,56,82,84,85,89,90,95,99,103,104,105,108,109,110,118,123,124,129,130,137,152,158,180,204,218,220,250,265,289,342],furthermor:[37,123,125],fuss:99,futur:[9,10,11,20,23,42,44,49,54,57,59,60,61,62,75,86,94,99,122,138,155,194,230,233,270,315,336,343,362],futurist:61,fuzzi:[75,236,339,342],fuzzy_import_from_modul:342,gag:24,gain:[11,29,60,92,153,176,205,240,245],galosch:204,gambl:184,game:[0,2,3,4,5,6,8,9,10,11,13,14,15,17,18,19,20,21,22,23,24,25,28,29,30,31,33,34,35,36,37,40,41,42,43,45,49,50,51,52,55,59,62,63,64,65,67,68,70,71,74,75,76,77,78,79,80,82,84,85,86,87,88,90,91,92,94,95,96,97,100,101,102,103,104,105,106,107,108,109,111,112,113,114,115,116,117,118,120,121,124,128,129,131,132,133,134,135,136,137,138,139,142,143,144,145,147,149,151,152,153,155,156,157,158,162,164,165,168,169,170,171,173,174,175,176,177,178,179,180,181,183,184,185,186,187,189,192,193,194,195,196,198,199,203,204,205,212,214,216,217,218,219,220,228,231,232,237,239,241,244,245,254,256,257,260,265,267,268,269,270,276,277,282,284,285,288,289,296,297,298,303,304,306,313,315,316,317,320,321,322,324,325,329,332,334,335,342,361,362],game_dir:[335,342],game_epoch:[27,329],game_index_cli:[140,141,260],game_index_en:53,game_index_list:53,game_map:199,game_nam:[53,348],game_slogan:[9,348],game_statu:53,game_templ:46,game_websit:53,gamedir:[50,108,265,311],gamedirnam:57,gameindexcli:268,gamemap:199,gameplai:[89,144],gamer:[64,71],gamesrc:27,gametim:[27,58,138,140,141,183,186,194,318,362],gametime_to_realtim:183,gametimescript:183,gammon:[78,280],gandalf:50,garbag:314,garden:78,garment:181,gatewai:[109,294],gather:[24,33,47,82,93,118,126,131,135,149,150,231,263,267,322,339],gave:[5,21,59,63,90,101,125],gbg:319,gcc:62,gear:[42,89,105,135,145,152,170,185],gemer:203,gen:17,gender:188,gendercharact:188,gendersub:[140,141,177],gener:[0,1,5,9,10,11,12,20,23,25,29,31,33,34,36,37,47,48,50,52,54,56,57,58,59,61,62,63,67,69,72,75,79,82,85,86,87,89,92,95,103,104,105,108,110,111,113,115,125,126,133,136,137,138,140,143,145,148,153,154,155,158,165,166,167,169,170,173,174,178,179,180,181,184,185,186,187,188,194,198,199,200,201,203,204,205,208,209,211,212,213,214,216,217,218,219,220,223,229,231,232,237,240,245,247,250,276,283,285,288,289,293,304,305,306,310,314,317,319,321,322,324,326,327,328,335,337,338,342,347,355,360,361,362],general_context:[140,344,346],generate_sessid:283,generic_mud_communication_protocol:289,genericbuildingcmd:179,genericbuildingmenu:179,genesi:89,geniu:202,genr:[37,63,279],geoff:232,geograph:139,geographi:38,geoip:208,geometr:110,geometri:110,get:[0,1,2,3,5,6,7,8,9,10,11,12,13,15,17,21,22,23,25,26,28,29,30,31,33,38,39,40,41,43,44,45,46,47,48,49,52,53,54,55,56,57,58,59,60,61,63,64,67,68,70,71,72,73,74,75,76,79,80,81,82,83,84,85,86,87,89,90,91,92,94,95,96,99,101,102,103,104,105,106,109,110,111,113,115,117,120,121,122,124,125,126,127,129,130,132,133,134,135,136,137,138,143,145,147,151,152,153,155,156,158,159,163,164,170,172,173,175,176,179,181,184,191,193,194,196,197,198,202,203,205,212,213,214,216,217,218,219,220,222,223,230,231,233,236,237,239,240,244,245,247,249,250,254,256,257,259,263,265,270,274,275,279,283,285,288,289,291,293,294,302,304,305,306,308,314,315,316,317,319,320,321,324,326,328,329,331,332,334,335,336,337,339,342,355,360,361,362],get_abl:59,get_absolute_url:[133,174,237,316],get_account:[240,304],get_al:314,get_alia:315,get_all_attribut:314,get_all_cached_inst:332,get_all_categori:236,get_all_channel:175,get_all_cmd_keys_and_alias:151,get_all_mail:198,get_all_puppet:143,get_all_sync_data:306,get_all_top:236,get_all_typeclass:342,get_attack:[216,217,218,219,220],get_attr:158,get_attribut:315,get_buff:324,get_by_alia:315,get_by_attribut:315,get_by_nick:315,get_by_permiss:315,get_by_tag:315,get_cach:314,get_cached_inst:332,get_callback:194,get_channel:[40,175],get_charact:304,get_client_opt:270,get_client_s:304,get_client_sess:[293,294],get_client_sessid:294,get_cmdset:173,get_command_info:[153,166],get_context_data:360,get_damag:[216,217,218,219,220],get_db_prep_lookup:338,get_db_prep_valu:338,get_dbref_rang:315,get_default:338,get_defens:[216,217,218,219,220],get_display_nam:[22,41,45,57,81,205,233,245,316],get_err_msg:[6,20,79],get_ev:194,get_evennia_pid:342,get_evennia_vers:342,get_event_handl:197,get_extra_info:[40,153,173,245,316],get_famili:[118,124],get_fieldset:242,get_form:242,get_formset:313,get_game_dir_path:342,get_god_account:269,get_height:328,get_help:[33,67,68,153,169,192,232],get_help_text:309,get_id:[132,315],get_info_dict:[282,303],get_initi:360,get_input:326,get_inputfunc:[270,289,306],get_internal_typ:338,get_kwarg:358,get_location_nam:233,get_mass:81,get_message_by_id:175,get_messages_by_channel:175,get_messages_by_receiv:175,get_messages_by_send:175,get_min_height:328,get_min_width:328,get_new:284,get_new_coordin:233,get_next_by_date_join:147,get_next_by_db_date_cr:[147,176,244,254,314,316],get_next_wait:197,get_nick:315,get_nicklist:[145,277],get_numbered_nam:245,get_obj_coordin:233,get_object:360,get_object_with_account:339,get_objs_at_coordin:233,get_oth:178,get_permiss:315,get_pid:265,get_player_count:279,get_previous_by_date_join:147,get_previous_by_db_date_cr:[147,176,244,254,314,316],get_puppet:[2,143,304],get_puppet_or_account:304,get_queryset:360,get_rang:220,get_redirect_url:360,get_regex_tupl:205,get_respons:349,get_room_at:38,get_rooms_around:38,get_sess:306,get_statu:275,get_subscript:175,get_success_url:360,get_sync_data:305,get_system_cmd:151,get_tag:315,get_time_and_season:186,get_typeclass_tot:315,get_uptim:279,get_username_valid:143,get_valu:[270,289],get_vari:[191,194],get_width:328,get_worn_cloth:181,getattr:83,getchild:310,getclientaddress:[39,285],getel:136,getenv:[265,275],getfromlock:239,getgl:136,getinput:326,getkeypair:285,getloadavg:74,getpeer:285,getpid:342,getsizof:332,getsslcontext:[286,290],getston:33,getter:[147,176,181,196,205,217,220,244,245,272,314],gettext:75,gfg:319,ghostli:231,giant:[21,123],gid:[99,297],gidcount:296,gift:68,gist:[204,342],git:[9,23,25,36,44,46,62,74,75,78,85,89,99,107,123,127,129],github:[9,25,37,40,44,56,62,69,74,75,78,95,97,129,130,137,179,293,310,342],gitignor:130,give:[0,1,2,3,4,5,9,10,11,12,13,15,18,19,20,21,22,23,25,26,27,30,33,38,40,45,47,50,51,52,54,56,57,58,59,60,61,62,63,66,67,68,72,74,76,78,79,81,84,87,88,89,90,92,93,95,97,99,101,102,104,106,108,109,110,111,112,114,115,116,117,118,121,122,123,124,126,127,132,133,135,137,138,139,149,151,152,155,164,166,167,168,173,175,179,180,181,186,203,204,213,214,216,217,218,219,220,223,231,233,239,245,254,291,304,310,316,319,328,339,340,342,361,362],givelock:239,given:[0,2,4,10,11,12,13,14,20,21,22,25,27,31,33,34,38,41,42,45,48,49,50,57,61,63,66,69,72,73,79,82,83,84,85,87,88,89,92,96,99,101,104,108,109,112,113,114,115,116,118,121,122,124,125,126,130,132,133,134,137,139,143,149,150,151,152,153,155,156,158,163,165,167,168,174,175,176,179,180,181,183,184,185,186,187,188,189,191,193,197,202,203,204,205,211,214,216,217,218,219,220,230,231,232,239,240,245,247,248,249,250,255,256,257,259,263,265,270,271,274,283,288,289,294,297,300,304,305,306,307,309,310,314,315,316,317,319,320,322,323,324,325,326,327,328,329,332,334,335,337,338,339,340,342,347,360],given_class:357,giver:[217,220,245],glad:90,glanc:[22,27,31,33,38,47,52,57,60,90,95,179,205],glance_exit:22,glass:[202,223,225,226],glob:[42,164],global:[13,22,33,34,35,42,44,50,55,60,63,66,73,84,88,99,103,104,107,108,113,114,119,124,130,131,136,137,139,158,186,194,203,205,211,239,245,248,250,251,254,262,265,270,272,275,296,297,320,321,322,326,329,334,339,340,342,348],global_script:[101,140,321],global_search:[13,22,27,57,90,143,205,245,315],globalscript:[42,168],globalscriptcontain:321,globalth:340,globe:[89,135],gloss:60,glossari:[62,138,362],glow:110,glu:91,glyph:274,gmcp:[54,73,82,289],gmsheet:57,gmud:24,gno:22,gnome:24,gnu:14,go_back:214,go_up_one_categori:214,goal:[60,75,78,90,101,102,121,123,204],goals_of_input_valid:355,goblin:[42,50,108,158,250],goblin_arch:250,goblin_archwizard:250,goblin_wizard:250,goblinwieldingclub:108,god:[20,79,269],godlik:205,goe:[0,5,9,22,26,29,33,37,39,41,48,63,68,72,74,85,89,94,95,117,120,121,122,138,151,152,220,233,245,285,288,303,304,341,342,360],goff:203,going:[0,3,20,25,26,39,44,45,48,50,57,60,61,64,68,69,81,87,89,90,94,95,99,110,115,120,126,132,136,137,138,179,196,205,216,217,218,219,220,233,245,262,267,319,326],goings:267,gold:[50,81,84,108,320],gold_valu:84,golden:137,goldenlayout:137,goldenlayout_config:[136,137],goldenlayout_default_config:[136,137],gone:[5,12,76,79,84,99,101,130,257],good:[0,2,4,5,9,11,12,14,20,21,22,25,26,27,31,33,37,38,39,40,45,47,48,50,52,53,54,55,56,59,60,62,68,69,71,72,78,79,84,86,89,90,92,93,94,95,96,99,101,102,103,105,108,109,110,113,118,120,122,124,125,126,130,132,133,137,143,151,152,153,169,178,193,205,288,326],goodby:285,goodgui:240,googl:[42,74,78,89,163,328],googli:135,gossip:[64,78],got:[10,13,94,95,115,127,137,214,230],goto_kwarg:326,goto_next_room:120,gotten:[54,94,130,220,230,245,292],graaah:116,grab:[20,33,42,72,132,164,174,230,360],gracefulli:[26,42,155,168,205,245,265,342],gradual:[13,14,29,60,78,95,204],grai:[113,125],grain:[114,322],gram:81,grammar:204,grammat:204,grand:11,grant:[19,23,79,130,176,216,217,218,219,220,239,240,249,314],granular:220,grapevin:[7,138,140,145,260,273,362],grapevine2chan:64,grapevine_channel:[64,145],grapevine_client_id:64,grapevine_client_secret:64,grapevine_en:64,grapevinebot:145,grapevinecli:276,graph:[48,130],graphic:[41,57,79,82,83,92,110,127,134,140,185,189,289],grasp:[125,132],grave:59,grayscal:182,great:[0,4,14,16,21,22,29,37,38,50,56,60,68,69,72,76,78,90,94,106,107,122,130,133,179,187,310],greater:[22,31,79,96,104,118,239,326],greatli:77,greek:15,green:[31,42,79,108,113,125,130,158,168,230],greenskin:250,greet:[9,35,45,94,103,104,116,270],greetjack:86,greg:78,grei:[108,125],grenad:88,grep:[74,130],greyscal:113,greyskinnedgoblin:108,griatch:[21,85,118,178,180,182,183,184,185,186,188,198,200,201,204,205,211,212,213,230,325,332,338,341],grid:[7,16,110,122,138,220,233,342,362],gridstr:342,grief:12,griefer:133,grin:[33,40],gritti:33,ground:[20,21,54,110],group:[4,9,10,12,19,21,26,33,37,40,42,45,54,67,69,78,90,99,101,108,111,124,126,138,139,144,147,154,158,164,175,186,202,230,231,245,249,250,274,313,314,317,319,322],grow:[13,25,26,60,62,78,109,276,277,328,342],grown:[9,25,50,128],grudg:72,grumbl:59,grungies1138:[198,213],grunt:[42,158,250],gthi:80,guarante:[11,37,60,79,85,89,101,184,194,249,283,304,316],guard:50,guess:[15,22,45,49,68,90,102,112,137,179,250],guest1:65,guest9:65,guest:[7,79,138,143,362],guest_en:[65,79],guest_hom:[65,132],guest_list:65,guest_start_loc:65,guestaccount:111,gui:[44,56,82,136,198,362],guid:[36,37,44,80,94,95,127,132,135],guidelin:[37,78],guild:[78,85,111,117],guild_memb:50,gun:[21,76],guru:54,habit:55,habitu:114,hack:[54,72,115,274],hacker:[78,102],had:[8,9,14,15,19,20,21,29,31,37,54,60,89,94,95,99,101,118,122,127,134,137,157,181,230,249,250,254,257,265,316,320,327,355],hadn:[60,61,130],half:[107,137,237],hall:48,hallwai:48,halt:[101,110],hand:[1,15,37,39,42,50,54,55,56,57,60,69,72,86,88,95,104,107,118,133,153,164,166,167,168,178,200],handi:[41,74,118,132,218],handl:[0,2,4,5,7,8,9,11,13,15,22,24,27,33,34,37,39,40,42,43,46,48,49,50,54,55,59,60,61,63,67,73,74,79,82,84,85,86,87,88,90,92,94,96,99,103,104,107,114,115,116,123,124,125,127,128,130,131,136,137,138,143,145,148,149,151,152,158,159,163,164,167,173,178,185,186,194,196,197,200,205,209,211,213,214,216,217,218,219,220,225,230,231,232,234,244,245,248,249,250,254,255,262,265,269,270,274,275,277,278,285,288,289,292,294,296,305,306,313,314,316,319,320,322,323,324,326,328,329,332,341,342,349],handle_egd_respons:267,handle_eof:285,handle_error:194,handle_ff:285,handle_int:285,handle_quit:285,handle_setup:269,handler:[2,11,31,33,40,46,63,72,79,82,83,85,86,88,101,103,104,111,114,124,138,143,149,152,167,171,173,176,178,191,194,195,197,205,229,233,239,240,244,245,250,255,256,258,259,270,282,283,303,306,312,313,314,316,317,321,322,325,326,336,337,342],handlertyp:317,handshak:[24,51,82,275,281,283,288],handshake_don:288,hang:[3,60,69,123],hangout:118,happen:[0,6,12,19,20,26,27,31,33,37,38,40,41,43,50,53,54,56,57,59,60,61,63,71,72,76,79,82,85,87,89,90,94,95,96,101,104,106,107,109,110,113,114,115,118,121,122,125,126,127,130,132,137,143,151,152,174,183,196,212,216,217,218,219,220,226,229,231,233,245,248,250,267,274,277,297,302,304,305,306,316,326,327,332,334,335,342,361],happend:250,happi:[13,118],happier:90,happili:95,haproxi:[89,138,362],hard:[9,10,11,13,15,19,26,27,31,33,39,40,57,60,62,63,75,78,87,89,92,95,96,99,101,108,111,114,118,120,126,130,132,137,138,167,187,214,254,265,314,316,326,362],hardcod:[56,57,76,99,110,139,314],harden:62,harder:[12,55,60,92,118,126,230],hardwar:[89,278],hare:78,harm:[11,29,218],harri:58,harvest:360,has:[0,2,4,8,9,10,11,12,13,14,15,16,19,20,21,22,23,25,27,28,29,31,33,34,36,37,38,39,40,41,42,43,45,46,48,49,50,53,55,56,57,58,59,60,61,62,63,64,67,68,69,70,73,74,75,76,77,78,79,82,84,85,86,87,88,89,90,92,93,94,95,96,99,100,101,102,103,104,106,108,109,111,112,113,114,115,116,117,118,120,121,122,124,125,126,127,128,130,131,132,133,134,135,136,137,138,142,143,144,145,150,151,152,153,155,157,158,166,167,168,169,170,173,174,175,178,179,183,184,185,186,187,194,196,198,199,202,203,205,214,216,217,218,219,220,222,229,230,231,232,233,237,239,240,244,245,249,250,254,257,259,265,267,269,270,274,277,279,283,287,292,293,297,303,304,305,306,308,313,314,315,316,322,324,325,326,328,332,335,336,339,342,355,358,360],has_account:[88,229,239,244,245],has_attribut:314,has_cmdset:152,has_connect:[40,174],has_drawn:48,has_nick:314,has_par:342,has_perm:[166,240],has_sub:174,has_thorn:11,hasattr:[28,33],hash:[14,89,108,250,259,293,297,306,315],hasn:[22,48,203,230,313,314,360],hassl:61,hast:218,hat:[37,69,181],hau:[64,145,276],have:[0,1,2,3,4,5,6,9,10,11,12,13,14,15,16,19,20,21,22,23,25,26,27,28,29,30,31,33,34,35,36,37,38,39,40,41,42,43,45,46,47,48,49,50,52,53,54,55,56,57,58,59,60,61,62,63,64,65,67,68,69,70,71,72,73,74,75,76,77,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,99,101,102,103,104,105,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,143,145,149,151,152,153,155,158,160,163,166,167,168,169,170,174,175,176,178,179,180,181,183,185,186,187,188,193,194,196,197,201,203,204,205,208,209,214,216,217,218,219,220,223,226,231,232,236,237,239,244,245,248,249,250,251,254,256,257,258,259,270,275,278,279,283,285,288,289,303,304,305,306,308,311,312,313,314,315,316,317,319,320,321,322,323,325,326,327,328,334,335,338,339,340,342,343,355,360,361],haven:[4,22,29,41,61,76,108,110,116,117,119,126,127,132,133,137,308],hdict_cmd:165,hdict_db:165,head:[20,21,31,45,68,75,76,95,105,118,120,122,137,138],headach:[60,137],header1:327,header2:327,header:[9,13,14,27,34,37,62,81,88,94,102,128,137,153,174,176,198,205,245,289,320,322,328],header_line_char:328,headi:328,heading1:328,heading2:328,headless:[95,245],headlong:62,heal:[218,219,231],healing_rang:219,health:[30,60,72,83,87,89,108,115,189,250,289],health_bar:[140,141,177],hear:[29,45,60],heard:[110,121,239],heart:125,heartbeat:[114,276],heavi:[6,11,20,23,27,33,63,72,79,81,95,115,122,178,205,217,278,342],heavier:217,heavili:[9,27,37,39,56,74,85,103,179,216,217,218,219,220,316],heed:[104,240],heh:137,hei:[20,178,198],height:[51,73,136,140,270,285,304,325,328],held:[1,31,47,115,239],hello:[0,29,34,40,42,45,50,71,73,82,86,87,90,95,104,107,122,128,136,164,173,205,270,319],hello_funct:94,hello_valu:107,hello_world:[94,95,107],helmet:[29,76],help:[0,1,4,5,12,13,14,15,19,22,23,27,29,32,33,35,38,40,41,43,44,45,46,47,48,49,50,56,57,59,60,62,63,70,71,75,76,79,85,89,90,92,95,104,106,107,108,109,110,111,112,115,118,121,122,123,125,126,130,132,136,137,138,140,141,148,149,151,153,154,155,166,167,169,170,176,178,183,185,187,191,192,194,198,204,208,216,217,218,219,220,223,231,232,239,247,258,263,265,267,268,276,283,285,286,288,290,293,294,296,297,314,315,319,322,323,324,326,334,337,338,339,340,349,355,360,361,362],help_categori:[22,33,40,42,57,59,67,68,70,84,115,122,153,155,156,157,158,163,164,165,166,167,168,169,170,173,178,179,180,181,184,185,186,187,188,192,198,199,200,201,202,205,211,212,213,214,216,217,218,219,220,223,229,230,231,232,236,237,245,324,326,327,339],help_cateogori:324,help_detail:360,help_entri:324,help_kei:158,help_list:360,help_mor:165,help_system:68,help_text:[165,194,355],helpact:232,helpdetailview:360,helpentri:[68,79,235,236,237,322,360],helpentry_db_tag:235,helpentry_set:317,helpentryadmin:235,helpentryform:235,helpentrymanag:[236,237],helper:[19,40,42,50,57,79,108,118,140,143,152,155,158,165,172,175,179,183,204,245,249,250,262,274,275,294,306,320,326,335,340,341,342],helpfil:165,helplistview:360,helpmixin:360,helptaginlin:235,helptext:[50,247,326],helptext_formatt:[50,247,326],henc:[0,22,45,52,75,94,105,231,232,239,320],henceforth:[13,43,59,65,79,89,94,96,101,104,110,122,130,131,139,306],henddher:202,her:[121,126,181,188],herbal:325,herd:23,here:[0,2,3,4,5,9,10,11,13,14,15,16,17,19,20,21,22,23,24,25,27,29,30,33,36,37,38,39,40,41,42,43,45,46,47,48,50,55,56,57,58,60,61,62,63,64,68,69,70,71,72,73,74,75,76,78,79,80,82,83,84,85,86,87,88,90,91,94,97,99,100,101,102,103,104,105,106,107,108,109,110,112,113,114,115,116,117,118,119,120,122,124,125,126,127,128,129,130,132,133,134,135,136,143,145,151,152,153,158,166,167,168,170,174,178,179,180,181,183,184,185,193,194,203,204,205,212,216,217,218,219,222,223,226,229,230,231,232,233,237,240,245,249,250,257,265,267,270,274,276,282,283,285,288,303,304,306,312,313,314,316,319,322,326,328,332,334,342,344,360],hesit:[22,38],hfill_char:328,hidden:[11,48,60,63,95,121,130,136,176,181,184,232],hide:[9,11,20,31,33,34,40,60,72,79,95,110,137,165,176,184,205,223,230],hide_from:[34,176],hide_from_accounts_set:147,hide_from_channels_set:176,hide_from_objects_set:244,hieararci:239,hierarch:[2,19,42,79,155],hierarchi:[4,19,22,42,60,65,68,79,118,138,164,181,239],high:[4,8,20,31,54,62,79,121,151,219,245,307],higher:[7,19,25,31,40,42,43,50,55,57,61,62,72,79,89,104,107,118,122,127,143,151,155,168,204,216,217,218,219,220,231,239,267,326,342],highest:[31,57,319,342],highest_protocol:338,highli:[9,17,50,54,55,63,79,85,106,114,116,189,320,332],highlight:[14,56,57,113,125],hijack:133,hilight:341,hilit:341,hill:86,him:[40,45,50,188,205],hint:[1,25,54,62,78,92,94,108,109,122,123,127,135,138,183,311],hire:[84,102],his:[45,50,57,76,95,108,126,181,188,205,341],histogram:342,histor:[61,128,264,335],histori:[4,23,34,40,49,57,63,94,99,130,136,137,138,152,173,187,335],hit:[6,9,21,29,51,60,72,115,118,121,130,145,216,217,218,219,220,229,230,263,304,335,338],hit_msg:229,hite:113,hmm:137,hnow:113,hobbi:[60,89],hobbit:61,hoc:54,hold:[2,6,9,13,14,16,21,26,31,34,36,40,46,48,50,57,60,62,63,65,72,76,79,84,88,95,96,99,101,103,104,105,108,110,111,113,115,118,122,124,130,132,135,139,151,152,177,179,181,184,203,213,214,216,217,218,219,220,228,229,230,234,239,240,249,250,251,255,260,272,274,283,293,294,296,306,316,317,318,322,325,326,328,330,335,342,344],holder:[9,68,89,314],home:[8,16,26,62,63,65,78,88,89,102,108,130,132,138,152,158,164,229,239,244,245,250,322,342],home_loc:[42,158],homepag:[27,62,78,89,92],homes_set:244,homogen:[27,163,249,250,254],homogenize_prototyp:249,honor:205,hood:[20,33,50,56,59,60,63,85,86,118,121,124,127,205,232],hook:[2,25,30,33,42,48,54,59,60,72,73,75,79,80,88,95,101,106,109,114,115,116,117,119,120,122,126,131,143,149,151,153,155,158,164,166,168,169,172,174,181,186,194,196,202,203,205,209,216,217,218,219,220,227,229,230,231,233,242,245,252,254,257,259,269,276,288,291,293,301,303,304,305,307,316,324,327,332,333,336,340,342,355,360],hooligan:12,hop:54,hope:[41,57,90],hopefulli:[8,26,40,48,89,110,132,136],horizon:61,horizont:[136,137,230,328,342],hors:27,host1plu:89,host:[7,12,23,26,27,60,63,88,97,99,101,102,130,134,204,310,342],host_os_i:342,hotbutton:136,hotel:89,hotspot:102,hour:[27,61,131,183,329,342],hous:[42,89,108,158],housecat:27,hover:137,how:[0,1,3,4,5,6,7,8,10,11,12,13,14,15,17,19,20,21,22,25,26,27,28,29,30,31,35,37,38,39,40,41,42,43,44,45,47,48,50,54,55,56,59,60,61,62,63,65,67,68,71,72,74,76,79,80,81,82,83,84,85,86,87,89,90,92,93,94,95,96,101,102,103,104,105,107,108,109,110,111,115,116,117,118,119,122,123,125,126,127,129,130,131,132,133,134,135,136,137,138,139,144,145,150,152,153,167,168,169,172,173,174,179,181,183,184,188,199,203,204,205,212,214,218,219,220,225,229,233,235,239,244,245,250,254,259,265,270,275,279,284,289,292,296,303,304,305,306,310,313,316,320,324,326,328,335,336,341,342,355,361,362],howev:[0,2,4,5,10,11,12,13,14,15,17,20,22,23,29,30,31,33,37,39,40,42,43,45,49,54,57,58,59,61,69,72,76,79,84,87,89,90,107,108,109,110,112,113,114,119,122,124,127,128,130,131,134,152,153,158,165,168,169,179,187,189,194,203,214,219,226,239,319,327],howto:93,hpad_char:328,href:[17,68,132],hrs:183,htm:280,html5:54,html:[24,42,54,63,68,78,93,95,102,113,133,134,135,136,137,144,168,174,203,232,237,287,289,293,294,310,316,338,341,360],htmlchar:341,htop:109,http404:[68,133],http:[3,4,9,22,23,36,42,53,54,62,64,68,74,89,93,97,102,106,107,127,129,130,132,133,134,136,137,140,145,163,179,203,232,267,274,276,277,278,279,280,281,287,289,292,293,294,310,319,328,341,342,355],http_request:[102,134],httpchannel:310,httpchannelwithxforwardedfor:310,httpd:8,httprequest:143,httprespons:[144,172,242],httpresponseredirect:132,hub:[78,99,138,322],hue:113,huge:[3,16,21,29,38,60,61,85,126,233],huh:[22,33],human:[4,12,39,56,60,63,72,84,92,95,116,132,360],humanizeconfig:4,hundr:[71,112,132],hungri:85,hunt:[72,229],hunting_pac:229,hunting_skil:72,hurdl:48,hurt:30,huzzah:9,hwejfpoiwjrpw09:9,hybrid:72,i18n:[46,75,245],iac:87,iattribut:314,iattributebackend:314,icon:[78,105,137],id_:[144,235,242,355],id_str:83,idcount:296,idea:[0,9,12,26,33,37,38,44,48,54,55,59,60,62,68,70,71,72,76,79,84,105,106,107,118,120,122,126,129,130,132,133,138,153,165,166,169,178,204,250,332,341,360,362],ideal:[1,6,33,37,45,47,89,128,137,147,240],idenfi:151,ident:[9,31,33,43,56,60,82,95,96,109,113,143,166,167,205,211,240,245,319,320],identif:[27,114,306],identifi:[0,8,23,28,30,31,33,38,40,41,42,48,49,50,57,60,68,73,82,83,87,92,96,101,108,114,115,118,124,133,137,150,153,158,163,166,167,169,173,175,179,186,204,205,214,231,240,245,249,256,259,262,265,270,272,275,289,293,302,304,306,314,315,319,325,326,334],identify_object:175,idl:[12,104,143,145,229,245,297,304,306],idle_command:33,idle_tim:[143,245],idle_timeout:145,idmap:332,idmapp:[42,85,124,140,141,168,176,237,272,298,314,315,316,318],idnum:175,ids:[12,57,120,186,296,306,325],idstr:[83,114,255,259,302],idtifi:175,idx:120,ietf:281,ifram:[136,137],ignor:[6,14,20,23,27,29,31,33,34,41,42,50,57,72,73,79,82,85,89,90,94,95,104,113,116,120,121,124,130,143,150,151,152,153,158,174,186,205,239,244,245,259,265,270,276,277,292,293,294,314,316,319,320,325,326,334,337,342,343],ignore_error:143,ignorecas:[158,164,165,170,173,181,200,319,324,341],ignoredext:310,illumin:110,illus:[10,95],imag:[4,17,62,68,89,100,105,132,134,135,136,137],imagesconfig:4,imagin:[14,29,31,45,47,50,60,76,115,116,121,131,137,320],imaginari:[21,60,78],imc2:34,imeplement:233,img:17,immedi:[0,5,15,27,29,33,42,47,48,50,63,69,73,82,89,94,99,101,108,115,119,132,133,149,156,168,229,276,320,322,326,327],immobil:25,immort:229,immut:[11,259],imo:1,impact:[93,125],impati:62,imper:101,implement:[1,6,11,21,25,26,28,29,31,33,34,37,39,40,48,50,54,55,56,57,59,60,77,78,79,80,85,87,88,95,96,107,110,111,113,114,115,116,117,118,119,122,123,124,126,127,130,134,136,137,138,139,144,147,151,152,155,156,157,158,159,160,163,164,165,166,167,168,175,176,178,180,181,183,184,186,188,196,201,204,205,209,211,212,213,214,216,217,220,223,229,230,231,233,236,237,239,240,244,245,254,256,259,271,276,278,279,280,281,282,283,285,287,288,289,292,293,294,296,303,310,314,315,316,317,319,320,323,324,326,327,333,334,337,338,341,342,360,362],impli:[22,111],implicit:[90,113,125],implicit_keep:250,impmement:240,import_cmdset:152,importantli:[50,132,240],importerror:[4,9,52,342],impos:[54,78,308],imposs:[15,19,48,50,89,110,112,120,132,137,328],impract:[33,108,250],imprecis:332,impress:[41,110],improv:[0,11,37,60,69,75,90,127],in_game_error:[26,102],in_templ:[314,334],inabl:102,inaccess:[0,79],inact:[101,229],inactiv:[42,168],inadvert:220,inadyn:89,inarticul:107,inbuilt:[111,122],incant:74,incarn:355,incid:209,includ:[2,4,6,9,12,13,16,20,21,22,27,30,31,33,36,37,38,40,42,43,47,50,54,57,59,60,61,62,63,68,72,73,74,77,78,79,83,84,87,88,90,92,94,95,99,100,101,103,104,105,106,107,108,110,111,113,114,115,118,120,124,126,130,132,133,134,135,136,137,143,149,150,151,153,156,157,158,166,167,169,173,178,181,186,187,188,194,196,199,204,205,209,214,216,217,218,219,220,223,226,231,232,233,239,245,265,283,285,288,289,302,305,314,315,316,317,320,321,322,323,325,326,328,329,335,342],include_account:314,include_children:315,include_par:315,include_prefix:150,include_unloggedin:[283,306],inclus:315,incoher:125,incol:[57,325,328],incom:[33,39,87,89,95,103,138,144,145,150,167,172,209,217,242,252,274,278,281,284,288,289,293,294,296,304,305,306,310,326,334],incomplet:[153,212,328],inconsist:[10,96,203],incorpor:[42,155,328],incorrect:175,increas:[61,72,79,102,113,118,124,178,217,219,220,231,277,283,297,324],increase_ind:324,incred:[214,267],increment:[62,314],incur:27,indata:[39,314],inde:[9,54,89,90],indefinit:[101,218,230,322],indent:[0,9,13,14,27,49,56,59,94,128,136,294,320,324,326,342],independ:[0,55,63,101,125,178,200,208],indetermin:267,index:[7,42,48,55,60,67,78,84,85,89,107,120,134,135,150,164,178,214,230,237,263,267,268,310,317,319,327,328,342,355,358,360,361,362],index_to_select:214,indexerror:[133,233,315],indextest:358,indic:[0,8,22,42,48,61,84,90,94,110,118,145,158,165,166,167,188,209,214,254,276,277,285,292,293,306,308,310,320,326,327,342],individu:[0,11,13,14,18,21,22,33,34,40,42,45,47,48,54,56,57,58,70,72,77,84,87,89,95,108,110,131,152,156,173,184,191,194,219,226,239,247,248,250,304,317,319,328,334,336,337],ineffici:[114,116,319],infact:33,infinit:[0,60,62,145,233,249],inflict:[101,218],inflict_condit:218,influenc:[10,16,22,45,50,101,122,178,342],influenti:78,info1:213,info2:213,info3:213,info:[3,5,11,13,16,17,20,23,25,26,27,33,35,37,42,51,54,57,58,62,63,67,77,85,87,88,94,99,100,101,103,104,105,111,123,124,130,137,138,143,145,147,155,156,158,168,170,174,177,178,180,185,186,189,198,231,237,245,265,270,274,282,283,303,304,306,315,316,317,322,325,335,342],infomsg:335,inforamt:[205,233,245,316],inform:[0,2,3,6,8,9,18,20,22,23,25,27,28,33,34,36,40,42,45,47,50,54,59,64,65,67,68,72,82,83,84,85,90,93,94,95,99,101,102,103,104,108,111,113,115,116,118,119,122,123,126,130,131,132,133,134,135,136,137,138,143,145,153,156,158,164,168,173,176,179,184,196,203,205,209,210,218,219,220,237,245,257,265,270,279,280,281,283,292,305,306,315,316,319,322,324,335,342,355],infrastructur:[63,82,89,102,149,275],infrequ:45,ing:[9,14,57,184],ingame_python:[140,141,177],ingame_tim:61,ingo:[31,50,57,73,113,151,277,334],inher:[4,10,86,107],inherit:[2,5,6,22,27,30,31,33,36,39,41,42,56,59,63,68,80,85,88,95,101,108,113,116,118,122,124,126,147,151,153,158,166,168,169,174,176,178,179,181,186,188,196,202,205,212,216,217,218,219,220,229,231,232,241,244,245,250,254,256,305,312,315,316,324,327,328,332,340,342,360],inheritng:250,inherits_from:[42,116,133,168,342],inifinit:249,init:[6,9,22,39,46,48,57,59,62,74,94,103,105,130,136,137,178,179,187,223,244,256,265,283,284,294,306],init_delayed_messag:187,init_evt:327,init_f_str:327,init_fill_field:187,init_game_directori:265,init_iter:327,init_mod:[152,256],init_new_account:342,init_pars:232,init_queryset:327,init_rang:220,init_sess:[39,305],init_spawn_valu:249,init_str:327,init_tree_select:214,init_tru:152,initi:[5,9,11,21,29,33,46,48,49,50,57,59,60,63,67,72,84,96,104,106,109,119,122,126,129,130,132,136,137,143,144,145,152,153,169,173,174,176,178,185,187,191,195,197,204,205,214,216,217,218,219,220,229,230,235,242,244,245,255,258,259,262,263,265,267,268,269,274,275,276,278,279,280,281,283,284,285,286,287,288,289,290,292,293,294,296,304,305,306,313,314,319,321,324,325,326,334,337,338,342,349,355,360],initial_formdata:187,initial_ind:328,initial_setup:[140,141,260,303],initialdelai:[262,276,277],initialize_for_combat:[216,217,218,219,220],initialize_nick_templ:[314,334],initil:293,inject:[95,102,304,320,326],inlin:[18,56,84,103,136,144,172,235,242,252,263,313,334],inlinefunc:[44,82,103,108,140,141,248,306,318],inlinefunc_en:[113,334],inlinefunc_modul:[113,334],inlinefuncerror:334,inlinefunct:[113,334],inlinepars:334,inlist:342,inmemori:314,inmemoryattribut:314,inmemoryattributebackend:314,inmemorybackend:314,inmemorysavehandl:337,inner:76,innoc:[12,42,156],innocu:102,inobject:274,inp:[50,158,175,263,327,342],inpect:50,input:[1,5,9,10,14,15,17,20,22,27,30,31,39,40,42,49,54,56,57,69,73,78,82,86,90,94,95,103,104,108,109,110,112,113,114,117,126,130,132,134,136,137,143,148,149,150,153,158,163,165,166,167,168,169,173,175,179,184,187,199,200,204,205,209,214,219,230,236,245,248,250,263,270,274,285,293,304,306,314,315,324,325,326,327,328,334,336,338,342,343,355],input_cmdset:326,input_func_modul:[73,270],input_str:326,input_validation_cheat_sheet:355,inputcmdset:326,inputcommand:[73,82,87],inputcompon:136,inputdebug:[73,270],inputfunc:[39,44,103,138,140,141,145,260,293,304,306,362],inputfunc_nam:293,inputfunct:73,inputhandl:140,inputlin:[42,86,164,314,315],insecur:89,insensit:[173,186,205,231,315,347],insert:[13,14,25,49,57,63,70,86,95,108,113,137,152,188,201,248,320,328,334,342],insid:[0,5,10,11,13,15,19,20,21,23,25,27,28,31,33,41,42,45,46,50,52,56,58,63,67,68,70,71,72,79,81,84,85,87,88,90,91,92,94,95,99,101,104,105,107,108,109,110,113,116,120,122,124,126,131,132,133,134,135,138,140,145,168,179,186,189,193,194,205,229,233,239,244,245,248,265,282,303,310,320,321,334,342],inside_rec:239,insiderecurs:239,insight:[20,40,41,121,135],insist:[89,90],inspect:[12,23,42,50,84,143,158,178,263,265,326],inspectdb:85,inspir:[33,40,72,115,126,128,180,188,328,342],instac:[153,245,304],instal:[0,3,5,14,20,26,37,40,41,45,46,52,53,54,56,57,58,59,63,64,66,75,76,78,94,95,96,97,100,102,105,107,109,123,126,127,129,133,137,138,140,178,180,181,182,184,185,186,198,200,201,202,205,209,211,212,216,217,218,219,220,361,362],installed_app:[4,68,85,126,132,133],instanc:[0,2,3,8,11,16,17,22,25,27,28,29,38,40,41,42,45,49,50,55,56,57,58,59,60,61,63,68,75,83,84,90,94,95,96,101,102,104,106,108,115,118,120,125,126,129,130,135,136,143,144,147,149,150,151,152,153,162,165,167,168,172,174,176,179,194,196,197,199,203,214,232,233,235,237,242,244,245,249,250,252,254,258,259,262,265,274,275,276,277,278,279,280,281,283,287,288,292,296,297,305,306,310,313,314,316,317,319,322,323,326,328,332,333,338,342,343,355],instanci:179,instant:135,instanti:[33,85,126,143,152,169,223,256,259,282,303,306,314,325],instantli:313,instead:[0,3,6,9,10,11,12,14,16,19,20,21,22,23,25,26,27,29,30,31,33,34,37,38,40,42,45,47,48,50,56,57,59,61,62,63,66,78,79,82,83,84,85,88,89,90,92,94,95,99,101,102,103,104,105,108,109,110,111,113,115,116,117,118,120,122,124,125,126,127,130,131,132,133,134,135,137,138,143,145,152,153,155,156,158,160,163,167,168,170,179,184,185,187,196,197,200,205,212,214,216,217,218,219,220,225,230,232,233,239,240,245,250,259,265,293,294,304,308,313,314,316,317,322,326,332,335,337,338,339,342,355,360,361],instig:156,instil:[139,218],instr:[274,342],instruct:[0,8,9,13,14,23,27,30,37,41,42,45,46,54,56,57,59,60,62,73,74,76,78,82,84,89,92,95,96,99,105,118,123,130,138,143,153,168,199,205,209,250,259,262,265,275,277,283,288,289,293,294,296,304,306,326,336],insult:93,integ:[31,33,38,84,90,104,108,113,122,124,150,181,183,184,187,216,217,218,219,220,231,239,245,248,315,334,338,342,343],integerfield:[132,355],integr:[4,7,40,44,60,63,75,78,102,133,136,138,169,205,268,270,326,362],intellig:[72,82,90,102,133,152,296],intend:[13,17,20,22,27,31,33,34,37,41,54,60,89,102,107,108,110,111,113,121,125,130,135,136,143,163,178,179,205,226,237,245,250,283,315,317,322,323,325,328,334,339,340,343,360],intens:[78,92,113],intent:[75,95,102,204,342],inter:13,interact:[2,20,23,29,33,39,41,42,50,52,54,55,58,60,76,78,99,105,107,109,115,121,132,137,140,157,220,225,265,282,320,335,342],intercept:306,interchang:[115,326,360],interest:[0,1,4,11,14,20,21,22,26,33,37,39,41,45,48,54,56,59,60,69,78,85,89,90,92,95,102,108,113,118,119,120,122,135,152,167,178,183,231,233],interf:62,interfac:[9,21,22,23,25,36,39,41,42,52,62,63,68,69,78,79,89,93,95,96,100,103,118,132,134,136,137,138,155,158,172,174,245,257,276,305,310,314,317,319,360],interfaceclass:285,interfer:[23,96],interim:[29,114],interlink:[282,303],intermediari:[205,240,255,326],intern:[10,11,15,27,34,39,50,62,75,79,86,87,89,99,101,102,103,104,106,108,109,111,112,115,127,143,145,173,176,185,188,205,233,245,249,256,293,294,314,316,317,319,323,326,328,334,342],internal_port:89,internation:[7,112,138,362],internet:[10,12,16,33,39,42,62,71,89,93,102,123,156,262,267,275,276,277,285,288,296,310],interpret:[33,41,42,55,58,59,90,92,95,101,102,103,108,133,153,157,158,249,250,293,319,334,338],interrupt:[62,149,153,169,191,194,197,285],interruptcommand:[33,90,140,149,153],interruptev:197,intersect:[31,151],interv:[63,73,101,114,115,119,120,131,145,183,194,216,217,218,219,220,222,225,226,229,231,248,254,257,259,270,322,329,342],interval1:259,intim:[31,33],intimid:57,intoexit:[42,158],intpropv:122,intricaci:61,intrigu:53,intro:[4,68,121,123,133,231],introduc:[26,29,31,56,72,96,122,123,126,130,138,205],introduct:[3,13,14,15,18,19,20,44,59,62,123,130,138,179,361,362],introductori:[54,62],introroom:231,introspect:202,intrus:125,intuit:[22,50,60,85,90,130,138],intxt:27,inv:[31,42,81,164,181],invalid:[11,40,59,90,108,143,187,205,226,249,328,338,342,343],invalid_formchar:325,inventori:[20,21,25,27,31,79,84,90,96,118,137,164,181,205,239,245,316],invers:[79,113,125,205,291,341],invert:[113,125],invis:24,invit:[0,10,60,76],invitingli:20,invok:[11,13,14,101,208,239],involv:[39,55,60,67,74,79,88,104,106,115,122,187,220,316,317,319],ioerror:320,ipregex:156,ipstart:[62,99,109],iptabl:102,ipython:[26,52,57,58,95],irc2chan:[71,163],irc:[7,9,26,34,42,54,59,62,69,78,93,97,130,137,138,140,145,163,171,260,270,273,283,306,361,362],irc_botnam:145,irc_channel:145,irc_en:[71,163,239],irc_network:145,irc_port:145,irc_rpl_endofnam:277,irc_rpl_namrepli:277,irc_ssl:145,ircbot:[145,277],ircbotfactori:[145,277],ircclient:[277,306],ircclientfactori:283,irchannel:[42,71,163],ircnetwork:[42,71,163],iron:178,ironrealm:289,irregular:[222,229,231],irregular_echo:229,irrelev:[102,274],irur:51,is_account_object:55,is_act:[144,254],is_aggress:116,is_anonym:[4,68],is_anyon:4,is_authent:132,is_ban:143,is_bot:147,is_build:4,is_categori:214,is_channel:[33,40,173],is_connect:[147,245],is_craft:29,is_exit:[33,153],is_fight:29,is_full_moon:25,is_giving_light:230,is_gm:57,is_in_chargen:122,is_in_combat:[216,217,218,219,220],is_inst:27,is_it:342,is_iter:342,is_lit:[230,231],is_next:[147,176,244,254,314,316],is_o:342,is_ouch:11,is_prototype_bas:249,is_sai:117,is_staff:144,is_subprocess:342,is_superus:[2,4,143,144,147,240,245,322],is_thief:[42,165],is_turn:[216,217,218,219,220],is_typeclass:[143,316],is_valid:[101,120,132,178,226,254,257,342],is_valid_coordin:233,isalnum:319,isalpha:319,isbinari:[276,293],isclos:136,isconnect:136,isdigit:[57,113,319],isfiremag:28,isinst:[38,342],island:199,isleaf:294,islow:319,isn:[0,4,17,22,40,41,45,49,55,61,62,68,90,118,137,179,191,195,220,231,232,267,313,319,336,347],isnul:338,iso:[15,112],isol:[13,37,60,62,63,90,94,99,126],isp:[89,102],isspac:319,issu:[7,8,10,11,13,14,21,22,23,29,31,33,37,41,42,47,53,57,59,62,69,78,84,88,89,92,102,107,122,124,125,126,130,137,139,249,265,296,297,328,361],istart:[41,109,140],istep:297,istitl:319,isub:115,isupp:319,itch:[60,62],item:[20,42,46,50,58,62,67,68,81,84,85,115,116,136,137,164,178,181,187,205,218,223,233,245,284,314,334,342],item_consum:218,item_func:218,item_kwarg:218,item_selfonli:218,item_us:218,itemcoordin:233,itemfunc:218,itemfunc_add_condit:218,itemfunc_attack:218,itemfunc_cure_condit:218,itemfunc_h:218,iter:[11,48,50,58,96,111,118,137,143,199,205,233,245,250,257,294,296,314,316,319,320,323,327,342],iter_cal:327,itl:[22,179],its:[0,2,3,5,9,11,12,14,15,16,20,21,22,23,25,27,29,31,33,37,38,39,40,41,42,43,48,49,50,51,52,54,55,56,57,59,60,61,62,63,64,67,68,69,71,72,74,79,80,81,82,83,84,85,87,88,89,90,92,93,94,95,97,99,100,101,102,103,104,108,110,113,114,116,117,118,120,121,122,123,124,125,126,127,128,129,130,132,133,134,135,136,137,138,143,144,145,147,149,150,151,152,153,156,158,166,167,168,174,175,178,179,187,188,194,196,202,204,205,212,214,216,217,218,219,220,225,226,229,230,232,233,239,244,245,250,257,258,259,265,270,274,278,291,292,293,294,297,305,306,310,311,313,314,315,316,317,320,325,326,328,332,334,335,336,337,338,339,342,355,360],itself:[0,4,9,11,15,17,20,21,22,23,25,27,29,33,36,37,39,40,43,44,45,46,48,50,54,59,62,63,67,74,76,77,79,81,84,85,88,95,103,104,105,110,113,114,115,117,118,121,122,124,126,130,132,133,134,135,143,145,173,174,179,184,187,197,203,205,214,219,222,230,231,233,234,239,245,247,250,258,265,289,294,306,310,313,314,317,319,322,324,326,337,339,344,355,360],iusernamepassword:285,iwar:84,iweb:89,iwebsocketclientchannelfactori:276,iwth:259,jack:86,jail:[12,13],jamochamud:24,jan:[12,61],januari:61,jarin:89,javascript:[54,87,102,134,135,136,137,293,294],jenkin:[122,181,187,189,214,216,217,218,219,220],jet:219,jetbrain:[78,105],jnwidufhjw4545_oifej:9,job:[33,40,68,79,143],jobfusc:204,john:[57,213],johnni:[208,209],johnsson:86,join:[9,22,34,42,48,57,60,62,64,71,95,111,115,118,122,132,143,163,174,178,204,319,342],join_fight:[216,217,218,219,220],join_rangefield:220,joiner:174,jointli:[63,152],joke:58,joker_kei:[22,179],jqueri:137,json:[82,87,136,137,208,276,289,293,294,323],jsondata:87,jsonencod:294,jsonifi:294,judgement:72,jump:[13,14,21,40,43,48,50,51,54,60,62,76,88,107,130,138,214,263],junk:274,just:[0,1,3,4,5,6,9,10,11,12,13,14,15,17,19,20,21,22,23,25,26,27,28,29,30,31,33,34,37,38,39,40,41,42,43,45,46,47,48,50,51,52,53,55,56,57,58,59,60,61,62,63,67,68,69,72,73,75,76,78,79,80,82,84,85,86,87,88,89,90,92,94,95,96,99,100,101,104,105,106,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,124,125,126,127,130,131,132,133,134,135,136,137,139,143,151,152,153,156,158,166,167,168,169,173,178,179,181,184,186,191,193,194,196,205,213,214,216,217,218,219,220,223,226,229,231,233,239,240,245,249,250,255,270,283,293,303,310,314,315,316,319,323,324,326,328,337,338,342,343,360],justif:[327,342],justifi:[95,108,248,319,327,342],justifii:327,justify_kwarg:327,kavir:289,kcachegrind:92,keen:37,keep:[0,1,4,7,9,11,13,14,15,16,20,25,26,29,30,33,34,41,44,47,50,55,56,57,59,60,61,62,63,67,68,72,74,75,76,77,80,81,84,90,91,94,95,96,99,104,108,115,117,120,121,125,127,130,131,132,133,137,145,186,189,194,203,208,226,230,231,249,250,256,267,308,326,328],keep_log:[34,174,322],keepal:[104,288,294],keeper:84,keepint:63,kei:[0,1,5,8,9,10,11,13,21,25,26,27,28,29,30,31,33,34,38,40,41,42,43,48,49,51,52,55,56,57,59,61,68,70,73,79,80,81,83,84,85,87,88,90,93,94,95,96,101,106,110,111,113,114,115,118,119,120,122,124,126,128,130,132,136,137,143,145,147,149,151,152,153,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,173,174,175,178,179,180,181,183,184,185,186,187,188,192,193,198,199,200,201,202,204,205,211,212,213,214,216,217,218,219,220,223,229,230,231,232,233,237,239,244,245,248,249,250,254,255,256,257,259,263,265,270,271,272,274,283,286,289,290,292,293,294,297,304,305,306,308,314,315,316,317,321,322,324,325,326,327,335,336,337,339,342,355,360],kept:[33,42,56,79,90,118,126,158,193,194,250,314],kept_opt:214,key1:201,key2:[50,201,245],key_mergetyp:[31,151,223],keyboard:137,keydown:136,keyerror:[249,259,337],keyfil:[286,290],keynam:[174,250,322],keypair:285,keys_go_back:[22,179],keystr:317,keystrok:285,keywarg:[169,227,291,301,340,350],keywod:328,keyword:[0,1,5,10,11,22,25,27,29,30,33,34,42,49,50,51,57,61,73,79,80,82,85,90,92,94,101,106,108,113,114,118,122,124,126,133,143,145,149,153,158,164,174,181,183,186,191,193,194,196,197,204,205,209,216,217,218,219,220,231,232,240,245,248,249,250,255,258,259,263,265,270,274,276,277,283,284,285,288,293,294,304,305,306,308,314,315,316,322,325,326,327,328,332,334,336,338,339,342,360],keyword_ev:197,kick:[12,31,42,50,57,89,145,151,156,163,170,185,245,327],kildclient:24,kill:[20,27,42,50,60,74,92,99,101,104,115,168,178,229,230,255,256,257,259,265,303,310],killsign:265,kilogram:81,kind:[0,11,37,39,79,90,96,103,115,117,118,120,132,137,216,217,218,219,240,316,343],kinda:137,kindli:125,kitchen:[42,43,158],knew:94,knock:50,knot:181,know:[0,2,5,6,8,10,11,13,14,15,16,20,21,22,23,26,29,31,33,37,38,39,40,41,42,43,47,48,50,53,55,56,57,59,60,63,68,69,71,72,73,78,79,80,81,82,83,84,85,88,89,90,92,94,95,96,97,99,101,103,104,109,110,112,113,115,116,117,118,120,124,125,126,127,130,131,132,133,135,137,138,153,157,158,166,167,169,173,178,193,198,204,214,219,230,244,245,270,304,306,313,314,320,321,326,342,360,361],knowledg:[13,15,24,33,54,76,287,306],known:[7,20,24,33,49,72,78,79,86,91,95,113,114,124,133,136,142,167,219,327,361],knuth:92,kobold:60,koster:78,kovash:50,kwar:316,kwarg:[1,10,25,29,33,39,40,50,57,58,73,79,80,82,83,87,95,106,108,113,114,117,120,124,131,133,136,143,144,145,146,147,149,153,155,156,157,158,163,164,165,166,167,168,169,170,173,174,175,176,178,179,180,181,183,184,185,186,187,188,191,192,193,194,196,198,199,200,201,202,203,204,205,209,211,212,213,214,216,217,218,219,220,222,223,225,226,229,230,231,232,233,236,237,239,240,242,243,244,245,247,248,249,250,253,254,255,257,258,259,262,263,267,270,271,272,274,275,276,277,282,283,284,285,286,288,289,290,293,294,298,303,304,305,306,307,308,310,313,314,315,316,317,319,324,325,326,327,328,329,331,332,334,335,336,337,338,339,340,342,343,355,358,360],label:[47,85,111,132,139,355],label_suffix:[144,235,242,355],laborum:51,lack:[13,55,60,69,128,205,245,314,342],ladder:57,lag:[48,62],lai:[1,47],lair:14,lambda:[10,38,50,68,108,194,250,342],lamp:[110,223,225,226],land:[90,115,229,230],landscap:[102,110],lang:204,langcod:205,langnam:205,languag:[7,15,39,46,54,55,56,57,63,78,90,94,102,107,112,113,117,123,124,126,128,129,136,138,204,205],language_cod:75,languageerror:[204,205],languageexistserror:204,languagehandl:204,larg:[10,11,13,14,16,20,23,37,50,54,55,60,85,89,95,96,107,108,121,126,204,233,283,320,325,332],larger:[14,20,48,56,60,67,79,81,85,107,186,291,319,332,342],largesword:85,laser:76,last:[4,11,13,14,22,26,29,31,33,34,36,41,42,47,50,53,57,59,68,73,75,85,86,88,90,94,95,104,106,109,115,120,121,125,126,130,133,135,136,149,150,152,158,163,164,178,183,186,194,196,205,214,216,217,218,219,220,226,245,269,319,320,321,326,327,328,329,335,342],last_cmd:33,last_initial_setup_step:303,last_login:144,last_nam:144,last_step:269,lastcast:28,lastli:[80,110,132,149],lastsit:25,late:321,later:[0,2,9,11,12,13,22,23,33,34,39,42,45,54,57,59,60,62,63,68,72,73,75,80,82,83,85,89,94,96,108,110,113,114,116,119,120,121,122,124,130,132,137,138,139,151,155,156,158,166,167,183,202,205,250,259,285,317,342],latest:[20,21,27,31,36,42,57,62,63,74,97,130,158,163,168,196,245,250,284,308,326,335,361],latin:[15,112,245,342],latin_nam:245,latinifi:[245,342],latter:[6,27,29,34,63,76,79,88,90,94,114,125,205,254,256,317],launch:[14,21,53,62,74,84,89,92,101,105,109,121,126,137,152,223,264,265,275,277,296,324,342],launcher:[92,105,264,265,274,275,296],law:78,layer:[22,31,244,316],layout:[27,48,55,57,95,118,124,127,136,137,233],lazi:342,lazy_properti:342,lazyencod:294,lazyset:335,lc_messag:75,lcnorth:113,ldesc:55,ldflag:74,lead:[0,11,13,17,20,22,23,31,37,42,48,50,55,59,60,63,68,78,82,85,101,102,110,120,143,150,151,158,168,194,197,203,211,245,250,289,304,314,316,326,328,334,342],leak:134,lean:205,leap:[61,117],learn:[0,15,16,17,20,22,29,31,33,41,45,48,52,55,56,59,62,67,68,78,79,80,94,95,105,107,121,123,125,130,133,135,138,204,219,362],learnspel:219,least:[3,8,33,38,41,46,48,50,54,56,57,60,72,79,85,89,95,101,105,120,137,143,152,175,178,204,236,245,250,257,319,325,328,339,342],leasur:229,leather:84,leav:[0,2,20,21,22,25,42,57,59,72,73,76,84,92,94,101,102,115,122,136,137,155,157,158,163,174,178,179,231,233,239,245,293,294,326,332],leavelock:239,leaver:174,left:[22,27,33,36,38,40,42,56,68,73,79,84,85,90,100,101,108,110,113,136,137,143,158,164,166,167,189,216,217,218,219,220,230,233,240,248,250,316,319,328,342],left_justifi:[108,248],leg:302,legaci:[87,108,143,205],legal:[89,102],legend:[48,49,199],leisur:343,len:[25,48,57,70,84,108,113,115,118,119,120,150,167,183,342],lend:49,length:[22,23,25,48,61,65,67,70,85,89,90,94,121,150,183,187,189,197,204,205,267,308,314,319,328,342,360],lengthi:[1,25],lengthier:361,lenient:108,less:[22,34,43,50,55,60,63,72,85,89,90,105,107,115,118,131,132,136,138,183,217,219,314],let:[0,3,5,7,8,9,11,12,14,15,20,21,22,25,28,31,33,37,38,39,40,42,43,45,47,48,50,55,56,57,59,60,61,62,63,64,69,71,72,73,74,76,79,80,81,82,84,88,90,92,94,95,97,102,105,110,113,114,116,117,118,120,122,123,125,126,130,132,133,135,136,139,143,153,158,164,165,169,173,178,181,184,187,189,214,226,233,240,245,275,294,306,322,326,336,341,355,360,361],letsencrypt:89,letter:[15,22,38,42,75,89,94,110,112,113,118,122,132,155,164,179,203,309,342],level:[2,11,13,19,20,22,26,27,30,36,39,40,42,46,49,50,52,54,56,57,60,65,68,70,72,78,79,84,89,94,95,103,104,107,110,111,118,124,132,137,138,139,143,155,160,161,179,180,183,198,204,214,239,245,249,250,267,304,314,316,322,324,329,334,342,360],lever:[33,124],leverag:3,levi:85,lhs:[25,57,166,167],lhslist:[166,167],lib:[62,66,74,96],libapache2:8,libcrypt:74,libjpeg:74,librari:[6,13,26,44,52,55,56,62,63,74,75,77,78,90,94,99,102,107,108,124,126,127,132,135,136,137,177,203,232,249,250,278,316,328,342],licenc:319,licens:[37,44,78,105,138,203,319,362],lid:[223,225,226],lidclosedcmdset:223,lidopencmdset:223,lie:110,lies:[33,130],life:[11,37,61,86,94,125,183,229],lift:[20,72,79,95,122,220,240],lifter:79,light:[14,23,27,60,101,107,121,152,217,230,231,239,250,258,319],lightabl:230,lighter:[113,217],lightest:27,lightli:[16,217],lightsail:89,lightsourc:230,lightsource_cmdset:230,like:[0,2,3,5,6,8,9,10,11,12,14,15,16,17,19,20,21,22,23,24,25,26,27,28,29,30,31,33,34,35,36,37,38,39,40,41,42,43,44,45,47,48,50,51,53,54,56,57,58,59,60,61,62,63,64,67,68,69,70,71,72,73,74,75,76,78,79,80,82,83,84,85,87,88,89,90,92,94,95,96,99,101,102,103,104,105,106,107,108,110,111,113,114,115,116,118,119,120,124,125,126,127,128,130,131,132,133,134,135,136,137,138,139,143,145,147,148,150,151,152,155,157,158,163,166,167,170,171,174,175,178,179,181,185,186,187,188,189,197,199,203,204,205,211,212,214,216,217,218,219,220,223,226,231,232,233,237,239,240,244,245,248,249,250,270,278,294,299,303,305,306,314,315,316,319,320,322,325,326,327,328,329,332,336,338,339,342,355,360,362],limbo:[0,9,13,14,20,22,27,42,58,62,65,103,110,120,121,133,158,179,269],limbo_exit:110,limit:[0,2,6,11,16,19,20,25,26,27,28,31,33,34,37,42,45,50,54,57,60,63,67,70,79,85,89,90,94,101,103,108,111,115,121,122,124,125,126,137,139,143,155,156,157,158,174,175,181,194,205,214,216,218,219,226,236,237,240,245,250,254,257,259,270,283,308,314,315,316,317,320,322,324,335,339,342,360],limit_valu:143,limitedsizeordereddict:342,line:[0,4,5,9,10,13,14,15,19,22,23,25,26,27,29,30,31,33,34,36,38,40,42,44,45,47,50,53,55,56,57,58,59,60,61,62,66,68,73,75,80,82,85,86,88,89,90,91,92,94,95,96,97,99,103,107,108,109,110,113,118,120,122,124,126,127,132,133,136,137,138,140,143,149,152,158,165,167,168,179,184,185,187,199,200,201,204,205,214,232,233,249,265,270,285,288,293,304,316,320,324,325,326,327,328,335,342,355,360],linear:48,linebreak:[68,341],lineeditor:324,lineend:341,linefe:136,linenum:324,liner:277,linereceiv:[285,288],linesend:294,lingo:[56,85,104,134],linguist:342,link:[2,3,4,9,14,17,18,20,22,25,29,31,33,37,38,39,45,47,48,50,53,54,56,62,63,68,69,71,84,88,89,95,97,104,110,118,120,122,123,127,130,132,133,138,143,147,158,163,191,196,223,226,232,239,240,245,254,263,265,276,280,285,288,316,341,362],link_ok:239,linklock:239,linknam:53,linod:89,linux:[4,8,9,23,25,63,71,74,86,89,92,96,99,105,130,208,342],liquid:316,list:[0,1,2,3,4,6,7,11,12,13,14,15,20,22,23,25,27,31,33,34,37,38,39,40,42,44,45,47,48,50,53,54,56,57,58,59,60,62,65,67,68,69,71,72,73,75,76,78,79,81,84,85,87,88,89,90,92,93,95,96,97,101,102,104,105,108,109,110,111,112,113,115,118,120,122,123,124,127,128,130,132,133,134,136,137,138,143,145,147,150,151,152,153,155,156,157,158,163,164,165,166,167,168,169,173,174,175,176,178,179,180,181,182,186,187,188,189,191,192,194,195,196,197,198,199,201,202,203,204,205,208,209,214,216,217,218,219,220,229,230,233,236,239,240,244,245,248,249,250,255,256,257,258,259,263,265,270,271,275,277,279,281,283,284,289,294,297,306,308,310,313,314,315,316,317,319,320,321,322,323,326,327,328,334,335,336,339,342,360,361],list_attribut:158,list_callback:192,list_displai:[144,172,235,242,252,261,313],list_display_link:[172,235,242,252,261],list_filt:[242,313],list_nod:326,list_of_all_rose_attribut:11,list_of_all_rose_ndb_attr:11,list_of_lycanthrop:118,list_of_myscript:101,list_prototyp:249,list_select_rel:[172,235,242,252,261],list_set:265,list_styl:155,list_task:192,list_to_str:342,listabl:[42,158],listcmdset:[42,158],listcmset:[42,158],listen:[2,12,34,40,42,66,79,102,104,123,136,138,163,174,204,205,223,239,360,362],listing_contact:53,listobj:[42,168],listobject:[42,168],listscript:[42,168],listview:360,lit:[230,231],liter:[13,20,42,56,65,108,164,248,319,338,342],literal_ev:[249,313],littl:[0,4,9,10,15,20,21,25,28,33,34,40,41,56,57,59,63,68,69,70,84,89,90,95,99,101,108,109,110,116,117,118,124,130,133,135,137,138,199,217,231,300,314,326,342,355],live:[8,23,59,62,69,78,89,99,105],ljust:319,lne:214,load:[6,11,12,13,15,26,29,31,33,42,43,49,50,55,56,57,59,60,68,72,81,96,102,105,108,110,120,122,126,135,136,137,147,152,164,165,168,176,186,194,204,237,240,244,245,254,258,269,272,274,305,314,316,317,320,321,324,333,336,337,340,342,353],load_buff:324,load_data:321,load_kwarg:337,load_sync_data:305,loader:[50,316,342],loadfunc:[49,324,337],loc:[42,158],local0:66,local:[23,25,36,37,46,58,61,63,71,75,96,99,102,105,113,130,132,135,137,191,194,205,250,288,314],localecho:89,localevenniatest:340,localhost:[3,4,9,23,24,62,66,68,74,89,94,132,133,134,136,294],localstorag:137,locat:[0,2,4,6,8,9,11,12,13,20,21,25,27,30,31,33,35,38,42,45,46,47,48,50,52,56,57,58,62,63,65,73,76,79,84,88,89,90,95,99,101,102,108,110,111,113,116,117,118,120,121,122,124,126,127,130,132,134,135,136,139,143,149,158,164,168,175,179,180,181,186,196,199,202,205,211,229,231,233,239,244,245,250,294,303,315,316,317,320,322,326,328,335,339],location_nam:233,location_set:118,locations_set:[118,244],locattr:[230,239],lock:[4,6,10,12,19,20,21,22,23,25,28,29,31,33,34,38,40,43,44,46,47,57,59,61,67,70,81,84,88,89,95,103,108,109,111,122,124,132,137,138,140,141,143,144,153,155,156,157,158,163,164,165,167,168,169,170,174,176,178,179,180,181,184,185,186,188,191,192,194,195,198,199,200,201,202,205,211,213,223,229,230,231,233,235,237,244,245,249,250,310,314,316,322,324,326,336,343,362],lock_definit:240,lock_func_modul:[79,240],lock_storag:[153,155,156,157,158,163,164,165,166,167,168,169,170,173,176,178,179,180,181,184,185,186,187,188,192,198,199,200,201,202,205,211,212,213,214,216,217,218,219,220,223,229,230,231,232,237,245,314,316,324,326,327],lockabl:[57,211],lockablethreadpool:310,lockdown:[79,314],lockdown_mod:[66,89],lockexcept:240,lockfunc1:79,lockfunc2:79,lockfunc:[25,33,42,79,103,120,140,141,158,238],lockhandl:[11,47,79,124,140,141,153,179,232,238,239],lockset:245,lockstr:[4,11,33,42,79,96,108,158,163,165,174,176,211,239,240,245,250,314,322],locktyp:[151,250],log:[2,4,5,6,8,10,11,12,20,21,23,24,25,33,34,35,36,38,42,43,44,46,50,54,56,57,58,59,62,63,64,65,66,70,71,72,73,74,75,85,88,89,92,93,99,100,101,104,105,106,109,110,113,120,121,122,127,129,130,132,133,134,136,137,143,152,156,170,174,180,185,187,200,208,209,245,254,265,270,274,275,279,282,283,285,288,296,297,298,304,306,308,310,316,322,334,335,342,360,362],log_dep:[27,335],log_depmsg:335,log_dir:208,log_err:[27,335],log_errmsg:335,log_fil:[27,335],log_info:[27,335],log_infomsg:335,log_msg:335,log_sec:335,log_secmsg:335,log_serv:335,log_trac:[27,101,117,119,335],log_tracemsg:335,log_typ:335,log_typemsg:335,log_warn:[27,335],log_warnmsg:335,logdir:36,logentry_set:147,logfil:[265,335,360],logged_in:104,loggedin:283,logger:[27,101,117,119,140,141,208,277,318],logic:[0,4,10,38,40,41,43,48,68,96,110,133,204,244,248,269,314,326,343],login:[2,4,7,9,25,33,35,42,50,54,68,69,79,89,96,100,104,106,130,132,138,143,155,170,185,200,240,269,270,285,288,293,294,297,306,342,347,349,358,360,362],login_func:297,loginrequiredmixin:360,logintest:358,logout:[296,297,358],logout_func:297,logouttest:358,logprefix:[275,285,288,310],lone:[42,60,110,158],long_descript:53,long_running_funct:10,long_text:51,longer:[0,21,25,29,33,40,42,49,51,53,57,68,78,85,90,101,114,123,124,125,128,151,156,174,181,204,205,212,216,217,218,219,220,255,324,328],longest:[27,205],longrun:33,loo:[153,169],look:[0,3,4,6,9,10,11,12,13,14,15,16,17,19,20,21,22,23,25,26,27,29,30,31,33,35,36,37,38,39,40,41,43,45,47,48,50,54,56,57,59,60,61,62,63,67,68,69,70,72,73,74,75,76,79,80,81,82,84,85,86,87,88,89,90,93,95,96,99,102,104,107,108,109,110,111,113,115,116,117,118,120,121,123,124,125,126,130,132,133,134,135,136,137,138,143,145,150,152,153,155,158,164,166,167,169,170,173,180,181,185,186,187,193,200,201,202,204,205,214,218,223,230,231,233,236,239,240,242,244,245,247,250,270,285,286,293,297,314,316,320,326,327,328,336,339,341,342,355,362],look_str:143,lookaccount:57,lookat:33,looker:[48,57,59,122,181,186,205,233,239,245,316],lookm:33,lookstr:245,lookup:[11,33,42,79,85,96,111,118,149,164,208,244,284,317,319,331,332,338,339,342,343],lookup_typ:338,lookup_usernam:50,lookuperror:319,loom:110,loop:[0,5,6,11,21,45,48,54,59,63,68,84,92,95,115,117,118,123,124,140,145,216,250,283],loopingcal:[257,268],loos:[14,37,143,181,220,236,285,296,320],loot:60,lop:118,lore:57,lose:[11,55,60,99,104,109,115,122,137,208,218,276,277,285,288],lost:[0,38,42,55,78,90,109,110,124,134,138,212,262,275,276,277,285,288,293,314,319],lot:[0,4,10,13,15,22,26,27,28,34,37,38,40,41,45,54,56,57,58,60,61,62,68,69,72,78,79,85,89,90,92,94,95,107,108,110,111,113,118,120,122,124,126,130,132,134,137,179,183,185,187,205,213,217,230,233,310],loud:21,love:136,low:[31,39,45,65,89,94,151],lower:[2,10,19,25,29,31,33,40,42,48,50,57,61,79,84,85,89,92,113,121,136,150,151,155,166,168,205,270,319],lower_channelkei:[40,173],lowercas:[94,153,319],lowest:[65,89,239,319],lpmud:128,lpthw:76,lsarmedpuzzl:202,lspuzzlerecip:202,lst:48,lstart:49,lstrip:[90,319],ltto:113,luc:325,luciano:78,luck:[8,50,90,95],luckili:[59,79,110,126,130],lue:113,lug:54,lunch:45,luxuri:[111,312],lycanthrop:118,lying:110,m2m:317,m2m_chang:106,m_len:342,mac:[9,23,24,63,92,99,105,130,342],machin:[13,25,99,105,130,229],macport:[62,130],macro:[4,115],macrosconfig:4,mad:130,made:[3,11,19,20,21,25,26,35,36,42,50,55,57,58,60,78,79,89,95,97,102,103,108,110,120,122,130,133,149,151,163,168,178,181,187,214,218,219,220,240,267,311,319,320,324,326,342],mag:[59,126,325],magazin:78,mage:50,mage_guild_block:50,mage_guild_welcom:50,magenta:125,magic:[30,59,60,79,111,120,121,139,178,189,219,267],magic_meadow:111,magicalforest:139,magnific:50,mai:[0,4,6,8,9,10,11,13,19,20,21,23,25,27,28,29,31,33,34,37,39,40,41,42,47,50,53,55,56,59,61,62,63,65,66,68,69,70,72,74,76,78,79,80,82,83,85,86,87,88,89,92,93,94,95,96,99,101,102,103,104,105,107,108,109,110,113,114,115,117,118,119,122,124,126,127,129,130,132,133,134,135,143,145,149,150,151,153,155,156,158,168,174,175,177,178,180,181,183,187,189,196,204,205,216,217,218,219,220,223,230,231,239,240,245,248,249,250,251,267,297,304,306,307,311,313,314,316,317,319,321,322,323,324,326,328,329,334,336,339,342,360],mail:[9,34,37,50,54,56,59,60,69,78,92,115,127,140,141,175,176,177,239,361],mailbox:[34,198],maillock:239,main:[13,14,15,20,21,22,30,31,33,34,37,39,42,48,50,53,55,63,67,68,75,78,79,80,82,83,84,85,88,89,90,91,99,103,104,108,109,111,114,115,118,123,124,130,132,133,134,136,137,138,143,144,147,149,155,158,169,176,179,187,194,198,204,205,233,237,244,250,252,254,265,269,270,272,277,282,284,289,303,305,310,316,317,327,330,339,341,342],mainli:[10,12,33,34,42,50,56,78,82,88,92,95,104,155,234,314,320,334,342],maintain:[4,19,23,37,40,42,55,67,89,92,99,107,114,118,136,168,170,185,259,361],mainten:[89,102],major:[14,15,23,44,56,59,62,63,118,120,132],make:[0,1,2,4,5,6,7,8,9,10,11,12,13,14,15,16,19,22,23,24,25,26,28,29,30,31,33,36,37,38,39,40,41,42,43,45,46,47,48,49,50,52,53,54,55,58,60,61,62,63,67,69,70,71,72,73,74,76,77,78,79,80,82,84,85,86,88,89,90,92,93,94,95,96,99,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,121,123,124,125,127,129,131,132,133,135,136,137,138,139,143,145,147,150,151,152,153,155,156,158,163,166,169,173,174,175,178,179,181,186,187,189,195,198,199,204,205,210,211,212,214,216,217,218,219,222,223,225,226,229,230,231,236,239,240,245,249,250,256,257,259,265,269,277,282,296,297,303,304,306,307,309,310,313,314,315,316,317,319,320,321,322,323,324,326,328,329,332,334,339,341,342,358,360],make_it:342,make_shared_login:349,make_uniqu:151,makeconnect:274,makefactori:285,makeit:296,makemessag:75,makemigr:[36,85,132],male:188,malevol:14,malform:343,malici:102,malign:240,man2x1:107,man:[42,86,89,107,128,164,198,205],mana:[28,30],manaag:235,manag:[2,7,9,11,31,38,39,42,55,56,58,79,82,84,85,88,92,95,99,101,104,109,114,118,124,126,127,130,132,137,140,141,142,143,147,168,169,171,173,174,176,196,201,205,220,226,231,234,237,241,244,245,249,251,254,259,260,265,272,312,314,316,317,318,321,322,330,333,335,339,342,358,360,362],manager_nam:314,manchest:342,mandat:355,mandatori:[0,22,106,108,128],maneuv:214,mangl:291,mango:202,manhol:[93,285],manhole_ssh:285,mani:[0,1,2,4,5,9,10,11,12,14,15,17,20,26,27,30,31,33,34,39,42,43,48,50,54,55,56,57,60,61,62,63,65,67,69,71,72,75,76,84,85,87,88,89,90,92,94,95,97,101,102,103,104,106,107,108,109,110,112,113,114,115,117,118,119,120,121,122,123,124,125,126,127,128,130,132,133,134,139,147,151,153,158,169,176,178,181,185,187,199,205,212,213,214,218,219,223,229,232,237,239,240,244,250,254,259,265,279,287,289,308,314,316,317,319,326,332,333,335,360],manifest:96,manipul:[0,11,22,31,40,42,43,50,63,85,101,108,122,158,165,175,186,191,236,245,271,322,327],manner:[14,174,205,233,245,283,316],manpow:37,manual:[4,6,14,20,21,23,30,33,34,39,54,57,59,60,62,67,78,79,84,85,88,89,96,101,108,109,110,113,116,118,120,123,124,127,130,133,138,139,140,145,158,214,223,226,232,245,250,257,265,282,289,326,327,361,362],manual_paus:257,manual_transl:204,manual_unpaus:257,manytomanydescriptor:[147,176,237,244,254,314,316,317],manytomanyfield:[147,176,237,244,254,314,316,317],map:[0,15,25,38,42,45,50,56,57,60,63,86,87,96,99,123,134,137,138,155,163,182,183,196,199,204,205,233,245,249,250,289,314,316,319,325,326,334,342,362],map_legend:199,map_modul:110,map_str:[48,110,233],mapbuild:[140,141,177],maplegend:199,mapnam:199,mapper:332,mapprovid:233,march:[78,335],margin:17,mark:[13,14,20,21,33,42,48,52,57,62,71,75,79,89,94,113,118,130,134,136,137,139,150,157,186,194,203,214,306,316,320,325,326,334,338],mark_categori:214,markdown:[1,4,47,53],marker:[13,20,33,42,63,86,113,137,164,186,188,196,205,214,245,277,285,288,293,294,314,317,319,325,327,334],market:89,markup:[80,113,135,138,182,319,341],mask:[202,205,209,210],maskout_protodef:202,mass:[60,123,138,362],massiv:[28,54],master:[7,9,37,56,60,62,72,97,99,115,117,133,311],match:[9,11,20,22,27,31,33,38,40,42,43,48,50,56,57,61,67,73,75,79,82,85,86,87,88,90,101,103,104,108,110,111,113,117,118,124,127,130,132,133,134,135,136,137,143,149,150,151,153,156,158,164,165,167,169,173,175,179,182,183,186,187,197,198,199,200,201,202,205,219,233,236,239,240,245,249,250,256,259,270,271,283,296,306,314,315,316,317,319,324,326,328,334,337,339,341,342,343,360],match_index:150,matched_charact:187,matches2:85,matchobject:[319,341],mate:63,math:38,mathemat:151,matplotlib:298,matrix:328,matt:101,matter:[0,4,9,11,25,31,36,40,50,56,60,61,62,68,72,75,83,90,94,102,104,106,107,115,116,126,135,151,220,229,244,270,314],matur:[107,127,128],maverick:63,max:[16,48,70,115,187,205,308,335,342],max_damag:218,max_dbref:315,max_depth:342,max_dist:48,max_heal:218,max_l:48,max_length:[48,85,132,205],max_lin:328,max_num:144,max_num_lin:360,max_popular:360,max_rmem:332,max_siz:335,max_valu:[189,355],max_w:48,max_width:48,maxconn:66,maxdelai:[262,276,277],maxdepth:250,maxdiff:350,maximum:[16,38,70,85,90,110,113,143,187,189,216,217,218,219,220,245,250,310,319,328,334,342],maxlengthvalid:143,maxnum:342,maxrotatedfil:335,maxsplit:319,maxthread:310,maxval:342,maxwidth:328,may_use_red_door:108,mayb:[6,9,11,13,14,21,22,25,27,31,33,43,47,48,53,60,62,67,68,69,72,81,84,85,89,108,115,118,121,137,139,152,178,197,283],mccp:[24,54,73,140,260,270,273],mccp_compress:278,meadow:[22,111,139],mean:[0,5,10,11,12,13,14,15,20,22,23,27,28,31,33,34,37,39,40,41,42,45,48,50,52,54,56,57,59,60,61,63,67,72,73,76,77,79,80,82,83,84,85,86,87,89,92,94,95,96,99,101,102,103,104,109,110,111,112,113,115,116,118,120,121,122,124,125,126,127,130,133,134,135,136,137,143,145,152,158,174,184,194,204,225,226,230,232,239,245,249,250,255,259,265,289,305,314,316,319,326,328,332,335,338,339],meaningless:122,meant:[16,20,22,31,34,43,53,61,67,75,82,95,101,124,125,136,137,139,151,179,188,205,213,216,217,218,219,220,226,231,233,245,270,320],meantim:1,meanwhil:95,measur:[89,92,122,150,167,342],meat:132,mech:[123,138,362],mechan:[27,28,33,38,49,50,52,54,57,60,68,72,90,101,108,115,121,122,124,125,138,143,145,149,186,205,219,238,250,257,259,265,269,275,283,294,305,316,324,327,330,337,360],mechcmdset:21,mechcommand:21,mechcommandset:21,meck:21,media:[16,144,172,235,242,252,261,293,310,313,338,355],median:48,mediat:72,medium:16,mediumbox:274,meet:[25,36,60,121,193,233,309],mele:220,mem:[42,168],member:[9,11,42,69,85,164,166,167,245,342],membership:[4,9,118],memori:[6,12,23,28,31,33,42,55,74,85,89,92,112,124,134,143,168,174,226,245,259,298,308,314,318,327,332,337,342],memoryerror:62,memoryusag:298,memplot:[140,260,295],meni:179,mental:125,mention:[6,9,10,11,13,14,15,21,29,33,39,40,48,55,56,60,62,69,73,79,89,101,107,112,114,125,126,152,185],menu:[11,25,31,42,44,45,46,53,54,62,64,68,104,105,108,109,122,127,137,138,140,141,158,179,187,200,213,214,246,250,263,265,326,336,362],menu_cmdset:326,menu_data:50,menu_edit:179,menu_login:[140,141,177],menu_modul:326,menu_module_path:326,menu_quit:179,menu_setattr:179,menu_start_nod:213,menuchoic:[50,326],menudata:[187,247,326],menudebug:[50,326],menufil:326,menumodul:326,menunode_fieldfil:187,menunode_inspect_and_bui:84,menunode_shopfront:84,menunode_treeselect:214,menunodename1:50,menunodename2:50,menunodename3:50,menuopt:214,merc:319,merchant:45,mercuri:107,mere:[116,189],merg:[3,5,22,33,37,42,43,50,56,61,63,96,130,138,149,150,151,152,165,223,231,233,250,254,289,326,334],merge_prior:326,merger:[5,31,37,110,151,152],mergetyp:[31,50,115,151,223,231,324,326],mess:[11,19,27,89,92,130,137,214],messag:[5,6,8,10,13,15,20,21,22,27,28,29,33,34,39,40,42,43,44,45,49,50,51,54,57,58,59,60,61,62,63,64,69,70,72,73,75,79,80,81,84,88,89,90,91,94,95,100,101,102,103,104,109,110,112,115,117,118,122,123,126,127,130,131,136,137,138,139,143,145,149,152,153,156,158,163,164,165,167,169,171,173,174,175,176,178,179,181,187,188,192,194,196,198,202,203,205,209,216,217,218,219,220,222,223,225,227,229,230,231,232,239,245,265,267,274,276,277,283,284,285,288,289,291,293,302,304,306,308,310,322,324,326,327,334,335,339,342],message_rout:136,message_search:175,message_transform:174,messagepath:[138,362],messagewindow:136,meta:[103,124,144,235,242,313,316,332,355],metaclass:[85,95,124,153,316],metadata:[209,267],metavar:232,meteor:81,meter:189,metho:173,method:[1,2,5,6,9,10,11,22,25,27,28,29,30,31,34,38,39,41,45,47,48,50,54,57,58,59,61,63,67,68,72,76,79,82,85,87,88,90,94,95,101,103,104,106,108,110,111,113,114,115,116,117,118,119,120,122,124,126,130,131,132,133,136,138,143,147,149,151,152,153,155,158,159,163,165,166,167,168,169,172,173,174,175,176,178,179,183,186,191,194,196,200,201,202,203,204,205,208,209,211,216,217,218,219,220,226,227,229,230,231,232,233,236,237,239,240,245,257,258,259,262,267,270,271,272,274,275,276,277,278,283,285,288,291,293,294,297,301,303,304,305,306,308,313,314,316,319,320,322,324,326,327,328,329,332,333,334,335,336,337,339,340,341,342,360],methodnam:[169,195,210,227,259,291,301,333,340,350,358],metric:81,microsecond:11,microsoft:[62,110],mid:[29,107,120],middl:[29,33,48,89,217,319],middlewar:[140,344,346],midnight:[25,61],midst:121,midwai:113,mighht:90,might:[0,4,8,10,11,12,14,15,17,20,22,23,25,26,27,28,29,30,31,33,34,38,39,40,41,42,45,50,51,54,57,59,60,61,62,68,69,72,74,75,76,79,80,81,84,88,89,90,94,95,96,97,99,101,102,103,104,109,110,113,114,115,118,119,121,122,123,125,126,130,131,132,135,137,152,156,158,178,203,209,212,216,217,218,219,232,245,294,316,319,324,335,336,342,355,361],mighti:[29,110],migrat:[9,23,36,62,74,85,106,109,110,126,129,130,132,250],mike:[42,158],mileston:138,million:[23,132],mime:322,mimic:[23,34,49,54,72,92,176,304,324],mimick:[49,63,72,137,296,324,327],mimim:317,min:[48,61,101,183,187,329],min_damag:218,min_dbref:315,min_heal:218,min_height:328,min_shortcut:[22,179],min_valu:355,min_width:328,mind:[10,12,13,14,37,40,44,50,53,54,55,56,59,60,121,125,133,137,178,189,194,203,267],mindex:150,mine:[45,102,137],mini:[54,110],miniatur:[60,121],minim:[60,102,104,115,137,204,250],minimalist:[33,57,107],minimum:[22,57,63,72,104,136,187,216,217,218,219,220,270,310,316,328,337,342],mininum:328,minlengthvalid:143,minor:[40,152],mint:[62,130],minthread:310,minu:[85,245,329],minut:[27,28,42,61,78,90,99,101,115,163,178,183,308,329,342],minval:342,mirc:277,mirror:[71,78,104],mis:56,misanthrop:118,misc:[136,137],miscelan:318,miscellan:46,mislead:40,mismatch:[73,342],miss:[48,56,59,62,69,89,93,94,96,216,217,218,219,220,249,270],missil:[21,219],mission:[40,68],mistak:59,misus:89,mit:[78,123,319],mitig:[56,102,360],mix:[11,30,33,34,50,113,125,132,143,178,205,249,250,309,320,328],mixin:[249,299,360],mixtur:80,mkdir:[9,36,62],mktime:61,mob0:55,mob:[14,42,54,55,60,79,104,121,140,152,158,177,228,231,250,320],mob_data:55,mob_db:55,mob_vnum_1:55,mobcmdset:229,mobdb:55,mobil:[14,70,108,121,137,229,239],moboff:229,mobon:229,mock:[126,340],mockdeferlat:340,mockdelai:340,mockup:137,mockval:340,mod:[8,102],mod_import:342,mod_import_from_path:342,mod_proxy_http:8,mod_proxy_wstunnel:8,mod_sslj:8,mode:[2,8,31,40,41,42,49,50,66,68,73,78,92,99,102,105,115,116,122,132,134,137,140,157,168,174,180,196,198,229,245,249,256,265,270,275,282,293,294,303,320,324,326,335,342],mode_clos:294,mode_init:294,mode_input:294,mode_keepal:294,mode_rec:294,model:[9,11,34,40,44,58,63,68,72,79,86,95,103,111,114,118,124,131,134,135,138,140,141,142,143,144,171,172,174,175,234,235,241,242,245,251,252,255,259,260,261,271,312,313,314,315,317,318,323,330,331,333,338,339,342,355,360,362],model_inst:338,modeladmin:[172,235,242,252,261,313],modelattributebackend:314,modelbackend:347,modelbas:332,modelchoicefield:242,modelclass:[11,111],modelform:[144,235,242,313,355],modelmultiplechoicefield:[144,235,242],modelnam:[174,237,316],moder:[4,38,178],modern:[10,11,15,30,78,102,107,125,137,200,278],modif:[0,8,25,33,37,45,82,90,99,122,130,137,311,355],modifi:[0,2,4,11,20,22,25,26,31,33,34,38,39,42,43,45,50,54,55,56,57,59,67,72,77,84,88,92,95,99,103,104,108,109,110,113,117,118,121,122,124,127,130,134,136,137,138,139,143,144,152,174,179,184,186,188,194,196,202,205,212,216,217,218,219,220,230,232,237,245,250,259,316,320,326,332,338,341,355,360],modified_text:113,modul:[3,5,6,11,13,15,20,21,26,27,29,31,35,37,39,42,44,46,49,50,52,54,55,56,57,58,59,61,64,67,73,74,79,80,81,82,84,88,92,95,96,97,101,102,103,104,106,107,109,110,113,116,118,120,121,122,123,124,126,134,137,138,149,150,152,153,158,160,161,162,163,167,169,173,178,179,180,181,182,183,184,185,186,187,189,191,192,193,195,196,199,200,203,204,205,210,211,212,214,216,217,218,219,220,223,229,230,231,232,239,240,244,245,248,249,250,255,257,258,259,262,264,265,269,270,274,282,284,285,288,289,292,294,296,297,298,303,305,306,307,314,316,317,318,320,321,322,323,324,325,326,327,329,334,340,342,362],modular:54,modulepath:274,moifi:186,mollit:51,moment:[21,31,45,56,75,84,90,95,114,134,138,143,248,254],monei:[9,60,69,85,89,239],monetari:[37,178],monitor:[83,87,92,138,255,270,289,332],monitor_handl:[83,140,255],monitorhandl:[44,73,138,140,141,251,362],mono:25,monster:[29,42,56,60,63,88,108,158,250],month:[37,61,89,183,329,335,342],monthli:61,montorhandl:83,moo:[54,56,78,107,128],mood:[45,121],moon:[25,60,61,81],moor:121,moral:96,more:[0,1,2,3,4,5,9,10,11,12,13,14,15,17,19,20,21,22,23,25,26,27,28,31,33,34,35,36,37,38,39,40,41,42,43,45,48,49,50,51,52,54,55,57,58,59,60,61,62,63,65,67,68,69,70,71,72,73,74,75,76,78,82,84,85,86,87,88,89,90,92,93,94,95,96,99,101,102,103,104,107,108,109,110,111,112,113,114,115,117,118,120,121,122,123,124,125,126,130,131,132,133,135,136,137,140,142,143,144,147,150,151,152,157,158,164,168,170,173,177,178,179,180,181,183,185,186,189,194,197,199,203,204,205,212,213,214,216,217,218,219,220,225,229,230,231,232,233,239,242,245,248,249,250,275,277,280,296,297,306,311,314,315,319,320,322,323,324,325,326,327,328,332,339,342,343,355,360],more_command:327,moreov:[89,101],morn:[186,187],most:[0,4,6,8,9,10,11,13,17,22,23,25,27,30,31,33,35,37,38,39,40,41,42,45,46,47,48,50,52,55,56,57,58,59,60,61,62,63,68,72,73,76,79,81,82,85,87,88,89,90,92,94,95,96,99,102,103,104,106,107,110,112,113,114,115,116,118,120,122,124,125,127,128,132,136,137,139,143,147,151,152,155,158,166,176,179,189,204,205,212,216,217,218,219,220,237,239,240,244,245,250,254,288,293,303,314,315,316,317,326,327,332,333,342,360],mostli:[39,50,56,68,72,89,90,94,113,122,124,136,137,144,151,184,204,218,233,285,319],motiv:[13,14,37,54,60,69,88,276,277,283,284,285,288,293,294,305,306],mount:99,mountain:[107,110,199],mous:[113,136,326],move:[0,4,9,14,15,21,22,23,29,33,34,40,42,43,45,48,49,50,51,53,57,60,62,68,76,78,81,84,88,90,94,95,110,115,116,121,125,132,133,137,152,158,164,178,179,187,193,196,212,216,217,218,219,220,229,230,231,233,236,239,245,297,316,320,327],move_hook:245,move_obj:233,move_to:[0,84,88,120,196,212,245],movecommand:43,moved_obj:[233,245],moved_object:245,movement:[57,108,120,212,216,217,218,219,220,245],mover:220,mptt:4,mratio:[150,167],msdp:[54,82,270,289],msdp_list:270,msdp_report:270,msdp_send:270,msdp_unreport:270,msdp_var:289,msg:[0,2,5,10,11,13,22,25,27,28,29,30,33,39,40,41,43,45,49,50,51,55,57,58,59,61,70,72,79,81,83,84,85,87,88,90,94,95,104,110,113,115,117,118,120,122,126,128,136,137,140,143,145,153,155,159,163,169,172,174,175,176,188,196,198,209,232,240,245,276,277,304,313,320,322,324,326,327,335,339,342],msg_all:115,msg_all_sess:[33,153],msg_arriv:0,msg_content:[0,21,27,33,45,61,88,101,117,120,122,131,196,245],msg_help:165,msg_leav:0,msg_locat:[196,245],msg_other:178,msg_receiv:[196,245],msg_self:[196,245],msg_set:317,msgadmin:172,msglauncher2port:[265,274],msgmanag:[175,176],msgobj:[34,174],msgportal2serv:274,msgreturn:169,msgserver2port:274,msgstatu:[265,274],mssp:[54,103,140,260,273],mtt:292,much:[0,4,10,11,13,14,15,20,22,23,25,26,29,37,38,40,41,48,50,52,55,58,60,61,62,63,68,72,75,78,79,81,88,89,90,92,93,95,108,110,112,114,115,118,119,120,124,126,131,132,133,137,147,152,157,166,179,183,184,205,214,220,223,230,305,319,320,321,328,342],muck:56,mud:[8,15,21,22,23,24,30,39,42,48,54,55,59,60,62,63,71,72,73,79,86,87,89,90,91,94,96,97,99,100,103,104,107,109,110,113,114,115,116,121,123,125,127,131,134,136,137,139,147,152,155,220,262,278,279,280,285,288,289,292,320,329],mudbyt:78,mudconnector:78,mudderi:78,muddev:62,mudform:325,mudinfo:34,mudlab:78,mudlet:[24,95,100,270,280],mudmast:24,mudramm:24,muhammad:341,mukluk:24,mul:248,mult:[108,248],multi:[10,22,31,42,50,54,60,94,95,99,103,104,118,121,122,136,150,168,205,214,306,326,342],multi_page_t:327,multiaccount_mod:96,multidesc:[140,141,177],multilin:341,multimatch:[31,150,205,245,342],multimatch_str:[143,205,245,342],multimedia:136,multipl:[6,12,14,22,23,27,30,31,33,39,42,54,57,60,61,63,72,78,83,87,88,89,94,95,103,104,106,107,108,113,114,121,122,124,130,137,143,149,151,156,157,158,163,167,168,182,184,185,186,188,189,195,201,205,214,216,217,218,219,231,240,245,248,249,250,259,263,267,270,274,289,297,313,314,315,320,328,339,342],multiplay:[54,56,78],multipleobjectsreturn:[143,145,147,174,176,178,181,183,186,188,194,196,202,203,204,205,211,212,213,216,217,218,219,220,222,225,226,229,230,231,233,237,244,245,249,254,257,272,298,314,317,329,333],multipli:248,multisess:[2,40,68,326],multisession_mod:[24,33,63,104,122,132,143,155,159,180,188,245,306],multisession_modd:50,multitud:[56,110,113],multumatch:245,mundan:21,murri:342,muse:78,mush:[9,36,54,59,72,78,107,115,123,138,182,201,362],mushclient:[24,73,95,270,280],musher:78,mushman:107,musoapbox:[56,78],must:[0,1,2,4,5,8,10,11,15,24,25,29,31,33,37,39,42,47,48,49,50,55,57,60,61,62,63,64,70,71,73,75,79,80,82,83,84,86,88,89,92,94,95,96,99,102,103,108,109,111,112,113,114,115,116,118,122,124,126,127,130,132,134,135,136,139,145,150,153,158,168,169,173,174,175,178,181,182,183,185,196,200,202,204,205,209,214,216,217,218,219,220,225,226,230,231,237,239,245,248,255,259,265,270,283,285,288,305,307,308,313,314,315,316,319,320,321,322,323,324,325,326,327,329,334,336,337,338,339,341,342,343,360],must_be_default:152,mutabl:323,mute:[17,40,173,174],mutelist:[40,174],mutltidesc:201,mutual:315,mux2:128,mux:[20,21,33,34,40,44,54,57,102,107,138,140,141,148,166,167,182,238,362],mux_color_ansi_extra_map:182,mux_color_xterm256_extra_bg:182,mux_color_xterm256_extra_fg:182,mux_color_xterm256_extra_gbg:182,mux_color_xterm256_extra_gfg:182,muxaccountcommand:[166,198],muxaccountlookcommand:155,muxcommand:[5,25,28,29,30,33,43,57,81,118,122,140,148,154,155,156,157,158,163,164,165,167,168,170,181,184,185,186,192,198,199,201,202,211,213,218,219,231],mvattr:158,mxp:[24,54,73,113,140,260,270,273,285,288,319,326,341,342],mxp_pars:280,mxp_re:319,mxp_sub:319,my_callback:307,my_datastor:85,my_funct:29,my_github_password:130,my_github_usernam:130,my_identsystem:86,my_object:29,my_plugin:136,my_port:39,my_portal_plugin:39,my_script:101,my_server_plugin:39,my_servic:39,my_word_fil:204,myaccount:111,myapp:85,myarx:9,myattr:[11,143],mybot:[42,163],mycar2:86,mychair:111,mychan:34,mychannel:[12,42,163],mycharact:80,mychargen:50,myclass:59,mycmd:[33,67],mycmdset:[5,31,33],mycommand1:31,mycommand2:31,mycommand3:31,mycommand:[30,31,33,82],mycompon:136,myconf:36,mycontrib:126,mycss:136,mycssdiv:136,mycustom_protocol:39,mycustomcli:39,mycustomview:134,mydatastor:85,mydhaccount:99,mydhaccountt:99,mydhacct:99,myevennia:71,myevilcmdset:[31,151],myevmenu:50,myfix:130,myfunc:[10,114,126,342],mygam:[2,3,5,6,9,13,14,21,23,25,26,27,30,31,35,39,41,43,46,48,50,53,55,56,57,59,61,62,64,66,68,70,72,73,74,75,79,80,81,84,85,88,89,92,94,95,99,101,103,105,108,109,110,113,115,117,118,119,120,122,124,126,127,130,132,133,134,135,136,179,180,182,186,198,199,200,201,211,212,290,340,342],mygamegam:80,myglobaleconomi:101,myhandl:106,myhousetypeclass:[42,158],myinstanc:85,myircchan:[42,163],mykwarg:50,mylayout:136,mylist2:11,mylist:[6,11,96,316],mylog:27,mymap:199,mymenu:50,mymethod:55,mymodul:114,mymud:[8,105],mymudgam:89,mynam:99,mynestedlist:323,mynod:50,mynoinputcommand:33,mynpc:122,myobj1:111,myobj2:111,myobj:[11,27,79,101,259],myobject:[5,11],myobjectcommand:25,myothercmdset:31,myownfactori:39,myownprototyp:108,mypassw:185,mypath:126,myplugin:136,myproc:39,myproc_en:39,myprotfunc:108,myroom:[42,55,101,111,158],myros:88,myscript:[101,111,124],myscriptpath:101,myserv:185,myservic:39,mysess:104,mysql:[36,54,63,127,342],mysqlclient:23,mysteri:[74,86],mytag:136,mythic:121,mytick:259,mytickerhandl:259,mytickerpool:259,mytop:20,mytup1:11,mytup:11,myvar:33,myview:134,naccount:306,naiv:[174,233,237,316],nake:33,name1:[42,158],name2:[42,158],name:[0,2,3,4,5,6,9,10,11,13,14,15,19,20,22,23,24,25,29,31,33,34,36,39,40,41,43,45,46,48,50,51,52,53,54,55,56,57,58,59,60,61,63,64,65,67,68,70,71,73,74,75,78,79,80,81,82,83,84,85,86,88,89,90,92,94,95,99,101,102,103,104,105,106,108,109,110,111,112,113,115,116,118,120,122,124,125,126,127,129,130,131,132,133,134,135,136,137,138,139,140,141,143,145,147,149,150,151,152,153,155,156,158,163,164,165,166,167,168,169,170,173,174,175,176,179,180,181,183,185,187,191,193,194,197,200,202,203,204,205,211,214,218,219,229,231,232,233,236,237,238,244,245,249,250,254,255,257,259,265,268,270,271,272,274,275,277,282,285,288,289,292,293,294,297,310,313,314,315,316,317,319,320,321,322,324,325,326,327,332,333,334,335,336,338,339,341,342,343,347,355,360],namecolor:214,namedtupl:191,nameerror:[41,94],namelist:198,namesak:96,namespac:[68,124,136,194,232,250,320],narg:[113,232],narr:220,narrow:90,nativ:[34,41,87,101,208,310,360],nattempt:50,nattribut:[11,42,50,115,124,158,250,304,314,316,322,326],nattributehandl:314,natur:[11,15,27,54,78,87,111,145,328],natural_height:328,natural_kei:314,natural_width:328,navig:[9,47,48,50,105,110,127,132,133,220,360],naw:[24,51,140,260,273],nbsp:341,nchar:119,nclient:296,ncolumn:328,ncurs:140,ndb:[6,13,22,25,29,33,42,50,101,104,115,124,143,147,168,244,254,304,316,326],ndb_:[42,108,158,250],ndb_del:304,ndb_get:304,ndb_set:304,ndk:74,nearbi:[118,151,152,153,220],nearli:319,neat:[0,3,137,355],neatli:[107,342],necess:[39,94],necessari:[0,4,22,36,38,39,56,57,58,60,76,90,107,109,113,117,120,124,130,137,153,176,180,194,209,231,232,250,258,294,313,320,328,336,338,342],necessarili:[40,56,87,89,108,342],necessit:307,neck:[108,181],necklac:181,need:[1,2,3,4,5,6,8,9,10,11,13,14,15,19,20,21,22,23,25,26,27,28,29,30,31,33,34,35,36,37,38,39,40,41,42,43,44,45,47,48,49,50,53,55,56,57,58,59,60,61,62,63,64,65,67,68,69,70,71,72,73,74,75,76,78,79,80,81,82,83,84,85,86,87,88,89,90,92,93,94,95,96,97,99,101,102,103,104,105,108,109,110,111,112,113,114,115,116,117,118,120,121,122,123,124,125,126,127,129,130,132,133,134,135,136,137,139,143,145,147,153,155,158,163,164,166,169,173,174,178,179,185,186,188,192,193,194,195,199,202,203,204,205,214,216,217,218,219,220,226,229,230,231,232,233,239,240,244,245,249,250,257,265,267,269,270,274,282,289,294,296,304,305,306,310,313,314,316,319,320,322,326,327,328,329,334,336,337,339,342,360],need_gamedir:265,needl:202,neg:[61,125,151,324,342],negat:[113,118,240],negoti:[54,178,279,281,283,292,306],negotiate_s:281,neighbor:38,neither:[11,53,60,72,96,109,184,249,289,314,317,343],nenter:50,nest:[11,14,33,42,50,52,113,143,158,205,214,239,245,248,250,289,323,334],nested_mut:11,nested_r:158,nestl:110,net:[9,42,56,62,71,78,89,145,163,278,279,289,292,306],netrc:130,network:[39,42,54,63,64,69,70,71,78,89,102,112,138,145,163,276,277,282,303,306],neu:179,neutral:188,never:[12,14,26,27,31,33,50,53,55,59,60,61,63,79,85,87,90,94,95,103,113,114,117,118,120,124,126,130,132,143,193,204,205,219,220,229,240,245,304,323,334,342],nevertheless:[26,42,50,85,125,155,179],new_alias:153,new_arriv:231,new_attrobj:314,new_channel:57,new_charact:229,new_coordin:233,new_datastor:85,new_goto:326,new_kei:[106,153,245],new_loc:[42,158],new_menu:179,new_nam:[42,106,158],new_name2:[42,158],new_obj:[79,245,250],new_obj_lockstr:158,new_object:[108,250],new_pane_name1:136,new_pane_name2:136,new_raw_str:150,new_room_lockstr:158,new_ros:88,new_script:101,new_typeclass:[143,316],new_typeclass_path:124,new_valu:[83,314],newbi:[25,47,54,123,173],newcom:[95,116],newer:9,newindex:214,newli:[42,45,57,59,65,130,132,158,174,179,198,203,232,245,250,257,322],newlin:[24,33,42,136,165,320,328],newnam:[33,42,158,316],newpassword:[42,156],newstr:136,nexist:22,nexit:[119,126],next:[0,4,5,6,9,10,11,12,13,14,20,21,22,23,25,28,29,30,31,33,36,38,40,41,45,48,49,50,51,55,57,59,60,61,63,64,67,71,72,74,75,76,78,79,80,82,84,85,88,89,94,95,97,99,101,102,105,109,110,113,115,118,120,121,122,130,132,133,136,137,179,183,199,201,214,216,217,218,219,220,230,240,257,265,320,326,327,329,334,342,360],next_nod:50,next_turn:[216,217,218,219,220],nextrpi:78,nexu:44,nfkc:143,ng2:328,nginx:8,nice:[0,12,22,27,48,53,57,60,61,67,69,80,89,95,99,110,118,126,136,137,139,158,178,181,205,249],nicer:[20,59,95],niceti:[42,158],nick:[2,11,44,56,73,78,88,128,138,143,145,158,164,205,239,244,245,277,314,315,334,362],nick_typ:86,nickhandl:[11,86,314],nicklist:[145,277],nicknam:[42,86,88,128,130,164,205,244,245,277,314,315],nickreplac:314,nicktemplateinvalid:[314,334],nicktyp:[205,245],nifti:8,night:[57,60,131,137,186],nine:65,nineti:343,nit:[59,61],nline:335,no_channel:[31,33,151,326],no_default:[124,143,316],no_exit:[31,33,115,151,223,326],no_gmcp:289,no_log:152,no_match:179,no_mccp:278,no_more_weapons_msg:230,no_msdp:289,no_mssp:279,no_mxp:280,no_naw:281,no_obj:[31,151,223,326],no_superuser_bypass:[143,174,240,245,316],no_tel:79,noansi:169,nobj:119,nocaptcha:132,nocaptcha_recaptcha:132,nocolor:[80,270,285,288,293,294],nodaemon:105,node1:[50,326],node2:[50,326],node3:[50,326],node:[13,84,108,187,200,214,247,263,326],node_abort:50,node_apply_diff:247,node_attack:50,node_background:50,node_betrayal_background:50,node_border_char:326,node_destin:247,node_enter_password:200,node_enter_usernam:200,node_examine_ent:247,node_exit:50,node_formatt:[50,187,326],node_four:50,node_game_index_field:263,node_game_index_start:263,node_hom:247,node_index:[247,326],node_kei:247,node_loc:247,node_login:50,node_mssp_start:263,node_mylist:50,node_on:50,node_parse_input:50,node_password:50,node_prototype_desc:247,node_prototype_kei:247,node_prototype_sav:247,node_prototype_spawn:247,node_quit_or_login:200,node_readus:50,node_select:50,node_set_nam:50,node_start:263,node_test:50,node_usernam:50,node_validate_prototyp:247,node_view_and_apply_set:263,node_view_sheet:50,node_violent_background:50,node_with_other_nam:326,nodekei:326,nodenam:[50,326],nodetext:[50,187,247,326],nodetext_formatt:[50,187,247,326],noecho:[42,168],noerror:245,nofound_str:[143,205,245,342],nogoahead:287,nohom:322,nois:21,noisi:[89,262,267,275,285,288,310],noloc:[42,158],nomarkup:[73,80],nomatch:[22,167,179,324,334,342],nomatch_exit:22,nomatch_single_exit:22,nomigr:126,nomin:360,non:[4,6,14,15,20,22,27,29,31,33,42,43,48,49,51,54,57,60,61,62,63,64,67,69,73,81,85,87,101,104,108,109,113,123,124,125,130,136,138,139,143,145,147,149,151,158,168,174,176,184,194,203,211,213,214,230,236,244,245,249,250,254,255,256,257,258,259,265,274,288,289,303,304,306,314,316,319,322,323,324,326,328,334,339,342],nonc:293,nondatabas:[11,304,316],none:[0,1,2,10,11,13,14,15,22,25,30,31,33,34,38,39,40,41,42,43,48,49,50,55,57,59,61,63,68,73,76,79,80,82,83,84,85,86,87,90,95,101,104,110,111,113,115,117,118,120,122,143,144,145,150,151,152,153,155,158,159,160,161,162,165,166,167,169,172,173,174,175,176,178,179,180,181,184,186,187,188,191,193,194,196,197,200,202,203,204,205,211,213,214,216,217,218,219,220,223,229,230,231,232,233,235,236,239,240,242,244,245,247,248,249,250,252,255,256,257,259,262,263,265,267,271,274,275,276,277,284,285,293,294,304,305,306,308,309,310,313,314,315,316,317,319,320,321,322,323,324,325,326,327,328,329,332,334,335,337,338,339,342,343,347,350,355,360],nonpc:122,nonsens:204,noon:[20,59,72,75,79,95],nop:288,nopkeepal:[24,288],nor:[11,13,29,31,41,53,105,107,115,125,184,185,232,249,289,314,317],norecapcha:132,norecaptcha_secret_kei:132,norecaptcha_site_kei:132,norecaptchafield:132,normal:[2,3,5,6,9,10,11,13,14,15,19,20,21,23,25,27,29,30,31,33,34,42,43,45,48,50,52,54,55,56,57,59,61,63,65,67,68,71,73,74,75,79,80,81,82,84,85,86,87,89,92,95,96,99,101,103,104,108,109,110,111,112,113,115,118,120,121,122,124,125,126,127,133,134,136,137,139,143,145,147,149,150,152,153,155,158,165,168,173,174,178,183,184,196,216,217,218,219,220,229,232,233,244,245,247,250,257,259,265,274,277,278,279,281,283,297,304,306,312,314,315,316,319,320,323,326,327,332,334,339,341,342,344],normal_turn_end:115,normalize_nam:245,normalize_usernam:143,north:[0,20,22,42,43,45,48,88,110,113,120,158,179,199,212,297],north_south:110,northeast:[20,42,158,233],northern:[22,110],northwest:158,nose:314,not_don:310,not_error:265,not_found:158,notabl:[6,9,10,39,42,62,96,130,153,158,169,178,316,323,334,342],notat:[42,52,118,158,319,342],notdatabas:124,note:[0,1,2,4,5,6,9,11,12,13,19,20,21,23,24,25,27,29,40,41,42,47,48,56,57,58,59,60,61,62,63,68,69,72,73,74,75,79,82,84,85,87,88,89,92,93,94,95,99,101,102,104,105,106,108,109,112,113,114,115,116,118,120,122,123,124,125,127,129,130,132,133,134,135,136,140,143,145,150,151,152,153,155,158,159,160,164,165,166,168,169,170,173,174,175,178,180,181,182,183,184,185,186,188,193,194,196,197,199,200,201,202,203,204,205,211,212,214,216,217,218,219,220,223,225,226,231,232,233,239,240,244,245,249,250,257,259,262,265,270,274,275,277,278,282,283,284,285,288,289,290,292,293,296,298,299,304,306,310,311,314,315,316,317,319,320,321,322,323,324,325,326,327,328,329,332,335,337,338,339,342,348,361,362],notepad:62,notfound:342,notgm:57,noth:[0,10,11,14,20,22,27,29,33,34,41,55,56,59,61,82,84,88,94,107,110,114,115,126,143,158,167,214,216,219,220,229,233,245,257,277,314,316,326],nother:119,notic:[0,10,12,13,20,22,23,29,33,36,37,38,40,41,45,61,68,69,90,95,116,120,125,130,179,222,278,360],notif:[4,74,130,136,137,198],notifi:[42,97,163,216,217,218,219,220,231],notificationsconfig:4,notimplementederror:288,notion:[61,114,115],noun:[204,205],noun_postfix:204,noun_prefix:204,noun_transl:204,now:[0,2,3,5,6,9,10,11,12,14,20,21,22,23,25,27,28,29,31,33,36,38,40,45,47,48,50,54,55,56,57,59,60,61,62,63,64,68,70,71,72,74,75,76,78,79,80,81,84,85,88,89,90,94,95,96,97,99,101,102,104,105,107,108,109,110,113,114,116,117,118,120,122,124,125,126,127,130,132,133,134,135,136,137,139,152,178,183,187,194,196,214,225,233,240,245,277,285,306,338,340,342],nowher:[94,110],noxterm256:288,npc:[9,33,45,50,60,63,72,110,118,123,138,178,213,239,245,362],npcname:117,npcshop:84,nprot:119,nr_start:256,nroom:[22,119],nroom_desc:126,nrow:328,ntf:62,nuanc:113,nudg:[77,223,226,310],nuisanc:102,nulla:51,num:[48,79,205,245],num_lines_to_append:335,num_object:118,num_objects__gt:118,num_tag:118,number:[0,6,10,11,12,13,20,21,23,26,27,31,33,34,36,40,42,48,49,50,56,57,59,60,61,63,70,72,76,80,84,86,89,92,94,95,96,97,99,101,103,104,106,110,111,113,114,115,118,119,121,122,124,126,130,133,134,139,140,143,145,150,151,152,156,158,163,164,173,175,176,181,183,184,187,189,191,193,194,197,199,203,204,205,214,216,217,218,219,220,245,248,250,256,257,263,265,270,276,277,279,283,296,306,308,310,314,315,317,319,320,322,324,326,328,329,332,334,335,339,342,355],number_of_dummi:265,number_tweet_output:119,numbertweetoutput:119,numer:[60,72,96,189,319],numpi:298,o_o:137,obelisk:230,obfusc:[204,205],obfuscate_languag:[204,205],obfuscate_whisp:[204,205],obj1:[11,42,79,96,108,158,202,220],obj2:[11,42,79,96,108,126,158,202,220,320],obj3:[11,42,158],obj4:11,obj5:11,obj:[2,6,10,11,22,25,27,31,33,40,41,42,47,55,57,58,59,79,81,83,85,86,88,90,101,108,111,114,116,118,120,124,126,138,143,144,151,152,153,156,158,164,166,167,168,169,172,173,175,179,181,186,187,188,191,193,194,197,198,202,205,214,216,217,218,219,220,223,226,230,231,233,239,240,242,244,245,248,250,252,254,255,256,257,294,296,297,304,313,314,315,316,317,320,322,323,327,337,338,339,342],obj_desc:219,obj_detail:231,obj_kei:219,obj_prototyp:250,obj_to_chang:124,obj_typeclass:219,objattr:[230,239],objclass:[332,342],object1:33,object2:[33,178,245],object:[0,2,9,10,12,13,14,15,18,19,21,22,23,26,29,30,31,33,34,36,38,39,40,41,43,44,45,46,48,49,50,51,52,54,55,56,57,61,68,72,73,76,78,80,82,83,84,85,86,87,90,92,94,101,102,103,106,107,108,109,113,114,115,116,117,119,121,122,124,126,128,131,132,133,134,136,137,138,139,140,141,142,143,144,145,146,147,149,150,151,152,153,155,156,157,158,159,160,163,164,166,167,168,169,170,172,173,174,175,176,177,178,179,180,181,185,186,187,188,191,192,193,194,195,196,197,198,199,202,203,205,208,209,210,211,212,213,214,216,217,218,219,220,222,223,225,226,228,229,231,232,233,235,236,237,239,240,247,248,249,250,251,252,254,255,256,257,258,259,263,265,267,269,270,271,272,274,275,278,279,280,281,282,283,284,285,287,289,292,294,296,297,303,304,305,306,308,309,310,313,314,315,316,317,319,320,321,322,323,324,325,326,327,328,332,333,334,336,337,338,339,340,341,342,343,347,349,355,358,360,362],object_confirm_delet:360,object_detail:360,object_from_modul:342,object_id:133,object_search:133,object_subscription_set:244,object_tot:315,object_typeclass:[340,358],objectattributeinlin:242,objectcr:355,objectcreateform:242,objectcreateview:360,objectdb:[11,58,95,111,118,119,124,132,140,242,244,245,250,312,313,314,322,327,339],objectdb_db_attribut:242,objectdb_db_tag:[242,313],objectdb_set:[147,314,317],objectdbadmin:242,objectdbmanag:[243,244],objectdeleteview:360,objectdetailview:360,objectdoesnotexist:[147,176,237,244,254,272,314,317,333],objecteditform:242,objectform:355,objectmanag:[243,245,315],objectnam:[6,57],objects_objectdb:85,objectsessionhandl:[2,245],objecttaginlin:242,objectupd:355,objectupdateview:360,objid:79,objlist:[108,248],objlocattr:[230,239],objmanip:[42,158],objmanipcommand:158,objnam:[27,42,124,158],objparam:250,objs2:111,objsparam:250,objtag:239,objtyp:175,obnoxi:267,obs:316,obscur:[47,71,81,204,205],observ:[13,14,20,42,80,87,158,164,186,205,222,226,231,289,320,342],obtain:[0,33,38,62,76,89,90,92,99,179,230],obviou:[0,58,60,102,120,127,137,189,360],obvious:[0,4,14,48,54,104,107,120,317],occaecat:51,occas:127,occasion:[89,118],occation:328,occur:[9,10,25,33,41,56,59,101,136,167,203,218,232,240,245,297,326,335],occurr:[45,90,122,319],ocean:[89,121],odd:[22,48,60,102,125],odor:57,off:[0,11,14,20,23,24,29,31,33,36,39,40,42,48,49,50,54,60,63,65,73,79,80,85,87,89,99,102,106,107,109,113,114,122,125,134,137,138,143,153,163,168,169,173,174,181,187,199,200,205,226,229,231,240,245,270,278,285,288,304,316,319,320,322,324,326,327,328,334,335,343],off_bal:29,offend:12,offer:[1,4,11,14,22,26,28,31,33,34,37,38,39,42,43,49,50,54,55,56,58,61,63,71,72,73,75,82,85,86,88,89,90,95,101,105,107,108,110,113,114,115,122,123,126,127,128,130,131,136,137,151,152,157,158,168,178,179,186,204,231,247,255,306,326],offernam:178,offici:[71,99,102,126,130,335],officia:51,offlin:[9,15,78,89,108,157,174,320],offscreen:9,offset:[205,324,335],often:[2,5,10,11,15,22,26,28,31,33,39,40,41,42,45,47,48,50,52,56,58,60,61,63,75,85,87,89,90,92,94,95,96,101,102,103,104,111,113,114,115,118,127,130,145,151,156,166,167,168,174,179,214,216,217,218,219,220,223,225,240,244,254,256,265,270,284,304,314,316,320,322,328,335],ohloh:37,okai:[40,41,47,48,50,57,74,76,110,122,127,197],olc:[42,46,158,247,250],olcmenu:247,old:[0,1,5,9,21,25,27,31,38,42,49,50,54,55,57,59,62,79,80,84,87,89,104,105,110,113,121,122,124,125,127,137,143,151,152,155,158,173,178,196,205,240,245,250,274,315,316,319,322],old_default_set:126,old_kei:[106,245],old_nam:106,older:[2,9,24,54,62,63,78,104,158],oldnam:316,oliv:113,omiss:59,omit:[90,99,108],ommand:149,on_:179,on_bad_request:267,on_ent:[22,179],on_leav:[22,179],on_nomatch:[22,179],onbeforeunload:136,onbuild:99,onc:[0,2,5,6,9,10,13,16,21,22,23,25,33,34,37,38,39,40,41,42,45,46,48,50,54,56,57,59,60,61,62,63,71,78,79,82,84,88,89,92,94,95,96,99,101,104,107,113,115,118,120,121,124,125,127,130,132,136,143,145,150,153,158,163,166,167,169,174,178,179,187,188,194,198,199,200,202,204,211,214,216,217,218,219,220,222,226,229,230,231,232,233,245,249,254,257,270,275,288,292,303,314,319,326,335,340,342],onclos:[39,276,293],onconnectionclos:136,ond:317,one:[0,1,2,3,4,5,9,10,11,12,13,14,15,16,19,20,21,22,23,25,26,27,28,29,31,33,34,35,36,37,40,41,42,43,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,67,68,69,71,72,73,75,76,78,79,80,81,82,84,85,86,87,88,89,90,91,92,94,95,96,97,99,101,102,103,104,105,107,108,110,111,112,113,114,115,117,118,120,121,122,124,125,126,127,130,131,132,133,134,135,136,137,139,142,143,147,150,151,152,153,155,156,158,164,167,169,173,174,175,176,178,179,181,184,186,188,194,197,198,199,203,204,205,213,214,216,217,218,219,220,223,226,230,231,232,233,236,237,239,240,242,244,245,247,248,249,250,254,258,259,265,267,269,270,275,276,277,285,288,289,304,305,306,310,312,314,315,316,319,320,322,323,325,326,327,328,329,332,333,334,335,337,338,339,340,342,343,355,358,360],ones:[4,9,14,20,22,27,31,33,56,57,64,71,73,79,80,82,89,94,99,102,108,113,115,125,126,134,151,152,153,176,179,194,196,216,217,218,219,220,239,249,250,269,274,306,319,328,336],onewai:[42,158],ongo:[28,90,115,178,212],ongotopt:136,onkeydown:136,onli:[0,2,4,5,6,9,10,11,12,13,14,15,19,20,21,22,24,25,26,27,28,29,31,33,34,37,38,39,40,41,42,43,45,47,48,49,50,51,53,54,55,56,57,58,59,60,61,62,63,64,67,68,70,71,72,73,76,78,79,80,81,82,84,85,86,87,88,89,90,92,93,94,95,99,101,102,103,104,105,106,108,110,111,113,115,116,117,118,120,121,122,123,124,125,126,130,131,132,133,134,135,136,137,139,140,143,144,145,149,150,151,152,153,155,156,157,158,163,164,165,166,167,168,169,174,175,176,178,179,180,181,184,186,187,189,194,196,198,204,205,213,214,216,217,218,219,220,222,225,226,230,231,232,233,237,239,240,245,248,249,250,254,256,257,259,265,269,270,277,280,282,283,285,288,297,303,304,306,308,309,310,313,314,315,316,317,319,320,321,322,324,326,327,328,332,334,335,337,338,339,340,342,355,360],onlin:[7,12,15,21,37,40,42,54,56,57,59,60,63,64,67,68,69,70,72,76,78,88,95,97,100,103,107,115,122,127,128,138,140,155,163,174,179,187,279,320,361,362],onloggedin:136,onlook:245,only_tim:339,only_valid:250,onmessag:[39,276,293],onopen:[39,276,293],onoptionsui:136,onprompt:136,onsend:136,onset:[5,11],ontext:136,onto:[25,31,33,43,54,59,60,71,89,94,120,136,152,223,231,244,277,323,326],onunknowncmd:136,onward:106,oob:[24,30,33,44,82,103,136,137,138,143,145,165,188,245,270,288,289,293,294,306,362],oobfunc:103,oobhandl:332,oobobject:101,ooc:[2,57,101,104,113,122,143,147,155,158,159,163,166,176,180,198,245],ooccmdsetchargen:180,ooclook:[104,180,327],opaqu:[15,102],open:[0,3,4,5,9,20,22,23,26,31,34,37,41,45,49,54,56,57,59,62,63,64,68,69,70,71,72,74,78,79,89,94,95,102,104,105,110,113,115,122,129,130,132,133,137,158,165,168,178,179,187,211,212,220,223,225,226,230,239,308,314,322,335,342,361],open_lid:225,open_parent_menu:179,open_submenu:[22,179],open_wal:230,openhatch:78,openlidst:226,openlock:239,opensourc:319,oper:[9,11,12,14,22,27,33,40,41,42,45,50,56,58,59,60,62,63,71,73,79,81,87,88,89,94,95,96,101,109,111,114,118,123,125,130,136,138,143,149,151,153,155,158,163,168,174,179,184,205,226,230,240,245,248,250,259,262,265,274,275,279,281,285,287,288,294,296,297,304,305,314,315,316,319,322,326,328,332,342,362],opinion:[1,47],opnli:314,oppon:[11,72,217,219,229],opportun:[0,4,22,90,132,220],oppos:[27,88,102,109,113,304,317],opposit:[40,42,57,110,120,158,223],opt:[57,136,232],optim:[23,27,33,34,38,55,63,85,92,114,118,153,250,300,303,314],option100:50,option10:50,option11:50,option12:50,option13:50,option14:50,option1:50,option2:50,option3:50,option4:50,option5:50,option6:50,option7:50,option8:50,option9:50,option:[2,4,7,8,10,11,17,20,23,24,25,27,29,31,33,34,36,40,41,46,49,53,54,56,61,62,63,73,75,78,79,80,82,84,85,87,95,99,101,103,105,107,108,110,111,112,113,115,116,122,126,128,132,133,134,136,137,138,140,143,144,145,149,150,151,152,153,155,156,158,163,166,167,169,172,173,174,175,176,178,179,180,181,183,184,186,187,188,189,191,193,194,196,198,199,202,203,204,205,213,214,218,220,232,233,235,236,239,240,242,244,245,247,249,250,252,254,255,256,257,258,259,261,262,263,265,267,270,271,274,275,278,279,280,281,282,283,284,285,287,288,289,292,293,294,296,297,304,306,308,313,314,315,316,317,319,320,321,322,324,325,326,327,328,329,332,334,335,336,337,338,339,341,342,343,347,362],option_class:[140,321],option_dict:326,option_gener:326,option_kei:343,option_str:232,option_typ:337,option_valu:337,optiona:[262,316],optionclass:[140,141,318,321],optioncontain:321,optionhandl:[140,141,318,336],optionlist:[50,247,326],options2:136,options_dict:337,options_formatt:[50,187,247,326],optionsl:249,optionstext:[50,187,326],optlist:214,optlist_to_menuopt:214,optuon:204,oracl:[23,342],orang:[113,202,232],orc:[56,60,108,116],orc_shaman:108,orchestr:99,order:[0,2,5,6,9,10,11,13,14,22,27,31,33,36,37,38,42,43,48,49,50,57,59,60,61,62,63,67,68,69,70,79,83,86,88,92,101,103,108,110,112,113,115,118,120,121,122,125,126,127,129,130,132,133,135,136,137,143,149,153,159,164,165,168,169,172,178,179,180,181,182,184,187,202,203,205,216,217,218,219,220,226,229,230,231,232,235,239,240,242,245,250,252,261,276,288,293,297,304,314,316,319,320,326,327,328,335,339,342,360],order_bi:118,order_clothes_list:181,ordered_clothes_list:181,ordered_permutation_regex:205,ordereddict:[11,342],ordin:319,org:[89,203,232,281,287,293,319,342,355],organ:[5,6,9,22,68,72,79,88,101,107,110,111,118,123,128,130,131,153,169],orient:[54,56,63,95,123],origin:[0,4,9,21,25,29,40,42,48,50,54,56,59,74,75,78,80,88,90,95,101,102,104,105,118,130,135,137,145,151,158,179,196,198,204,205,232,245,249,250,274,316,319,326,334,338,341,361],oscar:[174,237,316],osnam:342,oss:105,ostr:[143,175,236,339],osx:[62,130],other:[0,1,2,4,5,6,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,24,25,27,28,29,31,34,36,37,38,39,40,42,43,45,46,47,48,49,50,52,54,56,57,58,59,60,61,62,63,64,67,68,69,70,72,73,75,79,80,81,82,84,85,86,87,88,90,94,95,96,99,101,102,104,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,122,123,124,125,126,127,130,132,133,134,135,136,137,138,139,143,149,150,151,152,153,158,164,165,166,169,170,175,178,181,183,185,187,193,196,198,204,205,209,211,214,216,217,218,219,220,223,226,231,232,233,237,240,244,245,249,250,255,257,259,263,269,270,274,276,277,283,285,288,297,304,305,307,314,316,318,319,320,322,324,325,326,327,328,334,336,337,339,342,343,360],otherroom:211,otherwis:[0,4,11,15,23,25,27,29,31,33,37,38,40,41,42,50,58,61,67,68,75,77,82,85,88,89,90,94,96,99,101,102,104,108,113,120,122,130,134,140,150,151,155,158,174,178,182,186,187,191,194,205,216,217,218,219,220,233,240,245,248,249,250,257,265,276,277,285,304,308,309,313,319,326,327,334,335,339,340,342,360],our:[2,3,4,8,9,11,14,16,20,21,23,25,26,30,31,33,36,37,38,39,40,41,42,43,45,48,54,56,57,58,59,60,61,62,63,69,71,72,74,76,77,78,79,80,81,82,84,87,89,90,97,99,100,102,110,114,115,116,118,122,123,126,127,128,130,131,133,134,135,136,137,139,147,152,166,167,186,199,214,229,230,233,240,255,310,313,335,361],ourself:122,ourselv:[0,20,57,79,86,117,131,137,143,180,278,279,281,292],out:[0,1,3,6,8,9,10,12,13,14,15,16,17,19,20,21,22,23,25,26,28,29,33,34,37,38,40,41,42,43,44,45,46,47,48,50,53,54,55,56,58,59,60,61,62,63,65,68,69,70,76,78,79,85,87,88,89,90,92,94,95,96,99,101,103,104,107,108,110,113,115,116,118,120,121,122,125,126,128,130,132,134,136,137,138,142,143,150,151,155,157,158,178,180,183,185,187,198,204,205,208,209,211,212,216,217,218,219,220,226,230,239,245,249,250,257,265,267,289,293,294,296,305,306,313,314,323,325,326,328,334,341,342,355],out_templ:[314,334],outcom:[72,85,184,240,245,249],outdat:8,outdata:[39,306],outdoor:[111,118,121,131,231],outer:328,outermost:[11,29,73],outerwear:181,outfunc_nam:39,outgo:[87,89,95,104,145,196,245,277,289,305,342],outgoing_port:89,outlet:89,outlin:[36,42,110,132,276],outmessag:245,output:[4,14,20,22,26,27,34,39,42,50,51,57,73,78,87,90,94,95,99,104,105,107,109,110,112,113,115,119,120,122,125,127,128,134,136,137,153,165,168,169,177,179,183,188,206,207,209,216,217,218,219,220,249,265,270,285,289,297,304,319,327,335,338,342],outputcmd:289,outputcommand:[73,82],outputfunc:[39,58,82,245,270,276],outputfunc_nam:[39,270],outputfunct:82,outrank:315,outright:[12,89],outro:[121,231],outroroom:231,outsid:[0,13,15,20,21,38,56,63,72,87,95,99,103,107,108,109,111,120,133,203,219,229,239,289,304,305,314,317,328],outtempl:[314,334],outtxt:27,outward:[48,89],over:[1,6,8,11,13,14,15,16,17,27,28,31,33,34,36,37,38,39,42,44,47,48,50,52,53,56,57,58,59,60,72,76,80,82,84,87,89,92,93,95,96,99,102,104,107,110,111,112,113,114,115,117,118,124,125,126,127,128,132,135,136,137,143,152,163,173,175,187,199,211,214,216,217,218,219,220,226,231,259,269,283,285,288,290,294,296,298,311,316,320,332,338,342,360,361],overal:[10,55,56,67,70,85,89,151,166,167,217],overcom:110,overhead:[23,27,34,112,131,205,233,314],overhear:204,overlap:[31,61,204,319,328],overload:[5,22,30,31,33,39,43,46,50,54,56,59,73,75,88,95,96,103,113,114,116,122,135,143,151,153,167,174,179,180,186,188,202,205,211,212,216,217,218,219,220,229,230,231,232,245,250,259,269,288,305,324,326,327,328,336],overrid:[1,3,4,9,20,21,22,25,31,36,42,50,53,67,68,79,82,90,95,101,104,106,108,116,117,120,134,135,136,143,153,158,165,169,174,175,179,186,194,196,204,218,220,231,232,240,245,250,257,288,306,310,313,314,327,332,335,336,339,360],overridden:[4,39,95,135,137,143,158,179,232,360],override_set:106,overriden:[143,165,205],overrod:16,overrul:[2,79,143,152,205,245,328],overseen:72,overshadow:60,overshoot:342,oversight:56,overview:[15,16,18,23,44,45,56,67,76,95,102,138,362],overwhelm:[45,60],overwrit:[5,42,75,135,137,158,165,283,315,360],overwritten:[33,133,231,317],owasp:355,own:[1,3,4,5,6,8,9,10,11,13,17,19,20,21,22,25,26,27,29,30,31,34,37,40,42,44,46,50,52,54,56,60,61,62,63,67,70,71,74,75,76,77,79,80,82,84,85,86,87,90,92,94,95,97,100,101,102,103,104,106,107,108,110,111,113,118,120,121,122,123,124,126,127,128,130,131,132,133,134,135,137,138,147,149,150,151,152,158,163,166,181,183,186,187,198,200,204,205,209,216,217,218,219,220,230,232,233,239,240,245,250,270,297,305,316,319,320,321,327,328,332,335,336,340,342,360,362],owner:[4,19,79,84,143,240,336],owner_object:79,ownership:[89,99],p_id:132,pace:[121,229],pack:[82,274],packag:[8,9,23,40,46,52,62,63,71,74,77,87,89,92,95,96,99,107,126,127,134,140,142,148,154,171,177,228,234,238,241,251,260,265,274,289,293,312,318,344],package_nam:63,packagenam:63,packed_data:[262,274,275],packeddict:[96,316],packedlist:[96,316],packet:[82,285],pad:[17,113,319,328,334,342],pad_bottom:328,pad_char:328,pad_left:328,pad_right:328,pad_top:328,pad_width:328,page:[7,8,9,12,13,14,16,17,20,21,23,25,26,28,31,33,36,37,39,44,47,50,51,54,56,57,58,59,60,63,69,71,72,74,75,76,78,79,80,87,88,89,93,95,98,99,100,102,103,105,107,109,123,124,125,126,128,129,130,132,133,136,137,138,163,164,174,237,239,242,252,294,313,316,326,327,342,344,353,360,361,362],page_back:327,page_ban:163,page_end:327,page_formatt:327,page_next:327,page_quit:327,page_titl:360,page_top:327,pagelock:239,pageno:327,pager:[51,138,327],pages:[50,326],pagin:327,paginate_bi:360,paginator_index:327,paginator_slic:327,pai:[55,84,89,102,230,239],paid:89,pain:[89,137],painstakingli:13,pair:[31,82,115,136,137,143,151,181,239,245,306,355,360],pal:86,palett:125,pallet:110,palm:187,pane:[42,87,136,137,170,185],pane_name_to_cut_apart:136,pane_to_set:136,panel:105,panic:108,paper:[60,78,115],paperback:72,par:23,paradigm:[9,60,117,217],paragraph:[14,27,201,320,328,342],parallel:[56,61,68,315],paralyz:218,param:[158,245,257,259,267,277,310,335,343],paramat:[143,153,245,304],paramet:[0,22,24,31,36,38,41,45,48,61,90,99,105,118,126,140,143,144,145,149,150,151,152,153,165,172,173,174,175,176,178,179,181,183,184,186,187,188,189,191,192,193,194,196,197,198,199,203,204,205,208,209,211,214,216,217,218,219,220,225,231,232,233,236,240,242,244,245,247,249,250,252,255,256,257,258,259,262,263,264,265,267,269,270,271,272,274,275,276,277,278,279,280,281,282,283,284,285,287,288,289,290,292,293,294,296,302,303,304,305,306,308,309,310,314,315,316,317,319,320,321,322,323,324,325,326,327,328,329,332,334,335,336,337,339,340,341,342,343,347],paramount:126,paramt:343,paremt:250,parent1:108,parent2:108,parent:[2,6,22,25,27,31,33,39,42,43,59,63,80,88,95,108,113,117,120,122,124,139,147,155,158,166,168,179,196,205,214,232,239,244,245,249,250,254,314,315,316,324,333,335,342,360],parent_categori:214,parent_kei:[22,179],parent_model:[144,172,235,242,252,313],parentesi:334,parenthes:94,parentlock:239,pari:[78,89],pariatur:51,paricular:33,park:179,parlanc:3,parri:[115,230],parrot:117,pars:[3,15,31,33,39,42,49,50,62,80,82,87,96,103,107,108,113,122,123,128,133,138,148,149,150,153,158,164,165,166,167,168,169,173,178,179,184,185,186,198,205,208,209,210,214,230,231,232,240,245,248,249,250,270,277,280,289,293,294,314,319,320,324,325,326,334,341,342,362],parse_ansi:319,parse_ansi_to_irc:277,parse_fil:320,parse_html:341,parse_inlinefunc:334,parse_input:326,parse_irc_to_ansi:277,parse_languag:205,parse_nick_templ:[314,334],parse_opt:214,parse_sdescs_and_recog:205,parseabl:249,parsed_str:277,parseerror:232,parser:[33,40,46,78,103,107,108,133,149,150,155,158,166,167,173,185,186,202,204,205,230,232,248,249,284,319,334,341],parsestack:334,part1:202,part2:202,part:[1,4,5,9,11,13,14,15,16,20,22,23,26,29,33,36,37,38,39,40,41,43,44,45,47,48,50,56,57,59,60,67,68,69,72,75,79,84,85,87,89,90,91,93,94,101,104,105,110,113,115,116,118,121,122,123,124,126,130,134,135,136,137,138,139,150,151,153,166,167,169,174,178,179,184,202,205,214,219,236,239,240,248,249,265,269,294,305,308,310,314,315,319,320,324,326,334,342,362],part_a:178,part_b:178,parth:290,parti:[8,9,13,23,27,37,41,63,71,74,89,100,113,127,133,176,178,184],partial:[25,67,93,204,249,267,280,306,337,339,342,343],particip:[40,102,216,217,218,219,220],particular:[5,8,12,13,14,20,22,28,31,39,40,42,43,47,57,58,63,67,69,71,73,74,78,79,82,84,87,88,92,95,96,103,104,106,111,112,113,117,118,120,123,124,130,131,134,138,143,150,151,158,175,186,209,218,219,226,236,239,240,245,254,306,308,316,332,339,360],particularli:[0,4,12,38,50,54,126,166,205,250,269],partit:319,partli:[11,31,46,85,128,151],party_oth:178,pass:[4,10,21,23,25,27,28,29,30,33,36,39,42,48,50,51,61,68,73,79,81,82,84,87,89,90,94,95,99,104,106,108,109,110,114,116,118,120,124,126,129,133,137,138,143,145,151,170,181,183,184,187,188,193,199,208,209,211,214,216,217,218,219,220,230,239,240,245,249,255,259,263,275,283,285,288,293,294,304,310,314,316,325,326,327,328,334,335,336,337,338,341,342,360],passag:[82,115,181,230,231,329],passant:125,passavataridterminalrealm:285,passiv:[29,115,132],passthrough:[1,31,257],password1:[144,355],password2:[144,355],password:[4,9,12,23,35,36,50,63,73,79,102,130,138,143,144,155,156,170,185,200,203,209,270,285,288,309,322,347,355],password_chang:358,passwordresettest:358,past:[0,13,20,26,37,45,49,57,61,68,95,103,107,110,115,122,132,136,218,311,320,329,360],pastebin:37,patch:[124,340],path:[0,2,4,8,14,20,21,22,27,29,38,39,42,44,47,50,52,58,59,62,63,65,66,73,79,84,85,87,88,89,94,95,99,101,104,105,108,113,116,117,118,120,122,123,124,133,134,135,137,138,143,145,147,150,151,152,157,158,159,160,161,162,163,168,174,176,178,179,180,181,183,184,186,188,194,196,197,199,200,202,203,204,205,211,212,213,216,217,218,219,220,222,223,225,226,229,230,231,233,237,244,245,249,250,254,256,257,259,265,272,274,283,290,296,298,302,306,310,314,315,316,320,322,324,325,326,327,329,332,333,339,342,360],path_or_typeclass:197,pathnam:340,patient:[20,69],patreon:69,patrol:229,patrolling_pac:229,patron:[37,69],pattern:[3,4,16,68,86,132,133,134,139,156,205,309,342],paul:124,paus:[10,38,45,50,99,101,109,115,193,257,342],pausabl:342,pauseproduc:267,paxboard:78,payload:[276,293],paypal:[37,69],pdb:[138,140],pdbref:[79,239],pdf:78,peac:116,peek:[20,26,50,90],peer:[276,293],peform:270,peg:102,pem:66,pemit:[42,107,156],penalti:[85,218],pend:310,pennmush:[56,107,128],pentagon:102,peopl:[2,20,21,26,37,42,53,54,57,60,63,67,70,71,72,78,79,80,84,89,94,95,96,102,107,113,115,118,138,164,185,205,230,231,313,322],pep8:26,per:[2,4,11,19,33,40,46,50,57,59,61,63,68,82,85,88,92,99,104,108,115,118,122,137,143,174,186,204,216,217,218,219,220,229,278,279,281,289,292,308,326,327,328,332,335,336],perceiv:61,percent:[33,342],percentag:[115,315,342],percentil:342,perception_method_test:301,perfect:[49,54,60,74,99,130],perfectli:[4,68,95,111,128,137,319],perform:[11,13,14,22,23,25,38,40,41,42,51,54,58,70,73,74,79,88,90,92,96,101,102,113,115,116,122,132,133,149,151,155,158,163,174,179,181,187,193,194,205,208,214,216,217,218,219,220,226,245,248,254,255,274,288,296,297,314,315,316,323,334,336,339,342,343,355],perhap:[16,22,41,45,61,68,76,90,93,96,107,137],period:[89,94,95,99,102,126,127,129,342],perist:[34,124],perm:[4,11,12,19,22,25,33,57,67,70,79,84,108,111,122,132,147,156,157,158,163,164,165,168,186,192,202,211,231,237,239,240,244,245,254,314,316],perm_abov:[79,239],perm_us:156,perman:[4,5,12,21,24,25,31,42,50,84,89,95,121,122,137,143,151,152,155,158,163,164,168,196,204,245,258,316],permiss:[2,4,7,8,9,11,12,18,20,21,23,25,31,40,42,44,65,67,69,70,74,92,107,108,122,132,138,143,144,146,147,151,153,155,156,157,158,164,166,167,174,192,196,205,220,237,239,240,244,245,249,250,254,314,315,316,317,320,322,335,339,360,362],permission_account_default:[79,296],permission_func_modul:239,permission_guest_default:65,permission_hierarchi:[19,79,239,240],permissionerror:249,permissionhandl:[132,317],permissionshandl:313,permit:[40,77,158,309],permstr:[79,143,316,322],permut:205,perpetu:92,persis:29,persist:[0,6,21,22,27,31,33,34,42,50,54,55,56,59,63,78,83,85,88,101,103,104,108,109,114,115,120,122,124,143,147,158,168,174,175,176,179,183,187,194,204,205,212,214,216,217,218,219,220,226,230,237,244,245,247,248,249,254,255,256,257,258,259,270,271,272,303,304,312,316,322,324,326,328,329,342],person:[12,21,42,60,62,69,72,89,101,104,117,128,138,143,158,164,178,184,205,225],persona:95,perspect:[72,75,76,104],pertain:[102,125,135,348],pertin:[67,132],perus:[52,136],peski:84,pester:[56,60],phase:[48,60],philosophi:79,phone:[16,63,74,138,203],phone_gener:203,phonem:204,php:[107,355],phrase:[45,197],phrase_ev:197,physic:[2,48,219,229],pick:[6,9,13,15,20,21,31,33,35,37,38,42,50,54,61,67,71,72,79,84,89,94,95,99,101,103,105,110,118,131,150,155,158,164,166,167,173,181,189,196,205,220,223,230,231,245,297],pickl:[11,29,82,114,255,259,262,272,274,275,314,315,323,324,326,338],pickle_protocol:338,pickledfield:338,pickledformfield:[313,338],pickledobject:338,pickledobjectfield:338,pickledwidget:338,picklefield:[140,141,313,318],pickpocket:[42,165],pickup:[196,220,245],pictur:[21,39,56,105,137],pid:[36,79,99,109,130,132,239,245,265,275,342],piddir:36,pidfil:265,piec:[10,13,58,60,63,92,121,202,292,320],pierc:230,piggyback:143,pile:[152,320],pillow:74,ping:[145,265,277],pink:118,pip:[9,23,26,41,46,52,58,62,64,70,74,92,95,96,97,99,126,127,129,132,140],pipe:[104,277,323],pitfal:[14,26,113,125],pixel:24,pizza:[147,176,237,244,254,314,316,317],pkg:74,pki:8,place:[0,2,3,4,5,8,9,11,14,15,20,21,25,26,30,37,40,42,45,48,50,52,54,61,62,63,68,70,72,74,75,79,82,88,89,90,94,95,99,101,102,103,104,108,110,120,122,123,125,127,128,130,131,132,134,135,137,143,156,158,164,178,179,181,183,187,196,202,205,208,216,217,218,219,220,230,231,233,245,257,274,283,288,304,305,306,320,321,323,326,342],placehold:[133,240,245,328],plai:[0,2,11,14,19,22,29,38,45,54,57,60,63,67,72,74,80,82,89,90,94,104,110,113,115,120,121,122,123,131,132,137,143,216,220,289,306,322],plain:[13,14,57,85,87,122,178,179,201,250,270,296,323,360],plaintext:209,plan:[9,14,15,39,40,41,44,54,55,89,93,95,99,123,124,138,320,362],plane:120,planet:[61,78],plant:232,plate:[81,124,203],platform:[9,16,55,62,89,101,105,130],playabl:[132,358],player:[9,10,11,12,19,20,21,22,25,29,31,34,39,40,42,50,53,54,57,59,60,63,64,67,70,72,76,79,80,82,84,89,90,92,94,96,97,104,107,109,110,111,112,115,116,117,118,119,120,121,122,123,132,136,137,138,152,155,158,163,168,175,178,179,187,189,197,198,199,202,204,205,209,213,214,219,220,231,232,233,236,254,279,288,305,320,325,342,355,360],playernam:70,playerornpc:9,pleas:[4,5,8,16,17,26,31,37,42,50,62,69,70,71,74,77,89,92,93,108,110,113,116,117,119,123,124,126,130,132,136,168,267,296,332,338,355,361],pleasur:16,plenti:[14,54,59,128],plot:298,plu:[22,27,42,63,105,168],pluck:33,plug:[95,102,106,135,233],plugin:[4,39,44,46,54,71,78,82,103,107,137,205,263,362],plugin_handl:136,plugin_manag:136,plural:[19,57,79,219,245],png:135,pobject:225,pocoo:342,point:[0,2,4,5,8,13,14,15,20,21,22,25,27,29,31,33,34,36,37,38,41,42,48,50,54,55,59,60,61,62,68,72,74,80,82,84,85,87,88,89,90,92,94,96,99,101,103,104,105,111,112,114,115,120,122,124,126,129,130,132,133,134,135,137,138,143,149,153,158,166,167,168,178,188,196,199,205,211,216,231,232,233,245,247,249,259,265,269,283,285,293,304,306,313,314,316,320,326,342,360],pointer:[26,48,55,90],pointless:[6,10,88,114],poison:[218,250],poke:118,pole:202,polici:[42,44,89,93,102,138,209,237,309,314],polit:102,poll:[39,135,155,229,265,294],pong:277,pool:[23,31,114,259,310,323],poor:[47,57],poorli:102,pop:[10,23,25,47,52,57,84,105,137],popen:275,popul:[22,23,36,40,56,60,61,80,123,134,137,151,159,160,161,162,179,181,186,202,205,213,216,217,218,219,220,223,229,230,231,258,259,313,320,324,325,327,334],popular:[9,56,63,78,102,107,360],popup:[136,137],port:[0,8,9,23,36,42,53,54,62,66,71,93,99,100,109,145,163,274,277,285,297,306,310],portal:[39,42,44,46,78,87,88,89,92,93,102,103,105,109,120,127,136,138,140,141,145,168,182,260,262,265,303,304,305,306,329,335,342,362],portal_connect:306,portal_disconnect:306,portal_disconnect_al:306,portal_l:275,portal_pid:[275,342],portal_receive_adminserver2port:275,portal_receive_launcher2port:275,portal_receive_server2port:275,portal_receive_statu:275,portal_reset_serv:306,portal_restart_serv:306,portal_run:265,portal_service_plugin_modul:39,portal_services_plugin:[39,103],portal_services_plugin_modul:39,portal_sess:39,portal_session_sync:306,portal_sessions_sync:306,portal_shutdown:306,portal_st:265,portal_uptim:329,portallogobserv:335,portalsess:[39,104,283],portalsessiondata:306,portalsessionhandl:[39,140,260,273,284,306],portalsessionsdata:306,portion:[76,179,189],pose:[29,57,115,164,174,194,205],pose_transform:174,poser:174,posgresql:23,posit:[13,20,22,38,48,50,90,110,115,125,136,137,138,152,170,179,185,199,201,220,230,231,232,233,258,319,320,323,324,328,342,343],positive_integ:343,positiveinteg:336,posix:[335,342],possess:[7,76,188],possibl:[0,5,9,10,11,22,23,25,26,31,33,34,37,38,42,45,49,50,54,56,57,62,63,65,72,73,74,75,79,90,92,99,101,103,104,108,110,111,113,115,122,125,126,127,130,133,135,137,140,143,147,149,151,158,166,167,178,186,193,196,199,202,204,205,213,226,229,231,233,239,240,245,248,249,250,255,259,270,290,294,304,306,315,319,322,324,325,326,328,338,339,342],post:[5,31,34,37,54,56,57,60,62,68,69,70,79,97,106,110,119,132,135,209,294,360],post_delet:106,post_init:106,post_join_channel:174,post_leave_channel:174,post_migr:106,post_sav:106,post_send_messag:174,post_text:189,post_url_continu:[144,172,242],postfix:204,postgr:[23,63],postgresql:[54,342],postgresql_psycopg2:23,postinit:136,posttext:187,postupd:[70,119],pot:12,potato:[24,232],potenti:[10,11,13,26,40,81,82,89,97,110,113,115,122,153,175,209,210,239,240,245,249,336,339,342],potion:[76,316],power:[15,19,20,29,30,31,33,41,42,45,49,50,54,55,57,60,63,79,88,95,108,110,115,121,122,136,137,151,152,157,158,214,219,232,320,326,342],powerfulli:0,pperm:[12,40,42,70,79,132,155,163,202,239,245],pperm_abov:239,pprofil:265,pprogram:265,practial:15,practic:[0,13,14,22,26,29,33,34,36,37,56,57,62,63,69,79,88,89,95,104,108,118,123,125,130,138,320,362],pre:[33,42,46,48,53,60,62,70,88,89,110,113,137,143,158,165,204,240,245,249,250,293,294,324,338],pre_delet:106,pre_init:106,pre_join_channel:174,pre_leave_channel:174,pre_migr:106,pre_sav:[106,338],pre_send_messag:174,pre_text:189,preced:[19,31,40,95,108,113,118,151,153,173,214,245,250,315,328],precend:149,precis:[11,95,125,319],predefin:[120,309],predict:[124,132],prefac:118,prefer:[21,22,23,31,37,42,46,54,56,70,79,89,90,95,105,108,110,122,130,136,137,151,153,156,174,179,205,217,229,236,245],prefix:[20,22,23,41,75,85,96,102,124,144,150,167,174,189,204,235,242,270,277,313,319,334,335,339,342,355],prefix_str:25,prematur:[27,92,178,257],prepai:89,prepar:[3,48,56,86,108,126,143,205,216,217,218,219,220,229,254,323,338],prepend:[198,205,245,319,320,326,342],prepopul:[313,360],preprocess:158,prerequisit:[9,36],prescrib:[54,56],preselect:137,presenc:[9,17,23,54,55,89,121,123,125,135,143,245,310,344],present:[1,4,8,22,41,45,47,48,50,61,68,76,84,90,95,96,103,104,115,122,130,137,179,187,189,203,204,213,214,232,250,324,342],preserv:[125,166,167,316,319,320,335,342],press:[9,14,15,22,26,31,33,41,50,52,62,79,82,87,94,95,99,105,109,179,223,225,226,230,263,326],press_button:225,pressabl:226,pressur:81,presto:20,presum:[61,72,152,335,336],pretend:74,pretext:187,pretti:[0,22,25,26,37,38,40,59,63,71,84,87,88,89,115,120,122,125,130,132,137,153,181,203,234,240,249,325,327,336,342],prettier:[0,355],prettifi:[56,342],prettili:61,pretty_corn:328,prettyt:[27,81,328],prev:50,prev_entri:50,prevent:[11,20,33,45,61,94,193,220,232,313,327,360],previou:[0,10,11,14,16,22,29,31,33,40,41,50,51,57,59,61,68,79,84,85,86,90,94,95,99,103,106,113,118,122,125,173,214,231,247,257,326,335,360],previous:[20,31,34,42,48,49,71,73,90,101,103,113,118,126,132,135,153,156,158,178,199,270,286,290,297,306,317],prgmr:89,price:[89,230],primari:[17,99,124,132,205,245,314,339],primarili:[2,12,34,36,37,54,60,107,143,178,205,236,283,323,342],primary_kei:132,prime:[149,178],primit:[42,60,158,249],princess:[110,121],principl:[2,9,19,26,30,33,37,39,42,50,54,56,59,79,84,88,89,95,97,118,122,131,137,152,155,178,231],print:[4,9,10,11,21,25,26,27,39,41,42,49,50,52,57,58,85,90,94,95,96,109,112,124,155,184,204,232,249,264,265,325,326,327,328,334,335,342],print_debug_info:326,print_help:232,print_usag:232,printabl:291,printout:288,prio:[25,31,33,149,231],prior:[116,193,245],priorit:204,prioriti:[4,25,31,33,43,50,96,115,151,155,159,160,161,162,166,167,179,200,230,231,245,324,326,327],privat:[4,8,42,56,60,68,89,130,163,164,175,277,290],private_set:9,privatestaticroot:310,privileg:[21,23,42,59,62,64,71,97,122,164,205,233,245,316],privkeyfil:285,privmsg:277,prize:121,proactiv:114,probabl:[4,5,11,16,21,22,23,25,29,33,37,45,47,50,54,56,60,63,66,68,84,85,88,89,95,107,115,118,120,127,132,133,135,137,179,197,203,231,267,277,285,332,342,343],problem:[11,13,15,21,22,23,25,26,27,36,42,55,60,63,68,69,74,76,79,89,94,96,99,102,109,110,112,126,137,139,143,152,194,245,274,320],problemat:[25,342],proce:[14,15,99,120,125,292,360],procedur:[137,214,285,288],proceed:[130,342],process:[0,4,8,9,11,13,14,15,22,23,25,29,33,36,38,40,41,42,48,50,54,58,60,63,72,74,75,82,87,88,89,90,91,92,93,99,105,121,130,132,137,138,143,149,158,168,178,199,205,214,232,238,240,245,249,255,265,270,274,275,282,285,288,293,294,303,304,306,319,320,323,326,336,341,342,343,360,362],process_languag:205,process_recog:205,process_sdesc:205,processed_result:342,processj:[314,334],processor:[18,42,92,109,110,138,140,141,157,168,199,318,362],procpool:342,produc:[33,42,50,95,113,122,130,155,158,202,204,230,233,245,249,250,264,296,314,316,325,326,334,342],produce_weapon:230,producion:27,product:[23,26,36,89,92,102,105,127,130,134,296,299,326],production_set:9,prof:92,profession:[3,56,63,107],profil:[44,64,138,140,141,144,147,187,260,362],profile_templ:187,profit:137,profunc:108,prog:232,progmat:55,program:[2,10,15,23,42,52,55,56,62,63,69,74,76,78,85,89,91,92,94,95,99,102,105,107,109,113,123,126,127,168,232,260,265,288,294,296],programm:[90,94],programmat:[113,137],progress:[69,72,78,84,93,130,216,217,218,219,220,324,362],proident:51,project:[4,15,25,37,48,63,69,71,76,78,90,98,107,110,123,126,130,134,135,336],projectil:219,promis:26,promisqu:125,prompt:[9,23,24,26,41,53,62,63,74,82,87,95,99,110,123,124,136,138,153,214,263,277,288,293,294,320,326,362],promptli:14,prone:[1,127,152,316],pronoun:188,prop:60,propag:[8,269,338],proper:[15,21,23,27,36,38,42,43,55,56,60,63,84,90,95,99,102,115,122,126,130,132,134,136,137,158,178,179,195,204,325],properli:[9,29,57,61,68,83,105,107,116,124,125,126,127,129,130,132,139,153,178,210,231,239,259,285,342,360],properti:[5,6,13,22,25,38,42,52,54,55,56,58,60,67,72,79,80,83,85,86,95,96,103,108,109,110,114,115,118,120,122,125,126,143,144,145,147,153,155,158,166,168,169,172,174,176,179,187,191,193,202,205,214,216,218,219,220,229,230,231,232,233,235,237,239,240,242,244,245,249,250,252,254,256,257,261,270,272,277,283,297,304,305,306,313,314,316,317,321,323,326,336,337,338,339,342,355,360],propnam:122,propos:[49,137],proprietari:23,propval:122,propvalu:122,prosimii:[132,133],prospect:60,prot:250,prot_func_modul:[108,248],protect:[6,31,42,89,158],protfunc:[140,141,246,249],protfunc_modul:249,protfunc_pars:249,protfunct:249,protkei:[108,248,249],proto:[274,285],proto_def:202,protocol:[24,27,33,42,46,63,71,73,78,82,89,91,93,100,102,103,104,109,136,138,143,145,153,156,188,209,245,260,262,265,267,270,274,275,276,277,278,279,280,281,283,284,285,287,288,289,290,292,293,294,296,303,304,305,306,324,338,342,362],protocol_flag:[287,288,292,304],protocol_kei:305,protocol_path:[283,306],protodef:202,prototocol:[42,168],protototyp:[247,249,250],protototype_tag:108,prototoyp:248,prototyp:[42,44,45,46,54,119,138,140,141,158,168,202,217,218,230,362],prototype1:250,prototype2:250,prototype_:108,prototype_desc:[108,250],prototype_dict:[42,158],prototype_diff:250,prototype_diff_from_object:250,prototype_from_object:250,prototype_kei:[42,108,158,249,250],prototype_keykei:[42,158],prototype_lock:[108,250],prototype_modul:[42,108,158,249,250],prototype_par:[42,108,158,250],prototype_tag:250,prototype_to_str:249,prototypefunc:250,protpar:[249,250],protpart:249,provid:[0,3,4,11,12,16,17,22,25,29,33,36,40,42,46,54,66,68,74,76,89,90,95,96,99,101,102,107,108,118,123,124,125,126,130,132,133,135,136,137,143,153,158,163,174,179,181,187,189,192,199,202,203,214,216,217,218,219,220,232,233,239,245,257,285,308,315,326,336,337,338,342,343,355,360],provok:[41,78],proxi:[46,59,93,102,124,310,313],proxypass:8,proxypassrevers:8,prudent:36,prune:31,pseudo:[39,48,90,107,203,204],psionic:219,psql:23,psycopg2:23,pty:9,pub:40,pubkeyfil:285,publicli:[53,60,78],publish:[21,36,78,99],pudb:140,puff:55,pull:[25,31,33,36,37,63,99,127,130,135,197,226,230,267],punch:31,punish:220,puppet:[2,9,19,21,22,31,33,38,39,40,42,54,56,57,61,73,79,95,96,104,106,113,117,122,132,142,143,149,155,158,166,180,196,198,239,245,304,306,316,334,358,360],puppet_object:[2,143],purchas:84,pure:[45,55,87,113,124,125,254,265,314,319],pure_ascii:342,purg:[11,42,109,124,168],purpos:[4,11,82,89,91,94,111,118,122,125,132,145,149,153,184,193,285,314,323,326,342],pursu:[121,229],push:[22,75,99,102,125,197,223,225,226,230],pushd:62,put:[0,2,3,5,6,10,12,13,14,19,20,21,23,25,33,37,41,42,45,48,49,50,56,57,59,60,63,69,72,76,78,79,82,84,85,86,88,89,94,95,101,102,103,104,105,108,110,113,115,120,121,122,124,126,128,132,134,135,137,152,155,156,158,160,164,180,181,187,189,205,214,216,217,218,219,220,222,226,240,274,288,327,328,342],putti:89,puzzl:[78,121,140,141,177,230,231],puzzle_desc:230,puzzle_kei:231,puzzle_nam:202,puzzle_valu:231,puzzleedit:202,puzzlerecip:202,puzzlesystemcmdset:202,pwd:99,py3:274,pyc:[46,94],pycharm:[44,138,362],pyflak:26,pylint:26,pyopenssl:64,pypath:342,pypath_prefix:342,pypath_to_realpath:342,pypi:[63,78,89,92,319],pypiwin32:[9,62],pyprof2calltre:92,pyramid:233,pyramidmapprovid:233,pyreadlin:52,python2:[9,62,96],python37:62,python3:[62,74,93],python:[0,2,3,4,9,10,11,12,14,15,19,20,21,22,23,27,29,31,33,37,38,41,42,44,45,46,48,49,50,52,55,57,59,61,62,63,64,65,68,71,72,74,75,79,81,84,85,88,89,90,92,96,97,99,102,103,105,107,108,109,110,112,113,115,117,118,122,123,124,126,127,129,132,133,134,138,150,152,157,158,162,168,169,179,184,191,192,193,194,195,196,197,203,232,233,240,244,248,249,250,256,259,265,267,274,278,283,293,304,306,310,312,315,316,319,320,322,323,324,325,326,328,329,332,335,338,342,361,362],python_execut:63,python_path:[152,342],pythonista:78,pythonpath:[152,265,275,320],pytz:343,qualiti:[60,150],quell:[2,6,20,120,121,155,211],queri:[11,16,34,38,55,63,82,85,108,111,130,147,176,205,236,237,244,245,248,249,250,254,272,285,300,314,315,316,317,327,333,339,342,343],quersyet:118,query_al:314,query_categori:314,query_info:265,query_kei:314,query_statu:265,queryset:[63,101,111,118,175,198,236,249,271,313,315,327,360],queryset_maxs:327,quest:[54,56,60,62,116,121,138],question:[8,10,22,26,33,34,42,49,50,52,56,60,62,69,72,89,95,123,130,134,158,244,262,263,314,324,326,342],queu:265,queue:[36,115,310],qui:51,quick:[5,18,22,31,33,38,42,47,54,60,69,78,89,90,94,96,107,111,115,118,123,137,139,145,158,179,204,250,270,314,317,328,361],quicker:[0,37,85,86],quickli:[10,11,15,25,33,34,38,42,47,50,52,85,88,95,111,113,119,127,135,138,158,179,204,317,320],quickstart:[94,138,362],quiescentcallback:267,quiet:[25,42,84,156,158,163,179,181,196,205,245,327,342],quiethttp11clientfactori:267,quietli:[29,82,87,314],quirk:[24,44,138,152,362],quit:[0,2,4,10,17,21,22,23,30,33,38,39,41,45,49,50,53,54,56,59,74,84,92,95,104,118,126,127,132,155,170,179,185,187,193,219,285,324,326,327],quitfunc:[49,324],quitfunc_arg:324,quitsave_yesno:324,quo:114,quot:[23,27,35,42,49,79,94,95,108,113,117,158,170,185,205,324,334,338,342],qux:214,ra4d24e8a3cab:35,race:[8,54,55,60,72,78,116,132,342],rack:230,radiu:[38,48,110],rage:121,rail:[63,120],railroad:120,rain:[101,118,121,131],raini:231,rais:[10,15,27,33,68,72,76,82,90,108,118,133,143,145,175,179,184,186,191,193,194,203,204,205,240,248,249,257,259,264,265,283,288,294,309,314,315,319,320,322,325,326,328,334,335,336,337,338,342,343],raise_error:[337,342],raise_except:[1,314],ram:[11,89],ramalho:78,ran:[13,36,41,126],rand:101,randint:[72,90,108,115,119,122,216,217,218,219,220,248,250],random:[9,20,35,45,59,72,89,90,101,103,108,115,119,122,131,203,204,216,217,218,219,220,222,223,225,227,230,231,233,248,250,296,297,342],random_string_from_modul:342,random_string_gener:[140,141,177],randomli:[85,92,101,119,131,216,217,218,219,220,229,230,248,265,297],randomstringgener:203,randomstringgeneratorscript:203,rang:[24,31,38,41,42,48,49,55,58,62,87,90,92,102,108,110,115,117,119,121,126,158,183,187,217,220,315,324,355,360],rank:[19,239],raph:78,rapidli:152,raptur:289,rare:[10,22,33,34,62,85,103,105,114,127,240,322],rascal:111,rate:[33,37,42,63,89,163,259,265,284,342],rather:[2,3,11,13,20,22,25,26,29,33,37,38,40,42,46,54,56,59,60,63,70,85,88,90,92,94,96,101,103,109,110,111,114,115,126,127,128,130,133,134,137,143,147,151,155,158,159,163,166,168,178,189,193,196,201,205,216,217,218,219,220,234,239,245,247,250,313,314,316,319,328,334,337,338,341,360],ration:178,raw:[3,12,20,33,40,55,63,73,82,85,94,108,113,118,143,150,153,158,166,167,169,205,209,232,245,270,285,288,293,294,304,319,324,326,336,342],raw_cmdnam:[150,167],raw_desc:186,raw_id_field:[172,242,252],raw_input:[84,326],raw_nick:86,raw_str:[33,50,84,143,145,149,150,153,169,187,200,214,245,247,304,314,326],raw_templ:86,raw_text:200,rawstr:[153,169],rcannot:22,re_bg:341,re_bgfg:341,re_blink:341,re_bold:341,re_color:341,re_dblspac:341,re_double_spac:341,re_fg:341,re_format:319,re_hilit:341,re_invers:341,re_mxplink:341,re_norm:341,re_str:341,re_ulin:341,re_underlin:341,re_unhilit:341,re_url:341,reach:[20,22,38,50,72,86,87,89,94,100,120,121,140,153,187,191,220,239,285,289,308,326,327,334,339],reachabl:[63,114],react:[50,114,116,117,229,245],reactiv:[42,168],reactor:[93,276,303,310,340],read:[0,1,4,5,8,9,11,13,15,16,17,20,22,23,25,27,29,31,33,34,37,38,40,42,45,50,54,55,57,58,59,60,63,68,69,70,71,75,76,78,79,84,85,87,89,90,92,94,95,101,102,103,104,108,113,118,121,122,123,125,126,127,130,132,133,137,138,143,147,157,165,176,179,186,189,197,198,203,205,230,231,237,244,245,249,250,254,272,274,297,314,316,317,320,321,325,327,333,335,360,361],read_batchfil:320,read_default_fil:36,readabl:[1,27,48,92,95,107,113,114,124,230,319],readable_text:230,reader:[42,47,57,73,78,80,97,132,163,189,220,270,284],readi:[2,10,12,15,20,25,29,36,37,39,41,53,62,74,76,79,88,92,105,120,130,135,137,143,153,165,205,216,217,218,219,220,245,294,336,342],readili:[23,110],readin:325,readlin:335,readm:[14,37,46,129,130,177,209],readonlypasswordhashfield:144,readthedoc:78,real:[2,10,21,22,27,31,38,41,45,52,54,57,58,61,62,65,71,72,88,89,92,94,99,107,108,109,110,115,118,122,124,125,130,136,147,152,176,178,183,204,205,218,239,296,320,329],real_address:2,real_nam:2,real_seconds_until:[183,329],real_word:204,realis:76,realist:[126,131],realiti:[21,54,55,60,76,78,125],realiz:[47,95,125,130],realli:[4,10,11,12,13,14,19,20,22,25,26,31,33,38,41,50,52,57,61,63,71,76,79,84,88,90,95,97,103,107,109,110,111,114,117,118,120,126,127,137,138,178,179,180,214,232,240,274,319,320,326,338],realm:285,realnam:88,realtim:[57,183],realtime_to_gametim:183,reason:[8,9,11,12,13,22,25,29,34,37,38,39,40,42,43,48,50,55,56,57,59,60,62,63,68,72,79,81,82,85,86,88,92,96,101,102,103,105,108,113,114,115,118,121,125,128,130,137,143,156,158,163,168,185,203,204,245,249,255,262,267,274,275,276,277,283,284,285,288,293,294,296,304,305,306,316,324,335,342,360],reasourc:108,reassign:48,reattach:[105,276,277],rebas:130,reboot:[11,27,28,42,49,54,83,85,89,99,101,104,114,115,127,143,152,168,182,187,229,230,245,254,255,256,257,259,265,305,306,324,326,342],reboot_evennia:265,rebuild:[57,62,99,127,277],rebuilt:33,rec:205,recach:231,recal:[94,137,230,360],recaptcha:132,receipt:[102,267],receiv:[31,33,34,37,40,41,50,51,57,76,82,86,90,104,112,113,116,126,132,136,137,143,151,152,169,170,174,175,176,185,196,198,199,205,209,245,267,270,274,276,277,283,293,294,303,304,322,327,339,342],receive_functioncal:274,receive_status_from_port:265,receivelock:239,receiver_account_set:147,receiver_object_set:244,receiver_script_set:254,recent:[4,17,25,59,66,93,122,308],recev:294,recip:[0,28,114,202],recipi:[34,57,143,175,198,274],reckon:9,reclaim:101,recog:[86,205],recog_regex:205,recogerror:205,recoghandl:205,recogn:[16,20,62,73,88,89,95,109,126,133,205,310],recognit:[205,314,334],recommend:[9,12,23,24,25,26,36,37,42,50,54,57,58,59,60,62,68,72,78,85,87,88,89,92,94,107,108,123,124,126,130,134,168,189,193,208,232,240,245,267,320,326,339],reconfigur:89,reconnect:[121,143,145,262,265,274,276,277,303,306],reconnectingclientfactori:[262,276,277],record:[15,23,89,122,209,220,308,355],recours:12,recov:[27,28,29,55,216,217,218,219,220,240,342],recoveri:115,recreat:[23,62,101,110,127,145,152,320,321],rectangl:325,rectangular:[57,325],recur:63,recurs:[11,239,249],red:[13,14,20,31,42,58,79,86,94,108,113,125,158,168,223,225,226,230,334,343],red_bal:58,red_button:[13,14,20,42,86,140,158,177,221,223,226],red_button_script:[140,177,221,225],red_kei:79,redbutton:[13,14,20,42,86,158,223,225,226],redbuttonblind:226,redbuttonclos:226,redbuttondefault:223,redbuttonopen:226,redd:102,reddit:102,redefin:[22,33,54,88,245,355],redhat:[62,66],redirect:[8,22,39,68,95,104,132,134,179,326,360],redirectview:360,redistribut:34,redit:179,redo:[49,60,324],redon:269,redraw:285,reduc:[93,115,216,217,218,219,220,278],redund:319,reel:152,reen:113,ref:[23,124,205,342,355],refactor:[44,56,138,245,362],refenc:52,refer:[0,8,9,13,19,20,22,31,33,34,37,39,42,45,47,48,50,52,55,56,61,63,68,72,78,79,85,86,87,88,89,94,95,99,103,104,105,108,109,110,115,118,123,124,125,126,128,129,130,132,133,143,152,158,163,167,178,187,196,199,203,205,216,217,218,219,220,239,245,256,259,267,277,297,305,313,315,332,338,339,360,361],referenc:[42,55,88,103,108,158,174,205,237,316,342],referenti:342,referr:89,refin:[48,118],reflect:[95,360],reflow:16,reformat:[250,328,335],reformat_cel:328,reformat_column:[110,328],refresh:[26,133,285],refus:12,regain:29,regard:[47,125,126,137,203],regardless:[12,19,31,33,57,72,79,80,82,101,104,113,118,120,124,126,137,143,151,178,188,196,205,223,226,245,257,259,282,285,288,303,305,314,317,320,332,335],regener:218,regex:[5,33,49,86,136,153,156,169,182,203,205,309,314,334,342],regex_nick:86,regex_tupl:205,regex_tuple_from_key_alia:205,regexfield:144,region:[42,57,89,139,156],regist:[64,70,82,102,103,115,119,130,132,134,136,137,143,197,229,230,255,265,276,277,283,306,310,319,334,358,360],register_error:319,register_ev:197,registercompon:136,registertest:358,registr:[64,360,361],registri:[203,310],regress:249,regul:240,regular:[3,17,33,68,78,89,95,104,114,131,133,134,145,151,181,202,203,225,226,231,240,259,332,342,361],regulararticl:333,regulararticle_set:333,regularcategori:333,regularli:[84,97,101,119,127,131,183,225,229,231,256,257,259,268,298,329],reilli:78,reinforc:78,reiniti:109,reinstal:62,reinvent:56,reject:[187,203],rejectedregex:203,rel:[10,13,14,19,22,31,48,50,81,103,122,130,132,183,199,220,320,326],relai:[27,33,42,71,104,143,163,178,188,245,283,306,326,327,342],relat:[28,31,33,34,42,46,50,55,56,71,78,93,95,101,102,103,109,124,131,136,137,138,144,147,148,151,165,166,171,175,176,183,197,209,216,217,218,219,220,231,237,244,245,254,257,259,270,306,313,314,316,317,319,326,333,335,344,348,355],related_field:[144,172,235,242,252,313],related_nam:[147,176,237,244,254,314,316,317,333],relationship:[34,48,118,124],relay:145,releas:[9,28,37,42,54,62,77,78,89,95,168],releg:1,relev:[3,9,11,14,22,30,33,37,46,57,61,78,79,88,93,95,106,111,113,115,118,122,123,124,132,134,139,143,144,149,151,178,179,239,240,256,257,279,297,304,305,306,313,319,324,326,336],relevant_choic:179,reli:[9,34,40,50,61,69,80,84,85,87,90,113,114,118,125,126,134,188,205,226,231,265,316,326],reliabl:[13,23,25,29,124,332],reliant:199,reload:[0,2,3,5,6,7,12,13,14,19,21,22,26,27,28,29,31,33,35,36,38,39,40,41,43,47,49,50,54,56,57,59,61,62,64,65,67,68,70,72,73,80,91,94,95,97,101,103,104,105,114,115,116,117,120,122,124,127,132,133,134,135,136,138,143,145,152,157,158,168,174,179,180,184,185,186,194,200,201,205,211,212,230,231,233,240,245,255,256,257,259,265,274,275,277,279,303,306,310,314,320,322,324,325,326,329,342,362],reload_evennia:265,remain:[13,19,30,31,33,42,49,50,57,76,89,90,95,96,106,108,109,112,150,152,158,160,164,174,180,183,186,216,217,218,219,220,229,245,257,265,293,294,326,327,334],remaind:[21,33,183],remaining_repeat:[101,257],remap:[314,334],remedi:59,rememb:[0,1,4,5,11,12,13,21,22,28,29,31,33,38,40,42,47,48,50,53,55,57,60,61,62,68,76,79,85,87,89,90,92,94,95,96,110,111,113,114,118,122,125,127,130,136,138,156,158,180,193,245,255,320,339],remind:[0,4,49],remit:[42,156],remnisc:56,remot:[25,99,102,274,276,288],remov:[0,1,4,9,11,12,21,22,27,31,36,38,40,42,47,49,50,54,57,68,79,80,83,84,86,88,90,92,97,101,114,115,121,126,127,130,132,135,137,140,151,152,156,158,163,164,165,168,173,174,176,179,181,186,187,191,195,202,203,204,205,214,216,217,218,219,220,223,240,244,245,250,255,258,259,265,283,294,306,308,314,317,319,323,326,332,338,340,341,342],remove_backspac:341,remove_bel:341,remove_charact:115,remove_default:[31,152],remove_receiv:176,remove_send:176,removeth:314,renam:[9,20,42,57,80,135,158,164,245,316],render:[3,22,68,80,101,106,132,133,135,144,165,189,235,242,310,313,336,338,353,355,360],render_post:294,renew:[29,57],reorgan:[44,46],repair:[21,60],repeat:[0,41,60,61,74,87,92,101,109,110,115,117,120,135,138,143,145,178,183,203,214,254,257,265,270,289,314,322,326,329],repeatedli:[14,41,61,73,101,138,229,254,257,259,265,270,296],repeatlist:73,repetit:[61,115,203],replac:[5,6,9,22,23,25,29,30,31,33,36,40,42,49,50,56,68,73,79,86,88,93,94,95,99,103,104,108,110,113,115,118,133,134,135,136,137,143,150,151,152,153,156,164,165,169,178,180,182,185,186,187,191,194,196,201,202,204,205,223,226,231,232,240,245,247,249,250,277,280,293,294,304,314,319,324,325,326,328,334,341,342],replace_data:328,replace_timeslot:186,replace_whitespac:328,replacement_str:[42,164],replacement_templ:[42,164],replenish:[216,217,218,219,220],repli:[33,50,64,69,138,145,178,198,263,287,288,294,306,326],replic:[22,135],repo:[46,56,78,105,130,138],report:[22,24,26,33,37,42,60,62,69,72,74,83,90,92,93,96,101,102,103,114,115,126,130,135,137,158,191,194,205,232,245,265,270,277,280,281,288,289,293,304,306,319,322,326,342],report_to:322,repositori:[8,9,23,25,36,75,77,95,99,129,250],repositri:75,repr:[90,327,342],reprehenderit:51,repres:[0,2,9,20,21,22,25,31,33,39,45,48,55,60,61,63,68,76,85,88,94,95,104,106,112,115,118,124,125,126,132,135,143,149,173,175,181,187,189,191,196,197,199,203,205,209,211,214,218,230,231,232,245,250,259,262,276,277,293,294,304,305,306,310,314,315,319,321,322,326,328,338,342],represent:[2,11,28,39,57,63,72,76,85,86,87,104,112,118,125,175,191,194,205,249,254,274,293,294,317,323,329],reprocess:102,reproduc:[10,95,245],reput:208,reqhash:[315,342],reqiur:187,request:[3,8,26,37,39,42,50,62,68,79,89,102,106,118,122,130,132,133,134,138,143,144,145,156,172,178,194,242,245,249,252,265,267,274,277,279,284,285,287,294,310,313,317,326,347,348,349,353,360],request_finish:106,request_start:106,requestavatarid:285,requestfactori:310,requestor:[143,308],requir:[1,4,8,9,10,11,14,15,22,23,33,36,37,42,45,46,48,49,53,57,59,60,66,67,68,69,70,74,76,77,78,79,83,84,85,88,89,92,93,101,108,109,110,113,114,115,117,118,124,125,126,128,131,132,133,135,136,144,157,158,163,168,175,176,184,185,186,187,199,200,201,203,205,214,218,219,231,232,235,236,239,242,245,249,265,276,277,290,298,309,313,315,320,325,326,327,328,332,337,338,339,342,355,360],require_singl:249,requr:108,rerout:[137,155,159,277],rerun:[13,14,50,121],resart:257,research:[78,193],resembl:[25,54,128],resend:33,reserv:[1,10,33,94,95,110,249,309,315,334,342],reset:[0,7,12,15,17,23,27,29,31,33,43,49,59,65,72,80,101,103,104,110,113,115,120,122,124,125,138,143,145,152,158,168,173,183,194,205,226,230,240,256,257,265,269,275,285,303,314,317,320,328,329,334,340,342],reset_cach:[314,317],reset_callcount:[101,257],reset_gametim:[27,329],reset_serv:269,reset_tim:186,resid:[46,95,107,226,240],residu:[42,168,218],resist:[250,342],resiz:[57,137,325,328],resolut:[113,115],resolv:[26,29,41,59,69,89,94,103,115,130,202,216,217,218,219,220],resolve_attack:[216,217,218,219,220],resolve_combat:115,resort:[33,53,57,205,342],resourc:[9,23,26,28,40,46,47,52,55,89,93,94,95,102,107,114,123,126,134,135,138,219,255,263,294,310,321,340],respect:[0,6,23,33,42,47,57,79,103,104,122,124,156,158,165,178,198,202,205,212,223,240,245,304,305,316,317,320,322,328,339,342,355],respond:[0,45,50,60,82,83,106,109,116,117,125,292,296],respons:[7,10,16,17,37,48,50,59,62,63,69,84,87,89,90,117,119,120,143,145,174,196,231,233,237,245,263,265,267,274,297,306,316,336,338,342],response_add:[144,172,242],rest:[17,29,33,50,55,62,72,81,84,85,86,103,105,110,121,122,150,166,167,216,217,218,219,220,314,319,328],restart:[12,41,42,57,59,75,89,91,92,101,102,103,105,109,115,127,130,134,136,137,140,143,168,174,179,182,194,226,245,255,257,259,269,282,303,304,305,342],restartingwebsocketserverfactori:[145,276],restock:84,restor:[0,31,101,125,179,219,226,255,259],restrain:[42,158,239,325,342],restrict:[4,8,11,19,20,42,46,58,67,72,79,89,108,110,114,124,133,136,158,163,181,203,219,220,235,240,250,322,324,326,328,339],restructur:55,result1:202,result2:[50,202],result:[10,11,23,27,30,31,33,42,43,47,50,57,58,72,79,87,89,90,94,95,96,103,104,108,113,114,115,117,118,122,123,125,126,130,133,134,135,143,150,151,153,158,165,174,176,178,184,187,199,202,203,204,205,208,216,217,218,219,220,231,236,240,245,248,249,250,257,265,274,297,314,316,319,324,325,326,328,332,334,335,336,339,342,343],result_nam:202,resum:[29,33,101],resurrect:229,resync:[145,274,304],ret:33,ret_index:342,retain:[10,27,31,96,110,137,188,237,250,311,316,320,322,335,342],retract:178,retreat:220,retri:265,retriev:[0,33,42,68,73,85,95,96,107,111,118,122,138,139,143,147,149,152,158,168,173,175,186,193,236,239,244,249,263,270,271,277,283,292,314,317,323,332,337,339,342,360],retriv:[145,321],retroact:[57,124],retur:51,return_appear:[48,59,121,122,181,186,205,230,245],return_cmdset:165,return_detail:[186,231],return_key_and_categori:317,return_list:[1,314,317],return_map:110,return_minimap:110,return_obj:[1,11,86,314,317,337],return_par:250,return_prototyp:119,return_puppet:143,return_tagobj:317,return_tupl:[86,184,314],returnvalu:[10,33],reus:332,reusabl:121,rev342453534:342,reveal:181,revers:[29,31,33,38,110,113,120,125,133,147,176,233,237,244,254,310,314,316,317,319,333],reverseerror:[265,274],reversemanytoonedescriptor:[147,244,333],reverseproxyresourc:310,revert:[42,89,125,130,155,236],review:[0,31,37,40,63,69,127,134],revis:60,revisit:[36,326],reviu:50,revok:57,revolutionari:130,rework:[29,60,200],rfc1073:281,rfc858:287,rfc:[281,287],rfind:319,rgb:113,rgbmatch:319,rhel:8,rhostmush:[56,107,128],rhs:[25,57,166,167,169],rhs_split:[158,164,166,167],rhslist:[166,167],ricardo:342,riccardomurri:342,rich:[22,56,77,78,323],richard:78,rick:108,rid:[55,118,138],riddanc:12,ridden:[1,95],riddick:187,ride:120,right:[0,5,8,10,14,20,21,23,25,28,29,33,38,40,41,42,45,50,52,54,55,56,57,59,60,62,67,73,74,75,79,84,86,89,90,95,100,101,108,110,113,116,118,120,122,125,126,127,132,133,136,137,144,152,155,158,166,167,174,180,186,187,189,194,195,202,220,223,226,229,230,233,240,248,250,254,305,319,320,324,328,342,343],right_justifi:[108,248],rigid:56,rindex:319,ring:204,ripe:95,rise:[31,61],risen:61,risk:[42,56,62,89,122,137,157,168],rival:110,rjust:319,rm_attr:158,rnormal:113,rnote:[42,168],road:[31,45,110,120,151],roadmap:[44,138,362],roam:[121,152,229],roar:110,robot:[76,132],robust:[84,90,102],rock:[6,59,85,115,123,152],rocki:121,rod:152,role:[17,23,54,56,60,72,90,216],roleplai:[9,11,56,60,67,72,78,115,122,138,184,205,362],roll1:72,roll2:72,roll:[11,57,60,62,72,90,115,122,184,216,217,218,219,220,308],roll_challeng:72,roll_dic:184,roll_dmg:72,roll_hit:72,roll_init:[216,217,218,219,220],roll_result:184,roll_skil:72,roller:[72,115,184],rom:78,roof:[42,158],room1:126,room56:13,room:[9,12,13,14,15,20,21,22,27,31,33,41,42,43,44,45,54,55,56,58,61,62,63,72,76,79,84,90,95,101,103,107,108,110,111,115,116,117,118,119,120,121,122,123,124,126,128,131,132,139,140,149,150,151,152,156,158,164,169,177,179,181,184,186,193,196,199,205,211,212,213,216,217,218,219,220,228,229,230,232,233,239,245,254,269,297,320,340,358,362],room_count:118,room_dict:199,room_flag:55,room_lava:55,room_typeclass:[233,340,358],roombuildingmenu:[22,179],roomnam:[42,57,158],roomobj:118,roomref:120,root:[9,13,22,23,36,46,52,62,63,68,74,77,79,80,85,88,89,92,95,96,99,105,127,129,133,134,135,230,245,250,265,310,323,362],rose:[11,86,88,124],roster:[9,216,217,218,219,220],rosterentri:9,rot:126,rotat:335,rotatelength:335,roughli:[57,60,93,95,342],round:[17,204,220,328],rounder:204,rout:[5,20,48,55,120,136,143],router:89,routin:[205,300,339,342],row:[0,3,16,48,57,63,68,85,110,113,115,125,136,328,342],rpcharact:205,rpcommand:205,rpg:[57,59,72,123,184,220],rpi:78,rplanguag:[140,141,177,205],rpm:62,rpobject:205,rpsystem:[140,141,177,201,204],rpsystemcmdset:205,rred:319,rsa:[285,286],rspli8t:90,rsplit:[122,319],rss2chan:[97,163],rss:[7,42,54,78,127,138,140,145,163,171,260,270,273,283,362],rss_enabl:[97,163],rss_rate:145,rss_update_interv:[42,163],rss_url:[42,97,145,163],rssbot:145,rssbotfactori:284,rsschan:[42,163],rssfactori:284,rssreader:284,rstrip:[90,319],rsyslog:208,rtest2:113,rtext:84,rthe:22,rthi:113,rtype:310,rubbish:[42,155],rubi:63,rudimentari:229,ruin:[121,186,231],rule:[12,13,14,21,33,46,52,54,57,60,67,76,78,79,95,113,123,125,126,130,138,179,203,204,216,217,220,237,320,362],rulebook:115,rumour:121,run:[0,2,3,5,6,8,9,10,11,13,14,15,20,21,23,24,25,26,27,28,29,31,35,36,39,42,44,45,46,50,52,53,55,56,58,59,60,61,62,63,67,68,71,72,75,78,79,80,84,85,89,90,91,92,94,95,96,100,101,102,103,108,109,110,114,118,120,121,122,123,124,125,127,129,130,131,132,133,135,136,137,138,140,143,145,149,150,153,157,158,163,164,165,168,169,173,174,194,195,200,205,208,212,214,216,217,218,219,220,226,233,239,240,245,249,250,254,256,257,259,265,269,271,275,282,283,290,294,296,299,303,304,308,310,316,319,320,324,326,327,329,335,339,340,342,360,361,362],run_async:[10,342],run_connect_wizard:265,run_dummyrunn:265,run_exec:326,run_exec_then_goto:326,run_init_hook:303,run_initial_setup:303,run_menu:265,run_start_hook:[59,124,316],runexec:326,runexec_kwarg:326,runnabl:108,runner:[36,105,230,296],runsnak:92,runtest:[169,195,210,227,291,301,333,340,350,358],runtim:[12,27,33,61,153,179,232,329,342],runtimeerror:[72,143,145,191,194,197,203,204,249,257,283,314,326,334,342],runtimewarn:249,rusernam:50,rush:29,rusti:84,ruv:36,ryou:22,sad:[132,288],safe:[11,26,30,31,42,45,55,59,63,81,88,96,103,130,132,143,155,178,226,240,259,274,306,310,316,320,323,332,342],safer:[12,13],safest:[0,89,104,316],safeti:[2,42,55,88,89,122,124,138,158,178,244,320],sai:[0,5,6,10,12,14,17,20,22,25,26,27,29,31,33,38,39,40,43,45,50,55,56,57,59,60,61,62,63,68,72,76,77,79,88,89,90,92,95,108,113,115,116,117,118,122,124,125,126,127,128,130,136,137,138,139,152,164,178,180,184,187,196,197,204,205,214,226,231,245,326],said:[0,4,10,22,26,42,43,45,48,50,56,82,90,95,110,111,117,126,133,150,163,167,196,205,233,245,277,316],sake:[13,42,56,125,134,170,185,360],sale:84,same:[0,2,5,6,9,10,11,12,13,14,15,16,19,20,21,22,23,26,27,28,29,31,33,34,37,39,40,41,42,43,49,54,56,57,58,59,60,61,62,63,65,68,72,73,77,79,80,82,83,84,85,87,88,89,90,94,95,96,97,99,101,103,104,105,107,108,109,110,111,112,113,114,115,118,120,122,124,125,126,127,130,132,133,135,137,143,149,150,151,152,153,156,158,166,167,168,169,174,179,181,183,186,189,193,194,198,203,204,205,211,213,214,216,217,218,219,220,223,229,231,232,233,239,245,250,254,255,259,269,274,286,289,290,304,305,306,308,310,313,314,315,316,317,319,320,322,326,327,328,329,335,336,342,355,360],sampl:[8,36,55,99,214],san:189,sand:61,sandi:110,sane:[60,78,95,360],sanit:[355,360],saniti:[9,48,110,126,138,336],sarah:[42,128,164],sat:[21,139],satisfi:[107,166,314],satur:102,save:[0,1,9,15,21,22,24,27,29,33,34,36,40,41,42,45,47,49,50,53,55,63,83,85,86,88,94,96,99,101,102,104,106,108,109,111,114,115,122,124,130,132,137,143,144,155,158,168,172,174,175,176,179,194,240,242,244,245,247,249,252,255,257,258,259,263,270,283,297,298,303,310,313,314,316,323,324,332,336,337,338,342],save_a:[172,235,242,252,261],save_as_new:313,save_buff:324,save_data:336,save_for_next:[33,153],save_handl:336,save_kwarg:337,save_model:[144,172,242,252],save_nam:259,save_on_top:[172,235,242,252,261],save_prototyp:249,save_recip:202,savefunc:[49,324,337],savehandl:337,saver:323,saverdict:323,saverlist:323,saverset:323,saveyesnocmdset:324,saw:[10,45,68],say_text:117,saytext:205,scale:[23,56,60,72,105,113,204],scalewai:89,scan:[8,149,229,231],scarf:181,scatter:[218,320],scedul:329,scenario:57,scene:[11,21,54,58,60,72,73,96,108,111,113,115,121,125,203,231,254,259,332],schedul:[27,61,183,194,329],schema:[4,63,85,124,130,342],scheme:[28,33,42,62,85,113,158,168,319],scienc:[48,123],scientif:78,scissor:115,scm:9,scope:[29,54,63,73,123,133,137,203,322],score:[57,59,342],scraper:360,scratch:[39,45,56,57,60,62,122,123,127,129,135,138],scream:121,screen:[7,16,18,33,42,50,51,60,65,73,80,84,96,99,100,103,104,108,113,132,136,137,138,144,170,185,189,200,220,248,270,285,327,342,362],screenheight:[73,270],screenread:[73,270,293,294],screenshot:[54,132,138,362],screenwidth:[73,153,270],script:[6,11,13,14,20,27,36,44,46,54,55,56,58,60,61,62,70,79,83,84,85,88,89,92,102,103,104,105,106,107,108,109,111,114,115,116,118,119,121,124,129,131,132,136,137,138,140,141,143,145,157,158,168,176,177,178,183,186,190,191,197,202,203,204,212,216,217,218,219,220,222,223,225,226,231,233,239,244,245,249,250,265,298,303,320,321,322,329,337,339,340,342,358,362],script_path:[42,158],script_search:58,script_typeclass:[227,340,358],scriptattributeinlin:252,scriptbas:257,scriptclass:256,scriptdb:[118,124,140,252,254,312],scriptdb_db_attribut:252,scriptdb_db_tag:252,scriptdb_set:[147,244,314,317],scriptdbadmin:252,scriptdbmanag:[253,254],scripthandl:[140,141,251],scriptkei:[42,158],scriptmanag:253,scriptnam:321,scripttaginlin:252,scroll:[20,44,51,62,76,94,95,96,122,137,327],scrub:306,sdesc:[55,201,205],sdesc_regex:205,sdescerror:205,sdeschandl:205,sdk:62,sea:[110,121],seamless:205,seamlessli:[91,101],search:[0,2,9,13,21,22,30,33,40,41,42,47,49,54,57,58,59,63,67,69,72,75,86,88,93,95,101,103,108,115,122,123,124,126,130,133,135,138,139,140,141,143,149,151,153,158,165,168,175,178,193,198,202,205,216,217,218,219,220,231,233,236,237,239,245,248,249,256,271,314,315,316,317,318,319,322,324,342,361,362],search_:[27,58],search_account:[57,106,118,140,245,339],search_account_attribut:118,search_account_tag:[118,339],search_at_multimatch_input:245,search_at_result:[205,245],search_attribute_object:118,search_channel:[40,118,140,175,339],search_channel_tag:[118,339],search_field:[172,235,242,252,261,313],search_for_obj:158,search_help:[118,140,236],search_help_entri:339,search_helpentri:236,search_index_entri:[153,155,156,157,158,163,164,165,166,167,168,169,170,173,178,179,180,181,184,185,186,187,188,192,198,199,200,201,202,205,211,212,213,214,216,217,218,219,220,223,229,230,231,232,237,245,324,326,327],search_messag:[118,140,175,339],search_mod:205,search_object:[11,13,27,110,118,120,124,140,143,339],search_object_attribut:118,search_objects_with_prototyp:249,search_prototyp:249,search_script:[58,101,118,140,339],search_script_tag:[118,339],search_tag:[47,111,118,139,140,339],search_tag_account:111,search_tag_script:111,search_target:198,searchabl:193,searchdata:[143,205,245,339],searchstr:67,season:[60,186],sec:[10,29,61,73,183,277,329],secmsg:335,second:[0,10,11,14,16,21,22,25,27,29,31,33,38,40,42,50,61,62,68,79,81,84,85,87,89,90,94,101,102,103,108,109,113,114,115,118,119,120,122,125,126,131,133,143,145,150,158,183,193,194,197,199,205,212,216,217,218,219,220,222,226,229,239,245,250,257,259,265,270,279,284,297,308,319,322,326,329,335,342,343],secondari:[80,305],secondli:88,secreci:130,secret:[9,23,64,70,184,265],secret_kei:9,secret_set:[4,9,23,64,265],sect_insid:48,section:[1,4,9,11,15,18,21,22,23,25,26,29,31,33,35,36,38,39,47,50,57,59,61,62,67,68,74,76,79,85,88,89,92,94,95,99,110,112,118,123,124,126,132,136,137,138,186,204,250,319,320,343],sector:48,sector_typ:48,secur:[7,11,13,22,26,40,42,56,62,79,84,89,95,107,108,113,122,132,133,138,140,141,157,168,174,177,237,245,285,316,335,355,362],secure_attr:79,sed:36,sedcond:258,see:[0,1,2,3,4,5,8,9,10,11,12,13,14,19,20,21,22,23,25,26,27,28,29,30,31,32,33,34,35,37,38,39,40,41,42,43,45,47,48,49,50,51,52,54,55,56,57,58,59,60,61,62,63,64,67,69,70,71,73,74,75,79,80,81,85,86,87,88,89,90,92,94,95,97,99,100,101,102,103,104,105,107,108,109,110,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,129,130,131,132,133,134,135,136,137,138,143,153,155,157,158,164,165,166,167,169,174,176,177,178,179,185,189,191,198,202,203,204,205,209,212,213,214,216,217,218,219,220,222,223,225,229,232,233,239,244,245,258,263,265,267,268,276,277,278,279,281,285,286,288,290,292,293,294,296,297,305,306,310,314,319,322,323,324,325,326,328,334,337,338,342,349,355,360],seek:[121,240,335],seem:[4,22,24,31,38,40,55,60,62,74,93,108,109,118,120,121,122,136,137,314,320],seen:[0,22,29,31,34,39,45,48,50,56,57,68,80,90,94,95,101,104,110,118,119,120,125,126,130,179,249,277,328],sefsefiwwj3:9,segment:[120,310],seldomli:[153,169],select:[2,20,22,27,31,42,50,53,62,68,76,79,84,85,103,104,105,110,118,119,122,130,132,136,137,139,150,151,156,165,214,217,316,324,326],selet:326,self:[0,1,2,5,6,9,10,11,13,20,21,22,25,27,28,29,30,31,33,38,39,40,41,42,43,48,49,50,55,56,57,58,59,61,62,70,71,72,75,76,79,80,81,84,85,86,88,94,95,101,108,114,115,116,117,118,119,120,122,124,126,128,131,133,143,145,147,149,151,152,153,155,158,159,163,166,167,168,169,173,174,176,178,179,180,181,184,186,187,191,196,198,199,201,202,205,214,216,217,218,219,220,222,223,226,229,230,231,232,233,239,245,257,258,263,265,267,268,272,276,277,283,285,286,288,290,292,293,294,304,305,306,314,316,317,319,324,326,327,332,334,336,337,338,342,349],self_pid:342,selfaccount:57,sell:[77,84,178],semi:[92,131,137,204],semicolon:[79,240,322],send:[2,12,22,25,27,29,33,34,40,42,50,51,57,58,60,63,69,70,72,73,75,79,80,82,88,90,92,94,95,101,102,104,106,109,112,113,114,115,117,119,122,125,132,136,137,138,139,143,145,149,152,153,156,163,167,173,174,175,176,178,187,188,198,205,209,220,222,229,239,245,258,259,262,265,267,268,270,274,275,276,277,278,280,283,284,285,287,288,289,291,293,294,296,304,305,306,307,319,322,323,326,328,342],send_:[39,82,283],send_adminportal2serv:275,send_adminserver2port:262,send_authent:276,send_channel:[276,277],send_default:[39,82,276,277,283,285,288,293,294],send_defeated_to:229,send_emot:205,send_functioncal:274,send_game_detail:267,send_heartbeat:276,send_instruct:265,send_mail:198,send_msgportal2serv:275,send_msgserver2port:262,send_p:277,send_privmsg:277,send_prompt:[285,288,293,294],send_random_messag:222,send_reconnect:277,send_request_nicklist:277,send_status2launch:275,send_subscrib:276,send_text:[39,82,285,288,293,294],send_unsubscrib:276,sender:[34,40,42,106,143,145,163,174,175,176,178,205,245,276,307,332,339],sender_account_set:147,sender_extern:176,sender_object:307,sender_object_set:244,sender_script_set:254,sender_str:174,sendernam:[42,163],senderobj:322,sendlin:[285,288,293],sendmessag:[39,187],sens:[1,10,22,31,37,55,57,79,85,88,95,101,120,137,151,223,322,323],sensibl:[89,269],sensit:[11,50,57,79,175,179,183,186,194,209,210,236,315,329,339],sensivit:203,sent:[25,34,50,57,68,73,82,87,90,104,106,112,113,118,136,137,143,145,149,165,169,174,175,176,179,185,187,194,196,198,209,227,232,245,262,265,267,270,274,275,276,277,285,289,293,304,306,314,326,334,339],sentenc:[45,90,197,204,205],sep:[319,342],sep_kei:[22,179],separ:[8,11,13,14,20,23,29,31,33,37,39,42,45,47,56,57,60,61,63,70,71,74,76,79,83,84,85,86,88,90,91,92,94,95,97,100,102,104,105,111,113,114,118,120,122,125,128,130,132,135,136,137,139,150,152,153,158,164,165,166,167,168,174,179,194,197,198,204,205,214,216,217,218,219,220,223,231,233,236,240,244,245,255,259,284,289,294,306,319,320,322,325,334,339,342],separatli:29,seq:86,sequenc:[10,13,14,15,33,63,79,80,86,88,112,125,153,157,183,200,205,240,263,269,319,320,326,328,341,342],seri:[50,60,78,113,130,135,137,225,328],serial:[11,82,137,248,259,283,323,336,338],serializ:294,seriou:[38,109],serious:62,serv:[44,48,54,63,82,100,102,103,110,134,151,218,294,310,320,322,353],server:[0,2,4,9,10,11,12,13,15,19,21,25,26,27,28,29,31,33,34,35,36,37,39,40,44,46,50,53,54,55,56,57,58,59,61,62,63,64,65,66,68,69,70,71,72,73,74,77,78,79,80,82,83,85,87,88,90,92,93,94,95,96,99,100,101,102,105,106,108,109,110,112,113,114,115,117,120,121,123,124,126,127,130,132,133,134,135,136,137,138,140,141,143,145,152,156,158,163,168,170,174,177,179,182,185,186,194,200,201,205,206,207,208,211,212,226,229,230,233,245,254,255,256,257,259,311,316,320,322,323,326,329,332,335,342,344,361,362],server_connect:283,server_disconnect:283,server_disconnect_al:283,server_epoch:[27,329],server_l:275,server_logged_in:283,server_nam:103,server_pid:[275,342],server_receive_adminportal2serv:262,server_receive_msgportal2serv:262,server_receive_statu:262,server_reload:[255,259],server_run:265,server_runn:303,server_servic:342,server_services_plugin:[39,103],server_services_plugin_modul:39,server_session_class:104,server_session_sync:283,server_st:265,server_twistd_cmd:275,server_twisted_cmd:275,serverconf:[156,259],serverconfig:[258,259,271,272],serverconfigadmin:261,serverconfigmanag:[271,272],serverfactori:[275,285,288],serverload:[42,168],serverlogobserv:335,servermsg:335,servernam:[4,8,9,53,73,89,103],serverprocess:[42,168],serversess:[39,104,113,140,141,209,240,260,283,306,314],serversessionhandl:[39,104,306],serverset:[42,79,163,239],servic:[12,23,39,44,70,89,93,99,102,103,109,130,132,140,168,260,262,265,266,274,275,282,303,310,342],sessdata:[305,306],sessid:[2,33,104,122,244,245,262,274,275,283,306],session:[2,12,15,24,31,33,39,44,46,50,56,73,80,81,83,87,88,90,95,99,106,113,122,126,137,138,140,141,143,145,147,149,150,151,153,155,156,159,161,165,166,170,185,187,188,196,208,209,210,244,245,247,248,249,255,260,262,270,274,275,276,277,283,284,285,288,293,294,303,304,306,308,324,326,327,334,342,343,362],session_data:306,session_from_account:306,session_from_sessid:306,session_handl:[104,140],session_portal_partial_sync:306,session_portal_sync:306,sessioncmdset:[31,42,161],sessionhandl:[39,82,140,141,143,245,260,270,276,277,283,284,304,305],sessionid:283,sessionobject:334,sessions_from_account:306,sessions_from_charact:306,sessions_from_csessid:[283,306],sessions_from_puppet:306,sesslen:245,set:[0,2,3,6,7,8,10,11,12,13,14,15,16,17,19,20,21,22,23,24,25,26,27,29,30,32,33,34,35,36,37,38,39,40,41,43,44,45,46,49,51,54,55,56,57,58,59,60,62,63,65,66,67,68,70,73,74,75,81,82,84,85,86,88,90,92,94,95,96,99,101,104,106,107,108,109,110,111,112,113,115,116,118,119,120,123,124,125,127,128,129,132,133,134,135,136,137,138,140,142,143,145,147,149,150,151,152,153,155,156,158,159,160,161,162,163,165,166,167,169,171,173,179,180,181,182,183,184,185,186,187,188,192,194,196,197,200,201,202,204,205,208,211,212,214,216,217,218,219,220,223,225,226,227,229,230,231,232,233,235,239,240,244,245,248,249,250,256,257,259,262,264,265,269,270,271,272,275,276,278,279,281,282,285,287,288,290,291,296,297,299,301,303,304,305,306,308,310,311,313,314,315,316,317,319,320,321,322,323,324,325,326,327,328,329,332,333,334,335,336,337,338,339,340,341,342,343,348,355,358,362],set_active_coordin:233,set_al:229,set_alias:153,set_attr:158,set_cach:314,set_class_from_typeclass:316,set_dead:229,set_descript:50,set_detail:[186,231],set_game_name_and_slogan:348,set_gamedir:265,set_kei:153,set_nam:50,set_pane_typ:136,set_password:143,set_task:194,set_trac:[41,140],set_webclient_set:348,setcolor:80,setdesc:[56,164,211],setgend:188,sethelp:[20,67,165],sethom:158,setlock:211,setnam:39,setobjalia:[42,158],setperm:[42,156],setspe:212,sett:97,settabl:[73,85,288],setter:38,settestattr:49,settingnam:79,settings_chang:106,settings_default:[4,5,34,46,103,126,140,141,342],settings_ful:103,settings_mixin:[140,260,295],settl:[110,115],setup:[5,15,18,26,39,46,60,62,70,84,92,95,99,115,119,126,128,130,137,138,143,155,163,169,183,195,223,227,231,245,257,269,282,291,296,300,301,303,310,314,316,332,333,340,358,362],setup_str:300,setuptool:[62,74],sever:[0,11,14,19,22,29,31,33,36,40,41,42,47,49,51,54,55,56,58,61,68,78,79,101,103,108,112,115,118,124,136,157,158,166,167,168,186,193,194,229,231,245,291,292,317,322],sex:188,shall:[125,133],shaman:[56,108],shape:[20,22,38,57,60,110,233,328],sharabl:108,share:[9,25,31,36,37,41,45,56,58,62,63,64,79,85,89,101,102,104,111,115,118,124,132,134,144,193,194,250,259,296,314,315,317,328,342,349],sharedloginmiddlewar:349,sharedmemorymanag:[315,331],sharedmemorymodel:[176,237,314,316,332,333],sharedmemorymodelbas:[147,176,237,244,254,314,316,332,333],sharedmemorystest:333,shaw:[76,78],she:[0,22,33,55,90,125,179,188,204],sheer:[42,158],sheet:[23,50,132,133,136,325],sheet_lock:57,shell:[7,23,25,26,36,52,56,57,58,59,62,74,85,86,89,99,102,107,109,124,127,285],shield:[29,76,85],shift:[14,15,27,107,194,230,236,342],shiftroot:230,shine:[21,231],shini:342,ship:[54,63,74,110],shire:61,shirt:181,shoe:181,shoot:[21,219,220,325],shop:[50,56,107,123,138,362],shop_exit:84,shopcmdset:84,shopnam:84,shopper:84,short_descript:53,shortcom:84,shortcut:[0,3,22,23,27,29,31,33,42,46,52,58,68,90,95,99,106,115,118,124,128,132,133,140,145,152,153,158,179,191,233,240,245,336,342],shorten:[41,45,124,250],shorter:[39,60,103,107,116,117,124,131,174,204,315,322,335],shortest:[38,205],shorthand:[42,88,125,158],shortli:[0,22,76],shot:219,should:[0,1,2,3,4,5,6,8,9,10,11,12,13,14,15,16,19,20,22,23,24,25,26,27,29,31,33,34,37,38,39,40,41,42,45,46,47,50,52,54,56,57,58,59,60,61,62,63,64,65,67,68,71,72,73,74,75,76,79,80,81,82,84,85,87,88,89,90,92,93,94,95,96,97,99,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,118,120,121,122,123,124,125,126,127,128,129,130,132,133,134,135,136,137,138,139,143,145,147,149,151,152,153,155,157,158,159,162,165,166,168,169,173,174,176,179,181,183,186,191,194,196,197,198,199,201,202,203,204,205,208,216,217,218,219,220,223,226,229,231,232,239,240,244,245,247,248,249,250,254,256,257,258,259,263,264,265,269,272,276,282,285,288,289,291,293,294,297,303,304,305,306,309,311,313,314,316,317,319,320,322,323,324,326,327,328,329,334,335,336,337,338,340,342,343,355,358,360],should_join:174,should_leav:174,should_list_cmd:165,shoulddrop:[220,245],shoulder:[57,181],shouldget:[220,245],shouldgiv:[220,245],shouldmov:[196,216,217,218,219,220,245],shouldn:[0,13,21,22,29,40,47,57,92,125,165,179,194,197,219,296],shouldrot:335,shout:29,shove:21,show:[0,12,13,14,20,22,24,26,27,30,33,35,37,38,39,41,42,45,47,48,50,51,52,53,54,56,57,59,60,61,62,63,67,68,69,70,72,80,81,84,85,89,90,94,95,96,97,100,101,102,103,104,105,109,110,113,115,116,117,118,119,121,123,125,126,127,128,130,132,133,135,136,137,138,155,156,158,163,164,166,168,170,178,180,181,184,185,186,187,189,201,214,219,220,225,231,232,233,245,247,249,250,263,265,274,324,326,335,336,337,342,355],show_foot:327,show_map:48,show_non_edit:249,show_non_us:249,show_valu:189,show_version_info:265,show_warn:265,showcas:[31,110,199],shown:[0,4,9,22,25,29,35,40,42,48,50,53,56,61,67,108,113,120,132,137,156,163,165,167,179,181,203,205,230,245,265,326,327],showtim:61,shrink:328,shrug:45,shrunk:100,shuffl:27,shun:[26,89,107],shut:[0,4,29,42,92,99,101,103,136,143,168,245,257,259,265,267,274,275,282,283,303,306],shutdown:[12,19,31,57,92,101,104,109,143,145,168,259,265,274,275,282,303,304,316,322,326],shy:[26,60,128],sibl:[10,56,95,101],sid:[42,156],side:[0,1,11,24,36,42,47,48,57,72,73,82,90,104,111,118,125,126,132,136,137,143,145,147,164,166,167,176,178,184,211,237,244,254,262,274,275,283,286,289,290,293,304,305,306,314,316,317,319,328,333],sidestep:19,sidewai:328,sigint:265,sign:[0,14,20,45,82,89,90,105,114,122,131,186,245,259,314,319,343],signal:[44,92,109,138,140,141,216,217,218,219,220,260,265,288,294,296,332,362],signal_acccount_post_first_login:106,signal_account_:106,signal_account_post_connect:106,signal_account_post_cr:106,signal_account_post_last_logout:106,signal_account_post_login:106,signal_account_post_login_fail:106,signal_account_post_logout:106,signal_account_post_renam:106,signal_channel_post_cr:106,signal_helpentry_post_cr:106,signal_object_:106,signal_object_post_cr:106,signal_object_post_puppet:106,signal_object_post_unpuppet:106,signal_script_post_cr:106,signal_typed_object_post_renam:106,signatur:[33,72,153,176,191,258,263,265,267,268,276,285,286,288,290,293,294,314,319,326,334,337,338,349],signed_integ:343,signedinteg:336,signedon:277,signifi:[14,239,314],signific:96,significantli:49,signup:4,silenc:267,silenced_system_check:126,silent:[10,42,61,117,156,269,277],silli:[59,88,95,108],silvren:[54,89],similar:[0,11,13,20,21,22,25,33,40,47,50,54,57,63,67,72,76,85,88,89,95,101,105,120,124,128,135,136,139,143,153,155,169,179,187,196,204,216,217,218,219,220,233,237,245,306,317,322,326,342,360],similarli:[57,61,89,111,217,232,313],simpl:[0,2,4,5,6,9,10,13,14,15,17,25,26,28,30,31,33,35,38,39,40,42,45,48,49,54,55,56,57,58,59,60,66,68,69,72,73,75,76,80,84,85,87,88,89,90,94,95,97,99,102,104,107,108,110,111,115,116,117,118,119,121,122,123,125,131,132,134,138,158,173,178,179,180,185,186,187,188,193,196,198,202,203,205,211,212,213,214,216,217,218,219,220,222,223,229,230,231,233,234,244,245,248,250,257,275,284,286,320,321,352,353,355,362],simpledoor:[140,141,177],simplemu:24,simpler:[10,15,42,55,157,158,323,360],simpleresponsereceiv:267,simplest:[6,29,57,72,89,115,152,320,343],simpli:[5,8,11,12,13,17,20,21,22,23,25,29,31,37,38,39,40,46,48,50,52,54,57,58,60,62,70,71,72,79,80,82,84,95,101,102,103,108,111,113,117,120,122,124,126,127,130,131,137,139,143,151,152,153,169,170,173,174,179,185,186,195,196,199,205,212,214,216,217,218,219,220,223,230,237,245,283,314,316,320,321,325,327,342],simplic:[22,38,42,54,125,170,185,230],simplif:[44,115],simplifi:[10,68,93,99,110,115,117,191],simplist:[115,122,131,136,204,213],simul:[33,72,92,212],simultan:[57,87,115,342],sinc:[0,1,3,4,5,6,9,10,11,13,14,19,21,22,23,25,26,27,28,29,31,33,34,35,38,39,40,41,42,43,46,47,48,49,50,53,54,55,56,57,58,59,60,61,63,68,73,75,79,82,83,84,85,87,88,89,90,95,96,99,101,103,109,110,113,114,115,117,118,120,121,122,124,125,126,130,132,133,134,136,137,143,145,147,151,152,153,158,166,167,168,174,175,178,179,180,183,186,198,205,214,216,217,218,219,220,226,230,231,239,245,250,255,259,265,267,270,282,287,289,297,303,304,306,313,314,315,316,320,321,322,324,326,329,332,335,338,339,340,342,355],singl:[0,5,10,14,16,22,23,24,31,33,37,42,43,47,50,54,56,57,58,60,63,66,72,76,82,86,87,89,94,95,104,107,110,111,113,118,121,124,126,127,128,138,143,149,156,158,164,175,176,179,203,208,214,216,217,218,219,220,231,232,233,245,249,250,259,297,304,306,314,315,317,319,320,325,326,327,328,334,339,342,355],single_type_count:181,singleton:[83,104,114,173,255,258,321],singular:[57,60,245],sink:26,sint:51,sir:45,sit:[11,14,29,33,46,54,62,79,82,89,94,95,118,120,122,124,166,197,198,205,223,230,231,240,256,259,278,322,337,340],sitabl:124,sitat:231,site:[8,16,17,23,37,68,70,78,79,89,96,97,99,100,102,110,132,133,144,310,360],site_nam:58,situ:[11,316,323],situat:[0,6,11,22,33,37,41,42,45,61,75,82,85,101,104,118,124,130,152,153,158,193,332],six:[72,90,184,214],sixti:61,size:[16,24,41,48,57,96,100,107,110,136,137,140,233,267,281,319,325,327,328,332,335,342],size_limit:342,skeleton:[122,136],sketch:[115,137],skill:[28,29,30,54,59,60,69,72,78,109,115,120,126,132,133,204,205,325],skill_combat:72,skillnam:72,skin:108,skip:[31,33,40,42,48,60,61,74,87,99,105,108,114,130,143,157,158,199,245,314,323],skipkei:294,skippabl:128,skull:108,sky:[101,131],slack:78,slam:187,slash:[20,40,54,72,115,121,230],slate:110,sleep:[10,29,33,72],slew:[60,72,74,320],slice:[118,155,319,327],slice_bright_bg:155,slice_bright_fg:155,slice_dark_bg:155,slice_dark_fg:155,slight:[8,90,183,194],slightli:[41,61,62,78,115,122,144,176,186,217,232,360],slightly_smiling_fac:137,slip:341,slogan:9,slot:[57,133,186,187,217,219,250,342],slow:[27,115,175,212,229,233,278,284,319,339,342],slow_exit:[140,141,177],slower:[61,76,89,92],slowexit:212,slowli:78,slug:[174,237,316,360],slugifi:360,small:[4,14,15,16,25,30,33,37,54,56,57,60,62,68,69,78,80,84,89,90,92,95,96,97,107,110,121,122,123,126,127,138,184,219,223,233,288,324,325,328,342],smaller:[13,14,16,100,136,328],smallest:[57,61,79,89,183,325,342],smallshield:85,smart:[40,76,90,233],smarter:108,smash:[60,223,226],smell:60,smelli:108,smile:[33,42,164],smith:325,smithi:29,smoothi:202,smoothli:133,smush:47,snake:135,snap:81,snapshot:130,snazzi:77,sneak:240,snippet:[10,13,21,31,42,54,63,79,108,113,138,168,274,289,341,342],snoop:102,snuff:26,social:[54,70],socializechat:297,soft:[4,63,138,204,362],softcod:[128,138],softli:77,softwar:[36,62,89,130],solar:61,soldier:84,sole:[56,68,145],solid:[48,54,113],solo:[20,62,123],solut:[0,9,14,25,27,29,38,55,68,72,84,89,90,102,110,114,117,120,121,124,126,137,167,240],solv:[21,27,43,48,60,62,76,96,110,202,230],some:[0,3,4,5,6,8,9,11,12,13,14,15,16,20,21,22,23,24,25,26,27,28,29,31,33,36,37,39,41,42,44,45,47,48,49,50,54,56,57,59,60,61,62,63,68,69,71,72,73,74,76,77,78,79,81,82,84,85,86,88,89,90,93,94,95,96,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,120,121,122,123,124,125,126,127,130,132,133,135,136,137,138,143,152,153,158,160,164,167,168,174,175,178,179,180,185,194,196,197,203,204,211,214,217,218,219,220,225,226,230,231,232,233,240,245,249,250,254,267,269,274,277,303,314,316,319,320,325,326,329,332,335,336,342,355,360],some_long_text_output:327,somebodi:[0,137],somehow:[33,39,72,79,86,89,112,139,181,324],someon:[0,1,29,33,42,45,47,48,57,59,79,84,89,95,102,106,114,116,117,118,137,143,164,181,225,229,230,245],somepassword:23,someplac:229,someth:[0,3,4,6,8,9,10,11,12,14,20,22,23,25,27,29,30,33,38,39,40,42,43,45,48,50,51,55,56,57,58,59,60,61,63,64,67,68,69,70,71,72,74,79,81,82,84,85,88,89,90,92,94,95,101,103,106,107,108,110,113,114,118,122,124,126,127,128,132,133,134,136,137,138,143,151,153,158,164,165,166,178,179,181,188,196,197,199,203,205,212,216,217,218,219,220,230,231,232,233,240,245,304,316,320,326,327,336,342,360],sometim:[6,22,27,33,39,41,49,50,59,61,63,79,85,90,92,94,95,101,108,109,118,135,137,165],somewhat:[4,22,40,56,126,137,179],somewher:[0,12,37,42,72,79,89,108,120,124,130,158,174,237,316,342],soon:[41,60,68,71,95,99,104,126,225,294,342],sophist:[10,27,54,107,115],sorl:4,sorri:[79,240],sort:[3,6,11,31,38,48,58,60,63,68,72,82,83,89,104,109,111,115,116,134,139,178,189,216,217,218,219,220,231,245,250,254,314,315,316,342,355,360],sort_kei:294,sought:[143,150,174,237,245,314,316],soul:110,sound:[22,29,37,57,60,79,81,82,101,103,110,114,130,137,204,289],sourc:[0,4,9,10,12,15,16,17,20,21,22,23,27,31,36,37,45,46,52,54,56,59,62,63,67,71,74,75,78,87,88,93,95,96,107,121,126,127,129,130,133,138,140,143,144,145,146,147,149,150,151,152,153,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,172,173,174,175,176,178,179,180,181,183,184,185,186,187,188,189,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,208,209,210,211,212,213,214,216,217,218,219,220,222,223,225,226,227,229,230,231,232,233,235,236,237,239,240,242,243,244,245,247,248,249,250,252,253,254,255,256,257,258,259,261,262,263,264,265,267,268,269,270,271,272,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,296,297,298,300,301,302,303,304,305,306,308,309,310,313,314,315,316,317,319,320,321,322,323,324,325,326,327,328,329,331,332,333,334,335,336,337,338,339,340,341,342,343,347,348,349,350,353,355,357,358,360,361],source_loc:[25,76,95,116,196,230,231,233,245],source_object:[170,173,185],sourceforg:[278,279,289,292],sourceurl:277,south:[0,22,42,43,48,110,120,158,199,297],south_north:110,southeast:158,southern:110,southwest:[20,42,158],space:[9,20,21,22,25,33,35,40,42,45,47,48,56,67,79,86,90,94,101,108,110,113,115,117,125,128,136,137,150,153,158,164,166,167,169,170,173,199,201,204,205,220,230,245,248,309,316,319,320,325,328,334,341,342],spaceship:120,spacestart:341,spaghetti:[13,326],spam:[12,28,102,115,137,308],spammi:[12,115],span:[16,17,107],spanish:75,spare:[216,217,218,219,220],spars:308,spatial:110,spawen:202,spawn:[46,54,92,119,121,136,137,140,156,158,202,217,218,247,248,249,250],spawner:[18,44,88,119,138,140,141,158,218,219,246,362],spd:133,speak:[0,15,19,40,42,45,59,93,95,112,116,117,125,132,164,196,205,239,245],speaker:[45,204,205],spear:108,special:[2,10,11,13,14,15,19,20,25,26,27,30,31,33,35,37,40,41,50,57,59,60,63,68,75,76,79,80,82,84,85,87,88,94,101,102,103,106,110,111,112,113,115,118,121,122,124,126,130,133,136,145,147,149,152,164,167,186,188,205,214,218,219,230,231,233,240,242,245,269,270,293,314,316,320,326,341],specif:[0,2,4,9,11,12,22,23,24,25,26,27,31,33,36,37,38,39,40,41,42,45,46,49,50,54,55,58,60,61,63,66,68,76,77,78,79,81,86,87,88,89,90,94,95,99,104,106,109,110,111,114,115,118,120,121,122,123,124,125,126,130,131,132,133,134,136,137,143,144,149,156,158,168,174,176,177,178,179,191,192,193,194,196,198,203,205,236,239,245,255,265,270,277,293,294,304,314,316,319,320,324,326,327,328,342,360],specifi:[3,11,12,16,19,21,22,27,29,31,38,42,45,48,50,53,57,61,62,67,82,83,85,87,89,90,97,99,101,102,104,108,110,111,113,114,118,122,126,133,135,149,150,158,165,174,179,181,182,184,186,187,191,193,194,198,202,203,205,214,217,218,219,233,239,240,245,248,249,250,255,276,302,314,317,319,320,322,325,326,327,329,336,337,338,342,355,360],spectacular:41,speech:[196,245],speechlock:239,speed:[11,46,61,81,85,86,92,115,133,212,250,283,317,339],spell:[15,19,28,56,59,108,111,214,219,250],spell_attack:219,spell_conjur:219,spell_heal:219,spell_nam:219,spellnam:219,spend:[38,88,90,118,216,217,218,219,220],spend_act:[216,217,218,219,220],spend_item_us:218,spent:219,spin:[61,89],spit:[3,59,115],splashscreen:185,split:[9,25,31,33,40,57,90,103,104,110,117,120,122,130,135,136,137,150,166,167,183,230,233,247,291,306,319,320,329],split_2:137,split_nested_attr:158,splithandl:137,spoken:[0,45,71,196,204,205,245],spoof:313,spool:62,sport:86,spot:[56,63,143],spread:[69,72,108],spring:[81,186],sprint:212,sprofil:265,spunki:76,spyrit:24,sql:[7,36,55,56,63,85,124,138,300,362],sqlite3:[54,63,85,122,126,127,130,342],sqlite3_prep:303,sqlite:[23,85,127,303],sqllite:36,sqrt:38,squar:[38,128],squeez:85,src:[10,17,20,58,74,79,88,99,101,132,136,138,209],srcobj:[153,166],srun:269,srv:36,ssessionhandl:82,ssh:[9,24,25,39,54,63,82,89,93,104,109,140,260,273,304,305],ssh_interfac:89,ssh_port:89,sshd:102,sshfactori:285,sshprotocol:285,sshserverfactori:285,sshuserauthserv:285,ssl:[7,8,42,54,63,66,82,87,93,140,145,163,260,273,277,290,305],ssl_context:[286,290],ssl_interfac:89,ssl_port:89,sslcertificatefil:8,sslcertificatekeyfil:8,sslciphersuit:8,sslengin:8,ssllab:8,sslprotocol:[8,286,290],ssltest:8,sslv3:66,sstem:68,sta:325,stab:[29,121,230],stabil:[60,169,204],stabl:[37,39,55,59,99],stabli:[96,259],stack:[13,31,60,120,136,144,152,226,249,306,326,334],stackedinlin:144,stackexchang:126,stackful:334,stacktrac:[249,334],staf:107,staff:[9,19,25,56,60,67,72,79,107,108,110,122,132,151,250,320],staff_onli:237,staffer:9,staffernam:9,stage:[2,36,55,60,76,110,122,130,132,144,172,242],stagger:277,stai:[1,31,48,50,62,89,90,120,124,125,137,233],stale:[99,124],stalker:360,stamina:[30,189,219],stamp:[27,42,95,104,124,136,143,147,156,168,244,254,297,302,316],stanc:[115,205],stand:[13,17,20,21,22,25,29,42,48,55,60,62,71,72,79,85,89,94,95,110,115,120,121,122,126,130,132,137,164,178,196,205,229,245,254,259,296,317,320,322,328],standalon:102,standard:[0,1,6,8,9,15,21,27,30,40,42,49,56,57,58,62,63,78,82,87,90,94,102,112,113,115,119,125,130,135,138,140,143,155,184,185,205,232,239,245,285,287,292,309,314,319,328,329,334,343,362],stanza:275,star:[42,158],stare:130,start:[0,1,2,3,4,5,7,12,13,14,15,16,18,20,21,23,25,26,27,29,31,33,34,38,39,40,41,42,43,44,46,47,48,49,50,52,53,54,56,58,59,60,61,63,64,65,68,69,71,72,73,74,75,76,78,79,82,83,85,86,89,90,92,94,95,96,97,100,101,102,103,104,105,106,107,108,110,113,115,118,119,120,122,123,124,126,127,129,130,131,132,135,136,137,138,143,145,150,151,157,158,163,164,166,167,168,169,173,178,179,184,186,187,188,189,194,196,199,200,204,205,214,216,217,218,219,220,225,226,229,231,233,245,247,248,254,256,257,258,259,262,265,267,269,270,275,276,277,278,282,283,284,289,290,296,302,303,306,310,315,319,320,321,322,324,326,327,328,329,334,335,342,361,362],start_all_dummy_cli:296,start_attack:229,start_bot_sess:306,start_delai:[101,115,119,120,226,254,257,259,322],start_driv:120,start_evennia:265,start_hunt:229,start_idl:229,start_lines1:265,start_lines2:265,start_loc_on_grid:48,start_olc:247,start_only_serv:265,start_ov:50,start_patrol:229,start_plugin_servic:39,start_portal_interact:265,start_serv:275,start_server_interact:265,start_sunrise_ev:61,start_text:214,start_turn:[216,217,218,219,220],startapp:[68,85,132,133],startclr:[113,334],startedconnect:[262,276,277],starter:[9,135],starthour:25,startnod:[50,84,187,247,326],startnode_input:[50,187,247,326],startproduc:267,startservic:[268,310],startswith:[40,42,83,158,319],starttupl:285,startup:[11,35,39,59,61,89,101,103,135,245,254,294,303,335],stat:[17,42,59,60,70,84,115,122,132,133,135,138,168,178,216,217,218,219,220,362],state:[11,13,14,31,33,41,42,49,50,54,55,63,79,94,99,101,104,109,113,115,120,121,125,130,136,137,143,149,151,155,162,170,173,200,211,216,217,218,219,220,223,226,229,231,250,254,256,257,259,265,285,314,324,326],state_unlog:162,statefultelnetprotocol:[288,296],statement:[10,13,14,27,31,41,48,50,54,57,58,85,93,94,95,117,118,123,245,320,341],static_overrid:[134,135,136],static_root:135,statict:[42,168],station:120,stationari:229,statist:[3,12,42,103,104,119,123,134,168,189,298,315,332],statu:[20,29,50,57,60,87,89,103,104,114,130,174,178,218,219,220,229,259,263,265,274,275,276,279,293,362],status:60,status_cod:267,stderr:232,stdin_open:99,stdout:[58,99,232,265,335],steadi:63,steal:[42,84,165],steer:120,step1:29,step2:29,step3:29,step:[0,4,7,8,13,14,21,23,29,31,33,36,38,40,42,44,45,49,57,62,68,72,76,81,84,85,90,96,99,101,105,107,120,121,122,125,126,127,133,137,138,157,179,231,257,259,269,281,292,296,297,306,316,320,323,324,326,327,361,362],stick:[15,33,42,50,62,112,156],still:[0,1,4,6,9,11,13,14,15,19,20,22,25,26,29,31,33,37,38,39,40,42,48,54,56,57,59,61,62,63,76,77,78,82,90,93,94,95,101,102,104,105,106,107,109,113,120,122,124,125,127,130,133,137,151,158,165,185,196,214,216,217,218,219,220,231,233,245,249,256,297,326,328,329,338,342],sting:110,stock:[34,54,84,100,209,355],stolen:[102,319],stone:[20,33,59],stoni:59,stop:[7,9,10,12,14,20,25,27,29,34,40,41,42,48,50,56,57,61,62,73,76,79,81,88,89,92,94,95,99,101,103,104,105,107,114,115,119,120,122,127,136,138,155,158,163,168,178,183,193,195,196,205,211,212,217,220,225,226,245,256,257,259,264,265,267,270,282,283,303,304,310,319,320,322,342,362],stop_driv:120,stop_evennia:265,stop_serv:275,stop_server_onli:265,stopproduc:267,stopservic:[268,310],storag:[11,13,23,28,29,33,42,46,55,63,72,84,85,95,101,124,132,137,147,168,173,176,197,204,233,240,244,245,249,250,254,257,259,272,308,312,314,316,321,336,337],storage_modul:321,storagecontain:101,storagescript:101,store:[0,2,9,13,15,21,23,27,28,29,31,33,34,37,38,39,40,42,43,45,46,48,49,52,54,55,56,57,59,60,63,68,72,74,79,81,84,85,86,88,90,94,96,99,101,103,104,111,112,114,115,118,120,122,124,126,127,130,132,133,134,135,136,137,138,143,145,147,152,155,156,158,159,161,166,167,173,176,178,186,187,194,201,203,204,205,209,212,213,218,222,230,231,233,239,240,244,248,249,250,251,255,256,257,258,259,265,269,270,271,272,275,277,278,279,281,289,292,297,303,304,305,306,308,310,314,315,316,317,319,321,322,323,324,325,326,327,332,334,336,337,338,342,355,360],store_kei:259,store_result:47,store_tru:232,stored_obj:25,storekei:[84,259],storenam:84,storeroom:84,storeroom_exit:84,storeroom_kei:84,storeroom_key_nam:84,stori:[3,9,96,132],storm:[28,118],storypag:3,storytel:122,stove:245,str:[0,10,11,22,25,27,38,39,49,50,57,58,59,72,73,83,90,95,112,113,118,124,126,132,133,140,143,145,149,150,151,152,153,165,169,173,174,175,176,178,179,181,183,186,187,188,189,191,192,193,194,196,197,198,199,203,204,205,209,211,214,216,217,218,219,220,231,232,233,236,237,240,244,245,248,249,250,255,256,257,259,262,263,265,270,271,272,274,275,276,277,278,280,283,284,285,288,289,290,293,294,296,302,303,304,305,306,308,309,310,313,314,315,316,317,319,320,321,322,324,325,326,327,328,334,335,336,337,338,339,340,341,342,343,347,360],straight:[48,67,125],straightforward:[25,40,84,90,120,122],strang:[6,8,14,29,40,55,130,152],strangl:89,strategi:[41,220],strattr:[1,11,314],strawberri:232,stream:[105,274,278,304],streamlin:[36,178],strength:[11,56,57,59,60,72,79,115,133],stress:[92,296],stretch:110,stribg:342,strict:[10,249,319],stricter:249,strictli:[19,50,58,76,132,185,219,328],strike:[42,50,81,115,164,213,219,220],string1:342,string2:342,string:[5,9,11,12,13,15,19,20,22,23,25,27,29,31,33,34,35,40,41,42,48,49,50,53,54,56,57,58,59,61,67,70,75,81,82,83,85,86,87,88,89,92,94,95,96,103,108,110,111,112,113,114,115,118,123,124,126,128,132,133,136,137,138,143,145,147,149,150,153,156,158,164,165,166,167,168,169,173,174,175,176,178,179,181,185,187,196,197,198,199,202,203,204,205,209,210,214,216,217,218,219,220,229,233,236,237,238,239,240,244,245,248,249,250,254,257,259,265,267,270,274,277,285,288,289,291,297,302,304,306,309,313,314,315,316,317,319,320,322,323,324,325,326,327,328,334,335,336,338,339,340,341,342,343,360,362],string_from_modul:342,string_partial_match:342,string_similar:342,string_suggest:342,stringproduc:267,strip:[21,22,33,40,42,50,57,73,80,84,107,108,113,117,122,150,158,166,167,205,250,270,285,288,289,319,320,324,326,334,342],strip_ansi:[80,319,341],strip_control_sequ:342,strip_mxp:319,strip_raw_ansi:319,strip_raw_cod:319,stroll:212,strong:[79,113,122,341],strongest:79,strongli:[63,72,94,123,204],strr:203,struct:55,structur:[9,11,33,37,40,42,44,46,47,48,54,55,58,62,63,67,68,79,82,87,94,95,108,118,132,133,135,137,158,205,245,248,249,250,289,294,317,323,326,352,359,360],strvalu:[11,314,315],stuck:[50,62],studi:58,stuff:[3,9,11,21,29,31,37,46,48,50,56,60,66,72,79,84,95,101,104,106,108,118,137,152,158,188,232,259,303,348],stumbl:96,stupidli:34,sturdi:325,stutter:107,style:[3,16,20,21,27,33,37,39,40,44,50,54,56,57,60,78,86,94,105,110,113,115,121,123,128,137,147,153,155,166,181,182,187,198,200,216,232,245,249,319,324,328,342],styled_foot:153,styled_head:[33,153],styled_separ:153,styled_t:[33,153],sub:[9,11,36,37,56,64,68,87,89,107,108,115,118,136,137,142,148,171,172,177,179,205,232,234,236,238,241,248,250,251,260,312,318,319,341,344],sub_ansi:319,sub_app:132,sub_brightbg:319,sub_dblspac:341,sub_mxp_link:341,sub_text:341,sub_xterm256:319,subclass:[27,63,104,108,117,118,124,158,179,233,244,254,275,288,294,313,316,333,338,342],subdir:126,subdirectori:[37,126],subdomain:[8,89,102],subfold:[46,85,94,95,133,134],subject:[36,38,80,85,89,123,188,198],submarin:120,submenu:[105,179,247],submenu_class:179,submenu_obj:179,submiss:[187,355],submit:[17,37,102,132,187,355,360],submitcmd:187,submodul:[141,206,289],subnegoti:289,subnet:[12,42,156],subpackag:[87,126,141],subprocess:[25,342],subreddit:78,subscrib:[12,33,34,40,42,57,63,79,114,127,131,145,163,173,174,175,218,259,276,307],subscript:[33,42,57,78,114,131,163,172,175,176,259],subsequ:[10,11,33,42,94,115,163,320,342],subsequent_ind:328,subset:[55,111,126],subsid:124,substitut:[70,86,105,245,319,341],substr:319,subsystem:[9,62,85,240],subtitl:17,subtract:[84,248],subturn:115,subword:342,succ:239,succe:[60,115,184],succeed:[184,232],success:[72,115,122,133,143,174,178,184,216,217,218,219,220,223,230,231,240,249,265,269,316,324,336,342,360],success_teleport_msg:231,success_teleport_to:231,success_url:360,successfuli:202,successfulli:[10,28,33,36,59,76,109,110,129,143,202,230,233,245,257,265,277,309,316,360],suddenli:[26,96,316],sudo:[62,99,102],suffic:[17,56,60],suffici:[85,89,93,118],suffix:[27,96,113,319,334,335,342],suggest:[1,23,25,37,47,50,51,54,60,66,67,69,89,94,96,124,137,139,150,165,178,196,205,231,245,342,361],suggestion_cutoff:165,suggestion_maxnum:165,suit:[29,34,54,63,116,129,138,169,342,360],suitabl:[21,25,33,37,54,62,63,79,82,86,87,89,111,130,151,240,299,306,322],sum:[37,81,90,138,152],summar:[0,78,138],summari:[0,7,45,78,95,109,122,179],summer:186,sun:61,sunris:61,sunt:51,super_long_text:327,superclass:144,superfici:204,superflu:341,supersus:240,superus:[2,4,5,6,9,13,14,19,20,21,23,25,40,42,57,59,62,80,94,95,110,121,133,143,147,157,168,174,181,199,211,229,239,240,245,250,265,316,320,322],supplement:50,suppli:[10,11,27,34,37,42,50,57,58,62,67,71,73,83,87,92,101,104,108,111,113,114,115,122,126,147,152,153,156,158,163,168,169,175,179,183,185,186,189,244,245,249,254,259,276,306,316,324,329,339,342],supporst:292,support:[2,4,7,8,9,11,23,26,33,37,39,41,42,43,46,48,49,50,55,56,57,60,62,63,64,65,69,73,74,75,80,82,85,86,89,90,93,97,99,102,108,109,112,113,122,125,138,155,164,182,183,184,186,197,232,239,245,248,249,250,259,270,278,279,280,281,285,287,288,289,290,292,294,305,314,319,323,326,327,328,334,339,342,347,362],supports_set:[73,270],suppos:[0,33,50,60,75,82,108,118,137,143,179],supposedli:[204,289],suppress:[24,287],suppress_ga:[140,260,273],suppressga:287,supress:287,sur:78,sure:[0,2,4,5,8,9,11,12,13,14,15,19,20,21,23,25,28,29,30,31,33,36,37,40,41,42,43,48,50,56,57,59,60,61,62,70,71,72,74,77,79,80,85,86,88,89,90,92,94,95,96,99,101,104,105,108,109,110,111,112,114,115,117,122,124,125,126,127,130,132,133,135,136,137,139,143,145,151,152,153,155,158,163,166,173,175,179,181,195,199,203,204,205,210,214,219,222,226,229,230,231,236,239,240,245,249,250,256,257,265,269,275,277,282,303,309,310,311,313,315,316,319,321,323,326,332,338,339,341,342,358,360],surfac:[57,81,102],surpris:[22,38,68,79,90],surround:[31,33,42,110,115,118,128,156,199,229,338,342],surviv:[5,11,27,28,31,42,49,50,83,101,104,114,115,125,145,152,168,179,254,255,259,322,324,326],suscept:[27,55,240],suspect:132,suspend:[99,102,105],suspens:101,suspici:50,suspicion:132,svn:[36,107],swallow:[95,117,274,341],swap:[42,113,126,136,137,158,186,201,316,324],swap_autoind:324,swap_object:316,swap_typeclass:[59,124,143,316],swapcas:319,swapcont:137,swapper:316,swedish:75,sweep:101,swiftli:10,swing:[28,29,33,81],switch1:128,switch2:128,switch_opt:[155,156,157,158,163,164,165,166,167,168,186],sword:[20,28,33,60,72,76,84,85,118,178,205,250,339,342],symbol:[14,15,33,48,74,105,107,118,199,214,233,327],symlink:62,symmetr:328,sync:[63,82,104,130,173,283,288,303,304,305,306,314,323],sync_port:306,syncdata:[305,306],syncdb:126,synchron:335,syntact:[240,342],syntax:[5,6,13,14,15,21,22,23,29,33,40,42,45,47,54,57,59,61,75,79,90,96,113,118,122,128,133,140,141,153,157,158,166,167,169,179,184,186,187,232,240,245,265,277,304,316,318,319,334,342],syntaxerror:59,sys_cmd:151,sys_game_tim:58,syscmdkei:[33,140],syscommand:[140,148,154,245],syslog:208,sysroot:74,system:[0,2,4,5,9,10,11,19,21,22,23,26,27,28,29,31,34,36,37,38,39,40,43,45,46,48,54,55,58,59,61,62,63,73,74,75,76,78,80,82,83,84,85,86,89,92,94,96,101,102,103,104,106,107,108,109,110,111,113,114,118,120,121,124,125,126,127,128,130,131,133,135,137,138,139,140,144,145,147,148,149,151,153,154,155,157,165,167,169,171,174,175,176,178,179,181,185,192,193,194,195,196,197,198,200,201,202,204,205,208,209,210,214,216,217,218,219,220,225,231,233,234,237,239,240,244,245,247,250,251,257,265,288,294,302,312,316,320,322,325,326,335,361,362],system_command:33,systemat:38,systemctl:8,systemmultimatch:167,systemnoinput:167,systemnomatch:167,systemsendtochannel:167,tab:[9,14,26,30,36,52,58,68,94,95,105,113,136,137,319,328],tabl:[0,4,13,15,42,44,45,47,57,58,63,68,81,87,96,110,112,113,118,124,127,133,153,155,165,168,187,249,289,308,319,325,327,328,339,342],table_char:325,table_format:155,table_lin:328,table_str:57,tablea:325,tableb:325,tablechar:[57,325],tableclos:[87,289],tablecol:[327,328],tableopen:[87,289],tablet:16,tabletop:[57,72,78,123,216,220],tabsiz:[319,328],tabstop:341,tabularinlin:313,tack:[20,118,152],tackl:37,tactic:[72,115],taction:115,tag:[9,12,13,18,20,24,27,33,44,47,50,54,56,57,63,73,85,86,87,94,95,99,108,113,118,123,124,133,135,136,137,138,139,140,141,144,153,155,156,157,158,163,164,165,166,167,168,169,170,172,173,176,178,179,180,181,182,184,185,186,187,188,192,198,199,200,201,202,203,205,208,211,212,213,214,216,217,218,219,220,223,229,230,231,232,237,239,242,245,249,250,252,280,294,302,312,313,315,316,319,322,324,325,326,327,328,339,342,362],tag_categori:313,tag_data:313,tag_kei:313,tag_typ:313,tagadmin:313,tagform:313,tagformset:313,taghandl:[111,124,313,317],taginlin:[144,172,235,242,252,313],tagkei:[239,317,322],taglin:17,tagnam:250,tagstr:[250,317],tagtyp:[111,315,317,339],tail:[75,89,99,265,335],tail_log_fil:[265,335],tail_log_funct:335,tailor:[4,68,355],take:[0,3,4,9,10,11,13,14,15,16,17,19,20,21,22,25,26,27,28,29,31,33,37,39,41,45,48,50,51,54,55,56,57,61,63,68,69,73,74,75,76,78,79,82,84,89,90,94,95,102,103,104,105,107,108,110,113,115,118,120,121,122,123,124,125,126,132,133,135,137,138,143,145,150,151,155,167,173,176,178,181,183,186,187,199,202,203,205,208,212,214,216,217,218,219,220,229,231,240,248,250,269,285,293,305,306,315,316,319,324,325,326,327,336,342,343],taken:[31,42,55,63,102,115,119,120,122,164,185,208,216,217,218,219,220,285,309,319,322],takeov:307,taladan:47,tale:3,talk:[23,27,33,34,37,39,40,42,45,57,59,89,90,130,137,164,178,204,205,213,231,262],talker:[54,60],talki:63,talking_npc:[140,141,177],talkingcmdset:213,talkingnpc:213,tall:[42,128,164,205],tallman:[42,164],tandem:60,tantal:14,target1:219,target2:219,target:[21,25,28,29,30,33,34,39,42,57,72,87,102,113,115,118,122,126,135,137,143,153,158,163,164,168,176,181,184,186,196,198,214,216,217,218,219,220,229,233,245,315,319,322,326,342],target_loc:[196,212,231,233,245],target_obj:240,targetlist:198,task:[0,27,36,39,40,90,92,93,101,109,111,137,192,194,214,258,259,342],task_handl:[140,258,342],task_id:[194,258],taskhandl:[140,141,251,342],tast:[22,34,132],tavern:205,tax:[74,92],taylor:78,tb_basic:[140,177,215],tb_equip:[140,177,215],tb_filenam:320,tb_item:[140,177,215],tb_iter:320,tb_magic:[140,177,215],tb_rang:[140,177,215],tbbasiccharact:216,tbbasicturnhandl:216,tbearmor:217,tbequipcharact:217,tbequipturnhandl:217,tbeweapon:217,tbitemscharact:218,tbitemscharactertest:218,tbitemsturnhandl:218,tbmagiccharact:219,tbmagicturnhandl:219,tbodi:133,tbrangecharact:220,tbrangeobject:220,tbrangeturnhandl:220,tchar:115,tcp:[54,102],tcpserver:[39,310],teach:123,team:[33,36,60,63,107,130],teardown:[126,169,195,227,291,340],teaser:89,tech:78,technic:[4,6,9,10,11,19,20,23,38,39,50,63,69,82,89,107,111,113,118,124,138,178,314],techniqu:[29,138,319],tediou:[1,105,110],teenag:[21,102],tehom:[9,118],tehomcd:9,tel:[0,12,57,62,90,120,158],teleport:[12,14,20,42,57,84,121,139,158,164,231,239,320],teleportroom:231,televis:31,tell:[0,3,5,8,10,12,13,19,21,22,23,26,29,31,33,40,41,42,45,48,50,52,57,58,59,60,68,72,73,74,75,76,79,82,85,86,89,90,92,94,95,99,101,102,108,109,115,116,120,126,127,129,130,131,133,134,138,145,155,163,164,175,176,184,205,231,245,265,283,294,306,324,360],telnet:[9,15,25,30,39,42,54,62,63,74,78,82,93,99,100,102,104,109,113,136,137,140,168,260,273,278,279,280,281,285,286,287,289,290,292,296,304,305,341],telnet_:89,telnet_hostnam:53,telnet_interfac:89,telnet_oob:[87,140,260,273],telnet_port:[9,36,53,89,297],telnet_ssl:[140,260,273],telnetoob:289,telnetprotocol:[286,288,290],telnetserverfactori:288,teloutlock:239,temp:176,tempat:187,templ:199,templat:[2,3,4,5,27,31,42,46,63,80,86,103,106,108,122,124,130,133,134,135,136,137,144,164,166,187,265,294,304,305,314,325,334,353,360],template_nam:360,template_overrid:[4,134,135,136],template_regex:[314,334],template_rend:106,template_str:86,templates_overrid:134,templatestr:325,templatetag:[140,344,354],templateview:360,tempmsg:[174,176],temporari:[6,11,109,121,126,130,152,176,197,216,217,218,219,220,259,326],temporarili:[20,26,31,42,50,59,89,96,101,126,163,168,174,194,202],tempt:[42,60,94,103,156],ten:[29,89,110],tend:[40,42,56,60,63,72,75,85,89,96,102,118,120,123,128,137,158,204,208],tent:[44,110,138],term:[0,10,31,61,62,63,68,89,90,95,125,138,153,203],term_siz:[41,140],termin:[4,23,26,27,41,46,58,59,62,63,74,89,92,94,95,96,99,102,105,109,113,122,125,130,137,138,140,193,214,216,217,218,219,220,264,265,285,292,308,360],terminalrealm:285,terminals:285,terminalsessiontransport:285,terminalsessiontransport_getp:285,terrain:48,terribl:278,ters:101,test1:[11,73,328],test2:[11,33,73,113],test3:[11,328],test4:[11,328],test5:11,test6:11,test7:11,test8:11,test:[0,5,10,11,13,14,15,17,19,20,21,22,23,24,25,29,31,33,36,37,40,41,42,44,45,49,50,55,57,59,60,61,62,64,67,68,71,73,78,79,80,84,88,89,90,93,94,95,97,105,106,108,110,114,115,119,123,129,130,131,132,136,137,138,140,148,150,154,155,157,165,168,177,181,184,186,187,190,206,207,214,216,217,218,219,220,221,222,248,249,260,267,270,273,294,295,296,300,316,318,319,320,322,326,330,340,342,344,346,348,354,362],test_:126,test_about:169,test_accept:195,test_access:169,test_add:195,test_add_valid:195,test_all_com:169,test_alternative_cal:126,test_amp_in:291,test_amp_out:291,test_at_repeat:227,test_attribute_command:169,test_audit:210,test_ban:169,test_batch_command:169,test_bold:291,test_c_creates_button:301,test_c_creates_obj:301,test_c_dig:301,test_c_examin:301,test_c_help:301,test_c_login:301,test_c_login_no_dig:301,test_c_logout:301,test_c_look:301,test_c_mov:301,test_c_move_:301,test_c_move_n:301,test_c_soci:301,test_cal:195,test_cas:126,test_cboot:169,test_cdesc:169,test_cdestroi:169,test_cemit:169,test_channel:169,test_channelcommand:169,test_char_cr:169,test_char_delet:169,test_clock:169,test_color:291,test_color_test:169,test_copi:169,test_creat:169,test_cwho:169,test_data_in:291,test_data_out:291,test_del:195,test_desc:169,test_desc_default_to_room:169,test_destroi:169,test_destroy_sequ:169,test_dig:169,test_displayinput_nod:326,test_do_nested_lookup:169,test_dynamic_nod:326,test_edit:195,test_edit_valid:195,test_emit:169,test_empty_desc:169,test_end_nod:326,test_examin:169,test_exit:195,test_exit_command:169,test_find:169,test_forc:169,test_general_context:350,test_get:358,test_get_and_drop:169,test_get_authent:358,test_get_dis:358,test_giv:169,test_handl:195,test_help:169,test_hom:169,test_ic:169,test_ident:291,test_idl:301,test_info_command:169,test_interrupt_command:169,test_invalid_access:358,test_inventori:169,test_ital:291,test_large_msg:291,test_list:195,test_list_cmdset:169,test_lock:[169,195],test_look:169,test_look_nod:326,test_mask:210,test_memplot:301,test_menu:214,test_messag:302,test_mudlet_ttyp:291,test_multimatch:169,test_mux_command:169,test_mycmd_char:126,test_mycmd_room:126,test_nam:169,test_nested_attribute_command:169,test_nick:169,test_object:169,test_object_search:126,test_ooc:169,test_ooc_look:169,test_opt:169,test_pag:169,test_password:169,test_perm:169,test_pi:169,test_plain_ansi:291,test_pos:169,test_quel:169,test_queri:[140,260,295],test_quit:169,test_resourc:[126,140,141,169,195,210,227,291,318,358],test_return_valu:126,test_sai:169,test_script:169,test_send_random_messag:227,test_server_load:169,test_sess:169,test_set_game_name_and_slogan:350,test_set_help:169,test_set_hom:169,test_set_nod:326,test_set_obj_alia:169,test_set_webclient_set:350,test_simpl:126,test_simple_default:169,test_spawn:169,test_split_nested_attr:169,test_start:195,test_start_nod:326,test_tag:169,test_teleport:169,test_toggle_com:169,test_tunnel:169,test_tunnel_exit_typeclass:169,test_typeclass:169,test_upp:126,test_valid_access:358,test_valid_access_multisession_0:358,test_valid_access_multisession_2:358,test_valid_char:358,test_view_nod:326,test_wal:169,test_whisp:169,test_who:169,test_without_migr:126,testabl:126,testaccount:169,testadmin:169,testampserv:291,testapp:132,testbatchprocess:169,testbodyfunct:227,testbuild:169,testcas:[126,291,301,333,340,350],testcmdcallback:195,testcomm:169,testcommand:50,testdefaultcallback:195,testdummyrunnerset:301,tester:[89,118,283],testeventhandl:195,testform:325,testgener:169,testgeneralcontext:350,testhelp:169,testid:33,testinterruptcommand:169,testirc:291,testmemplot:301,testmenu:[187,326],testmixedrefer:333,testmod:306,testmymodel:126,testobj:126,testobject:126,testobjectdelet:333,testok:90,testregularrefer:333,testresult:249,testset:126,testsharedmemoryrefer:333,teststr:126,testsystem:169,testsystemcommand:169,testtelnet:291,testunconnectedcommand:169,testvalu:11,testwebsocket:291,text2html:[140,141,318],text:[0,1,2,5,7,9,10,13,14,15,17,18,21,22,24,26,30,33,34,35,37,39,42,44,45,47,49,51,54,55,56,57,58,59,62,67,71,72,75,76,77,78,79,80,82,84,85,86,87,89,90,94,95,96,97,99,107,108,109,110,111,117,120,122,123,125,126,130,132,136,137,138,143,145,150,153,155,156,157,158,163,164,165,166,167,168,169,170,173,174,175,176,178,179,180,181,184,185,186,187,188,189,192,194,196,198,199,200,201,202,204,205,209,211,212,213,214,216,217,218,219,220,223,229,230,231,232,237,240,245,247,248,250,254,262,263,270,276,277,280,283,284,285,288,289,293,294,304,305,306,309,310,314,315,317,319,320,322,324,325,326,327,328,334,336,339,341,342,343,355,362],text_color:189,text_exit:[22,179],text_flow_pane1:136,text_flow_pane2:136,text_single_exit:22,textarea:[338,355],textbook:39,textbox:355,textfield:[85,132],textstr:73,texttag:[125,138,362],texttohtmlpars:341,textual:38,textwrap:328,textwrapp:328,than:[0,2,4,6,8,11,13,14,16,19,23,24,25,26,29,31,33,35,37,38,41,42,45,46,48,50,51,52,53,54,56,57,59,60,61,63,67,68,70,72,75,79,81,85,88,89,90,92,94,96,102,103,104,105,108,109,111,112,113,114,115,118,121,122,124,125,126,127,128,130,133,134,136,137,138,143,147,150,151,152,155,156,157,158,159,163,166,168,178,179,180,183,189,194,196,203,204,205,212,214,216,217,218,219,220,230,232,239,245,247,248,265,291,306,311,313,314,315,316,319,320,326,327,328,332,334,335,337,338,339,341,342,360],thank:[4,101,133,137,198,310],thankfulli:132,thead:133,thei:[0,1,2,4,5,6,8,9,10,11,12,13,14,15,16,17,19,20,21,22,23,25,27,29,30,31,33,34,37,38,39,40,41,42,43,45,47,50,52,54,55,56,57,60,62,63,65,67,68,72,74,76,77,79,80,82,84,85,87,88,89,90,91,92,94,95,96,101,102,104,105,106,107,108,109,110,111,112,113,115,117,118,120,122,123,124,125,126,130,131,133,135,136,137,138,139,143,144,151,152,155,157,158,163,164,166,167,168,173,178,179,181,184,186,188,193,199,204,205,216,217,218,219,220,230,231,232,233,239,240,244,245,248,250,251,254,256,257,259,265,285,286,288,289,290,294,297,303,304,305,306,308,313,314,319,320,321,323,326,328,334,342,343,355,360],theirs:[115,180,188],them:[0,2,4,5,6,9,10,11,12,13,14,15,16,21,22,23,26,27,28,29,30,31,33,34,35,37,38,39,40,42,45,47,49,50,53,54,56,57,58,59,60,61,63,65,67,68,70,72,73,74,75,76,79,81,82,84,85,86,87,88,89,90,94,95,96,97,101,102,103,104,105,108,109,110,111,112,113,114,115,117,118,120,121,122,123,124,125,126,127,130,132,133,134,135,136,137,138,139,143,149,150,151,153,155,157,158,163,165,166,167,169,174,180,181,182,186,187,188,189,191,193,196,202,203,205,214,216,217,218,219,220,223,229,231,232,236,240,245,250,256,259,265,283,285,288,296,300,303,304,306,313,314,316,317,319,320,322,326,334,338,341,360],themat:60,theme:[60,133],themself:218,themselv:[0,11,19,21,28,31,33,42,48,50,54,57,68,71,72,79,80,84,88,96,101,106,112,118,120,122,124,126,131,137,139,158,205,245,254,257,265,315,317,338],theoret:[31,107],theori:[31,41,56,78,122,138,143,151,362],thereaft:86,therefor:[0,48,61,67,90,101,121,126,157,179,191],therein:[15,33,155,166,186,202],thereof:[205,245],thi:[0,1,2,3,4,5,6,8,9,10,11,12,13,14,15,16,18,19,20,21,22,23,24,25,26,27,28,29,30,31,33,34,35,36,37,38,39,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,67,69,70,71,72,73,74,75,76,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,142,143,144,145,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,191,192,193,194,196,197,198,199,200,201,202,203,204,205,208,209,211,212,213,214,216,217,218,219,220,222,223,225,226,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,244,245,248,249,250,251,252,254,255,256,257,258,259,260,262,263,264,265,267,269,270,271,272,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,292,293,294,296,297,298,299,300,302,303,304,305,306,307,308,309,310,311,312,313,314,315,316,317,318,319,320,321,322,323,324,325,326,327,328,329,332,333,334,335,336,337,338,339,340,341,342,343,344,347,348,352,353,355,359,360,361],thie:50,thief:60,thieveri:[42,165],thin:[10,22,29,110,181,335],thing:[0,1,3,4,5,6,8,9,10,11,12,13,15,19,20,21,22,25,26,27,28,29,30,31,33,34,37,38,39,40,42,45,46,47,48,49,50,54,57,58,59,60,62,63,68,69,70,72,73,74,75,78,79,81,82,84,85,88,89,90,92,94,95,96,99,101,102,103,104,106,107,108,109,110,113,114,115,117,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,143,151,152,158,174,178,179,186,194,204,205,214,220,226,231,232,239,240,244,245,248,269,274,278,310,313,314,316,319,320,328,334,338,360],think:[1,20,29,31,34,37,45,47,50,54,58,60,61,69,72,78,80,90,93,94,95,96,108,110,111,113,114,134,137,138,306,360],third:[0,8,9,23,27,37,38,41,42,50,63,68,71,74,89,95,100,113,120,126,127,133,158,319],thirdnod:50,this_sign:307,thoma:[12,42,86,156],thorn:[11,88],thorough:26,those:[2,3,4,6,9,11,13,14,15,19,20,21,23,28,30,31,33,35,36,42,43,46,47,50,54,55,56,57,59,60,61,63,67,70,72,76,77,78,79,80,84,85,87,88,89,94,95,102,104,108,109,110,111,113,117,118,120,122,123,124,126,127,129,130,134,135,137,152,153,155,158,164,165,169,175,179,205,209,214,216,230,231,240,248,249,250,288,293,315,316,326,328,336,337,340,342,355,360],though:[2,10,11,12,13,14,15,22,23,26,27,30,31,37,38,40,50,56,58,59,61,62,63,68,71,74,78,80,88,89,90,93,95,96,99,101,102,103,109,115,118,120,121,122,125,126,127,128,130,137,143,153,179,180,189,216,217,219,220,225,231,232,245,250,319,342],thought:[23,38,60,78,79,83,137],thousand:[38,89,110,132],thread:[23,27,54,78,93,109,284,310,335,342],threadpool:[93,310],threadsaf:313,threat:102,three:[0,4,12,13,16,22,25,31,33,45,50,68,79,82,84,86,88,89,113,132,133,134,150,214,219,240,256,319,326],threshold:[227,308,320],thrill:84,throttl:[140,141,143,260,270,283],through:[0,1,2,5,9,13,14,17,23,25,27,30,31,33,34,38,39,40,43,45,47,50,51,52,54,55,56,57,58,59,60,61,63,67,68,69,70,75,76,79,82,84,86,87,88,89,90,92,95,96,97,98,102,103,104,105,106,107,108,109,113,115,116,118,120,121,123,135,137,138,139,140,143,152,158,165,173,178,186,191,209,211,216,217,218,219,220,233,238,240,244,245,249,255,256,259,265,267,272,281,285,288,294,297,302,304,305,313,315,316,320,322,325,326,327,334,341,342,355,360],throughout:[11,20,48,50,54,103,218],throughput:[174,322],thrown:115,thrust:230,thu:[14,19,31,33,38,42,43,50,53,56,57,72,79,82,85,95,107,110,113,120,121,122,124,133,134,135,155,159,180,204,240,245,259,297,311,314,315,322],thud:188,thumb:[52,113,130],thumbnail:4,thunder:23,thunderstorm:121,thusli:74,tick:[23,33,50,63,114,130,131,138,218,229,231,259,297],ticker1:[114,259],ticker2:[114,259],ticker:[54,73,101,131,138,145,229,231,255,259,270],ticker_class:259,ticker_handl:[114,131,140,259],ticker_pool_class:259,ticker_storag:259,tickerhandl:[27,44,101,115,131,138,140,141,212,218,231,251,362],tickerpool:259,tickerpool_layout:259,ticket:93,tidbit:54,tidi:99,tie:[115,137],tied:[63,118,152,165,181,223,226,237],tier:89,ties:[48,134,160],tight:181,tightli:102,tim:[181,187,189,214,216,217,218,219,220],time:[0,1,2,4,5,6,8,9,10,11,12,13,14,17,20,21,22,23,25,26,28,29,30,31,34,36,37,38,39,40,41,44,48,50,51,53,54,55,57,58,59,60,62,63,64,65,68,69,71,72,74,79,82,85,87,88,89,90,92,93,94,95,99,103,104,105,108,109,112,113,114,115,116,118,120,121,122,123,124,126,127,128,130,131,132,134,136,137,138,143,145,147,149,150,152,153,156,163,168,174,176,178,183,184,186,193,194,197,199,202,203,211,212,214,216,217,218,219,220,222,226,229,230,231,237,244,245,248,250,251,254,257,258,259,265,267,269,271,272,277,283,288,290,297,298,302,303,304,306,308,313,314,316,317,319,320,321,322,327,329,332,333,335,338,342,361],time_ev:197,time_factor:[27,61,183,329],time_format:[58,342],time_game_epoch:[27,61,329],time_to_tupl:183,time_unit:[61,183],time_until_next_repeat:[101,257],timedelai:[29,258,340,342],timedelta:[336,343],timeeventscript:194,timefactor:61,timeformat:[335,342],timeit:92,timeout:[66,115,119,288,308,332],timer:[20,27,33,46,55,63,82,101,114,115,186,218,222,225,230,251,257,259,296,304,339],timerobject:101,timescript:329,timeslot:186,timestamp:[25,27,308,329],timestep:297,timestr:335,timetrac:[140,260,295],timetupl:61,timezon:[23,335,336,343],tini:[23,38,80],tinker:96,tintin:[24,278,279,289,292],tinyfugu:24,tinymud:[56,107],tinymush:[56,107,128],tinymux:[56,107],tip:[37,69,78,102,111],tire:[20,152],titeuf87:233,titl:[17,22,34,42,47,68,97,136,163,165,179,236,319,322,360],titlebar:136,titleblock:68,tlen:70,tls:8,tlsv10:66,tlsv1:8,tmp:[36,62],to_be_impl:360,to_byt:342,to_cur:218,to_displai:179,to_dupl:151,to_execut:342,to_exit:0,to_fil:208,to_init:220,to_non:245,to_obj:[143,153,245],to_object:175,to_pickl:323,to_str:342,to_syslog:208,tobox:274,toc:361,todai:[137,189],todo:57,toe:107,togeth:[0,3,8,9,14,22,29,31,33,42,47,48,56,57,60,63,67,70,72,82,88,89,91,115,118,121,122,123,124,125,130,137,149,158,160,174,186,201,202,204,205,230,231,244,250,274,293,306,313,319,320,334,339],toggl:[80,288],toggle_nop_keepal:288,togglecolor:80,toint:[108,248],token:[70,245,285,288,320,334],told:[43,58,89,90,94,112,113,122,127,338],tolkien:61,tom:[42,57,86,122,128,158,164,188,205,325],tommi:[19,79,86],ton:[56,81],tone:113,tonon:[42,158],too:[0,4,6,9,11,12,13,14,17,20,21,22,24,25,27,29,33,38,40,41,42,45,46,47,48,50,56,57,58,59,60,62,72,79,82,83,84,90,92,95,105,113,115,120,121,122,124,127,130,132,137,156,158,177,214,219,223,239,257,270,274,308,310,320,325,326,327,328,339,342],took:[126,342],tool:[4,6,7,8,23,29,52,56,61,62,63,85,89,95,99,107,108,110,111,113,118,135,138],toolbox:78,tooltip:136,top:[5,9,13,22,26,29,31,33,38,46,47,49,51,52,56,57,58,59,62,67,68,74,78,84,92,94,95,100,101,103,109,110,111,116,122,124,129,130,132,133,136,137,138,147,152,176,179,181,183,201,205,214,232,233,237,244,254,265,307,314,316,317,320,327,328,335],topcistr:236,topic:[4,10,20,31,33,39,41,42,54,67,68,85,92,104,118,125,165,216,217,218,219,220,236,339,355,360],topicstr:236,tos:239,tostr:274,total:[27,42,61,79,81,90,92,101,103,104,113,117,138,168,184,302,328,329],total_num:332,touch:[8,53,59,95,96,102,103,113],tour:90,toward:[22,33,39,41,90,101,110,189,199,220,229],tower:[110,186,231],tportlock:239,trac:93,trace:[82,95,194,302,326],traceback:[6,13,27,56,59,94,96,101,109,113,122,126,132,134,194,201,248,274,316,320,334,335,342],tracemessag:302,track:[11,27,30,48,56,60,63,72,76,81,85,94,97,98,99,101,104,115,120,127,131,132,137,143,152,220,255,276,277,282,285,288,303,308,323,324,336],tracker:[42,60,69,130],trade:[45,178],tradehandl:178,trader:45,tradetimeout:178,tradit:[10,15,36,72,73,82,89,102,113,115,137,233,288,304,327],tradition:[56,82],traffic:[8,102,278],train:78,traindriv:120,traindrivingscript:120,trainobject:120,trainscript:120,trainstop:120,trainstoppedscript:120,trait:[27,72,250],transact:178,transfer:[84,132,152,276,286,290,328],transform:[36,174],transit:[88,123],translat:[14,39,44,78,86,87,112,113,125,204,205,250,267,319],transmiss:208,transmit:112,transpar:[104,125,136,137,244,259],transport:[274,285,294],transportfactori:285,transpos:125,trap:[14,81,121],traumat:50,travel:[48,81,82,87,95,212,233],travers:[11,43,48,79,84,88,120,196,211,212,229,230,233,239,245],traverse_:33,traversing_object:[196,211,212,233,245],travi:[44,138,362],travis_build_dir:129,treasur:[9,233],treat:[10,14,33,63,94,95,104,110,111,118,124,137,143,149,152,174,188,245,250,306,328,339],tree:[3,11,33,46,50,60,62,63,76,79,95,130,139,179,205,214,232,245,250,265,294,310,326,342],tree_select:[140,141,177],treestr:214,treshold:332,tri:[11,12,14,24,29,33,42,52,57,60,79,82,86,89,90,104,106,112,115,118,132,137,150,168,178,180,187,223,230,231,269,308,342,343],trial:[93,105,291],tribal:110,trick:[8,22,78,137,316,355],tricki:[108,125,126,137],trickier:[9,68],trigger:[21,24,31,33,36,41,45,48,50,55,56,68,73,82,83,88,99,104,106,113,114,115,116,117,120,133,134,137,143,145,149,150,153,155,169,174,179,197,199,200,229,231,244,245,250,257,259,267,270,274,296,303,307,322,334],trim:319,trip:95,tripl:[27,95,113,334,342],trivial:[27,33,39,41,90,92,137],troll:12,troubl:[5,8,9,23,40,45,57,62,69,74,90,104,130,138,314,361],troubleshoot:9,troublesom:[12,13,14],trove:9,truestr:187,truli:[0,12,38,40,104,186],trust:[19,42,50,56,168,320],truth:41,truthfulli:33,try_num_prefix:150,ttarget:115,tto:288,tty:[9,99],ttype:[54,140,260,273,285,288],ttype_step:292,tuck:[110,223],tun:[42,158],tune:125,tunnel:[0,20,22,43,48,57,120,158,290],tup:[38,205],tupl:[11,38,40,41,42,50,58,59,79,85,86,87,89,108,115,118,133,140,143,150,156,158,166,167,175,178,179,183,184,188,191,199,205,218,219,233,239,240,245,248,249,250,259,262,274,275,285,286,290,297,304,306,314,317,319,321,322,324,326,329,334,335,337,342],tupled:335,turbo:74,turkish:143,turn:[0,10,12,27,31,33,40,42,49,50,56,57,63,65,76,78,79,80,82,87,89,95,101,104,106,109,110,113,116,117,120,121,125,126,130,132,134,137,138,143,153,163,168,169,174,197,199,205,214,216,217,218,219,220,229,231,245,250,265,270,278,285,288,296,306,312,313,316,320,322,326,327,328,334,342,362],turn_act:115,turn_end_check:[216,217,218,219,220],turnbattl:[140,141,177],turnchar:218,tut:[121,231],tutori:[3,4,10,16,17,20,22,25,26,28,29,31,32,33,35,37,38,40,41,44,47,48,50,54,56,57,59,60,62,63,69,70,76,78,80,81,90,94,101,110,111,113,114,125,132,134,138,179,212,217,230,231,361,362],tutorial_bridge_posist:231,tutorial_cmdset:231,tutorial_exampl:[13,14,20,101,140,141,177],tutorial_info:231,tutorial_world:[20,22,62,121,140,141,177],tutorialclimb:230,tutorialobject:[229,230],tutorialread:230,tutorialroom:[229,231],tutorialroomcmdset:231,tutorialroomlook:231,tutorialweapon:[229,230],tutorialweaponrack:230,tutorialworld:[230,231],tweak:[8,9,25,56,57,96,101,108,116,118,124,137,310,319],tweet:[123,138,362],tweet_output:119,tweet_stat:119,tweetstat:119,twenti:57,twice:[25,50,61,115,194,199,220,326],twist:[10,27,29,33,39,62,71,74,78,96,102,245,262,265,267,268,274,275,276,277,282,285,288,291,293,294,296,303,306,310,335,362],twistd:[62,105,109,282,303],twistedcli:39,twistedmatrix:93,twistedweb:102,twitch:[40,115],twitter:[7,54,119,138,362],twitter_api:70,two:[0,4,11,13,14,15,16,19,22,23,25,26,27,28,29,31,33,34,38,39,40,42,43,45,46,48,49,50,52,56,57,63,64,67,68,72,73,75,79,82,83,84,85,87,88,89,90,91,94,96,99,101,102,103,104,107,108,109,110,111,112,115,118,120,121,122,124,125,126,128,130,132,133,134,136,137,138,139,151,158,176,178,179,184,198,199,203,211,212,214,218,220,223,231,232,245,247,265,294,305,306,315,317,320,326,328,334,335,342,343,362],twowai:[42,158],txt:[9,39,49,74,77,89,95,145,204,281,289,324],tying:89,typclass:205,type:[0,8,12,14,16,17,19,20,21,22,24,25,26,27,28,29,31,33,34,35,37,40,41,42,43,45,46,48,49,50,54,55,56,57,58,60,61,63,72,74,76,78,79,80,81,82,85,86,87,89,90,94,95,96,101,102,104,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,124,125,127,132,136,137,138,143,145,153,158,165,168,169,170,174,175,176,179,181,185,187,191,194,196,197,198,199,205,212,216,217,218,219,220,226,230,231,232,237,239,240,244,245,249,250,258,259,263,265,267,268,276,277,283,285,286,288,289,290,292,293,294,296,304,306,310,313,314,315,316,317,319,320,322,323,326,328,334,337,338,339,342,343,349,355],type_count:181,typecalass:314,typecalss:194,typeclass:[0,2,5,9,11,12,13,20,21,22,25,26,27,33,34,38,43,46,47,48,55,57,59,60,61,65,68,72,75,76,79,81,82,83,84,88,90,95,101,104,106,108,110,111,115,116,117,119,120,121,122,126,131,132,133,138,140,141,143,144,145,146,147,152,158,163,172,174,175,176,177,181,186,190,193,194,197,202,205,211,212,213,216,217,218,219,220,225,231,233,235,236,239,240,242,243,244,245,249,250,252,253,254,255,257,259,303,321,322,339,340,342,355,358,360,362],typeclass_path:[42,101,118,124,147,158,254,315,316],typeclass_search:315,typeclassbas:95,typeclassmanag:[146,175,243,253],typeclassmixin:360,typedobject:[40,124,147,153,173,176,205,233,244,245,254,314,315,316,317,337,342],typedobjectmanag:[175,236,315],typeerror:[41,184,294],typenam:[22,143,145,147,174,176,178,181,183,186,188,194,196,202,203,204,205,211,212,213,216,217,218,219,220,222,225,226,229,230,231,233,237,244,245,249,254,257,272,298,314,316,329,332,333],typeobject:317,types_count:181,typic:[27,54,90,126,219,220,360],typo:[37,69,102],ubuntu:[8,62,96,102,130],ufw:102,ugli:[55,108,136,336],uid:[99,147,277,284,305,306],uit:[22,179],ulrik:57,ultima:78,umlaut:15,unabl:[70,189],unaccept:33,unaffect:[50,115,218],unarm:217,unarmor:217,unassign:137,unauthenticated_respons:358,unavoid:114,unban:[12,156],unbias:184,unbroken:325,uncas:319,uncategor:339,unchang:[86,96,204,250,342],unclear:[30,361],uncolor:[80,113],uncom:89,uncommit:130,uncompress:278,unconnect:[42,170,185],uncov:181,undefin:[36,85,111],under:[6,9,20,24,33,36,40,41,42,45,47,50,56,59,60,62,63,72,74,76,77,78,85,92,99,105,107,109,118,121,122,124,127,132,133,134,135,136,153,155,158,187,214,232,240,257,265,292,314,319,327,328,342,344,360],undergar:181,undergon:194,underli:[56,60,63,79,118,123,130],underlin:[328,341],underneath:[9,316],underscor:[0,50,73,87,94,96,113,118,151,342],underscror:151,understand:[4,10,15,24,25,26,29,30,31,33,37,38,40,41,43,47,48,54,59,60,62,78,80,82,90,94,95,102,103,104,108,110,112,113,122,123,130,132,133,135,138,150,151,203,204,205,310,319,342,362],understood:[82,90,110,126,293,294],undestand:25,undo:[49,102,324],undon:[42,155],undoubtedli:56,unexpect:[90,125,126,326],unexpectedli:332,unfamiliar:[62,73,79,87,89,117,123],unformat:[50,326,329],unfortun:[4,40,60],unhandl:59,unhappi:9,unhilit:341,unicod:[15,82,93,112,143,319,342],unicodeencodeerror:319,unicorn:118,unifi:[132,305],uniform:104,uninform:8,uninstal:62,uninstati:342,unintent:232,union:[31,50,151,223,326],uniqu:[2,12,13,20,31,33,35,36,39,42,45,54,56,59,60,63,70,79,82,83,89,94,95,101,104,108,111,118,122,124,126,136,137,143,149,151,153,158,163,168,170,174,175,180,183,185,193,199,203,204,205,211,214,217,218,229,231,236,245,249,250,259,262,274,275,283,296,297,305,306,314,315,316,317,322,324,336,339],unit:[27,31,34,36,37,44,46,54,61,63,78,81,106,123,138,175,183,197,218,267,322,329,342,348,362],unittest:[25,126,129,169,306,322,340],univers:[14,15,42,61,163],unix:[24,42,51,62,86,164,232,327,335,342],unixcommand:[140,141,177],unixcommandpars:232,unixtim:335,unjoin:178,unknown:[40,42,55,68,136,249,334,342],unleash:28,unless:[4,5,11,12,21,22,23,27,29,33,42,50,71,77,79,83,87,88,89,95,101,109,114,122,137,139,143,152,156,158,163,166,173,174,193,203,204,205,220,226,230,235,239,240,245,250,263,278,294,306,314,316,339,342,343],unlik:[37,63,72,89,106,143,179,218,316],unlimit:[233,257],unlink:158,unload:340,unload_modul:340,unlock:[57,76,79,314],unlocks_red_chest:79,unlog:[42,156,161,162,170,174,185,306],unloggedin:[104,140,148,154,200,306],unloggedincmdset:[35,42,104,162,185,200],unlucki:12,unmask:205,unmodifi:[150,167,186,326],unmonitor:270,unmut:[173,174],unnam:[111,151],unneccesari:112,unnecessari:[36,60],unneed:233,unpaced_data:274,unpack:[90,239],unpars:[73,86,150,293,294,334],unpaus:[99,101,257],unpickl:[82,274,314,323,338],unplay:[25,104],unpredict:342,unprivileg:250,unprogram:72,unpuppet:[42,95,106,122,155],unpuppet_al:143,unpuppet_object:[2,143],unquel:[20,42,79,155],unreal:78,unregist:134,unrel:[50,130,144],unrepeat:270,unreport:270,unsaf:[109,151,231],unsatisfactori:110,unsav:324,unsel:84,unset:[33,48,57,88,115,156,205,229,240,245,249,250,257,259,322,326,327,328,334,335],unsign:343,unsigned_integ:[336,343],unsignedinteg:336,unstabl:99,unstrip:150,unsubscrib:[42,57,114,163,259,276],unsuit:[19,249,317],unsur:[15,37,62,70,75,89,115,137,212],untag:136,untest:[24,60,62,126],until:[5,8,10,11,12,13,20,26,29,30,31,33,36,47,50,60,62,63,85,86,92,94,96,101,113,114,118,122,125,130,135,136,137,138,178,181,183,197,199,216,217,218,219,220,229,230,231,245,257,265,294,296,319,320,329,342],untouch:319,untrust:13,unus:[33,80,143,149,153,174,186,214,220,245,257,288,304,309,315],unusu:[102,118],unwant:138,unwield:217,unwieldli:152,upcom:[53,361],updat:[2,4,5,8,9,11,13,14,20,23,28,29,30,33,36,38,42,44,48,50,54,56,57,60,61,62,63,67,70,72,74,75,78,80,82,83,85,87,88,89,90,94,96,97,99,101,114,115,122,126,132,133,134,135,137,138,144,145,152,153,158,163,166,168,169,173,174,182,186,194,205,219,231,237,240,244,245,247,248,250,255,281,283,284,289,303,304,306,308,313,314,316,323,324,325,326,327,328,332,342,355,358,360,362],update_attribut:314,update_buff:324,update_cached_inst:332,update_charsheet:57,update_current_descript:186,update_default:303,update_flag:304,update_method:136,update_po:48,update_session_count:304,update_undo:324,update_weath:231,updated_bi:191,updated_on:191,updatemethod:[136,137],updateview:360,upfir:105,upgrad:[62,63,74],upload:[4,62,63,89,99],upon:[14,29,60,79,85,89,95,99,102,112,116,122,187,209,216,217,218,219,220,256,267,276,308,360],upp:231,upper:[29,38,42,85,100,113,126,137,155,319],uppercas:[113,319],upping:113,ups:7,upsel:89,upsid:[40,233],upstart:[39,256],upstream:[26,63,103,127],uptim:[12,27,42,61,168,279,329],urfgar:108,uri:[174,237,316],url:[8,42,63,89,97,130,133,134,135,137,140,141,145,163,174,237,284,294,310,316,341,344,351,354,360],url_nam:358,url_to_online_repo:130,urlencod:68,urlpattern:[3,4,68,132,133,134],usabl:[4,42,65,113,122,158,179,189,218,239,308,326],usag:[0,5,12,21,22,23,28,29,30,33,40,41,42,50,57,59,63,67,70,72,80,81,84,89,90,92,93,108,114,115,118,120,122,123,128,153,155,156,157,158,163,164,165,168,169,170,173,178,179,180,181,183,184,185,186,187,188,198,199,201,202,204,205,209,211,212,213,216,217,218,219,220,223,229,230,231,232,233,239,248,265,326,328,332],use:[0,2,3,4,5,6,8,9,10,11,12,13,14,15,16,17,19,20,21,22,23,24,25,26,27,28,29,31,33,34,35,36,37,38,39,40,41,42,45,46,47,48,49,50,51,52,53,55,56,57,58,59,60,61,62,63,64,65,67,68,69,70,71,72,73,75,78,79,80,81,82,83,84,85,86,87,88,89,90,92,93,94,95,97,99,101,102,103,104,105,106,107,108,110,111,112,113,115,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,143,144,145,147,149,150,151,152,153,155,158,159,163,164,166,167,168,169,173,174,176,178,179,180,181,184,186,188,189,193,196,197,198,199,201,202,203,204,205,211,213,214,216,217,218,219,220,222,223,225,229,230,231,232,233,239,240,244,245,249,250,257,258,259,263,270,274,287,289,290,293,296,297,304,305,306,313,314,315,316,317,319,320,321,322,324,325,326,327,328,332,334,335,336,338,342,343,360],use_dbref:[205,245,339],use_destin:245,use_evt:327,use_i18n:75,use_item:218,use_nick:[143,205,245],use_required_attribut:[144,235,242,355],use_success_location_messag:202,use_success_messag:202,use_xterm256:319,useabl:233,used:[0,2,3,7,9,10,11,13,15,16,17,19,20,22,23,24,27,29,30,31,34,35,39,40,42,45,46,47,49,50,51,52,53,54,55,56,57,58,59,61,62,63,67,68,71,72,73,78,79,81,82,83,84,85,86,87,88,89,90,92,93,94,95,99,101,102,103,104,106,107,108,109,110,111,112,113,114,115,117,118,119,120,121,122,123,124,125,126,127,128,130,132,133,134,135,136,138,140,143,144,145,149,151,152,153,155,158,163,165,166,167,168,169,174,178,179,181,183,185,186,187,188,189,191,193,194,196,197,198,199,203,204,205,212,214,216,217,218,219,220,229,230,231,232,233,236,238,239,240,242,245,248,250,256,257,258,259,260,262,263,267,270,271,274,275,276,277,278,279,280,281,282,283,285,287,288,289,292,293,294,297,304,306,307,313,314,315,316,317,318,319,320,322,323,324,326,327,328,334,335,336,337,338,339,342,343,348,355,360,361],used_kei:79,useful:[0,1,4,5,10,11,12,13,14,15,16,17,18,19,20,22,23,25,26,27,28,29,30,31,34,36,37,38,40,41,42,45,46,47,49,50,56,57,58,59,62,63,65,68,69,79,80,86,88,89,90,92,94,95,101,103,106,108,109,110,111,113,114,115,118,119,122,123,124,126,130,131,132,137,138,149,151,152,153,155,157,158,165,166,167,169,177,178,179,193,194,198,204,205,209,231,232,233,239,245,249,250,257,265,285,314,316,320,326,327,329,338,342],useless:229,uselock:239,user:[2,4,7,8,10,11,12,13,14,20,22,23,25,28,29,30,31,35,36,37,39,40,41,42,48,49,50,51,52,54,59,62,63,64,65,66,67,69,70,71,73,74,75,76,78,79,80,84,86,87,89,90,92,94,96,97,99,100,103,104,106,108,112,113,118,120,121,122,124,125,126,132,133,134,135,136,137,138,143,144,145,147,150,153,156,158,163,168,173,174,175,176,179,181,186,188,192,194,199,200,205,208,209,214,218,220,226,233,237,239,240,245,250,257,260,263,269,277,284,285,288,293,294,304,306,309,314,316,319,324,326,327,328,334,336,342,343,347,355,360,362],user_input:50,user_permiss:[144,147],useradmin:144,userauth:[93,285],userchangeform:144,usercreationform:[144,355],usernam:[2,4,35,50,73,99,106,118,130,133,143,144,147,185,285,309,347,355],username__contain:118,usernamefield:355,userpassword:[12,156],uses:[0,5,9,13,15,16,17,22,23,29,30,31,33,34,38,39,43,50,56,63,67,68,79,80,85,87,89,93,97,106,108,111,112,113,114,118,123,124,126,129,130,135,136,151,178,184,186,198,200,205,218,225,226,231,232,233,240,254,259,274,294,314,317,334,335,336,342],uses_databas:342,using:[2,4,5,6,8,9,10,11,12,13,14,15,19,20,21,22,23,24,25,26,27,28,29,30,31,33,34,36,37,38,40,42,44,45,46,48,49,50,54,55,56,57,58,59,60,61,62,63,66,67,69,70,71,72,73,76,77,78,79,80,82,84,85,86,87,88,89,90,92,94,95,96,99,100,101,102,104,106,107,108,109,110,111,113,114,115,116,117,119,120,121,122,123,124,125,127,128,130,131,132,133,136,137,138,139,143,147,149,152,153,155,157,158,163,166,167,168,173,178,179,180,183,184,186,187,189,193,199,200,202,204,205,211,212,213,214,216,217,218,219,220,223,229,231,232,233,240,245,248,249,250,254,257,258,259,276,277,278,283,284,288,294,297,307,308,310,314,316,317,319,320,324,326,327,329,334,335,336,337,338,339,340,342,344,355,360,361,362],usr:[62,63,74,99],usual:[0,2,4,5,6,8,9,11,19,20,21,22,23,25,26,27,29,30,31,33,34,37,39,40,42,45,46,49,50,51,56,58,59,61,62,63,66,71,73,79,80,86,88,89,90,92,94,95,96,99,101,104,105,108,109,111,113,114,118,123,124,125,126,130,132,135,143,145,150,151,152,153,155,158,164,168,169,173,174,176,183,193,194,196,197,203,204,205,231,232,240,244,245,250,257,265,267,272,297,304,313,314,316,321,322,326,327,335,337,339,342],utc:[23,343],utf8:[23,36],utf:[15,24,57,73,110,112,270,276,293,328,342],util:[8,10,11,13,14,16,34,40,44,46,47,48,49,50,51,56,57,58,61,62,80,84,85,88,95,96,101,102,110,113,116,123,126,132,133,136,138,140,141,144,157,169,174,176,177,183,186,187,190,194,195,210,212,219,227,235,237,242,245,247,249,257,258,272,291,296,313,314,315,316,344,355,358,362],utilis:326,uyi:204,v19:62,vagu:21,val1:248,val2:248,val:[11,87,143,155,248,289,342],valid:[1,11,13,26,30,31,33,41,42,43,50,57,59,68,87,88,89,90,94,95,96,101,102,108,109,113,118,122,129,132,133,140,141,143,150,152,158,166,167,168,175,178,179,187,191,194,195,199,203,205,214,219,225,226,230,231,232,233,240,245,247,248,249,250,255,256,257,258,259,260,263,265,289,293,304,315,317,320,322,326,336,337,338,339,341,342,343,355,360],valid_handl:336,validate_email_address:342,validate_nam:245,validate_onli:240,validate_password:[50,143],validate_prototyp:249,validate_sess:306,validate_usernam:143,validationerror:[143,249,309,336,338],validator_config:143,validator_kei:336,validatorfunc:[140,141,318],valign:328,valu:[0,2,4,6,10,11,12,17,20,22,25,27,28,31,33,38,40,41,42,48,49,57,58,59,60,61,63,68,72,73,76,79,80,81,83,84,85,86,87,89,96,101,110,113,114,115,122,124,125,126,127,132,133,136,137,138,143,147,149,153,155,156,158,169,174,176,179,181,184,187,188,189,191,194,195,199,202,203,204,205,210,216,217,218,219,220,226,227,231,233,237,239,240,244,245,248,249,250,254,256,257,259,263,270,271,272,274,283,288,289,304,305,306,311,314,315,316,317,319,321,322,323,324,325,326,332,333,336,337,338,339,342,343,348,355,360],valuabl:121,value1:108,value2:108,value_from_datadict:338,value_to_obj:249,value_to_obj_or_ani:249,value_to_str:338,valueerror:[40,90,108,122,179,201,203,314,319,322,334,342,343],valuei:110,values_list:118,valuex:110,vanilla:[9,26,48,55,57,85,100,124],vaniti:50,vari:[30,39,59,63,81,107,113,124,130,192,204,220,304,314,316],variabl:[0,3,5,11,13,28,31,33,40,42,45,48,50,52,54,55,57,63,65,68,79,87,90,94,95,96,99,102,103,105,108,112,120,123,132,133,134,136,137,143,147,149,153,155,158,163,166,167,168,169,182,186,187,191,193,194,197,202,231,239,244,245,249,250,262,265,275,278,279,281,285,287,297,304,311,319,320,326,342,348],variable_from_modul:342,variable_nam:[191,194],variablenam:342,varianc:204,variant:[11,54,111,152,179,185,212,276],variat:[61,72,115,151,186,204,226,342],varieti:[54,81,115,119,218,219],variou:[5,6,11,15,24,33,37,39,40,45,46,47,56,61,68,72,76,80,87,88,89,92,93,96,101,102,104,108,109,111,113,114,115,122,123,124,126,136,138,151,167,183,204,205,214,218,219,229,230,240,244,245,250,251,259,297,322,328,339,340],varnam:289,vast:[23,59,85,107,110,118],vastli:63,vcc:204,vccv:204,vccvccvc:204,vcpython27:9,vcv:204,vcvccv:204,vcvcvcc:204,vcvcvvccvcvv:204,vcvvccvvc:204,vector:342,vehicl:[21,123,138,362],velit:51,venu:[130,175],venv:[62,74],verb:[25,301],verbal:[196,245],verbatim_el:342,verbos:[26,115,126,205],verbose_nam:[132,316],veri:[0,2,4,5,6,8,9,10,11,13,14,17,20,21,22,23,26,27,28,29,31,33,35,37,38,39,40,41,45,48,49,50,51,54,55,56,57,59,60,63,66,67,69,71,72,73,76,77,78,79,84,85,87,89,90,92,94,95,96,103,106,107,108,109,110,111,113,114,115,118,120,121,122,124,126,127,128,130,131,133,136,137,138,139,143,145,151,153,169,174,176,179,181,193,194,203,204,205,211,212,213,214,219,226,229,232,233,236,244,269,315,317,322,324,326,342,360],verif:89,verifi:[36,50,62,89,130,158,187,219,290],verify_online_play:187,verify_or_create_ssl_key_and_cert:290,verify_ssl_key_and_cert:286,verifyfunc:187,versa:[39,42,60,87,104,115,163,274],version:[2,4,7,11,13,14,20,21,23,24,29,30,31,33,35,36,37,40,42,46,50,52,53,56,59,60,62,63,73,74,75,78,80,85,86,89,90,94,95,99,107,110,113,122,123,124,125,127,135,136,138,158,166,168,170,180,181,185,186,200,205,217,218,219,220,223,230,245,250,265,270,284,308,313,314,319,327,342,355,362],version_info:265,versu:54,vertic:[136,137,230,328,342],very_strong:240,very_weak:79,vest:102,vet:108,veteran:78,vfill_char:328,via:[10,11,27,37,39,50,51,54,55,56,62,69,72,73,82,84,85,89,91,92,100,102,107,108,113,118,122,124,125,130,136,171,175,176,208,244,254,314,317,319,333],viabl:229,vice:[39,42,60,87,104,115,163,274],vicin:[33,42,164,186,231],video:[78,94,113,136],vienv:9,view:[1,4,17,27,34,40,41,42,49,50,51,54,57,59,62,63,71,79,81,85,89,95,100,101,109,110,114,115,122,123,130,135,138,140,143,155,156,158,163,164,165,168,173,174,181,205,216,217,218,219,220,233,235,237,245,247,300,316,344,348,351,354,355,362],view_attr:158,viewabl:[54,165],viewer:[25,68,205,233,239,245,316],viewport:41,vim:[14,49,78,324],vincent:[179,186,200,203,232],violent:50,virtual:[4,40,42,52,54,56,58,62,78,89,123,168,186,329],virtual_env:74,virtualenv:[9,23,26,36,62,74,75,89,92,94,95,96,99,105,109,127],virtualhost:8,visibl:[13,25,31,36,42,47,53,60,62,68,80,89,95,104,113,122,124,130,138,164,205,239,245,277,310,326],visiblelock:239,vision:[11,57,60],visit:[22,48,89,110,132,133,232,326],visitor:[102,133,134],vista:62,visual:[25,56,62,92,113,136,143,165,189],vital:90,vlgeoff:183,vniftg:62,vnum:55,vocabulari:[45,342],voic:[33,45,123,138,362],volum:[21,60,99],volund:118,voluntari:37,volupt:51,vowel:[118,204],vpad_char:328,vulner:[29,102],vvc:204,vvcc:204,vvccv:204,vvccvvcc:204,w001:126,wai:[0,2,5,6,9,10,11,12,13,14,15,19,20,21,22,23,27,28,30,31,33,37,38,39,40,41,42,43,45,47,48,52,53,54,55,56,57,60,61,62,63,67,68,69,71,72,73,74,78,79,81,82,83,84,85,86,87,88,89,90,91,92,94,95,96,97,101,102,103,104,105,106,108,109,110,111,112,113,114,115,116,117,118,120,121,122,123,124,125,126,127,128,130,131,132,135,137,138,139,143,150,151,158,165,174,178,183,184,186,187,189,193,196,197,204,211,212,214,216,217,218,219,220,223,229,230,232,240,245,257,259,265,270,274,285,306,310,311,312,315,317,320,325,326,328,332,335,338,360,362],wail:48,waist:181,wait:[0,10,20,25,27,28,29,33,41,50,101,120,137,145,193,197,216,217,218,219,220,257,265,275,294,296,308,322,342],wait_for_disconnect:275,wait_for_server_connect:275,wait_for_statu:265,wait_for_status_repli:265,waiter:265,wake:187,walias:[42,158],walk:[0,14,21,31,38,45,48,59,61,84,138,212,213,214,233,320],walki:63,wall:[110,156,164,186,230,231],wanna:[37,178],want:[0,2,3,4,5,6,8,9,10,11,12,13,14,15,19,20,21,22,23,25,26,27,28,29,30,31,33,34,35,37,38,39,40,41,42,43,45,47,48,49,50,52,53,56,57,59,60,61,62,63,65,67,68,69,70,71,72,73,74,75,76,77,79,80,81,82,83,84,85,86,87,88,89,90,92,94,95,96,97,101,102,103,104,105,106,107,108,109,110,112,113,114,117,118,120,121,122,124,125,126,127,130,131,132,133,134,135,136,137,139,143,151,152,153,155,164,169,173,178,179,185,186,187,189,196,203,205,208,214,216,217,218,219,220,226,231,233,235,239,240,245,250,257,259,281,283,289,296,306,311,313,314,316,324,327,332,338,342,355,360,361],wanted_id:79,ware:84,warehous:[208,320],wari:[113,233,245,316],warm:[101,109,269],warn:[8,23,27,31,58,59,62,63,89,90,92,103,104,110,127,133,137,139,151,173,209,264,265,290,335,362],warnmsg:335,warrior:[28,56,57,60,121,122],wasclean:[276,293],wasn:[0,41,133],wast:[6,14,114],watch:[14,83,105,138],water:[152,199,202],waterballon:202,wave:110,wcach:[42,168],wcactu:219,wcommandnam:232,wcure:219,wdestin:[42,158],weak:250,weakref:332,weaksharedmemorymodel:[272,332],weaksharedmemorymodelbas:[272,332],weakvalu:332,wealth:84,weapon:[29,50,60,63,72,76,81,84,85,108,115,121,217,229,230,250],weapon_ineffective_msg:229,weapon_prototyp:230,weaponrack_cmdset:230,wear:[81,181,205,217],wearabl:181,wearer:181,wearstyl:181,weather:[30,60,72,101,110,111,114,121,123,138,139,231,362],weather_script:101,weatherroom:[131,231],web:[4,8,9,16,17,23,25,30,46,54,60,62,63,66,68,71,74,75,78,79,93,94,100,108,109,118,138,140,141,172,267,269,279,283,289,293,294,304,308,310,317,323,362],web_client_url:53,web_get_admin_url:[174,237,316],web_get_create_url:[174,237,316],web_get_delete_url:[174,237,316],web_get_detail_url:[174,237,316],web_get_puppet_url:316,web_get_update_url:[174,237,316],webclient:[24,30,39,42,44,53,63,68,82,87,94,102,104,109,113,134,138,140,141,168,260,270,273,289,294,305,344,348,349,358,362],webclient_ajax:[136,140,260,273],webclient_en:102,webclient_opt:270,webclientdata:294,webclienttest:358,webpag:[8,17,76,89,352],webport:36,webserv:[3,7,8,9,23,39,46,54,89,99,100,103,134,138,140,141,260,344],webserver_en:102,webserver_interfac:[66,89],webserver_port:[36,89],webservic:102,websit:[3,9,17,54,56,63,66,68,78,89,97,100,102,123,132,135,136,137,138,140,141,144,294,310,344,349,362],websocket:[24,39,54,63,89,99,136,276,282,293,305],websocket_client_interfac:[66,89],websocket_client_port:89,websocket_client_url:[8,66,89],websocket_clos:293,websocketcli:293,websocketclientfactori:276,websocketclientprotocol:276,websocketserverfactori:282,websocketserverprotocol:293,weed:[26,118,151],week:[61,183,335,343],weeklylogfil:335,weigh:[81,296],weight:[23,60,107,123,138,189,204,315,362],weird:342,weirdli:95,welcom:[3,4,22,24,35,37,62,71,75,84],well:[2,4,6,9,11,12,16,17,19,21,22,23,25,26,33,37,38,39,40,42,43,44,45,48,49,50,51,54,56,57,60,61,63,65,67,68,70,73,74,80,84,87,88,90,95,97,102,103,104,105,107,108,112,115,117,118,119,122,123,124,126,127,130,132,133,134,135,137,147,151,152,153,158,163,168,171,178,181,186,193,201,204,205,214,218,219,220,225,229,245,254,260,265,274,276,277,283,300,308,313,314,315,319,323,326,329,338,342,361],went:[56,109,126,130,255,259],were:[1,10,11,13,24,31,33,37,41,43,50,57,58,63,68,76,81,84,85,90,99,101,103,107,108,118,122,124,125,126,136,143,150,151,152,203,214,245,249,312,316,320,339,342],weren:61,werewolf:25,werewolv:118,werkzeug:342,west:[20,25,43,48,110,158,199,231],west_east:110,west_exit:231,western:110,westward:231,wether:[178,322],wevennia:22,wflame:219,wflushmem:[42,168],wfull:219,what:[0,1,2,4,8,9,10,12,13,14,19,20,21,22,23,25,26,27,29,31,33,38,39,41,42,43,44,45,47,48,50,52,55,56,57,59,60,61,62,63,67,68,69,71,72,73,76,77,78,79,80,82,84,85,87,88,89,92,93,94,95,96,97,101,102,103,104,107,108,109,110,112,113,114,115,116,117,118,120,121,122,123,124,125,126,127,128,129,130,131,132,133,135,137,138,139,143,149,151,152,153,155,158,165,169,174,194,202,203,205,208,213,218,219,223,226,229,231,237,240,245,249,250,265,267,270,277,289,294,309,311,314,316,317,319,320,326,336,337,342,343,347,355,360,362],whatev:[2,11,14,21,22,23,27,33,39,42,45,47,50,55,57,60,63,77,81,88,90,99,101,110,122,126,130,132,133,137,143,145,152,158,187,219,229,230,245,250,254,255,276,285,288,293,306,314,327,336,360],whatnot:137,wheel:[56,62,74,114,256],whelp:232,when:[0,2,3,4,5,6,8,9,10,11,12,13,14,15,17,19,20,21,22,23,26,27,29,30,31,33,34,35,36,37,38,39,40,41,42,43,45,46,48,49,50,51,55,56,57,58,59,60,61,62,63,64,65,67,68,72,73,74,75,76,77,78,79,81,82,83,84,85,86,87,88,89,90,92,94,95,96,97,99,101,102,103,104,105,106,107,108,109,110,111,112,113,115,116,117,118,119,120,121,122,123,124,125,126,127,128,130,131,132,135,136,137,138,140,143,145,147,149,151,152,153,155,157,158,163,164,166,167,168,170,174,175,176,178,179,180,181,183,184,185,186,187,188,189,194,195,196,197,198,199,200,201,202,203,204,205,211,213,214,216,217,218,219,220,222,223,225,226,227,229,230,231,232,233,236,237,239,240,244,245,247,249,250,254,255,257,258,259,262,265,267,271,272,274,275,276,277,278,279,280,281,283,285,286,287,288,289,290,293,294,296,297,303,304,305,306,307,308,314,316,317,319,320,322,323,324,325,326,327,328,332,333,334,335,337,342,355,360],when_stop:265,whenev:[6,10,11,22,25,33,45,63,65,73,75,79,83,86,89,94,97,99,101,105,106,108,110,112,116,118,127,143,152,173,174,229,230,231,245,255,257,267,284,304,305,306],where:[0,1,3,6,9,10,11,12,13,14,20,21,22,25,26,29,31,33,36,38,39,40,41,42,45,47,48,49,50,51,52,55,56,57,58,60,61,63,68,72,74,75,79,82,84,85,87,89,90,94,99,101,102,103,104,107,108,110,112,113,116,117,118,120,121,122,123,124,126,130,132,133,134,135,136,137,138,150,151,156,158,164,167,174,175,180,184,196,198,199,204,205,209,218,230,231,233,239,240,245,248,249,250,255,265,267,270,274,289,297,302,306,313,316,319,320,324,326,327,328,334,336,337,342,360],wherea:[11,12,13,19,21,26,31,33,34,39,41,54,55,60,79,80,84,85,92,96,102,104,108,112,113,115,124,127,204,223,226,259,294,314,332],whereabout:121,wherebi:219,wherev:[11,62,63,99,110,126,179,208,218],whether:[0,12,38,42,45,50,54,61,68,76,120,143,145,152,158,163,165,174,187,214,216,217,218,219,220,239,245,259,276,293,308,314,315,319,334,336,338,342],whewiu:9,which:[0,1,3,4,5,6,9,10,11,12,13,14,15,19,20,22,24,25,26,27,28,29,30,31,33,34,36,37,38,39,40,41,42,43,45,48,50,51,52,55,56,57,58,59,60,61,62,63,64,65,68,70,71,72,73,75,76,79,80,81,82,84,85,86,87,88,89,90,92,93,94,95,96,99,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,124,125,126,130,131,132,133,134,135,136,137,138,139,143,145,149,151,152,153,155,156,158,164,166,167,168,169,173,174,175,176,178,179,180,181,182,183,186,187,189,196,197,198,199,201,205,208,209,211,213,214,216,217,218,219,220,225,226,229,230,231,232,233,237,240,244,245,249,250,254,255,257,258,259,262,264,265,269,270,277,283,285,293,294,296,297,304,305,306,308,311,313,314,315,316,317,319,320,322,323,326,327,328,329,332,334,335,336,338,339,340,342,347,348,355,360,361],whichev:[27,89,102,231],whilst:[76,110,199],whim:138,whisp:204,whisper:[45,164,196,197,204,205,245],white:[47,73,113,125,342],whitelist:73,whitepag:[1,47,137],whitespac:[14,27,33,57,80,118,122,166,167,201,205,319,320,328,342],who:[4,10,11,12,21,34,40,45,48,50,54,55,57,60,72,79,86,94,102,108,113,115,118,120,122,123,124,131,132,137,145,153,155,158,163,173,174,178,187,194,205,216,217,218,219,220,230,237,239,240,245,250,316,324],whoever:132,whole:[4,16,42,48,54,56,59,60,86,95,110,111,121,122,128,137,158,168,220,328],wholist:174,whome:[42,158],whomev:[72,113,120],whose:[87,113,118,124,143,194,205,214,216,217,218,219,220,270,321,326,342],whould:326,why:[0,11,12,20,22,25,38,40,42,43,45,50,54,59,62,63,81,90,94,95,102,110,122,124,125,138,156,203,216,219,220,262,263,326],wide:[16,25,27,38,42,57,60,72,85,90,137,156,218,219,233,325,328,342],widen:12,wider:[12,25,38,42,156,328],widest:342,widget:[144,235,242,313,338,355],width:[16,17,25,27,33,48,73,108,110,113,140,153,248,270,285,304,319,324,325,327,328,334,342],wield:[60,81,108,217],wifi:[89,102],wiki:[1,9,33,37,44,47,54,57,69,78,93,107,110,123,124,137,179,293,361,362],wiki_account_handl:4,wiki_account_signup_allow:4,wiki_can:4,wiki_can_admin:4,wiki_can_assign:4,wiki_can_assign_own:4,wiki_can_change_permiss:4,wiki_can_delet:4,wiki_can_moder:4,wiki_can_read:4,wiki_can_writ:4,wikiconfig:4,wikipedia:[15,54,112,126,130,293],wild:[107,125,130],wildcard:[12,42,56,86,156,158,342],wildcard_to_regexp:342,wilder:[140,141,177],wildernessexit:233,wildernessmap:233,wildernessmapprovid:233,wildernessroom:233,wildernessscript:233,wildli:204,will_suppress_ga:287,will_ttyp:292,willing:[57,60,78],win10:62,win7:62,win8:62,win:[9,24,90,115],wind:[121,131],window:[4,23,25,31,43,44,48,51,52,63,71,75,82,87,88,92,94,95,96,100,104,105,109,127,130,136,137,153,165,265,281,304,308,327,342],windowid:304,windows10:62,wingd:110,winpti:9,winter:186,wintext:72,wipe:[9,13,23,110,137,158,168,218],wire:[27,39,63,82,87,89,112,137,167,262,274,275,306,319],wis:57,wisdom:[59,92],wise:[6,11,13,14,15,26,57,59,79,95,117,130,134],wise_text:59,wiseobject:59,wiser:20,wiseword:59,wish:[33,36,38,74,119,130,135,179,220,319,341,355],with_metaclass:95,with_tag:202,withdraw:[115,220],withdrawl:220,within:[1,8,9,10,11,22,24,26,31,33,37,38,42,46,48,50,55,57,63,89,93,94,96,99,113,114,115,116,117,118,119,123,125,130,133,135,136,137,143,147,149,158,178,186,189,191,209,236,245,250,308,314,315,319,334,335,342,355,360],without:[0,8,11,12,13,14,16,20,21,22,23,25,27,29,30,31,33,35,37,39,41,42,43,45,48,49,50,54,56,57,58,59,60,62,63,65,75,79,85,87,89,90,91,92,95,96,99,100,103,106,107,108,113,114,117,118,120,122,124,125,126,127,128,130,132,135,137,138,143,145,150,153,155,156,158,163,164,166,167,168,169,176,178,180,181,186,191,194,196,199,204,205,211,214,216,219,220,229,231,240,245,248,249,250,257,258,274,285,288,289,296,306,307,314,316,319,320,322,323,324,326,327,334,338,339],withstand:79,wiz:57,wizard:[108,250,263,265],wkei:[42,158],wlocat:[42,158],wlock:[42,158],wmagic:219,wmass:219,wndb_:[42,158],won:[0,2,4,10,11,12,13,15,21,22,23,29,31,40,41,45,56,60,62,68,72,77,80,82,84,85,90,94,95,99,110,113,118,122,124,126,133,136,137,152,187,203,222,223,225,226,310,319,338],wonder:[9,16,55,81,118,137],wont_suppress_ga:287,wont_ttyp:292,wooden:108,woosh:21,word:[14,27,33,42,45,48,49,52,61,68,69,71,75,87,88,90,92,93,94,95,96,110,118,121,125,130,135,150,166,167,170,185,197,204,205,277,324,339,342],word_fil:204,word_length_vari:204,wordi:204,work:[0,2,4,5,8,9,10,11,13,14,15,16,20,21,22,23,24,25,26,27,28,29,31,34,36,37,40,41,42,43,47,48,50,52,55,56,57,58,59,60,61,62,63,65,69,70,71,74,79,80,82,83,84,85,88,89,92,93,94,95,96,101,102,104,105,107,108,110,111,113,114,115,116,118,121,122,123,125,126,127,128,131,132,133,135,137,138,149,152,153,155,158,163,164,166,168,173,174,178,179,180,186,201,202,205,211,214,218,219,220,231,232,233,237,239,240,245,249,250,265,269,270,282,297,310,312,314,316,320,325,328,336,342,360,361,362],workaround:[62,99,130],workflow:[60,144],world:[9,10,11,13,14,15,21,27,31,33,34,38,40,46,48,50,54,56,57,59,61,62,63,67,71,72,77,78,79,81,85,89,95,103,107,108,110,112,115,116,120,122,123,126,130,136,138,143,157,158,165,173,178,183,199,201,205,216,217,218,219,220,230,231,233,237,254,304,306,319,320,329,361,362],world_map:110,worm:48,worm_has_map:48,worn:[181,217],worri:[0,11,15,36,38,40,50,54,103,112,113,122,126,137,178,226],worst:60,worth:[0,8,21,29,50,60,69,78,90,92,123,124,132,178],worthi:60,worthless:89,would:[0,1,4,6,8,9,10,11,13,14,15,16,19,20,21,22,25,27,29,31,33,36,38,40,41,42,43,45,47,48,50,54,55,56,57,59,60,61,62,63,67,68,72,76,79,80,81,84,85,87,88,89,90,92,94,95,99,101,104,105,108,110,111,113,114,115,116,117,118,120,122,124,125,126,127,132,133,134,135,137,139,143,150,151,152,158,167,174,178,183,194,196,204,214,223,226,232,233,237,239,240,249,250,277,313,316,319,320,323,326,334,337,338,340],wouldn:[38,125,137],wound:219,wow:[68,137],wpermiss:[42,158],wprototype_desc:[42,158],wprototype_kei:[42,158],wprototype_lock:[42,158],wprototype_par:[42,158],wprototype_tag:[42,158],wrap:[10,30,48,50,58,95,101,108,118,135,181,187,205,272,312,328,342],wrap_conflictual_object:338,wrapper:[10,27,29,50,73,85,92,104,118,124,143,147,174,175,176,211,237,244,245,254,258,270,272,304,313,314,316,317,319,328,332,333,335,342,360],wresid:[42,168],write:[0,4,10,11,14,15,16,20,22,23,25,27,31,33,34,37,40,42,43,44,45,47,50,52,55,57,61,62,64,67,68,70,71,86,87,90,92,93,95,107,122,123,124,128,129,130,137,158,165,173,179,196,208,209,232,245,278,335,340,360,362],writeabl:74,written:[15,27,53,55,56,57,60,78,102,108,126,132,133,165,208,320,360],wrong:[26,40,41,42,59,62,80,84,94,109,126,151,158,168,205],wserver:[42,168],wservic:[42,163],wsgi:[8,93,310],wsgi_resourc:310,wsgiwebserv:310,wsl:62,wss:[8,66,89],wtypeclass:[42,158],wwhere:[196,245],www:[8,9,22,54,107,127,132,140,280,281,287,289,341,355],wyou:81,x0c:158,x1b:[319,341],x2x:57,x4x:325,x5x:325,x6x:325,x7x:325,x8x:325,x9x:325,x_r:38,xcode:62,xforward:310,xgettext:75,xit:[22,179],xmlcharrefreplac:319,xp_gain:72,xpo:328,xterm256:[42,54,73,80,82,136,155,182,189,270,285,288,319,362],xterm256_bg:319,xterm256_bg_sub:319,xterm256_fg:319,xterm256_fg_sub:319,xterm256_gbg:319,xterm256_gbg_sub:319,xterm256_gfg:319,xterm256_gfg_sub:319,xterm:[113,125],xterms256:113,xval:33,xxx:[25,41,203],xxxx:203,xxxxx1xxxxx:325,xxxxx3xxxxx:325,xxxxxxx2xxxxxxx:325,xxxxxxxxxx3xxxxxxxxxxx:57,xxxxxxxxxx4xxxxxxxxxxx:57,xxxxxxxxxxx:325,xxxxxxxxxxxxxx1xxxxxxxxxxxxxxx:57,xxxxxxxxxxxxxxxxxxxxxx:57,xxxxxxxxxxxxxxxxxxxxxxxxxxxxxx:57,xyz:86,y_r:38,yan:113,yank:49,yeah:137,year:[54,60,61,87,89,107,183,329,335,342,355],yearli:[61,89],yellow:[113,125,130,230],yep:137,yes:[10,33,38,45,50,125,137,158,197,263,324,342],yesno:[50,324],yet:[0,2,4,12,14,22,25,28,35,36,40,41,45,48,50,53,59,62,63,75,78,85,89,93,95,104,108,110,118,120,127,130,132,133,137,143,170,178,185,194,199,240,244,283,306,310,319,360],yield:[10,23,33,79,107,158,209,328,342],yml:[99,129],yogurt:202,you:[0,1,2,3,4,5,6,8,9,10,11,12,13,14,15,16,17,19,20,21,22,23,25,27,28,29,30,31,33,34,35,36,37,38,39,40,41,42,43,45,46,47,48,49,50,52,53,55,56,57,58,59,60,61,62,63,64,65,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,94,95,96,97,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,143,152,153,155,158,163,164,165,166,167,168,169,170,173,178,179,180,181,182,183,186,187,189,192,193,194,196,197,198,199,200,201,202,203,204,205,208,209,211,212,213,214,216,217,218,219,220,222,223,225,226,230,231,232,233,235,239,240,245,250,256,257,259,267,276,277,278,294,296,306,308,310,311,314,316,319,320,322,325,326,328,329,338,339,342,355,360,361],young:76,your:[0,1,3,5,6,7,8,9,10,11,12,13,14,15,16,17,21,22,23,25,27,29,30,31,34,35,36,37,40,41,42,43,44,45,46,47,48,49,50,52,53,54,55,56,57,58,60,61,62,63,64,65,66,67,68,69,70,71,72,74,75,76,77,78,79,80,81,82,84,86,87,90,92,94,95,97,100,101,103,104,105,106,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,128,129,131,133,134,135,137,138,139,143,147,150,152,153,155,156,158,163,164,168,169,170,178,179,181,182,183,184,185,186,187,189,193,196,199,203,204,205,208,209,212,214,216,217,218,219,220,222,230,231,232,233,239,240,244,296,313,316,319,324,326,328,338,339,340,342,343,355,360,362],your_email:130,yourgam:208,yourhost:66,yournam:8,yourpassword:23,yourrepo:105,yourself:[0,2,5,6,14,16,19,22,23,26,31,37,41,42,50,54,57,62,68,69,72,77,79,85,88,89,90,95,101,107,110,118,122,124,129,130,134,158,164,178,188,205,211,219,222,326],yoursit:132,yourusernam:130,yourwebsit:132,yousuck:12,yousuckmor:12,youth:187,youtub:130,ypo:328,yrs:183,ythi:113,yum:[8,66,130],yvonn:57,z_r:38,zed:[76,78],zero:[20,27,108,205,245,314,319],zine:60,zip:102,zlib:[74,274,278],zmud:[24,280],zone:[18,45,54,55,69,78,111,118,121,123,138,317,335,362],zope:96,zopeinterfac:62,zuggsoft:280},titles:["A voice operated elevator using events","API refactoring","Accounts","Add a simple new web page","Add a wiki on your website","Adding Command Tutorial","Adding Object Typeclass Tutorial","Administrative Docs","Apache Config","Arxcode installing help","Async Process","Attributes","Banning","Batch Code Processor","Batch Command Processor","Batch Processors","Bootstrap & Evennia","Bootstrap Components and Utilities","Builder Docs","Building Permissions","Building Quickstart","Building a mech tutorial","Building menus","Choosing An SQL Server","Client Support Grid","Coding FAQ","Coding Introduction","Coding Utils","Command Cooldown","Command Duration","Command Prompt","Command Sets","Command System","Commands","Communications","Connection Screen","Continuous Integration","Contributing","Coordinates","Custom Protocols","Customize channels","Debugging","Default Command Help","Default Exit Errors","Developer Central","Dialogues in events","Directory Overview","Docs refactoring","Dynamic In Game Map","EvEditor","EvMenu","EvMore","Evennia API","Evennia Game Index","Evennia Introduction","Evennia for Diku Users","Evennia for MUSH Users","Evennia for roleplaying sessions","Execute Python Code","First Steps Coding","Game Planning","Gametime Tutorial","Getting Started","Glossary","Grapevine","Guest Logins","HAProxy Config (Optional)","Help System","Help System Tutorial","How To Get And Give Help","How to connect Evennia to Twitter","IRC","Implementing a game rule system","Inputfuncs","Installing on Android","Internationalization","Learn Python for Evennia The Hard Way","Licensing","Links","Locks","Manually Configuring Color","Mass and weight for objects","Messagepath","MonitorHandler","NPC shop Tutorial","New Models","Nicks","OOB","Objects","Online Setup","Parsing command arguments, theory and best practices","Portal And Server","Profiling","Python 3","Python basic introduction","Python basic tutorial part two","Quirks","RSS","Roadmap","Running Evennia in Docker","Screenshot","Scripts","Security","Server Conf","Sessions","Setting up PyCharm","Signals","Soft Code","Spawner and Prototypes","Start Stop Reload","Static In Game Map","Tags","Text Encodings","TextTags","TickerHandler","Turn based Combat System","Tutorial Aggressive NPCs","Tutorial NPCs listening","Tutorial Searching For Objects","Tutorial Tweeting Game Stats","Tutorial Vehicles","Tutorial World Introduction","Tutorial for basic MUSH like game","Tutorials","Typeclasses","Understanding Color Tags","Unit Testing","Updating Your Game","Using MUX as a Standard","Using Travis","Version Control","Weather Tutorial","Web Character Generation","Web Character View Tutorial","Web Features","Web Tutorial","Webclient","Webclient brainstorm","Wiki Index","Zones","evennia","evennia","evennia.accounts","evennia.accounts.accounts","evennia.accounts.admin","evennia.accounts.bots","evennia.accounts.manager","evennia.accounts.models","evennia.commands","evennia.commands.cmdhandler","evennia.commands.cmdparser","evennia.commands.cmdset","evennia.commands.cmdsethandler","evennia.commands.command","evennia.commands.default","evennia.commands.default.account","evennia.commands.default.admin","evennia.commands.default.batchprocess","evennia.commands.default.building","evennia.commands.default.cmdset_account","evennia.commands.default.cmdset_character","evennia.commands.default.cmdset_session","evennia.commands.default.cmdset_unloggedin","evennia.commands.default.comms","evennia.commands.default.general","evennia.commands.default.help","evennia.commands.default.muxcommand","evennia.commands.default.syscommands","evennia.commands.default.system","evennia.commands.default.tests","evennia.commands.default.unloggedin","evennia.comms","evennia.comms.admin","evennia.comms.channelhandler","evennia.comms.comms","evennia.comms.managers","evennia.comms.models","evennia.contrib","evennia.contrib.barter","evennia.contrib.building_menu","evennia.contrib.chargen","evennia.contrib.clothing","evennia.contrib.color_markups","evennia.contrib.custom_gametime","evennia.contrib.dice","evennia.contrib.email_login","evennia.contrib.extended_room","evennia.contrib.fieldfill","evennia.contrib.gendersub","evennia.contrib.health_bar","evennia.contrib.ingame_python","evennia.contrib.ingame_python.callbackhandler","evennia.contrib.ingame_python.commands","evennia.contrib.ingame_python.eventfuncs","evennia.contrib.ingame_python.scripts","evennia.contrib.ingame_python.tests","evennia.contrib.ingame_python.typeclasses","evennia.contrib.ingame_python.utils","evennia.contrib.mail","evennia.contrib.mapbuilder","evennia.contrib.menu_login","evennia.contrib.multidescer","evennia.contrib.puzzles","evennia.contrib.random_string_generator","evennia.contrib.rplanguage","evennia.contrib.rpsystem","evennia.contrib.security","evennia.contrib.security.auditing","evennia.contrib.security.auditing.outputs","evennia.contrib.security.auditing.server","evennia.contrib.security.auditing.tests","evennia.contrib.simpledoor","evennia.contrib.slow_exit","evennia.contrib.talking_npc","evennia.contrib.tree_select","evennia.contrib.turnbattle","evennia.contrib.turnbattle.tb_basic","evennia.contrib.turnbattle.tb_equip","evennia.contrib.turnbattle.tb_items","evennia.contrib.turnbattle.tb_magic","evennia.contrib.turnbattle.tb_range","evennia.contrib.tutorial_examples","evennia.contrib.tutorial_examples.bodyfunctions","evennia.contrib.tutorial_examples.cmdset_red_button","evennia.contrib.tutorial_examples.example_batch_code","evennia.contrib.tutorial_examples.red_button","evennia.contrib.tutorial_examples.red_button_scripts","evennia.contrib.tutorial_examples.tests","evennia.contrib.tutorial_world","evennia.contrib.tutorial_world.mob","evennia.contrib.tutorial_world.objects","evennia.contrib.tutorial_world.rooms","evennia.contrib.unixcommand","evennia.contrib.wilderness","evennia.help","evennia.help.admin","evennia.help.manager","evennia.help.models","evennia.locks","evennia.locks.lockfuncs","evennia.locks.lockhandler","evennia.objects","evennia.objects.admin","evennia.objects.manager","evennia.objects.models","evennia.objects.objects","evennia.prototypes","evennia.prototypes.menus","evennia.prototypes.protfuncs","evennia.prototypes.prototypes","evennia.prototypes.spawner","evennia.scripts","evennia.scripts.admin","evennia.scripts.manager","evennia.scripts.models","evennia.scripts.monitorhandler","evennia.scripts.scripthandler","evennia.scripts.scripts","evennia.scripts.taskhandler","evennia.scripts.tickerhandler","evennia.server","evennia.server.admin","evennia.server.amp_client","evennia.server.connection_wizard","evennia.server.deprecations","evennia.server.evennia_launcher","evennia.server.game_index_client","evennia.server.game_index_client.client","evennia.server.game_index_client.service","evennia.server.initial_setup","evennia.server.inputfuncs","evennia.server.manager","evennia.server.models","evennia.server.portal","evennia.server.portal.amp","evennia.server.portal.amp_server","evennia.server.portal.grapevine","evennia.server.portal.irc","evennia.server.portal.mccp","evennia.server.portal.mssp","evennia.server.portal.mxp","evennia.server.portal.naws","evennia.server.portal.portal","evennia.server.portal.portalsessionhandler","evennia.server.portal.rss","evennia.server.portal.ssh","evennia.server.portal.ssl","evennia.server.portal.suppress_ga","evennia.server.portal.telnet","evennia.server.portal.telnet_oob","evennia.server.portal.telnet_ssl","evennia.server.portal.tests","evennia.server.portal.ttype","evennia.server.portal.webclient","evennia.server.portal.webclient_ajax","evennia.server.profiling","evennia.server.profiling.dummyrunner","evennia.server.profiling.dummyrunner_settings","evennia.server.profiling.memplot","evennia.server.profiling.settings_mixin","evennia.server.profiling.test_queries","evennia.server.profiling.tests","evennia.server.profiling.timetrace","evennia.server.server","evennia.server.serversession","evennia.server.session","evennia.server.sessionhandler","evennia.server.signals","evennia.server.throttle","evennia.server.validators","evennia.server.webserver","evennia.settings_default","evennia.typeclasses","evennia.typeclasses.admin","evennia.typeclasses.attributes","evennia.typeclasses.managers","evennia.typeclasses.models","evennia.typeclasses.tags","evennia.utils","evennia.utils.ansi","evennia.utils.batchprocessors","evennia.utils.containers","evennia.utils.create","evennia.utils.dbserialize","evennia.utils.eveditor","evennia.utils.evform","evennia.utils.evmenu","evennia.utils.evmore","evennia.utils.evtable","evennia.utils.gametime","evennia.utils.idmapper","evennia.utils.idmapper.manager","evennia.utils.idmapper.models","evennia.utils.idmapper.tests","evennia.utils.inlinefuncs","evennia.utils.logger","evennia.utils.optionclasses","evennia.utils.optionhandler","evennia.utils.picklefield","evennia.utils.search","evennia.utils.test_resources","evennia.utils.text2html","evennia.utils.utils","evennia.utils.validatorfuncs","evennia.web","evennia.web.urls","evennia.web.utils","evennia.web.utils.backends","evennia.web.utils.general_context","evennia.web.utils.middleware","evennia.web.utils.tests","evennia.web.webclient","evennia.web.webclient.urls","evennia.web.webclient.views","evennia.web.website","evennia.web.website.forms","evennia.web.website.templatetags","evennia.web.website.templatetags.addclass","evennia.web.website.tests","evennia.web.website.urls","evennia.web.website.views","VERSION WARNING","Toc"],titleterms:{"3rd":137,"9th":137,"case":0,"class":[22,27,33,40,95,124,126],"default":[5,6,25,30,42,43,54,59,73,79,136,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170],"final":[48,74],"function":[22,41,79,88,94,101,113],"goto":50,"import":[26,40,52,94],"new":[3,4,6,57,59,68,85,96,101,113,124,126,132],"public":53,"return":[50,58,104],"static":110,"super":19,"switch":40,"try":40,Adding:[0,4,5,6,9,20,25,31,38,39,40,43,73,85,111,120,132],And:[69,91],For:118,NOT:76,PMs:57,TLS:8,The:[3,10,11,13,14,16,18,19,22,26,29,40,45,46,48,49,50,57,68,76,82,84,92,95,108,115,122,134],USE:76,Use:[26,102],Using:[48,51,83,85,89,92,108,111,126,128,129,139],Yes:50,__unloggedin_look_command:42,abort:29,about:[29,42,114,124,127],abus:12,access:42,access_typ:79,account:[2,42,57,63,96,142,143,144,145,146,147,155],activ:[56,132],actual:[33,124],add:[3,4,23,25,59],add_choic:22,addclass:357,addcom:42,adding:126,addit:[9,38,40,43,99],address:25,admin:[42,63,96,134,144,156,172,235,242,252,261,313],administr:7,advanc:[18,29,86,109],affect:239,aggress:116,alia:[42,96],alias:111,all:[25,68],allcom:42,alpha:60,altern:[9,105],amp:274,amp_client:262,amp_serv:275,analyz:92,android:74,ani:[13,54],annot:118,anoth:[40,118],ansi:[27,113,125,319],apach:8,api:[1,44,52,136],app:[68,132],arbitrari:50,area:[110,122],arg:90,arg_regex:33,argument:[1,50,90],arm:21,arx:9,arxcod:9,ascii:27,ask:[33,50],assign:[19,33],assort:[10,14,31,33,39,50,111,117],async:10,asynchron:10,attach:[105,106],attack:122,attribut:[11,63,96,314],attributehandl:11,audit:[207,208,209,210],aug:[1,47],auto:67,automat:25,avail:[35,58,106],backend:347,ban:[12,42],barter:178,base:[25,108,115],basic:[4,13,14,18,54,70,94,95,122,126,135],batch:[13,14,15,320],batchcod:[13,42],batchcommand:42,batchprocess:[42,157],batchprocessor:320,befor:26,best:90,beta:60,between:[13,50,124],blank:24,block:[13,29],bodyfunct:222,boot:[12,42],bootstrap:[16,17],border:17,bot:145,brainstorm:[44,137],branch:[50,130],bridg:76,brief:[54,68],briefli:87,bug:96,build:[18,19,20,21,22,42,48,57,60,84,110,123,158],builder:18,building_menu:[22,179],busi:84,button:[17,20],calendar:61,call:33,callback:[0,45,136],callbackhandl:191,caller:50,can:[11,22,54,66],capcha:132,card:17,care:102,caveat:[13,14,74,113,124],cboot:42,ccreat:42,cdesc:42,cdestroi:42,cemit:42,central:44,chainsol:137,chang:[0,5,6,25,57,59,75,96,102,107,127,130,135],channel:[25,34,40,42,57,63],channelhandl:173,charact:[6,24,25,45,57,59,60,63,72,81,88,95,122,132,133],charcreat:42,chardelet:42,chargen:[122,180],chat:137,cheat:41,check:[11,79],checker:26,checkpoint:132,choic:22,choos:23,clean:9,clickabl:113,client:[24,82,87,89,134,136,267],client_opt:73,clock:42,clone:[9,130],cloth:181,cloud9:89,cmdabout:42,cmdaccess:42,cmdaddcom:42,cmdallcom:42,cmdban:42,cmdbatchcod:42,cmdbatchcommand:42,cmdboot:42,cmdcboot:42,cmdcdesc:42,cmdcdestroi:42,cmdcemit:42,cmdchannel:42,cmdchannelcr:42,cmdcharcreat:42,cmdchardelet:42,cmdclock:42,cmdcolortest:42,cmdcopi:42,cmdcpattr:42,cmdcreat:42,cmdcwho:42,cmddelcom:42,cmddesc:42,cmddestroi:42,cmddig:42,cmddrop:42,cmdemit:42,cmdexamin:42,cmdfind:42,cmdforc:42,cmdget:42,cmdgive:42,cmdhandler:149,cmdhelp:42,cmdhome:42,cmdic:42,cmdinventori:42,cmdirc2chan:42,cmdlink:42,cmdlistcmdset:42,cmdlock:42,cmdlook:42,cmdmvattr:42,cmdname:42,cmdnewpassword:42,cmdnick:42,cmdobject:42,cmdooc:42,cmdooclook:42,cmdopen:42,cmdoption:42,cmdpage:42,cmdparser:150,cmdpassword:42,cmdperm:42,cmdpose:42,cmdpy:42,cmdquell:42,cmdquit:42,cmdreload:42,cmdreset:42,cmdrss2chan:42,cmdsai:42,cmdscript:42,cmdserverload:42,cmdservic:42,cmdsession:42,cmdset:[5,42,151],cmdset_account:159,cmdset_charact:160,cmdset_red_button:223,cmdset_sess:161,cmdset_unloggedin:162,cmdsetattribut:42,cmdsetdesc:42,cmdsethandl:152,cmdsethelp:42,cmdsethom:42,cmdsetobjalia:42,cmdshutdown:42,cmdspawn:42,cmdstyle:42,cmdtag:42,cmdteleport:42,cmdtime:42,cmdtunnel:42,cmdtypeclass:42,cmdunban:42,cmdunconnectedconnect:42,cmdunconnectedcr:42,cmdunconnectedhelp:42,cmdunconnectedlook:42,cmdunconnectedquit:42,cmdunlink:42,cmdwall:42,cmdwhisper:42,cmdwho:42,cmdwipe:42,code:[8,13,22,25,26,27,40,41,49,58,59,60,72,84,86,107,123,127,130,320],collabor:56,color:[17,25,27,42,80,125],color_markup:182,colour:113,combat:[115,122],comfort:99,comm:[42,163,171,172,173,174,175,176],command:[5,14,22,25,28,29,30,31,32,33,35,40,41,42,43,44,57,59,61,67,70,80,84,87,90,96,99,115,120,122,126,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,192,320],comment:[43,48],commit:130,commun:[13,34],complet:79,complex:[22,118],compon:[17,44],comput:89,concept:[44,48,115],conclud:[38,122],conclus:[22,40,90,110],condit:[25,118],conf:103,config:[8,66,80],configur:[8,23,64,70,71,80,97,105,130,132],congratul:60,connect:[35,42,53,70,89,96],connection_wizard:263,contain:[99,321],content:[25,54],continu:36,contrib:[22,37,123,126,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233],contribut:37,control:130,convert:90,cooldown:28,coordin:38,copi:[8,42],core:[44,55,63],cpattr:42,cprofil:92,creat:[0,2,3,5,6,12,20,21,27,33,36,42,68,85,88,96,99,110,120,122,124,132,322],createnpc:122,creatur:99,credit:78,crop:27,current:[41,61],custom:[4,5,7,10,22,39,40,50,56,61,79,80,104,112,123,126,134,136],custom_gametim:183,cwho:42,data:[6,11,39,50,104,105],databas:[9,67,85,96,108,127],dbserial:323,deal:101,debug:[13,41,102],debugg:105,decor:[10,50],dedent:27,dedic:132,defaultobject:96,defin:[31,33,34,50,79,85,101,130],definit:79,delai:[10,27,29],delcom:42,delimit:25,demo:60,depend:[9,127],deploi:99,deprec:264,desc:[42,50],descer:56,descript:99,design:84,destroi:42,detail:[42,68,132],develop:[44,56,78,99,102,109,123,126],dialogu:45,dice:[57,184],dictionari:50,differ:[55,124],dig:42,diku:55,direct:105,directori:[46,89,103],disabl:102,discuss:78,displai:[24,27,48,61],django:[63,79,109,118,132,134],doc:[7,18,26,47],docker:99,document:[37,128,361],don:[13,54,99],donat:37,down:[20,109,120],drop:42,dummyrunn:[92,296],dummyrunner_set:297,durat:29,dure:109,dynam:[33,48,50],earli:7,echo:73,edit:[22,49,122],editnpc:122,editor:49,effect:239,elev:0,email_login:185,emit:42,emul:55,encod:[15,112],encrypt:89,end:40,engin:123,enjoi:8,enter:[24,120],entir:0,entri:[20,67],error:[43,94,101,109],eveditor:[49,324],evennia:[4,5,7,8,9,16,23,25,26,40,41,44,46,52,53,54,55,56,57,66,70,74,75,76,78,89,90,94,95,99,105,108,109,123,125,126,127,130,136,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,256,257,258,259,260,261,262,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,303,304,305,306,307,308,309,310,311,312,313,314,315,316,317,318,319,320,321,322,323,324,325,326,327,328,329,330,331,332,333,334,335,336,337,338,339,340,341,342,343,344,345,346,347,348,349,350,351,352,353,354,355,356,357,358,359,360,361],evennia_launch:265,evenniatest:126,event:[0,45,61],eventfunc:193,everi:30,everyth:22,evform:[57,325],evmenu:[25,50,326],evmor:[51,327],evtabl:[25,57,328],examin:[41,42],exampl:[38,41,45,49,50,72,79,89,101,107,115,126,136,320],example_batch_cod:224,execut:[41,58],exercis:76,exist:[6,124],exit:[0,6,25,33,43,88],expand:[115,120],explan:22,explor:[26,95],extended_room:186,extern:102,familiar:[55,56],faq:25,faster:126,featur:[54,68,134],feel:55,field:63,fieldfil:187,file:[13,14,15,42,103,126,130,320],fill:27,find:[38,42,58],firewal:102,first:[0,22,45,56,59,94,123],fix:130,folder:[9,26,130],forc:42,foreground:109,forget:96,fork:[37,130],form:[17,132,355],format:50,forum:78,framework:78,from:[4,20,25,50,52,54,59,89,95,99,132,136,137],front:135,full:[22,40,68],func:40,further:[8,10,135],futur:[21,137],game:[7,26,27,38,44,46,48,53,54,56,57,58,60,61,72,89,99,110,119,122,123,126,127,130],game_index_cli:[266,267,268],gameplai:121,gametim:[61,329],gap:76,gendersub:188,gener:[17,22,40,42,44,78,122,123,132,164],general_context:348,get:[20,42,50,62,69,118],get_client_opt:73,get_input:50,get_inputfunc:73,get_valu:73,git:[63,130],github:63,give:[42,69],given:111,global:[90,101],glossari:63,gmcp:87,godhood:20,goldenlayout:136,googl:132,grant:57,grapevin:[64,276],griatch:[1,47,137],grid:[24,48],group:118,guest:65,gui:137,guid:9,handl:[12,68,102,109],handler:[106,115],haproxi:66,hard:76,have:122,health_bar:189,hello:94,help:[9,20,26,37,42,67,68,69,165,234,235,236,237],here:[26,54,59,95],hierarchi:57,hint:8,home:42,hook:124,host:89,hous:20,how:[2,33,57,69,70,88,99,112,120,124],html:[3,132],http:[8,66],idea:137,idmapp:[330,331,332,333],imag:[99,102],implement:72,improv:68,index:[53,68,132,138],info:[78,109],inform:[44,89],infrastructur:72,ingame_python:[190,191,192,193,194,195,196,197],ingo:82,inherit:139,inherits_from:27,initi:[6,23,25,115],initial_setup:269,inlin:113,inlinefunc:[113,334],input:[33,50,87],inputfunc:[73,82,87,270],insid:118,instal:[4,7,8,9,23,62,70,74,89,99,121,130,132],instanc:[33,85,124],instruct:87,integr:36,interact:[10,13,14,26],interfac:102,internation:75,interpret:105,introduct:[9,26,48,50,54,92,94,110,121,132],inventori:[42,81],irc2chan:42,irc:[71,277],issu:24,jan:137,johnni:1,join:40,jumbotron:17,just:54,kei:[22,24,50,108],keyword:45,kill:109,know:[54,102],known:96,kovitiku:47,languag:75,last:25,latest:[99,127],latin:25,launch:[49,50],layout:[16,40,46],learn:[26,54,76],leav:[40,120],legend:24,let:[13,41,68,89],librari:[46,95],licens:77,life:7,lift:12,like:[13,55,122],limit:[13,14,118],line:[21,24,41,49],link:[42,78,93,113],linux:[36,62,109],list:41,list_nod:50,listen:117,literatur:78,live:109,local:[89,90],lock:[11,42,79,120,238,239,240],lockdown:89,lockfunc:239,lockhandl:240,log:[9,27,68,94,102],logfil:105,logger:335,login:[65,73],logo:135,longer:45,look:[5,42,55,94,122],mac:[62,109],machin:89,magic:96,mail:[130,198],make:[20,21,27,56,57,59,120,122,126,130],manag:[4,136,146,175,236,243,253,271,315,331],manual:[53,80],map:[48,110],mapbuild:199,mapper:48,mariadb:23,mass:81,master:[57,130],match:96,mccp:278,mech:21,mechan:123,memplot:298,menu:[22,27,50,84,247],menu_login:200,merg:31,messag:[0,25,82,87],messagepath:82,method:[33,40,80,96],middlewar:349,migrat:[4,63,127],mind:130,mini:126,minimap:110,miscellan:123,mob:229,mod_proxi:8,mod_ssl:8,mod_wsgi:8,mode:[13,14,63,89,104,109],model:[85,126,132,147,176,237,244,254,272,316,332],modif:57,modifi:[8,30],modul:[70,72,93,94,108,115],monitor:73,monitorhandl:[83,255],more:[16,29,56,79,80,127,134],most:26,move:[25,120],msdp:87,msg:[34,80,82],mssp:279,mud:78,multi:56,multidesc:[56,201],multipl:[11,118],multisess:[63,104],mush:[56,122],mutabl:[11,96],mux:[128,239],muxcommand:166,mvattr:42,mxp:280,mysql:23,name:[12,42,87,96,239],naw:281,ndb:11,need:[0,54],nest:22,next:[56,62,70],nice:66,nick:[42,86],node:50,non:[11,25,28,53],nop:24,note:[8,10,14,15,31,33,39,50,86,111,117,121,126],npc:[84,116,117,122],number:90,object:[5,6,11,20,25,27,42,58,59,60,63,79,81,88,95,96,104,110,111,118,120,123,230,241,242,243,244,245],objmanipcommand:42,obtain:132,oct:137,octob:137,off:25,offici:78,olc:108,older:136,one:38,onli:109,onlin:[89,130],oob:87,ooc:42,open:[42,84],oper:[0,10],option:[1,22,42,50,57,66,89,90,102,109],optionclass:336,optionhandl:337,other:[23,33,44,78,89,103],our:[0,22,68,94,95,107,120,132],out:[39,57],outgo:82,output:[58,208],outputcommand:87,outputfunc:87,outsid:[58,89],overal:72,overload:[80,124,134],overrid:96,overview:[36,46,85,115,135],own:[2,33,39,73,88,89,99,136],page:[3,4,42,68,134,135],parent:[56,85],pars:[25,40,90,94],part:95,parti:78,password:42,patch:37,path:[13,82],paus:[0,29,33],pax:9,pdb:41,perm:42,permiss:[19,57,79,111],perpetu:60,persist:[11,28,29,49],person:20,picklefield:338,pictur:132,pip:[4,63],plai:66,plan:[26,60,110],player:56,plugin:136,point:26,polici:128,port:[89,102],portal:[82,91,104,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294],portalsess:82,portalsessionhandl:[82,283],pose:42,posit:1,post:137,postgresql:23,practic:90,prepar:36,prerequisit:74,press:24,prevent:25,privileg:4,problem:107,process:[10,109],processor:[13,14,15,320],product:[21,99],profil:[92,295,296,297,298,299,300,301,302],program:[41,54],progress:76,project:[36,105],prompt:[30,50],properti:[2,11,31,33,34,50,63,88,101,104,111,124],protfunc:[108,248],protocol:[39,44,54,87],prototyp:[108,246,247,248,249,250],proxi:[8,89],publicli:130,pudb:41,puppet:63,push:[20,130],put:[68,130],puzzl:202,pycharm:105,python:[13,26,54,56,58,70,76,78,93,94,95],quell:[19,42,79],queri:[118,124],quick:[36,62],quickli:66,quickstart:20,quiet:90,quirk:96,quit:42,random_string_gener:203,read:[10,26,134,135],real:13,reboot:109,recapcha:132,receiv:[39,87],red_button:225,red_button_script:226,reduc:1,refactor:[1,47],refer:25,regist:89,relat:[44,61],releas:60,relev:89,reli:13,reload:[8,25,42,96,109],remark:122,rememb:52,remind:68,remot:[89,130],remov:[25,111],repeat:[50,73],repo:9,repositori:[26,37,63,130],requir:62,reset:[42,109,127],reshuffl:20,resourc:78,restart:8,retriev:11,roadmap:98,role:57,roleplai:57,roller:57,rom:55,room:[0,6,25,38,48,57,60,81,88,231],rplanguag:204,rpsystem:205,rss2chan:42,rss:[97,284],rule:[31,72,115],run:[4,7,33,41,54,74,99,105,126],runner:126,safeti:13,sage:47,sai:42,same:[45,50],save:11,schema:127,score:122,screen:35,screenshot:100,script:[42,63,101,120,194,251,252,253,254,255,256,257,258,259],scripthandl:256,search:[27,31,38,85,90,111,118,339],secret:132,secur:[8,66,102,206,207,208,209,210],see:[68,96],select:25,self:90,send:[24,30,39,87],sent:30,separ:22,sept:[1,47],server:[7,8,23,42,75,89,91,103,104,122,209,260,261,262,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,303,304,305,306,307,308,309,310],serverconf:103,serversess:[82,304],serversessionhandl:82,servic:[42,268],session:[25,42,57,63,82,104,305],sessionhandl:[104,306],set:[4,5,9,31,42,48,50,53,61,64,71,79,80,89,97,102,103,105,122,126,130],setdesc:42,sethelp:42,sethom:42,setpow:122,settings_default:311,settings_mixin:299,setup:[8,9,23,36,89],sever:[38,45,90],share:130,sharedmemorymodel:85,sheet:[41,57],shell:95,shop:84,shortcut:11,show:122,shut:109,shutdown:42,signal:[106,307],simpl:[3,22,29,41,50,79,92,126],simpledoor:211,singl:11,site:[63,134],sitekei:132,slow_exit:212,soft:107,softcod:[56,107],solut:107,some:[38,40,55],somewher:54,sourc:[42,105],space:17,spawn:[42,56,108],spawner:[108,250],specif:5,splithandl:136,spread:37,spuriou:24,sql:23,sqlite3:23,ssh:[87,102,285],ssl:[89,286],standard:[54,61,128],start:[9,57,62,84,99,109],stat:119,statu:[93,109],step:[5,9,20,41,56,59,60,64,70,71,74,97,123,130,132],stop:109,storag:50,store:[6,11,25,50,108],string:[79,90,93],strip:90,studi:0,stuff:[54,122],style:[17,42],sub:22,subclass:88,subject:95,submodul:[140,142,148,154,171,177,190,207,215,221,228,234,238,241,246,251,260,266,273,295,312,318,330,344,346,351,354,356],subpackag:[140,148,177,206,260,318,344,354],suit:126,summari:[12,54],superus:79,support:[24,54,87],suppress_ga:287,surround:41,swap:124,synchron:10,syntax:[26,56,109,320],syscommand:167,system:[16,32,33,42,44,60,67,68,72,79,115,122,123,168],tabl:[25,27,85],tag:[38,42,111,125,317],talking_npc:213,taskhandl:258,tb_basic:216,tb_equip:217,tb_item:218,tb_magic:219,tb_rang:220,teamciti:36,tech:60,technic:54,tel:42,telnet:[24,87,89,288],telnet_oob:289,telnet_ssl:290,templat:[36,68,132],templatetag:[356,357],tempmsg:34,temporari:50,termux:74,test:[54,58,92,122,126,169,195,210,227,291,301,333,350,358],test_queri:300,test_resourc:340,text2html:341,text:[27,50,73,112,113,135],texttag:113,theori:90,thi:[40,68],thing:[55,56,118],third:78,throttl:308,through:[37,41,99],ticker:[63,114],tickerhandl:[114,259],tie:57,time:[27,33,42,61,101,107],time_format:27,timer:92,timetrac:302,tip:130,titeuf87:137,to_byt:27,to_str:27,toc:362,togeth:[66,68],tool:[12,27,78],traceback:26,track:130,train:120,translat:75,travi:129,treat:13,tree_select:214,trick:130,troubleshoot:[59,62,74],ttype:292,tunnel:42,turn:[25,96,115],turnbattl:[215,216,217,218,219,220],tutori:[0,5,6,18,21,45,61,68,84,95,115,116,117,118,119,120,121,122,123,126,131,133,135],tutorial_exampl:[221,222,223,224,225,226,227],tutorial_world:[228,229,230,231],tweak:[59,95],tweet:[70,119],twist:[63,93],twitter:70,two:95,type:[2,5,6,11,59,88],typeclass:[6,42,44,56,63,80,96,118,123,124,139,196,312,313,314,315,316,317],unban:42,under:130,understand:125,ungm:57,uninstal:121,unit:126,unixcommand:232,unlink:42,unloggedin:[42,170],unmonitor:73,unrepeat:73,updat:[6,25,59,124,127,130],upgrad:127,upload:102,upstream:[96,130],url:[3,4,68,132,345,352,359],usag:[1,13,14,49],use:[54,96,114],used:[25,33],useful:[33,78],user:[19,33,55,56,68,102,123,130],userpassword:42,using:[0,41,118,126],util:[17,27,29,33,78,105,118,197,318,319,320,321,322,323,324,325,326,327,328,329,330,331,332,333,334,335,336,337,338,339,340,341,342,343,346,347,348,349,350],valid:[79,309],validatorfunc:343,valu:[50,108,118],variabl:[41,58],vehicl:120,version:[130,361],versu:10,vhost:8,view:[3,67,68,132,133,134,353,360],virtualenv:63,voic:0,wai:[29,50,76],wall:42,want:[54,99],warn:361,weather:131,web:[3,44,87,89,96,102,123,132,133,134,135,136,344,345,346,347,348,349,350,351,352,353,354,355,356,357,358,359,360],webclient:[136,137,293,351,352,353],webclient_ajax:294,webclient_gui:136,webserv:[102,310],websit:[4,134,354,355,356,357,358,359,360],websocket:[8,66],weight:81,what:[11,16,36,40,54,90,99],when:[25,52,114],where:[5,54,59,62,95],whisper:42,whitepag:44,who:[33,42],wiki:[4,138],wilder:233,willing:54,window:[9,62],wipe:42,wizard:53,won:24,word:37,work:[7,33,54,68,76,90,99,120,124,130],workaround:24,world:[18,20,60,94,121],write:[39,126,136],xterm256:[113,125],yield:[29,50],you:[26,54],your:[2,4,19,20,26,33,38,39,59,73,85,88,89,96,99,102,107,127,130,132,136],yourself:[20,59,60],zone:139}}) \ No newline at end of file +Search.setIndex({docnames:["A-voice-operated-elevator-using-events","API-refactoring","Accounts","Add-a-simple-new-web-page","Add-a-wiki-on-your-website","Adding-Command-Tutorial","Adding-Object-Typeclass-Tutorial","Administrative-Docs","Apache-Config","Arxcode-installing-help","Async-Process","Attributes","Banning","Batch-Code-Processor","Batch-Command-Processor","Batch-Processors","Bootstrap-&-Evennia","Bootstrap-Components-and-Utilities","Builder-Docs","Building-Permissions","Building-Quickstart","Building-a-mech-tutorial","Building-menus","Choosing-An-SQL-Server","Client-Support-Grid","Coding-FAQ","Coding-Introduction","Coding-Utils","Command-Cooldown","Command-Duration","Command-Prompt","Command-Sets","Command-System","Commands","Communications","Connection-Screen","Continuous-Integration","Contributing","Coordinates","Custom-Protocols","Customize-channels","Debugging","Default-Command-Help","Default-Exit-Errors","Developer-Central","Dialogues-in-events","Directory-Overview","Docs-refactoring","Dynamic-In-Game-Map","EvEditor","EvMenu","EvMore","Evennia-API","Evennia-Game-Index","Evennia-Introduction","Evennia-for-Diku-Users","Evennia-for-MUSH-Users","Evennia-for-roleplaying-sessions","Execute-Python-Code","First-Steps-Coding","Game-Planning","Gametime-Tutorial","Getting-Started","Glossary","Grapevine","Guest-Logins","HAProxy-Config-(Optional)","Help-System","Help-System-Tutorial","How-To-Get-And-Give-Help","How-to-connect-Evennia-to-Twitter","IRC","Implementing-a-game-rule-system","Inputfuncs","Installing-on-Android","Internationalization","Learn-Python-for-Evennia-The-Hard-Way","Licensing","Links","Locks","Manually-Configuring-Color","Mass-and-weight-for-objects","Messagepath","MonitorHandler","NPC-shop-Tutorial","New-Models","Nicks","OOB","Objects","Online-Setup","Parsing-command-arguments,-theory-and-best-practices","Portal-And-Server","Profiling","Python-3","Python-basic-introduction","Python-basic-tutorial-part-two","Quirks","RSS","Roadmap","Running-Evennia-in-Docker","Screenshot","Scripts","Security","Server-Conf","Sessions","Setting-up-PyCharm","Signals","Soft-Code","Spawner-and-Prototypes","Start-Stop-Reload","Static-In-Game-Map","Tags","Text-Encodings","TextTags","TickerHandler","Turn-based-Combat-System","Tutorial-Aggressive-NPCs","Tutorial-NPCs-listening","Tutorial-Searching-For-Objects","Tutorial-Tweeting-Game-Stats","Tutorial-Vehicles","Tutorial-World-Introduction","Tutorial-for-basic-MUSH-like-game","Tutorials","Typeclasses","Understanding-Color-Tags","Unit-Testing","Updating-Your-Game","Using-MUX-as-a-Standard","Using-Travis","Version-Control","Weather-Tutorial","Web-Character-Generation","Web-Character-View-Tutorial","Web-Features","Web-Tutorial","Webclient","Webclient-brainstorm","Wiki-Index","Zones","api/evennia","api/evennia-api","api/evennia.accounts","api/evennia.accounts.accounts","api/evennia.accounts.admin","api/evennia.accounts.bots","api/evennia.accounts.manager","api/evennia.accounts.models","api/evennia.commands","api/evennia.commands.cmdhandler","api/evennia.commands.cmdparser","api/evennia.commands.cmdset","api/evennia.commands.cmdsethandler","api/evennia.commands.command","api/evennia.commands.default","api/evennia.commands.default.account","api/evennia.commands.default.admin","api/evennia.commands.default.batchprocess","api/evennia.commands.default.building","api/evennia.commands.default.cmdset_account","api/evennia.commands.default.cmdset_character","api/evennia.commands.default.cmdset_session","api/evennia.commands.default.cmdset_unloggedin","api/evennia.commands.default.comms","api/evennia.commands.default.general","api/evennia.commands.default.help","api/evennia.commands.default.muxcommand","api/evennia.commands.default.syscommands","api/evennia.commands.default.system","api/evennia.commands.default.tests","api/evennia.commands.default.unloggedin","api/evennia.comms","api/evennia.comms.admin","api/evennia.comms.channelhandler","api/evennia.comms.comms","api/evennia.comms.managers","api/evennia.comms.models","api/evennia.contrib","api/evennia.contrib.barter","api/evennia.contrib.building_menu","api/evennia.contrib.chargen","api/evennia.contrib.clothing","api/evennia.contrib.color_markups","api/evennia.contrib.custom_gametime","api/evennia.contrib.dice","api/evennia.contrib.email_login","api/evennia.contrib.extended_room","api/evennia.contrib.fieldfill","api/evennia.contrib.gendersub","api/evennia.contrib.health_bar","api/evennia.contrib.ingame_python","api/evennia.contrib.ingame_python.callbackhandler","api/evennia.contrib.ingame_python.commands","api/evennia.contrib.ingame_python.eventfuncs","api/evennia.contrib.ingame_python.scripts","api/evennia.contrib.ingame_python.tests","api/evennia.contrib.ingame_python.typeclasses","api/evennia.contrib.ingame_python.utils","api/evennia.contrib.mail","api/evennia.contrib.mapbuilder","api/evennia.contrib.menu_login","api/evennia.contrib.multidescer","api/evennia.contrib.puzzles","api/evennia.contrib.random_string_generator","api/evennia.contrib.rplanguage","api/evennia.contrib.rpsystem","api/evennia.contrib.security","api/evennia.contrib.security.auditing","api/evennia.contrib.security.auditing.outputs","api/evennia.contrib.security.auditing.server","api/evennia.contrib.security.auditing.tests","api/evennia.contrib.simpledoor","api/evennia.contrib.slow_exit","api/evennia.contrib.talking_npc","api/evennia.contrib.tree_select","api/evennia.contrib.turnbattle","api/evennia.contrib.turnbattle.tb_basic","api/evennia.contrib.turnbattle.tb_equip","api/evennia.contrib.turnbattle.tb_items","api/evennia.contrib.turnbattle.tb_magic","api/evennia.contrib.turnbattle.tb_range","api/evennia.contrib.tutorial_examples","api/evennia.contrib.tutorial_examples.bodyfunctions","api/evennia.contrib.tutorial_examples.cmdset_red_button","api/evennia.contrib.tutorial_examples.example_batch_code","api/evennia.contrib.tutorial_examples.red_button","api/evennia.contrib.tutorial_examples.red_button_scripts","api/evennia.contrib.tutorial_examples.tests","api/evennia.contrib.tutorial_world","api/evennia.contrib.tutorial_world.mob","api/evennia.contrib.tutorial_world.objects","api/evennia.contrib.tutorial_world.rooms","api/evennia.contrib.unixcommand","api/evennia.contrib.wilderness","api/evennia.help","api/evennia.help.admin","api/evennia.help.manager","api/evennia.help.models","api/evennia.locks","api/evennia.locks.lockfuncs","api/evennia.locks.lockhandler","api/evennia.objects","api/evennia.objects.admin","api/evennia.objects.manager","api/evennia.objects.models","api/evennia.objects.objects","api/evennia.prototypes","api/evennia.prototypes.menus","api/evennia.prototypes.protfuncs","api/evennia.prototypes.prototypes","api/evennia.prototypes.spawner","api/evennia.scripts","api/evennia.scripts.admin","api/evennia.scripts.manager","api/evennia.scripts.models","api/evennia.scripts.monitorhandler","api/evennia.scripts.scripthandler","api/evennia.scripts.scripts","api/evennia.scripts.taskhandler","api/evennia.scripts.tickerhandler","api/evennia.server","api/evennia.server.admin","api/evennia.server.amp_client","api/evennia.server.connection_wizard","api/evennia.server.deprecations","api/evennia.server.evennia_launcher","api/evennia.server.game_index_client","api/evennia.server.game_index_client.client","api/evennia.server.game_index_client.service","api/evennia.server.initial_setup","api/evennia.server.inputfuncs","api/evennia.server.manager","api/evennia.server.models","api/evennia.server.portal","api/evennia.server.portal.amp","api/evennia.server.portal.amp_server","api/evennia.server.portal.grapevine","api/evennia.server.portal.irc","api/evennia.server.portal.mccp","api/evennia.server.portal.mssp","api/evennia.server.portal.mxp","api/evennia.server.portal.naws","api/evennia.server.portal.portal","api/evennia.server.portal.portalsessionhandler","api/evennia.server.portal.rss","api/evennia.server.portal.ssh","api/evennia.server.portal.ssl","api/evennia.server.portal.suppress_ga","api/evennia.server.portal.telnet","api/evennia.server.portal.telnet_oob","api/evennia.server.portal.telnet_ssl","api/evennia.server.portal.tests","api/evennia.server.portal.ttype","api/evennia.server.portal.webclient","api/evennia.server.portal.webclient_ajax","api/evennia.server.profiling","api/evennia.server.profiling.dummyrunner","api/evennia.server.profiling.dummyrunner_settings","api/evennia.server.profiling.memplot","api/evennia.server.profiling.settings_mixin","api/evennia.server.profiling.test_queries","api/evennia.server.profiling.tests","api/evennia.server.profiling.timetrace","api/evennia.server.server","api/evennia.server.serversession","api/evennia.server.session","api/evennia.server.sessionhandler","api/evennia.server.signals","api/evennia.server.throttle","api/evennia.server.validators","api/evennia.server.webserver","api/evennia.settings_default","api/evennia.typeclasses","api/evennia.typeclasses.admin","api/evennia.typeclasses.attributes","api/evennia.typeclasses.managers","api/evennia.typeclasses.models","api/evennia.typeclasses.tags","api/evennia.utils","api/evennia.utils.ansi","api/evennia.utils.batchprocessors","api/evennia.utils.containers","api/evennia.utils.create","api/evennia.utils.dbserialize","api/evennia.utils.eveditor","api/evennia.utils.evform","api/evennia.utils.evmenu","api/evennia.utils.evmore","api/evennia.utils.evtable","api/evennia.utils.gametime","api/evennia.utils.idmapper","api/evennia.utils.idmapper.manager","api/evennia.utils.idmapper.models","api/evennia.utils.idmapper.tests","api/evennia.utils.inlinefuncs","api/evennia.utils.logger","api/evennia.utils.optionclasses","api/evennia.utils.optionhandler","api/evennia.utils.picklefield","api/evennia.utils.search","api/evennia.utils.test_resources","api/evennia.utils.text2html","api/evennia.utils.utils","api/evennia.utils.validatorfuncs","api/evennia.web","api/evennia.web.urls","api/evennia.web.utils","api/evennia.web.utils.backends","api/evennia.web.utils.general_context","api/evennia.web.utils.middleware","api/evennia.web.utils.tests","api/evennia.web.webclient","api/evennia.web.webclient.urls","api/evennia.web.webclient.views","api/evennia.web.website","api/evennia.web.website.forms","api/evennia.web.website.templatetags","api/evennia.web.website.templatetags.addclass","api/evennia.web.website.tests","api/evennia.web.website.urls","api/evennia.web.website.views","index","toc"],envversion:{"sphinx.domains.c":2,"sphinx.domains.changeset":1,"sphinx.domains.citation":1,"sphinx.domains.cpp":3,"sphinx.domains.index":1,"sphinx.domains.javascript":2,"sphinx.domains.math":2,"sphinx.domains.python":2,"sphinx.domains.rst":2,"sphinx.domains.std":1,"sphinx.ext.todo":2,"sphinx.ext.viewcode":1,sphinx:56},filenames:["A-voice-operated-elevator-using-events.md","API-refactoring.md","Accounts.md","Add-a-simple-new-web-page.md","Add-a-wiki-on-your-website.md","Adding-Command-Tutorial.md","Adding-Object-Typeclass-Tutorial.md","Administrative-Docs.md","Apache-Config.md","Arxcode-installing-help.md","Async-Process.md","Attributes.md","Banning.md","Batch-Code-Processor.md","Batch-Command-Processor.md","Batch-Processors.md","Bootstrap-&-Evennia.md","Bootstrap-Components-and-Utilities.md","Builder-Docs.md","Building-Permissions.md","Building-Quickstart.md","Building-a-mech-tutorial.md","Building-menus.md","Choosing-An-SQL-Server.md","Client-Support-Grid.md","Coding-FAQ.md","Coding-Introduction.md","Coding-Utils.md","Command-Cooldown.md","Command-Duration.md","Command-Prompt.md","Command-Sets.md","Command-System.md","Commands.md","Communications.md","Connection-Screen.md","Continuous-Integration.md","Contributing.md","Coordinates.md","Custom-Protocols.md","Customize-channels.md","Debugging.md","Default-Command-Help.md","Default-Exit-Errors.md","Developer-Central.md","Dialogues-in-events.md","Directory-Overview.md","Docs-refactoring.md","Dynamic-In-Game-Map.md","EvEditor.md","EvMenu.md","EvMore.md","Evennia-API.md","Evennia-Game-Index.md","Evennia-Introduction.md","Evennia-for-Diku-Users.md","Evennia-for-MUSH-Users.md","Evennia-for-roleplaying-sessions.md","Execute-Python-Code.md","First-Steps-Coding.md","Game-Planning.md","Gametime-Tutorial.md","Getting-Started.md","Glossary.md","Grapevine.md","Guest-Logins.md","HAProxy-Config-(Optional).md","Help-System.md","Help-System-Tutorial.md","How-To-Get-And-Give-Help.md","How-to-connect-Evennia-to-Twitter.md","IRC.md","Implementing-a-game-rule-system.md","Inputfuncs.md","Installing-on-Android.md","Internationalization.md","Learn-Python-for-Evennia-The-Hard-Way.md","Licensing.md","Links.md","Locks.md","Manually-Configuring-Color.md","Mass-and-weight-for-objects.md","Messagepath.md","MonitorHandler.md","NPC-shop-Tutorial.md","New-Models.md","Nicks.md","OOB.md","Objects.md","Online-Setup.md","Parsing-command-arguments,-theory-and-best-practices.md","Portal-And-Server.md","Profiling.md","Python-3.md","Python-basic-introduction.md","Python-basic-tutorial-part-two.md","Quirks.md","RSS.md","Roadmap.md","Running-Evennia-in-Docker.md","Screenshot.md","Scripts.md","Security.md","Server-Conf.md","Sessions.md","Setting-up-PyCharm.md","Signals.md","Soft-Code.md","Spawner-and-Prototypes.md","Start-Stop-Reload.md","Static-In-Game-Map.md","Tags.md","Text-Encodings.md","TextTags.md","TickerHandler.md","Turn-based-Combat-System.md","Tutorial-Aggressive-NPCs.md","Tutorial-NPCs-listening.md","Tutorial-Searching-For-Objects.md","Tutorial-Tweeting-Game-Stats.md","Tutorial-Vehicles.md","Tutorial-World-Introduction.md","Tutorial-for-basic-MUSH-like-game.md","Tutorials.md","Typeclasses.md","Understanding-Color-Tags.md","Unit-Testing.md","Updating-Your-Game.md","Using-MUX-as-a-Standard.md","Using-Travis.md","Version-Control.md","Weather-Tutorial.md","Web-Character-Generation.md","Web-Character-View-Tutorial.md","Web-Features.md","Web-Tutorial.md","Webclient.md","Webclient-brainstorm.md","Wiki-Index.md","Zones.md","api/evennia.rst","api/evennia-api.rst","api/evennia.accounts.rst","api/evennia.accounts.accounts.rst","api/evennia.accounts.admin.rst","api/evennia.accounts.bots.rst","api/evennia.accounts.manager.rst","api/evennia.accounts.models.rst","api/evennia.commands.rst","api/evennia.commands.cmdhandler.rst","api/evennia.commands.cmdparser.rst","api/evennia.commands.cmdset.rst","api/evennia.commands.cmdsethandler.rst","api/evennia.commands.command.rst","api/evennia.commands.default.rst","api/evennia.commands.default.account.rst","api/evennia.commands.default.admin.rst","api/evennia.commands.default.batchprocess.rst","api/evennia.commands.default.building.rst","api/evennia.commands.default.cmdset_account.rst","api/evennia.commands.default.cmdset_character.rst","api/evennia.commands.default.cmdset_session.rst","api/evennia.commands.default.cmdset_unloggedin.rst","api/evennia.commands.default.comms.rst","api/evennia.commands.default.general.rst","api/evennia.commands.default.help.rst","api/evennia.commands.default.muxcommand.rst","api/evennia.commands.default.syscommands.rst","api/evennia.commands.default.system.rst","api/evennia.commands.default.tests.rst","api/evennia.commands.default.unloggedin.rst","api/evennia.comms.rst","api/evennia.comms.admin.rst","api/evennia.comms.channelhandler.rst","api/evennia.comms.comms.rst","api/evennia.comms.managers.rst","api/evennia.comms.models.rst","api/evennia.contrib.rst","api/evennia.contrib.barter.rst","api/evennia.contrib.building_menu.rst","api/evennia.contrib.chargen.rst","api/evennia.contrib.clothing.rst","api/evennia.contrib.color_markups.rst","api/evennia.contrib.custom_gametime.rst","api/evennia.contrib.dice.rst","api/evennia.contrib.email_login.rst","api/evennia.contrib.extended_room.rst","api/evennia.contrib.fieldfill.rst","api/evennia.contrib.gendersub.rst","api/evennia.contrib.health_bar.rst","api/evennia.contrib.ingame_python.rst","api/evennia.contrib.ingame_python.callbackhandler.rst","api/evennia.contrib.ingame_python.commands.rst","api/evennia.contrib.ingame_python.eventfuncs.rst","api/evennia.contrib.ingame_python.scripts.rst","api/evennia.contrib.ingame_python.tests.rst","api/evennia.contrib.ingame_python.typeclasses.rst","api/evennia.contrib.ingame_python.utils.rst","api/evennia.contrib.mail.rst","api/evennia.contrib.mapbuilder.rst","api/evennia.contrib.menu_login.rst","api/evennia.contrib.multidescer.rst","api/evennia.contrib.puzzles.rst","api/evennia.contrib.random_string_generator.rst","api/evennia.contrib.rplanguage.rst","api/evennia.contrib.rpsystem.rst","api/evennia.contrib.security.rst","api/evennia.contrib.security.auditing.rst","api/evennia.contrib.security.auditing.outputs.rst","api/evennia.contrib.security.auditing.server.rst","api/evennia.contrib.security.auditing.tests.rst","api/evennia.contrib.simpledoor.rst","api/evennia.contrib.slow_exit.rst","api/evennia.contrib.talking_npc.rst","api/evennia.contrib.tree_select.rst","api/evennia.contrib.turnbattle.rst","api/evennia.contrib.turnbattle.tb_basic.rst","api/evennia.contrib.turnbattle.tb_equip.rst","api/evennia.contrib.turnbattle.tb_items.rst","api/evennia.contrib.turnbattle.tb_magic.rst","api/evennia.contrib.turnbattle.tb_range.rst","api/evennia.contrib.tutorial_examples.rst","api/evennia.contrib.tutorial_examples.bodyfunctions.rst","api/evennia.contrib.tutorial_examples.cmdset_red_button.rst","api/evennia.contrib.tutorial_examples.example_batch_code.rst","api/evennia.contrib.tutorial_examples.red_button.rst","api/evennia.contrib.tutorial_examples.red_button_scripts.rst","api/evennia.contrib.tutorial_examples.tests.rst","api/evennia.contrib.tutorial_world.rst","api/evennia.contrib.tutorial_world.mob.rst","api/evennia.contrib.tutorial_world.objects.rst","api/evennia.contrib.tutorial_world.rooms.rst","api/evennia.contrib.unixcommand.rst","api/evennia.contrib.wilderness.rst","api/evennia.help.rst","api/evennia.help.admin.rst","api/evennia.help.manager.rst","api/evennia.help.models.rst","api/evennia.locks.rst","api/evennia.locks.lockfuncs.rst","api/evennia.locks.lockhandler.rst","api/evennia.objects.rst","api/evennia.objects.admin.rst","api/evennia.objects.manager.rst","api/evennia.objects.models.rst","api/evennia.objects.objects.rst","api/evennia.prototypes.rst","api/evennia.prototypes.menus.rst","api/evennia.prototypes.protfuncs.rst","api/evennia.prototypes.prototypes.rst","api/evennia.prototypes.spawner.rst","api/evennia.scripts.rst","api/evennia.scripts.admin.rst","api/evennia.scripts.manager.rst","api/evennia.scripts.models.rst","api/evennia.scripts.monitorhandler.rst","api/evennia.scripts.scripthandler.rst","api/evennia.scripts.scripts.rst","api/evennia.scripts.taskhandler.rst","api/evennia.scripts.tickerhandler.rst","api/evennia.server.rst","api/evennia.server.admin.rst","api/evennia.server.amp_client.rst","api/evennia.server.connection_wizard.rst","api/evennia.server.deprecations.rst","api/evennia.server.evennia_launcher.rst","api/evennia.server.game_index_client.rst","api/evennia.server.game_index_client.client.rst","api/evennia.server.game_index_client.service.rst","api/evennia.server.initial_setup.rst","api/evennia.server.inputfuncs.rst","api/evennia.server.manager.rst","api/evennia.server.models.rst","api/evennia.server.portal.rst","api/evennia.server.portal.amp.rst","api/evennia.server.portal.amp_server.rst","api/evennia.server.portal.grapevine.rst","api/evennia.server.portal.irc.rst","api/evennia.server.portal.mccp.rst","api/evennia.server.portal.mssp.rst","api/evennia.server.portal.mxp.rst","api/evennia.server.portal.naws.rst","api/evennia.server.portal.portal.rst","api/evennia.server.portal.portalsessionhandler.rst","api/evennia.server.portal.rss.rst","api/evennia.server.portal.ssh.rst","api/evennia.server.portal.ssl.rst","api/evennia.server.portal.suppress_ga.rst","api/evennia.server.portal.telnet.rst","api/evennia.server.portal.telnet_oob.rst","api/evennia.server.portal.telnet_ssl.rst","api/evennia.server.portal.tests.rst","api/evennia.server.portal.ttype.rst","api/evennia.server.portal.webclient.rst","api/evennia.server.portal.webclient_ajax.rst","api/evennia.server.profiling.rst","api/evennia.server.profiling.dummyrunner.rst","api/evennia.server.profiling.dummyrunner_settings.rst","api/evennia.server.profiling.memplot.rst","api/evennia.server.profiling.settings_mixin.rst","api/evennia.server.profiling.test_queries.rst","api/evennia.server.profiling.tests.rst","api/evennia.server.profiling.timetrace.rst","api/evennia.server.server.rst","api/evennia.server.serversession.rst","api/evennia.server.session.rst","api/evennia.server.sessionhandler.rst","api/evennia.server.signals.rst","api/evennia.server.throttle.rst","api/evennia.server.validators.rst","api/evennia.server.webserver.rst","api/evennia.settings_default.rst","api/evennia.typeclasses.rst","api/evennia.typeclasses.admin.rst","api/evennia.typeclasses.attributes.rst","api/evennia.typeclasses.managers.rst","api/evennia.typeclasses.models.rst","api/evennia.typeclasses.tags.rst","api/evennia.utils.rst","api/evennia.utils.ansi.rst","api/evennia.utils.batchprocessors.rst","api/evennia.utils.containers.rst","api/evennia.utils.create.rst","api/evennia.utils.dbserialize.rst","api/evennia.utils.eveditor.rst","api/evennia.utils.evform.rst","api/evennia.utils.evmenu.rst","api/evennia.utils.evmore.rst","api/evennia.utils.evtable.rst","api/evennia.utils.gametime.rst","api/evennia.utils.idmapper.rst","api/evennia.utils.idmapper.manager.rst","api/evennia.utils.idmapper.models.rst","api/evennia.utils.idmapper.tests.rst","api/evennia.utils.inlinefuncs.rst","api/evennia.utils.logger.rst","api/evennia.utils.optionclasses.rst","api/evennia.utils.optionhandler.rst","api/evennia.utils.picklefield.rst","api/evennia.utils.search.rst","api/evennia.utils.test_resources.rst","api/evennia.utils.text2html.rst","api/evennia.utils.utils.rst","api/evennia.utils.validatorfuncs.rst","api/evennia.web.rst","api/evennia.web.urls.rst","api/evennia.web.utils.rst","api/evennia.web.utils.backends.rst","api/evennia.web.utils.general_context.rst","api/evennia.web.utils.middleware.rst","api/evennia.web.utils.tests.rst","api/evennia.web.webclient.rst","api/evennia.web.webclient.urls.rst","api/evennia.web.webclient.views.rst","api/evennia.web.website.rst","api/evennia.web.website.forms.rst","api/evennia.web.website.templatetags.rst","api/evennia.web.website.templatetags.addclass.rst","api/evennia.web.website.tests.rst","api/evennia.web.website.urls.rst","api/evennia.web.website.views.rst","index.md","toc.md"],objects:{"":{evennia:[140,0,0,"-"]},"evennia.accounts":{accounts:[143,0,0,"-"],admin:[144,0,0,"-"],bots:[145,0,0,"-"],manager:[146,0,0,"-"],models:[147,0,0,"-"]},"evennia.accounts.accounts":{DefaultAccount:[143,1,1,""],DefaultGuest:[143,1,1,""]},"evennia.accounts.accounts.DefaultAccount":{"delete":[143,3,1,""],DoesNotExist:[143,2,1,""],MultipleObjectsReturned:[143,2,1,""],access:[143,3,1,""],at_access:[143,3,1,""],at_account_creation:[143,3,1,""],at_cmdset_get:[143,3,1,""],at_disconnect:[143,3,1,""],at_failed_login:[143,3,1,""],at_first_login:[143,3,1,""],at_first_save:[143,3,1,""],at_init:[143,3,1,""],at_look:[143,3,1,""],at_msg_receive:[143,3,1,""],at_msg_send:[143,3,1,""],at_password_change:[143,3,1,""],at_post_disconnect:[143,3,1,""],at_post_login:[143,3,1,""],at_pre_login:[143,3,1,""],at_server_reload:[143,3,1,""],at_server_shutdown:[143,3,1,""],authenticate:[143,3,1,""],basetype_setup:[143,3,1,""],character:[143,3,1,""],characters:[143,3,1,""],cmdset:[143,4,1,""],connection_time:[143,3,1,""],create:[143,3,1,""],create_character:[143,3,1,""],disconnect_session_from_account:[143,3,1,""],execute_cmd:[143,3,1,""],get_all_puppets:[143,3,1,""],get_puppet:[143,3,1,""],get_username_validators:[143,3,1,""],idle_time:[143,3,1,""],is_banned:[143,3,1,""],msg:[143,3,1,""],nicks:[143,4,1,""],normalize_username:[143,3,1,""],objects:[143,4,1,""],options:[143,4,1,""],path:[143,4,1,""],puppet:[143,3,1,""],puppet_object:[143,3,1,""],scripts:[143,4,1,""],search:[143,3,1,""],sessions:[143,4,1,""],set_password:[143,3,1,""],typename:[143,4,1,""],unpuppet_all:[143,3,1,""],unpuppet_object:[143,3,1,""],validate_password:[143,3,1,""],validate_username:[143,3,1,""]},"evennia.accounts.accounts.DefaultGuest":{DoesNotExist:[143,2,1,""],MultipleObjectsReturned:[143,2,1,""],at_post_disconnect:[143,3,1,""],at_post_login:[143,3,1,""],at_server_shutdown:[143,3,1,""],authenticate:[143,3,1,""],create:[143,3,1,""],path:[143,4,1,""],typename:[143,4,1,""]},"evennia.accounts.admin":{AccountAttributeInline:[144,1,1,""],AccountDBAdmin:[144,1,1,""],AccountDBChangeForm:[144,1,1,""],AccountDBCreationForm:[144,1,1,""],AccountForm:[144,1,1,""],AccountInline:[144,1,1,""],AccountTagInline:[144,1,1,""]},"evennia.accounts.admin.AccountAttributeInline":{media:[144,3,1,""],model:[144,4,1,""],related_field:[144,4,1,""]},"evennia.accounts.admin.AccountDBAdmin":{add_fieldsets:[144,4,1,""],add_form:[144,4,1,""],fieldsets:[144,4,1,""],form:[144,4,1,""],inlines:[144,4,1,""],list_display:[144,4,1,""],media:[144,3,1,""],response_add:[144,3,1,""],save_model:[144,3,1,""],user_change_password:[144,3,1,""]},"evennia.accounts.admin.AccountDBChangeForm":{Meta:[144,1,1,""],base_fields:[144,4,1,""],clean_username:[144,3,1,""],declared_fields:[144,4,1,""],media:[144,3,1,""]},"evennia.accounts.admin.AccountDBChangeForm.Meta":{fields:[144,4,1,""],model:[144,4,1,""]},"evennia.accounts.admin.AccountDBCreationForm":{Meta:[144,1,1,""],base_fields:[144,4,1,""],clean_username:[144,3,1,""],declared_fields:[144,4,1,""],media:[144,3,1,""]},"evennia.accounts.admin.AccountDBCreationForm.Meta":{fields:[144,4,1,""],model:[144,4,1,""]},"evennia.accounts.admin.AccountForm":{Meta:[144,1,1,""],base_fields:[144,4,1,""],declared_fields:[144,4,1,""],media:[144,3,1,""]},"evennia.accounts.admin.AccountForm.Meta":{app_label:[144,4,1,""],fields:[144,4,1,""],model:[144,4,1,""]},"evennia.accounts.admin.AccountInline":{extra:[144,4,1,""],fieldsets:[144,4,1,""],form:[144,4,1,""],max_num:[144,4,1,""],media:[144,3,1,""],model:[144,4,1,""],template:[144,4,1,""]},"evennia.accounts.admin.AccountTagInline":{media:[144,3,1,""],model:[144,4,1,""],related_field:[144,4,1,""]},"evennia.accounts.bots":{Bot:[145,1,1,""],BotStarter:[145,1,1,""],GrapevineBot:[145,1,1,""],IRCBot:[145,1,1,""],RSSBot:[145,1,1,""]},"evennia.accounts.bots.Bot":{DoesNotExist:[145,2,1,""],MultipleObjectsReturned:[145,2,1,""],at_server_shutdown:[145,3,1,""],basetype_setup:[145,3,1,""],execute_cmd:[145,3,1,""],msg:[145,3,1,""],path:[145,4,1,""],start:[145,3,1,""],typename:[145,4,1,""]},"evennia.accounts.bots.BotStarter":{DoesNotExist:[145,2,1,""],MultipleObjectsReturned:[145,2,1,""],at_repeat:[145,3,1,""],at_script_creation:[145,3,1,""],at_server_reload:[145,3,1,""],at_server_shutdown:[145,3,1,""],at_start:[145,3,1,""],path:[145,4,1,""],typename:[145,4,1,""]},"evennia.accounts.bots.GrapevineBot":{DoesNotExist:[145,2,1,""],MultipleObjectsReturned:[145,2,1,""],at_msg_send:[145,3,1,""],execute_cmd:[145,3,1,""],factory_path:[145,4,1,""],msg:[145,3,1,""],path:[145,4,1,""],start:[145,3,1,""],typename:[145,4,1,""]},"evennia.accounts.bots.IRCBot":{DoesNotExist:[145,2,1,""],MultipleObjectsReturned:[145,2,1,""],at_msg_send:[145,3,1,""],execute_cmd:[145,3,1,""],factory_path:[145,4,1,""],get_nicklist:[145,3,1,""],msg:[145,3,1,""],path:[145,4,1,""],ping:[145,3,1,""],reconnect:[145,3,1,""],start:[145,3,1,""],typename:[145,4,1,""]},"evennia.accounts.bots.RSSBot":{DoesNotExist:[145,2,1,""],MultipleObjectsReturned:[145,2,1,""],execute_cmd:[145,3,1,""],path:[145,4,1,""],start:[145,3,1,""],typename:[145,4,1,""]},"evennia.accounts.manager":{AccountManager:[146,1,1,""]},"evennia.accounts.models":{AccountDB:[147,1,1,""]},"evennia.accounts.models.AccountDB":{DoesNotExist:[147,2,1,""],MultipleObjectsReturned:[147,2,1,""],account_subscription_set:[147,4,1,""],cmdset_storage:[147,3,1,""],db_attributes:[147,4,1,""],db_cmdset_storage:[147,4,1,""],db_is_bot:[147,4,1,""],db_is_connected:[147,4,1,""],db_tags:[147,4,1,""],get_next_by_date_joined:[147,3,1,""],get_next_by_db_date_created:[147,3,1,""],get_previous_by_date_joined:[147,3,1,""],get_previous_by_db_date_created:[147,3,1,""],groups:[147,4,1,""],hide_from_accounts_set:[147,4,1,""],id:[147,4,1,""],is_bot:[147,3,1,""],is_connected:[147,3,1,""],key:[147,3,1,""],logentry_set:[147,4,1,""],name:[147,3,1,""],objectdb_set:[147,4,1,""],objects:[147,4,1,""],path:[147,4,1,""],receiver_account_set:[147,4,1,""],scriptdb_set:[147,4,1,""],sender_account_set:[147,4,1,""],typename:[147,4,1,""],uid:[147,3,1,""],user_permissions:[147,4,1,""]},"evennia.commands":{"default":[154,0,0,"-"],cmdhandler:[149,0,0,"-"],cmdparser:[150,0,0,"-"],cmdset:[151,0,0,"-"],cmdsethandler:[152,0,0,"-"],command:[153,0,0,"-"]},"evennia.commands.cmdhandler":{InterruptCommand:[149,2,1,""],cmdhandler:[149,5,1,""]},"evennia.commands.cmdparser":{build_matches:[150,5,1,""],cmdparser:[150,5,1,""],create_match:[150,5,1,""],try_num_prefixes:[150,5,1,""]},"evennia.commands.cmdset":{CmdSet:[151,1,1,""]},"evennia.commands.cmdset.CmdSet":{__init__:[151,3,1,""],add:[151,3,1,""],at_cmdset_creation:[151,3,1,""],count:[151,3,1,""],duplicates:[151,4,1,""],errmessage:[151,4,1,""],get:[151,3,1,""],get_all_cmd_keys_and_aliases:[151,3,1,""],get_system_cmds:[151,3,1,""],key:[151,4,1,""],key_mergetypes:[151,4,1,""],make_unique:[151,3,1,""],mergetype:[151,4,1,""],no_channels:[151,4,1,""],no_exits:[151,4,1,""],no_objs:[151,4,1,""],path:[151,4,1,""],permanent:[151,4,1,""],priority:[151,4,1,""],remove:[151,3,1,""],to_duplicate:[151,4,1,""]},"evennia.commands.cmdsethandler":{CmdSetHandler:[152,1,1,""],import_cmdset:[152,5,1,""]},"evennia.commands.cmdsethandler.CmdSetHandler":{"delete":[152,3,1,""],__init__:[152,3,1,""],add:[152,3,1,""],add_default:[152,3,1,""],all:[152,3,1,""],clear:[152,3,1,""],delete_default:[152,3,1,""],get:[152,3,1,""],has:[152,3,1,""],has_cmdset:[152,3,1,""],remove:[152,3,1,""],remove_default:[152,3,1,""],reset:[152,3,1,""],update:[152,3,1,""]},"evennia.commands.command":{Command:[153,1,1,""],CommandMeta:[153,1,1,""],InterruptCommand:[153,2,1,""]},"evennia.commands.command.Command":{__init__:[153,3,1,""],access:[153,3,1,""],aliases:[153,4,1,""],arg_regex:[153,4,1,""],at_post_cmd:[153,3,1,""],at_pre_cmd:[153,3,1,""],auto_help:[153,4,1,""],client_width:[153,3,1,""],execute_cmd:[153,3,1,""],func:[153,3,1,""],get_command_info:[153,3,1,""],get_extra_info:[153,3,1,""],get_help:[153,3,1,""],help_category:[153,4,1,""],is_exit:[153,4,1,""],key:[153,4,1,""],lock_storage:[153,4,1,""],lockhandler:[153,4,1,""],locks:[153,4,1,""],match:[153,3,1,""],msg:[153,3,1,""],msg_all_sessions:[153,4,1,""],parse:[153,3,1,""],save_for_next:[153,4,1,""],search_index_entry:[153,4,1,""],set_aliases:[153,3,1,""],set_key:[153,3,1,""],styled_footer:[153,3,1,""],styled_header:[153,3,1,""],styled_separator:[153,3,1,""],styled_table:[153,3,1,""]},"evennia.commands.command.CommandMeta":{__init__:[153,3,1,""]},"evennia.commands.default":{account:[155,0,0,"-"],admin:[156,0,0,"-"],batchprocess:[157,0,0,"-"],building:[158,0,0,"-"],cmdset_account:[159,0,0,"-"],cmdset_character:[160,0,0,"-"],cmdset_session:[161,0,0,"-"],cmdset_unloggedin:[162,0,0,"-"],comms:[163,0,0,"-"],general:[164,0,0,"-"],help:[165,0,0,"-"],muxcommand:[166,0,0,"-"],syscommands:[167,0,0,"-"],system:[168,0,0,"-"],unloggedin:[170,0,0,"-"]},"evennia.commands.default.account":{CmdCharCreate:[155,1,1,""],CmdCharDelete:[155,1,1,""],CmdColorTest:[155,1,1,""],CmdIC:[155,1,1,""],CmdOOC:[155,1,1,""],CmdOOCLook:[155,1,1,""],CmdOption:[155,1,1,""],CmdPassword:[155,1,1,""],CmdQuell:[155,1,1,""],CmdQuit:[155,1,1,""],CmdSessions:[155,1,1,""],CmdStyle:[155,1,1,""],CmdWho:[155,1,1,""]},"evennia.commands.default.account.CmdCharCreate":{account_caller:[155,4,1,""],aliases:[155,4,1,""],func:[155,3,1,""],help_category:[155,4,1,""],key:[155,4,1,""],lock_storage:[155,4,1,""],locks:[155,4,1,""],search_index_entry:[155,4,1,""]},"evennia.commands.default.account.CmdCharDelete":{aliases:[155,4,1,""],func:[155,3,1,""],help_category:[155,4,1,""],key:[155,4,1,""],lock_storage:[155,4,1,""],locks:[155,4,1,""],search_index_entry:[155,4,1,""]},"evennia.commands.default.account.CmdColorTest":{account_caller:[155,4,1,""],aliases:[155,4,1,""],func:[155,3,1,""],help_category:[155,4,1,""],key:[155,4,1,""],lock_storage:[155,4,1,""],locks:[155,4,1,""],search_index_entry:[155,4,1,""],slice_bright_bg:[155,4,1,""],slice_bright_fg:[155,4,1,""],slice_dark_bg:[155,4,1,""],slice_dark_fg:[155,4,1,""],table_format:[155,3,1,""]},"evennia.commands.default.account.CmdIC":{account_caller:[155,4,1,""],aliases:[155,4,1,""],func:[155,3,1,""],help_category:[155,4,1,""],key:[155,4,1,""],lock_storage:[155,4,1,""],locks:[155,4,1,""],search_index_entry:[155,4,1,""]},"evennia.commands.default.account.CmdOOC":{account_caller:[155,4,1,""],aliases:[155,4,1,""],func:[155,3,1,""],help_category:[155,4,1,""],key:[155,4,1,""],lock_storage:[155,4,1,""],locks:[155,4,1,""],search_index_entry:[155,4,1,""]},"evennia.commands.default.account.CmdOOCLook":{account_caller:[155,4,1,""],aliases:[155,4,1,""],func:[155,3,1,""],help_category:[155,4,1,""],key:[155,4,1,""],lock_storage:[155,4,1,""],locks:[155,4,1,""],search_index_entry:[155,4,1,""]},"evennia.commands.default.account.CmdOption":{account_caller:[155,4,1,""],aliases:[155,4,1,""],func:[155,3,1,""],help_category:[155,4,1,""],key:[155,4,1,""],lock_storage:[155,4,1,""],locks:[155,4,1,""],search_index_entry:[155,4,1,""],switch_options:[155,4,1,""]},"evennia.commands.default.account.CmdPassword":{account_caller:[155,4,1,""],aliases:[155,4,1,""],func:[155,3,1,""],help_category:[155,4,1,""],key:[155,4,1,""],lock_storage:[155,4,1,""],locks:[155,4,1,""],search_index_entry:[155,4,1,""]},"evennia.commands.default.account.CmdQuell":{account_caller:[155,4,1,""],aliases:[155,4,1,""],func:[155,3,1,""],help_category:[155,4,1,""],key:[155,4,1,""],lock_storage:[155,4,1,""],locks:[155,4,1,""],search_index_entry:[155,4,1,""]},"evennia.commands.default.account.CmdQuit":{account_caller:[155,4,1,""],aliases:[155,4,1,""],func:[155,3,1,""],help_category:[155,4,1,""],key:[155,4,1,""],lock_storage:[155,4,1,""],locks:[155,4,1,""],search_index_entry:[155,4,1,""],switch_options:[155,4,1,""]},"evennia.commands.default.account.CmdSessions":{account_caller:[155,4,1,""],aliases:[155,4,1,""],func:[155,3,1,""],help_category:[155,4,1,""],key:[155,4,1,""],lock_storage:[155,4,1,""],locks:[155,4,1,""],search_index_entry:[155,4,1,""]},"evennia.commands.default.account.CmdStyle":{aliases:[155,4,1,""],func:[155,3,1,""],help_category:[155,4,1,""],key:[155,4,1,""],list_styles:[155,3,1,""],lock_storage:[155,4,1,""],search_index_entry:[155,4,1,""],set:[155,3,1,""],switch_options:[155,4,1,""]},"evennia.commands.default.account.CmdWho":{account_caller:[155,4,1,""],aliases:[155,4,1,""],func:[155,3,1,""],help_category:[155,4,1,""],key:[155,4,1,""],lock_storage:[155,4,1,""],locks:[155,4,1,""],search_index_entry:[155,4,1,""]},"evennia.commands.default.admin":{CmdBan:[156,1,1,""],CmdBoot:[156,1,1,""],CmdEmit:[156,1,1,""],CmdForce:[156,1,1,""],CmdNewPassword:[156,1,1,""],CmdPerm:[156,1,1,""],CmdUnban:[156,1,1,""],CmdWall:[156,1,1,""]},"evennia.commands.default.admin.CmdBan":{aliases:[156,4,1,""],func:[156,3,1,""],help_category:[156,4,1,""],key:[156,4,1,""],lock_storage:[156,4,1,""],locks:[156,4,1,""],search_index_entry:[156,4,1,""]},"evennia.commands.default.admin.CmdBoot":{aliases:[156,4,1,""],func:[156,3,1,""],help_category:[156,4,1,""],key:[156,4,1,""],lock_storage:[156,4,1,""],locks:[156,4,1,""],search_index_entry:[156,4,1,""],switch_options:[156,4,1,""]},"evennia.commands.default.admin.CmdEmit":{aliases:[156,4,1,""],func:[156,3,1,""],help_category:[156,4,1,""],key:[156,4,1,""],lock_storage:[156,4,1,""],locks:[156,4,1,""],search_index_entry:[156,4,1,""],switch_options:[156,4,1,""]},"evennia.commands.default.admin.CmdForce":{aliases:[156,4,1,""],func:[156,3,1,""],help_category:[156,4,1,""],key:[156,4,1,""],lock_storage:[156,4,1,""],locks:[156,4,1,""],perm_used:[156,4,1,""],search_index_entry:[156,4,1,""]},"evennia.commands.default.admin.CmdNewPassword":{aliases:[156,4,1,""],func:[156,3,1,""],help_category:[156,4,1,""],key:[156,4,1,""],lock_storage:[156,4,1,""],locks:[156,4,1,""],search_index_entry:[156,4,1,""]},"evennia.commands.default.admin.CmdPerm":{aliases:[156,4,1,""],func:[156,3,1,""],help_category:[156,4,1,""],key:[156,4,1,""],lock_storage:[156,4,1,""],locks:[156,4,1,""],search_index_entry:[156,4,1,""],switch_options:[156,4,1,""]},"evennia.commands.default.admin.CmdUnban":{aliases:[156,4,1,""],func:[156,3,1,""],help_category:[156,4,1,""],key:[156,4,1,""],lock_storage:[156,4,1,""],locks:[156,4,1,""],search_index_entry:[156,4,1,""]},"evennia.commands.default.admin.CmdWall":{aliases:[156,4,1,""],func:[156,3,1,""],help_category:[156,4,1,""],key:[156,4,1,""],lock_storage:[156,4,1,""],locks:[156,4,1,""],search_index_entry:[156,4,1,""]},"evennia.commands.default.batchprocess":{CmdBatchCode:[157,1,1,""],CmdBatchCommands:[157,1,1,""]},"evennia.commands.default.batchprocess.CmdBatchCode":{aliases:[157,4,1,""],func:[157,3,1,""],help_category:[157,4,1,""],key:[157,4,1,""],lock_storage:[157,4,1,""],locks:[157,4,1,""],search_index_entry:[157,4,1,""],switch_options:[157,4,1,""]},"evennia.commands.default.batchprocess.CmdBatchCommands":{aliases:[157,4,1,""],func:[157,3,1,""],help_category:[157,4,1,""],key:[157,4,1,""],lock_storage:[157,4,1,""],locks:[157,4,1,""],search_index_entry:[157,4,1,""],switch_options:[157,4,1,""]},"evennia.commands.default.building":{CmdCopy:[158,1,1,""],CmdCpAttr:[158,1,1,""],CmdCreate:[158,1,1,""],CmdDesc:[158,1,1,""],CmdDestroy:[158,1,1,""],CmdDig:[158,1,1,""],CmdExamine:[158,1,1,""],CmdFind:[158,1,1,""],CmdLink:[158,1,1,""],CmdListCmdSets:[158,1,1,""],CmdLock:[158,1,1,""],CmdMvAttr:[158,1,1,""],CmdName:[158,1,1,""],CmdOpen:[158,1,1,""],CmdScript:[158,1,1,""],CmdSetAttribute:[158,1,1,""],CmdSetHome:[158,1,1,""],CmdSetObjAlias:[158,1,1,""],CmdSpawn:[158,1,1,""],CmdTag:[158,1,1,""],CmdTeleport:[158,1,1,""],CmdTunnel:[158,1,1,""],CmdTypeclass:[158,1,1,""],CmdUnLink:[158,1,1,""],CmdWipe:[158,1,1,""],ObjManipCommand:[158,1,1,""]},"evennia.commands.default.building.CmdCopy":{aliases:[158,4,1,""],func:[158,3,1,""],help_category:[158,4,1,""],key:[158,4,1,""],lock_storage:[158,4,1,""],locks:[158,4,1,""],search_index_entry:[158,4,1,""]},"evennia.commands.default.building.CmdCpAttr":{aliases:[158,4,1,""],check_from_attr:[158,3,1,""],check_has_attr:[158,3,1,""],check_to_attr:[158,3,1,""],func:[158,3,1,""],get_attr:[158,3,1,""],help_category:[158,4,1,""],key:[158,4,1,""],lock_storage:[158,4,1,""],locks:[158,4,1,""],search_index_entry:[158,4,1,""],switch_options:[158,4,1,""]},"evennia.commands.default.building.CmdCreate":{aliases:[158,4,1,""],func:[158,3,1,""],help_category:[158,4,1,""],key:[158,4,1,""],lock_storage:[158,4,1,""],locks:[158,4,1,""],new_obj_lockstring:[158,4,1,""],search_index_entry:[158,4,1,""],switch_options:[158,4,1,""]},"evennia.commands.default.building.CmdDesc":{aliases:[158,4,1,""],edit_handler:[158,3,1,""],func:[158,3,1,""],help_category:[158,4,1,""],key:[158,4,1,""],lock_storage:[158,4,1,""],locks:[158,4,1,""],search_index_entry:[158,4,1,""],switch_options:[158,4,1,""]},"evennia.commands.default.building.CmdDestroy":{aliases:[158,4,1,""],confirm:[158,4,1,""],default_confirm:[158,4,1,""],func:[158,3,1,""],help_category:[158,4,1,""],key:[158,4,1,""],lock_storage:[158,4,1,""],locks:[158,4,1,""],search_index_entry:[158,4,1,""],switch_options:[158,4,1,""]},"evennia.commands.default.building.CmdDig":{aliases:[158,4,1,""],func:[158,3,1,""],help_category:[158,4,1,""],key:[158,4,1,""],lock_storage:[158,4,1,""],locks:[158,4,1,""],new_room_lockstring:[158,4,1,""],search_index_entry:[158,4,1,""],switch_options:[158,4,1,""]},"evennia.commands.default.building.CmdExamine":{account_mode:[158,4,1,""],aliases:[158,4,1,""],arg_regex:[158,4,1,""],detail_color:[158,4,1,""],format_attributes:[158,3,1,""],format_output:[158,3,1,""],func:[158,3,1,""],header_color:[158,4,1,""],help_category:[158,4,1,""],key:[158,4,1,""],list_attribute:[158,3,1,""],lock_storage:[158,4,1,""],locks:[158,4,1,""],quell_color:[158,4,1,""],search_index_entry:[158,4,1,""],separator:[158,4,1,""]},"evennia.commands.default.building.CmdFind":{aliases:[158,4,1,""],func:[158,3,1,""],help_category:[158,4,1,""],key:[158,4,1,""],lock_storage:[158,4,1,""],locks:[158,4,1,""],search_index_entry:[158,4,1,""],switch_options:[158,4,1,""]},"evennia.commands.default.building.CmdLink":{aliases:[158,4,1,""],func:[158,3,1,""],help_category:[158,4,1,""],key:[158,4,1,""],lock_storage:[158,4,1,""],locks:[158,4,1,""],search_index_entry:[158,4,1,""]},"evennia.commands.default.building.CmdListCmdSets":{aliases:[158,4,1,""],func:[158,3,1,""],help_category:[158,4,1,""],key:[158,4,1,""],lock_storage:[158,4,1,""],locks:[158,4,1,""],search_index_entry:[158,4,1,""]},"evennia.commands.default.building.CmdLock":{aliases:[158,4,1,""],func:[158,3,1,""],help_category:[158,4,1,""],key:[158,4,1,""],lock_storage:[158,4,1,""],locks:[158,4,1,""],search_index_entry:[158,4,1,""]},"evennia.commands.default.building.CmdMvAttr":{aliases:[158,4,1,""],func:[158,3,1,""],help_category:[158,4,1,""],key:[158,4,1,""],lock_storage:[158,4,1,""],locks:[158,4,1,""],search_index_entry:[158,4,1,""],switch_options:[158,4,1,""]},"evennia.commands.default.building.CmdName":{aliases:[158,4,1,""],func:[158,3,1,""],help_category:[158,4,1,""],key:[158,4,1,""],lock_storage:[158,4,1,""],locks:[158,4,1,""],search_index_entry:[158,4,1,""]},"evennia.commands.default.building.CmdOpen":{aliases:[158,4,1,""],create_exit:[158,3,1,""],func:[158,3,1,""],help_category:[158,4,1,""],key:[158,4,1,""],lock_storage:[158,4,1,""],locks:[158,4,1,""],new_obj_lockstring:[158,4,1,""],search_index_entry:[158,4,1,""]},"evennia.commands.default.building.CmdScript":{aliases:[158,4,1,""],func:[158,3,1,""],help_category:[158,4,1,""],key:[158,4,1,""],lock_storage:[158,4,1,""],locks:[158,4,1,""],search_index_entry:[158,4,1,""],switch_options:[158,4,1,""]},"evennia.commands.default.building.CmdSetAttribute":{aliases:[158,4,1,""],check_attr:[158,3,1,""],check_obj:[158,3,1,""],do_nested_lookup:[158,3,1,""],edit_handler:[158,3,1,""],func:[158,3,1,""],help_category:[158,4,1,""],key:[158,4,1,""],lock_storage:[158,4,1,""],locks:[158,4,1,""],nested_re:[158,4,1,""],not_found:[158,4,1,""],rm_attr:[158,3,1,""],search_for_obj:[158,3,1,""],search_index_entry:[158,4,1,""],set_attr:[158,3,1,""],split_nested_attr:[158,3,1,""],view_attr:[158,3,1,""]},"evennia.commands.default.building.CmdSetHome":{aliases:[158,4,1,""],func:[158,3,1,""],help_category:[158,4,1,""],key:[158,4,1,""],lock_storage:[158,4,1,""],locks:[158,4,1,""],search_index_entry:[158,4,1,""]},"evennia.commands.default.building.CmdSetObjAlias":{aliases:[158,4,1,""],func:[158,3,1,""],help_category:[158,4,1,""],key:[158,4,1,""],lock_storage:[158,4,1,""],locks:[158,4,1,""],search_index_entry:[158,4,1,""],switch_options:[158,4,1,""]},"evennia.commands.default.building.CmdSpawn":{aliases:[158,4,1,""],func:[158,3,1,""],help_category:[158,4,1,""],key:[158,4,1,""],lock_storage:[158,4,1,""],locks:[158,4,1,""],search_index_entry:[158,4,1,""],switch_options:[158,4,1,""]},"evennia.commands.default.building.CmdTag":{aliases:[158,4,1,""],arg_regex:[158,4,1,""],func:[158,3,1,""],help_category:[158,4,1,""],key:[158,4,1,""],lock_storage:[158,4,1,""],locks:[158,4,1,""],options:[158,4,1,""],search_index_entry:[158,4,1,""]},"evennia.commands.default.building.CmdTeleport":{aliases:[158,4,1,""],func:[158,3,1,""],help_category:[158,4,1,""],key:[158,4,1,""],lock_storage:[158,4,1,""],locks:[158,4,1,""],rhs_split:[158,4,1,""],search_index_entry:[158,4,1,""],switch_options:[158,4,1,""]},"evennia.commands.default.building.CmdTunnel":{aliases:[158,4,1,""],directions:[158,4,1,""],func:[158,3,1,""],help_category:[158,4,1,""],key:[158,4,1,""],lock_storage:[158,4,1,""],locks:[158,4,1,""],search_index_entry:[158,4,1,""],switch_options:[158,4,1,""]},"evennia.commands.default.building.CmdTypeclass":{aliases:[158,4,1,""],func:[158,3,1,""],help_category:[158,4,1,""],key:[158,4,1,""],lock_storage:[158,4,1,""],locks:[158,4,1,""],search_index_entry:[158,4,1,""],switch_options:[158,4,1,""]},"evennia.commands.default.building.CmdUnLink":{aliases:[158,4,1,""],func:[158,3,1,""],help_category:[158,4,1,""],help_key:[158,4,1,""],key:[158,4,1,""],lock_storage:[158,4,1,""],locks:[158,4,1,""],search_index_entry:[158,4,1,""]},"evennia.commands.default.building.CmdWipe":{aliases:[158,4,1,""],func:[158,3,1,""],help_category:[158,4,1,""],key:[158,4,1,""],lock_storage:[158,4,1,""],locks:[158,4,1,""],search_index_entry:[158,4,1,""]},"evennia.commands.default.building.ObjManipCommand":{aliases:[158,4,1,""],help_category:[158,4,1,""],key:[158,4,1,""],lock_storage:[158,4,1,""],parse:[158,3,1,""],search_index_entry:[158,4,1,""]},"evennia.commands.default.cmdset_account":{AccountCmdSet:[159,1,1,""]},"evennia.commands.default.cmdset_account.AccountCmdSet":{at_cmdset_creation:[159,3,1,""],key:[159,4,1,""],path:[159,4,1,""],priority:[159,4,1,""]},"evennia.commands.default.cmdset_character":{CharacterCmdSet:[160,1,1,""]},"evennia.commands.default.cmdset_character.CharacterCmdSet":{at_cmdset_creation:[160,3,1,""],key:[160,4,1,""],path:[160,4,1,""],priority:[160,4,1,""]},"evennia.commands.default.cmdset_session":{SessionCmdSet:[161,1,1,""]},"evennia.commands.default.cmdset_session.SessionCmdSet":{at_cmdset_creation:[161,3,1,""],key:[161,4,1,""],path:[161,4,1,""],priority:[161,4,1,""]},"evennia.commands.default.cmdset_unloggedin":{UnloggedinCmdSet:[162,1,1,""]},"evennia.commands.default.cmdset_unloggedin.UnloggedinCmdSet":{at_cmdset_creation:[162,3,1,""],key:[162,4,1,""],path:[162,4,1,""],priority:[162,4,1,""]},"evennia.commands.default.comms":{CmdAddCom:[163,1,1,""],CmdAllCom:[163,1,1,""],CmdCBoot:[163,1,1,""],CmdCWho:[163,1,1,""],CmdCdesc:[163,1,1,""],CmdCdestroy:[163,1,1,""],CmdCemit:[163,1,1,""],CmdChannelCreate:[163,1,1,""],CmdChannels:[163,1,1,""],CmdClock:[163,1,1,""],CmdDelCom:[163,1,1,""],CmdIRC2Chan:[163,1,1,""],CmdPage:[163,1,1,""],CmdRSS2Chan:[163,1,1,""]},"evennia.commands.default.comms.CmdAddCom":{account_caller:[163,4,1,""],aliases:[163,4,1,""],func:[163,3,1,""],help_category:[163,4,1,""],key:[163,4,1,""],lock_storage:[163,4,1,""],locks:[163,4,1,""],search_index_entry:[163,4,1,""]},"evennia.commands.default.comms.CmdAllCom":{account_caller:[163,4,1,""],aliases:[163,4,1,""],func:[163,3,1,""],help_category:[163,4,1,""],key:[163,4,1,""],lock_storage:[163,4,1,""],locks:[163,4,1,""],search_index_entry:[163,4,1,""]},"evennia.commands.default.comms.CmdCBoot":{account_caller:[163,4,1,""],aliases:[163,4,1,""],func:[163,3,1,""],help_category:[163,4,1,""],key:[163,4,1,""],lock_storage:[163,4,1,""],locks:[163,4,1,""],search_index_entry:[163,4,1,""],switch_options:[163,4,1,""]},"evennia.commands.default.comms.CmdCWho":{account_caller:[163,4,1,""],aliases:[163,4,1,""],func:[163,3,1,""],help_category:[163,4,1,""],key:[163,4,1,""],lock_storage:[163,4,1,""],locks:[163,4,1,""],search_index_entry:[163,4,1,""]},"evennia.commands.default.comms.CmdCdesc":{account_caller:[163,4,1,""],aliases:[163,4,1,""],func:[163,3,1,""],help_category:[163,4,1,""],key:[163,4,1,""],lock_storage:[163,4,1,""],locks:[163,4,1,""],search_index_entry:[163,4,1,""]},"evennia.commands.default.comms.CmdCdestroy":{account_caller:[163,4,1,""],aliases:[163,4,1,""],func:[163,3,1,""],help_category:[163,4,1,""],key:[163,4,1,""],lock_storage:[163,4,1,""],locks:[163,4,1,""],search_index_entry:[163,4,1,""]},"evennia.commands.default.comms.CmdCemit":{account_caller:[163,4,1,""],aliases:[163,4,1,""],func:[163,3,1,""],help_category:[163,4,1,""],key:[163,4,1,""],lock_storage:[163,4,1,""],locks:[163,4,1,""],search_index_entry:[163,4,1,""],switch_options:[163,4,1,""]},"evennia.commands.default.comms.CmdChannelCreate":{account_caller:[163,4,1,""],aliases:[163,4,1,""],func:[163,3,1,""],help_category:[163,4,1,""],key:[163,4,1,""],lock_storage:[163,4,1,""],locks:[163,4,1,""],search_index_entry:[163,4,1,""]},"evennia.commands.default.comms.CmdChannels":{account_caller:[163,4,1,""],aliases:[163,4,1,""],func:[163,3,1,""],help_category:[163,4,1,""],key:[163,4,1,""],lock_storage:[163,4,1,""],locks:[163,4,1,""],search_index_entry:[163,4,1,""]},"evennia.commands.default.comms.CmdClock":{account_caller:[163,4,1,""],aliases:[163,4,1,""],func:[163,3,1,""],help_category:[163,4,1,""],key:[163,4,1,""],lock_storage:[163,4,1,""],locks:[163,4,1,""],search_index_entry:[163,4,1,""]},"evennia.commands.default.comms.CmdDelCom":{account_caller:[163,4,1,""],aliases:[163,4,1,""],func:[163,3,1,""],help_category:[163,4,1,""],key:[163,4,1,""],lock_storage:[163,4,1,""],locks:[163,4,1,""],search_index_entry:[163,4,1,""]},"evennia.commands.default.comms.CmdIRC2Chan":{aliases:[163,4,1,""],func:[163,3,1,""],help_category:[163,4,1,""],key:[163,4,1,""],lock_storage:[163,4,1,""],locks:[163,4,1,""],search_index_entry:[163,4,1,""],switch_options:[163,4,1,""]},"evennia.commands.default.comms.CmdPage":{account_caller:[163,4,1,""],aliases:[163,4,1,""],func:[163,3,1,""],help_category:[163,4,1,""],key:[163,4,1,""],lock_storage:[163,4,1,""],locks:[163,4,1,""],search_index_entry:[163,4,1,""],switch_options:[163,4,1,""]},"evennia.commands.default.comms.CmdRSS2Chan":{aliases:[163,4,1,""],func:[163,3,1,""],help_category:[163,4,1,""],key:[163,4,1,""],lock_storage:[163,4,1,""],locks:[163,4,1,""],search_index_entry:[163,4,1,""],switch_options:[163,4,1,""]},"evennia.commands.default.general":{CmdAccess:[164,1,1,""],CmdDrop:[164,1,1,""],CmdGet:[164,1,1,""],CmdGive:[164,1,1,""],CmdHome:[164,1,1,""],CmdInventory:[164,1,1,""],CmdLook:[164,1,1,""],CmdNick:[164,1,1,""],CmdPose:[164,1,1,""],CmdSay:[164,1,1,""],CmdSetDesc:[164,1,1,""],CmdWhisper:[164,1,1,""]},"evennia.commands.default.general.CmdAccess":{aliases:[164,4,1,""],arg_regex:[164,4,1,""],func:[164,3,1,""],help_category:[164,4,1,""],key:[164,4,1,""],lock_storage:[164,4,1,""],locks:[164,4,1,""],search_index_entry:[164,4,1,""]},"evennia.commands.default.general.CmdDrop":{aliases:[164,4,1,""],arg_regex:[164,4,1,""],func:[164,3,1,""],help_category:[164,4,1,""],key:[164,4,1,""],lock_storage:[164,4,1,""],locks:[164,4,1,""],search_index_entry:[164,4,1,""]},"evennia.commands.default.general.CmdGet":{aliases:[164,4,1,""],arg_regex:[164,4,1,""],func:[164,3,1,""],help_category:[164,4,1,""],key:[164,4,1,""],lock_storage:[164,4,1,""],locks:[164,4,1,""],search_index_entry:[164,4,1,""]},"evennia.commands.default.general.CmdGive":{aliases:[164,4,1,""],arg_regex:[164,4,1,""],func:[164,3,1,""],help_category:[164,4,1,""],key:[164,4,1,""],lock_storage:[164,4,1,""],locks:[164,4,1,""],rhs_split:[164,4,1,""],search_index_entry:[164,4,1,""]},"evennia.commands.default.general.CmdHome":{aliases:[164,4,1,""],arg_regex:[164,4,1,""],func:[164,3,1,""],help_category:[164,4,1,""],key:[164,4,1,""],lock_storage:[164,4,1,""],locks:[164,4,1,""],search_index_entry:[164,4,1,""]},"evennia.commands.default.general.CmdInventory":{aliases:[164,4,1,""],arg_regex:[164,4,1,""],func:[164,3,1,""],help_category:[164,4,1,""],key:[164,4,1,""],lock_storage:[164,4,1,""],locks:[164,4,1,""],search_index_entry:[164,4,1,""]},"evennia.commands.default.general.CmdLook":{aliases:[164,4,1,""],arg_regex:[164,4,1,""],func:[164,3,1,""],help_category:[164,4,1,""],key:[164,4,1,""],lock_storage:[164,4,1,""],locks:[164,4,1,""],search_index_entry:[164,4,1,""]},"evennia.commands.default.general.CmdNick":{aliases:[164,4,1,""],func:[164,3,1,""],help_category:[164,4,1,""],key:[164,4,1,""],lock_storage:[164,4,1,""],locks:[164,4,1,""],parse:[164,3,1,""],search_index_entry:[164,4,1,""],switch_options:[164,4,1,""]},"evennia.commands.default.general.CmdPose":{aliases:[164,4,1,""],func:[164,3,1,""],help_category:[164,4,1,""],key:[164,4,1,""],lock_storage:[164,4,1,""],locks:[164,4,1,""],parse:[164,3,1,""],search_index_entry:[164,4,1,""]},"evennia.commands.default.general.CmdSay":{aliases:[164,4,1,""],func:[164,3,1,""],help_category:[164,4,1,""],key:[164,4,1,""],lock_storage:[164,4,1,""],locks:[164,4,1,""],search_index_entry:[164,4,1,""]},"evennia.commands.default.general.CmdSetDesc":{aliases:[164,4,1,""],arg_regex:[164,4,1,""],func:[164,3,1,""],help_category:[164,4,1,""],key:[164,4,1,""],lock_storage:[164,4,1,""],locks:[164,4,1,""],search_index_entry:[164,4,1,""]},"evennia.commands.default.general.CmdWhisper":{aliases:[164,4,1,""],func:[164,3,1,""],help_category:[164,4,1,""],key:[164,4,1,""],lock_storage:[164,4,1,""],locks:[164,4,1,""],search_index_entry:[164,4,1,""]},"evennia.commands.default.help":{CmdHelp:[165,1,1,""],CmdSetHelp:[165,1,1,""]},"evennia.commands.default.help.CmdHelp":{aliases:[165,4,1,""],arg_regex:[165,4,1,""],check_show_help:[165,3,1,""],format_help_entry:[165,3,1,""],format_help_list:[165,3,1,""],func:[165,3,1,""],help_category:[165,4,1,""],help_more:[165,4,1,""],key:[165,4,1,""],lock_storage:[165,4,1,""],locks:[165,4,1,""],msg_help:[165,3,1,""],parse:[165,3,1,""],return_cmdset:[165,4,1,""],search_index_entry:[165,4,1,""],should_list_cmd:[165,3,1,""],suggestion_cutoff:[165,4,1,""],suggestion_maxnum:[165,4,1,""]},"evennia.commands.default.help.CmdSetHelp":{aliases:[165,4,1,""],func:[165,3,1,""],help_category:[165,4,1,""],key:[165,4,1,""],lock_storage:[165,4,1,""],locks:[165,4,1,""],search_index_entry:[165,4,1,""],switch_options:[165,4,1,""]},"evennia.commands.default.muxcommand":{MuxAccountCommand:[166,1,1,""],MuxCommand:[166,1,1,""]},"evennia.commands.default.muxcommand.MuxAccountCommand":{account_caller:[166,4,1,""],aliases:[166,4,1,""],help_category:[166,4,1,""],key:[166,4,1,""],lock_storage:[166,4,1,""],search_index_entry:[166,4,1,""]},"evennia.commands.default.muxcommand.MuxCommand":{aliases:[166,4,1,""],at_post_cmd:[166,3,1,""],at_pre_cmd:[166,3,1,""],func:[166,3,1,""],get_command_info:[166,3,1,""],has_perm:[166,3,1,""],help_category:[166,4,1,""],key:[166,4,1,""],lock_storage:[166,4,1,""],parse:[166,3,1,""],search_index_entry:[166,4,1,""]},"evennia.commands.default.syscommands":{SystemMultimatch:[167,1,1,""],SystemNoInput:[167,1,1,""],SystemNoMatch:[167,1,1,""],SystemSendToChannel:[167,1,1,""]},"evennia.commands.default.syscommands.SystemMultimatch":{aliases:[167,4,1,""],func:[167,3,1,""],help_category:[167,4,1,""],key:[167,4,1,""],lock_storage:[167,4,1,""],locks:[167,4,1,""],search_index_entry:[167,4,1,""]},"evennia.commands.default.syscommands.SystemNoInput":{aliases:[167,4,1,""],func:[167,3,1,""],help_category:[167,4,1,""],key:[167,4,1,""],lock_storage:[167,4,1,""],locks:[167,4,1,""],search_index_entry:[167,4,1,""]},"evennia.commands.default.syscommands.SystemNoMatch":{aliases:[167,4,1,""],func:[167,3,1,""],help_category:[167,4,1,""],key:[167,4,1,""],lock_storage:[167,4,1,""],locks:[167,4,1,""],search_index_entry:[167,4,1,""]},"evennia.commands.default.syscommands.SystemSendToChannel":{aliases:[167,4,1,""],func:[167,3,1,""],help_category:[167,4,1,""],key:[167,4,1,""],lock_storage:[167,4,1,""],locks:[167,4,1,""],parse:[167,3,1,""],search_index_entry:[167,4,1,""]},"evennia.commands.default.system":{CmdAbout:[168,1,1,""],CmdObjects:[168,1,1,""],CmdPy:[168,1,1,""],CmdReload:[168,1,1,""],CmdReset:[168,1,1,""],CmdScripts:[168,1,1,""],CmdServerLoad:[168,1,1,""],CmdService:[168,1,1,""],CmdShutdown:[168,1,1,""],CmdTime:[168,1,1,""]},"evennia.commands.default.system.CmdAbout":{aliases:[168,4,1,""],func:[168,3,1,""],help_category:[168,4,1,""],key:[168,4,1,""],lock_storage:[168,4,1,""],locks:[168,4,1,""],search_index_entry:[168,4,1,""]},"evennia.commands.default.system.CmdObjects":{aliases:[168,4,1,""],func:[168,3,1,""],help_category:[168,4,1,""],key:[168,4,1,""],lock_storage:[168,4,1,""],locks:[168,4,1,""],search_index_entry:[168,4,1,""]},"evennia.commands.default.system.CmdPy":{aliases:[168,4,1,""],func:[168,3,1,""],help_category:[168,4,1,""],key:[168,4,1,""],lock_storage:[168,4,1,""],locks:[168,4,1,""],search_index_entry:[168,4,1,""],switch_options:[168,4,1,""]},"evennia.commands.default.system.CmdReload":{aliases:[168,4,1,""],func:[168,3,1,""],help_category:[168,4,1,""],key:[168,4,1,""],lock_storage:[168,4,1,""],locks:[168,4,1,""],search_index_entry:[168,4,1,""]},"evennia.commands.default.system.CmdReset":{aliases:[168,4,1,""],func:[168,3,1,""],help_category:[168,4,1,""],key:[168,4,1,""],lock_storage:[168,4,1,""],locks:[168,4,1,""],search_index_entry:[168,4,1,""]},"evennia.commands.default.system.CmdScripts":{aliases:[168,4,1,""],excluded_typeclass_paths:[168,4,1,""],func:[168,3,1,""],help_category:[168,4,1,""],key:[168,4,1,""],lock_storage:[168,4,1,""],locks:[168,4,1,""],search_index_entry:[168,4,1,""],switch_options:[168,4,1,""]},"evennia.commands.default.system.CmdServerLoad":{aliases:[168,4,1,""],func:[168,3,1,""],help_category:[168,4,1,""],key:[168,4,1,""],lock_storage:[168,4,1,""],locks:[168,4,1,""],search_index_entry:[168,4,1,""],switch_options:[168,4,1,""]},"evennia.commands.default.system.CmdService":{aliases:[168,4,1,""],func:[168,3,1,""],help_category:[168,4,1,""],key:[168,4,1,""],lock_storage:[168,4,1,""],locks:[168,4,1,""],search_index_entry:[168,4,1,""],switch_options:[168,4,1,""]},"evennia.commands.default.system.CmdShutdown":{aliases:[168,4,1,""],func:[168,3,1,""],help_category:[168,4,1,""],key:[168,4,1,""],lock_storage:[168,4,1,""],locks:[168,4,1,""],search_index_entry:[168,4,1,""]},"evennia.commands.default.system.CmdTime":{aliases:[168,4,1,""],func:[168,3,1,""],help_category:[168,4,1,""],key:[168,4,1,""],lock_storage:[168,4,1,""],locks:[168,4,1,""],search_index_entry:[168,4,1,""]},"evennia.commands.default.tests":{CmdInterrupt:[169,1,1,""],CommandTest:[169,1,1,""],TestAccount:[169,1,1,""],TestAdmin:[169,1,1,""],TestBatchProcess:[169,1,1,""],TestBuilding:[169,1,1,""],TestComms:[169,1,1,""],TestGeneral:[169,1,1,""],TestHelp:[169,1,1,""],TestInterruptCommand:[169,1,1,""],TestSystem:[169,1,1,""],TestSystemCommands:[169,1,1,""],TestUnconnectedCommand:[169,1,1,""]},"evennia.commands.default.tests.CmdInterrupt":{aliases:[169,4,1,""],func:[169,3,1,""],help_category:[169,4,1,""],key:[169,4,1,""],lock_storage:[169,4,1,""],parse:[169,3,1,""],search_index_entry:[169,4,1,""]},"evennia.commands.default.tests.CommandTest":{call:[169,3,1,""]},"evennia.commands.default.tests.TestAccount":{test_char_create:[169,3,1,""],test_char_delete:[169,3,1,""],test_color_test:[169,3,1,""],test_ic:[169,3,1,""],test_ic__nonaccess:[169,3,1,""],test_ic__other_object:[169,3,1,""],test_ooc:[169,3,1,""],test_ooc_look:[169,3,1,""],test_option:[169,3,1,""],test_password:[169,3,1,""],test_quell:[169,3,1,""],test_quit:[169,3,1,""],test_sessions:[169,3,1,""],test_who:[169,3,1,""]},"evennia.commands.default.tests.TestAdmin":{test_ban:[169,3,1,""],test_emit:[169,3,1,""],test_force:[169,3,1,""],test_perm:[169,3,1,""],test_wall:[169,3,1,""]},"evennia.commands.default.tests.TestBatchProcess":{test_batch_commands:[169,3,1,""]},"evennia.commands.default.tests.TestBuilding":{test_attribute_commands:[169,3,1,""],test_copy:[169,3,1,""],test_create:[169,3,1,""],test_desc:[169,3,1,""],test_desc_default_to_room:[169,3,1,""],test_destroy:[169,3,1,""],test_destroy_sequence:[169,3,1,""],test_dig:[169,3,1,""],test_do_nested_lookup:[169,3,1,""],test_empty_desc:[169,3,1,""],test_examine:[169,3,1,""],test_exit_commands:[169,3,1,""],test_find:[169,3,1,""],test_list_cmdsets:[169,3,1,""],test_lock:[169,3,1,""],test_name:[169,3,1,""],test_nested_attribute_commands:[169,3,1,""],test_script:[169,3,1,""],test_set_home:[169,3,1,""],test_set_obj_alias:[169,3,1,""],test_spawn:[169,3,1,""],test_split_nested_attr:[169,3,1,""],test_tag:[169,3,1,""],test_teleport:[169,3,1,""],test_tunnel:[169,3,1,""],test_tunnel_exit_typeclass:[169,3,1,""],test_typeclass:[169,3,1,""]},"evennia.commands.default.tests.TestComms":{setUp:[169,3,1,""],test_all_com:[169,3,1,""],test_cboot:[169,3,1,""],test_cdesc:[169,3,1,""],test_cdestroy:[169,3,1,""],test_cemit:[169,3,1,""],test_channels:[169,3,1,""],test_clock:[169,3,1,""],test_cwho:[169,3,1,""],test_page:[169,3,1,""],test_toggle_com:[169,3,1,""]},"evennia.commands.default.tests.TestGeneral":{test_access:[169,3,1,""],test_get_and_drop:[169,3,1,""],test_give:[169,3,1,""],test_home:[169,3,1,""],test_inventory:[169,3,1,""],test_look:[169,3,1,""],test_mux_command:[169,3,1,""],test_nick:[169,3,1,""],test_pose:[169,3,1,""],test_say:[169,3,1,""],test_whisper:[169,3,1,""]},"evennia.commands.default.tests.TestHelp":{setUp:[169,3,1,""],tearDown:[169,3,1,""],test_help:[169,3,1,""],test_set_help:[169,3,1,""]},"evennia.commands.default.tests.TestInterruptCommand":{test_interrupt_command:[169,3,1,""]},"evennia.commands.default.tests.TestSystem":{test_about:[169,3,1,""],test_objects:[169,3,1,""],test_py:[169,3,1,""],test_scripts:[169,3,1,""],test_server_load:[169,3,1,""]},"evennia.commands.default.tests.TestSystemCommands":{test_channelcommand:[169,3,1,""],test_multimatch:[169,3,1,""],test_simple_defaults:[169,3,1,""]},"evennia.commands.default.tests.TestUnconnectedCommand":{test_info_command:[169,3,1,""]},"evennia.commands.default.unloggedin":{CmdUnconnectedConnect:[170,1,1,""],CmdUnconnectedCreate:[170,1,1,""],CmdUnconnectedHelp:[170,1,1,""],CmdUnconnectedLook:[170,1,1,""],CmdUnconnectedQuit:[170,1,1,""]},"evennia.commands.default.unloggedin.CmdUnconnectedConnect":{aliases:[170,4,1,""],arg_regex:[170,4,1,""],func:[170,3,1,""],help_category:[170,4,1,""],key:[170,4,1,""],lock_storage:[170,4,1,""],locks:[170,4,1,""],search_index_entry:[170,4,1,""]},"evennia.commands.default.unloggedin.CmdUnconnectedCreate":{aliases:[170,4,1,""],arg_regex:[170,4,1,""],func:[170,3,1,""],help_category:[170,4,1,""],key:[170,4,1,""],lock_storage:[170,4,1,""],locks:[170,4,1,""],search_index_entry:[170,4,1,""]},"evennia.commands.default.unloggedin.CmdUnconnectedHelp":{aliases:[170,4,1,""],func:[170,3,1,""],help_category:[170,4,1,""],key:[170,4,1,""],lock_storage:[170,4,1,""],locks:[170,4,1,""],search_index_entry:[170,4,1,""]},"evennia.commands.default.unloggedin.CmdUnconnectedLook":{aliases:[170,4,1,""],func:[170,3,1,""],help_category:[170,4,1,""],key:[170,4,1,""],lock_storage:[170,4,1,""],locks:[170,4,1,""],search_index_entry:[170,4,1,""]},"evennia.commands.default.unloggedin.CmdUnconnectedQuit":{aliases:[170,4,1,""],func:[170,3,1,""],help_category:[170,4,1,""],key:[170,4,1,""],lock_storage:[170,4,1,""],locks:[170,4,1,""],search_index_entry:[170,4,1,""]},"evennia.comms":{admin:[172,0,0,"-"],channelhandler:[173,0,0,"-"],comms:[174,0,0,"-"],managers:[175,0,0,"-"],models:[176,0,0,"-"]},"evennia.comms.admin":{ChannelAdmin:[172,1,1,""],ChannelAttributeInline:[172,1,1,""],ChannelTagInline:[172,1,1,""],MsgAdmin:[172,1,1,""]},"evennia.comms.admin.ChannelAdmin":{fieldsets:[172,4,1,""],inlines:[172,4,1,""],list_display:[172,4,1,""],list_display_links:[172,4,1,""],list_select_related:[172,4,1,""],media:[172,3,1,""],ordering:[172,4,1,""],raw_id_fields:[172,4,1,""],response_add:[172,3,1,""],save_as:[172,4,1,""],save_model:[172,3,1,""],save_on_top:[172,4,1,""],search_fields:[172,4,1,""],subscriptions:[172,3,1,""]},"evennia.comms.admin.ChannelAttributeInline":{media:[172,3,1,""],model:[172,4,1,""],related_field:[172,4,1,""]},"evennia.comms.admin.ChannelTagInline":{media:[172,3,1,""],model:[172,4,1,""],related_field:[172,4,1,""]},"evennia.comms.admin.MsgAdmin":{list_display:[172,4,1,""],list_display_links:[172,4,1,""],list_select_related:[172,4,1,""],media:[172,3,1,""],ordering:[172,4,1,""],save_as:[172,4,1,""],save_on_top:[172,4,1,""],search_fields:[172,4,1,""]},"evennia.comms.channelhandler":{ChannelCommand:[173,1,1,""],ChannelHandler:[173,1,1,""]},"evennia.comms.channelhandler.ChannelCommand":{aliases:[173,4,1,""],arg_regex:[173,4,1,""],func:[173,3,1,""],get_extra_info:[173,3,1,""],help_category:[173,4,1,""],is_channel:[173,4,1,""],key:[173,4,1,""],lock_storage:[173,4,1,""],obj:[173,4,1,""],parse:[173,3,1,""],search_index_entry:[173,4,1,""]},"evennia.comms.channelhandler.ChannelHandler":{__init__:[173,3,1,""],add:[173,3,1,""],add_channel:[173,3,1,""],clear:[173,3,1,""],get:[173,3,1,""],get_cmdset:[173,3,1,""],remove:[173,3,1,""],update:[173,3,1,""]},"evennia.comms.comms":{DefaultChannel:[174,1,1,""]},"evennia.comms.comms.DefaultChannel":{"delete":[174,3,1,""],DoesNotExist:[174,2,1,""],MultipleObjectsReturned:[174,2,1,""],access:[174,3,1,""],at_channel_creation:[174,3,1,""],at_first_save:[174,3,1,""],at_init:[174,3,1,""],basetype_setup:[174,3,1,""],channel_prefix:[174,3,1,""],connect:[174,3,1,""],create:[174,3,1,""],disconnect:[174,3,1,""],distribute_message:[174,3,1,""],format_external:[174,3,1,""],format_message:[174,3,1,""],format_senders:[174,3,1,""],get_absolute_url:[174,3,1,""],has_connection:[174,3,1,""],message_transform:[174,3,1,""],msg:[174,3,1,""],mute:[174,3,1,""],mutelist:[174,3,1,""],objects:[174,4,1,""],path:[174,4,1,""],pose_transform:[174,3,1,""],post_join_channel:[174,3,1,""],post_leave_channel:[174,3,1,""],post_send_message:[174,3,1,""],pre_join_channel:[174,3,1,""],pre_leave_channel:[174,3,1,""],pre_send_message:[174,3,1,""],tempmsg:[174,3,1,""],typename:[174,4,1,""],unmute:[174,3,1,""],web_get_admin_url:[174,3,1,""],web_get_create_url:[174,3,1,""],web_get_delete_url:[174,3,1,""],web_get_detail_url:[174,3,1,""],web_get_update_url:[174,3,1,""],wholist:[174,3,1,""]},"evennia.comms.managers":{ChannelDBManager:[175,1,1,""],ChannelManager:[175,1,1,""],CommError:[175,2,1,""],MsgManager:[175,1,1,""],identify_object:[175,5,1,""],to_object:[175,5,1,""]},"evennia.comms.managers.ChannelDBManager":{channel_search:[175,3,1,""],get_all_channels:[175,3,1,""],get_channel:[175,3,1,""],get_subscriptions:[175,3,1,""],search_channel:[175,3,1,""]},"evennia.comms.managers.MsgManager":{get_message_by_id:[175,3,1,""],get_messages_by_channel:[175,3,1,""],get_messages_by_receiver:[175,3,1,""],get_messages_by_sender:[175,3,1,""],identify_object:[175,3,1,""],message_search:[175,3,1,""],search_message:[175,3,1,""]},"evennia.comms.models":{ChannelDB:[176,1,1,""],Msg:[176,1,1,""],TempMsg:[176,1,1,""]},"evennia.comms.models.ChannelDB":{DoesNotExist:[176,2,1,""],MultipleObjectsReturned:[176,2,1,""],channel_set:[176,4,1,""],db_account_subscriptions:[176,4,1,""],db_attributes:[176,4,1,""],db_object_subscriptions:[176,4,1,""],db_tags:[176,4,1,""],get_next_by_db_date_created:[176,3,1,""],get_previous_by_db_date_created:[176,3,1,""],hide_from_channels_set:[176,4,1,""],id:[176,4,1,""],objects:[176,4,1,""],path:[176,4,1,""],subscriptions:[176,4,1,""],typename:[176,4,1,""]},"evennia.comms.models.Msg":{DoesNotExist:[176,2,1,""],MultipleObjectsReturned:[176,2,1,""],__init__:[176,3,1,""],access:[176,3,1,""],channels:[176,3,1,""],date_created:[176,3,1,""],db_date_created:[176,4,1,""],db_header:[176,4,1,""],db_hide_from_accounts:[176,4,1,""],db_hide_from_channels:[176,4,1,""],db_hide_from_objects:[176,4,1,""],db_lock_storage:[176,4,1,""],db_message:[176,4,1,""],db_receivers_accounts:[176,4,1,""],db_receivers_channels:[176,4,1,""],db_receivers_objects:[176,4,1,""],db_receivers_scripts:[176,4,1,""],db_sender_accounts:[176,4,1,""],db_sender_external:[176,4,1,""],db_sender_objects:[176,4,1,""],db_sender_scripts:[176,4,1,""],db_tags:[176,4,1,""],get_next_by_db_date_created:[176,3,1,""],get_previous_by_db_date_created:[176,3,1,""],header:[176,3,1,""],hide_from:[176,3,1,""],id:[176,4,1,""],lock_storage:[176,3,1,""],locks:[176,4,1,""],message:[176,3,1,""],objects:[176,4,1,""],path:[176,4,1,""],receivers:[176,3,1,""],remove_receiver:[176,3,1,""],remove_sender:[176,3,1,""],sender_external:[176,3,1,""],senders:[176,3,1,""],tags:[176,4,1,""],typename:[176,4,1,""]},"evennia.comms.models.TempMsg":{__init__:[176,3,1,""],access:[176,3,1,""],locks:[176,4,1,""],remove_receiver:[176,3,1,""],remove_sender:[176,3,1,""]},"evennia.contrib":{barter:[178,0,0,"-"],building_menu:[179,0,0,"-"],chargen:[180,0,0,"-"],clothing:[181,0,0,"-"],color_markups:[182,0,0,"-"],custom_gametime:[183,0,0,"-"],dice:[184,0,0,"-"],email_login:[185,0,0,"-"],extended_room:[186,0,0,"-"],fieldfill:[187,0,0,"-"],gendersub:[188,0,0,"-"],health_bar:[189,0,0,"-"],ingame_python:[190,0,0,"-"],mail:[198,0,0,"-"],mapbuilder:[199,0,0,"-"],menu_login:[200,0,0,"-"],multidescer:[201,0,0,"-"],puzzles:[202,0,0,"-"],random_string_generator:[203,0,0,"-"],rplanguage:[204,0,0,"-"],rpsystem:[205,0,0,"-"],security:[206,0,0,"-"],simpledoor:[211,0,0,"-"],slow_exit:[212,0,0,"-"],talking_npc:[213,0,0,"-"],tree_select:[214,0,0,"-"],turnbattle:[215,0,0,"-"],tutorial_examples:[221,0,0,"-"],tutorial_world:[228,0,0,"-"],unixcommand:[232,0,0,"-"],wilderness:[233,0,0,"-"]},"evennia.contrib.barter":{CmdAccept:[178,1,1,""],CmdDecline:[178,1,1,""],CmdEvaluate:[178,1,1,""],CmdFinish:[178,1,1,""],CmdOffer:[178,1,1,""],CmdStatus:[178,1,1,""],CmdTrade:[178,1,1,""],CmdTradeBase:[178,1,1,""],CmdTradeHelp:[178,1,1,""],CmdsetTrade:[178,1,1,""],TradeHandler:[178,1,1,""],TradeTimeout:[178,1,1,""]},"evennia.contrib.barter.CmdAccept":{aliases:[178,4,1,""],func:[178,3,1,""],help_category:[178,4,1,""],key:[178,4,1,""],lock_storage:[178,4,1,""],locks:[178,4,1,""],search_index_entry:[178,4,1,""]},"evennia.contrib.barter.CmdDecline":{aliases:[178,4,1,""],func:[178,3,1,""],help_category:[178,4,1,""],key:[178,4,1,""],lock_storage:[178,4,1,""],locks:[178,4,1,""],search_index_entry:[178,4,1,""]},"evennia.contrib.barter.CmdEvaluate":{aliases:[178,4,1,""],func:[178,3,1,""],help_category:[178,4,1,""],key:[178,4,1,""],lock_storage:[178,4,1,""],locks:[178,4,1,""],search_index_entry:[178,4,1,""]},"evennia.contrib.barter.CmdFinish":{aliases:[178,4,1,""],func:[178,3,1,""],help_category:[178,4,1,""],key:[178,4,1,""],lock_storage:[178,4,1,""],locks:[178,4,1,""],search_index_entry:[178,4,1,""]},"evennia.contrib.barter.CmdOffer":{aliases:[178,4,1,""],func:[178,3,1,""],help_category:[178,4,1,""],key:[178,4,1,""],lock_storage:[178,4,1,""],locks:[178,4,1,""],search_index_entry:[178,4,1,""]},"evennia.contrib.barter.CmdStatus":{aliases:[178,4,1,""],func:[178,3,1,""],help_category:[178,4,1,""],key:[178,4,1,""],lock_storage:[178,4,1,""],locks:[178,4,1,""],search_index_entry:[178,4,1,""]},"evennia.contrib.barter.CmdTrade":{aliases:[178,4,1,""],func:[178,3,1,""],help_category:[178,4,1,""],key:[178,4,1,""],lock_storage:[178,4,1,""],locks:[178,4,1,""],search_index_entry:[178,4,1,""]},"evennia.contrib.barter.CmdTradeBase":{aliases:[178,4,1,""],help_category:[178,4,1,""],key:[178,4,1,""],lock_storage:[178,4,1,""],parse:[178,3,1,""],search_index_entry:[178,4,1,""]},"evennia.contrib.barter.CmdTradeHelp":{aliases:[178,4,1,""],func:[178,3,1,""],help_category:[178,4,1,""],key:[178,4,1,""],lock_storage:[178,4,1,""],locks:[178,4,1,""],search_index_entry:[178,4,1,""]},"evennia.contrib.barter.CmdsetTrade":{at_cmdset_creation:[178,3,1,""],key:[178,4,1,""],path:[178,4,1,""]},"evennia.contrib.barter.TradeHandler":{__init__:[178,3,1,""],accept:[178,3,1,""],decline:[178,3,1,""],finish:[178,3,1,""],get_other:[178,3,1,""],join:[178,3,1,""],list:[178,3,1,""],msg_other:[178,3,1,""],offer:[178,3,1,""],search:[178,3,1,""],unjoin:[178,3,1,""]},"evennia.contrib.barter.TradeTimeout":{DoesNotExist:[178,2,1,""],MultipleObjectsReturned:[178,2,1,""],at_repeat:[178,3,1,""],at_script_creation:[178,3,1,""],is_valid:[178,3,1,""],path:[178,4,1,""],typename:[178,4,1,""]},"evennia.contrib.building_menu":{BuildingMenu:[179,1,1,""],BuildingMenuCmdSet:[179,1,1,""],Choice:[179,1,1,""],CmdNoInput:[179,1,1,""],CmdNoMatch:[179,1,1,""],GenericBuildingCmd:[179,1,1,""],GenericBuildingMenu:[179,1,1,""],menu_edit:[179,5,1,""],menu_quit:[179,5,1,""],menu_setattr:[179,5,1,""]},"evennia.contrib.building_menu.BuildingMenu":{__init__:[179,3,1,""],add_choice:[179,3,1,""],add_choice_edit:[179,3,1,""],add_choice_quit:[179,3,1,""],close:[179,3,1,""],current_choice:[179,3,1,""],display:[179,3,1,""],display_choice:[179,3,1,""],display_title:[179,3,1,""],init:[179,3,1,""],joker_key:[179,4,1,""],keys_go_back:[179,4,1,""],min_shortcut:[179,4,1,""],move:[179,3,1,""],open:[179,3,1,""],open_parent_menu:[179,3,1,""],open_submenu:[179,3,1,""],relevant_choices:[179,3,1,""],restore:[179,3,1,""],sep_keys:[179,4,1,""]},"evennia.contrib.building_menu.BuildingMenuCmdSet":{at_cmdset_creation:[179,3,1,""],key:[179,4,1,""],path:[179,4,1,""],priority:[179,4,1,""]},"evennia.contrib.building_menu.Choice":{__init__:[179,3,1,""],enter:[179,3,1,""],format_text:[179,3,1,""],keys:[179,3,1,""],leave:[179,3,1,""],nomatch:[179,3,1,""]},"evennia.contrib.building_menu.CmdNoInput":{__init__:[179,3,1,""],aliases:[179,4,1,""],func:[179,3,1,""],help_category:[179,4,1,""],key:[179,4,1,""],lock_storage:[179,4,1,""],locks:[179,4,1,""],search_index_entry:[179,4,1,""]},"evennia.contrib.building_menu.CmdNoMatch":{__init__:[179,3,1,""],aliases:[179,4,1,""],func:[179,3,1,""],help_category:[179,4,1,""],key:[179,4,1,""],lock_storage:[179,4,1,""],locks:[179,4,1,""],search_index_entry:[179,4,1,""]},"evennia.contrib.building_menu.GenericBuildingCmd":{aliases:[179,4,1,""],func:[179,3,1,""],help_category:[179,4,1,""],key:[179,4,1,""],lock_storage:[179,4,1,""],search_index_entry:[179,4,1,""]},"evennia.contrib.building_menu.GenericBuildingMenu":{init:[179,3,1,""]},"evennia.contrib.chargen":{CmdOOCCharacterCreate:[180,1,1,""],CmdOOCLook:[180,1,1,""],OOCCmdSetCharGen:[180,1,1,""]},"evennia.contrib.chargen.CmdOOCCharacterCreate":{aliases:[180,4,1,""],func:[180,3,1,""],help_category:[180,4,1,""],key:[180,4,1,""],lock_storage:[180,4,1,""],locks:[180,4,1,""],search_index_entry:[180,4,1,""]},"evennia.contrib.chargen.CmdOOCLook":{aliases:[180,4,1,""],func:[180,3,1,""],help_category:[180,4,1,""],key:[180,4,1,""],lock_storage:[180,4,1,""],locks:[180,4,1,""],search_index_entry:[180,4,1,""]},"evennia.contrib.chargen.OOCCmdSetCharGen":{at_cmdset_creation:[180,3,1,""],path:[180,4,1,""]},"evennia.contrib.clothing":{ClothedCharacter:[181,1,1,""],ClothedCharacterCmdSet:[181,1,1,""],Clothing:[181,1,1,""],CmdCover:[181,1,1,""],CmdDrop:[181,1,1,""],CmdGive:[181,1,1,""],CmdInventory:[181,1,1,""],CmdRemove:[181,1,1,""],CmdUncover:[181,1,1,""],CmdWear:[181,1,1,""],clothing_type_count:[181,5,1,""],get_worn_clothes:[181,5,1,""],order_clothes_list:[181,5,1,""],single_type_count:[181,5,1,""]},"evennia.contrib.clothing.ClothedCharacter":{DoesNotExist:[181,2,1,""],MultipleObjectsReturned:[181,2,1,""],path:[181,4,1,""],return_appearance:[181,3,1,""],typename:[181,4,1,""]},"evennia.contrib.clothing.ClothedCharacterCmdSet":{at_cmdset_creation:[181,3,1,""],key:[181,4,1,""],path:[181,4,1,""]},"evennia.contrib.clothing.Clothing":{DoesNotExist:[181,2,1,""],MultipleObjectsReturned:[181,2,1,""],at_get:[181,3,1,""],path:[181,4,1,""],remove:[181,3,1,""],typename:[181,4,1,""],wear:[181,3,1,""]},"evennia.contrib.clothing.CmdCover":{aliases:[181,4,1,""],func:[181,3,1,""],help_category:[181,4,1,""],key:[181,4,1,""],lock_storage:[181,4,1,""],search_index_entry:[181,4,1,""]},"evennia.contrib.clothing.CmdDrop":{aliases:[181,4,1,""],arg_regex:[181,4,1,""],func:[181,3,1,""],help_category:[181,4,1,""],key:[181,4,1,""],lock_storage:[181,4,1,""],locks:[181,4,1,""],search_index_entry:[181,4,1,""]},"evennia.contrib.clothing.CmdGive":{aliases:[181,4,1,""],arg_regex:[181,4,1,""],func:[181,3,1,""],help_category:[181,4,1,""],key:[181,4,1,""],lock_storage:[181,4,1,""],locks:[181,4,1,""],search_index_entry:[181,4,1,""]},"evennia.contrib.clothing.CmdInventory":{aliases:[181,4,1,""],arg_regex:[181,4,1,""],func:[181,3,1,""],help_category:[181,4,1,""],key:[181,4,1,""],lock_storage:[181,4,1,""],locks:[181,4,1,""],search_index_entry:[181,4,1,""]},"evennia.contrib.clothing.CmdRemove":{aliases:[181,4,1,""],func:[181,3,1,""],help_category:[181,4,1,""],key:[181,4,1,""],lock_storage:[181,4,1,""],search_index_entry:[181,4,1,""]},"evennia.contrib.clothing.CmdUncover":{aliases:[181,4,1,""],func:[181,3,1,""],help_category:[181,4,1,""],key:[181,4,1,""],lock_storage:[181,4,1,""],search_index_entry:[181,4,1,""]},"evennia.contrib.clothing.CmdWear":{aliases:[181,4,1,""],func:[181,3,1,""],help_category:[181,4,1,""],key:[181,4,1,""],lock_storage:[181,4,1,""],search_index_entry:[181,4,1,""]},"evennia.contrib.custom_gametime":{GametimeScript:[183,1,1,""],custom_gametime:[183,5,1,""],gametime_to_realtime:[183,5,1,""],real_seconds_until:[183,5,1,""],realtime_to_gametime:[183,5,1,""],schedule:[183,5,1,""],time_to_tuple:[183,5,1,""]},"evennia.contrib.custom_gametime.GametimeScript":{DoesNotExist:[183,2,1,""],MultipleObjectsReturned:[183,2,1,""],at_repeat:[183,3,1,""],at_script_creation:[183,3,1,""],path:[183,4,1,""],typename:[183,4,1,""]},"evennia.contrib.dice":{CmdDice:[184,1,1,""],DiceCmdSet:[184,1,1,""],roll_dice:[184,5,1,""]},"evennia.contrib.dice.CmdDice":{aliases:[184,4,1,""],func:[184,3,1,""],help_category:[184,4,1,""],key:[184,4,1,""],lock_storage:[184,4,1,""],locks:[184,4,1,""],search_index_entry:[184,4,1,""]},"evennia.contrib.dice.DiceCmdSet":{at_cmdset_creation:[184,3,1,""],path:[184,4,1,""]},"evennia.contrib.email_login":{CmdUnconnectedConnect:[185,1,1,""],CmdUnconnectedCreate:[185,1,1,""],CmdUnconnectedHelp:[185,1,1,""],CmdUnconnectedLook:[185,1,1,""],CmdUnconnectedQuit:[185,1,1,""]},"evennia.contrib.email_login.CmdUnconnectedConnect":{aliases:[185,4,1,""],func:[185,3,1,""],help_category:[185,4,1,""],key:[185,4,1,""],lock_storage:[185,4,1,""],locks:[185,4,1,""],search_index_entry:[185,4,1,""]},"evennia.contrib.email_login.CmdUnconnectedCreate":{aliases:[185,4,1,""],func:[185,3,1,""],help_category:[185,4,1,""],key:[185,4,1,""],lock_storage:[185,4,1,""],locks:[185,4,1,""],parse:[185,3,1,""],search_index_entry:[185,4,1,""]},"evennia.contrib.email_login.CmdUnconnectedHelp":{aliases:[185,4,1,""],func:[185,3,1,""],help_category:[185,4,1,""],key:[185,4,1,""],lock_storage:[185,4,1,""],locks:[185,4,1,""],search_index_entry:[185,4,1,""]},"evennia.contrib.email_login.CmdUnconnectedLook":{aliases:[185,4,1,""],func:[185,3,1,""],help_category:[185,4,1,""],key:[185,4,1,""],lock_storage:[185,4,1,""],locks:[185,4,1,""],search_index_entry:[185,4,1,""]},"evennia.contrib.email_login.CmdUnconnectedQuit":{aliases:[185,4,1,""],func:[185,3,1,""],help_category:[185,4,1,""],key:[185,4,1,""],lock_storage:[185,4,1,""],locks:[185,4,1,""],search_index_entry:[185,4,1,""]},"evennia.contrib.extended_room":{CmdExtendedRoomDesc:[186,1,1,""],CmdExtendedRoomDetail:[186,1,1,""],CmdExtendedRoomGameTime:[186,1,1,""],CmdExtendedRoomLook:[186,1,1,""],ExtendedRoom:[186,1,1,""],ExtendedRoomCmdSet:[186,1,1,""]},"evennia.contrib.extended_room.CmdExtendedRoomDesc":{aliases:[186,4,1,""],func:[186,3,1,""],help_category:[186,4,1,""],key:[186,4,1,""],lock_storage:[186,4,1,""],reset_times:[186,3,1,""],search_index_entry:[186,4,1,""],switch_options:[186,4,1,""]},"evennia.contrib.extended_room.CmdExtendedRoomDetail":{aliases:[186,4,1,""],func:[186,3,1,""],help_category:[186,4,1,""],key:[186,4,1,""],lock_storage:[186,4,1,""],locks:[186,4,1,""],search_index_entry:[186,4,1,""]},"evennia.contrib.extended_room.CmdExtendedRoomGameTime":{aliases:[186,4,1,""],func:[186,3,1,""],help_category:[186,4,1,""],key:[186,4,1,""],lock_storage:[186,4,1,""],locks:[186,4,1,""],search_index_entry:[186,4,1,""]},"evennia.contrib.extended_room.CmdExtendedRoomLook":{aliases:[186,4,1,""],func:[186,3,1,""],help_category:[186,4,1,""],key:[186,4,1,""],lock_storage:[186,4,1,""],search_index_entry:[186,4,1,""]},"evennia.contrib.extended_room.ExtendedRoom":{DoesNotExist:[186,2,1,""],MultipleObjectsReturned:[186,2,1,""],at_object_creation:[186,3,1,""],del_detail:[186,3,1,""],get_time_and_season:[186,3,1,""],path:[186,4,1,""],replace_timeslots:[186,3,1,""],return_appearance:[186,3,1,""],return_detail:[186,3,1,""],set_detail:[186,3,1,""],typename:[186,4,1,""],update_current_description:[186,3,1,""]},"evennia.contrib.extended_room.ExtendedRoomCmdSet":{at_cmdset_creation:[186,3,1,""],path:[186,4,1,""]},"evennia.contrib.fieldfill":{CmdTestMenu:[187,1,1,""],FieldEvMenu:[187,1,1,""],display_formdata:[187,5,1,""],form_template_to_dict:[187,5,1,""],init_delayed_message:[187,5,1,""],init_fill_field:[187,5,1,""],menunode_fieldfill:[187,5,1,""],sendmessage:[187,5,1,""],verify_online_player:[187,5,1,""]},"evennia.contrib.fieldfill.CmdTestMenu":{aliases:[187,4,1,""],func:[187,3,1,""],help_category:[187,4,1,""],key:[187,4,1,""],lock_storage:[187,4,1,""],search_index_entry:[187,4,1,""]},"evennia.contrib.fieldfill.FieldEvMenu":{node_formatter:[187,3,1,""]},"evennia.contrib.gendersub":{GenderCharacter:[188,1,1,""],SetGender:[188,1,1,""]},"evennia.contrib.gendersub.GenderCharacter":{DoesNotExist:[188,2,1,""],MultipleObjectsReturned:[188,2,1,""],at_object_creation:[188,3,1,""],msg:[188,3,1,""],path:[188,4,1,""],typename:[188,4,1,""]},"evennia.contrib.gendersub.SetGender":{aliases:[188,4,1,""],func:[188,3,1,""],help_category:[188,4,1,""],key:[188,4,1,""],lock_storage:[188,4,1,""],locks:[188,4,1,""],search_index_entry:[188,4,1,""]},"evennia.contrib.health_bar":{display_meter:[189,5,1,""]},"evennia.contrib.ingame_python":{callbackhandler:[191,0,0,"-"],commands:[192,0,0,"-"],eventfuncs:[193,0,0,"-"],scripts:[194,0,0,"-"],tests:[195,0,0,"-"],typeclasses:[196,0,0,"-"],utils:[197,0,0,"-"]},"evennia.contrib.ingame_python.callbackhandler":{Callback:[191,1,1,""],CallbackHandler:[191,1,1,""]},"evennia.contrib.ingame_python.callbackhandler.Callback":{author:[191,3,1,""],code:[191,3,1,""],created_on:[191,3,1,""],name:[191,3,1,""],number:[191,3,1,""],obj:[191,3,1,""],parameters:[191,3,1,""],updated_by:[191,3,1,""],updated_on:[191,3,1,""],valid:[191,3,1,""]},"evennia.contrib.ingame_python.callbackhandler.CallbackHandler":{__init__:[191,3,1,""],add:[191,3,1,""],all:[191,3,1,""],call:[191,3,1,""],edit:[191,3,1,""],format_callback:[191,3,1,""],get:[191,3,1,""],get_variable:[191,3,1,""],remove:[191,3,1,""],script:[191,4,1,""]},"evennia.contrib.ingame_python.commands":{CmdCallback:[192,1,1,""]},"evennia.contrib.ingame_python.commands.CmdCallback":{accept_callback:[192,3,1,""],add_callback:[192,3,1,""],aliases:[192,4,1,""],del_callback:[192,3,1,""],edit_callback:[192,3,1,""],func:[192,3,1,""],get_help:[192,3,1,""],help_category:[192,4,1,""],key:[192,4,1,""],list_callbacks:[192,3,1,""],list_tasks:[192,3,1,""],lock_storage:[192,4,1,""],locks:[192,4,1,""],search_index_entry:[192,4,1,""]},"evennia.contrib.ingame_python.eventfuncs":{call_event:[193,5,1,""],deny:[193,5,1,""],get:[193,5,1,""]},"evennia.contrib.ingame_python.scripts":{EventHandler:[194,1,1,""],TimeEventScript:[194,1,1,""],complete_task:[194,5,1,""]},"evennia.contrib.ingame_python.scripts.EventHandler":{DoesNotExist:[194,2,1,""],MultipleObjectsReturned:[194,2,1,""],accept_callback:[194,3,1,""],add_callback:[194,3,1,""],add_event:[194,3,1,""],at_script_creation:[194,3,1,""],at_start:[194,3,1,""],call:[194,3,1,""],del_callback:[194,3,1,""],edit_callback:[194,3,1,""],get_callbacks:[194,3,1,""],get_events:[194,3,1,""],get_variable:[194,3,1,""],handle_error:[194,3,1,""],path:[194,4,1,""],set_task:[194,3,1,""],typename:[194,4,1,""]},"evennia.contrib.ingame_python.scripts.TimeEventScript":{DoesNotExist:[194,2,1,""],MultipleObjectsReturned:[194,2,1,""],at_repeat:[194,3,1,""],at_script_creation:[194,3,1,""],path:[194,4,1,""],typename:[194,4,1,""]},"evennia.contrib.ingame_python.tests":{TestCmdCallback:[195,1,1,""],TestDefaultCallbacks:[195,1,1,""],TestEventHandler:[195,1,1,""]},"evennia.contrib.ingame_python.tests.TestCmdCallback":{setUp:[195,3,1,""],tearDown:[195,3,1,""],test_accept:[195,3,1,""],test_add:[195,3,1,""],test_del:[195,3,1,""],test_list:[195,3,1,""],test_lock:[195,3,1,""]},"evennia.contrib.ingame_python.tests.TestDefaultCallbacks":{setUp:[195,3,1,""],tearDown:[195,3,1,""],test_exit:[195,3,1,""]},"evennia.contrib.ingame_python.tests.TestEventHandler":{setUp:[195,3,1,""],tearDown:[195,3,1,""],test_accept:[195,3,1,""],test_add_validation:[195,3,1,""],test_call:[195,3,1,""],test_del:[195,3,1,""],test_edit:[195,3,1,""],test_edit_validation:[195,3,1,""],test_handler:[195,3,1,""],test_start:[195,3,1,""]},"evennia.contrib.ingame_python.typeclasses":{EventCharacter:[196,1,1,""],EventExit:[196,1,1,""],EventObject:[196,1,1,""],EventRoom:[196,1,1,""]},"evennia.contrib.ingame_python.typeclasses.EventCharacter":{DoesNotExist:[196,2,1,""],MultipleObjectsReturned:[196,2,1,""],announce_move_from:[196,3,1,""],announce_move_to:[196,3,1,""],at_after_move:[196,3,1,""],at_before_move:[196,3,1,""],at_before_say:[196,3,1,""],at_object_delete:[196,3,1,""],at_post_puppet:[196,3,1,""],at_pre_unpuppet:[196,3,1,""],at_say:[196,3,1,""],callbacks:[196,4,1,""],path:[196,4,1,""],typename:[196,4,1,""]},"evennia.contrib.ingame_python.typeclasses.EventExit":{DoesNotExist:[196,2,1,""],MultipleObjectsReturned:[196,2,1,""],at_traverse:[196,3,1,""],callbacks:[196,4,1,""],path:[196,4,1,""],typename:[196,4,1,""]},"evennia.contrib.ingame_python.typeclasses.EventObject":{DoesNotExist:[196,2,1,""],MultipleObjectsReturned:[196,2,1,""],at_drop:[196,3,1,""],at_get:[196,3,1,""],callbacks:[196,4,1,""],path:[196,4,1,""],typename:[196,4,1,""]},"evennia.contrib.ingame_python.typeclasses.EventRoom":{DoesNotExist:[196,2,1,""],MultipleObjectsReturned:[196,2,1,""],at_object_delete:[196,3,1,""],callbacks:[196,4,1,""],path:[196,4,1,""],typename:[196,4,1,""]},"evennia.contrib.ingame_python.utils":{InterruptEvent:[197,2,1,""],get_event_handler:[197,5,1,""],get_next_wait:[197,5,1,""],keyword_event:[197,5,1,""],phrase_event:[197,5,1,""],register_events:[197,5,1,""],time_event:[197,5,1,""]},"evennia.contrib.mail":{CmdMail:[198,1,1,""],CmdMailCharacter:[198,1,1,""]},"evennia.contrib.mail.CmdMail":{aliases:[198,4,1,""],func:[198,3,1,""],get_all_mail:[198,3,1,""],help_category:[198,4,1,""],key:[198,4,1,""],lock:[198,4,1,""],lock_storage:[198,4,1,""],parse:[198,3,1,""],search_index_entry:[198,4,1,""],search_targets:[198,3,1,""],send_mail:[198,3,1,""]},"evennia.contrib.mail.CmdMailCharacter":{account_caller:[198,4,1,""],aliases:[198,4,1,""],help_category:[198,4,1,""],key:[198,4,1,""],lock_storage:[198,4,1,""],search_index_entry:[198,4,1,""]},"evennia.contrib.mapbuilder":{CmdMapBuilder:[199,1,1,""],build_map:[199,5,1,""],example1_build_forest:[199,5,1,""],example1_build_mountains:[199,5,1,""],example1_build_temple:[199,5,1,""],example2_build_forest:[199,5,1,""],example2_build_horizontal_exit:[199,5,1,""],example2_build_verticle_exit:[199,5,1,""]},"evennia.contrib.mapbuilder.CmdMapBuilder":{aliases:[199,4,1,""],func:[199,3,1,""],help_category:[199,4,1,""],key:[199,4,1,""],lock_storage:[199,4,1,""],locks:[199,4,1,""],search_index_entry:[199,4,1,""]},"evennia.contrib.menu_login":{CmdUnloggedinLook:[200,1,1,""],UnloggedinCmdSet:[200,1,1,""],node_enter_password:[200,5,1,""],node_enter_username:[200,5,1,""],node_quit_or_login:[200,5,1,""]},"evennia.contrib.menu_login.CmdUnloggedinLook":{aliases:[200,4,1,""],arg_regex:[200,4,1,""],func:[200,3,1,""],help_category:[200,4,1,""],key:[200,4,1,""],lock_storage:[200,4,1,""],locks:[200,4,1,""],search_index_entry:[200,4,1,""]},"evennia.contrib.menu_login.UnloggedinCmdSet":{at_cmdset_creation:[200,3,1,""],key:[200,4,1,""],path:[200,4,1,""],priority:[200,4,1,""]},"evennia.contrib.multidescer":{CmdMultiDesc:[201,1,1,""],DescValidateError:[201,2,1,""]},"evennia.contrib.multidescer.CmdMultiDesc":{aliases:[201,4,1,""],func:[201,3,1,""],help_category:[201,4,1,""],key:[201,4,1,""],lock_storage:[201,4,1,""],locks:[201,4,1,""],search_index_entry:[201,4,1,""]},"evennia.contrib.puzzles":{CmdArmPuzzle:[202,1,1,""],CmdCreatePuzzleRecipe:[202,1,1,""],CmdEditPuzzle:[202,1,1,""],CmdListArmedPuzzles:[202,1,1,""],CmdListPuzzleRecipes:[202,1,1,""],CmdUsePuzzleParts:[202,1,1,""],PuzzleRecipe:[202,1,1,""],PuzzleSystemCmdSet:[202,1,1,""],maskout_protodef:[202,5,1,""],proto_def:[202,5,1,""]},"evennia.contrib.puzzles.CmdArmPuzzle":{aliases:[202,4,1,""],func:[202,3,1,""],help_category:[202,4,1,""],key:[202,4,1,""],lock_storage:[202,4,1,""],locks:[202,4,1,""],search_index_entry:[202,4,1,""]},"evennia.contrib.puzzles.CmdCreatePuzzleRecipe":{aliases:[202,4,1,""],confirm:[202,4,1,""],default_confirm:[202,4,1,""],func:[202,3,1,""],help_category:[202,4,1,""],key:[202,4,1,""],lock_storage:[202,4,1,""],locks:[202,4,1,""],search_index_entry:[202,4,1,""]},"evennia.contrib.puzzles.CmdEditPuzzle":{aliases:[202,4,1,""],func:[202,3,1,""],help_category:[202,4,1,""],key:[202,4,1,""],lock_storage:[202,4,1,""],locks:[202,4,1,""],search_index_entry:[202,4,1,""]},"evennia.contrib.puzzles.CmdListArmedPuzzles":{aliases:[202,4,1,""],func:[202,3,1,""],help_category:[202,4,1,""],key:[202,4,1,""],lock_storage:[202,4,1,""],locks:[202,4,1,""],search_index_entry:[202,4,1,""]},"evennia.contrib.puzzles.CmdListPuzzleRecipes":{aliases:[202,4,1,""],func:[202,3,1,""],help_category:[202,4,1,""],key:[202,4,1,""],lock_storage:[202,4,1,""],locks:[202,4,1,""],search_index_entry:[202,4,1,""]},"evennia.contrib.puzzles.CmdUsePuzzleParts":{aliases:[202,4,1,""],func:[202,3,1,""],help_category:[202,4,1,""],key:[202,4,1,""],lock_storage:[202,4,1,""],locks:[202,4,1,""],search_index_entry:[202,4,1,""]},"evennia.contrib.puzzles.PuzzleRecipe":{DoesNotExist:[202,2,1,""],MultipleObjectsReturned:[202,2,1,""],path:[202,4,1,""],save_recipe:[202,3,1,""],typename:[202,4,1,""]},"evennia.contrib.puzzles.PuzzleSystemCmdSet":{at_cmdset_creation:[202,3,1,""],path:[202,4,1,""]},"evennia.contrib.random_string_generator":{ExhaustedGenerator:[203,2,1,""],RandomStringGenerator:[203,1,1,""],RandomStringGeneratorScript:[203,1,1,""],RejectedRegex:[203,2,1,""]},"evennia.contrib.random_string_generator.RandomStringGenerator":{__init__:[203,3,1,""],all:[203,3,1,""],clear:[203,3,1,""],get:[203,3,1,""],remove:[203,3,1,""],script:[203,4,1,""]},"evennia.contrib.random_string_generator.RandomStringGeneratorScript":{DoesNotExist:[203,2,1,""],MultipleObjectsReturned:[203,2,1,""],at_script_creation:[203,3,1,""],path:[203,4,1,""],typename:[203,4,1,""]},"evennia.contrib.rplanguage":{LanguageError:[204,2,1,""],LanguageExistsError:[204,2,1,""],LanguageHandler:[204,1,1,""],add_language:[204,5,1,""],available_languages:[204,5,1,""],obfuscate_language:[204,5,1,""],obfuscate_whisper:[204,5,1,""]},"evennia.contrib.rplanguage.LanguageHandler":{DoesNotExist:[204,2,1,""],MultipleObjectsReturned:[204,2,1,""],add:[204,3,1,""],at_script_creation:[204,3,1,""],path:[204,4,1,""],translate:[204,3,1,""],typename:[204,4,1,""]},"evennia.contrib.rpsystem":{CmdEmote:[205,1,1,""],CmdMask:[205,1,1,""],CmdPose:[205,1,1,""],CmdRecog:[205,1,1,""],CmdSay:[205,1,1,""],CmdSdesc:[205,1,1,""],ContribRPCharacter:[205,1,1,""],ContribRPObject:[205,1,1,""],ContribRPRoom:[205,1,1,""],EmoteError:[205,2,1,""],LanguageError:[205,2,1,""],RPCommand:[205,1,1,""],RPSystemCmdSet:[205,1,1,""],RecogError:[205,2,1,""],RecogHandler:[205,1,1,""],SdescError:[205,2,1,""],SdescHandler:[205,1,1,""],ordered_permutation_regex:[205,5,1,""],parse_language:[205,5,1,""],parse_sdescs_and_recogs:[205,5,1,""],regex_tuple_from_key_alias:[205,5,1,""],send_emote:[205,5,1,""]},"evennia.contrib.rpsystem.CmdEmote":{aliases:[205,4,1,""],func:[205,3,1,""],help_category:[205,4,1,""],key:[205,4,1,""],lock_storage:[205,4,1,""],locks:[205,4,1,""],search_index_entry:[205,4,1,""]},"evennia.contrib.rpsystem.CmdMask":{aliases:[205,4,1,""],func:[205,3,1,""],help_category:[205,4,1,""],key:[205,4,1,""],lock_storage:[205,4,1,""],search_index_entry:[205,4,1,""]},"evennia.contrib.rpsystem.CmdPose":{aliases:[205,4,1,""],func:[205,3,1,""],help_category:[205,4,1,""],key:[205,4,1,""],lock_storage:[205,4,1,""],parse:[205,3,1,""],search_index_entry:[205,4,1,""]},"evennia.contrib.rpsystem.CmdRecog":{aliases:[205,4,1,""],func:[205,3,1,""],help_category:[205,4,1,""],key:[205,4,1,""],lock_storage:[205,4,1,""],parse:[205,3,1,""],search_index_entry:[205,4,1,""]},"evennia.contrib.rpsystem.CmdSay":{aliases:[205,4,1,""],func:[205,3,1,""],help_category:[205,4,1,""],key:[205,4,1,""],lock_storage:[205,4,1,""],locks:[205,4,1,""],search_index_entry:[205,4,1,""]},"evennia.contrib.rpsystem.CmdSdesc":{aliases:[205,4,1,""],func:[205,3,1,""],help_category:[205,4,1,""],key:[205,4,1,""],lock_storage:[205,4,1,""],locks:[205,4,1,""],search_index_entry:[205,4,1,""]},"evennia.contrib.rpsystem.ContribRPCharacter":{DoesNotExist:[205,2,1,""],MultipleObjectsReturned:[205,2,1,""],at_before_say:[205,3,1,""],at_object_creation:[205,3,1,""],get_display_name:[205,3,1,""],path:[205,4,1,""],process_language:[205,3,1,""],process_recog:[205,3,1,""],process_sdesc:[205,3,1,""],recog:[205,4,1,""],sdesc:[205,4,1,""],typename:[205,4,1,""]},"evennia.contrib.rpsystem.ContribRPObject":{DoesNotExist:[205,2,1,""],MultipleObjectsReturned:[205,2,1,""],at_object_creation:[205,3,1,""],get_display_name:[205,3,1,""],path:[205,4,1,""],return_appearance:[205,3,1,""],search:[205,3,1,""],typename:[205,4,1,""]},"evennia.contrib.rpsystem.ContribRPRoom":{DoesNotExist:[205,2,1,""],MultipleObjectsReturned:[205,2,1,""],path:[205,4,1,""],typename:[205,4,1,""]},"evennia.contrib.rpsystem.RPCommand":{aliases:[205,4,1,""],help_category:[205,4,1,""],key:[205,4,1,""],lock_storage:[205,4,1,""],parse:[205,3,1,""],search_index_entry:[205,4,1,""]},"evennia.contrib.rpsystem.RPSystemCmdSet":{at_cmdset_creation:[205,3,1,""],path:[205,4,1,""]},"evennia.contrib.rpsystem.RecogHandler":{__init__:[205,3,1,""],add:[205,3,1,""],all:[205,3,1,""],get:[205,3,1,""],get_regex_tuple:[205,3,1,""],remove:[205,3,1,""]},"evennia.contrib.rpsystem.SdescHandler":{__init__:[205,3,1,""],add:[205,3,1,""],get:[205,3,1,""],get_regex_tuple:[205,3,1,""]},"evennia.contrib.security":{auditing:[207,0,0,"-"]},"evennia.contrib.security.auditing":{outputs:[208,0,0,"-"],server:[209,0,0,"-"],tests:[210,0,0,"-"]},"evennia.contrib.security.auditing.outputs":{to_file:[208,5,1,""],to_syslog:[208,5,1,""]},"evennia.contrib.security.auditing.server":{AuditedServerSession:[209,1,1,""]},"evennia.contrib.security.auditing.server.AuditedServerSession":{audit:[209,3,1,""],data_in:[209,3,1,""],data_out:[209,3,1,""],mask:[209,3,1,""]},"evennia.contrib.security.auditing.tests":{AuditingTest:[210,1,1,""]},"evennia.contrib.security.auditing.tests.AuditingTest":{test_audit:[210,3,1,""],test_mask:[210,3,1,""]},"evennia.contrib.simpledoor":{CmdOpen:[211,1,1,""],CmdOpenCloseDoor:[211,1,1,""],SimpleDoor:[211,1,1,""]},"evennia.contrib.simpledoor.CmdOpen":{aliases:[211,4,1,""],create_exit:[211,3,1,""],help_category:[211,4,1,""],key:[211,4,1,""],lock_storage:[211,4,1,""],search_index_entry:[211,4,1,""]},"evennia.contrib.simpledoor.CmdOpenCloseDoor":{aliases:[211,4,1,""],func:[211,3,1,""],help_category:[211,4,1,""],key:[211,4,1,""],lock_storage:[211,4,1,""],locks:[211,4,1,""],search_index_entry:[211,4,1,""]},"evennia.contrib.simpledoor.SimpleDoor":{"delete":[211,3,1,""],DoesNotExist:[211,2,1,""],MultipleObjectsReturned:[211,2,1,""],at_failed_traverse:[211,3,1,""],at_object_creation:[211,3,1,""],path:[211,4,1,""],setdesc:[211,3,1,""],setlock:[211,3,1,""],typename:[211,4,1,""]},"evennia.contrib.slow_exit":{CmdSetSpeed:[212,1,1,""],CmdStop:[212,1,1,""],SlowExit:[212,1,1,""]},"evennia.contrib.slow_exit.CmdSetSpeed":{aliases:[212,4,1,""],func:[212,3,1,""],help_category:[212,4,1,""],key:[212,4,1,""],lock_storage:[212,4,1,""],search_index_entry:[212,4,1,""]},"evennia.contrib.slow_exit.CmdStop":{aliases:[212,4,1,""],func:[212,3,1,""],help_category:[212,4,1,""],key:[212,4,1,""],lock_storage:[212,4,1,""],search_index_entry:[212,4,1,""]},"evennia.contrib.slow_exit.SlowExit":{DoesNotExist:[212,2,1,""],MultipleObjectsReturned:[212,2,1,""],at_traverse:[212,3,1,""],path:[212,4,1,""],typename:[212,4,1,""]},"evennia.contrib.talking_npc":{CmdTalk:[213,1,1,""],END:[213,5,1,""],TalkingCmdSet:[213,1,1,""],TalkingNPC:[213,1,1,""],info1:[213,5,1,""],info2:[213,5,1,""],info3:[213,5,1,""],menu_start_node:[213,5,1,""]},"evennia.contrib.talking_npc.CmdTalk":{aliases:[213,4,1,""],func:[213,3,1,""],help_category:[213,4,1,""],key:[213,4,1,""],lock_storage:[213,4,1,""],locks:[213,4,1,""],search_index_entry:[213,4,1,""]},"evennia.contrib.talking_npc.TalkingCmdSet":{at_cmdset_creation:[213,3,1,""],key:[213,4,1,""],path:[213,4,1,""]},"evennia.contrib.talking_npc.TalkingNPC":{DoesNotExist:[213,2,1,""],MultipleObjectsReturned:[213,2,1,""],at_object_creation:[213,3,1,""],path:[213,4,1,""],typename:[213,4,1,""]},"evennia.contrib.tree_select":{CmdNameColor:[214,1,1,""],change_name_color:[214,5,1,""],dashcount:[214,5,1,""],go_up_one_category:[214,5,1,""],index_to_selection:[214,5,1,""],init_tree_selection:[214,5,1,""],is_category:[214,5,1,""],menunode_treeselect:[214,5,1,""],optlist_to_menuoptions:[214,5,1,""],parse_opts:[214,5,1,""]},"evennia.contrib.tree_select.CmdNameColor":{aliases:[214,4,1,""],func:[214,3,1,""],help_category:[214,4,1,""],key:[214,4,1,""],lock_storage:[214,4,1,""],search_index_entry:[214,4,1,""]},"evennia.contrib.turnbattle":{tb_basic:[216,0,0,"-"],tb_equip:[217,0,0,"-"],tb_items:[218,0,0,"-"],tb_magic:[219,0,0,"-"],tb_range:[220,0,0,"-"]},"evennia.contrib.turnbattle.tb_basic":{ACTIONS_PER_TURN:[216,6,1,""],BattleCmdSet:[216,1,1,""],CmdAttack:[216,1,1,""],CmdCombatHelp:[216,1,1,""],CmdDisengage:[216,1,1,""],CmdFight:[216,1,1,""],CmdPass:[216,1,1,""],CmdRest:[216,1,1,""],TBBasicCharacter:[216,1,1,""],TBBasicTurnHandler:[216,1,1,""],apply_damage:[216,5,1,""],at_defeat:[216,5,1,""],combat_cleanup:[216,5,1,""],get_attack:[216,5,1,""],get_damage:[216,5,1,""],get_defense:[216,5,1,""],is_in_combat:[216,5,1,""],is_turn:[216,5,1,""],resolve_attack:[216,5,1,""],roll_init:[216,5,1,""],spend_action:[216,5,1,""]},"evennia.contrib.turnbattle.tb_basic.BattleCmdSet":{at_cmdset_creation:[216,3,1,""],key:[216,4,1,""],path:[216,4,1,""]},"evennia.contrib.turnbattle.tb_basic.CmdAttack":{aliases:[216,4,1,""],func:[216,3,1,""],help_category:[216,4,1,""],key:[216,4,1,""],lock_storage:[216,4,1,""],search_index_entry:[216,4,1,""]},"evennia.contrib.turnbattle.tb_basic.CmdCombatHelp":{aliases:[216,4,1,""],func:[216,3,1,""],help_category:[216,4,1,""],key:[216,4,1,""],lock_storage:[216,4,1,""],search_index_entry:[216,4,1,""]},"evennia.contrib.turnbattle.tb_basic.CmdDisengage":{aliases:[216,4,1,""],func:[216,3,1,""],help_category:[216,4,1,""],key:[216,4,1,""],lock_storage:[216,4,1,""],search_index_entry:[216,4,1,""]},"evennia.contrib.turnbattle.tb_basic.CmdFight":{aliases:[216,4,1,""],func:[216,3,1,""],help_category:[216,4,1,""],key:[216,4,1,""],lock_storage:[216,4,1,""],search_index_entry:[216,4,1,""]},"evennia.contrib.turnbattle.tb_basic.CmdPass":{aliases:[216,4,1,""],func:[216,3,1,""],help_category:[216,4,1,""],key:[216,4,1,""],lock_storage:[216,4,1,""],search_index_entry:[216,4,1,""]},"evennia.contrib.turnbattle.tb_basic.CmdRest":{aliases:[216,4,1,""],func:[216,3,1,""],help_category:[216,4,1,""],key:[216,4,1,""],lock_storage:[216,4,1,""],search_index_entry:[216,4,1,""]},"evennia.contrib.turnbattle.tb_basic.TBBasicCharacter":{DoesNotExist:[216,2,1,""],MultipleObjectsReturned:[216,2,1,""],at_before_move:[216,3,1,""],at_object_creation:[216,3,1,""],path:[216,4,1,""],typename:[216,4,1,""]},"evennia.contrib.turnbattle.tb_basic.TBBasicTurnHandler":{DoesNotExist:[216,2,1,""],MultipleObjectsReturned:[216,2,1,""],at_repeat:[216,3,1,""],at_script_creation:[216,3,1,""],at_stop:[216,3,1,""],initialize_for_combat:[216,3,1,""],join_fight:[216,3,1,""],next_turn:[216,3,1,""],path:[216,4,1,""],start_turn:[216,3,1,""],turn_end_check:[216,3,1,""],typename:[216,4,1,""]},"evennia.contrib.turnbattle.tb_equip":{ACTIONS_PER_TURN:[217,6,1,""],BattleCmdSet:[217,1,1,""],CmdAttack:[217,1,1,""],CmdCombatHelp:[217,1,1,""],CmdDisengage:[217,1,1,""],CmdDoff:[217,1,1,""],CmdDon:[217,1,1,""],CmdFight:[217,1,1,""],CmdPass:[217,1,1,""],CmdRest:[217,1,1,""],CmdUnwield:[217,1,1,""],CmdWield:[217,1,1,""],TBEArmor:[217,1,1,""],TBEWeapon:[217,1,1,""],TBEquipCharacter:[217,1,1,""],TBEquipTurnHandler:[217,1,1,""],apply_damage:[217,5,1,""],at_defeat:[217,5,1,""],combat_cleanup:[217,5,1,""],get_attack:[217,5,1,""],get_damage:[217,5,1,""],get_defense:[217,5,1,""],is_in_combat:[217,5,1,""],is_turn:[217,5,1,""],resolve_attack:[217,5,1,""],roll_init:[217,5,1,""],spend_action:[217,5,1,""]},"evennia.contrib.turnbattle.tb_equip.BattleCmdSet":{at_cmdset_creation:[217,3,1,""],key:[217,4,1,""],path:[217,4,1,""]},"evennia.contrib.turnbattle.tb_equip.CmdAttack":{aliases:[217,4,1,""],func:[217,3,1,""],help_category:[217,4,1,""],key:[217,4,1,""],lock_storage:[217,4,1,""],search_index_entry:[217,4,1,""]},"evennia.contrib.turnbattle.tb_equip.CmdCombatHelp":{aliases:[217,4,1,""],func:[217,3,1,""],help_category:[217,4,1,""],key:[217,4,1,""],lock_storage:[217,4,1,""],search_index_entry:[217,4,1,""]},"evennia.contrib.turnbattle.tb_equip.CmdDisengage":{aliases:[217,4,1,""],func:[217,3,1,""],help_category:[217,4,1,""],key:[217,4,1,""],lock_storage:[217,4,1,""],search_index_entry:[217,4,1,""]},"evennia.contrib.turnbattle.tb_equip.CmdDoff":{aliases:[217,4,1,""],func:[217,3,1,""],help_category:[217,4,1,""],key:[217,4,1,""],lock_storage:[217,4,1,""],search_index_entry:[217,4,1,""]},"evennia.contrib.turnbattle.tb_equip.CmdDon":{aliases:[217,4,1,""],func:[217,3,1,""],help_category:[217,4,1,""],key:[217,4,1,""],lock_storage:[217,4,1,""],search_index_entry:[217,4,1,""]},"evennia.contrib.turnbattle.tb_equip.CmdFight":{aliases:[217,4,1,""],func:[217,3,1,""],help_category:[217,4,1,""],key:[217,4,1,""],lock_storage:[217,4,1,""],search_index_entry:[217,4,1,""]},"evennia.contrib.turnbattle.tb_equip.CmdPass":{aliases:[217,4,1,""],func:[217,3,1,""],help_category:[217,4,1,""],key:[217,4,1,""],lock_storage:[217,4,1,""],search_index_entry:[217,4,1,""]},"evennia.contrib.turnbattle.tb_equip.CmdRest":{aliases:[217,4,1,""],func:[217,3,1,""],help_category:[217,4,1,""],key:[217,4,1,""],lock_storage:[217,4,1,""],search_index_entry:[217,4,1,""]},"evennia.contrib.turnbattle.tb_equip.CmdUnwield":{aliases:[217,4,1,""],func:[217,3,1,""],help_category:[217,4,1,""],key:[217,4,1,""],lock_storage:[217,4,1,""],search_index_entry:[217,4,1,""]},"evennia.contrib.turnbattle.tb_equip.CmdWield":{aliases:[217,4,1,""],func:[217,3,1,""],help_category:[217,4,1,""],key:[217,4,1,""],lock_storage:[217,4,1,""],search_index_entry:[217,4,1,""]},"evennia.contrib.turnbattle.tb_equip.TBEArmor":{DoesNotExist:[217,2,1,""],MultipleObjectsReturned:[217,2,1,""],at_before_drop:[217,3,1,""],at_before_give:[217,3,1,""],at_drop:[217,3,1,""],at_give:[217,3,1,""],at_object_creation:[217,3,1,""],path:[217,4,1,""],typename:[217,4,1,""]},"evennia.contrib.turnbattle.tb_equip.TBEWeapon":{DoesNotExist:[217,2,1,""],MultipleObjectsReturned:[217,2,1,""],at_drop:[217,3,1,""],at_give:[217,3,1,""],at_object_creation:[217,3,1,""],path:[217,4,1,""],typename:[217,4,1,""]},"evennia.contrib.turnbattle.tb_equip.TBEquipCharacter":{DoesNotExist:[217,2,1,""],MultipleObjectsReturned:[217,2,1,""],at_before_move:[217,3,1,""],at_object_creation:[217,3,1,""],path:[217,4,1,""],typename:[217,4,1,""]},"evennia.contrib.turnbattle.tb_equip.TBEquipTurnHandler":{DoesNotExist:[217,2,1,""],MultipleObjectsReturned:[217,2,1,""],at_repeat:[217,3,1,""],at_script_creation:[217,3,1,""],at_stop:[217,3,1,""],initialize_for_combat:[217,3,1,""],join_fight:[217,3,1,""],next_turn:[217,3,1,""],path:[217,4,1,""],start_turn:[217,3,1,""],turn_end_check:[217,3,1,""],typename:[217,4,1,""]},"evennia.contrib.turnbattle.tb_items":{BattleCmdSet:[218,1,1,""],CmdAttack:[218,1,1,""],CmdCombatHelp:[218,1,1,""],CmdDisengage:[218,1,1,""],CmdFight:[218,1,1,""],CmdPass:[218,1,1,""],CmdRest:[218,1,1,""],CmdUse:[218,1,1,""],DEF_DOWN_MOD:[218,6,1,""],ITEMFUNCS:[218,6,1,""],TBItemsCharacter:[218,1,1,""],TBItemsCharacterTest:[218,1,1,""],TBItemsTurnHandler:[218,1,1,""],add_condition:[218,5,1,""],apply_damage:[218,5,1,""],at_defeat:[218,5,1,""],combat_cleanup:[218,5,1,""],condition_tickdown:[218,5,1,""],get_attack:[218,5,1,""],get_damage:[218,5,1,""],get_defense:[218,5,1,""],is_in_combat:[218,5,1,""],is_turn:[218,5,1,""],itemfunc_add_condition:[218,5,1,""],itemfunc_attack:[218,5,1,""],itemfunc_cure_condition:[218,5,1,""],itemfunc_heal:[218,5,1,""],resolve_attack:[218,5,1,""],roll_init:[218,5,1,""],spend_action:[218,5,1,""],spend_item_use:[218,5,1,""],use_item:[218,5,1,""]},"evennia.contrib.turnbattle.tb_items.BattleCmdSet":{at_cmdset_creation:[218,3,1,""],key:[218,4,1,""],path:[218,4,1,""]},"evennia.contrib.turnbattle.tb_items.CmdAttack":{aliases:[218,4,1,""],func:[218,3,1,""],help_category:[218,4,1,""],key:[218,4,1,""],lock_storage:[218,4,1,""],search_index_entry:[218,4,1,""]},"evennia.contrib.turnbattle.tb_items.CmdCombatHelp":{aliases:[218,4,1,""],func:[218,3,1,""],help_category:[218,4,1,""],key:[218,4,1,""],lock_storage:[218,4,1,""],search_index_entry:[218,4,1,""]},"evennia.contrib.turnbattle.tb_items.CmdDisengage":{aliases:[218,4,1,""],func:[218,3,1,""],help_category:[218,4,1,""],key:[218,4,1,""],lock_storage:[218,4,1,""],search_index_entry:[218,4,1,""]},"evennia.contrib.turnbattle.tb_items.CmdFight":{aliases:[218,4,1,""],func:[218,3,1,""],help_category:[218,4,1,""],key:[218,4,1,""],lock_storage:[218,4,1,""],search_index_entry:[218,4,1,""]},"evennia.contrib.turnbattle.tb_items.CmdPass":{aliases:[218,4,1,""],func:[218,3,1,""],help_category:[218,4,1,""],key:[218,4,1,""],lock_storage:[218,4,1,""],search_index_entry:[218,4,1,""]},"evennia.contrib.turnbattle.tb_items.CmdRest":{aliases:[218,4,1,""],func:[218,3,1,""],help_category:[218,4,1,""],key:[218,4,1,""],lock_storage:[218,4,1,""],search_index_entry:[218,4,1,""]},"evennia.contrib.turnbattle.tb_items.CmdUse":{aliases:[218,4,1,""],func:[218,3,1,""],help_category:[218,4,1,""],key:[218,4,1,""],lock_storage:[218,4,1,""],search_index_entry:[218,4,1,""]},"evennia.contrib.turnbattle.tb_items.TBItemsCharacter":{DoesNotExist:[218,2,1,""],MultipleObjectsReturned:[218,2,1,""],apply_turn_conditions:[218,3,1,""],at_before_move:[218,3,1,""],at_object_creation:[218,3,1,""],at_turn_start:[218,3,1,""],at_update:[218,3,1,""],path:[218,4,1,""],typename:[218,4,1,""]},"evennia.contrib.turnbattle.tb_items.TBItemsCharacterTest":{DoesNotExist:[218,2,1,""],MultipleObjectsReturned:[218,2,1,""],at_object_creation:[218,3,1,""],path:[218,4,1,""],typename:[218,4,1,""]},"evennia.contrib.turnbattle.tb_items.TBItemsTurnHandler":{DoesNotExist:[218,2,1,""],MultipleObjectsReturned:[218,2,1,""],at_repeat:[218,3,1,""],at_script_creation:[218,3,1,""],at_stop:[218,3,1,""],initialize_for_combat:[218,3,1,""],join_fight:[218,3,1,""],next_turn:[218,3,1,""],path:[218,4,1,""],start_turn:[218,3,1,""],turn_end_check:[218,3,1,""],typename:[218,4,1,""]},"evennia.contrib.turnbattle.tb_magic":{ACTIONS_PER_TURN:[219,6,1,""],BattleCmdSet:[219,1,1,""],CmdAttack:[219,1,1,""],CmdCast:[219,1,1,""],CmdCombatHelp:[219,1,1,""],CmdDisengage:[219,1,1,""],CmdFight:[219,1,1,""],CmdLearnSpell:[219,1,1,""],CmdPass:[219,1,1,""],CmdRest:[219,1,1,""],CmdStatus:[219,1,1,""],TBMagicCharacter:[219,1,1,""],TBMagicTurnHandler:[219,1,1,""],apply_damage:[219,5,1,""],at_defeat:[219,5,1,""],combat_cleanup:[219,5,1,""],get_attack:[219,5,1,""],get_damage:[219,5,1,""],get_defense:[219,5,1,""],is_in_combat:[219,5,1,""],is_turn:[219,5,1,""],resolve_attack:[219,5,1,""],roll_init:[219,5,1,""],spell_attack:[219,5,1,""],spell_conjure:[219,5,1,""],spell_healing:[219,5,1,""],spend_action:[219,5,1,""]},"evennia.contrib.turnbattle.tb_magic.BattleCmdSet":{at_cmdset_creation:[219,3,1,""],key:[219,4,1,""],path:[219,4,1,""]},"evennia.contrib.turnbattle.tb_magic.CmdAttack":{aliases:[219,4,1,""],func:[219,3,1,""],help_category:[219,4,1,""],key:[219,4,1,""],lock_storage:[219,4,1,""],search_index_entry:[219,4,1,""]},"evennia.contrib.turnbattle.tb_magic.CmdCast":{aliases:[219,4,1,""],func:[219,3,1,""],help_category:[219,4,1,""],key:[219,4,1,""],lock_storage:[219,4,1,""],search_index_entry:[219,4,1,""]},"evennia.contrib.turnbattle.tb_magic.CmdCombatHelp":{aliases:[219,4,1,""],func:[219,3,1,""],help_category:[219,4,1,""],key:[219,4,1,""],lock_storage:[219,4,1,""],search_index_entry:[219,4,1,""]},"evennia.contrib.turnbattle.tb_magic.CmdDisengage":{aliases:[219,4,1,""],func:[219,3,1,""],help_category:[219,4,1,""],key:[219,4,1,""],lock_storage:[219,4,1,""],search_index_entry:[219,4,1,""]},"evennia.contrib.turnbattle.tb_magic.CmdFight":{aliases:[219,4,1,""],func:[219,3,1,""],help_category:[219,4,1,""],key:[219,4,1,""],lock_storage:[219,4,1,""],search_index_entry:[219,4,1,""]},"evennia.contrib.turnbattle.tb_magic.CmdLearnSpell":{aliases:[219,4,1,""],func:[219,3,1,""],help_category:[219,4,1,""],key:[219,4,1,""],lock_storage:[219,4,1,""],search_index_entry:[219,4,1,""]},"evennia.contrib.turnbattle.tb_magic.CmdPass":{aliases:[219,4,1,""],func:[219,3,1,""],help_category:[219,4,1,""],key:[219,4,1,""],lock_storage:[219,4,1,""],search_index_entry:[219,4,1,""]},"evennia.contrib.turnbattle.tb_magic.CmdRest":{aliases:[219,4,1,""],func:[219,3,1,""],help_category:[219,4,1,""],key:[219,4,1,""],lock_storage:[219,4,1,""],search_index_entry:[219,4,1,""]},"evennia.contrib.turnbattle.tb_magic.CmdStatus":{aliases:[219,4,1,""],func:[219,3,1,""],help_category:[219,4,1,""],key:[219,4,1,""],lock_storage:[219,4,1,""],search_index_entry:[219,4,1,""]},"evennia.contrib.turnbattle.tb_magic.TBMagicCharacter":{DoesNotExist:[219,2,1,""],MultipleObjectsReturned:[219,2,1,""],at_before_move:[219,3,1,""],at_object_creation:[219,3,1,""],path:[219,4,1,""],typename:[219,4,1,""]},"evennia.contrib.turnbattle.tb_magic.TBMagicTurnHandler":{DoesNotExist:[219,2,1,""],MultipleObjectsReturned:[219,2,1,""],at_repeat:[219,3,1,""],at_script_creation:[219,3,1,""],at_stop:[219,3,1,""],initialize_for_combat:[219,3,1,""],join_fight:[219,3,1,""],next_turn:[219,3,1,""],path:[219,4,1,""],start_turn:[219,3,1,""],turn_end_check:[219,3,1,""],typename:[219,4,1,""]},"evennia.contrib.turnbattle.tb_range":{ACTIONS_PER_TURN:[220,6,1,""],BattleCmdSet:[220,1,1,""],CmdApproach:[220,1,1,""],CmdAttack:[220,1,1,""],CmdCombatHelp:[220,1,1,""],CmdDisengage:[220,1,1,""],CmdFight:[220,1,1,""],CmdPass:[220,1,1,""],CmdRest:[220,1,1,""],CmdShoot:[220,1,1,""],CmdStatus:[220,1,1,""],CmdWithdraw:[220,1,1,""],TBRangeCharacter:[220,1,1,""],TBRangeObject:[220,1,1,""],TBRangeTurnHandler:[220,1,1,""],apply_damage:[220,5,1,""],approach:[220,5,1,""],at_defeat:[220,5,1,""],combat_cleanup:[220,5,1,""],combat_status_message:[220,5,1,""],distance_inc:[220,5,1,""],get_attack:[220,5,1,""],get_damage:[220,5,1,""],get_defense:[220,5,1,""],get_range:[220,5,1,""],is_in_combat:[220,5,1,""],is_turn:[220,5,1,""],resolve_attack:[220,5,1,""],roll_init:[220,5,1,""],spend_action:[220,5,1,""],withdraw:[220,5,1,""]},"evennia.contrib.turnbattle.tb_range.BattleCmdSet":{at_cmdset_creation:[220,3,1,""],key:[220,4,1,""],path:[220,4,1,""]},"evennia.contrib.turnbattle.tb_range.CmdApproach":{aliases:[220,4,1,""],func:[220,3,1,""],help_category:[220,4,1,""],key:[220,4,1,""],lock_storage:[220,4,1,""],search_index_entry:[220,4,1,""]},"evennia.contrib.turnbattle.tb_range.CmdAttack":{aliases:[220,4,1,""],func:[220,3,1,""],help_category:[220,4,1,""],key:[220,4,1,""],lock_storage:[220,4,1,""],search_index_entry:[220,4,1,""]},"evennia.contrib.turnbattle.tb_range.CmdCombatHelp":{aliases:[220,4,1,""],func:[220,3,1,""],help_category:[220,4,1,""],key:[220,4,1,""],lock_storage:[220,4,1,""],search_index_entry:[220,4,1,""]},"evennia.contrib.turnbattle.tb_range.CmdDisengage":{aliases:[220,4,1,""],func:[220,3,1,""],help_category:[220,4,1,""],key:[220,4,1,""],lock_storage:[220,4,1,""],search_index_entry:[220,4,1,""]},"evennia.contrib.turnbattle.tb_range.CmdFight":{aliases:[220,4,1,""],func:[220,3,1,""],help_category:[220,4,1,""],key:[220,4,1,""],lock_storage:[220,4,1,""],search_index_entry:[220,4,1,""]},"evennia.contrib.turnbattle.tb_range.CmdPass":{aliases:[220,4,1,""],func:[220,3,1,""],help_category:[220,4,1,""],key:[220,4,1,""],lock_storage:[220,4,1,""],search_index_entry:[220,4,1,""]},"evennia.contrib.turnbattle.tb_range.CmdRest":{aliases:[220,4,1,""],func:[220,3,1,""],help_category:[220,4,1,""],key:[220,4,1,""],lock_storage:[220,4,1,""],search_index_entry:[220,4,1,""]},"evennia.contrib.turnbattle.tb_range.CmdShoot":{aliases:[220,4,1,""],func:[220,3,1,""],help_category:[220,4,1,""],key:[220,4,1,""],lock_storage:[220,4,1,""],search_index_entry:[220,4,1,""]},"evennia.contrib.turnbattle.tb_range.CmdStatus":{aliases:[220,4,1,""],func:[220,3,1,""],help_category:[220,4,1,""],key:[220,4,1,""],lock_storage:[220,4,1,""],search_index_entry:[220,4,1,""]},"evennia.contrib.turnbattle.tb_range.CmdWithdraw":{aliases:[220,4,1,""],func:[220,3,1,""],help_category:[220,4,1,""],key:[220,4,1,""],lock_storage:[220,4,1,""],search_index_entry:[220,4,1,""]},"evennia.contrib.turnbattle.tb_range.TBRangeCharacter":{DoesNotExist:[220,2,1,""],MultipleObjectsReturned:[220,2,1,""],at_before_move:[220,3,1,""],at_object_creation:[220,3,1,""],path:[220,4,1,""],typename:[220,4,1,""]},"evennia.contrib.turnbattle.tb_range.TBRangeObject":{DoesNotExist:[220,2,1,""],MultipleObjectsReturned:[220,2,1,""],at_before_drop:[220,3,1,""],at_before_get:[220,3,1,""],at_before_give:[220,3,1,""],at_drop:[220,3,1,""],at_get:[220,3,1,""],at_give:[220,3,1,""],path:[220,4,1,""],typename:[220,4,1,""]},"evennia.contrib.turnbattle.tb_range.TBRangeTurnHandler":{DoesNotExist:[220,2,1,""],MultipleObjectsReturned:[220,2,1,""],at_repeat:[220,3,1,""],at_script_creation:[220,3,1,""],at_stop:[220,3,1,""],init_range:[220,3,1,""],initialize_for_combat:[220,3,1,""],join_fight:[220,3,1,""],join_rangefield:[220,3,1,""],next_turn:[220,3,1,""],path:[220,4,1,""],start_turn:[220,3,1,""],turn_end_check:[220,3,1,""],typename:[220,4,1,""]},"evennia.contrib.tutorial_examples":{bodyfunctions:[222,0,0,"-"],cmdset_red_button:[223,0,0,"-"],red_button:[225,0,0,"-"],red_button_scripts:[226,0,0,"-"],tests:[227,0,0,"-"]},"evennia.contrib.tutorial_examples.bodyfunctions":{BodyFunctions:[222,1,1,""]},"evennia.contrib.tutorial_examples.bodyfunctions.BodyFunctions":{DoesNotExist:[222,2,1,""],MultipleObjectsReturned:[222,2,1,""],at_repeat:[222,3,1,""],at_script_creation:[222,3,1,""],path:[222,4,1,""],send_random_message:[222,3,1,""],typename:[222,4,1,""]},"evennia.contrib.tutorial_examples.cmdset_red_button":{BlindCmdSet:[223,1,1,""],CmdBlindHelp:[223,1,1,""],CmdBlindLook:[223,1,1,""],CmdCloseLid:[223,1,1,""],CmdNudge:[223,1,1,""],CmdOpenLid:[223,1,1,""],CmdPush:[223,1,1,""],CmdSmashGlass:[223,1,1,""],DefaultCmdSet:[223,1,1,""],LidClosedCmdSet:[223,1,1,""],LidOpenCmdSet:[223,1,1,""]},"evennia.contrib.tutorial_examples.cmdset_red_button.BlindCmdSet":{at_cmdset_creation:[223,3,1,""],key:[223,4,1,""],mergetype:[223,4,1,""],no_exits:[223,4,1,""],no_objs:[223,4,1,""],path:[223,4,1,""]},"evennia.contrib.tutorial_examples.cmdset_red_button.CmdBlindHelp":{aliases:[223,4,1,""],func:[223,3,1,""],help_category:[223,4,1,""],key:[223,4,1,""],lock_storage:[223,4,1,""],locks:[223,4,1,""],search_index_entry:[223,4,1,""]},"evennia.contrib.tutorial_examples.cmdset_red_button.CmdBlindLook":{aliases:[223,4,1,""],func:[223,3,1,""],help_category:[223,4,1,""],key:[223,4,1,""],lock_storage:[223,4,1,""],locks:[223,4,1,""],search_index_entry:[223,4,1,""]},"evennia.contrib.tutorial_examples.cmdset_red_button.CmdCloseLid":{aliases:[223,4,1,""],func:[223,3,1,""],help_category:[223,4,1,""],key:[223,4,1,""],lock_storage:[223,4,1,""],locks:[223,4,1,""],search_index_entry:[223,4,1,""]},"evennia.contrib.tutorial_examples.cmdset_red_button.CmdNudge":{aliases:[223,4,1,""],func:[223,3,1,""],help_category:[223,4,1,""],key:[223,4,1,""],lock_storage:[223,4,1,""],locks:[223,4,1,""],search_index_entry:[223,4,1,""]},"evennia.contrib.tutorial_examples.cmdset_red_button.CmdOpenLid":{aliases:[223,4,1,""],func:[223,3,1,""],help_category:[223,4,1,""],key:[223,4,1,""],lock_storage:[223,4,1,""],locks:[223,4,1,""],search_index_entry:[223,4,1,""]},"evennia.contrib.tutorial_examples.cmdset_red_button.CmdPush":{aliases:[223,4,1,""],func:[223,3,1,""],help_category:[223,4,1,""],key:[223,4,1,""],lock_storage:[223,4,1,""],locks:[223,4,1,""],search_index_entry:[223,4,1,""]},"evennia.contrib.tutorial_examples.cmdset_red_button.CmdSmashGlass":{aliases:[223,4,1,""],func:[223,3,1,""],help_category:[223,4,1,""],key:[223,4,1,""],lock_storage:[223,4,1,""],locks:[223,4,1,""],search_index_entry:[223,4,1,""]},"evennia.contrib.tutorial_examples.cmdset_red_button.DefaultCmdSet":{at_cmdset_creation:[223,3,1,""],key:[223,4,1,""],mergetype:[223,4,1,""],path:[223,4,1,""]},"evennia.contrib.tutorial_examples.cmdset_red_button.LidClosedCmdSet":{at_cmdset_creation:[223,3,1,""],key:[223,4,1,""],key_mergetype:[223,4,1,""],path:[223,4,1,""]},"evennia.contrib.tutorial_examples.cmdset_red_button.LidOpenCmdSet":{at_cmdset_creation:[223,3,1,""],key:[223,4,1,""],key_mergetype:[223,4,1,""],path:[223,4,1,""]},"evennia.contrib.tutorial_examples.red_button":{RedButton:[225,1,1,""]},"evennia.contrib.tutorial_examples.red_button.RedButton":{DoesNotExist:[225,2,1,""],MultipleObjectsReturned:[225,2,1,""],at_object_creation:[225,3,1,""],blink:[225,3,1,""],break_lamp:[225,3,1,""],close_lid:[225,3,1,""],open_lid:[225,3,1,""],path:[225,4,1,""],press_button:[225,3,1,""],typename:[225,4,1,""]},"evennia.contrib.tutorial_examples.red_button_scripts":{BlindedState:[226,1,1,""],BlinkButtonEvent:[226,1,1,""],CloseLidEvent:[226,1,1,""],ClosedLidState:[226,1,1,""],DeactivateButtonEvent:[226,1,1,""],OpenLidState:[226,1,1,""]},"evennia.contrib.tutorial_examples.red_button_scripts.BlindedState":{DoesNotExist:[226,2,1,""],MultipleObjectsReturned:[226,2,1,""],at_script_creation:[226,3,1,""],at_start:[226,3,1,""],at_stop:[226,3,1,""],path:[226,4,1,""],typename:[226,4,1,""]},"evennia.contrib.tutorial_examples.red_button_scripts.BlinkButtonEvent":{DoesNotExist:[226,2,1,""],MultipleObjectsReturned:[226,2,1,""],at_repeat:[226,3,1,""],at_script_creation:[226,3,1,""],is_valid:[226,3,1,""],path:[226,4,1,""],typename:[226,4,1,""]},"evennia.contrib.tutorial_examples.red_button_scripts.CloseLidEvent":{DoesNotExist:[226,2,1,""],MultipleObjectsReturned:[226,2,1,""],at_repeat:[226,3,1,""],at_script_creation:[226,3,1,""],is_valid:[226,3,1,""],path:[226,4,1,""],typename:[226,4,1,""]},"evennia.contrib.tutorial_examples.red_button_scripts.ClosedLidState":{DoesNotExist:[226,2,1,""],MultipleObjectsReturned:[226,2,1,""],at_script_creation:[226,3,1,""],at_start:[226,3,1,""],at_stop:[226,3,1,""],is_valid:[226,3,1,""],path:[226,4,1,""],typename:[226,4,1,""]},"evennia.contrib.tutorial_examples.red_button_scripts.DeactivateButtonEvent":{DoesNotExist:[226,2,1,""],MultipleObjectsReturned:[226,2,1,""],at_repeat:[226,3,1,""],at_script_creation:[226,3,1,""],at_start:[226,3,1,""],path:[226,4,1,""],typename:[226,4,1,""]},"evennia.contrib.tutorial_examples.red_button_scripts.OpenLidState":{DoesNotExist:[226,2,1,""],MultipleObjectsReturned:[226,2,1,""],at_script_creation:[226,3,1,""],at_start:[226,3,1,""],at_stop:[226,3,1,""],is_valid:[226,3,1,""],path:[226,4,1,""],typename:[226,4,1,""]},"evennia.contrib.tutorial_examples.tests":{TestBodyFunctions:[227,1,1,""]},"evennia.contrib.tutorial_examples.tests.TestBodyFunctions":{script_typeclass:[227,4,1,""],setUp:[227,3,1,""],tearDown:[227,3,1,""],test_at_repeat:[227,3,1,""],test_send_random_message:[227,3,1,""]},"evennia.contrib.tutorial_world":{mob:[229,0,0,"-"],objects:[230,0,0,"-"],rooms:[231,0,0,"-"]},"evennia.contrib.tutorial_world.mob":{CmdMobOnOff:[229,1,1,""],Mob:[229,1,1,""],MobCmdSet:[229,1,1,""]},"evennia.contrib.tutorial_world.mob.CmdMobOnOff":{aliases:[229,4,1,""],func:[229,3,1,""],help_category:[229,4,1,""],key:[229,4,1,""],lock_storage:[229,4,1,""],locks:[229,4,1,""],search_index_entry:[229,4,1,""]},"evennia.contrib.tutorial_world.mob.Mob":{DoesNotExist:[229,2,1,""],MultipleObjectsReturned:[229,2,1,""],at_hit:[229,3,1,""],at_init:[229,3,1,""],at_new_arrival:[229,3,1,""],at_object_creation:[229,3,1,""],do_attack:[229,3,1,""],do_hunting:[229,3,1,""],do_patrol:[229,3,1,""],path:[229,4,1,""],set_alive:[229,3,1,""],set_dead:[229,3,1,""],start_attacking:[229,3,1,""],start_hunting:[229,3,1,""],start_idle:[229,3,1,""],start_patrolling:[229,3,1,""],typename:[229,4,1,""]},"evennia.contrib.tutorial_world.mob.MobCmdSet":{at_cmdset_creation:[229,3,1,""],path:[229,4,1,""]},"evennia.contrib.tutorial_world.objects":{CmdAttack:[230,1,1,""],CmdClimb:[230,1,1,""],CmdGetWeapon:[230,1,1,""],CmdLight:[230,1,1,""],CmdPressButton:[230,1,1,""],CmdRead:[230,1,1,""],CmdSetClimbable:[230,1,1,""],CmdSetCrumblingWall:[230,1,1,""],CmdSetLight:[230,1,1,""],CmdSetReadable:[230,1,1,""],CmdSetWeapon:[230,1,1,""],CmdSetWeaponRack:[230,1,1,""],CmdShiftRoot:[230,1,1,""],CrumblingWall:[230,1,1,""],LightSource:[230,1,1,""],Obelisk:[230,1,1,""],TutorialClimbable:[230,1,1,""],TutorialObject:[230,1,1,""],TutorialReadable:[230,1,1,""],TutorialWeapon:[230,1,1,""],TutorialWeaponRack:[230,1,1,""]},"evennia.contrib.tutorial_world.objects.CmdAttack":{aliases:[230,4,1,""],func:[230,3,1,""],help_category:[230,4,1,""],key:[230,4,1,""],lock_storage:[230,4,1,""],locks:[230,4,1,""],search_index_entry:[230,4,1,""]},"evennia.contrib.tutorial_world.objects.CmdClimb":{aliases:[230,4,1,""],func:[230,3,1,""],help_category:[230,4,1,""],key:[230,4,1,""],lock_storage:[230,4,1,""],locks:[230,4,1,""],search_index_entry:[230,4,1,""]},"evennia.contrib.tutorial_world.objects.CmdGetWeapon":{aliases:[230,4,1,""],func:[230,3,1,""],help_category:[230,4,1,""],key:[230,4,1,""],lock_storage:[230,4,1,""],locks:[230,4,1,""],search_index_entry:[230,4,1,""]},"evennia.contrib.tutorial_world.objects.CmdLight":{aliases:[230,4,1,""],func:[230,3,1,""],help_category:[230,4,1,""],key:[230,4,1,""],lock_storage:[230,4,1,""],locks:[230,4,1,""],search_index_entry:[230,4,1,""]},"evennia.contrib.tutorial_world.objects.CmdPressButton":{aliases:[230,4,1,""],func:[230,3,1,""],help_category:[230,4,1,""],key:[230,4,1,""],lock_storage:[230,4,1,""],locks:[230,4,1,""],search_index_entry:[230,4,1,""]},"evennia.contrib.tutorial_world.objects.CmdRead":{aliases:[230,4,1,""],func:[230,3,1,""],help_category:[230,4,1,""],key:[230,4,1,""],lock_storage:[230,4,1,""],locks:[230,4,1,""],search_index_entry:[230,4,1,""]},"evennia.contrib.tutorial_world.objects.CmdSetClimbable":{at_cmdset_creation:[230,3,1,""],path:[230,4,1,""]},"evennia.contrib.tutorial_world.objects.CmdSetCrumblingWall":{at_cmdset_creation:[230,3,1,""],key:[230,4,1,""],path:[230,4,1,""],priority:[230,4,1,""]},"evennia.contrib.tutorial_world.objects.CmdSetLight":{at_cmdset_creation:[230,3,1,""],key:[230,4,1,""],path:[230,4,1,""],priority:[230,4,1,""]},"evennia.contrib.tutorial_world.objects.CmdSetReadable":{at_cmdset_creation:[230,3,1,""],path:[230,4,1,""]},"evennia.contrib.tutorial_world.objects.CmdSetWeapon":{at_cmdset_creation:[230,3,1,""],path:[230,4,1,""]},"evennia.contrib.tutorial_world.objects.CmdSetWeaponRack":{at_cmdset_creation:[230,3,1,""],key:[230,4,1,""],path:[230,4,1,""]},"evennia.contrib.tutorial_world.objects.CmdShiftRoot":{aliases:[230,4,1,""],func:[230,3,1,""],help_category:[230,4,1,""],key:[230,4,1,""],lock_storage:[230,4,1,""],locks:[230,4,1,""],parse:[230,3,1,""],search_index_entry:[230,4,1,""]},"evennia.contrib.tutorial_world.objects.CrumblingWall":{DoesNotExist:[230,2,1,""],MultipleObjectsReturned:[230,2,1,""],at_after_traverse:[230,3,1,""],at_failed_traverse:[230,3,1,""],at_init:[230,3,1,""],at_object_creation:[230,3,1,""],open_wall:[230,3,1,""],path:[230,4,1,""],reset:[230,3,1,""],return_appearance:[230,3,1,""],typename:[230,4,1,""]},"evennia.contrib.tutorial_world.objects.LightSource":{DoesNotExist:[230,2,1,""],MultipleObjectsReturned:[230,2,1,""],at_init:[230,3,1,""],at_object_creation:[230,3,1,""],light:[230,3,1,""],path:[230,4,1,""],typename:[230,4,1,""]},"evennia.contrib.tutorial_world.objects.Obelisk":{DoesNotExist:[230,2,1,""],MultipleObjectsReturned:[230,2,1,""],at_object_creation:[230,3,1,""],path:[230,4,1,""],return_appearance:[230,3,1,""],typename:[230,4,1,""]},"evennia.contrib.tutorial_world.objects.TutorialClimbable":{DoesNotExist:[230,2,1,""],MultipleObjectsReturned:[230,2,1,""],at_object_creation:[230,3,1,""],path:[230,4,1,""],typename:[230,4,1,""]},"evennia.contrib.tutorial_world.objects.TutorialObject":{DoesNotExist:[230,2,1,""],MultipleObjectsReturned:[230,2,1,""],at_object_creation:[230,3,1,""],path:[230,4,1,""],reset:[230,3,1,""],typename:[230,4,1,""]},"evennia.contrib.tutorial_world.objects.TutorialReadable":{DoesNotExist:[230,2,1,""],MultipleObjectsReturned:[230,2,1,""],at_object_creation:[230,3,1,""],path:[230,4,1,""],typename:[230,4,1,""]},"evennia.contrib.tutorial_world.objects.TutorialWeapon":{DoesNotExist:[230,2,1,""],MultipleObjectsReturned:[230,2,1,""],at_object_creation:[230,3,1,""],path:[230,4,1,""],reset:[230,3,1,""],typename:[230,4,1,""]},"evennia.contrib.tutorial_world.objects.TutorialWeaponRack":{DoesNotExist:[230,2,1,""],MultipleObjectsReturned:[230,2,1,""],at_object_creation:[230,3,1,""],path:[230,4,1,""],produce_weapon:[230,3,1,""],typename:[230,4,1,""]},"evennia.contrib.tutorial_world.rooms":{BridgeCmdSet:[231,1,1,""],BridgeRoom:[231,1,1,""],CmdBridgeHelp:[231,1,1,""],CmdDarkHelp:[231,1,1,""],CmdDarkNoMatch:[231,1,1,""],CmdEast:[231,1,1,""],CmdLookBridge:[231,1,1,""],CmdLookDark:[231,1,1,""],CmdTutorial:[231,1,1,""],CmdTutorialLook:[231,1,1,""],CmdTutorialSetDetail:[231,1,1,""],CmdWest:[231,1,1,""],DarkCmdSet:[231,1,1,""],DarkRoom:[231,1,1,""],IntroRoom:[231,1,1,""],OutroRoom:[231,1,1,""],TeleportRoom:[231,1,1,""],TutorialRoom:[231,1,1,""],TutorialRoomCmdSet:[231,1,1,""],WeatherRoom:[231,1,1,""]},"evennia.contrib.tutorial_world.rooms.BridgeCmdSet":{at_cmdset_creation:[231,3,1,""],key:[231,4,1,""],path:[231,4,1,""],priority:[231,4,1,""]},"evennia.contrib.tutorial_world.rooms.BridgeRoom":{DoesNotExist:[231,2,1,""],MultipleObjectsReturned:[231,2,1,""],at_object_creation:[231,3,1,""],at_object_leave:[231,3,1,""],at_object_receive:[231,3,1,""],path:[231,4,1,""],typename:[231,4,1,""],update_weather:[231,3,1,""]},"evennia.contrib.tutorial_world.rooms.CmdBridgeHelp":{aliases:[231,4,1,""],func:[231,3,1,""],help_category:[231,4,1,""],key:[231,4,1,""],lock_storage:[231,4,1,""],locks:[231,4,1,""],search_index_entry:[231,4,1,""]},"evennia.contrib.tutorial_world.rooms.CmdDarkHelp":{aliases:[231,4,1,""],func:[231,3,1,""],help_category:[231,4,1,""],key:[231,4,1,""],lock_storage:[231,4,1,""],locks:[231,4,1,""],search_index_entry:[231,4,1,""]},"evennia.contrib.tutorial_world.rooms.CmdDarkNoMatch":{aliases:[231,4,1,""],func:[231,3,1,""],help_category:[231,4,1,""],key:[231,4,1,""],lock_storage:[231,4,1,""],locks:[231,4,1,""],search_index_entry:[231,4,1,""]},"evennia.contrib.tutorial_world.rooms.CmdEast":{aliases:[231,4,1,""],func:[231,3,1,""],help_category:[231,4,1,""],key:[231,4,1,""],lock_storage:[231,4,1,""],locks:[231,4,1,""],search_index_entry:[231,4,1,""]},"evennia.contrib.tutorial_world.rooms.CmdLookBridge":{aliases:[231,4,1,""],func:[231,3,1,""],help_category:[231,4,1,""],key:[231,4,1,""],lock_storage:[231,4,1,""],locks:[231,4,1,""],search_index_entry:[231,4,1,""]},"evennia.contrib.tutorial_world.rooms.CmdLookDark":{aliases:[231,4,1,""],func:[231,3,1,""],help_category:[231,4,1,""],key:[231,4,1,""],lock_storage:[231,4,1,""],locks:[231,4,1,""],search_index_entry:[231,4,1,""]},"evennia.contrib.tutorial_world.rooms.CmdTutorial":{aliases:[231,4,1,""],func:[231,3,1,""],help_category:[231,4,1,""],key:[231,4,1,""],lock_storage:[231,4,1,""],locks:[231,4,1,""],search_index_entry:[231,4,1,""]},"evennia.contrib.tutorial_world.rooms.CmdTutorialLook":{aliases:[231,4,1,""],func:[231,3,1,""],help_category:[231,4,1,""],key:[231,4,1,""],lock_storage:[231,4,1,""],search_index_entry:[231,4,1,""]},"evennia.contrib.tutorial_world.rooms.CmdTutorialSetDetail":{aliases:[231,4,1,""],func:[231,3,1,""],help_category:[231,4,1,""],key:[231,4,1,""],lock_storage:[231,4,1,""],locks:[231,4,1,""],search_index_entry:[231,4,1,""]},"evennia.contrib.tutorial_world.rooms.CmdWest":{aliases:[231,4,1,""],func:[231,3,1,""],help_category:[231,4,1,""],key:[231,4,1,""],lock_storage:[231,4,1,""],locks:[231,4,1,""],search_index_entry:[231,4,1,""]},"evennia.contrib.tutorial_world.rooms.DarkCmdSet":{at_cmdset_creation:[231,3,1,""],key:[231,4,1,""],mergetype:[231,4,1,""],path:[231,4,1,""],priority:[231,4,1,""]},"evennia.contrib.tutorial_world.rooms.DarkRoom":{DoesNotExist:[231,2,1,""],MultipleObjectsReturned:[231,2,1,""],at_init:[231,3,1,""],at_object_creation:[231,3,1,""],at_object_leave:[231,3,1,""],at_object_receive:[231,3,1,""],check_light_state:[231,3,1,""],path:[231,4,1,""],typename:[231,4,1,""]},"evennia.contrib.tutorial_world.rooms.IntroRoom":{DoesNotExist:[231,2,1,""],MultipleObjectsReturned:[231,2,1,""],at_object_creation:[231,3,1,""],at_object_receive:[231,3,1,""],path:[231,4,1,""],typename:[231,4,1,""]},"evennia.contrib.tutorial_world.rooms.OutroRoom":{DoesNotExist:[231,2,1,""],MultipleObjectsReturned:[231,2,1,""],at_object_creation:[231,3,1,""],at_object_receive:[231,3,1,""],path:[231,4,1,""],typename:[231,4,1,""]},"evennia.contrib.tutorial_world.rooms.TeleportRoom":{DoesNotExist:[231,2,1,""],MultipleObjectsReturned:[231,2,1,""],at_object_creation:[231,3,1,""],at_object_receive:[231,3,1,""],path:[231,4,1,""],typename:[231,4,1,""]},"evennia.contrib.tutorial_world.rooms.TutorialRoom":{DoesNotExist:[231,2,1,""],MultipleObjectsReturned:[231,2,1,""],at_object_creation:[231,3,1,""],at_object_receive:[231,3,1,""],path:[231,4,1,""],return_detail:[231,3,1,""],set_detail:[231,3,1,""],typename:[231,4,1,""]},"evennia.contrib.tutorial_world.rooms.TutorialRoomCmdSet":{at_cmdset_creation:[231,3,1,""],key:[231,4,1,""],path:[231,4,1,""],priority:[231,4,1,""]},"evennia.contrib.tutorial_world.rooms.WeatherRoom":{DoesNotExist:[231,2,1,""],MultipleObjectsReturned:[231,2,1,""],at_object_creation:[231,3,1,""],path:[231,4,1,""],typename:[231,4,1,""],update_weather:[231,3,1,""]},"evennia.contrib.unixcommand":{HelpAction:[232,1,1,""],ParseError:[232,2,1,""],UnixCommand:[232,1,1,""],UnixCommandParser:[232,1,1,""]},"evennia.contrib.unixcommand.UnixCommand":{__init__:[232,3,1,""],aliases:[232,4,1,""],func:[232,3,1,""],get_help:[232,3,1,""],help_category:[232,4,1,""],init_parser:[232,3,1,""],key:[232,4,1,""],lock_storage:[232,4,1,""],parse:[232,3,1,""],search_index_entry:[232,4,1,""]},"evennia.contrib.unixcommand.UnixCommandParser":{__init__:[232,3,1,""],format_help:[232,3,1,""],format_usage:[232,3,1,""],print_help:[232,3,1,""],print_usage:[232,3,1,""]},"evennia.contrib.wilderness":{WildernessExit:[233,1,1,""],WildernessMapProvider:[233,1,1,""],WildernessRoom:[233,1,1,""],WildernessScript:[233,1,1,""],create_wilderness:[233,5,1,""],enter_wilderness:[233,5,1,""],get_new_coordinates:[233,5,1,""]},"evennia.contrib.wilderness.WildernessExit":{DoesNotExist:[233,2,1,""],MultipleObjectsReturned:[233,2,1,""],at_traverse:[233,3,1,""],at_traverse_coordinates:[233,3,1,""],mapprovider:[233,3,1,""],path:[233,4,1,""],typename:[233,4,1,""],wilderness:[233,3,1,""]},"evennia.contrib.wilderness.WildernessMapProvider":{at_prepare_room:[233,3,1,""],exit_typeclass:[233,4,1,""],get_location_name:[233,3,1,""],is_valid_coordinates:[233,3,1,""],room_typeclass:[233,4,1,""]},"evennia.contrib.wilderness.WildernessRoom":{DoesNotExist:[233,2,1,""],MultipleObjectsReturned:[233,2,1,""],at_object_leave:[233,3,1,""],at_object_receive:[233,3,1,""],coordinates:[233,3,1,""],get_display_name:[233,3,1,""],location_name:[233,3,1,""],path:[233,4,1,""],set_active_coordinates:[233,3,1,""],typename:[233,4,1,""],wilderness:[233,3,1,""]},"evennia.contrib.wilderness.WildernessScript":{DoesNotExist:[233,2,1,""],MultipleObjectsReturned:[233,2,1,""],at_after_object_leave:[233,3,1,""],at_script_creation:[233,3,1,""],at_start:[233,3,1,""],get_obj_coordinates:[233,3,1,""],get_objs_at_coordinates:[233,3,1,""],is_valid_coordinates:[233,3,1,""],itemcoordinates:[233,3,1,""],mapprovider:[233,3,1,""],move_obj:[233,3,1,""],path:[233,4,1,""],typename:[233,4,1,""]},"evennia.help":{admin:[235,0,0,"-"],manager:[236,0,0,"-"],models:[237,0,0,"-"]},"evennia.help.admin":{HelpEntryAdmin:[235,1,1,""],HelpEntryForm:[235,1,1,""],HelpTagInline:[235,1,1,""]},"evennia.help.admin.HelpEntryAdmin":{fieldsets:[235,4,1,""],form:[235,4,1,""],inlines:[235,4,1,""],list_display:[235,4,1,""],list_display_links:[235,4,1,""],list_select_related:[235,4,1,""],media:[235,3,1,""],ordering:[235,4,1,""],save_as:[235,4,1,""],save_on_top:[235,4,1,""],search_fields:[235,4,1,""]},"evennia.help.admin.HelpEntryForm":{Meta:[235,1,1,""],base_fields:[235,4,1,""],declared_fields:[235,4,1,""],media:[235,3,1,""]},"evennia.help.admin.HelpEntryForm.Meta":{fields:[235,4,1,""],model:[235,4,1,""]},"evennia.help.admin.HelpTagInline":{media:[235,3,1,""],model:[235,4,1,""],related_field:[235,4,1,""]},"evennia.help.manager":{HelpEntryManager:[236,1,1,""]},"evennia.help.manager.HelpEntryManager":{all_to_category:[236,3,1,""],find_apropos:[236,3,1,""],find_topicmatch:[236,3,1,""],find_topics_with_category:[236,3,1,""],find_topicsuggestions:[236,3,1,""],get_all_categories:[236,3,1,""],get_all_topics:[236,3,1,""],search_help:[236,3,1,""]},"evennia.help.models":{HelpEntry:[237,1,1,""]},"evennia.help.models.HelpEntry":{DoesNotExist:[237,2,1,""],MultipleObjectsReturned:[237,2,1,""],access:[237,3,1,""],aliases:[237,4,1,""],db_entrytext:[237,4,1,""],db_help_category:[237,4,1,""],db_key:[237,4,1,""],db_lock_storage:[237,4,1,""],db_staff_only:[237,4,1,""],db_tags:[237,4,1,""],entrytext:[237,3,1,""],get_absolute_url:[237,3,1,""],help_category:[237,3,1,""],id:[237,4,1,""],key:[237,3,1,""],lock_storage:[237,3,1,""],locks:[237,4,1,""],objects:[237,4,1,""],path:[237,4,1,""],search_index_entry:[237,3,1,""],staff_only:[237,3,1,""],tags:[237,4,1,""],typename:[237,4,1,""],web_get_admin_url:[237,3,1,""],web_get_create_url:[237,3,1,""],web_get_delete_url:[237,3,1,""],web_get_detail_url:[237,3,1,""],web_get_update_url:[237,3,1,""]},"evennia.locks":{lockfuncs:[239,0,0,"-"],lockhandler:[240,0,0,"-"]},"evennia.locks.lockfuncs":{"false":[239,5,1,""],"true":[239,5,1,""],all:[239,5,1,""],attr:[239,5,1,""],attr_eq:[239,5,1,""],attr_ge:[239,5,1,""],attr_gt:[239,5,1,""],attr_le:[239,5,1,""],attr_lt:[239,5,1,""],attr_ne:[239,5,1,""],dbref:[239,5,1,""],has_account:[239,5,1,""],holds:[239,5,1,""],id:[239,5,1,""],inside:[239,5,1,""],inside_rec:[239,5,1,""],locattr:[239,5,1,""],none:[239,5,1,""],objattr:[239,5,1,""],objlocattr:[239,5,1,""],objtag:[239,5,1,""],pdbref:[239,5,1,""],perm:[239,5,1,""],perm_above:[239,5,1,""],pid:[239,5,1,""],pperm:[239,5,1,""],pperm_above:[239,5,1,""],self:[239,5,1,""],serversetting:[239,5,1,""],superuser:[239,5,1,""],tag:[239,5,1,""]},"evennia.locks.lockhandler":{LockException:[240,2,1,""],LockHandler:[240,1,1,""]},"evennia.locks.lockhandler.LockHandler":{"delete":[240,3,1,""],__init__:[240,3,1,""],add:[240,3,1,""],all:[240,3,1,""],append:[240,3,1,""],cache_lock_bypass:[240,3,1,""],check:[240,3,1,""],check_lockstring:[240,3,1,""],clear:[240,3,1,""],get:[240,3,1,""],remove:[240,3,1,""],replace:[240,3,1,""],reset:[240,3,1,""],validate:[240,3,1,""]},"evennia.objects":{admin:[242,0,0,"-"],manager:[243,0,0,"-"],models:[244,0,0,"-"],objects:[245,0,0,"-"]},"evennia.objects.admin":{ObjectAttributeInline:[242,1,1,""],ObjectCreateForm:[242,1,1,""],ObjectDBAdmin:[242,1,1,""],ObjectEditForm:[242,1,1,""],ObjectTagInline:[242,1,1,""]},"evennia.objects.admin.ObjectAttributeInline":{media:[242,3,1,""],model:[242,4,1,""],related_field:[242,4,1,""]},"evennia.objects.admin.ObjectCreateForm":{Meta:[242,1,1,""],base_fields:[242,4,1,""],declared_fields:[242,4,1,""],media:[242,3,1,""],raw_id_fields:[242,4,1,""]},"evennia.objects.admin.ObjectCreateForm.Meta":{fields:[242,4,1,""],model:[242,4,1,""]},"evennia.objects.admin.ObjectDBAdmin":{add_fieldsets:[242,4,1,""],add_form:[242,4,1,""],fieldsets:[242,4,1,""],form:[242,4,1,""],get_fieldsets:[242,3,1,""],get_form:[242,3,1,""],inlines:[242,4,1,""],list_display:[242,4,1,""],list_display_links:[242,4,1,""],list_filter:[242,4,1,""],list_select_related:[242,4,1,""],media:[242,3,1,""],ordering:[242,4,1,""],raw_id_fields:[242,4,1,""],response_add:[242,3,1,""],save_as:[242,4,1,""],save_model:[242,3,1,""],save_on_top:[242,4,1,""],search_fields:[242,4,1,""]},"evennia.objects.admin.ObjectEditForm":{Meta:[242,1,1,""],base_fields:[242,4,1,""],declared_fields:[242,4,1,""],media:[242,3,1,""]},"evennia.objects.admin.ObjectEditForm.Meta":{fields:[242,4,1,""]},"evennia.objects.admin.ObjectTagInline":{media:[242,3,1,""],model:[242,4,1,""],related_field:[242,4,1,""]},"evennia.objects.manager":{ObjectManager:[243,1,1,""]},"evennia.objects.models":{ContentsHandler:[244,1,1,""],ObjectDB:[244,1,1,""]},"evennia.objects.models.ContentsHandler":{__init__:[244,3,1,""],add:[244,3,1,""],clear:[244,3,1,""],get:[244,3,1,""],init:[244,3,1,""],load:[244,3,1,""],remove:[244,3,1,""]},"evennia.objects.models.ObjectDB":{DoesNotExist:[244,2,1,""],MultipleObjectsReturned:[244,2,1,""],account:[244,3,1,""],at_db_location_postsave:[244,3,1,""],cmdset_storage:[244,3,1,""],contents_cache:[244,4,1,""],db_account:[244,4,1,""],db_account_id:[244,4,1,""],db_attributes:[244,4,1,""],db_cmdset_storage:[244,4,1,""],db_destination:[244,4,1,""],db_destination_id:[244,4,1,""],db_home:[244,4,1,""],db_home_id:[244,4,1,""],db_location:[244,4,1,""],db_location_id:[244,4,1,""],db_sessid:[244,4,1,""],db_tags:[244,4,1,""],destination:[244,3,1,""],destinations_set:[244,4,1,""],get_next_by_db_date_created:[244,3,1,""],get_previous_by_db_date_created:[244,3,1,""],hide_from_objects_set:[244,4,1,""],home:[244,3,1,""],homes_set:[244,4,1,""],id:[244,4,1,""],location:[244,3,1,""],locations_set:[244,4,1,""],object_subscription_set:[244,4,1,""],objects:[244,4,1,""],path:[244,4,1,""],receiver_object_set:[244,4,1,""],scriptdb_set:[244,4,1,""],sender_object_set:[244,4,1,""],sessid:[244,3,1,""],typename:[244,4,1,""]},"evennia.objects.objects":{DefaultCharacter:[245,1,1,""],DefaultExit:[245,1,1,""],DefaultObject:[245,1,1,""],DefaultRoom:[245,1,1,""],ExitCommand:[245,1,1,""],ObjectSessionHandler:[245,1,1,""]},"evennia.objects.objects.DefaultCharacter":{DoesNotExist:[245,2,1,""],MultipleObjectsReturned:[245,2,1,""],at_after_move:[245,3,1,""],at_post_puppet:[245,3,1,""],at_post_unpuppet:[245,3,1,""],at_pre_puppet:[245,3,1,""],basetype_setup:[245,3,1,""],connection_time:[245,3,1,""],create:[245,3,1,""],idle_time:[245,3,1,""],lockstring:[245,4,1,""],normalize_name:[245,3,1,""],path:[245,4,1,""],typename:[245,4,1,""],validate_name:[245,3,1,""]},"evennia.objects.objects.DefaultExit":{DoesNotExist:[245,2,1,""],MultipleObjectsReturned:[245,2,1,""],at_cmdset_get:[245,3,1,""],at_failed_traverse:[245,3,1,""],at_init:[245,3,1,""],at_traverse:[245,3,1,""],basetype_setup:[245,3,1,""],create:[245,3,1,""],create_exit_cmdset:[245,3,1,""],exit_command:[245,4,1,""],lockstring:[245,4,1,""],path:[245,4,1,""],priority:[245,4,1,""],typename:[245,4,1,""]},"evennia.objects.objects.DefaultObject":{"delete":[245,3,1,""],DoesNotExist:[245,2,1,""],MultipleObjectsReturned:[245,2,1,""],access:[245,3,1,""],announce_move_from:[245,3,1,""],announce_move_to:[245,3,1,""],at_access:[245,3,1,""],at_after_move:[245,3,1,""],at_after_traverse:[245,3,1,""],at_before_drop:[245,3,1,""],at_before_get:[245,3,1,""],at_before_give:[245,3,1,""],at_before_move:[245,3,1,""],at_before_say:[245,3,1,""],at_cmdset_get:[245,3,1,""],at_desc:[245,3,1,""],at_drop:[245,3,1,""],at_failed_traverse:[245,3,1,""],at_first_save:[245,3,1,""],at_get:[245,3,1,""],at_give:[245,3,1,""],at_init:[245,3,1,""],at_look:[245,3,1,""],at_msg_receive:[245,3,1,""],at_msg_send:[245,3,1,""],at_object_creation:[245,3,1,""],at_object_delete:[245,3,1,""],at_object_leave:[245,3,1,""],at_object_post_copy:[245,3,1,""],at_object_receive:[245,3,1,""],at_post_puppet:[245,3,1,""],at_post_unpuppet:[245,3,1,""],at_pre_puppet:[245,3,1,""],at_pre_unpuppet:[245,3,1,""],at_say:[245,3,1,""],at_server_reload:[245,3,1,""],at_server_shutdown:[245,3,1,""],at_traverse:[245,3,1,""],basetype_posthook_setup:[245,3,1,""],basetype_setup:[245,3,1,""],clear_contents:[245,3,1,""],clear_exits:[245,3,1,""],cmdset:[245,4,1,""],contents:[245,3,1,""],contents_get:[245,3,1,""],contents_set:[245,3,1,""],copy:[245,3,1,""],create:[245,3,1,""],execute_cmd:[245,3,1,""],exits:[245,3,1,""],for_contents:[245,3,1,""],get_display_name:[245,3,1,""],get_numbered_name:[245,3,1,""],has_account:[245,3,1,""],is_connected:[245,3,1,""],is_superuser:[245,3,1,""],lockstring:[245,4,1,""],move_to:[245,3,1,""],msg:[245,3,1,""],msg_contents:[245,3,1,""],nicks:[245,4,1,""],objects:[245,4,1,""],path:[245,4,1,""],return_appearance:[245,3,1,""],scripts:[245,4,1,""],search:[245,3,1,""],search_account:[245,3,1,""],sessions:[245,4,1,""],typename:[245,4,1,""]},"evennia.objects.objects.DefaultRoom":{DoesNotExist:[245,2,1,""],MultipleObjectsReturned:[245,2,1,""],basetype_setup:[245,3,1,""],create:[245,3,1,""],lockstring:[245,4,1,""],path:[245,4,1,""],typename:[245,4,1,""]},"evennia.objects.objects.ExitCommand":{aliases:[245,4,1,""],func:[245,3,1,""],get_extra_info:[245,3,1,""],help_category:[245,4,1,""],key:[245,4,1,""],lock_storage:[245,4,1,""],obj:[245,4,1,""],search_index_entry:[245,4,1,""]},"evennia.objects.objects.ObjectSessionHandler":{__init__:[245,3,1,""],add:[245,3,1,""],all:[245,3,1,""],clear:[245,3,1,""],count:[245,3,1,""],get:[245,3,1,""],remove:[245,3,1,""]},"evennia.prototypes":{menus:[247,0,0,"-"],protfuncs:[248,0,0,"-"],prototypes:[249,0,0,"-"],spawner:[250,0,0,"-"]},"evennia.prototypes.menus":{OLCMenu:[247,1,1,""],node_apply_diff:[247,5,1,""],node_destination:[247,5,1,""],node_examine_entity:[247,5,1,""],node_home:[247,5,1,""],node_index:[247,5,1,""],node_key:[247,5,1,""],node_location:[247,5,1,""],node_prototype_desc:[247,5,1,""],node_prototype_key:[247,5,1,""],node_prototype_save:[247,5,1,""],node_prototype_spawn:[247,5,1,""],node_validate_prototype:[247,5,1,""],start_olc:[247,5,1,""]},"evennia.prototypes.menus.OLCMenu":{display_helptext:[247,3,1,""],helptext_formatter:[247,3,1,""],nodetext_formatter:[247,3,1,""],options_formatter:[247,3,1,""]},"evennia.prototypes.protfuncs":{add:[248,5,1,""],base_random:[248,5,1,""],center_justify:[248,5,1,""],choice:[248,5,1,""],dbref:[248,5,1,""],div:[248,5,1,""],eval:[248,5,1,""],full_justify:[248,5,1,""],left_justify:[248,5,1,""],mult:[248,5,1,""],obj:[248,5,1,""],objlist:[248,5,1,""],protkey:[248,5,1,""],randint:[248,5,1,""],random:[248,5,1,""],right_justify:[248,5,1,""],sub:[248,5,1,""],toint:[248,5,1,""]},"evennia.prototypes.prototypes":{DbPrototype:[249,1,1,""],PermissionError:[249,2,1,""],ValidationError:[249,2,1,""],check_permission:[249,5,1,""],create_prototype:[249,5,1,""],delete_prototype:[249,5,1,""],format_available_protfuncs:[249,5,1,""],homogenize_prototype:[249,5,1,""],init_spawn_value:[249,5,1,""],list_prototypes:[249,5,1,""],protfunc_parser:[249,5,1,""],prototype_to_str:[249,5,1,""],save_prototype:[249,5,1,""],search_objects_with_prototype:[249,5,1,""],search_prototype:[249,5,1,""],validate_prototype:[249,5,1,""],value_to_obj:[249,5,1,""],value_to_obj_or_any:[249,5,1,""]},"evennia.prototypes.prototypes.DbPrototype":{DoesNotExist:[249,2,1,""],MultipleObjectsReturned:[249,2,1,""],at_script_creation:[249,3,1,""],path:[249,4,1,""],prototype:[249,3,1,""],typename:[249,4,1,""]},"evennia.prototypes.spawner":{Unset:[250,1,1,""],batch_create_object:[250,5,1,""],batch_update_objects_with_prototype:[250,5,1,""],flatten_diff:[250,5,1,""],flatten_prototype:[250,5,1,""],format_diff:[250,5,1,""],prototype_diff:[250,5,1,""],prototype_diff_from_object:[250,5,1,""],prototype_from_object:[250,5,1,""],spawn:[250,5,1,""]},"evennia.scripts":{admin:[252,0,0,"-"],manager:[253,0,0,"-"],models:[254,0,0,"-"],monitorhandler:[255,0,0,"-"],scripthandler:[256,0,0,"-"],scripts:[257,0,0,"-"],taskhandler:[258,0,0,"-"],tickerhandler:[259,0,0,"-"]},"evennia.scripts.admin":{ScriptAttributeInline:[252,1,1,""],ScriptDBAdmin:[252,1,1,""],ScriptTagInline:[252,1,1,""]},"evennia.scripts.admin.ScriptAttributeInline":{media:[252,3,1,""],model:[252,4,1,""],related_field:[252,4,1,""]},"evennia.scripts.admin.ScriptDBAdmin":{fieldsets:[252,4,1,""],inlines:[252,4,1,""],list_display:[252,4,1,""],list_display_links:[252,4,1,""],list_select_related:[252,4,1,""],media:[252,3,1,""],ordering:[252,4,1,""],raw_id_fields:[252,4,1,""],save_as:[252,4,1,""],save_model:[252,3,1,""],save_on_top:[252,4,1,""],search_fields:[252,4,1,""]},"evennia.scripts.admin.ScriptTagInline":{media:[252,3,1,""],model:[252,4,1,""],related_field:[252,4,1,""]},"evennia.scripts.manager":{ScriptManager:[253,1,1,""]},"evennia.scripts.models":{ScriptDB:[254,1,1,""]},"evennia.scripts.models.ScriptDB":{DoesNotExist:[254,2,1,""],MultipleObjectsReturned:[254,2,1,""],account:[254,3,1,""],db_account:[254,4,1,""],db_account_id:[254,4,1,""],db_attributes:[254,4,1,""],db_desc:[254,4,1,""],db_interval:[254,4,1,""],db_is_active:[254,4,1,""],db_obj:[254,4,1,""],db_obj_id:[254,4,1,""],db_persistent:[254,4,1,""],db_repeats:[254,4,1,""],db_start_delay:[254,4,1,""],db_tags:[254,4,1,""],desc:[254,3,1,""],get_next_by_db_date_created:[254,3,1,""],get_previous_by_db_date_created:[254,3,1,""],id:[254,4,1,""],interval:[254,3,1,""],is_active:[254,3,1,""],obj:[254,3,1,""],object:[254,3,1,""],objects:[254,4,1,""],path:[254,4,1,""],persistent:[254,3,1,""],receiver_script_set:[254,4,1,""],repeats:[254,3,1,""],sender_script_set:[254,4,1,""],start_delay:[254,3,1,""],typename:[254,4,1,""]},"evennia.scripts.monitorhandler":{MonitorHandler:[255,1,1,""]},"evennia.scripts.monitorhandler.MonitorHandler":{__init__:[255,3,1,""],add:[255,3,1,""],all:[255,3,1,""],at_update:[255,3,1,""],clear:[255,3,1,""],remove:[255,3,1,""],restore:[255,3,1,""],save:[255,3,1,""]},"evennia.scripts.scripthandler":{ScriptHandler:[256,1,1,""]},"evennia.scripts.scripthandler.ScriptHandler":{"delete":[256,3,1,""],__init__:[256,3,1,""],add:[256,3,1,""],all:[256,3,1,""],get:[256,3,1,""],start:[256,3,1,""],stop:[256,3,1,""],validate:[256,3,1,""]},"evennia.scripts.scripts":{DefaultScript:[257,1,1,""],DoNothing:[257,1,1,""],Store:[257,1,1,""]},"evennia.scripts.scripts.DefaultScript":{DoesNotExist:[257,2,1,""],MultipleObjectsReturned:[257,2,1,""],at_idmapper_flush:[257,3,1,""],at_repeat:[257,3,1,""],at_script_creation:[257,3,1,""],at_server_reload:[257,3,1,""],at_server_shutdown:[257,3,1,""],at_start:[257,3,1,""],at_stop:[257,3,1,""],create:[257,3,1,""],force_repeat:[257,3,1,""],is_valid:[257,3,1,""],path:[257,4,1,""],pause:[257,3,1,""],remaining_repeats:[257,3,1,""],reset_callcount:[257,3,1,""],restart:[257,3,1,""],start:[257,3,1,""],stop:[257,3,1,""],time_until_next_repeat:[257,3,1,""],typename:[257,4,1,""],unpause:[257,3,1,""]},"evennia.scripts.scripts.DoNothing":{DoesNotExist:[257,2,1,""],MultipleObjectsReturned:[257,2,1,""],at_script_creation:[257,3,1,""],path:[257,4,1,""],typename:[257,4,1,""]},"evennia.scripts.scripts.Store":{DoesNotExist:[257,2,1,""],MultipleObjectsReturned:[257,2,1,""],at_script_creation:[257,3,1,""],path:[257,4,1,""],typename:[257,4,1,""]},"evennia.scripts.taskhandler":{TaskHandler:[258,1,1,""]},"evennia.scripts.taskhandler.TaskHandler":{__init__:[258,3,1,""],add:[258,3,1,""],create_delays:[258,3,1,""],do_task:[258,3,1,""],load:[258,3,1,""],remove:[258,3,1,""],save:[258,3,1,""]},"evennia.scripts.tickerhandler":{Ticker:[259,1,1,""],TickerHandler:[259,1,1,""],TickerPool:[259,1,1,""]},"evennia.scripts.tickerhandler.Ticker":{__init__:[259,3,1,""],add:[259,3,1,""],remove:[259,3,1,""],stop:[259,3,1,""],validate:[259,3,1,""]},"evennia.scripts.tickerhandler.TickerHandler":{__init__:[259,3,1,""],add:[259,3,1,""],all:[259,3,1,""],all_display:[259,3,1,""],clear:[259,3,1,""],remove:[259,3,1,""],restore:[259,3,1,""],save:[259,3,1,""],ticker_pool_class:[259,4,1,""]},"evennia.scripts.tickerhandler.TickerPool":{__init__:[259,3,1,""],add:[259,3,1,""],remove:[259,3,1,""],stop:[259,3,1,""],ticker_class:[259,4,1,""]},"evennia.server":{admin:[261,0,0,"-"],amp_client:[262,0,0,"-"],connection_wizard:[263,0,0,"-"],deprecations:[264,0,0,"-"],evennia_launcher:[265,0,0,"-"],game_index_client:[266,0,0,"-"],initial_setup:[269,0,0,"-"],inputfuncs:[270,0,0,"-"],manager:[271,0,0,"-"],models:[272,0,0,"-"],portal:[273,0,0,"-"],profiling:[295,0,0,"-"],server:[303,0,0,"-"],serversession:[304,0,0,"-"],session:[305,0,0,"-"],sessionhandler:[306,0,0,"-"],signals:[307,0,0,"-"],throttle:[308,0,0,"-"],validators:[309,0,0,"-"],webserver:[310,0,0,"-"]},"evennia.server.admin":{ServerConfigAdmin:[261,1,1,""]},"evennia.server.admin.ServerConfigAdmin":{list_display:[261,4,1,""],list_display_links:[261,4,1,""],list_select_related:[261,4,1,""],media:[261,3,1,""],ordering:[261,4,1,""],save_as:[261,4,1,""],save_on_top:[261,4,1,""],search_fields:[261,4,1,""]},"evennia.server.amp_client":{AMPClientFactory:[262,1,1,""],AMPServerClientProtocol:[262,1,1,""]},"evennia.server.amp_client.AMPClientFactory":{__init__:[262,3,1,""],buildProtocol:[262,3,1,""],clientConnectionFailed:[262,3,1,""],clientConnectionLost:[262,3,1,""],factor:[262,4,1,""],initialDelay:[262,4,1,""],maxDelay:[262,4,1,""],noisy:[262,4,1,""],startedConnecting:[262,3,1,""]},"evennia.server.amp_client.AMPServerClientProtocol":{connectionMade:[262,3,1,""],data_to_portal:[262,3,1,""],send_AdminServer2Portal:[262,3,1,""],send_MsgServer2Portal:[262,3,1,""],server_receive_adminportal2server:[262,3,1,""],server_receive_msgportal2server:[262,3,1,""],server_receive_status:[262,3,1,""]},"evennia.server.connection_wizard":{ConnectionWizard:[263,1,1,""],node_game_index_fields:[263,5,1,""],node_game_index_start:[263,5,1,""],node_mssp_start:[263,5,1,""],node_start:[263,5,1,""],node_view_and_apply_settings:[263,5,1,""]},"evennia.server.connection_wizard.ConnectionWizard":{__init__:[263,3,1,""],ask_choice:[263,3,1,""],ask_continue:[263,3,1,""],ask_input:[263,3,1,""],ask_node:[263,3,1,""],ask_yesno:[263,3,1,""],display:[263,3,1,""]},"evennia.server.deprecations":{check_errors:[264,5,1,""],check_warnings:[264,5,1,""]},"evennia.server.evennia_launcher":{AMPLauncherProtocol:[265,1,1,""],MsgLauncher2Portal:[265,1,1,""],MsgStatus:[265,1,1,""],check_database:[265,5,1,""],check_main_evennia_dependencies:[265,5,1,""],collectstatic:[265,5,1,""],create_game_directory:[265,5,1,""],create_secret_key:[265,5,1,""],create_settings_file:[265,5,1,""],create_superuser:[265,5,1,""],del_pid:[265,5,1,""],error_check_python_modules:[265,5,1,""],evennia_version:[265,5,1,""],get_pid:[265,5,1,""],getenv:[265,5,1,""],init_game_directory:[265,5,1,""],kill:[265,5,1,""],list_settings:[265,5,1,""],main:[265,5,1,""],query_info:[265,5,1,""],query_status:[265,5,1,""],reboot_evennia:[265,5,1,""],reload_evennia:[265,5,1,""],run_connect_wizard:[265,5,1,""],run_dummyrunner:[265,5,1,""],run_menu:[265,5,1,""],send_instruction:[265,5,1,""],set_gamedir:[265,5,1,""],show_version_info:[265,5,1,""],start_evennia:[265,5,1,""],start_only_server:[265,5,1,""],start_portal_interactive:[265,5,1,""],start_server_interactive:[265,5,1,""],stop_evennia:[265,5,1,""],stop_server_only:[265,5,1,""],tail_log_files:[265,5,1,""],wait_for_status:[265,5,1,""],wait_for_status_reply:[265,5,1,""]},"evennia.server.evennia_launcher.AMPLauncherProtocol":{__init__:[265,3,1,""],receive_status_from_portal:[265,3,1,""],wait_for_status:[265,3,1,""]},"evennia.server.evennia_launcher.MsgLauncher2Portal":{allErrors:[265,4,1,""],arguments:[265,4,1,""],commandName:[265,4,1,""],errors:[265,4,1,""],key:[265,4,1,""],response:[265,4,1,""],reverseErrors:[265,4,1,""]},"evennia.server.evennia_launcher.MsgStatus":{allErrors:[265,4,1,""],arguments:[265,4,1,""],commandName:[265,4,1,""],errors:[265,4,1,""],key:[265,4,1,""],response:[265,4,1,""],reverseErrors:[265,4,1,""]},"evennia.server.game_index_client":{client:[267,0,0,"-"],service:[268,0,0,"-"]},"evennia.server.game_index_client.client":{EvenniaGameIndexClient:[267,1,1,""],QuietHTTP11ClientFactory:[267,1,1,""],SimpleResponseReceiver:[267,1,1,""],StringProducer:[267,1,1,""]},"evennia.server.game_index_client.client.EvenniaGameIndexClient":{__init__:[267,3,1,""],handle_egd_response:[267,3,1,""],send_game_details:[267,3,1,""]},"evennia.server.game_index_client.client.QuietHTTP11ClientFactory":{noisy:[267,4,1,""]},"evennia.server.game_index_client.client.SimpleResponseReceiver":{__init__:[267,3,1,""],connectionLost:[267,3,1,""],dataReceived:[267,3,1,""]},"evennia.server.game_index_client.client.StringProducer":{__init__:[267,3,1,""],pauseProducing:[267,3,1,""],startProducing:[267,3,1,""],stopProducing:[267,3,1,""]},"evennia.server.game_index_client.service":{EvenniaGameIndexService:[268,1,1,""]},"evennia.server.game_index_client.service.EvenniaGameIndexService":{__init__:[268,3,1,""],name:[268,4,1,""],startService:[268,3,1,""],stopService:[268,3,1,""]},"evennia.server.initial_setup":{at_initial_setup:[269,5,1,""],collectstatic:[269,5,1,""],create_channels:[269,5,1,""],create_objects:[269,5,1,""],get_god_account:[269,5,1,""],handle_setup:[269,5,1,""],reset_server:[269,5,1,""]},"evennia.server.inputfuncs":{"default":[270,5,1,""],bot_data_in:[270,5,1,""],client_options:[270,5,1,""],echo:[270,5,1,""],external_discord_hello:[270,5,1,""],get_client_options:[270,5,1,""],get_inputfuncs:[270,5,1,""],get_value:[270,5,1,""],hello:[270,5,1,""],login:[270,5,1,""],monitor:[270,5,1,""],monitored:[270,5,1,""],msdp_list:[270,5,1,""],msdp_report:[270,5,1,""],msdp_send:[270,5,1,""],msdp_unreport:[270,5,1,""],repeat:[270,5,1,""],supports_set:[270,5,1,""],text:[270,5,1,""],unmonitor:[270,5,1,""],unrepeat:[270,5,1,""],webclient_options:[270,5,1,""]},"evennia.server.manager":{ServerConfigManager:[271,1,1,""]},"evennia.server.manager.ServerConfigManager":{conf:[271,3,1,""]},"evennia.server.models":{ServerConfig:[272,1,1,""]},"evennia.server.models.ServerConfig":{DoesNotExist:[272,2,1,""],MultipleObjectsReturned:[272,2,1,""],db_key:[272,4,1,""],db_value:[272,4,1,""],id:[272,4,1,""],key:[272,3,1,""],objects:[272,4,1,""],path:[272,4,1,""],store:[272,3,1,""],typename:[272,4,1,""],value:[272,3,1,""]},"evennia.server.portal":{amp:[274,0,0,"-"],amp_server:[275,0,0,"-"],grapevine:[276,0,0,"-"],irc:[277,0,0,"-"],mccp:[278,0,0,"-"],mssp:[279,0,0,"-"],mxp:[280,0,0,"-"],naws:[281,0,0,"-"],portal:[282,0,0,"-"],portalsessionhandler:[283,0,0,"-"],rss:[284,0,0,"-"],ssh:[285,0,0,"-"],ssl:[286,0,0,"-"],suppress_ga:[287,0,0,"-"],telnet:[288,0,0,"-"],telnet_oob:[289,0,0,"-"],telnet_ssl:[290,0,0,"-"],tests:[291,0,0,"-"],ttype:[292,0,0,"-"],webclient:[293,0,0,"-"],webclient_ajax:[294,0,0,"-"]},"evennia.server.portal.amp":{AMPMultiConnectionProtocol:[274,1,1,""],AdminPortal2Server:[274,1,1,""],AdminServer2Portal:[274,1,1,""],Compressed:[274,1,1,""],FunctionCall:[274,1,1,""],MsgLauncher2Portal:[274,1,1,""],MsgPortal2Server:[274,1,1,""],MsgServer2Portal:[274,1,1,""],MsgStatus:[274,1,1,""],dumps:[274,5,1,""],loads:[274,5,1,""]},"evennia.server.portal.amp.AMPMultiConnectionProtocol":{__init__:[274,3,1,""],broadcast:[274,3,1,""],connectionLost:[274,3,1,""],connectionMade:[274,3,1,""],dataReceived:[274,3,1,""],data_in:[274,3,1,""],errback:[274,3,1,""],makeConnection:[274,3,1,""],receive_functioncall:[274,3,1,""],send_FunctionCall:[274,3,1,""]},"evennia.server.portal.amp.AdminPortal2Server":{allErrors:[274,4,1,""],arguments:[274,4,1,""],commandName:[274,4,1,""],errors:[274,4,1,""],key:[274,4,1,""],response:[274,4,1,""],reverseErrors:[274,4,1,""]},"evennia.server.portal.amp.AdminServer2Portal":{allErrors:[274,4,1,""],arguments:[274,4,1,""],commandName:[274,4,1,""],errors:[274,4,1,""],key:[274,4,1,""],response:[274,4,1,""],reverseErrors:[274,4,1,""]},"evennia.server.portal.amp.Compressed":{fromBox:[274,3,1,""],fromString:[274,3,1,""],toBox:[274,3,1,""],toString:[274,3,1,""]},"evennia.server.portal.amp.FunctionCall":{allErrors:[274,4,1,""],arguments:[274,4,1,""],commandName:[274,4,1,""],errors:[274,4,1,""],key:[274,4,1,""],response:[274,4,1,""],reverseErrors:[274,4,1,""]},"evennia.server.portal.amp.MsgLauncher2Portal":{allErrors:[274,4,1,""],arguments:[274,4,1,""],commandName:[274,4,1,""],errors:[274,4,1,""],key:[274,4,1,""],response:[274,4,1,""],reverseErrors:[274,4,1,""]},"evennia.server.portal.amp.MsgPortal2Server":{allErrors:[274,4,1,""],arguments:[274,4,1,""],commandName:[274,4,1,""],errors:[274,4,1,""],key:[274,4,1,""],response:[274,4,1,""],reverseErrors:[274,4,1,""]},"evennia.server.portal.amp.MsgServer2Portal":{allErrors:[274,4,1,""],arguments:[274,4,1,""],commandName:[274,4,1,""],errors:[274,4,1,""],key:[274,4,1,""],response:[274,4,1,""],reverseErrors:[274,4,1,""]},"evennia.server.portal.amp.MsgStatus":{allErrors:[274,4,1,""],arguments:[274,4,1,""],commandName:[274,4,1,""],errors:[274,4,1,""],key:[274,4,1,""],response:[274,4,1,""],reverseErrors:[274,4,1,""]},"evennia.server.portal.amp_server":{AMPServerFactory:[275,1,1,""],AMPServerProtocol:[275,1,1,""],getenv:[275,5,1,""]},"evennia.server.portal.amp_server.AMPServerFactory":{__init__:[275,3,1,""],buildProtocol:[275,3,1,""],logPrefix:[275,3,1,""],noisy:[275,4,1,""]},"evennia.server.portal.amp_server.AMPServerProtocol":{connectionLost:[275,3,1,""],data_to_server:[275,3,1,""],get_status:[275,3,1,""],portal_receive_adminserver2portal:[275,3,1,""],portal_receive_launcher2portal:[275,3,1,""],portal_receive_server2portal:[275,3,1,""],portal_receive_status:[275,3,1,""],send_AdminPortal2Server:[275,3,1,""],send_MsgPortal2Server:[275,3,1,""],send_Status2Launcher:[275,3,1,""],start_server:[275,3,1,""],stop_server:[275,3,1,""],wait_for_disconnect:[275,3,1,""],wait_for_server_connect:[275,3,1,""]},"evennia.server.portal.grapevine":{GrapevineClient:[276,1,1,""],RestartingWebsocketServerFactory:[276,1,1,""]},"evennia.server.portal.grapevine.GrapevineClient":{__init__:[276,3,1,""],at_login:[276,3,1,""],data_in:[276,3,1,""],disconnect:[276,3,1,""],onClose:[276,3,1,""],onMessage:[276,3,1,""],onOpen:[276,3,1,""],send_authenticate:[276,3,1,""],send_channel:[276,3,1,""],send_default:[276,3,1,""],send_heartbeat:[276,3,1,""],send_subscribe:[276,3,1,""],send_unsubscribe:[276,3,1,""]},"evennia.server.portal.grapevine.RestartingWebsocketServerFactory":{__init__:[276,3,1,""],buildProtocol:[276,3,1,""],clientConnectionFailed:[276,3,1,""],clientConnectionLost:[276,3,1,""],factor:[276,4,1,""],initialDelay:[276,4,1,""],maxDelay:[276,4,1,""],reconnect:[276,3,1,""],start:[276,3,1,""],startedConnecting:[276,3,1,""]},"evennia.server.portal.irc":{IRCBot:[277,1,1,""],IRCBotFactory:[277,1,1,""],parse_ansi_to_irc:[277,5,1,""],parse_irc_to_ansi:[277,5,1,""]},"evennia.server.portal.irc.IRCBot":{action:[277,3,1,""],at_login:[277,3,1,""],channel:[277,4,1,""],data_in:[277,3,1,""],disconnect:[277,3,1,""],factory:[277,4,1,""],get_nicklist:[277,3,1,""],irc_RPL_ENDOFNAMES:[277,3,1,""],irc_RPL_NAMREPLY:[277,3,1,""],lineRate:[277,4,1,""],logger:[277,4,1,""],nickname:[277,4,1,""],pong:[277,3,1,""],privmsg:[277,3,1,""],send_channel:[277,3,1,""],send_default:[277,3,1,""],send_ping:[277,3,1,""],send_privmsg:[277,3,1,""],send_reconnect:[277,3,1,""],send_request_nicklist:[277,3,1,""],signedOn:[277,3,1,""],sourceURL:[277,4,1,""]},"evennia.server.portal.irc.IRCBotFactory":{__init__:[277,3,1,""],buildProtocol:[277,3,1,""],clientConnectionFailed:[277,3,1,""],clientConnectionLost:[277,3,1,""],factor:[277,4,1,""],initialDelay:[277,4,1,""],maxDelay:[277,4,1,""],reconnect:[277,3,1,""],start:[277,3,1,""],startedConnecting:[277,3,1,""]},"evennia.server.portal.mccp":{Mccp:[278,1,1,""],mccp_compress:[278,5,1,""]},"evennia.server.portal.mccp.Mccp":{__init__:[278,3,1,""],do_mccp:[278,3,1,""],no_mccp:[278,3,1,""]},"evennia.server.portal.mssp":{Mssp:[279,1,1,""]},"evennia.server.portal.mssp.Mssp":{__init__:[279,3,1,""],do_mssp:[279,3,1,""],get_player_count:[279,3,1,""],get_uptime:[279,3,1,""],no_mssp:[279,3,1,""]},"evennia.server.portal.mxp":{Mxp:[280,1,1,""],mxp_parse:[280,5,1,""]},"evennia.server.portal.mxp.Mxp":{__init__:[280,3,1,""],do_mxp:[280,3,1,""],no_mxp:[280,3,1,""]},"evennia.server.portal.naws":{Naws:[281,1,1,""]},"evennia.server.portal.naws.Naws":{__init__:[281,3,1,""],do_naws:[281,3,1,""],negotiate_sizes:[281,3,1,""],no_naws:[281,3,1,""]},"evennia.server.portal.portal":{Portal:[282,1,1,""],Websocket:[282,1,1,""]},"evennia.server.portal.portal.Portal":{__init__:[282,3,1,""],get_info_dict:[282,3,1,""],shutdown:[282,3,1,""]},"evennia.server.portal.portalsessionhandler":{PortalSessionHandler:[283,1,1,""]},"evennia.server.portal.portalsessionhandler.PortalSessionHandler":{__init__:[283,3,1,""],announce_all:[283,3,1,""],at_server_connection:[283,3,1,""],connect:[283,3,1,""],count_loggedin:[283,3,1,""],data_in:[283,3,1,""],data_out:[283,3,1,""],disconnect:[283,3,1,""],disconnect_all:[283,3,1,""],generate_sessid:[283,3,1,""],server_connect:[283,3,1,""],server_disconnect:[283,3,1,""],server_disconnect_all:[283,3,1,""],server_logged_in:[283,3,1,""],server_session_sync:[283,3,1,""],sessions_from_csessid:[283,3,1,""],sync:[283,3,1,""]},"evennia.server.portal.rss":{RSSBotFactory:[284,1,1,""],RSSReader:[284,1,1,""]},"evennia.server.portal.rss.RSSBotFactory":{__init__:[284,3,1,""],start:[284,3,1,""]},"evennia.server.portal.rss.RSSReader":{__init__:[284,3,1,""],data_in:[284,3,1,""],disconnect:[284,3,1,""],get_new:[284,3,1,""],update:[284,3,1,""]},"evennia.server.portal.ssh":{AccountDBPasswordChecker:[285,1,1,""],ExtraInfoAuthServer:[285,1,1,""],PassAvatarIdTerminalRealm:[285,1,1,""],SSHServerFactory:[285,1,1,""],SshProtocol:[285,1,1,""],TerminalSessionTransport_getPeer:[285,1,1,""],getKeyPair:[285,5,1,""],makeFactory:[285,5,1,""]},"evennia.server.portal.ssh.AccountDBPasswordChecker":{__init__:[285,3,1,""],credentialInterfaces:[285,4,1,""],noisy:[285,4,1,""],requestAvatarId:[285,3,1,""]},"evennia.server.portal.ssh.ExtraInfoAuthServer":{auth_password:[285,3,1,""],noisy:[285,4,1,""]},"evennia.server.portal.ssh.PassAvatarIdTerminalRealm":{noisy:[285,4,1,""]},"evennia.server.portal.ssh.SSHServerFactory":{logPrefix:[285,3,1,""],noisy:[285,4,1,""]},"evennia.server.portal.ssh.SshProtocol":{__init__:[285,3,1,""],at_login:[285,3,1,""],connectionLost:[285,3,1,""],connectionMade:[285,3,1,""],data_out:[285,3,1,""],disconnect:[285,3,1,""],getClientAddress:[285,3,1,""],handle_EOF:[285,3,1,""],handle_FF:[285,3,1,""],handle_INT:[285,3,1,""],handle_QUIT:[285,3,1,""],lineReceived:[285,3,1,""],noisy:[285,4,1,""],sendLine:[285,3,1,""],send_default:[285,3,1,""],send_prompt:[285,3,1,""],send_text:[285,3,1,""],terminalSize:[285,3,1,""]},"evennia.server.portal.ssh.TerminalSessionTransport_getPeer":{__init__:[285,3,1,""],noisy:[285,4,1,""]},"evennia.server.portal.ssl":{SSLProtocol:[286,1,1,""],getSSLContext:[286,5,1,""],verify_SSL_key_and_cert:[286,5,1,""]},"evennia.server.portal.ssl.SSLProtocol":{__init__:[286,3,1,""]},"evennia.server.portal.suppress_ga":{SuppressGA:[287,1,1,""]},"evennia.server.portal.suppress_ga.SuppressGA":{__init__:[287,3,1,""],will_suppress_ga:[287,3,1,""],wont_suppress_ga:[287,3,1,""]},"evennia.server.portal.telnet":{TelnetProtocol:[288,1,1,""],TelnetServerFactory:[288,1,1,""]},"evennia.server.portal.telnet.TelnetProtocol":{__init__:[288,3,1,""],applicationDataReceived:[288,3,1,""],at_login:[288,3,1,""],connectionLost:[288,3,1,""],connectionMade:[288,3,1,""],dataReceived:[288,3,1,""],data_in:[288,3,1,""],data_out:[288,3,1,""],disableLocal:[288,3,1,""],disableRemote:[288,3,1,""],disconnect:[288,3,1,""],enableLocal:[288,3,1,""],enableRemote:[288,3,1,""],handshake_done:[288,3,1,""],sendLine:[288,3,1,""],send_default:[288,3,1,""],send_prompt:[288,3,1,""],send_text:[288,3,1,""],toggle_nop_keepalive:[288,3,1,""]},"evennia.server.portal.telnet.TelnetServerFactory":{logPrefix:[288,3,1,""],noisy:[288,4,1,""]},"evennia.server.portal.telnet_oob":{TelnetOOB:[289,1,1,""]},"evennia.server.portal.telnet_oob.TelnetOOB":{__init__:[289,3,1,""],data_out:[289,3,1,""],decode_gmcp:[289,3,1,""],decode_msdp:[289,3,1,""],do_gmcp:[289,3,1,""],do_msdp:[289,3,1,""],encode_gmcp:[289,3,1,""],encode_msdp:[289,3,1,""],no_gmcp:[289,3,1,""],no_msdp:[289,3,1,""]},"evennia.server.portal.telnet_ssl":{SSLProtocol:[290,1,1,""],getSSLContext:[290,5,1,""],verify_or_create_SSL_key_and_cert:[290,5,1,""]},"evennia.server.portal.telnet_ssl.SSLProtocol":{__init__:[290,3,1,""]},"evennia.server.portal.tests":{TestAMPServer:[291,1,1,""],TestIRC:[291,1,1,""],TestTelnet:[291,1,1,""],TestWebSocket:[291,1,1,""]},"evennia.server.portal.tests.TestAMPServer":{setUp:[291,3,1,""],test_amp_in:[291,3,1,""],test_amp_out:[291,3,1,""],test_large_msg:[291,3,1,""]},"evennia.server.portal.tests.TestIRC":{test_bold:[291,3,1,""],test_colors:[291,3,1,""],test_identity:[291,3,1,""],test_italic:[291,3,1,""],test_plain_ansi:[291,3,1,""]},"evennia.server.portal.tests.TestTelnet":{setUp:[291,3,1,""],test_mudlet_ttype:[291,3,1,""]},"evennia.server.portal.tests.TestWebSocket":{setUp:[291,3,1,""],tearDown:[291,3,1,""],test_data_in:[291,3,1,""],test_data_out:[291,3,1,""]},"evennia.server.portal.ttype":{Ttype:[292,1,1,""]},"evennia.server.portal.ttype.Ttype":{__init__:[292,3,1,""],will_ttype:[292,3,1,""],wont_ttype:[292,3,1,""]},"evennia.server.portal.webclient":{WebSocketClient:[293,1,1,""]},"evennia.server.portal.webclient.WebSocketClient":{__init__:[293,3,1,""],at_login:[293,3,1,""],data_in:[293,3,1,""],disconnect:[293,3,1,""],get_client_session:[293,3,1,""],nonce:[293,4,1,""],onClose:[293,3,1,""],onMessage:[293,3,1,""],onOpen:[293,3,1,""],sendLine:[293,3,1,""],send_default:[293,3,1,""],send_prompt:[293,3,1,""],send_text:[293,3,1,""]},"evennia.server.portal.webclient_ajax":{AjaxWebClient:[294,1,1,""],AjaxWebClientSession:[294,1,1,""],LazyEncoder:[294,1,1,""],jsonify:[294,5,1,""]},"evennia.server.portal.webclient_ajax.AjaxWebClient":{__init__:[294,3,1,""],allowedMethods:[294,4,1,""],at_login:[294,3,1,""],client_disconnect:[294,3,1,""],get_client_sessid:[294,3,1,""],isLeaf:[294,4,1,""],lineSend:[294,3,1,""],mode_close:[294,3,1,""],mode_init:[294,3,1,""],mode_input:[294,3,1,""],mode_keepalive:[294,3,1,""],mode_receive:[294,3,1,""],render_POST:[294,3,1,""]},"evennia.server.portal.webclient_ajax.AjaxWebClientSession":{__init__:[294,3,1,""],at_login:[294,3,1,""],data_in:[294,3,1,""],data_out:[294,3,1,""],disconnect:[294,3,1,""],get_client_session:[294,3,1,""],send_default:[294,3,1,""],send_prompt:[294,3,1,""],send_text:[294,3,1,""]},"evennia.server.portal.webclient_ajax.LazyEncoder":{"default":[294,3,1,""]},"evennia.server.profiling":{dummyrunner:[296,0,0,"-"],dummyrunner_settings:[297,0,0,"-"],memplot:[298,0,0,"-"],settings_mixin:[299,0,0,"-"],test_queries:[300,0,0,"-"],tests:[301,0,0,"-"],timetrace:[302,0,0,"-"]},"evennia.server.profiling.dummyrunner":{DummyClient:[296,1,1,""],DummyFactory:[296,1,1,""],gidcounter:[296,5,1,""],idcounter:[296,5,1,""],makeiter:[296,5,1,""],start_all_dummy_clients:[296,5,1,""]},"evennia.server.profiling.dummyrunner.DummyClient":{connectionLost:[296,3,1,""],connectionMade:[296,3,1,""],counter:[296,3,1,""],dataReceived:[296,3,1,""],error:[296,3,1,""],logout:[296,3,1,""],step:[296,3,1,""]},"evennia.server.profiling.dummyrunner.DummyFactory":{__init__:[296,3,1,""],protocol:[296,4,1,""]},"evennia.server.profiling.dummyrunner_settings":{c_creates_button:[297,5,1,""],c_creates_obj:[297,5,1,""],c_digs:[297,5,1,""],c_examines:[297,5,1,""],c_help:[297,5,1,""],c_idles:[297,5,1,""],c_login:[297,5,1,""],c_login_nodig:[297,5,1,""],c_logout:[297,5,1,""],c_looks:[297,5,1,""],c_moves:[297,5,1,""],c_moves_n:[297,5,1,""],c_moves_s:[297,5,1,""],c_socialize:[297,5,1,""]},"evennia.server.profiling.memplot":{Memplot:[298,1,1,""]},"evennia.server.profiling.memplot.Memplot":{DoesNotExist:[298,2,1,""],MultipleObjectsReturned:[298,2,1,""],at_repeat:[298,3,1,""],at_script_creation:[298,3,1,""],path:[298,4,1,""],typename:[298,4,1,""]},"evennia.server.profiling.test_queries":{count_queries:[300,5,1,""]},"evennia.server.profiling.tests":{TestDummyrunnerSettings:[301,1,1,""],TestMemPlot:[301,1,1,""]},"evennia.server.profiling.tests.TestDummyrunnerSettings":{clear_client_lists:[301,3,1,""],perception_method_tests:[301,3,1,""],setUp:[301,3,1,""],test_c_creates_button:[301,3,1,""],test_c_creates_obj:[301,3,1,""],test_c_digs:[301,3,1,""],test_c_examines:[301,3,1,""],test_c_help:[301,3,1,""],test_c_login:[301,3,1,""],test_c_login_no_dig:[301,3,1,""],test_c_logout:[301,3,1,""],test_c_looks:[301,3,1,""],test_c_move_n:[301,3,1,""],test_c_move_s:[301,3,1,""],test_c_moves:[301,3,1,""],test_c_socialize:[301,3,1,""],test_idles:[301,3,1,""]},"evennia.server.profiling.tests.TestMemPlot":{test_memplot:[301,3,1,""]},"evennia.server.profiling.timetrace":{timetrace:[302,5,1,""]},"evennia.server.server":{Evennia:[303,1,1,""]},"evennia.server.server.Evennia":{__init__:[303,3,1,""],at_post_portal_sync:[303,3,1,""],at_server_cold_start:[303,3,1,""],at_server_cold_stop:[303,3,1,""],at_server_reload_start:[303,3,1,""],at_server_reload_stop:[303,3,1,""],at_server_start:[303,3,1,""],at_server_stop:[303,3,1,""],get_info_dict:[303,3,1,""],run_init_hooks:[303,3,1,""],run_initial_setup:[303,3,1,""],shutdown:[303,3,1,""],sqlite3_prep:[303,3,1,""],update_defaults:[303,3,1,""]},"evennia.server.serversession":{ServerSession:[304,1,1,""]},"evennia.server.serversession.ServerSession":{__init__:[304,3,1,""],access:[304,3,1,""],at_cmdset_get:[304,3,1,""],at_disconnect:[304,3,1,""],at_login:[304,3,1,""],at_sync:[304,3,1,""],attributes:[304,4,1,""],cmdset_storage:[304,3,1,""],data_in:[304,3,1,""],data_out:[304,3,1,""],db:[304,3,1,""],execute_cmd:[304,3,1,""],get_account:[304,3,1,""],get_character:[304,3,1,""],get_client_size:[304,3,1,""],get_puppet:[304,3,1,""],get_puppet_or_account:[304,3,1,""],id:[304,3,1,""],log:[304,3,1,""],msg:[304,3,1,""],nattributes:[304,4,1,""],ndb:[304,3,1,""],ndb_del:[304,3,1,""],ndb_get:[304,3,1,""],ndb_set:[304,3,1,""],update_flags:[304,3,1,""],update_session_counters:[304,3,1,""]},"evennia.server.session":{Session:[305,1,1,""]},"evennia.server.session.Session":{at_sync:[305,3,1,""],data_in:[305,3,1,""],data_out:[305,3,1,""],disconnect:[305,3,1,""],get_sync_data:[305,3,1,""],init_session:[305,3,1,""],load_sync_data:[305,3,1,""]},"evennia.server.sessionhandler":{DummySession:[306,1,1,""],ServerSessionHandler:[306,1,1,""],SessionHandler:[306,1,1,""],delayed_import:[306,5,1,""]},"evennia.server.sessionhandler.DummySession":{sessid:[306,4,1,""]},"evennia.server.sessionhandler.ServerSessionHandler":{__init__:[306,3,1,""],account_count:[306,3,1,""],all_connected_accounts:[306,3,1,""],all_sessions_portal_sync:[306,3,1,""],announce_all:[306,3,1,""],call_inputfuncs:[306,3,1,""],data_in:[306,3,1,""],data_out:[306,3,1,""],disconnect:[306,3,1,""],disconnect_all_sessions:[306,3,1,""],disconnect_duplicate_sessions:[306,3,1,""],get_inputfuncs:[306,3,1,""],login:[306,3,1,""],portal_connect:[306,3,1,""],portal_disconnect:[306,3,1,""],portal_disconnect_all:[306,3,1,""],portal_reset_server:[306,3,1,""],portal_restart_server:[306,3,1,""],portal_session_sync:[306,3,1,""],portal_sessions_sync:[306,3,1,""],portal_shutdown:[306,3,1,""],session_from_account:[306,3,1,""],session_from_sessid:[306,3,1,""],session_portal_partial_sync:[306,3,1,""],session_portal_sync:[306,3,1,""],sessions_from_account:[306,3,1,""],sessions_from_character:[306,3,1,""],sessions_from_csessid:[306,3,1,""],sessions_from_puppet:[306,3,1,""],start_bot_session:[306,3,1,""],validate_sessions:[306,3,1,""]},"evennia.server.sessionhandler.SessionHandler":{clean_senddata:[306,3,1,""],get:[306,3,1,""],get_all_sync_data:[306,3,1,""],get_sessions:[306,3,1,""]},"evennia.server.throttle":{Throttle:[308,1,1,""]},"evennia.server.throttle.Throttle":{__init__:[308,3,1,""],check:[308,3,1,""],error_msg:[308,4,1,""],get:[308,3,1,""],update:[308,3,1,""]},"evennia.server.validators":{EvenniaPasswordValidator:[309,1,1,""],EvenniaUsernameAvailabilityValidator:[309,1,1,""]},"evennia.server.validators.EvenniaPasswordValidator":{__init__:[309,3,1,""],get_help_text:[309,3,1,""],validate:[309,3,1,""]},"evennia.server.webserver":{DjangoWebRoot:[310,1,1,""],EvenniaReverseProxyResource:[310,1,1,""],HTTPChannelWithXForwardedFor:[310,1,1,""],LockableThreadPool:[310,1,1,""],PrivateStaticRoot:[310,1,1,""],WSGIWebServer:[310,1,1,""],Website:[310,1,1,""]},"evennia.server.webserver.DjangoWebRoot":{__init__:[310,3,1,""],empty_threadpool:[310,3,1,""],getChild:[310,3,1,""]},"evennia.server.webserver.EvenniaReverseProxyResource":{getChild:[310,3,1,""],render:[310,3,1,""]},"evennia.server.webserver.HTTPChannelWithXForwardedFor":{allHeadersReceived:[310,3,1,""]},"evennia.server.webserver.LockableThreadPool":{__init__:[310,3,1,""],callInThread:[310,3,1,""],lock:[310,3,1,""]},"evennia.server.webserver.PrivateStaticRoot":{directoryListing:[310,3,1,""]},"evennia.server.webserver.WSGIWebServer":{__init__:[310,3,1,""],startService:[310,3,1,""],stopService:[310,3,1,""]},"evennia.server.webserver.Website":{log:[310,3,1,""],logPrefix:[310,3,1,""],noisy:[310,4,1,""]},"evennia.typeclasses":{admin:[313,0,0,"-"],attributes:[314,0,0,"-"],managers:[315,0,0,"-"],models:[316,0,0,"-"],tags:[317,0,0,"-"]},"evennia.typeclasses.admin":{AttributeForm:[313,1,1,""],AttributeFormSet:[313,1,1,""],AttributeInline:[313,1,1,""],TagAdmin:[313,1,1,""],TagForm:[313,1,1,""],TagFormSet:[313,1,1,""],TagInline:[313,1,1,""]},"evennia.typeclasses.admin.AttributeForm":{Meta:[313,1,1,""],__init__:[313,3,1,""],base_fields:[313,4,1,""],clean_attr_value:[313,3,1,""],declared_fields:[313,4,1,""],media:[313,3,1,""],save:[313,3,1,""]},"evennia.typeclasses.admin.AttributeForm.Meta":{fields:[313,4,1,""]},"evennia.typeclasses.admin.AttributeFormSet":{save:[313,3,1,""]},"evennia.typeclasses.admin.AttributeInline":{extra:[313,4,1,""],form:[313,4,1,""],formset:[313,4,1,""],get_formset:[313,3,1,""],media:[313,3,1,""],model:[313,4,1,""],related_field:[313,4,1,""]},"evennia.typeclasses.admin.TagAdmin":{fields:[313,4,1,""],list_display:[313,4,1,""],list_filter:[313,4,1,""],media:[313,3,1,""],search_fields:[313,4,1,""]},"evennia.typeclasses.admin.TagForm":{Meta:[313,1,1,""],__init__:[313,3,1,""],base_fields:[313,4,1,""],declared_fields:[313,4,1,""],media:[313,3,1,""],save:[313,3,1,""]},"evennia.typeclasses.admin.TagForm.Meta":{fields:[313,4,1,""]},"evennia.typeclasses.admin.TagFormSet":{save:[313,3,1,""]},"evennia.typeclasses.admin.TagInline":{extra:[313,4,1,""],form:[313,4,1,""],formset:[313,4,1,""],get_formset:[313,3,1,""],media:[313,3,1,""],model:[313,4,1,""],related_field:[313,4,1,""]},"evennia.typeclasses.attributes":{Attribute:[314,1,1,""],AttributeHandler:[314,1,1,""],DbHolder:[314,1,1,""],IAttribute:[314,1,1,""],IAttributeBackend:[314,1,1,""],InMemoryAttribute:[314,1,1,""],InMemoryAttributeBackend:[314,1,1,""],ModelAttributeBackend:[314,1,1,""],NickHandler:[314,1,1,""],NickTemplateInvalid:[314,2,1,""],initialize_nick_templates:[314,5,1,""],parse_nick_template:[314,5,1,""]},"evennia.typeclasses.attributes.Attribute":{DoesNotExist:[314,2,1,""],MultipleObjectsReturned:[314,2,1,""],accountdb_set:[314,4,1,""],attrtype:[314,3,1,""],category:[314,3,1,""],channeldb_set:[314,4,1,""],date_created:[314,3,1,""],db_attrtype:[314,4,1,""],db_category:[314,4,1,""],db_date_created:[314,4,1,""],db_key:[314,4,1,""],db_lock_storage:[314,4,1,""],db_model:[314,4,1,""],db_strvalue:[314,4,1,""],db_value:[314,4,1,""],get_next_by_db_date_created:[314,3,1,""],get_previous_by_db_date_created:[314,3,1,""],id:[314,4,1,""],key:[314,3,1,""],lock_storage:[314,3,1,""],model:[314,3,1,""],objectdb_set:[314,4,1,""],path:[314,4,1,""],scriptdb_set:[314,4,1,""],strvalue:[314,3,1,""],typename:[314,4,1,""],value:[314,3,1,""]},"evennia.typeclasses.attributes.AttributeHandler":{__init__:[314,3,1,""],add:[314,3,1,""],all:[314,3,1,""],batch_add:[314,3,1,""],clear:[314,3,1,""],get:[314,3,1,""],has:[314,3,1,""],remove:[314,3,1,""],reset_cache:[314,3,1,""]},"evennia.typeclasses.attributes.DbHolder":{__init__:[314,3,1,""],all:[314,3,1,""],get_all:[314,3,1,""]},"evennia.typeclasses.attributes.IAttribute":{access:[314,3,1,""],attrtype:[314,3,1,""],category:[314,3,1,""],date_created:[314,3,1,""],key:[314,3,1,""],lock_storage:[314,3,1,""],locks:[314,4,1,""],model:[314,3,1,""],strvalue:[314,3,1,""]},"evennia.typeclasses.attributes.IAttributeBackend":{__init__:[314,3,1,""],batch_add:[314,3,1,""],clear_attributes:[314,3,1,""],create_attribute:[314,3,1,""],delete_attribute:[314,3,1,""],do_batch_delete:[314,3,1,""],do_batch_finish:[314,3,1,""],do_batch_update_attribute:[314,3,1,""],do_create_attribute:[314,3,1,""],do_delete_attribute:[314,3,1,""],do_update_attribute:[314,3,1,""],get:[314,3,1,""],get_all_attributes:[314,3,1,""],query_all:[314,3,1,""],query_category:[314,3,1,""],query_key:[314,3,1,""],reset_cache:[314,3,1,""],update_attribute:[314,3,1,""]},"evennia.typeclasses.attributes.InMemoryAttribute":{__init__:[314,3,1,""],value:[314,3,1,""]},"evennia.typeclasses.attributes.InMemoryAttributeBackend":{__init__:[314,3,1,""],do_batch_finish:[314,3,1,""],do_batch_update_attribute:[314,3,1,""],do_create_attribute:[314,3,1,""],do_delete_attribute:[314,3,1,""],do_update_attribute:[314,3,1,""],query_all:[314,3,1,""],query_category:[314,3,1,""],query_key:[314,3,1,""]},"evennia.typeclasses.attributes.ModelAttributeBackend":{__init__:[314,3,1,""],do_batch_finish:[314,3,1,""],do_batch_update_attribute:[314,3,1,""],do_create_attribute:[314,3,1,""],do_delete_attribute:[314,3,1,""],do_update_attribute:[314,3,1,""],query_all:[314,3,1,""],query_category:[314,3,1,""],query_key:[314,3,1,""]},"evennia.typeclasses.attributes.NickHandler":{__init__:[314,3,1,""],add:[314,3,1,""],get:[314,3,1,""],has:[314,3,1,""],nickreplace:[314,3,1,""],remove:[314,3,1,""]},"evennia.typeclasses.managers":{TypedObjectManager:[315,1,1,""]},"evennia.typeclasses.managers.TypedObjectManager":{create_tag:[315,3,1,""],dbref:[315,3,1,""],dbref_search:[315,3,1,""],get_alias:[315,3,1,""],get_attribute:[315,3,1,""],get_by_alias:[315,3,1,""],get_by_attribute:[315,3,1,""],get_by_nick:[315,3,1,""],get_by_permission:[315,3,1,""],get_by_tag:[315,3,1,""],get_dbref_range:[315,3,1,""],get_id:[315,3,1,""],get_nick:[315,3,1,""],get_permission:[315,3,1,""],get_tag:[315,3,1,""],get_typeclass_totals:[315,3,1,""],object_totals:[315,3,1,""],typeclass_search:[315,3,1,""]},"evennia.typeclasses.models":{TypedObject:[316,1,1,""]},"evennia.typeclasses.models.TypedObject":{"delete":[316,3,1,""],Meta:[316,1,1,""],__init__:[316,3,1,""],access:[316,3,1,""],aliases:[316,4,1,""],at_idmapper_flush:[316,3,1,""],at_rename:[316,3,1,""],attributes:[316,4,1,""],check_permstring:[316,3,1,""],date_created:[316,3,1,""],db:[316,3,1,""],db_attributes:[316,4,1,""],db_date_created:[316,4,1,""],db_key:[316,4,1,""],db_lock_storage:[316,4,1,""],db_tags:[316,4,1,""],db_typeclass_path:[316,4,1,""],dbid:[316,3,1,""],dbref:[316,3,1,""],get_absolute_url:[316,3,1,""],get_display_name:[316,3,1,""],get_extra_info:[316,3,1,""],get_next_by_db_date_created:[316,3,1,""],get_previous_by_db_date_created:[316,3,1,""],is_typeclass:[316,3,1,""],key:[316,3,1,""],lock_storage:[316,3,1,""],locks:[316,4,1,""],name:[316,3,1,""],nattributes:[316,4,1,""],ndb:[316,3,1,""],objects:[316,4,1,""],path:[316,4,1,""],permissions:[316,4,1,""],set_class_from_typeclass:[316,3,1,""],swap_typeclass:[316,3,1,""],tags:[316,4,1,""],typeclass_path:[316,3,1,""],typename:[316,4,1,""],web_get_admin_url:[316,3,1,""],web_get_create_url:[316,3,1,""],web_get_delete_url:[316,3,1,""],web_get_detail_url:[316,3,1,""],web_get_puppet_url:[316,3,1,""],web_get_update_url:[316,3,1,""]},"evennia.typeclasses.models.TypedObject.Meta":{"abstract":[316,4,1,""],ordering:[316,4,1,""],verbose_name:[316,4,1,""]},"evennia.typeclasses.tags":{AliasHandler:[317,1,1,""],PermissionHandler:[317,1,1,""],Tag:[317,1,1,""],TagHandler:[317,1,1,""]},"evennia.typeclasses.tags.Tag":{DoesNotExist:[317,2,1,""],MultipleObjectsReturned:[317,2,1,""],accountdb_set:[317,4,1,""],channeldb_set:[317,4,1,""],db_category:[317,4,1,""],db_data:[317,4,1,""],db_key:[317,4,1,""],db_model:[317,4,1,""],db_tagtype:[317,4,1,""],helpentry_set:[317,4,1,""],id:[317,4,1,""],msg_set:[317,4,1,""],objectdb_set:[317,4,1,""],objects:[317,4,1,""],scriptdb_set:[317,4,1,""]},"evennia.typeclasses.tags.TagHandler":{__init__:[317,3,1,""],add:[317,3,1,""],all:[317,3,1,""],batch_add:[317,3,1,""],clear:[317,3,1,""],get:[317,3,1,""],remove:[317,3,1,""],reset_cache:[317,3,1,""]},"evennia.utils":{ansi:[319,0,0,"-"],batchprocessors:[320,0,0,"-"],containers:[321,0,0,"-"],create:[322,0,0,"-"],dbserialize:[323,0,0,"-"],eveditor:[324,0,0,"-"],evform:[325,0,0,"-"],evmenu:[326,0,0,"-"],evmore:[327,0,0,"-"],evtable:[328,0,0,"-"],gametime:[329,0,0,"-"],idmapper:[330,0,0,"-"],inlinefuncs:[334,0,0,"-"],logger:[335,0,0,"-"],optionclasses:[336,0,0,"-"],optionhandler:[337,0,0,"-"],picklefield:[338,0,0,"-"],search:[339,0,0,"-"],test_resources:[340,0,0,"-"],text2html:[341,0,0,"-"],utils:[342,0,0,"-"],validatorfuncs:[343,0,0,"-"]},"evennia.utils.ansi":{ANSIMeta:[319,1,1,""],ANSIParser:[319,1,1,""],ANSIString:[319,1,1,""],parse_ansi:[319,5,1,""],raw:[319,5,1,""],strip_ansi:[319,5,1,""],strip_raw_ansi:[319,5,1,""]},"evennia.utils.ansi.ANSIMeta":{__init__:[319,3,1,""]},"evennia.utils.ansi.ANSIParser":{ansi_escapes:[319,4,1,""],ansi_map:[319,4,1,""],ansi_map_dict:[319,4,1,""],ansi_re:[319,4,1,""],ansi_regex:[319,4,1,""],ansi_sub:[319,4,1,""],ansi_xterm256_bright_bg_map:[319,4,1,""],ansi_xterm256_bright_bg_map_dict:[319,4,1,""],brightbg_sub:[319,4,1,""],mxp_re:[319,4,1,""],mxp_sub:[319,4,1,""],parse_ansi:[319,3,1,""],strip_mxp:[319,3,1,""],strip_raw_codes:[319,3,1,""],sub_ansi:[319,3,1,""],sub_brightbg:[319,3,1,""],sub_xterm256:[319,3,1,""],xterm256_bg:[319,4,1,""],xterm256_bg_sub:[319,4,1,""],xterm256_fg:[319,4,1,""],xterm256_fg_sub:[319,4,1,""],xterm256_gbg:[319,4,1,""],xterm256_gbg_sub:[319,4,1,""],xterm256_gfg:[319,4,1,""],xterm256_gfg_sub:[319,4,1,""]},"evennia.utils.ansi.ANSIString":{__init__:[319,3,1,""],capitalize:[319,3,1,""],center:[319,3,1,""],clean:[319,3,1,""],count:[319,3,1,""],decode:[319,3,1,""],encode:[319,3,1,""],endswith:[319,3,1,""],expandtabs:[319,3,1,""],find:[319,3,1,""],format:[319,3,1,""],index:[319,3,1,""],isalnum:[319,3,1,""],isalpha:[319,3,1,""],isdigit:[319,3,1,""],islower:[319,3,1,""],isspace:[319,3,1,""],istitle:[319,3,1,""],isupper:[319,3,1,""],join:[319,3,1,""],ljust:[319,3,1,""],lower:[319,3,1,""],lstrip:[319,3,1,""],partition:[319,3,1,""],raw:[319,3,1,""],re_format:[319,4,1,""],replace:[319,3,1,""],rfind:[319,3,1,""],rindex:[319,3,1,""],rjust:[319,3,1,""],rsplit:[319,3,1,""],rstrip:[319,3,1,""],split:[319,3,1,""],startswith:[319,3,1,""],strip:[319,3,1,""],swapcase:[319,3,1,""],translate:[319,3,1,""],upper:[319,3,1,""]},"evennia.utils.batchprocessors":{BatchCodeProcessor:[320,1,1,""],BatchCommandProcessor:[320,1,1,""],read_batchfile:[320,5,1,""],tb_filename:[320,5,1,""],tb_iter:[320,5,1,""]},"evennia.utils.batchprocessors.BatchCodeProcessor":{code_exec:[320,3,1,""],parse_file:[320,3,1,""]},"evennia.utils.batchprocessors.BatchCommandProcessor":{parse_file:[320,3,1,""]},"evennia.utils.containers":{Container:[321,1,1,""],GlobalScriptContainer:[321,1,1,""],OptionContainer:[321,1,1,""]},"evennia.utils.containers.Container":{__init__:[321,3,1,""],all:[321,3,1,""],get:[321,3,1,""],load_data:[321,3,1,""],storage_modules:[321,4,1,""]},"evennia.utils.containers.GlobalScriptContainer":{__init__:[321,3,1,""],all:[321,3,1,""],get:[321,3,1,""],load_data:[321,3,1,""],start:[321,3,1,""]},"evennia.utils.containers.OptionContainer":{storage_modules:[321,4,1,""]},"evennia.utils.create":{create_account:[322,5,1,""],create_channel:[322,5,1,""],create_help_entry:[322,5,1,""],create_message:[322,5,1,""],create_object:[322,5,1,""],create_script:[322,5,1,""]},"evennia.utils.dbserialize":{dbserialize:[323,5,1,""],dbunserialize:[323,5,1,""],do_pickle:[323,5,1,""],do_unpickle:[323,5,1,""],from_pickle:[323,5,1,""],to_pickle:[323,5,1,""]},"evennia.utils.eveditor":{CmdEditorBase:[324,1,1,""],CmdEditorGroup:[324,1,1,""],CmdLineInput:[324,1,1,""],CmdSaveYesNo:[324,1,1,""],EvEditor:[324,1,1,""],EvEditorCmdSet:[324,1,1,""],SaveYesNoCmdSet:[324,1,1,""]},"evennia.utils.eveditor.CmdEditorBase":{aliases:[324,4,1,""],editor:[324,4,1,""],help_category:[324,4,1,""],help_entry:[324,4,1,""],key:[324,4,1,""],lock_storage:[324,4,1,""],locks:[324,4,1,""],parse:[324,3,1,""],search_index_entry:[324,4,1,""]},"evennia.utils.eveditor.CmdEditorGroup":{aliases:[324,4,1,""],arg_regex:[324,4,1,""],func:[324,3,1,""],help_category:[324,4,1,""],key:[324,4,1,""],lock_storage:[324,4,1,""],search_index_entry:[324,4,1,""]},"evennia.utils.eveditor.CmdLineInput":{aliases:[324,4,1,""],func:[324,3,1,""],help_category:[324,4,1,""],key:[324,4,1,""],lock_storage:[324,4,1,""],search_index_entry:[324,4,1,""]},"evennia.utils.eveditor.CmdSaveYesNo":{aliases:[324,4,1,""],func:[324,3,1,""],help_category:[324,4,1,""],help_cateogory:[324,4,1,""],key:[324,4,1,""],lock_storage:[324,4,1,""],locks:[324,4,1,""],search_index_entry:[324,4,1,""]},"evennia.utils.eveditor.EvEditor":{__init__:[324,3,1,""],decrease_indent:[324,3,1,""],deduce_indent:[324,3,1,""],display_buffer:[324,3,1,""],display_help:[324,3,1,""],get_buffer:[324,3,1,""],increase_indent:[324,3,1,""],load_buffer:[324,3,1,""],quit:[324,3,1,""],save_buffer:[324,3,1,""],swap_autoindent:[324,3,1,""],update_buffer:[324,3,1,""],update_undo:[324,3,1,""]},"evennia.utils.eveditor.EvEditorCmdSet":{at_cmdset_creation:[324,3,1,""],key:[324,4,1,""],mergetype:[324,4,1,""],path:[324,4,1,""]},"evennia.utils.eveditor.SaveYesNoCmdSet":{at_cmdset_creation:[324,3,1,""],key:[324,4,1,""],mergetype:[324,4,1,""],path:[324,4,1,""],priority:[324,4,1,""]},"evennia.utils.evform":{EvForm:[325,1,1,""]},"evennia.utils.evform.EvForm":{__init__:[325,3,1,""],map:[325,3,1,""],reload:[325,3,1,""]},"evennia.utils.evmenu":{CmdEvMenuNode:[326,1,1,""],CmdGetInput:[326,1,1,""],CmdTestMenu:[326,1,1,""],EvMenu:[326,1,1,""],EvMenuCmdSet:[326,1,1,""],EvMenuError:[326,2,1,""],InputCmdSet:[326,1,1,""],get_input:[326,5,1,""],list_node:[326,5,1,""],test_displayinput_node:[326,5,1,""],test_dynamic_node:[326,5,1,""],test_end_node:[326,5,1,""],test_look_node:[326,5,1,""],test_set_node:[326,5,1,""],test_start_node:[326,5,1,""],test_view_node:[326,5,1,""]},"evennia.utils.evmenu.CmdEvMenuNode":{aliases:[326,4,1,""],func:[326,3,1,""],help_category:[326,4,1,""],key:[326,4,1,""],lock_storage:[326,4,1,""],locks:[326,4,1,""],search_index_entry:[326,4,1,""]},"evennia.utils.evmenu.CmdGetInput":{aliases:[326,4,1,""],func:[326,3,1,""],help_category:[326,4,1,""],key:[326,4,1,""],lock_storage:[326,4,1,""],search_index_entry:[326,4,1,""]},"evennia.utils.evmenu.CmdTestMenu":{aliases:[326,4,1,""],func:[326,3,1,""],help_category:[326,4,1,""],key:[326,4,1,""],lock_storage:[326,4,1,""],search_index_entry:[326,4,1,""]},"evennia.utils.evmenu.EvMenu":{"goto":[326,3,1,""],__init__:[326,3,1,""],close_menu:[326,3,1,""],display_helptext:[326,3,1,""],display_nodetext:[326,3,1,""],extract_goto_exec:[326,3,1,""],helptext_formatter:[326,3,1,""],node_border_char:[326,4,1,""],node_formatter:[326,3,1,""],nodetext_formatter:[326,3,1,""],options_formatter:[326,3,1,""],parse_input:[326,3,1,""],print_debug_info:[326,3,1,""],run_exec:[326,3,1,""],run_exec_then_goto:[326,3,1,""]},"evennia.utils.evmenu.EvMenuCmdSet":{at_cmdset_creation:[326,3,1,""],key:[326,4,1,""],mergetype:[326,4,1,""],no_channels:[326,4,1,""],no_exits:[326,4,1,""],no_objs:[326,4,1,""],path:[326,4,1,""],priority:[326,4,1,""]},"evennia.utils.evmenu.InputCmdSet":{at_cmdset_creation:[326,3,1,""],key:[326,4,1,""],mergetype:[326,4,1,""],no_channels:[326,4,1,""],no_exits:[326,4,1,""],no_objs:[326,4,1,""],path:[326,4,1,""],priority:[326,4,1,""]},"evennia.utils.evmore":{CmdMore:[327,1,1,""],CmdMoreLook:[327,1,1,""],CmdSetMore:[327,1,1,""],EvMore:[327,1,1,""],msg:[327,5,1,""],queryset_maxsize:[327,5,1,""]},"evennia.utils.evmore.CmdMore":{aliases:[327,4,1,""],auto_help:[327,4,1,""],func:[327,3,1,""],help_category:[327,4,1,""],key:[327,4,1,""],lock_storage:[327,4,1,""],search_index_entry:[327,4,1,""]},"evennia.utils.evmore.CmdMoreLook":{aliases:[327,4,1,""],auto_help:[327,4,1,""],func:[327,3,1,""],help_category:[327,4,1,""],key:[327,4,1,""],lock_storage:[327,4,1,""],search_index_entry:[327,4,1,""]},"evennia.utils.evmore.CmdSetMore":{at_cmdset_creation:[327,3,1,""],key:[327,4,1,""],path:[327,4,1,""],priority:[327,4,1,""]},"evennia.utils.evmore.EvMore":{__init__:[327,3,1,""],display:[327,3,1,""],format_page:[327,3,1,""],init_evtable:[327,3,1,""],init_f_str:[327,3,1,""],init_iterable:[327,3,1,""],init_queryset:[327,3,1,""],init_str:[327,3,1,""],page_back:[327,3,1,""],page_end:[327,3,1,""],page_next:[327,3,1,""],page_quit:[327,3,1,""],page_top:[327,3,1,""],paginator_index:[327,3,1,""],paginator_slice:[327,3,1,""],start:[327,3,1,""]},"evennia.utils.evtable":{ANSITextWrapper:[328,1,1,""],EvCell:[328,1,1,""],EvColumn:[328,1,1,""],EvTable:[328,1,1,""],fill:[328,5,1,""],wrap:[328,5,1,""]},"evennia.utils.evtable.EvCell":{__init__:[328,3,1,""],get:[328,3,1,""],get_height:[328,3,1,""],get_min_height:[328,3,1,""],get_min_width:[328,3,1,""],get_width:[328,3,1,""],reformat:[328,3,1,""],replace_data:[328,3,1,""]},"evennia.utils.evtable.EvColumn":{__init__:[328,3,1,""],add_rows:[328,3,1,""],reformat:[328,3,1,""],reformat_cell:[328,3,1,""]},"evennia.utils.evtable.EvTable":{__init__:[328,3,1,""],add_column:[328,3,1,""],add_header:[328,3,1,""],add_row:[328,3,1,""],get:[328,3,1,""],reformat:[328,3,1,""],reformat_column:[328,3,1,""]},"evennia.utils.gametime":{TimeScript:[329,1,1,""],game_epoch:[329,5,1,""],gametime:[329,5,1,""],portal_uptime:[329,5,1,""],real_seconds_until:[329,5,1,""],reset_gametime:[329,5,1,""],runtime:[329,5,1,""],schedule:[329,5,1,""],server_epoch:[329,5,1,""],uptime:[329,5,1,""]},"evennia.utils.gametime.TimeScript":{DoesNotExist:[329,2,1,""],MultipleObjectsReturned:[329,2,1,""],at_repeat:[329,3,1,""],at_script_creation:[329,3,1,""],path:[329,4,1,""],typename:[329,4,1,""]},"evennia.utils.idmapper":{manager:[331,0,0,"-"],models:[332,0,0,"-"],tests:[333,0,0,"-"]},"evennia.utils.idmapper.manager":{SharedMemoryManager:[331,1,1,""]},"evennia.utils.idmapper.manager.SharedMemoryManager":{get:[331,3,1,""]},"evennia.utils.idmapper.models":{SharedMemoryModel:[332,1,1,""],SharedMemoryModelBase:[332,1,1,""],WeakSharedMemoryModel:[332,1,1,""],WeakSharedMemoryModelBase:[332,1,1,""],cache_size:[332,5,1,""],conditional_flush:[332,5,1,""],flush_cache:[332,5,1,""],flush_cached_instance:[332,5,1,""],update_cached_instance:[332,5,1,""]},"evennia.utils.idmapper.models.SharedMemoryModel":{"delete":[332,3,1,""],Meta:[332,1,1,""],at_idmapper_flush:[332,3,1,""],cache_instance:[332,3,1,""],flush_cached_instance:[332,3,1,""],flush_from_cache:[332,3,1,""],flush_instance_cache:[332,3,1,""],get_all_cached_instances:[332,3,1,""],get_cached_instance:[332,3,1,""],objects:[332,4,1,""],path:[332,4,1,""],save:[332,3,1,""],typename:[332,4,1,""]},"evennia.utils.idmapper.models.SharedMemoryModel.Meta":{"abstract":[332,4,1,""]},"evennia.utils.idmapper.models.WeakSharedMemoryModel":{Meta:[332,1,1,""],path:[332,4,1,""],typename:[332,4,1,""]},"evennia.utils.idmapper.models.WeakSharedMemoryModel.Meta":{"abstract":[332,4,1,""]},"evennia.utils.idmapper.tests":{Article:[333,1,1,""],Category:[333,1,1,""],RegularArticle:[333,1,1,""],RegularCategory:[333,1,1,""],SharedMemorysTest:[333,1,1,""]},"evennia.utils.idmapper.tests.Article":{DoesNotExist:[333,2,1,""],MultipleObjectsReturned:[333,2,1,""],category2:[333,4,1,""],category2_id:[333,4,1,""],category:[333,4,1,""],category_id:[333,4,1,""],id:[333,4,1,""],name:[333,4,1,""],path:[333,4,1,""],typename:[333,4,1,""]},"evennia.utils.idmapper.tests.Category":{DoesNotExist:[333,2,1,""],MultipleObjectsReturned:[333,2,1,""],article_set:[333,4,1,""],id:[333,4,1,""],name:[333,4,1,""],path:[333,4,1,""],regulararticle_set:[333,4,1,""],typename:[333,4,1,""]},"evennia.utils.idmapper.tests.RegularArticle":{DoesNotExist:[333,2,1,""],MultipleObjectsReturned:[333,2,1,""],category2:[333,4,1,""],category2_id:[333,4,1,""],category:[333,4,1,""],category_id:[333,4,1,""],id:[333,4,1,""],name:[333,4,1,""],objects:[333,4,1,""]},"evennia.utils.idmapper.tests.RegularCategory":{DoesNotExist:[333,2,1,""],MultipleObjectsReturned:[333,2,1,""],article_set:[333,4,1,""],id:[333,4,1,""],name:[333,4,1,""],objects:[333,4,1,""],regulararticle_set:[333,4,1,""]},"evennia.utils.idmapper.tests.SharedMemorysTest":{setUp:[333,3,1,""],testMixedReferences:[333,3,1,""],testObjectDeletion:[333,3,1,""],testRegularReferences:[333,3,1,""],testSharedMemoryReferences:[333,3,1,""]},"evennia.utils.inlinefuncs":{"null":[334,5,1,""],InlinefuncError:[334,2,1,""],NickTemplateInvalid:[334,2,1,""],ParseStack:[334,1,1,""],clr:[334,5,1,""],crop:[334,5,1,""],initialize_nick_templates:[334,5,1,""],nomatch:[334,5,1,""],pad:[334,5,1,""],parse_inlinefunc:[334,5,1,""],parse_nick_template:[334,5,1,""],random:[334,5,1,""],raw:[334,5,1,""],space:[334,5,1,""]},"evennia.utils.inlinefuncs.ParseStack":{__init__:[334,3,1,""],append:[334,3,1,""]},"evennia.utils.logger":{EvenniaLogFile:[335,1,1,""],PortalLogObserver:[335,1,1,""],ServerLogObserver:[335,1,1,""],WeeklyLogFile:[335,1,1,""],log_dep:[335,5,1,""],log_depmsg:[335,5,1,""],log_err:[335,5,1,""],log_errmsg:[335,5,1,""],log_file:[335,5,1,""],log_info:[335,5,1,""],log_infomsg:[335,5,1,""],log_msg:[335,5,1,""],log_sec:[335,5,1,""],log_secmsg:[335,5,1,""],log_server:[335,5,1,""],log_trace:[335,5,1,""],log_tracemsg:[335,5,1,""],log_warn:[335,5,1,""],log_warnmsg:[335,5,1,""],tail_log_file:[335,5,1,""],timeformat:[335,5,1,""]},"evennia.utils.logger.EvenniaLogFile":{num_lines_to_append:[335,4,1,""],readlines:[335,3,1,""],rotate:[335,3,1,""],seek:[335,3,1,""],settings:[335,4,1,""]},"evennia.utils.logger.PortalLogObserver":{emit:[335,3,1,""],prefix:[335,4,1,""],timeFormat:[335,4,1,""]},"evennia.utils.logger.ServerLogObserver":{prefix:[335,4,1,""]},"evennia.utils.logger.WeeklyLogFile":{__init__:[335,3,1,""],shouldRotate:[335,3,1,""],suffix:[335,3,1,""],write:[335,3,1,""]},"evennia.utils.optionclasses":{BaseOption:[336,1,1,""],Boolean:[336,1,1,""],Color:[336,1,1,""],Datetime:[336,1,1,""],Duration:[336,1,1,""],Email:[336,1,1,""],Future:[336,1,1,""],Lock:[336,1,1,""],PositiveInteger:[336,1,1,""],SignedInteger:[336,1,1,""],Text:[336,1,1,""],Timezone:[336,1,1,""],UnsignedInteger:[336,1,1,""]},"evennia.utils.optionclasses.BaseOption":{"default":[336,3,1,""],__init__:[336,3,1,""],changed:[336,3,1,""],deserialize:[336,3,1,""],display:[336,3,1,""],load:[336,3,1,""],save:[336,3,1,""],serialize:[336,3,1,""],set:[336,3,1,""],validate:[336,3,1,""],value:[336,3,1,""]},"evennia.utils.optionclasses.Boolean":{deserialize:[336,3,1,""],display:[336,3,1,""],serialize:[336,3,1,""],validate:[336,3,1,""]},"evennia.utils.optionclasses.Color":{deserialize:[336,3,1,""],display:[336,3,1,""],validate:[336,3,1,""]},"evennia.utils.optionclasses.Datetime":{deserialize:[336,3,1,""],serialize:[336,3,1,""],validate:[336,3,1,""]},"evennia.utils.optionclasses.Duration":{deserialize:[336,3,1,""],serialize:[336,3,1,""],validate:[336,3,1,""]},"evennia.utils.optionclasses.Email":{deserialize:[336,3,1,""],validate:[336,3,1,""]},"evennia.utils.optionclasses.Future":{validate:[336,3,1,""]},"evennia.utils.optionclasses.Lock":{validate:[336,3,1,""]},"evennia.utils.optionclasses.PositiveInteger":{deserialize:[336,3,1,""],validate:[336,3,1,""]},"evennia.utils.optionclasses.SignedInteger":{deserialize:[336,3,1,""],validate:[336,3,1,""]},"evennia.utils.optionclasses.Text":{deserialize:[336,3,1,""]},"evennia.utils.optionclasses.Timezone":{"default":[336,3,1,""],deserialize:[336,3,1,""],serialize:[336,3,1,""],validate:[336,3,1,""]},"evennia.utils.optionclasses.UnsignedInteger":{deserialize:[336,3,1,""],validate:[336,3,1,""],validator_key:[336,4,1,""]},"evennia.utils.optionhandler":{InMemorySaveHandler:[337,1,1,""],OptionHandler:[337,1,1,""]},"evennia.utils.optionhandler.InMemorySaveHandler":{__init__:[337,3,1,""],add:[337,3,1,""],get:[337,3,1,""]},"evennia.utils.optionhandler.OptionHandler":{__init__:[337,3,1,""],all:[337,3,1,""],get:[337,3,1,""],set:[337,3,1,""]},"evennia.utils.picklefield":{PickledFormField:[338,1,1,""],PickledObject:[338,1,1,""],PickledObjectField:[338,1,1,""],PickledWidget:[338,1,1,""],dbsafe_decode:[338,5,1,""],dbsafe_encode:[338,5,1,""],wrap_conflictual_object:[338,5,1,""]},"evennia.utils.picklefield.PickledFormField":{__init__:[338,3,1,""],clean:[338,3,1,""],default_error_messages:[338,4,1,""],widget:[338,4,1,""]},"evennia.utils.picklefield.PickledObjectField":{__init__:[338,3,1,""],formfield:[338,3,1,""],from_db_value:[338,3,1,""],get_db_prep_lookup:[338,3,1,""],get_db_prep_value:[338,3,1,""],get_default:[338,3,1,""],get_internal_type:[338,3,1,""],pre_save:[338,3,1,""],value_to_string:[338,3,1,""]},"evennia.utils.picklefield.PickledWidget":{media:[338,3,1,""],render:[338,3,1,""],value_from_datadict:[338,3,1,""]},"evennia.utils.search":{search_account:[339,5,1,""],search_account_tag:[339,5,1,""],search_channel:[339,5,1,""],search_channel_tag:[339,5,1,""],search_help_entry:[339,5,1,""],search_message:[339,5,1,""],search_object:[339,5,1,""],search_script:[339,5,1,""],search_script_tag:[339,5,1,""],search_tag:[339,5,1,""]},"evennia.utils.test_resources":{EvenniaTest:[340,1,1,""],LocalEvenniaTest:[340,1,1,""],mockdeferLater:[340,5,1,""],mockdelay:[340,5,1,""],unload_module:[340,5,1,""]},"evennia.utils.test_resources.EvenniaTest":{account_typeclass:[340,4,1,""],character_typeclass:[340,4,1,""],exit_typeclass:[340,4,1,""],object_typeclass:[340,4,1,""],room_typeclass:[340,4,1,""],script_typeclass:[340,4,1,""],setUp:[340,3,1,""],tearDown:[340,3,1,""]},"evennia.utils.test_resources.LocalEvenniaTest":{account_typeclass:[340,4,1,""],character_typeclass:[340,4,1,""],exit_typeclass:[340,4,1,""],object_typeclass:[340,4,1,""],room_typeclass:[340,4,1,""],script_typeclass:[340,4,1,""]},"evennia.utils.text2html":{TextToHTMLparser:[341,1,1,""],parse_html:[341,5,1,""]},"evennia.utils.text2html.TextToHTMLparser":{bg_colormap:[341,4,1,""],bgfgstart:[341,4,1,""],bgfgstop:[341,4,1,""],bgstart:[341,4,1,""],bgstop:[341,4,1,""],blink:[341,4,1,""],colorback:[341,4,1,""],colorcodes:[341,4,1,""],convert_linebreaks:[341,3,1,""],convert_urls:[341,3,1,""],fg_colormap:[341,4,1,""],fgstart:[341,4,1,""],fgstop:[341,4,1,""],hilite:[341,4,1,""],inverse:[341,4,1,""],normal:[341,4,1,""],parse:[341,3,1,""],re_bgfg:[341,4,1,""],re_bgs:[341,4,1,""],re_blink:[341,4,1,""],re_blinking:[341,3,1,""],re_bold:[341,3,1,""],re_color:[341,3,1,""],re_dblspace:[341,4,1,""],re_double_space:[341,3,1,""],re_fgs:[341,4,1,""],re_hilite:[341,4,1,""],re_inverse:[341,4,1,""],re_inversing:[341,3,1,""],re_mxplink:[341,4,1,""],re_normal:[341,4,1,""],re_string:[341,4,1,""],re_uline:[341,4,1,""],re_underline:[341,3,1,""],re_unhilite:[341,4,1,""],re_url:[341,4,1,""],remove_backspaces:[341,3,1,""],remove_bells:[341,3,1,""],sub_dblspace:[341,3,1,""],sub_mxp_links:[341,3,1,""],sub_text:[341,3,1,""],tabstop:[341,4,1,""],underline:[341,4,1,""],unhilite:[341,4,1,""]},"evennia.utils.utils":{LimitedSizeOrderedDict:[342,1,1,""],all_from_module:[342,5,1,""],at_search_result:[342,5,1,""],callables_from_module:[342,5,1,""],calledby:[342,5,1,""],check_evennia_dependencies:[342,5,1,""],class_from_module:[342,5,1,""],columnize:[342,5,1,""],crop:[342,5,1,""],datetime_format:[342,5,1,""],dbid_to_obj:[342,5,1,""],dbref:[342,5,1,""],dbref_to_obj:[342,5,1,""],dedent:[342,5,1,""],deepsize:[342,5,1,""],delay:[342,5,1,""],display_len:[342,5,1,""],fill:[342,5,1,""],format_grid:[342,5,1,""],format_table:[342,5,1,""],fuzzy_import_from_module:[342,5,1,""],get_all_typeclasses:[342,5,1,""],get_evennia_pids:[342,5,1,""],get_evennia_version:[342,5,1,""],get_game_dir_path:[342,5,1,""],has_parent:[342,5,1,""],host_os_is:[342,5,1,""],inherits_from:[342,5,1,""],init_new_account:[342,5,1,""],interactive:[342,5,1,""],is_iter:[342,5,1,""],iter_to_string:[342,5,1,""],justify:[342,5,1,""],latinify:[342,5,1,""],lazy_property:[342,1,1,""],list_to_string:[342,5,1,""],m_len:[342,5,1,""],make_iter:[342,5,1,""],mod_import:[342,5,1,""],mod_import_from_path:[342,5,1,""],object_from_module:[342,5,1,""],pad:[342,5,1,""],percent:[342,5,1,""],percentile:[342,5,1,""],pypath_to_realpath:[342,5,1,""],random_string_from_module:[342,5,1,""],run_async:[342,5,1,""],server_services:[342,5,1,""],string_from_module:[342,5,1,""],string_partial_matching:[342,5,1,""],string_similarity:[342,5,1,""],string_suggestions:[342,5,1,""],strip_control_sequences:[342,5,1,""],time_format:[342,5,1,""],to_bytes:[342,5,1,""],to_str:[342,5,1,""],uses_database:[342,5,1,""],validate_email_address:[342,5,1,""],variable_from_module:[342,5,1,""],wildcard_to_regexp:[342,5,1,""],wrap:[342,5,1,""]},"evennia.utils.utils.LimitedSizeOrderedDict":{__init__:[342,3,1,""],update:[342,3,1,""]},"evennia.utils.utils.lazy_property":{__init__:[342,3,1,""]},"evennia.utils.validatorfuncs":{"boolean":[343,5,1,""],color:[343,5,1,""],datetime:[343,5,1,""],duration:[343,5,1,""],email:[343,5,1,""],future:[343,5,1,""],lock:[343,5,1,""],positive_integer:[343,5,1,""],signed_integer:[343,5,1,""],text:[343,5,1,""],timezone:[343,5,1,""],unsigned_integer:[343,5,1,""]},"evennia.web":{urls:[345,0,0,"-"],utils:[346,0,0,"-"],webclient:[351,0,0,"-"],website:[354,0,0,"-"]},"evennia.web.utils":{backends:[347,0,0,"-"],general_context:[348,0,0,"-"],middleware:[349,0,0,"-"],tests:[350,0,0,"-"]},"evennia.web.utils.backends":{CaseInsensitiveModelBackend:[347,1,1,""]},"evennia.web.utils.backends.CaseInsensitiveModelBackend":{authenticate:[347,3,1,""]},"evennia.web.utils.general_context":{general_context:[348,5,1,""],set_game_name_and_slogan:[348,5,1,""],set_webclient_settings:[348,5,1,""]},"evennia.web.utils.middleware":{SharedLoginMiddleware:[349,1,1,""]},"evennia.web.utils.middleware.SharedLoginMiddleware":{__init__:[349,3,1,""],make_shared_login:[349,3,1,""]},"evennia.web.utils.tests":{TestGeneralContext:[350,1,1,""]},"evennia.web.utils.tests.TestGeneralContext":{maxDiff:[350,4,1,""],test_general_context:[350,3,1,""],test_set_game_name_and_slogan:[350,3,1,""],test_set_webclient_settings:[350,3,1,""]},"evennia.web.webclient":{urls:[352,0,0,"-"],views:[353,0,0,"-"]},"evennia.web.webclient.views":{webclient:[353,5,1,""]},"evennia.web.website":{forms:[355,0,0,"-"],templatetags:[356,0,0,"-"],tests:[358,0,0,"-"],urls:[359,0,0,"-"],views:[360,0,0,"-"]},"evennia.web.website.forms":{AccountForm:[355,1,1,""],CharacterForm:[355,1,1,""],CharacterUpdateForm:[355,1,1,""],EvenniaForm:[355,1,1,""],ObjectForm:[355,1,1,""]},"evennia.web.website.forms.AccountForm":{Meta:[355,1,1,""],base_fields:[355,4,1,""],declared_fields:[355,4,1,""],media:[355,3,1,""]},"evennia.web.website.forms.AccountForm.Meta":{field_classes:[355,4,1,""],fields:[355,4,1,""],model:[355,4,1,""]},"evennia.web.website.forms.CharacterForm":{Meta:[355,1,1,""],base_fields:[355,4,1,""],declared_fields:[355,4,1,""],media:[355,3,1,""]},"evennia.web.website.forms.CharacterForm.Meta":{fields:[355,4,1,""],labels:[355,4,1,""],model:[355,4,1,""]},"evennia.web.website.forms.CharacterUpdateForm":{base_fields:[355,4,1,""],declared_fields:[355,4,1,""],media:[355,3,1,""]},"evennia.web.website.forms.EvenniaForm":{base_fields:[355,4,1,""],clean:[355,3,1,""],declared_fields:[355,4,1,""],media:[355,3,1,""]},"evennia.web.website.forms.ObjectForm":{Meta:[355,1,1,""],base_fields:[355,4,1,""],declared_fields:[355,4,1,""],media:[355,3,1,""]},"evennia.web.website.forms.ObjectForm.Meta":{fields:[355,4,1,""],labels:[355,4,1,""],model:[355,4,1,""]},"evennia.web.website.templatetags":{addclass:[357,0,0,"-"]},"evennia.web.website.templatetags.addclass":{addclass:[357,5,1,""]},"evennia.web.website.tests":{AdminTest:[358,1,1,""],ChannelDetailTest:[358,1,1,""],ChannelListTest:[358,1,1,""],CharacterCreateView:[358,1,1,""],CharacterDeleteView:[358,1,1,""],CharacterListView:[358,1,1,""],CharacterManageView:[358,1,1,""],CharacterPuppetView:[358,1,1,""],CharacterUpdateView:[358,1,1,""],EvenniaWebTest:[358,1,1,""],IndexTest:[358,1,1,""],LoginTest:[358,1,1,""],LogoutTest:[358,1,1,""],PasswordResetTest:[358,1,1,""],RegisterTest:[358,1,1,""],WebclientTest:[358,1,1,""]},"evennia.web.website.tests.AdminTest":{unauthenticated_response:[358,4,1,""],url_name:[358,4,1,""]},"evennia.web.website.tests.ChannelDetailTest":{get_kwargs:[358,3,1,""],setUp:[358,3,1,""],url_name:[358,4,1,""]},"evennia.web.website.tests.ChannelListTest":{url_name:[358,4,1,""]},"evennia.web.website.tests.CharacterCreateView":{test_valid_access_multisession_0:[358,3,1,""],test_valid_access_multisession_2:[358,3,1,""],unauthenticated_response:[358,4,1,""],url_name:[358,4,1,""]},"evennia.web.website.tests.CharacterDeleteView":{get_kwargs:[358,3,1,""],test_invalid_access:[358,3,1,""],test_valid_access:[358,3,1,""],unauthenticated_response:[358,4,1,""],url_name:[358,4,1,""]},"evennia.web.website.tests.CharacterListView":{unauthenticated_response:[358,4,1,""],url_name:[358,4,1,""]},"evennia.web.website.tests.CharacterManageView":{unauthenticated_response:[358,4,1,""],url_name:[358,4,1,""]},"evennia.web.website.tests.CharacterPuppetView":{get_kwargs:[358,3,1,""],test_invalid_access:[358,3,1,""],unauthenticated_response:[358,4,1,""],url_name:[358,4,1,""]},"evennia.web.website.tests.CharacterUpdateView":{get_kwargs:[358,3,1,""],test_invalid_access:[358,3,1,""],test_valid_access:[358,3,1,""],unauthenticated_response:[358,4,1,""],url_name:[358,4,1,""]},"evennia.web.website.tests.EvenniaWebTest":{account_typeclass:[358,4,1,""],authenticated_response:[358,4,1,""],channel_typeclass:[358,4,1,""],character_typeclass:[358,4,1,""],exit_typeclass:[358,4,1,""],get_kwargs:[358,3,1,""],login:[358,3,1,""],object_typeclass:[358,4,1,""],room_typeclass:[358,4,1,""],script_typeclass:[358,4,1,""],setUp:[358,3,1,""],test_get:[358,3,1,""],test_get_authenticated:[358,3,1,""],test_valid_chars:[358,3,1,""],unauthenticated_response:[358,4,1,""],url_name:[358,4,1,""]},"evennia.web.website.tests.IndexTest":{url_name:[358,4,1,""]},"evennia.web.website.tests.LoginTest":{url_name:[358,4,1,""]},"evennia.web.website.tests.LogoutTest":{url_name:[358,4,1,""]},"evennia.web.website.tests.PasswordResetTest":{unauthenticated_response:[358,4,1,""],url_name:[358,4,1,""]},"evennia.web.website.tests.RegisterTest":{url_name:[358,4,1,""]},"evennia.web.website.tests.WebclientTest":{test_get:[358,3,1,""],test_get_disabled:[358,3,1,""],url_name:[358,4,1,""]},"evennia.web.website.views":{AccountCreateView:[360,1,1,""],AccountMixin:[360,1,1,""],ChannelDetailView:[360,1,1,""],ChannelListView:[360,1,1,""],ChannelMixin:[360,1,1,""],CharacterCreateView:[360,1,1,""],CharacterDeleteView:[360,1,1,""],CharacterDetailView:[360,1,1,""],CharacterListView:[360,1,1,""],CharacterManageView:[360,1,1,""],CharacterMixin:[360,1,1,""],CharacterPuppetView:[360,1,1,""],CharacterUpdateView:[360,1,1,""],EvenniaCreateView:[360,1,1,""],EvenniaDeleteView:[360,1,1,""],EvenniaDetailView:[360,1,1,""],EvenniaIndexView:[360,1,1,""],EvenniaUpdateView:[360,1,1,""],HelpDetailView:[360,1,1,""],HelpListView:[360,1,1,""],HelpMixin:[360,1,1,""],ObjectCreateView:[360,1,1,""],ObjectDeleteView:[360,1,1,""],ObjectDetailView:[360,1,1,""],ObjectUpdateView:[360,1,1,""],TypeclassMixin:[360,1,1,""],admin_wrapper:[360,5,1,""],evennia_admin:[360,5,1,""],to_be_implemented:[360,5,1,""]},"evennia.web.website.views.AccountCreateView":{form_valid:[360,3,1,""],success_url:[360,4,1,""],template_name:[360,4,1,""]},"evennia.web.website.views.AccountMixin":{form_class:[360,4,1,""],model:[360,4,1,""]},"evennia.web.website.views.ChannelDetailView":{attributes:[360,4,1,""],get_context_data:[360,3,1,""],get_object:[360,3,1,""],max_num_lines:[360,4,1,""],template_name:[360,4,1,""]},"evennia.web.website.views.ChannelListView":{get_context_data:[360,3,1,""],max_popular:[360,4,1,""],page_title:[360,4,1,""],paginate_by:[360,4,1,""],template_name:[360,4,1,""]},"evennia.web.website.views.ChannelMixin":{access_type:[360,4,1,""],get_queryset:[360,3,1,""],model:[360,4,1,""],page_title:[360,4,1,""]},"evennia.web.website.views.CharacterCreateView":{form_valid:[360,3,1,""],template_name:[360,4,1,""]},"evennia.web.website.views.CharacterDetailView":{access_type:[360,4,1,""],attributes:[360,4,1,""],get_queryset:[360,3,1,""],template_name:[360,4,1,""]},"evennia.web.website.views.CharacterListView":{access_type:[360,4,1,""],get_queryset:[360,3,1,""],page_title:[360,4,1,""],paginate_by:[360,4,1,""],template_name:[360,4,1,""]},"evennia.web.website.views.CharacterManageView":{page_title:[360,4,1,""],paginate_by:[360,4,1,""],template_name:[360,4,1,""]},"evennia.web.website.views.CharacterMixin":{form_class:[360,4,1,""],get_queryset:[360,3,1,""],model:[360,4,1,""],success_url:[360,4,1,""]},"evennia.web.website.views.CharacterPuppetView":{get_redirect_url:[360,3,1,""]},"evennia.web.website.views.CharacterUpdateView":{form_class:[360,4,1,""],template_name:[360,4,1,""]},"evennia.web.website.views.EvenniaCreateView":{page_title:[360,3,1,""]},"evennia.web.website.views.EvenniaDeleteView":{page_title:[360,3,1,""]},"evennia.web.website.views.EvenniaDetailView":{page_title:[360,3,1,""]},"evennia.web.website.views.EvenniaIndexView":{get_context_data:[360,3,1,""],template_name:[360,4,1,""]},"evennia.web.website.views.EvenniaUpdateView":{page_title:[360,3,1,""]},"evennia.web.website.views.HelpDetailView":{get_context_data:[360,3,1,""],get_object:[360,3,1,""],template_name:[360,4,1,""]},"evennia.web.website.views.HelpListView":{page_title:[360,4,1,""],paginate_by:[360,4,1,""],template_name:[360,4,1,""]},"evennia.web.website.views.HelpMixin":{get_queryset:[360,3,1,""],model:[360,4,1,""],page_title:[360,4,1,""]},"evennia.web.website.views.ObjectCreateView":{model:[360,4,1,""]},"evennia.web.website.views.ObjectDeleteView":{"delete":[360,3,1,""],access_type:[360,4,1,""],model:[360,4,1,""],template_name:[360,4,1,""]},"evennia.web.website.views.ObjectDetailView":{access_type:[360,4,1,""],attributes:[360,4,1,""],get_context_data:[360,3,1,""],get_object:[360,3,1,""],model:[360,4,1,""],template_name:[360,4,1,""]},"evennia.web.website.views.ObjectUpdateView":{access_type:[360,4,1,""],form_valid:[360,3,1,""],get_initial:[360,3,1,""],get_success_url:[360,3,1,""],model:[360,4,1,""]},"evennia.web.website.views.TypeclassMixin":{typeclass:[360,3,1,""]},evennia:{accounts:[142,0,0,"-"],commands:[148,0,0,"-"],comms:[171,0,0,"-"],contrib:[177,0,0,"-"],help:[234,0,0,"-"],locks:[238,0,0,"-"],objects:[241,0,0,"-"],prototypes:[246,0,0,"-"],scripts:[251,0,0,"-"],server:[260,0,0,"-"],set_trace:[140,5,1,""],settings_default:[311,0,0,"-"],typeclasses:[312,0,0,"-"],utils:[318,0,0,"-"],web:[344,0,0,"-"]}},objnames:{"0":["py","module","Python module"],"1":["py","class","Python class"],"2":["py","exception","Python exception"],"3":["py","method","Python method"],"4":["py","attribute","Python attribute"],"5":["py","function","Python function"],"6":["py","data","Python data"]},objtypes:{"0":"py:module","1":"py:class","2":"py:exception","3":"py:method","4":"py:attribute","5":"py:function","6":"py:data"},terms:{"001s":126,"010S":25,"015public":25,"020t":25,"030a":25,"040f":25,"050f":25,"0b16":24,"0d0":55,"0x045a0990":41,"0x852be2c":58,"100m":341,"100mb":89,"101m":341,"102m":341,"103m":341,"104m":341,"105m":341,"106m":341,"107m":341,"108m":341,"109m":341,"10m":66,"110m":341,"111m":341,"112m":341,"113m":341,"114m":341,"115m":341,"116m":341,"117m":341,"118m":341,"119m":341,"120m":341,"121m":341,"122m":341,"123dark":80,"123m":341,"124m":341,"125m":341,"126m":341,"127m":341,"128m":341,"129m":341,"12s":27,"130m":341,"131m":341,"132m":341,"133m":341,"134m":341,"135m":341,"136m":341,"137m":341,"138m":341,"139m":341,"140m":341,"141m":341,"142m":341,"143m":341,"144m":341,"145m":341,"146m":341,"147m":341,"148m":341,"149m":341,"150m":341,"151m":341,"152m":341,"153m":341,"154m":341,"155m":341,"156m":341,"156s":126,"157m":341,"158m":341,"159m":341,"160m":341,"161m":341,"162m":341,"163m":341,"164m":341,"165m":341,"166m":341,"167m":341,"168m":341,"169m":341,"16m":341,"170m":341,"171m":341,"172m":341,"173m":341,"174m":341,"175m":341,"176m":341,"177m":341,"178m":341,"179m":341,"17m":341,"180m":341,"181m":341,"182m":341,"183m":341,"184m":341,"185m":341,"186m":341,"187m":341,"188m":341,"189m":341,"18m":341,"190m":341,"191m":341,"192m":341,"193m":341,"194m":341,"195m":341,"196m":341,"197m":341,"198m":341,"199m":341,"19m":341,"1_7":126,"1d100":[72,184],"1d2":55,"1d6":72,"1gb":89,"1st":61,"200m":341,"201m":341,"2020_01_29":335,"2020_01_29__1":335,"2020_01_29__2":335,"202m":341,"203m":341,"204m":341,"205m":341,"206m":341,"207m":341,"208m":341,"209m":341,"20m":341,"210m":341,"211m":341,"212m":341,"213m":341,"214m":341,"215m":341,"216m":341,"217m":341,"218m":341,"219m":341,"21m":341,"220m":341,"221m":341,"222m":341,"223m":341,"224m":341,"225m":341,"226m":341,"227m":341,"228m":341,"229m":341,"22m":[319,341],"22nd":342,"230m":341,"231m":341,"232m":341,"233m":341,"234m":341,"235m":341,"236m":341,"237m":341,"238m":341,"239m":341,"23m":341,"240m":341,"241m":341,"242m":341,"243m":341,"244m":341,"245m":341,"246m":341,"247m":341,"248m":341,"249m":341,"24m":341,"250m":341,"251m":341,"252m":341,"253m":341,"254m":341,"255m":341,"25m":341,"26m":341,"27m":341,"28gmcp":289,"28m":341,"29m":341,"2d6":[57,184],"2gb":89,"30m":[319,341],"31m":[319,341],"31st":61,"32bit":[24,62],"32m":[319,341],"32nd":57,"33m":[319,341],"34m":[319,341],"35m":[319,341],"36m":[319,341],"37m":[319,341],"38m":341,"39m":341,"3c3ccec30f037be174d3":342,"3d6":184,"3rd":61,"40m":[319,341],"41m":[319,341],"42m":[319,341],"43m":[319,341],"44m":[319,341],"45m":[27,319,341],"46m":[319,341],"47m":[319,341],"48m":341,"49m":341,"4er43233fwefwfw":9,"4th":78,"50m":341,"50mb":89,"51m":341,"52m":341,"53m":341,"54m":341,"550n":25,"551e":25,"552w":25,"553b":25,"554i":25,"555e":25,"55m":341,"56m":341,"57m":341,"58m":341,"59m":341,"5d5":55,"5x5":110,"60m":341,"61m":341,"62m":341,"63m":341,"64m":341,"65m":341,"66m":341,"67m":341,"68m":341,"69m":341,"6d6":55,"70m":341,"71m":341,"72m":341,"73m":341,"74m":341,"75m":341,"76m":341,"77m":341,"78m":341,"79m":341,"80m":341,"81m":341,"82m":341,"83m":341,"84m":341,"85m":341,"86m":341,"87m":341,"88m":341,"89m":341,"8f64fec2670c":89,"90m":341,"90s":343,"91m":341,"92m":341,"93m":341,"94m":341,"95m":341,"96m":341,"97m":341,"98m":341,"99m":341,"\u6d4b\u8bd5":25,"abstract":[46,63,85,118,220,314,315,316,332,336,342],"boolean":[13,33,132,136,153,184,187,240,245,248,257,285,314,319,320,336,343],"break":[10,12,14,30,37,41,53,56,57,60,90,95,102,107,110,113,124,136,140,166,167,201,223,225,274,327,342],"byte":[15,27,93,112,267,274,276,285,293,342],"case":[1,6,8,10,11,12,13,14,15,21,22,25,27,28,29,31,33,34,37,39,40,41,42,43,45,48,50,54,57,58,59,60,61,63,68,73,78,79,80,81,82,85,87,88,90,94,95,99,101,102,104,106,107,108,109,110,112,113,115,118,119,120,122,124,126,127,130,132,136,143,145,150,152,155,158,164,166,167,173,174,175,178,179,181,184,186,187,195,203,205,210,231,236,237,239,240,245,254,256,270,274,278,282,296,303,306,314,315,316,317,319,321,332,339,342,347],"catch":[15,26,27,30,42,57,86,90,96,101,114,117,145,164,231,255,265,270,277,303,304,324,332,335,338,360],"char":[42,55,57,70,72,84,87,104,110,115,116,118,119,132,143,158,164,188,231,245,262,275,288,289,310,319,325,328],"class":[1,2,3,5,6,10,11,12,16,17,20,21,25,26,28,29,30,31,38,39,41,42,43,46,48,49,50,51,54,55,56,57,59,60,61,63,67,70,72,76,80,81,84,85,88,90,96,101,104,108,115,116,117,118,119,120,122,123,131,132,133,134,143,144,145,146,147,148,151,152,153,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,172,173,174,175,176,178,179,180,181,183,184,185,186,187,188,191,192,194,195,196,197,198,199,200,201,202,203,204,205,209,210,211,212,213,214,216,217,218,219,220,222,223,225,226,227,229,230,231,232,233,235,236,237,240,241,242,243,244,245,247,249,250,252,253,254,255,256,257,258,259,261,262,263,265,267,268,271,272,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,296,298,301,303,304,305,306,308,309,310,312,313,314,315,316,317,319,320,321,322,323,324,325,326,327,328,329,331,332,333,334,335,336,337,338,339,340,341,342,347,349,350,355,358,360],"const":232,"default":[0,1,2,3,4,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,27,29,31,32,33,34,35,36,38,39,40,41,44,45,46,48,49,50,52,55,56,57,58,61,62,63,64,65,66,67,68,70,71,74,75,76,80,81,82,84,85,86,87,88,89,90,92,94,95,96,99,100,101,102,103,104,105,106,108,110,111,112,113,115,116,117,118,120,122,123,124,125,126,127,128,130,132,133,134,135,137,138,139,140,141,143,144,145,147,148,149,150,151,152,153,174,176,178,179,180,181,182,183,184,185,186,187,188,189,192,194,195,196,198,199,201,202,204,205,208,209,211,212,213,214,216,217,218,219,220,223,229,231,232,233,234,236,237,238,240,245,249,250,254,255,257,259,263,265,267,269,270,271,275,287,288,289,294,296,297,303,304,305,306,310,311,314,315,316,317,319,321,322,324,326,327,328,331,332,334,335,336,337,338,339,342,343,347,355,360,362],"export":74,"final":[10,23,26,27,29,33,36,38,40,42,57,62,67,68,69,72,75,79,82,84,85,101,102,104,108,113,115,122,124,125,126,132,133,135,136,149,150,158,167,184,214,240,250,302,306,319,321,326,327,334],"float":[48,145,183,193,194,197,248,258,265,277,315,329,334,338,342],"function":[3,4,5,6,9,10,11,13,14,18,19,20,21,23,25,26,27,29,33,34,37,39,40,42,43,45,47,49,50,51,54,56,57,58,59,60,61,62,63,67,68,72,73,74,76,80,81,82,84,85,87,90,92,95,103,105,106,107,108,109,110,114,117,118,120,121,122,123,124,126,127,132,133,134,136,137,139,140,143,147,150,152,153,155,156,157,158,159,163,164,165,166,168,169,174,175,178,179,180,183,184,186,187,189,193,194,197,198,199,202,204,205,210,211,214,216,217,218,219,220,223,225,226,230,232,233,237,238,239,240,245,248,249,250,255,257,258,259,265,270,274,285,286,291,294,297,304,306,308,316,317,318,319,320,322,323,324,326,327,329,334,335,336,337,341,342,343,348,360],"g\u00e9n\u00e9ral":78,"goto":[84,326],"import":[0,2,3,4,5,6,9,10,11,13,14,15,16,19,20,21,22,25,27,28,29,30,31,33,38,39,41,42,43,44,45,46,47,48,49,50,51,53,54,55,56,57,58,59,60,61,62,63,67,68,70,71,72,73,75,76,79,80,82,83,84,85,88,89,90,92,93,95,96,101,102,103,104,105,106,109,110,111,112,113,114,115,116,117,118,119,120,122,124,125,126,129,131,132,133,134,135,136,137,139,140,152,158,168,173,178,179,180,181,182,183,184,186,187,197,198,199,201,203,204,205,211,212,214,216,217,218,219,220,226,230,231,233,236,240,250,259,265,269,277,278,299,303,306,307,314,316,320,321,324,325,326,327,328,339,340,342,360],"int":[11,25,31,38,48,50,55,57,73,84,90,113,122,124,133,143,145,150,151,153,175,178,181,183,184,187,189,191,193,194,197,199,205,214,216,217,218,219,220,232,245,250,256,257,258,259,262,263,265,269,270,274,275,276,277,279,283,284,285,293,294,296,306,308,310,314,315,319,322,324,325,326,328,329,332,334,335,339,342],"long":[9,10,15,20,22,23,25,26,27,29,33,37,39,42,43,45,48,50,51,54,57,59,61,63,67,70,71,72,77,78,79,80,84,85,86,89,104,107,110,112,114,117,120,124,125,126,128,130,132,134,137,138,155,158,163,178,185,194,202,212,219,226,232,274,279,294,319,320,327,328,342],"new":[0,2,5,9,11,12,13,14,16,19,20,21,22,23,25,26,27,29,31,33,34,35,36,37,38,39,40,42,43,44,48,49,50,53,54,56,60,61,62,63,64,67,69,70,71,72,74,75,76,77,78,79,80,81,82,83,84,87,88,89,90,91,92,94,95,97,99,100,103,104,105,106,107,108,110,111,115,116,117,120,121,122,123,127,128,130,131,133,134,135,136,137,138,143,144,145,151,152,153,155,156,158,163,166,167,169,170,172,173,174,179,180,181,185,186,187,191,194,196,198,199,200,201,202,203,204,205,211,212,214,216,217,218,219,220,229,230,231,233,237,240,242,244,245,247,249,250,252,254,257,258,259,262,265,274,275,276,277,283,284,285,290,297,305,306,310,314,315,316,317,319,320,322,325,326,328,332,334,335,336,358,360,362],"null":[8,85,313,334],"public":[25,34,40,42,57,64,66,71,89,92,99,102,130,133,163,245,310,328],"return":[3,4,6,10,11,15,20,21,22,25,27,28,29,30,33,36,38,39,40,41,42,43,47,48,49,51,57,59,61,63,67,68,70,72,73,75,76,79,80,81,84,88,90,92,94,95,96,99,101,102,106,107,108,109,110,111,113,115,116,117,118,120,122,124,126,128,132,133,136,137,143,144,145,147,149,150,151,152,153,155,158,165,168,169,173,174,175,176,178,179,181,183,184,186,187,189,191,192,193,194,196,197,198,199,202,203,204,205,209,210,211,214,216,217,218,219,220,222,229,230,231,232,233,235,236,237,239,240,242,244,245,247,248,249,250,255,256,257,259,262,263,265,270,271,274,275,277,278,279,280,282,283,284,285,286,288,289,290,292,293,294,296,297,303,304,306,308,309,310,313,314,315,316,317,319,320,321,322,323,324,326,327,328,329,332,334,335,336,337,338,339,341,342,343,348,355,360],"short":[20,22,29,38,41,45,50,53,56,57,60,61,69,70,82,86,88,94,95,102,109,111,113,122,128,136,139,179,181,194,201,204,205,226,232,250,320,342],"static":[48,57,93,123,134,135,136,138,165,179,191,205,213,310,322,353,360,361,362],"super":[5,22,25,31,39,40,48,56,57,59,61,80,88,95,117,120,122,124,179,181,205],"switch":[0,2,9,10,13,14,16,19,20,23,25,31,33,34,42,45,49,57,64,67,71,75,79,80,81,87,89,97,113,115,120,121,122,124,125,128,130,137,155,156,157,158,163,164,165,166,167,168,173,174,184,186,198,199,201,202,217,254,316,322,343],"th\u00ed":20,"throw":[11,22,42,65,74,108,130,132,152,165,342],"true":[1,2,4,5,10,11,13,20,21,22,25,26,27,29,31,33,34,39,40,48,49,50,53,55,57,61,64,65,66,67,68,71,73,75,79,80,83,84,85,86,89,90,95,97,99,101,104,113,114,115,116,119,120,121,122,124,125,126,132,134,136,137,143,147,149,151,152,153,155,158,163,165,166,169,172,173,174,175,176,178,179,181,182,183,184,187,189,191,194,196,199,202,203,204,205,211,214,216,217,218,219,220,223,225,229,233,235,239,240,242,244,245,247,249,250,252,254,255,256,257,258,259,261,263,265,270,271,274,276,283,288,293,294,304,306,308,310,313,314,315,316,319,322,324,326,327,328,329,332,334,337,338,339,342,343],"try":[0,4,5,6,8,9,10,11,12,13,15,16,20,21,22,23,25,26,27,29,30,38,41,42,43,45,47,48,49,50,53,54,55,56,57,59,60,62,63,64,65,67,68,72,73,74,76,79,80,85,89,90,92,94,95,96,101,102,107,108,109,110,112,117,118,119,120,122,123,125,126,132,133,134,135,136,137,139,143,147,151,153,158,174,176,178,179,185,195,203,204,205,211,212,216,217,218,219,220,223,226,229,230,231,233,237,245,249,257,262,265,274,289,290,294,308,313,314,316,319,321,322,324,325,338,342],"var":[66,87,136,199,208,289,320],"void":55,"while":[0,9,10,11,13,14,20,22,23,25,28,29,31,33,35,37,40,42,48,49,50,54,55,56,57,61,62,69,74,82,85,89,90,92,94,95,102,107,108,109,110,113,115,117,118,120,121,123,126,128,132,133,135,136,137,143,155,158,166,174,178,187,195,196,202,203,217,220,223,226,229,231,233,245,250,257,289,312,313,316,326,328,342,343,360],AIs:78,AND:[42,72,79,118,158,187,240,314],ARE:76,AWS:[89,99],Adding:[18,32,33,44,52,59,70,81,107,115,123,138,186,362],Age:[187,355],And:[0,4,9,10,11,21,22,25,26,29,33,36,40,41,45,50,56,60,61,68,72,79,85,90,95,110,125,132,136,137,152,181,214,216,217,218,219,220,362],Are:[33,60,78,81],Aye:45,BGs:125,Being:[57,80,121,122],But:[0,6,10,11,13,15,20,21,22,25,26,27,28,29,31,33,37,38,40,41,43,50,53,54,56,58,59,60,61,63,68,71,72,79,81,82,84,85,90,94,95,99,101,103,106,108,110,113,118,124,125,126,132,133,137,151,152,178,226,317,360],DNS:89,DOING:187,DoS:283,Doing:[29,33,42,54,72,133,152,155],For:[0,2,5,6,8,9,12,13,14,16,17,19,20,21,22,23,25,27,29,31,33,36,37,38,40,41,42,45,48,50,52,54,55,56,57,58,61,62,63,68,71,72,75,78,79,80,82,84,85,87,89,90,92,94,95,97,99,101,102,104,108,109,110,112,113,115,120,122,125,126,128,129,130,131,132,133,134,135,137,138,139,152,158,168,173,174,175,176,179,181,184,186,187,188,196,197,199,205,211,213,214,217,229,237,240,250,285,294,314,316,319,323,326,336,338,342,355,360,362],GMs:57,Going:232,Has:[24,216,217,218,219,220],His:[56,188],IDE:[47,105],IDEs:56,IDs:[0,99,132,133,193,314,342],INTO:[42,158,187],IOS:24,IPs:[12,102,208,308],IRE:[87,289],Its:[40,61,68,79,82,85,88,104,188,250,324,326,342],LTS:96,NOT:[11,25,33,42,79,89,102,118,136,158,240,250,257,308,362],Not:[8,24,30,40,53,56,60,73,89,107,111,114,126,130,131,132,136,145,152,166,167,245,262,275,276,277,279,280,281,287,289,292,314,315,336],OBS:[19,42],ONE:102,Obs:126,One:[0,8,12,20,22,25,29,34,36,45,48,50,56,57,59,62,63,68,75,78,79,86,90,93,94,101,104,109,114,116,120,122,125,127,129,130,131,137,140,147,149,178,184,204,214,229,230,249,250,275,303,313,314,315,319,320,327,342],PRs:130,Such:[6,13,28,33,37,42,47,50,56,63,72,126,158,250,319,326],THAT:90,THE:[187,226],THEN:[152,187],THERE:187,TLS:102,That:[0,3,4,9,10,15,21,22,25,26,31,33,38,40,41,45,48,52,54,56,61,63,67,68,72,73,76,90,92,94,95,97,101,104,110,111,114,118,121,124,130,133,135,137,139,178,179,185,214,240,250,306],The:[0,2,4,5,6,7,8,9,12,15,17,20,21,23,24,25,27,28,30,31,33,34,36,37,38,39,41,42,43,44,47,51,52,53,54,55,56,58,59,60,61,62,63,65,67,69,71,72,73,74,75,77,78,79,80,81,83,85,86,87,88,89,90,91,93,94,96,97,99,100,101,102,103,104,105,106,107,109,110,111,112,113,114,117,118,119,120,121,123,124,125,126,127,128,129,130,131,132,133,135,136,137,138,139,143,145,146,147,149,150,151,152,153,155,158,162,163,164,165,166,167,168,169,170,172,173,174,175,176,178,179,181,183,184,185,186,187,188,189,191,192,193,194,196,197,198,199,202,203,204,205,211,212,214,216,217,218,219,220,222,223,225,226,229,230,231,232,233,234,236,237,239,240,244,245,247,248,249,250,253,254,255,256,257,259,262,263,264,265,267,269,270,272,274,275,276,277,278,279,280,281,282,283,284,285,287,288,289,290,292,293,294,296,297,302,303,304,305,306,310,313,314,315,316,317,319,320,321,322,323,324,325,326,327,328,329,330,332,334,335,336,337,338,339,340,342,343,355,360,361,362],Their:[50,72,102,108,113,123,188],Theirs:188,Then:[0,9,15,22,38,40,41,45,55,60,62,66,68,90,92,99,106,126,130,136,186],There:[0,5,8,10,11,13,14,15,19,20,21,22,23,25,26,27,31,33,34,40,45,48,50,54,56,57,59,60,61,63,67,68,71,72,76,78,79,80,84,85,87,88,89,90,92,94,95,96,97,101,102,103,104,106,107,110,111,112,113,115,116,117,118,120,122,124,126,127,132,135,136,137,138,166,186,187,214,216,217,218,219,220,233,250,259,270,289,306,319,320,326,334,361],These:[0,4,5,9,11,13,17,22,25,33,34,35,38,39,42,46,48,50,58,60,64,67,68,72,73,82,85,87,89,90,94,95,99,101,102,104,106,108,109,110,111,113,118,120,121,123,124,126,130,132,136,137,138,142,143,144,149,151,153,155,157,159,167,175,179,183,197,198,202,204,205,209,226,231,236,240,245,249,250,259,264,271,290,293,294,296,305,306,307,314,316,319,323,326,327,328,335,336,337,342],USE:[239,362],Use:[1,2,4,5,8,9,12,13,14,20,22,23,25,31,42,47,50,53,57,59,62,64,68,69,88,89,92,94,95,99,104,108,113,115,121,122,124,126,130,136,143,150,155,156,158,163,164,168,170,178,179,183,185,196,198,199,201,202,203,205,217,218,219,220,225,232,242,244,245,267,271,276,293,294,296,297,300,314,316,319,325,326,328,332,339,342],Used:[33,42,120,138,149,152,158,174,187,201,214,233,244,257,267,285,314,316,327,328,348],Useful:[50,89],Uses:[24,113,158,170,185,208,229,265,314,327,328,332],Using:[18,22,27,42,45,50,52,54,57,59,61,67,79,90,95,114,120,122,138,158,205,217,232,245,285,312,326,362],VCS:36,VHS:187,VPS:89,WILL:[24,90,257],WIS:57,WITH:[23,187],Will:[31,73,109,113,143,183,203,205,245,248,250,263,265,274,275,316,326,328,329,334,337,342],With:[8,11,15,19,23,52,54,56,76,86,99,110,121,122,140,143,179,205,250,319],Yes:[33,137,187,324],__1:335,__2:335,_________________:124,_________________________:50,______________________________:50,________________________________:50,_________________________________:124,______________________________________:326,______________________________________________:50,_______________________________________________:50,____________________________________________________:50,_________________________________________________________:84,__________________________________________________________:84,__all__:[144,235,242],__defaultclasspath__:316,__doc__:[33,42,58,67,153,166,168,169,237,322],__example__:96,__ge__:96,__getitem__:319,__init_:328,__init__:[3,6,11,39,46,48,52,95,96,106,124,151,152,153,173,176,178,179,191,203,205,225,232,240,244,245,255,256,258,259,262,263,265,267,268,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,292,293,294,296,303,304,306,308,309,310,313,314,316,317,319,321,324,325,326,327,328,334,335,336,337,338,342,349],__iter__:11,__multimatch_command:167,__noinput_command:[151,167,179,324,326,327],__nomatch_command:[167,179,231,324,326],__send_to_channel_command:167,__settingsclasspath__:316,__unloggedin_look_command:[170,185,200],_action_thre:50,_action_two:50,_asynctest:291,_attrs_to_sync:305,_attrtyp:314,_cach:316,_cached_cmdset:152,_call_or_get:179,_callback:[27,259],_char_index:319,_character_dbref:180,_check_password:50,_check_usernam:50,_clean_str:319,_cleanup_charact:115,_code_index:319,_copi:[42,158,245],_creation:124,_default:[50,326],_defend:50,_errorcmdset:152,_event:197,_famili:118,_file:335,_flag:249,_footer:33,_format_diff_text_and_opt:250,_get_a_random_goblin_nam:108,_get_db_hold:[304,316],_get_top:68,_getinput:326,_gettabl:270,_http11clientfactori:267,_init_charact:115,_is_fight:29,_is_in_mage_guild:50,_italic_:53,_loadfunc:324,_menutre:[25,50,326],_monitor:270,_monitor_callback:83,_nicklist_cal:145,_oob_at_:332,_option:50,_pending_request:310,_permission_hierarchi:239,_ping_cal:145,_playable_charact:[68,132],_postsav:332,_prefix:205,_quell:239,_quitfunc:324,_raw_str:319,_reactor_stop:[282,303],_recog_obj2recog:205,_recog_obj2regex:205,_recog_ref2recog:205,_regex:205,_repeat:270,_safe_contents_upd:244,_savefunc:324,_saver:[11,323],_saverdict:[11,323],_saverlist:[11,323],_saverset:323,_sdesc:205,_select:50,_sensitive_:347,_session:326,_set:118,_set_attribut:50,_set_nam:50,_some_other_monitor_callback:83,_start_delai:259,_stop_serv:282,_test:149,_validate_fieldnam:57,a2enmod:8,a8oc3d5b:99,a_off:178,aardwolf:87,abbrevi:[42,75,113,158,201,334],abcd:[42,164],abi:59,abid:125,abil:[6,10,20,31,33,51,54,55,56,57,59,72,76,79,89,99,101,107,108,122,126,133,136,137,138,204,205,212,216,217,218,219,220,245,257,265,314],abl:[0,3,4,5,8,11,13,14,19,20,21,22,23,26,27,28,29,31,33,36,40,41,42,46,48,50,51,54,56,57,58,59,60,62,63,68,70,72,74,75,80,84,85,86,88,89,90,92,94,95,99,102,103,105,108,110,111,113,115,120,121,122,129,130,132,133,137,139,152,155,156,158,159,173,176,179,183,189,198,205,211,216,217,218,219,220,226,257,314,316,323,338,342,358],abod:239,abort:[25,27,33,50,51,76,88,143,153,158,174,196,212,245,248,327],about:[0,3,9,10,11,12,13,14,15,16,17,20,21,22,23,24,25,26,30,31,33,36,37,38,40,41,43,44,45,47,50,53,54,56,58,59,60,62,63,67,68,69,70,72,74,75,76,77,78,80,82,84,85,89,90,92,93,94,95,96,99,100,102,103,107,108,109,111,112,113,115,117,118,119,122,123,125,126,130,133,134,135,137,138,143,158,168,173,178,179,181,184,213,218,219,220,225,226,230,231,237,245,265,267,270,279,281,283,292,294,304,306,313,315,317,319,332,334,342,361],abov:[2,4,8,9,10,11,12,13,14,21,23,24,27,28,29,30,31,33,36,37,39,42,43,45,48,49,50,55,56,57,58,59,61,62,63,67,68,73,79,80,83,84,85,89,90,92,94,95,99,101,104,105,108,109,110,111,113,115,117,118,120,122,124,126,130,131,132,134,136,137,139,151,152,158,179,184,187,189,198,199,203,205,212,213,214,216,218,219,220,240,245,270,313,326,337,348],abridg:40,absolut:[27,55,61,78,90,133,181,183,184,188,325,329,342],absorb:73,abspath:342,abstractus:147,abus:[7,102],academi:78,accept:[11,14,22,23,27,31,37,42,50,53,57,58,73,79,87,89,94,95,108,113,114,124,130,132,133,137,143,149,150,168,178,184,187,192,195,203,204,205,212,229,231,239,245,265,270,283,309,310,315,320,326,334,338,342],accept_callback:[192,194],accesing_obj:239,access:[0,4,7,8,11,12,13,14,19,21,22,23,25,27,29,31,33,34,38,39,40,46,48,50,51,55,56,57,58,59,62,63,65,67,68,70,72,73,79,82,83,84,85,86,88,89,90,94,95,99,100,101,102,103,104,106,107,108,110,111,113,115,118,120,122,123,124,125,126,127,130,132,133,134,136,138,143,144,147,151,152,153,155,156,158,163,164,165,166,167,168,173,174,175,176,179,186,189,191,193,202,204,205,216,217,218,219,220,231,232,237,238,239,240,244,245,248,249,250,254,256,258,259,262,265,274,275,304,306,312,313,314,316,317,320,321,322,335,341,342,355,360],access_obj:[239,314],access_opt:343,access_token_kei:[70,119],access_token_secret:[70,119],access_typ:[42,67,143,153,158,174,176,237,239,240,245,314,316,360],accessed_obj:[25,79,120,239,240],accessing_obj:[1,11,25,79,120,143,174,176,237,239,240,245,314,316],accessing_object:[11,239],accessor:[147,176,237,244,254,314,316,317,333],accessori:62,accident:[15,31,42,122,137,156,158,304],accommod:4,accomod:[100,328],accompani:122,accomplish:[12,25,40,48,54],accord:[31,33,110,115,125,179,181,199,203,204,217,258,319,320],accordingli:[48,57,89,105,174,232],account1:358,account2:358,account:[0,4,6,9,11,12,14,17,19,20,21,22,24,25,27,31,33,34,35,37,40,44,46,48,49,50,51,54,55,56,60,61,64,65,68,70,73,79,80,82,86,88,89,90,91,95,99,103,104,106,107,108,109,110,111,113,118,119,122,124,125,126,128,130,132,133,134,137,138,140,141,148,149,150,151,152,153,154,156,158,159,160,163,164,165,166,170,173,174,175,176,179,180,181,183,185,186,187,189,191,192,194,196,198,199,200,205,208,211,216,218,219,220,223,226,229,230,231,233,237,239,240,244,245,247,249,251,254,265,269,270,285,296,297,304,305,306,314,316,319,322,326,327,336,337,339,340,342,343,347,355,358,360,362],account_cal:[155,163,166,198],account_count:306,account_id:[132,245],account_mod:158,account_nam:55,account_search:[205,245],account_subscription_set:147,account_typeclass:[340,358],accountattributeinlin:144,accountcmdset:[2,22,31,40,42,56,57,61,155,159,163,180,198],accountcreateview:360,accountdb:[118,124,132,140,143,144,147,174,237,312,313,316,336,343],accountdb_db_attribut:144,accountdb_db_tag:144,accountdb_set:[314,317],accountdbadmin:144,accountdbchangeform:144,accountdbcreationform:144,accountdbmanag:[146,147],accountdbpasswordcheck:285,accountform:[144,355,360],accountid:132,accountinlin:144,accountlist:57,accountmanag:[143,146],accountmixin:360,accountnam:[42,57,158,170,175,185,322],accounttaginlin:144,accru:143,accur:[22,153,176,191,217,220,250,258,263,265,267,268,276,285,286,288,290,293,294,314,319,334,337,338,349],accuraci:[45,90,217,218,219],accus:72,accustom:[86,123],acept:187,achiev:[0,22,27,33,56,113,123,125,137,219,265],ack:51,acquaint:56,acquir:321,across:[16,20,39,50,55,60,85,90,101,104,107,108,124,143,151,152,181,187,231,236,245,248,257,259,262,274,275,289,306,328],act:[2,8,13,23,29,31,34,37,42,48,50,55,57,60,69,76,94,101,104,109,110,122,138,140,158,176,187,214,239,262,274,275,294,314,317,321,326],action1:115,action2:115,action:[0,11,22,29,38,40,41,42,45,54,56,60,61,63,72,87,89,90,92,101,113,115,116,117,122,132,137,144,145,164,174,178,187,205,216,217,218,219,220,232,236,237,248,249,254,255,277,296,297,298,308,316,332],action_count:115,action_nam:[216,217,218,219,220],actiondict:115,actions_per_turn:[216,217,219,220],activ:[4,9,12,13,26,27,28,31,33,36,42,60,61,62,63,64,65,71,74,75,78,79,80,82,88,89,92,94,97,101,104,109,113,127,130,134,135,137,143,149,152,156,158,168,173,174,192,200,209,226,229,233,244,245,248,257,270,277,278,279,280,281,285,287,288,289,296,306,308,314,315,326,327,328,334,342],activest:341,actor:220,actual:[2,5,8,10,11,13,14,19,20,21,22,26,27,29,34,36,39,40,41,42,43,45,46,48,50,52,57,58,59,60,62,63,67,68,70,72,78,79,80,82,84,85,86,87,88,89,90,92,94,95,96,99,103,104,105,108,110,111,112,113,114,115,118,120,122,125,126,127,132,133,135,136,137,143,149,153,155,158,164,166,167,169,174,176,178,179,181,186,187,196,197,201,202,204,205,212,213,214,216,217,218,219,220,226,230,231,233,237,239,240,244,245,249,250,285,288,294,296,302,304,305,306,310,311,314,316,319,321,322,324,326,332,336,337,338,342,360],actual_return:126,adapt:[0,4,21,39,68,72,132],add:[0,2,5,6,8,9,10,11,13,14,15,16,17,19,20,21,22,26,29,30,31,33,34,35,36,37,38,39,40,41,42,43,45,46,47,48,49,50,53,54,56,57,60,61,63,64,65,66,67,68,70,72,73,75,76,77,78,79,80,81,83,84,85,86,87,88,89,90,92,93,94,95,97,99,101,103,104,105,108,110,111,112,113,114,115,116,117,118,119,120,122,123,124,126,127,129,130,131,132,133,134,136,137,138,139,140,143,147,151,152,158,163,164,165,167,173,174,178,179,180,181,182,184,185,186,191,192,194,195,196,197,198,199,200,201,202,204,205,208,211,212,214,216,217,218,219,220,222,223,225,226,229,230,231,232,239,240,244,245,248,250,254,255,256,258,259,265,270,271,275,278,279,281,283,287,294,296,297,299,307,314,317,320,324,325,326,327,328,332,334,335,337,338,360,362],add_:328,add_act:115,add_argu:232,add_callback:[192,194],add_channel:173,add_charact:115,add_choic:179,add_choice_:179,add_choice_edit:[22,179],add_choice_quit:[22,179],add_collumn:153,add_column:[57,328],add_condit:218,add_default:[21,31,84,95,120,152,223],add_dist:220,add_ev:194,add_fieldset:[144,242],add_form:[144,242],add_head:328,add_languag:204,add_row:[57,81,153,328],add_view:[144,172,242],add_xp:72,addblindedcmdset:226,addcallback:[33,245],addclass:[136,344,354,356],addcom:[57,163],added:[0,4,5,17,21,22,24,25,27,31,33,34,36,39,40,41,42,54,56,57,59,64,68,69,72,74,76,77,79,85,87,90,95,99,101,105,107,108,109,110,111,113,115,116,118,120,122,127,130,131,132,137,143,149,151,152,153,167,168,178,179,181,182,184,188,191,194,197,205,216,217,218,219,220,223,233,240,245,250,256,270,304,314,317,320,326,328,334,335,342,348],addendum:37,adding:[0,3,5,9,14,17,21,22,27,29,31,35,36,39,42,45,50,56,57,61,68,75,79,80,85,90,96,101,103,105,107,108,111,113,114,115,120,122,124,125,127,130,132,136,137,138,151,152,156,158,165,179,183,187,189,191,194,198,204,205,214,216,217,218,219,226,231,232,248,249,250,256,265,296,313,314,322,328,342],addingservermxp:280,addit:[4,8,22,25,31,36,37,45,48,49,57,61,68,75,81,87,89,90,102,103,113,118,133,143,145,152,153,174,179,182,191,192,194,196,199,204,208,214,220,232,240,245,258,276,304,314,316,355],addition:[25,110,118,220],additionalcmdset:31,addpart:202,addquot:342,addr:[262,275,276,277,322],address:[3,9,12,23,33,39,42,48,66,86,89,90,102,104,130,134,143,156,174,185,188,245,262,275,277,285,305,308,342,343,361],address_and_port:285,addresult:202,addscript:[42,158],addservic:39,adjac:[199,220,229],adject:96,adjoin:205,adjust:[0,33,37,62,125,132,189,326,328],admin:[2,9,11,12,15,19,21,33,34,40,48,57,60,67,68,71,79,84,85,97,100,109,118,120,122,132,133,137,140,141,142,147,148,154,158,163,165,168,170,171,174,185,229,234,237,240,241,244,245,251,260,274,275,312,316,322,338,360,361],admin_sit:[144,172,235,242,252,261,313],admin_wrapp:360,administr:[10,23,33,36,40,54,57,62,63,67,79,102,128,138,262,274,275,362],adminportal2serv:274,adminserver2port:274,adminstr:262,admintest:358,admit:38,adopt:[21,22,26,56,63,176,289],advanc:[10,12,13,22,28,31,33,38,39,42,43,50,54,57,63,78,85,92,103,104,107,108,110,118,122,123,124,138,158,166,186,199,203,205,216,217,218,219,220,225,280,320,324,325,328,362],advantag:[3,14,15,28,36,38,45,50,54,55,57,58,61,67,68,72,89,102,103,108,115,117,122,132,178,179,208,214,216,217,218,219,220,317,320],advent:180,adventur:[20,40,76,110,121,123],advic:78,advis:[0,22,25,76],aeioui:118,aesthet:49,affair:321,affect:[11,13,14,19,25,31,33,42,60,61,72,79,80,104,111,113,115,125,126,127,130,137,140,141,143,151,168,182,197,204,211,218,238,245,249,316,320,328,336],afford:[84,104],afraid:89,after:[0,5,8,9,10,11,14,15,20,21,22,25,27,28,29,30,31,33,36,38,40,42,43,45,48,49,50,54,57,59,62,67,75,76,78,79,82,84,85,89,90,95,99,101,102,106,113,115,116,120,121,122,125,126,127,129,130,132,135,136,137,138,143,151,152,153,154,155,158,166,168,169,173,174,178,179,181,183,184,185,186,187,189,194,196,202,204,205,214,216,217,218,219,220,226,227,229,230,231,232,233,244,245,248,250,255,257,265,287,288,291,303,304,305,306,308,310,314,319,320,321,324,326,327,332,334,337,340,341,342,360],after_mov:245,afternoon:186,afterthought:47,afterward:[20,29,68,85,90,118,130,179],again:[0,6,12,13,14,20,21,22,23,24,28,29,33,38,40,41,42,46,47,48,50,53,55,56,57,59,60,61,62,63,68,72,75,79,80,84,85,89,90,92,94,95,97,99,101,104,105,109,110,113,115,118,120,122,125,127,130,132,137,145,152,163,183,194,203,216,219,220,225,226,233,257,265,282,285,288,308,319,320,323,338,340],against:[6,11,21,31,33,37,56,57,82,89,102,115,118,124,126,143,150,151,173,205,216,217,218,219,220,240,245,249,250,283,308,314,316,334,339,342],age:[187,232,355],agenc:102,agent:36,agenta:113,ages:187,aggreg:78,aggress:[11,14,74,121,123,138,229,316,362],aggressive_pac:229,agi:[11,59,126],agil:[11,59],agnost:[37,63,174],ago:[25,99,342],agre:[1,72,112,178],agree:178,ahead:[14,22,24,36,48,60,89,107,120,287],aid:[112,165,166,167,178,310],aim:[7,54,57,60,72,84,85,89,94,107,125,175,249],ain:45,ainnev:[72,118],air:[20,21,110],ajax:[24,39,54,89,136,294,305],ajaxwebcli:294,ajaxwebclientsess:294,aka:[9,11,92,202,342],alarm:[20,81],alert:[136,196,245],alexandrian:78,algebra:48,algorith:204,algorithm:342,alia:[2,6,9,20,21,22,31,33,40,43,47,56,57,58,59,62,86,88,89,94,104,110,111,118,124,126,128,130,144,147,150,153,155,158,163,164,165,166,167,169,172,173,186,191,205,211,227,229,231,233,235,239,242,244,245,248,250,252,254,259,270,296,313,315,316,317,322,338,339,340,355,360],alias1:[42,158,186],alias2:[42,158,186],alias3:186,alias:[2,13,20,21,22,25,27,29,31,33,34,40,42,43,44,47,50,57,59,73,80,81,84,86,88,108,110,115,118,122,128,130,139,143,151,153,155,156,157,158,163,164,165,166,167,168,169,170,173,174,175,178,179,180,181,184,185,186,187,188,192,198,199,200,201,202,205,211,212,213,214,216,217,218,219,220,223,229,230,231,232,233,236,237,244,245,250,315,316,317,322,324,326,327,335,339],aliaschan:[42,163],aliasdb:143,aliashandl:[313,317],aliasnam:250,aliasstr:322,align:[40,57,108,113,189,319,327,328,334,342],alik:67,alist:96,aliv:[54,229],alkarouri:341,all:[0,1,2,3,5,6,8,9,10,11,12,13,14,15,16,17,19,20,21,22,23,26,27,28,29,30,31,33,34,35,36,37,38,39,40,42,43,45,46,47,48,49,50,53,54,55,56,57,58,59,60,61,62,63,67,69,71,72,73,74,75,76,77,78,79,80,81,82,84,85,86,87,88,89,90,92,93,94,95,96,97,99,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,120,121,122,123,124,125,126,127,128,130,131,132,133,134,135,136,137,138,139,143,144,145,148,149,150,151,152,153,154,155,156,157,158,159,160,163,164,165,166,167,168,169,170,173,174,175,176,178,179,180,181,184,185,186,187,188,191,194,196,198,200,201,202,203,204,205,209,211,212,213,214,216,217,218,219,220,223,225,226,229,230,231,232,233,235,236,237,238,239,240,241,242,244,245,249,250,255,256,257,259,260,264,265,269,270,271,274,276,277,279,281,282,283,284,285,288,289,292,293,294,296,297,303,304,305,306,308,310,311,312,313,314,315,316,317,319,320,321,322,323,324,325,326,327,328,332,334,335,337,339,341,342,343,348,355,360,361],all_alias:111,all_attr:316,all_connected_account:306,all_displai:259,all_famili:118,all_from_modul:342,all_opt:337,all_receiv:245,all_room:13,all_script:101,all_sessions_portal_sync:306,all_to_categori:236,allcom:163,allerror:[265,274],allevi:[11,107,126,310],allheadersreceiv:310,alli:220,alloc:89,allow:[0,2,3,4,6,8,9,10,11,12,13,14,15,16,19,21,22,23,26,27,29,30,31,33,34,36,38,40,41,42,43,45,46,48,50,53,54,56,57,58,60,62,63,64,67,70,71,72,73,74,75,77,79,80,84,85,86,88,89,90,91,94,95,96,97,99,100,101,102,103,105,107,108,110,111,112,113,115,118,120,122,124,125,128,130,132,133,134,136,137,143,145,147,149,151,152,153,155,156,157,158,163,166,167,168,169,174,175,176,178,179,181,183,184,186,187,188,194,196,199,201,203,204,205,214,216,217,218,219,220,229,230,231,232,233,237,239,240,245,248,249,250,255,257,258,259,265,269,270,272,276,278,279,280,281,288,289,290,292,297,303,304,306,308,309,314,316,317,319,320,322,324,326,327,328,329,332,336,337,338,340,342,355,360],allow_dupl:151,allow_nan:294,allow_quit:326,allowed_attr:57,allowed_fieldnam:57,allowed_host:[89,102],allowed_propnam:122,allowedmethod:294,allowext:310,almost:[19,33,40,94,114,118,124,179,181,267,274,312],alon:[13,29,48,50,55,57,72,79,85,86,115,126,137,259,270,296,320,322,328],alone_suffix:301,along:[5,12,33,42,47,50,59,63,69,73,77,87,90,92,95,103,106,113,120,121,138,143,155,178,184,204,208,214,219,240,245,294,312],alongsid:[5,187],alonw:254,alpha:[53,89,319],alphabet:[15,110,112,319,361],alreadi:[0,2,5,6,9,11,13,15,21,22,25,27,29,31,33,34,39,40,42,45,48,49,50,53,55,56,57,59,60,62,63,67,68,69,71,72,76,79,80,81,84,87,88,90,93,94,95,99,101,102,104,105,109,111,115,116,117,118,119,120,122,124,126,127,130,132,133,134,135,136,137,138,151,152,155,158,163,166,167,168,173,174,175,178,180,181,203,204,205,216,217,218,219,220,226,229,230,233,240,245,250,257,265,274,282,283,285,290,293,298,303,304,306,317,319,322,327,342,347],alredi:39,alright:178,also:[0,1,2,3,5,6,8,9,10,11,12,13,14,15,16,17,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,45,46,47,48,49,50,52,53,54,55,56,57,58,59,60,61,62,63,64,65,67,68,69,71,72,73,74,76,78,79,80,81,82,83,84,85,86,87,88,89,90,92,94,95,96,97,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,139,143,147,150,151,152,153,155,156,157,158,160,164,166,168,169,173,174,175,176,178,179,180,181,184,186,187,189,194,198,199,201,203,204,205,212,214,218,219,220,225,229,230,231,233,238,239,240,244,245,248,249,250,251,254,257,258,259,260,265,269,270,274,276,283,285,288,289,292,293,296,297,306,310,312,314,315,316,317,318,319,320,321,322,323,324,325,326,327,328,329,332,334,339,342,344,360,361],alt:319,alter:[0,4,23,40,63,110,136,314],altern:[23,29,33,34,50,54,56,62,63,67,71,75,80,86,89,110,111,113,117,118,121,130,132,136,137,139,166,167,174,202,205,220,223,239,240,283,322,334,342],although:[22,29,38,41,62,118,155,179,180,184,310,338,342],althougn:45,altogeth:[49,102,113],alwai:[0,2,4,6,8,11,12,13,14,20,21,23,25,27,30,31,33,34,37,38,42,46,48,50,52,56,57,60,61,62,63,68,71,72,73,76,79,84,85,87,88,89,90,94,95,101,104,106,108,111,113,114,120,122,124,125,126,127,130,133,134,136,143,151,152,153,155,157,158,163,166,169,174,175,176,198,204,205,211,223,226,239,240,244,245,248,249,250,257,259,265,267,270,274,282,285,288,289,293,294,297,304,306,311,314,315,316,317,319,322,327,332,334,338,339,342,343,360],always_pag:327,always_return:265,amaz:74,amazon:[78,89],ambianc:107,ambigu:[40,153,173,188,245,316],ambiti:[107,128],amend:130,amfl:14,ammo:21,among:[2,35,36,42,61,63,78,88,103,110,122,126,164,181,223,230,240,328,339],amongst:[76,199],amor:195,amount:[11,16,37,42,60,67,72,101,102,113,122,168,216,217,218,219,220,245,306,324],amp:[39,82,91,93,104,140,260,262,265,273,275,283,291,303,306],amp_client:[140,141,260],amp_maxlen:291,amp_port:89,amp_serv:[140,260,273],ampclientfactori:262,ampersand:107,amphack:274,ampl:123,amplauncherprotocol:265,ampmulticonnectionprotocol:[262,274,275],ampprotocol:262,ampserverclientprotocol:262,ampserverfactori:275,ampserverprotocol:275,amsterdam:89,anaconda:9,analog:[48,82],analys:50,analysi:209,analyz:[15,33,40,50,79,117,149,158,174,205,249,250,255,265,342],anchor:[174,220,237,316],anchor_obj:220,ancient:113,andr:24,android:[138,362],anew:[62,110,265],angl:128,angri:40,angular:[42,168],ani:[0,1,2,5,6,8,10,11,12,14,15,16,19,20,21,22,23,24,25,27,30,31,33,34,36,37,38,39,40,41,42,43,47,48,49,50,53,55,56,57,58,59,60,62,63,64,67,69,71,72,73,75,76,78,79,80,81,82,83,84,85,86,87,88,89,90,94,95,96,97,99,101,102,103,104,106,108,111,113,114,115,116,117,118,120,121,122,124,125,126,127,128,130,132,133,134,135,136,137,138,139,143,147,149,150,151,152,153,155,156,158,164,168,169,174,175,176,178,179,180,181,185,186,187,188,189,193,198,201,203,204,205,208,209,212,216,217,218,219,220,222,223,229,231,232,233,239,240,245,248,249,250,254,255,257,258,259,262,263,265,267,269,270,274,275,277,283,284,285,288,293,294,296,304,305,306,314,315,316,317,319,320,321,323,324,325,326,327,328,334,335,336,337,338,339,341,342,360],anim:[27,51],anna:[42,57,62,71,116,117,122,158],annoi:[12,84,90],annot:78,announc:[25,37,42,78,115,122,127,156,168,196,216,217,218,219,220,245],announce_al:[283,306],announce_move_from:[25,76,88,196,245],announce_move_to:[25,76,88,196,245],annoy:143,anonym:[4,65,68,205],anonymous_add:205,anoth:[0,8,10,11,13,14,16,21,22,29,31,33,36,38,41,42,45,48,50,55,56,57,61,62,63,68,76,77,79,88,89,90,95,96,97,101,104,105,107,108,110,111,112,113,115,120,122,126,130,131,135,136,137,138,139,143,151,152,155,158,163,164,174,178,179,181,187,193,198,203,205,214,216,217,218,219,220,230,233,237,245,248,306,314,316,320,324,326,327,334,342],another_batch_fil:320,another_nod:326,another_script:101,ansi:[24,42,54,73,80,136,140,141,155,182,189,201,270,277,285,288,293,294,318,328,334,341,362],ansi_escap:319,ansi_map:319,ansi_map_dict:319,ansi_pars:319,ansi_r:319,ansi_regex:319,ansi_sub:319,ansi_xterm256_bright_bg_map:319,ansi_xterm256_bright_bg_map_dict:319,ansimatch:319,ansimeta:319,ansipars:319,ansistr:[140,319,328],ansitextwrapp:328,answer:[0,11,21,25,26,33,45,50,60,62,68,69,72,94,95,102,126,263,269],anul:8,anwer:43,anybodi:[58,102],anymor:[4,180,194,202,203,233,326,338],anyon:[1,4,12,21,25,29,40,41,53,57,59,75,79,84,89,115,117,118,122,137],anyth:[0,1,5,11,13,16,19,20,22,23,26,29,31,33,34,39,40,41,45,48,50,55,60,62,63,68,79,81,82,84,86,88,89,90,93,94,95,99,101,103,105,110,115,117,120,122,124,126,127,130,132,134,135,136,137,151,153,167,179,205,214,216,217,218,219,220,240,277,311,314,320,326],anywai:[0,4,14,20,50,54,74,75,90,94,107,113,139,178,180,185],anywher:[33,50,59,63,94,95,124,133,324],apach:[7,23,89,102,138,310,362],apache2:8,apache_wsgi:8,apart:[2,11,20,27,34,46,54,62,79,80,99,103,124,125,126,133,220],api:[13,15,26,27,34,41,42,46,47,51,58,59,70,72,88,95,104,108,110,119,124,132,137,138,140,143,157,168,170,176,185,304,314,316,320,321,361,362],api_kei:70,api_secret:70,apostroph:15,app:[4,39,70,79,85,133,134,135,137,138],app_id:132,app_label:144,app_nam:68,appar:[47,57,125],apparit:231,appeal:[50,60,113],appear:[9,10,21,22,25,26,27,30,42,46,47,50,59,62,64,65,67,71,79,81,89,94,95,99,101,103,105,110,113,122,125,130,136,137,140,155,165,181,194,205,211,233,245,289,290,313,316,328,334,335],append:[20,22,25,27,31,38,39,42,48,49,52,67,68,79,84,87,88,89,90,92,95,96,115,122,126,132,137,153,158,165,181,198,205,240,298,320,334,335,342],appendix:239,appendto:136,appform:132,appl:[178,245],appli:[0,8,9,13,16,22,23,31,33,36,37,59,79,80,101,105,110,114,120,124,125,127,132,143,149,151,166,182,216,217,218,219,220,233,240,245,249,250,254,259,306,314,315,316,319,320,325,328,329,339,342],applic:[8,39,52,62,78,79,85,93,99,102,111,123,127,132,133,134,135,143,186,187,220,265,268,278,282,289,303,304,310,352,360],applicationdatareceiv:288,applied_d:132,apply_damag:[216,217,218,219,220],apply_turn_condit:218,appnam:[11,79],appreci:[22,37,69,77,332],approach:[22,25,38,55,76,90,105,114,132,179,220],appropri:[8,9,23,31,33,36,54,70,90,105,118,120,128,132,137,143,156,174,189,265,304,336,338,342],approrpri:39,approv:[132,133,137],approxim:[5,42,168,342],april:61,apt:[8,62,66,74,89,102,130],arbitr:60,arbitrari:[11,13,19,27,45,58,63,79,95,96,99,110,124,136,137,138,139,143,174,186,214,220,245,250,257,263,274,294,314,323,334,335,338],arcan:128,archer:250,architectur:[79,250],archiv:[78,102],archwizard:250,area:[2,22,24,47,48,57,60,78,116,121,126,137,229,233,239,325,328,342],aren:[0,4,29,38,68,102,126,130,132,135,137,143,181,187,194,202,218,335,338],arg1:[79,153,166,167,169,248,314,334],arg2:[153,166,167,169,248,314,334],arg:[1,5,10,21,22,25,29,30,33,38,39,40,41,42,50,57,58,67,70,72,73,79,80,82,84,87,95,108,113,114,115,118,120,122,128,131,136,143,144,145,146,147,149,150,153,158,166,167,169,174,175,176,178,181,183,186,188,191,194,196,202,203,204,205,211,212,213,214,216,217,218,219,220,222,225,226,229,230,231,232,233,236,237,239,240,243,244,245,248,249,250,253,254,257,258,259,262,270,271,272,274,275,276,277,282,283,285,286,288,289,290,293,294,298,304,306,310,313,314,315,316,317,319,326,328,329,331,332,334,335,338,340,342,343,355,360],arg_regex:[40,43,153,158,164,165,169,170,173,181,200,324],arglist:[166,167],argpars:232,argu:11,argument:[3,4,5,10,12,14,20,21,22,23,25,27,29,31,33,34,39,40,41,42,45,47,49,51,56,57,58,61,66,68,73,79,80,82,84,86,87,88,92,94,95,101,108,110,113,114,118,122,123,124,126,128,133,138,143,145,149,150,152,153,155,156,158,163,164,165,166,167,168,169,174,175,179,181,183,186,187,188,191,193,194,196,199,203,204,205,209,211,216,217,218,219,220,231,232,240,245,248,249,250,255,257,258,259,263,265,270,274,275,276,277,283,284,285,288,289,293,294,296,297,304,305,306,308,309,314,315,316,317,319,320,322,324,325,326,327,328,332,334,336,338,339,342,360,362],argumentpars:232,argumnet:328,argumu:334,aribtrarili:342,aris:102,arm:[26,33,202],armi:84,armor:[29,81,181,217],armour:29,armouri:76,armpuzzl:202,armscii:[15,112],arnold:86,around:[0,4,10,13,14,15,21,23,29,31,34,38,41,42,48,54,57,60,62,63,68,69,70,72,76,78,79,84,88,89,90,95,108,110,112,113,115,116,118,120,122,128,135,137,138,158,166,167,181,183,193,202,205,220,223,229,230,231,233,245,319,320,328,335],arrai:[87,90,289,342],arrang:22,array_of_known_message_types_to_assign:136,array_of_split_percentag:136,arrayclos:[87,289],arrayopen:[87,289],arriv:[0,25,29,42,72,76,82,104,158,277],arrow:[41,136],art:[113,325],articl:[4,15,21,38,40,47,56,60,78,112,126,130,333],article_set:333,artifact:328,artifici:72,arx:78,arxcod:[138,362],as_view:[174,237,316],ascii:[9,15,110,112,143,199,325,328,342],asciiusernamevalid:143,asdf:158,ashlei:[181,187,189,214,216,217,218,219,220],asian:342,asid:[9,226],ask:[1,10,21,23,26,34,37,41,42,45,47,49,53,57,62,67,68,69,72,83,89,90,92,96,118,123,130,132,151,153,158,178,183,192,200,203,232,263,265,292,326,329,342],ask_choic:263,ask_continu:263,ask_input:263,ask_nod:263,ask_yesno:263,asn:208,aspect:[47,50,56,59,63,67,72,85,108,126,189],assert:[115,126],assertequ:126,asserttru:126,asset:[102,135,269],assetown:9,assign:[2,6,11,12,13,20,36,42,50,55,57,79,86,88,96,101,108,111,114,115,118,120,122,130,136,137,143,149,150,152,158,165,166,167,169,182,186,187,205,216,217,218,219,220,231,240,244,245,249,250,270,277,283,285,288,304,323],assist:89,associ:[4,11,29,42,50,78,82,89,104,121,134,137,143,148,158,174,191,194,205,245,304,306,315,360],assort:360,assum:[0,3,5,9,12,13,14,15,19,20,21,22,25,27,28,29,31,33,34,37,38,39,40,42,43,45,46,48,50,54,55,57,59,61,67,72,73,74,79,80,81,83,84,88,89,94,95,96,99,101,102,104,105,107,108,109,110,112,114,115,116,117,119,120,122,127,131,132,133,137,149,152,153,155,158,169,174,179,180,205,212,230,231,239,245,250,255,257,289,306,319,320,326,327,334,342,347,360],assumpt:150,assur:[48,124],asterisk:[2,12,42,156],astronaut:76,astronom:61,async:[132,138,342,362],asynccommand:10,asynchron:[27,28,29,33,44,54,63,91,92,138,145,245,274,275,289,335,342],at_:[124,332],at_access:[143,245],at_account_cr:[2,143],at_after_mov:[76,88,95,116,196,245],at_after_object_leav:233,at_after_travers:[88,196,230,245],at_befor:245,at_before_drop:[217,220,245],at_before_g:[217,220,245],at_before_get:[220,245],at_before_leav:88,at_before_mov:[25,76,88,196,216,217,218,219,220,245],at_before_sai:[95,196,205,245],at_channel_cr:174,at_char_ent:116,at_cmdset_cr:[5,21,22,25,30,31,33,40,43,56,57,61,80,84,115,120,122,151,159,160,161,162,178,179,180,181,184,186,198,200,201,202,205,213,216,217,218,219,220,223,229,230,231,324,326,327],at_cmdset_get:[143,245,304],at_db_location_postsav:244,at_defeat:[216,217,218,219,220],at_desc:245,at_disconnect:[143,304],at_drop:[196,217,220,245],at_end:254,at_err:[10,342],at_err_funct:10,at_err_kwarg:[10,342],at_failed_login:143,at_failed_travers:[88,196,211,230,245],at_first_login:143,at_first_sav:[143,174,245],at_first_start:316,at_get:[181,196,220,245],at_giv:[217,220,245],at_heard_sai:117,at_hit:229,at_idmapper_flush:[257,316,332],at_init:[6,106,124,143,174,229,230,231,245],at_initial_setup:[103,269],at_initial_setup_hook_modul:269,at_login:[39,124,276,277,285,288,293,294,304],at_look:[95,143,245],at_message_rec:143,at_message_send:143,at_msg_rec:[143,188,245],at_msg_send:[143,145,188,245],at_new_arriv:229,at_now_add:85,at_object_cr:[5,6,21,25,31,38,42,57,59,72,79,80,84,88,95,120,122,124,131,158,186,188,205,211,213,216,217,218,219,220,225,229,230,231,245,316],at_object_delet:[196,245],at_object_leav:[231,233,245],at_object_post_copi:245,at_object_rec:[88,116,231,233,245],at_password_chang:143,at_post_cmd:[30,33,149,153,166,169],at_post_command:33,at_post_disconnect:143,at_post_login:[25,143],at_post_portal_sync:303,at_post_puppet:[95,196,245],at_post_unpuppet:[95,245],at_pre_cmd:[33,149,153,166,169],at_pre_command:33,at_pre_login:143,at_pre_puppet:[95,245],at_pre_unpuppet:[196,245],at_prepare_room:233,at_reload:[42,168,303],at_renam:316,at_repeat:[101,115,119,120,124,145,178,183,194,216,217,218,219,220,222,226,257,298,329],at_return:[10,342],at_return_funct:10,at_return_kwarg:[10,342],at_sai:[117,196,245],at_script_cr:[101,115,119,120,145,178,183,194,203,204,216,217,218,219,220,222,226,233,249,257,298,329],at_search_result:[167,342],at_server_cold_start:303,at_server_cold_stop:303,at_server_connect:283,at_server_reload:[101,109,143,145,245,257],at_server_reload_start:303,at_server_reload_stop:[25,303],at_server_shutdown:[101,109,143,145,245,257],at_server_start:303,at_server_startstop:[25,103],at_server_stop:303,at_shutdown:303,at_start:[101,115,145,194,226,233,254,257],at_startstop_modul:259,at_stop:[101,115,120,216,217,218,219,220,226,257],at_sunris:61,at_sync:[304,305],at_tick:[114,259],at_travers:[88,196,212,233,245],at_traverse_coordin:233,at_turn_start:218,at_upd:[218,255],at_weather_upd:131,atlanti:24,atom:97,atop:233,atribut:323,att:50,attach:[4,11,21,40,42,55,57,63,76,88,94,101,104,109,111,118,139,153,158,163,166,188,198,214,233,240,245,256,302,313,317],attachmentsconfig:4,attack:[14,28,29,30,45,50,72,76,89,102,115,118,121,133,138,152,205,214,216,217,218,219,220,229,230,245,250,283],attack_count:219,attack_nam:219,attack_skil:250,attack_typ:220,attack_valu:[216,217,218,219,220],attempt:[0,2,22,24,29,31,42,50,59,60,86,90,102,105,118,119,134,155,158,186,209,211,216,217,218,219,220,262,265,270,303,308,316,342,360],attent:[55,57,88,102,110],attitud:56,attr1:[42,158,202],attr2:[42,158,202],attr3:[42,158],attr:[11,22,42,48,50,57,79,108,118,136,158,165,179,231,239,249,250,304,314,316,332,338],attr_categori:313,attr_eq:239,attr_g:[79,239],attr_gt:[79,239],attr_kei:313,attr_l:[79,239],attr_lockstr:313,attr_lt:[79,239],attr_n:[79,239],attr_nam:158,attr_obj:[314,316],attr_object:316,attr_typ:313,attr_valu:313,attract:37,attrcreat:[79,314],attread:11,attredit:[11,79,314],attrib:240,attribiut:314,attribut:[0,2,6,12,20,22,25,27,28,30,38,40,41,42,44,45,48,49,50,55,56,57,59,60,68,72,73,76,79,80,81,83,84,85,86,88,90,94,101,104,107,108,111,114,115,118,122,124,126,132,133,137,138,140,141,143,144,147,152,158,167,168,172,174,179,180,186,193,194,201,202,205,212,216,217,218,219,220,225,229,230,231,239,242,244,245,248,249,250,252,254,255,270,304,312,313,315,316,317,322,323,324,335,336,339,342,355,360,362],attribute1:122,attribute2:122,attribute_list:314,attribute_nam:[143,205,245,339],attributeerror:[41,59,85,304,314],attributeform:313,attributeformset:313,attributehandl:[1,124,314,337,342],attributeinlin:[144,172,242,252,313],attributeobject:11,attrkei:250,attrlist:314,attrnam:[11,42,50,79,108,124,158,239,316],attrread:[11,79,314],attrtyp:[11,314,315],attrvalu:50,attryp:315,atttribut:48,atyp:240,audibl:204,audio:136,audit:[140,174,177,206,245],audit_callback:208,auditedserversess:[208,209],auditingtest:210,aug:9,august:[9,342],aut:51,auth:[143,144,147,285,347,355,360],auth_password:285,auth_profile_modul:147,authent:[39,102,104,106,132,137,143,276,283,285,288,294,304,306,347,360],authenticated_respons:358,author:[40,89,125,143,191,194],auto:[0,5,12,14,21,31,32,33,34,41,42,44,50,52,62,70,88,94,95,104,121,130,132,137,140,143,147,149,153,157,158,165,168,169,204,205,226,234,237,240,245,250,254,257,259,262,265,276,286,293,294,303,306,316,321,327,328,347],auto_help:[33,40,43,50,67,68,153,169,187,247,326,327],auto_id:[144,235,242,355],auto_look:[50,187,247,326],auto_now_add:85,auto_quit:[50,187,247,326],auto_transl:204,autobahn:[276,282,293],autofield:132,autologin:347,autom:[14,36,56,57,78,85,99,102,109,360],automat:[0,6,10,14,19,22,23,27,30,31,34,37,40,42,45,46,49,50,52,54,57,59,61,63,64,65,67,70,71,79,80,83,84,85,89,95,96,99,101,103,104,108,110,115,116,117,118,120,122,123,124,125,127,130,134,135,136,138,139,143,151,152,153,158,163,164,166,173,178,179,180,181,193,194,195,199,200,202,203,204,205,213,220,225,226,232,240,244,245,256,257,258,259,270,279,282,285,290,303,306,320,324,326,327,328,342,348,361],automatical:259,autostart:[256,322],autumn:[96,98,186],avail:[0,5,7,8,10,11,13,16,21,22,23,24,25,26,31,33,36,38,39,40,41,42,43,45,47,48,50,52,56,57,59,61,62,63,64,71,73,74,75,76,77,78,79,80,81,84,87,88,89,90,94,95,97,99,101,103,104,105,107,108,109,110,112,113,115,118,120,121,122,124,126,127,130,132,133,136,137,138,140,143,149,150,151,152,153,155,158,160,163,164,165,166,167,168,169,170,178,179,180,184,186,188,194,198,201,203,204,205,213,214,216,217,218,219,220,223,230,231,239,240,245,248,249,250,254,270,294,297,308,319,320,321,326,327,328,334,342,360],avail_cmdset:158,available_choic:[50,326],available_func:334,available_funct:249,available_languag:204,available_weapon:230,avatar:[63,87,95,245,285],avatarid:285,avenu:181,averag:[13,42,89,92,168,194,204,232],avoid:[8,11,23,26,27,31,33,37,39,41,42,50,79,80,84,94,96,99,108,110,113,124,125,126,128,130,137,138,151,158,203,204,232,233,239,244,270,274,284,294,304,314,316,319,320,321,324,327,332],awai:[0,9,10,11,14,15,21,26,29,41,42,45,48,50,54,65,67,68,72,79,85,89,95,101,104,108,110,120,122,130,164,181,214,217,220,223,225,229,231,233,245,254,305,319,342],await:10,awar:[11,14,26,31,33,43,50,87,94,95,109,124,125,131,132,188,203,205,229,232,233,245,316,319],awesom:[62,134],aws:89,axhear:239,axi:199,azur:99,b64decod:338,b64encod:338,b_offer:178,baaaad:126,babi:137,back:[0,3,5,10,11,12,13,14,20,21,22,23,26,27,29,31,33,34,36,42,45,48,49,50,55,57,59,60,62,63,68,72,73,80,82,84,85,86,89,90,94,95,96,99,101,104,105,109,110,112,115,117,118,120,121,122,124,125,130,132,134,136,140,143,152,155,158,163,167,178,179,205,211,214,219,223,247,257,265,270,274,277,283,285,288,303,316,323,326,327,335,342],back_exit:0,backbon:[132,320],backend:[23,36,108,126,134,140,314,342,344,346],backend_class:314,background:[10,17,29,50,89,102,109,113,125,132,182,189,319,334,360],backpack:31,backslash:113,backtick:130,backtrack:130,backup:[10,88,89,104,130,167,320],backward:[49,50,57,120,335],bad:[0,22,24,37,40,57,63,69,75,84,118,126,209,267],bad_back:240,badg:129,bag:342,balanc:[29,55,60,78,115,328],balk:94,ball:[31,58,103,150,151,250],ballon:202,balloon:202,ban:[7,25,79,138,143,156,240,362],band:[44,87,136,285,288,289],bandit:45,bandwidth:278,banid:[42,156],bank:60,bar:[50,81,82,83,87,111,134,136,189,205,214,289,326,342],bare:[33,54,57,72,103,189,217],barehandattack:55,bargain:85,barkeep:[41,205],barter:[60,62,101,116,140,141,177],bartl:78,base:[3,4,6,9,13,16,17,20,21,22,23,30,33,34,36,38,40,41,42,48,50,54,55,56,57,59,60,62,63,68,71,72,74,76,78,79,82,84,85,88,89,93,95,99,101,102,104,107,110,112,114,118,119,122,123,124,125,126,128,132,133,135,136,137,138,140,143,144,145,146,147,149,151,152,153,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,172,173,174,175,176,178,179,180,181,183,184,185,186,187,188,191,192,194,195,196,197,198,199,200,201,202,203,204,205,209,210,211,212,213,214,216,217,218,219,220,222,223,225,226,227,229,230,231,232,233,235,236,237,240,242,243,244,245,247,249,250,252,253,254,255,256,257,258,259,261,262,263,265,267,268,271,272,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,296,297,298,301,303,304,305,306,308,309,310,313,314,315,316,317,319,320,321,324,325,326,327,328,329,331,332,333,334,335,336,337,338,339,340,341,342,347,349,350,355,358,360,362],base_account_typeclass:[2,140],base_channel_typeclass:140,base_char_typeclass:119,base_character_typeclass:[42,80,119,132,133,140,143,158],base_exit_typeclass:140,base_field:[144,235,242,313,355],base_guest_typeclass:[65,140],base_object_typeclass:[108,140,250,316],base_random:248,base_room_typeclass:140,base_script_path:239,base_script_typeclass:[101,140],base_set:9,baseclass:230,basecontain:321,baseinlineformset:313,baseline_index:342,baseobject:124,baseopt:336,basepath:342,basetyp:[245,320],basetype_posthook_setup:245,basetype_setup:[38,79,95,143,145,174,245],bash:[36,62],basi:[4,33,37,61,89,135,137,166,176,205,239,294,316,325],basic:[0,2,3,6,15,16,17,19,20,22,26,29,31,33,34,36,38,39,42,45,46,47,55,56,57,59,60,61,68,72,76,78,79,80,82,85,86,109,110,112,115,116,117,120,121,123,125,127,132,133,134,136,138,143,145,158,163,165,174,176,187,193,199,202,217,219,230,239,241,245,296,340,344,355,360,362],bat:[9,62],batch:[18,20,42,47,62,78,110,121,123,138,140,141,157,250,274,314,317,318,362],batch_add:[250,314,317],batch_cmd:14,batch_cod:[13,320],batch_code_insert:13,batch_create_object:250,batch_exampl:320,batch_import_path:[13,14],batch_insert_fil:14,batch_update_objects_with_prototyp:250,batchcmd:[42,157],batchcmdfil:[14,320],batchcod:[14,78,110,157],batchcode_map:110,batchcode_world:110,batchcodefil:13,batchcodeprocessor:320,batchcommand:[14,20,22,62,121,157,320],batchcommandprocessor:320,batchfil:[14,15,110,320],batchprocess:[140,148,154],batchprocessor:[13,140,141,157,318],batchscript:[13,320],batteri:143,battl:[78,102,115,121,216,217,218,219,220],battlecmdset:[216,217,218,219,220],baz:214,bazaar:107,beach:110,bear:[203,229],beat:[60,115],beaten:[115,231],beauti:[22,48,132],beazlei:78,becam:[29,125],becasu:52,becaus:[0,2,6,8,9,10,11,12,13,15,16,21,22,25,29,31,36,39,40,41,43,45,53,55,58,63,67,72,75,76,79,88,90,94,95,106,107,108,110,114,115,116,118,124,125,132,133,135,144,152,170,174,185,193,196,204,219,223,233,245,257,277,283,296,306,313,319,336,338],becom:[0,5,10,22,37,40,41,42,46,48,50,55,58,60,63,69,72,77,79,80,85,86,87,94,95,101,103,108,110,118,127,155,188,202,204,214,217,250,304,320,326],bed:60,been:[0,4,5,6,13,14,19,21,22,23,36,40,41,42,45,48,50,57,68,69,75,78,84,90,92,93,95,102,104,115,116,118,122,125,127,130,132,133,134,136,137,151,152,157,158,166,167,174,179,194,196,199,202,203,205,216,217,218,219,220,231,233,237,240,244,245,250,259,267,279,283,285,293,303,304,305,306,308,313,314,316,320,324,325,342,360],befit:124,befor:[1,4,10,11,12,13,14,15,20,21,22,25,27,28,29,31,33,37,40,41,42,45,47,48,50,55,56,57,59,60,68,70,74,76,78,79,80,83,84,85,89,90,92,95,96,99,101,102,103,105,106,107,108,110,111,112,113,114,115,116,117,118,120,122,123,124,125,126,129,130,131,132,133,134,136,137,138,143,149,150,153,158,163,166,170,174,183,185,186,187,188,189,193,196,197,200,204,205,208,209,214,216,217,218,219,220,225,226,230,233,239,240,244,245,248,250,257,258,259,265,274,283,285,291,299,301,303,304,308,310,314,319,320,321,322,326,327,328,329,333,335,338,342,360],beforehand:[11,130,321],beg:14,beggar:0,begin:[0,4,6,10,13,14,20,22,25,33,40,41,42,45,49,54,57,60,68,71,79,90,94,95,105,106,110,115,116,118,126,131,133,164,193,196,205,214,216,217,218,219,220,245,257,319,320,339],beginn:[54,59,76,78,90,94,123],behav:[11,13,20,22,29,68,90,94,106,109,126,249,342],behavior:[0,5,11,31,33,40,49,67,68,92,95,101,108,113,125,134,136,137,143,153,169,181,187,218,220,231,232,265,313],behaviour:[11,31,33,79,125,199,311,322,328,342],behind:[11,12,21,33,42,48,54,58,60,62,73,96,108,111,113,121,125,130,157,203,231,254,259,332],being:[0,5,6,10,11,13,20,21,22,25,28,31,33,34,36,37,41,42,50,53,55,58,60,62,63,68,82,87,89,90,92,94,95,101,102,106,108,110,114,117,124,125,126,128,130,132,137,143,150,158,164,168,174,183,184,188,198,204,205,216,217,218,219,220,225,226,231,237,245,267,270,277,306,308,313,314,316,319,320,322,326,327,328,342],beipmu:24,belong:[4,14,42,63,82,94,102,111,118,132,139,152,205,214,233,237,248],below:[0,1,5,8,9,10,11,12,13,14,15,19,20,22,23,25,27,29,31,33,34,36,38,41,42,47,48,49,50,56,57,58,59,60,61,62,63,68,69,72,73,79,80,86,87,89,93,94,95,99,101,104,105,108,109,110,113,116,117,118,122,124,126,130,132,133,135,137,139,147,158,166,167,176,179,181,184,189,196,199,204,205,214,216,217,218,219,220,227,232,237,239,244,245,254,277,297,314,316,317,328,333,334],belt:76,beneath:27,benefici:[48,218],benefit:[77,89,99,102,107,126,152,314,320],besid:[0,14,31,105,110,189],best:[9,22,24,26,37,49,56,57,58,60,71,75,101,102,103,107,132,134,138,165,179,204,214,232,250,265,285,328,336,362],bet:[31,104,137,316],beta:[35,53,89],betray:50,better:[0,9,15,23,25,34,40,41,43,44,50,54,57,58,60,63,67,69,72,80,84,85,90,92,94,107,108,111,113,132,133,180,212,217,223,231,245,250,282,285,288,296,314,320],bettween:72,between:[0,2,10,14,22,25,28,31,33,36,38,39,40,42,45,48,55,56,57,63,68,72,75,84,86,87,89,90,99,101,104,108,111,112,113,115,119,120,121,122,123,125,130,136,137,139,150,153,158,165,168,169,176,178,181,182,193,194,196,197,198,199,201,203,204,205,214,216,217,218,219,220,245,250,259,265,274,277,284,285,288,289,296,297,304,317,319,320,322,326,328,329,334,342,349],bew:186,bewar:38,beyond:[1,2,9,22,25,33,37,51,56,63,87,88,89,126,133,153,158,169,176,179,205,214,249,314,316,326,328],bg_colormap:341,bgcolor:341,bgfgstart:341,bgfgstop:341,bgstart:341,bgstop:341,bias:158,bidirect:274,big:[9,11,13,14,20,28,29,33,37,44,56,72,79,95,121,137,139,150,167,320,327,339,342],bigger:[21,37,39,68,118,122,136],biggest:[71,137,342],biggui:33,bigmech:21,bigsw:29,bikesh:118,bill:[89,102],bin:[4,9,36,46,62,63,74,95,99],binari:[23,46,62,92,94,276,278,293],bind:66,birth:355,bit:[0,4,9,12,17,22,26,29,35,38,40,41,42,45,58,60,61,62,68,74,75,80,95,101,105,108,120,121,126,130,133,136,137,170,185,240,245,320],bitbucket:56,bite:[60,110],black:[72,113,125],blackbird:78,blackbox:137,blacklist:102,blade:230,blank:[50,85,116,133,143,187,319],blankmsg:187,blargh:108,blatant:12,blaufeuer:118,bleed:[113,130,328],blend:202,blender:202,bless:137,blind:[113,117,223,226],blindcmdset:223,blindedst:226,blindli:240,blink:[20,225,226,341],blinkbuttonev:226,blist:96,blob:137,block:[3,12,25,28,42,49,50,54,57,63,68,79,89,90,96,101,102,109,113,122,128,132,133,138,156,157,158,186,220,229,230,233,247,284,320,326,334,342,360],blocking_cmdset:25,blockingcmdset:25,blockingroom:25,blocktitl:68,blog:[37,54,78,89,97],blowtorch:24,blue:[13,56,80,113,125,230],blueprint:[56,95,110,136],blurb:53,board:[34,48,60,78,79,120],boat:[31,120,152],bob:[33,42,80,137,156],bodi:[3,17,22,27,33,40,45,50,57,94,108,126,128,132,174,192,198,267,322,342],bodyfunct:[20,101,140,177,221,227],bog:21,boi:111,boiler:124,bold:53,bolt:250,bone:[54,72],bonu:[40,72,89,217,218,254],bonus:[29,217],book:[3,48,61,72,78,90,94,108,134],bool:[2,31,33,34,50,73,83,101,143,144,145,147,149,150,151,152,153,158,172,174,175,176,178,179,181,183,184,187,189,191,194,196,199,203,204,205,214,216,217,218,219,220,225,233,236,240,242,244,245,248,249,250,252,254,255,256,257,258,259,265,270,271,276,277,282,283,284,288,293,294,302,304,306,308,314,315,316,317,319,320,322,324,326,327,328,329,332,334,337,339,341,342],booleanfield:[132,144,235],boom:21,boot:[79,99,109,156,259],bootstrap:[4,123,137,138,362],border:[42,57,81,110,155,187,325,327,328],border_bottom:328,border_bottom_char:328,border_char:328,border_left:328,border_left_char:328,border_right:328,border_right_char:328,border_top:328,border_top_char:328,border_width:328,borderless:57,borderstyl:187,bore:[12,54,102],borrow:[31,62,151,274],bort:51,boss:57,bot:[42,46,64,71,92,102,118,132,140,141,142,147,163,174,270,276,277,284,306,360],bot_data_in:[145,270],both:[0,11,15,19,22,23,25,26,27,31,33,34,36,37,39,42,43,48,55,56,57,61,64,68,70,73,78,83,84,85,86,87,89,90,94,96,102,103,104,105,109,110,115,118,120,123,124,126,127,130,132,133,135,137,149,151,158,163,168,176,178,182,189,196,198,199,200,202,211,214,219,220,231,240,245,249,250,251,254,257,259,274,283,293,294,303,305,308,314,315,319,322,326,328,337,342],bother:[29,102,127,173,314],botnam:[42,71,163,277,306],botnet:102,botstart:145,bottom:[4,38,40,51,53,56,57,59,68,84,94,100,105,110,124,126,132,136,152,198,219,233,250,320,327,328],bought:84,bouncer:[27,102,325],bound:[6,27,56,107,191,342],boundari:342,bounti:69,bountysourc:69,bow:250,box:[0,3,8,20,41,42,45,57,62,65,68,69,70,72,79,86,89,103,105,108,110,122,134,137,158,205,239,274,320,355,361],brace:[0,22,25,40,90,196,245,319],bracket:[42,95,128,168,182],brainstorm:[138,362],branch:[9,36,37,40,62,99,203,214],branchnam:130,brandymail:198,bread:16,breadth:220,break_lamp:225,break_long_word:328,break_on_hyphen:328,breakdown:[42,168],breakpoint:[16,105,140],breez:[101,131],breviti:57,bribe:50,brick:81,bridg:[22,23,78,82,104,231],bridgecmdset:231,bridgeroom:231,brief:[3,16,19,20,21,25,45,57,59,84,85,94,95,100,109,123,130,138,187,232,245,309],briefer:[88,109],briefli:[16,89,109],bright:[80,113,125,182,319],brightbg_sub:319,brighten:113,brighter:113,brilliant:130,bring:[23,48,52,95,99,102,120,122,132,135,214,220,223,229,307],broad:38,broadcast:[42,163,274],broader:[38,205,245],broadli:93,broken:[60,107,113,204,225,226,334],brought:101,brows:[3,9,25,38,54,57,61,68,84,89,90,102,105,122,130,135,136,137,360,361],browser:[3,8,9,16,54,62,63,68,69,74,76,89,94,95,100,102,132,133,134,135,136,137,293,294,360],brutal:232,bsd:77,btest:113,btn:17,bucket:208,buf:324,buffer:[22,33,49,136,167,267,294,324],bug:[10,13,26,37,41,53,56,59,60,69,77,93,94,95,109,122,126,130,226,245,316],buggi:[11,326],bui:[84,137,178],build:[1,6,7,9,10,11,13,14,15,27,31,36,46,50,54,56,59,62,63,67,68,74,76,78,79,80,85,86,88,95,99,104,105,107,108,111,112,118,119,121,122,124,128,129,135,136,138,139,140,148,150,154,156,157,164,165,174,179,186,192,199,204,205,211,229,232,240,245,249,250,265,276,277,320,328,355,361,362],build_exit:199,build_forest:199,build_map:199,build_match:150,build_mountain:199,build_templ:199,builder:[2,4,14,19,22,25,42,55,57,59,60,67,79,84,107,108,111,113,122,123,138,156,158,164,168,179,181,186,187,199,202,205,211,231,232,233,240,245,248,296,316,320,361,362],buildier:250,building_menu:[140,141,177],buildingmenu:[22,179],buildingmenucmdset:179,buildmap:199,buildprotocol:[262,275,276,277],buildshop:84,built:[13,16,20,27,39,50,53,54,56,57,60,62,63,72,74,76,94,95,99,102,120,121,122,134,137,138,147,176,202,204,237,244,254,259,314,316,317,320,324,326,333],builtin:[93,278],bulk:[95,102],bullet:60,bulletin:[60,78,79],bunch:[15,27,57,107,112],burden:81,buri:[107,121],burn:[60,72,89,230],busi:[63,69,89,178],butch:95,butt:137,butter:16,button:[9,13,14,31,33,42,79,82,86,87,105,130,132,133,134,136,137,158,223,225,226,230,297],button_expos:230,buy_ware_result:84,byngyri:204,bypass:[4,10,19,20,42,52,57,79,115,125,143,158,174,211,239,240,316,322,339,347],bypass_superus:79,bytecod:319,bytestr:[274,342],bytestream:342,c_creates_button:297,c_creates_obj:297,c_dig:297,c_examin:297,c_help:297,c_idl:297,c_login:297,c_login_nodig:297,c_logout:297,c_look:297,c_move:297,c_moves_:297,c_moves_n:297,c_social:297,cabl:81,cach:[6,8,11,12,28,33,38,42,85,118,124,126,136,143,153,168,173,174,186,229,230,240,244,245,269,313,314,316,317,318,330,332,342],cache_inst:332,cache_lock_bypass:240,cache_s:[308,332],cached_properti:342,cactu:219,cake:31,calcul:[10,25,27,38,72,115,118,122,138,152,183,186,197,204,216,217,219,220,250,327,329,332,342,360],calculated_node_to_go_to:50,calculu:55,calendar:[183,197,329],call:[0,2,3,4,5,6,10,11,13,14,16,20,21,22,23,25,26,27,28,29,30,31,36,38,39,40,41,42,45,46,47,48,49,50,54,55,56,57,58,59,60,61,62,63,64,68,70,71,72,73,74,79,80,82,83,84,85,87,88,89,90,92,94,95,99,101,103,104,106,107,108,109,110,113,114,115,116,117,118,119,120,121,122,124,125,126,127,130,131,132,133,134,136,137,143,145,149,150,151,152,153,155,158,163,166,167,168,169,170,173,174,178,179,181,183,184,185,186,187,188,191,192,193,194,195,196,197,199,200,202,203,204,205,211,213,214,216,217,218,219,220,222,223,225,226,229,230,231,232,233,239,240,244,245,248,249,250,255,256,257,258,259,262,265,267,269,270,274,275,276,277,278,279,280,281,283,284,285,286,287,288,289,290,292,293,294,296,297,298,303,304,305,306,307,310,313,314,316,317,319,320,321,322,324,326,328,329,332,334,335,337,338,339,342,355,360],call_async:10,call_command:126,call_ev:[0,193],call_inputfunc:[82,304,306],callabl:[48,49,50,83,108,114,122,179,187,194,214,218,245,248,249,250,255,259,263,265,267,275,321,324,326,327,335,337,338,342],callables_from_modul:342,callbac:22,callback1:326,callback:[4,10,22,27,29,33,49,50,61,73,83,114,137,145,179,183,187,191,192,193,194,195,196,197,209,214,245,255,257,258,259,263,265,267,270,274,275,276,278,292,293,296,307,326,329,335,340,342,362],callback_nam:[191,194],callbackhandl:[140,177,190,196],called_bi:149,calledbi:342,caller:[5,10,11,13,21,22,25,27,28,29,30,33,40,41,42,43,48,49,55,57,58,59,70,72,79,80,81,82,84,85,86,87,88,90,110,114,115,118,120,122,124,128,145,149,150,151,153,155,158,159,163,164,165,166,167,168,169,173,179,187,192,198,199,200,202,205,213,214,230,231,232,233,240,245,247,249,320,324,326,327,334,336,342],callerdepth:342,callertyp:149,callinthread:310,calllback:193,callsign:[50,270],calm:110,came:[9,21,25,54,78,110,131,137,196,229,233,245],camp:110,campfir:110,campsit:110,can:[0,1,2,3,4,5,6,9,10,12,13,14,15,17,19,20,21,23,24,25,26,27,28,29,30,31,33,34,35,36,37,38,39,40,41,42,43,45,47,48,49,50,52,53,55,56,57,58,59,60,61,62,63,64,65,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,129,130,132,133,134,135,136,137,138,139,142,143,145,147,150,151,152,153,155,156,158,163,164,165,166,167,168,169,173,174,175,176,178,179,181,182,183,184,186,187,188,189,193,194,196,197,198,199,202,203,204,205,208,211,214,216,217,218,219,220,223,225,226,229,230,231,232,233,237,239,240,244,245,248,249,250,251,254,255,256,257,259,265,276,280,283,285,288,289,293,294,296,297,303,304,305,306,307,310,311,312,314,315,316,317,319,320,321,322,324,325,326,327,328,334,336,337,338,339,340,342,343,355,360,361],can_:193,cancel:[27,29,73,193,196,216,217,218,219,220,245],candid:[22,33,118,132,150,202,205,245,339],candl:152,cannot:[5,9,10,11,13,14,19,21,22,25,27,28,29,31,33,38,42,43,45,49,50,52,55,59,60,62,68,69,72,75,79,84,89,103,108,111,113,121,122,126,127,132,138,143,145,155,158,174,179,186,187,191,194,196,211,214,220,226,229,230,236,239,240,245,259,314,321,323,325,328,332,342],cantanker:336,cantclear:187,cantillon:78,cantmov:25,canva:48,capabl:[6,36,42,48,57,63,79,82,87,104,155,213,270,292,355],cape:56,capfirst:68,capit:[9,12,25,29,42,63,87,94,122,158,188,203,204,319],captcha:132,captur:[25,90,137,335,360],car:[86,120],card:102,cardin:[42,43,48,57,158],care:[0,4,10,12,23,33,43,48,50,55,56,61,63,77,85,90,109,115,120,125,131,143,151,174,186,202,205,229,239,245,248,316,320,324,326,327,328,342],carefulli:[54,92,104,110,132],carri:[20,31,60,79,81,84,115,116,176,181,217,229,239,304,315],cascad:332,caseinsensitivemodelbackend:347,cast:[28,108,111,214,219],caster:[28,219],castl:[13,110,121,186,231],cat:74,catchi:4,categor:111,categori:[1,5,11,33,36,38,42,50,67,68,85,108,111,118,126,139,153,154,155,156,157,158,163,164,165,166,167,168,169,170,173,178,179,180,181,184,185,186,187,188,192,198,199,200,201,202,205,211,212,213,214,216,217,218,219,220,223,229,230,231,232,236,237,239,245,249,250,314,315,317,322,324,326,327,333,336,339,342,360],categoris:55,category2:333,category2_id:333,category_id:333,category_index:214,cater:29,caught:[41,50,96,175],caus:[11,12,29,30,31,41,59,60,63,76,79,89,95,113,115,116,118,122,126,136,139,152,185,223,225,233,245,296,328,342],caution:[61,136,326],cave:45,caveat:[5,10],caveman:55,cblue:130,cboot:[12,163],cc1:62,cccacccc:325,ccccc2ccccc:57,cccccccc:325,ccccccccccc:57,cccccccccccccccccbccccccccccccccccc:325,ccccccccccccccccccccccccccccccccccc:325,ccreat:[40,57,64,71,97,163],cdesc:[40,163],cdestroi:163,cdmset:31,cdn:102,ceas:[42,76,158],cel:325,celebr:60,cell:[57,68,110,187,325,328],celltext:325,cemit:163,censu:315,center:[4,16,38,48,108,110,113,189,248,319,328,342],center_justifi:[108,248],centos7:66,centr:110,central:[26,54,60,63,73,99,110,122,123,126,131,137,138,143,176,245,250,274,322,332,361,362],centre_east:110,centre_north:110,centre_south:110,centre_west:110,centric:[9,79,104,122,205],cert:[8,66,286,290],certain:[13,14,16,19,25,29,31,33,37,42,47,63,74,79,87,89,96,101,104,106,107,113,114,120,137,158,175,178,204,208,226,230,233,239,257,265,271,288,292,307,313,314,315,324,328,339,342,355],certainli:[15,43,137],certbot:[89,102],certfil:[286,290],certif:[8,89,286,290],cet:335,cflag:74,cgi:89,cha:[50,57],chain:[0,10,29,45,50,108,118,193,194,297,326,342],chain_1:0,chainedprotocol:285,chainsol:118,chair:[13,60,88,90,111,124],challeng:[72,78],chanalia:[42,163],chanc:[21,22,28,31,53,60,65,66,72,114,115,121,130,151,216,217,218,219,220,223,230,231,297],chance_of_act:297,chance_of_login:297,chandler:115,chang:[2,3,4,7,8,9,11,12,13,14,15,16,19,20,21,22,23,26,29,30,31,33,34,35,36,37,38,40,41,42,44,46,48,49,50,53,56,60,61,62,63,65,67,70,72,73,74,76,77,79,80,82,83,84,85,86,88,89,90,93,94,95,99,101,103,104,106,108,109,110,111,113,114,115,117,120,122,124,125,126,129,131,132,133,134,136,137,138,143,144,152,153,155,156,158,163,164,169,172,174,178,179,181,185,186,188,189,191,194,196,200,201,204,205,211,212,214,216,217,218,219,220,229,230,231,232,233,237,242,245,250,252,254,255,257,259,265,270,281,296,303,304,311,313,314,316,320,323,324,327,328,335,336,337,338,360],change_name_color:214,changeabl:75,changelog:95,changepag:133,chanlist:[42,163],channam:40,channel:[2,6,7,11,12,19,27,31,33,44,54,64,69,70,71,78,79,81,85,86,89,97,106,111,118,122,123,124,137,138,143,145,149,151,152,158,163,167,171,172,173,174,175,176,194,269,276,277,284,297,304,306,314,322,335,339,358,360,362],channel_:34,channel_ban:[40,163],channel_color:25,channel_command_class:[34,40],channel_connectinfo:304,channel_detail:360,channel_handl:[140,173],channel_list:360,channel_prefix:[25,174],channel_search:175,channel_set:176,channel_typeclass:358,channeladmin:172,channelam:173,channelattributeinlin:172,channelcmdset:31,channelcommand:[34,40,173],channelconnect:176,channelcr:[42,163],channelcreateview:174,channeldb:[40,124,140,172,174,176,312],channeldb_db_attribut:172,channeldb_db_tag:172,channeldb_set:[314,317],channeldbmanag:[175,176],channeldeleteview:174,channeldesc:[40,173],channeldetailtest:358,channeldetailview:[174,360],channelhandl:[34,40,140,141,149,171,174],channelkei:[40,173,175],channellist:[42,163],channellisttest:358,channellistview:360,channelmanag:[174,175],channelmixin:360,channelnam:[34,40,71,145,173,276],channeltaginlin:172,channelupdateview:174,char1:[42,72,126,164,358],char2:[42,72,126,164,358],char_health:231,char_nam:132,charac:83,charact:[0,2,5,9,11,14,15,17,19,20,21,22,23,27,28,29,30,31,33,34,36,38,39,40,41,42,44,46,48,49,50,54,55,56,61,67,68,70,73,75,76,79,80,84,85,86,87,90,94,96,101,104,110,112,113,115,116,117,118,119,120,123,124,126,128,134,135,137,138,140,142,143,150,151,153,155,158,159,160,164,165,166,173,174,179,180,181,186,187,188,189,191,193,194,196,198,199,201,203,204,205,208,213,214,216,217,218,219,220,222,229,230,231,233,237,240,245,257,270,291,304,309,314,316,319,320,325,326,328,334,340,342,343,355,358,360,362],character1:72,character2:72,character_cmdset:186,character_form:360,character_id:245,character_list:360,character_manage_list:360,character_typeclass:[126,143,340,358],charactercmdset:[5,21,22,25,30,31,40,42,43,56,57,59,61,80,122,160,179,181,186,198,201,211,216,217,218,219,220,231],charactercreateview:[358,360],characterdeleteview:[358,360],characterdetailview:360,characterform:[355,360],characterlistview:[358,360],charactermanageview:[358,360],charactermixin:360,characternam:113,characterpuppetview:[358,360],charactersheet:50,characterupdateform:[355,360],characterupdateview:[358,360],charapp:132,charat:187,charcreat:[0,45,68,155,180],chardata:57,chardelet:155,chardeleteview:[237,316],chardetailview:[237,316],charfield:[85,132,144,235,242,313,338,355],charg:89,chargen:[132,138,140,141,174,177,237,316],chargencmdset:122,chargenroom:122,chargenview:[237,316],charnam:[42,57,155],charpuppetview:316,charset:342,charsheet:57,charsheetform:57,charupdateview:[237,316],chase:121,chat:[1,2,9,26,34,37,47,54,57,59,62,64,69,71,78,79,97,122,130,138,294,335],chatroom:56,chatzilla:71,cheap:130,cheaper:[60,114],cheapest:89,cheapli:231,cheat:[23,72],cheatsheet:47,check:[0,4,5,12,13,14,19,22,25,26,27,28,29,31,33,36,37,38,39,40,41,42,43,45,48,50,53,55,57,59,62,64,67,68,69,70,72,76,80,81,84,85,86,88,89,90,94,96,97,99,101,102,105,108,109,110,111,113,114,115,116,117,118,120,122,124,126,127,129,130,132,135,136,137,138,143,144,149,150,151,152,153,155,157,158,164,165,166,168,170,174,176,178,180,181,185,186,187,194,198,216,217,218,219,220,222,223,226,229,231,232,233,239,240,244,245,249,250,254,256,257,264,265,269,274,280,285,289,304,306,308,309,310,313,314,316,317,319,320,322,336,337,342,343,360],check_attr:158,check_circular:294,check_databas:265,check_db:265,check_defeat:72,check_end_turn:115,check_error:264,check_evennia_depend:342,check_from_attr:158,check_grid:48,check_has_attr:158,check_light_st:231,check_lockstr:[4,79,240],check_main_evennia_depend:265,check_obj:158,check_permiss:249,check_permstr:[143,316],check_show_help:165,check_to_attr:158,check_warn:264,checkbox:132,checker:[15,48,93,239,285,343],checkout:[9,99,130],checkoutdir:36,chest:[79,90],child:[6,33,42,50,63,79,95,115,145,147,153,158,169,231,244,250,254,310,333],childhood:50,children:[21,33,63,95,111,116,118,124,147,244,245,254,265,315,333],chillout:[42,158],chime:27,chines:[25,78,112],chip:57,chmod:36,choci:179,chocol:59,choic:[4,15,23,33,42,50,54,59,77,89,90,94,104,106,108,112,115,118,123,126,128,131,143,155,158,178,179,187,216,232,248,263,324,326],choice1:128,choice2:128,choice3:128,choos:[7,9,10,13,48,50,56,61,63,71,72,84,100,105,115,119,122,125,132,134,137,138,139,213,214,216,217,218,219,220,223,229,278,326,341,362],chop:[33,230],chore:67,chose:[53,57,85,102,132,214],chosen:[22,50,87,105,115,131,137,187,189,326],chown:99,chractercmdset:231,christin:95,chrome:24,chronicl:187,chroot:66,chug:33,chunk:[13,68,110,267,320,334],church:27,church_clock:27,cid:297,cillum:51,circl:38,circuit:136,circular:[267,321],circumst:[45,50,56,84,118,151,219,355],circumv:[42,156],clang:74,clank:0,clarif:[1,47],clarifi:25,clariti:[74,85,90,122],clash:[23,31,42,89,158,173,316],class_from_modul:342,classic:[3,13,78,104,111,114,115],classmethod:[38,143,174,237,245,257,316,332,349],classnam:11,classobj:316,claus:[77,117],clean:[1,4,17,25,28,42,47,50,75,109,110,113,115,121,130,144,151,153,158,174,178,205,216,217,218,219,220,226,230,231,233,245,254,265,269,283,293,306,313,316,319,324,326,332,338,341,342,355],clean_attr_valu:313,clean_attribut:[124,143,316],clean_cmdset:[124,316],clean_senddata:306,clean_str:319,clean_usernam:144,cleaned_data:132,cleaner:[90,122],cleanli:[63,101,104,109,149,153,163,173,187,267,276,282,293,306,324],cleanup:[1,11,22,33,39,42,44,49,50,101,126,144,168,178,231,326,361],clear:[1,4,11,12,15,22,29,33,37,39,42,47,49,58,60,63,68,69,72,80,103,109,110,111,112,114,124,127,128,130,131,136,137,152,155,156,158,164,173,187,203,205,226,231,240,244,245,255,259,267,304,314,316,317,326,332],clear_attribut:314,clear_client_list:301,clear_cont:[88,245],clear_exit:[88,245],clearal:[42,128,164],clearli:[12,37,47,127,226,332],cleartext:[209,322],clemesha:310,clever:[10,31,50,94,240],cleverli:104,click:[36,68,89,100,105,113,127,130,132,134,136,137,326],clickabl:18,client:[3,7,8,9,12,22,23,25,30,33,36,39,42,44,49,51,53,54,59,62,63,64,66,71,73,74,78,80,83,90,94,95,99,100,102,103,104,106,107,110,112,113,115,116,125,127,135,137,138,140,143,145,153,155,168,209,260,262,266,268,270,274,275,276,277,278,279,280,281,283,285,287,288,289,290,292,293,294,296,297,303,304,305,306,323,324,326,341,342,360,362],client_address:39,client_default_height:51,client_disconnect:294,client_encod:23,client_opt:[270,289],client_secret:64,client_width:[33,153],clientconnectionfail:[262,276,277],clientconnectionlost:[262,276,277],clientfactori:296,clienthelp:136,clientraw:[42,168],clientsess:[293,294],cliff:[20,42,158],climat:111,climb:[33,42,54,76,92,158,230],climbabl:230,clipboard:[1,47],clist:[42,163],clock:[12,27,33,72,163],clone:[46,62,63,75,95,127,129],close:[0,14,22,25,38,39,40,42,45,47,49,50,63,68,75,89,93,95,99,102,104,105,109,124,130,132,136,168,170,178,179,185,189,211,220,223,225,226,267,275,276,283,285,293,294,306,314,320,326,334],close_lid:225,close_menu:326,closedlidst:226,closelidev:226,closer:[204,220],closest:[38,113,342],cloth:[140,141,177,320],clothedcharact:181,clothedcharactercmdset:181,clothes_list:181,clothing_typ:181,clothing_type_count:181,clothing_type_ord:181,cloud:[89,99,101,102,131],cloud_keep:199,cloudi:101,clr:[113,249,334],cls:[38,143],clue:230,clunki:[130,220],clutter:152,cma:130,cmd:[12,14,22,25,28,29,31,33,40,42,43,57,59,61,70,79,81,84,87,94,120,122,151,153,155,156,157,158,163,164,165,166,167,168,169,170,173,178,179,180,181,184,185,186,187,188,192,198,199,200,201,202,205,211,212,213,214,216,217,218,219,220,223,229,230,231,232,234,245,289,293,294,320,324,326,327],cmd_arg:90,cmd_channel:[33,149],cmd_ignore_prefix:150,cmd_kei:90,cmd_last:104,cmd_last_vis:104,cmd_loginstart:33,cmd_multimatch:[33,149],cmd_na_m:87,cmd_name:87,cmd_noinput:[33,149,326],cmd_nomatch:[33,149,231,326],cmd_noperm:33,cmd_on_exit:[50,187,214,247,326],cmd_total:104,cmdabil:[59,126],cmdabout:168,cmdaccept:178,cmdaccess:164,cmdaddcom:163,cmdallcom:163,cmdapproach:220,cmdarmpuzzl:202,cmdasync:10,cmdattack:[29,72,115,122,216,217,218,219,220,230],cmdban:156,cmdbatchcod:157,cmdbatchcommand:157,cmdbigsw:29,cmdblindhelp:223,cmdblindlook:223,cmdblock:25,cmdboot:156,cmdbridgehelp:231,cmdbui:84,cmdbuildshop:84,cmdcallback:192,cmdcast:219,cmdcboot:163,cmdcdesc:163,cmdcdestroi:163,cmdcemit:163,cmdchannel:163,cmdchannelcr:163,cmdcharactercr:180,cmdcharcreat:155,cmdchardelet:155,cmdclimb:230,cmdclock:163,cmdcloselid:223,cmdcolortest:155,cmdcombathelp:[216,217,218,219,220],cmdconfigcolor:80,cmdconfirm:33,cmdconnect:40,cmdcopi:158,cmdcover:181,cmdcpattr:158,cmdcraftarmour:29,cmdcreat:158,cmdcreatenpc:122,cmdcreatepuzzlerecip:202,cmdcwho:163,cmddarkhelp:231,cmddarknomatch:231,cmddeclin:178,cmddefend:115,cmddelcom:163,cmddesc:[158,186],cmddestroi:158,cmddiagnos:30,cmddice:[57,184],cmddig:158,cmddisconnect:40,cmddisengag:[115,216,217,218,219,220],cmddoff:217,cmddon:217,cmddrop:[164,181],cmdeast:231,cmdecho:[5,29,33],cmdedit:179,cmdeditnpc:122,cmdeditorbas:324,cmdeditorgroup:324,cmdeditpuzzl:202,cmdemit:156,cmdemot:205,cmdentertrain:120,cmdevalu:178,cmdevmenunod:326,cmdexamin:158,cmdexiterror:43,cmdexiterroreast:43,cmdexiterrornorth:43,cmdexiterrorsouth:43,cmdexiterrorwest:43,cmdextendedroomdesc:186,cmdextendedroomdetail:186,cmdextendedroomgametim:186,cmdextendedroomlook:186,cmdfeint:115,cmdfight:[216,217,218,219,220],cmdfind:158,cmdfinish:178,cmdforc:156,cmdget:[25,164],cmdgetinput:326,cmdgetweapon:230,cmdgive:[164,181],cmdgmsheet:57,cmdhandler:[31,33,82,88,140,141,143,148,150,151,152,153,155,166,167,169,173,186,202,244,245,254,342],cmdhelp:[115,165,216,217,218,219,220],cmdhit:115,cmdhome:164,cmdic:155,cmdid:270,cmdinsid:120,cmdinterrupt:169,cmdinventori:[81,164,181],cmdirc2chan:163,cmdlaunch:21,cmdlearnspel:219,cmdleavetrain:120,cmdlen:[150,167],cmdlight:230,cmdline:265,cmdlineinput:324,cmdlink:158,cmdlistarmedpuzzl:202,cmdlistcmdset:158,cmdlisthangout:118,cmdlistpuzzlerecip:202,cmdlock:158,cmdlook:[30,52,126,164,180,186,231],cmdlookbridg:231,cmdlookdark:231,cmdmail:198,cmdmailcharact:198,cmdmakegm:57,cmdmapbuild:199,cmdmask:205,cmdmobonoff:229,cmdmore:327,cmdmorelook:327,cmdmultidesc:[56,201],cmdmvattr:158,cmdmycmd:[55,67],cmdname2:150,cmdname3:150,cmdname:[39,58,73,82,87,122,136,149,150,153,158,166,167,169,270,288,289,293,294,306],cmdnamecolor:214,cmdnewpassword:156,cmdnick:164,cmdnoinput:179,cmdnomatch:179,cmdnpc:122,cmdnudg:223,cmdobj:[149,150,167,169],cmdobj_kei:149,cmdobject:[149,150,168],cmdoffer:178,cmdooc:155,cmdooccharactercr:180,cmdooclook:[155,180],cmdopen:[158,211],cmdopenclosedoor:211,cmdopenlid:223,cmdoption:155,cmdpage:163,cmdparri:115,cmdparser:[103,140,141,148],cmdpass:[216,217,218,219,220],cmdpassword:155,cmdperm:156,cmdplant:232,cmdpoke:118,cmdpose:[115,164,205],cmdpressbutton:230,cmdpush:223,cmdpy:168,cmdquell:155,cmdquit:155,cmdread:230,cmdrecog:205,cmdreload:168,cmdremov:181,cmdreset:168,cmdrest:[216,217,218,219,220],cmdroll:90,cmdrss2chan:163,cmdsai:[115,164,205],cmdsaveyesno:324,cmdscript:[158,168],cmdsdesc:205,cmdser:326,cmdserverload:168,cmdservic:168,cmdsession:155,cmdset:[2,7,14,21,22,25,31,33,34,39,40,41,43,46,50,56,59,61,67,68,80,84,88,95,96,104,115,120,122,140,141,143,148,149,150,152,153,158,159,160,161,162,165,166,167,168,169,173,178,179,180,181,184,186,188,192,198,200,202,205,212,213,216,217,218,219,220,223,226,229,230,231,232,239,244,245,254,296,303,304,316,324,326,327],cmdset_account:[2,140,148,154,180],cmdset_charact:[5,95,140,148,154,181,216,217,218,219,220],cmdset_mergetyp:[50,187,247,326],cmdset_prior:[50,187,247,326],cmdset_red_button:[140,177,221],cmdset_sess:[104,140,148,154],cmdset_stack:152,cmdset_storag:[147,244,304],cmdset_trad:178,cmdset_unloggedin:[33,140,148,154,185,200],cmdsetattribut:158,cmdsetclimb:230,cmdsetcrumblingwal:230,cmdsetdesc:164,cmdsethandl:[104,140,141,148],cmdsethelp:165,cmdsethom:158,cmdsetkei:31,cmdsetkeystr:151,cmdsetlight:230,cmdsetmor:327,cmdsetobj:[151,152,159,160,161,162,178,179,180,181,184,186,200,202,205,213,216,217,218,219,220,223,229,230,231,324,326,327],cmdsetobjalia:158,cmdsetpow:122,cmdsetread:230,cmdsetspe:212,cmdsettestattr:49,cmdsettrad:178,cmdsettrain:120,cmdsetweapon:230,cmdsetweaponrack:230,cmdsheet:57,cmdshiftroot:230,cmdshoot:[21,220],cmdshutdown:168,cmdsmashglass:223,cmdsmile:33,cmdspawn:158,cmdspellfirestorm:28,cmdstatu:[178,219,220],cmdstop:212,cmdstring:[33,57,149,153,166,167,169],cmdstyle:155,cmdtag:158,cmdtalk:213,cmdteleport:158,cmdtest:[29,41,90],cmdtestid:33,cmdtestinput:50,cmdtestmenu:[50,187,326],cmdtime:[61,168],cmdtrade:178,cmdtradebas:178,cmdtradehelp:178,cmdtunnel:158,cmdtutori:231,cmdtutoriallook:231,cmdtutorialsetdetail:231,cmdtweet:70,cmdtypeclass:158,cmdunban:156,cmdunconnectedconnect:[170,185],cmdunconnectedcr:[170,185],cmdunconnectedhelp:[170,185],cmdunconnectedlook:[170,185],cmdunconnectedquit:[170,185],cmduncov:181,cmdunlink:158,cmdunloggedinlook:200,cmdunwield:217,cmduse:218,cmdusepuzzlepart:202,cmdwait:33,cmdwall:156,cmdwear:181,cmdwerewolf:25,cmdwest:231,cmdwhisper:164,cmdwho:155,cmdwield:217,cmdwipe:158,cmdwithdraw:220,cmset:152,cmsg:[42,163],cmud:24,cnf:[23,36],cnt:118,coast:[110,121],coastal:110,cockpit:21,code:[0,1,2,4,5,6,7,9,10,11,12,14,15,16,18,19,20,29,31,33,34,36,37,38,39,42,44,45,46,47,48,50,52,54,55,56,57,61,62,63,67,68,69,75,76,78,79,83,85,87,88,90,92,93,94,95,96,97,99,101,102,103,104,105,108,109,110,111,113,114,115,116,117,118,120,121,122,124,125,126,128,131,133,134,135,138,140,141,143,148,149,152,155,157,158,163,168,171,177,178,179,183,184,189,191,194,199,203,218,231,232,240,250,254,276,277,293,304,307,316,318,319,324,326,328,339,340,341,342,360,361,362],code_exec:320,codebas:[54,55,126,128,130,138,139,169],codec:319,codefunc:324,coder:[22,26,55,60,78,95,123,149,245,361],coerc:337,coexist:125,coin:[60,69,178],col:[3,16,328],cold:[12,42,109,168,250,255,259,303],cole:342,collabor:[4,60,63,89,130,165],collat:[82,249],collect:[11,26,31,52,135,149,151,202,257,314,342],collector:135,collectstat:[135,136,265,269],collid:[31,53,89,326],collis:[31,130],colon:[27,40,59,79,94,240],color:[16,18,20,33,48,50,57,58,62,68,73,78,94,108,110,113,123,128,136,138,153,155,182,189,205,214,232,249,270,277,285,288,293,294,319,328,334,336,341,343,362],color_ansi_bright_bg_extra_map:182,color_ansi_bright_bgs_extra_map:182,color_ansi_extra_map:182,color_markup:[140,141,177],color_no_default:182,color_typ:319,color_xterm256_extra_bg:182,color_xterm256_extra_fg:182,color_xterm256_extra_gbg:182,color_xterm256_extra_gfg:182,colorablecharact:80,colorback:341,colorcod:341,colour:[27,42,54,138,158,292,319,328],column:[16,45,48,57,63,68,85,110,136,153,155,233,328,342],com:[8,9,22,23,42,53,54,62,66,74,78,89,93,97,99,102,107,127,129,130,132,134,137,140,163,179,185,277,280,289,293,310,328,341,342,355],comb:1,combat:[11,14,25,28,31,45,54,62,63,72,78,101,107,108,110,116,121,123,124,130,138,152,216,217,218,219,220,229,254,362],combat_:[216,217,218,219,220],combat_cleanup:[216,217,218,219,220],combat_cmdset:115,combat_handl:115,combat_handler_:115,combat_movesleft:[216,217,218,219],combat_scor:122,combat_status_messag:220,combatcmdset:115,combathandl:115,combatscor:122,combatt:11,combin:[8,11,12,20,27,28,30,31,33,34,40,42,54,56,57,83,89,108,111,113,114,117,118,120,126,149,150,151,158,174,201,202,204,225,240,249,259,265,315,317,322,336,342],combo:104,come:[0,2,3,4,6,10,11,15,16,20,21,23,25,27,29,33,34,39,45,48,50,51,54,56,57,60,61,63,68,72,79,82,84,87,90,92,99,104,110,113,115,117,118,120,122,123,125,128,130,132,133,134,136,143,151,186,203,216,217,218,219,220,250,283,288,293,294,296,302,319,327,360],comet:[39,54,136,294],comfort:[15,54,68,90,130],comlist:[42,163],comm:[33,34,40,46,63,67,70,140,141,148,154,322],comma:[20,42,45,85,94,113,133,158,166,167,197,198,240,245,334],command:[0,2,4,6,8,9,10,11,12,13,15,18,19,20,21,23,24,26,27,34,36,39,45,46,47,48,49,50,51,54,55,56,58,60,62,63,64,65,66,68,71,72,73,74,75,76,78,79,82,85,86,88,89,91,92,94,95,97,101,102,103,104,105,107,108,109,110,111,112,113,116,117,118,119,121,123,124,125,127,128,130,135,136,137,138,139,140,141,143,145,173,174,177,178,179,180,181,184,185,186,187,188,190,193,195,196,198,199,200,201,202,205,209,211,212,213,214,216,217,218,219,220,223,225,226,229,230,231,232,233,234,237,239,240,245,249,250,254,262,265,270,274,275,283,285,288,289,293,294,296,297,303,304,316,318,319,322,324,326,327,336,339,342,360,362],command_default_arg_regex:33,command_default_class:25,command_pars:150,commandhandl:[73,152,167,342],commandmeta:153,commandnam:[33,73,82,232,265,274,304,306],commandset:[5,79,88,152,180],commandtest:[126,169,195],comment:[8,9,13,14,24,25,37,40,47,59,89,95,117,124,137,320],commerc:78,commerci:[89,105],commerror:175,commit:[15,23,25,36,37,63,65,97,99,107,127,129,208,313],commmand:[211,216,217,218,219,220],common:[1,6,10,12,15,16,20,26,27,30,33,39,40,42,50,58,59,60,61,62,63,67,68,72,73,78,79,82,87,89,90,93,96,104,106,108,111,112,114,115,118,122,123,124,130,132,138,151,158,178,204,205,212,240,254,293,297,315,325,337,339,342,348,360],commonli:[23,52,62,63,82,85,86,95,103,104,106,114,118,127,245],commun:[8,22,23,33,39,40,44,46,54,56,59,63,69,71,78,82,87,89,90,91,102,105,112,113,136,138,160,171,173,174,175,176,198,244,262,274,275,285,286,288,289,290,291,304,306,322,323,338,362],compact:[84,133],compani:[63,87],compar:[4,9,13,15,27,28,29,31,40,43,57,72,82,84,90,96,115,118,122,126,130,169,199,202,204,216,217,218,219,220,239,240,250,319,342],comparison:[13,92,239,250,326],compartment:57,compass:20,compat:[14,21,50,93,158,328,335],compet:[15,87],compil:[9,33,46,55,62,74,75,89,93,94,107,158,164,165,170,173,181,200,205,319,324,341],compilemessag:75,complain:[41,59,85,90,109,127],complement:[26,106],complementari:112,complet:[2,10,11,13,14,15,22,23,25,27,31,33,36,37,42,43,48,49,50,52,57,58,60,61,63,69,76,80,84,87,88,89,94,95,101,103,104,106,109,110,121,122,126,127,130,138,143,151,152,153,166,168,173,182,186,187,189,194,196,199,217,231,245,265,267,275,276,293,320,325,326,327,334,339,342,355],complete_task:194,completli:226,complex:[11,14,15,20,31,33,58,60,61,63,72,75,76,85,92,95,99,103,107,110,114,115,122,126,137,152,195,203,213,250,297],complianc:[24,186],compliant:[38,289],complic:[0,10,22,29,40,42,48,68,89,90,110,132,133,170,185,187,214,314],compon:[29,33,39,42,48,57,89,92,93,95,101,109,113,115,123,126,134,136,137,138,158,168,174,175,176,183,202,204,250,251,254,257,265,294,322,325,339,342,362],componentid:136,componentnam:136,componentst:[136,137],compos:[99,187],composit:[291,315],comprehens:[34,54,62,79,92,95,102,123,124,126],compress:[73,270,274,278,338],compress_object:338,compris:143,compromis:[102,208],comput:[10,12,42,48,55,59,62,63,71,72,99,112,114,123,130,131,156,168,205,342,343],computation:114,comsystem:[163,176],con:[42,57,78,170,185],concaten:[319,334],concept:[11,37,38,39,45,56,60,68,75,76,91,95,114,123,130,138,180,201],conceptu:[48,50],concern:[43,62,75,87,94,95,151,203,237],conch:[93,285,288,296],conclud:[95,178,326],concurr:23,conda:9,conder:320,condit:[8,45,48,54,60,72,84,90,92,95,122,123,149,184,205,218,240,245,257,264,265,310,342],condition:25,condition_result:184,condition_tickdown:218,conditional_flush:332,conduct:135,conductor:120,conect:306,conf:[4,8,9,23,25,35,36,39,40,46,53,61,64,66,68,73,75,79,80,85,89,92,102,108,113,119,120,126,130,132,133,134,138,143,182,200,265,271,272,311,320,335,362],confer:[78,342],confid:[37,38,41],config:[2,4,9,36,39,58,62,89,97,102,105,129,130,136,137,138,261,265,267,271,272,283,362],config_1:2,config_2:2,config_3:2,config_color:80,configcmd:80,configdict:[285,306],configur:[0,2,7,25,36,42,44,46,53,58,61,62,63,66,68,89,99,102,113,119,123,126,135,137,138,143,147,150,155,208,209,232,258,267,272,283,306,310,311,315,355,362],configut:105,configvalu:58,confirm:[8,33,42,62,102,136,158,185,202,289,292,360],conflict:[40,41,125],confus:[10,22,26,31,43,57,58,59,63,76,79,86,89,90,92,96,113,118,125,130,135,136,139,185,360],conid:284,conjur:219,conn:[42,170,185],conn_tim:104,connect:[0,2,4,7,8,9,11,12,13,17,18,23,24,25,31,33,34,39,40,45,46,48,54,56,59,62,63,64,65,68,71,73,75,76,79,82,84,87,88,90,91,92,95,97,99,100,101,102,103,104,106,109,110,113,119,122,124,125,126,135,136,138,143,145,147,155,156,158,163,170,174,176,185,189,191,192,194,196,200,209,212,244,245,251,260,262,265,267,274,275,276,277,278,283,284,285,288,293,294,296,297,303,304,305,306,307,310,314,316,322,338,362],connection_cr:106,connection_screen:[35,103,200],connection_screen_modul:185,connection_set:53,connection_tim:[143,245],connection_wizard:[140,141,260],connectiondon:267,connectionlost:[267,274,275,285,288,296],connectionmad:[262,274,285,288,296],connectionwizard:263,connector:[262,276,277,283,306],consecut:50,consequ:[89,152],consid:[0,4,10,12,13,14,23,26,27,31,33,37,38,39,43,45,50,54,56,60,62,63,69,73,77,79,81,84,85,89,92,95,96,101,102,104,108,111,112,113,114,118,120,124,130,132,133,134,143,151,187,202,204,205,220,232,245,250,254,270,285,288,315,320,321,326,327],consider:[67,85,103,110,117,239,250,328],consist:[2,11,17,33,43,45,47,50,67,79,85,91,94,95,108,109,113,115,121,122,134,136,143,150,166,175,178,202,204,234,240,248,250,289,294,304,313,314,316,322,327,328,342,360],consol:[9,19,23,26,41,42,59,62,63,74,89,92,94,95,96,99,105,113,122,136,137,168,205,265],conson:204,constant:[0,87,274,340],constantli:[95,116,231],constitu:[152,166,167],constraint:[0,23],construct:[20,29,34,36,50,63,118,132,137,250,309,314,319,327,355],constructor:[22,33,179,276],consum:[10,267,342],consumer_kei:[70,119],consumer_secret:[70,119],consumpt:[23,308],contact:[88,89,99,136],contain:[0,5,7,9,10,11,13,14,16,17,18,20,21,22,25,26,31,33,34,37,38,39,40,42,45,46,50,54,55,56,61,62,63,67,68,74,78,79,85,88,90,94,95,96,100,101,103,104,113,117,118,121,122,123,125,126,127,128,132,133,135,136,137,138,140,141,143,145,148,149,150,151,152,154,157,158,165,171,179,187,188,191,192,193,194,195,196,197,199,202,203,204,205,209,210,212,214,218,223,230,232,233,236,238,245,247,248,249,250,258,260,264,268,270,296,309,310,314,315,316,317,318,319,320,323,325,326,327,328,339,341,342,343,353,360,361],container:99,contempl:55,content:[3,4,13,16,17,21,27,38,42,47,48,52,55,57,68,76,78,81,84,88,89,90,92,94,95,116,118,120,122,124,130,132,133,136,137,138,153,156,158,205,244,245,313,317,319,320,321,324,327,328,339,344,353],content_typ:[244,245],contentof:328,contents_cach:244,contents_get:[118,245],contents_set:245,contentshandl:244,context:[45,54,68,90,113,118,125,132,179,194,286,290,348,360],contextu:111,continu:[7,10,11,21,27,29,33,37,41,44,45,48,50,54,57,59,68,70,74,84,85,89,94,95,111,113,114,115,118,122,123,126,135,138,199,245,263,274,310,314,326,335,342,362],contrari:[0,40,42,61,168,317],contrast:[55,89,95,112,137,289],contrib:[4,13,14,20,46,56,57,61,62,63,72,77,101,115,121,140,141,143,144,147,172,235,242,252,261,307,313,320,347,355,360,362],contribrpcharact:205,contribrpobject:205,contribrproom:205,contribut:[1,4,22,26,44,54,69,77,81,123,126,130,135,138,177,178,180,181,182,184,186,198,199,200,202,203,205,208,209,211,212,213,232,362],contributor:[77,179],control:[2,5,7,9,11,12,13,14,19,20,21,24,31,33,34,36,37,41,42,46,49,50,51,52,54,56,57,60,62,63,67,72,73,79,80,82,85,88,89,91,92,95,101,102,104,107,108,109,113,117,120,122,123,127,134,137,138,143,145,155,157,158,163,178,180,193,205,226,229,231,233,239,245,254,265,304,306,316,326,355,362],convei:[196,205,245],convenei:106,conveni:[8,9,10,11,21,34,36,39,40,42,50,54,56,58,68,73,79,85,88,95,97,101,105,107,108,109,124,126,132,139,143,158,168,179,198,199,245,308,320,321,326,327,335,338,339],convent:[0,31,85,95,106,118,125],convention:[40,153,173,245,316],convers:[50,86,120,126,137,204,213,293,294,319,342,361],convert:[11,27,38,39,48,58,61,63,78,80,82,84,86,87,102,108,112,113,118,125,127,156,183,184,187,214,239,249,250,255,274,276,285,288,289,306,310,319,323,327,328,329,334,338,341,342],convert_linebreak:341,convert_url:341,convinc:[50,89],cool:[3,9,21,22,26,42,60,78,158],cool_gui:79,cooldown:[29,115,123,138,362],coord:38,coordi:38,coordin:[48,123,136,138,199,220,233,362],coordx:38,coordz:38,cope:219,copi:[0,1,4,13,14,20,25,26,33,36,46,47,49,50,61,63,80,89,92,95,99,103,104,108,110,122,127,130,132,134,135,136,137,157,158,181,194,216,217,218,219,220,231,245,265,274,311,319,335,360],copy_object:245,copyright:[77,89],cor:137,core:[19,37,42,46,48,75,77,87,88,93,95,103,105,124,126,130,138,143,147,168,176,177,196,198,237,239,244,245,254,260,272,282,289,303,314,316,317,320,327,333,355,360],corner:[17,38,56,78,137,233,328],corner_bottom_left_char:328,corner_bottom_right_char:328,corner_char:328,corner_top_left_char:328,corner_top_right_char:328,corpu:204,correct:[10,11,14,21,23,27,30,31,33,37,42,47,49,59,79,90,112,113,120,122,125,136,149,155,158,175,186,202,227,240,280,283,285,291,305,319,342],correctli:[4,8,9,27,29,33,36,41,43,48,49,50,60,61,71,76,79,84,89,90,93,96,109,111,114,120,121,122,125,143,147,152,155,255,274,310,338],correl:250,correspond:[20,33,79,84,104,134,183,199,202,214,313,355],correspondingli:127,corrupt:55,cosi:110,cosin:342,cosmet:233,cost:[28,84,89,219,233],cottag:[110,113],could:[0,1,2,3,4,5,6,9,10,11,12,13,14,15,19,20,21,22,25,28,29,30,31,33,34,36,37,38,39,40,41,42,43,45,46,47,48,50,54,56,57,59,60,61,62,63,64,67,68,70,71,72,78,79,80,81,82,83,84,85,86,87,88,89,90,92,94,95,97,101,105,107,108,110,111,112,113,114,115,116,117,118,119,120,122,124,125,126,127,128,131,132,134,135,137,139,143,152,158,165,175,176,178,179,184,189,196,197,203,205,212,214,231,233,239,240,245,270,289,294,310,316,319,320,324,328,329,332,337,342],couldn:[11,19,38,43,63,75,90,125,133,139,203],count:[63,101,103,115,118,119,151,181,214,218,245,257,279,283,296,300,306,308,315,319,326,335],count_loggedin:283,count_queri:300,countdown:[20,29],counter:[6,22,29,68,84,104,115,127,145,231,283,296,297,304,326],counterpart:[13,113,270,306,323],countless:94,countri:[42,156],coupl:[22,47,68,99,116,130,212],cours:[0,4,9,12,15,21,22,26,33,40,45,56,60,63,76,77,90,92,105,107,113,114,121,122,123,129,131,139,217,220],courtesi:12,cousin:[90,128],cover:[6,8,9,13,14,23,29,37,39,47,56,58,62,78,79,85,89,94,95,119,126,130,181,186,231,245,342,361],coverag:126,coveral:126,cpanel:89,cpattr:158,cpu:[12,42,89,102,168],cpython:92,crack:[60,85],craft:[29,79,110,187],crank:[114,256],crash:[26,59,60,78,102,110,269,314],crate:[20,86,123],crawl:102,crawler:279,cre:[42,170,185],creat:[4,9,11,13,14,15,16,19,22,23,25,26,29,31,34,35,37,38,39,40,41,43,45,46,48,49,50,53,54,55,56,57,59,60,61,62,63,64,65,67,69,70,71,72,74,75,76,77,78,79,80,84,86,89,90,92,94,95,101,102,103,104,105,106,107,108,111,115,116,117,118,119,121,123,126,128,129,130,131,133,134,135,136,137,138,139,140,141,143,144,145,147,149,150,151,152,153,155,158,163,164,165,166,167,169,170,173,174,176,178,179,180,181,183,184,185,186,187,188,193,194,195,197,198,199,200,201,202,203,204,205,209,211,213,214,216,217,218,219,220,222,223,225,226,229,230,231,232,233,237,240,242,244,245,247,248,249,250,254,257,258,259,262,265,269,270,275,277,278,283,285,286,290,297,305,306,310,314,315,316,317,318,320,321,324,325,326,328,329,334,335,342,358,360,361],create_:[88,124],create_account:[106,124,140,322],create_attribut:314,create_cal:143,create_channel:[34,140,173,174,269,322],create_charact:[143,245],create_delai:258,create_exit:[158,211],create_exit_cmdset:245,create_forward_many_to_many_manag:[147,176,237,244,254,314,316,317,333],create_game_directori:265,create_grid:48,create_help_entri:[67,140,322],create_kwarg:250,create_match:150,create_messag:[34,140,322],create_object:[13,27,79,84,88,110,122,124,132,140,245,250,269,320,322],create_prototyp:[249,250],create_script:[55,101,115,124,140,257,320,322],create_secret_kei:265,create_settings_fil:265,create_superus:265,create_tag:315,create_wild:233,created_on:191,createview:360,creation:[11,14,20,21,42,46,48,50,57,59,60,78,79,80,85,88,96,104,110,122,124,130,132,138,139,140,143,144,147,158,165,174,180,199,202,205,209,211,216,217,218,219,220,230,231,237,242,244,245,250,254,259,298,313,316,322,324,325,326,328,355,360,361],creation_:322,creativ:[78,107],creator:[50,78,79,110,122,139,165,174,199,216,217,218,219,220,245,328],cred:[93,130,285],credenti:[89,102,130,143,285],credentialinterfac:285,credit:[89,102,130,341,342],creset:130,crew:118,criteria:[50,118,175,193,203,249,315,339],criterion:[118,130,143,178,205,236,245,256,339,342],critic:[19,26,31,59,62,96,101,104,113,127,240,264,265,335],critici:316,crop:[57,113,158,325,328,334,342],crop_str:328,cross:[110,137,231,328],crossbario:293,crossbow:29,crossroad:110,crowd:[60,102],crt:[8,66],crucial:[90,114],crude:0,cruft:1,crumblingwal:230,crumblingwall_cmdset:230,crush:21,cryptic:137,cryptocurr:102,cscore:122,csessid:[283,293,294,306],csession:[293,294],csrf_token:132,css:[17,54,123,134,135,136,341],cssclass:136,ctrl:[47,62,89,92,94,99,109,296],culpa:51,cumbersom:[50,120,127,214],cumul:297,cup:69,cupidatat:51,cur_valu:189,cure:[218,219],cure_condit:218,curi:48,curiou:107,curli:[40,95,182],curly_color_ansi_bright_bg_extra_map:182,curly_color_ansi_bright_bgs_extra_map:182,curly_color_ansi_extra_map:182,curly_color_xterm256_extra_bg:182,curly_color_xterm256_extra_fg:182,curly_color_xterm256_extra_gbg:182,curly_color_xterm256_extra_gfg:182,curr_sess:306,curr_tim:186,currenc:[84,119],current:[0,2,9,11,12,13,14,19,20,21,22,24,25,27,28,29,31,33,40,42,45,47,48,49,50,57,58,59,63,67,73,75,76,78,79,84,85,88,93,96,99,101,103,104,105,111,113,114,115,118,119,120,122,123,126,127,130,132,136,137,143,147,149,150,152,153,155,156,158,163,164,165,167,168,174,178,179,181,186,187,189,194,197,199,201,203,205,211,212,214,216,217,218,219,220,230,231,233,236,244,245,250,254,258,259,265,270,275,281,282,285,286,297,304,306,308,315,316,324,326,328,329,335,336,339,342,360],current_choic:179,current_coordin:233,current_kei:[248,249],current_us:132,current_weath:101,currentroom:120,curriculum:78,curs:41,curv:[54,55],curx:48,custom:[0,2,6,11,12,14,15,16,17,18,20,21,25,26,27,30,31,33,34,35,42,48,54,55,57,59,60,63,64,65,67,68,70,72,73,77,78,82,84,85,86,88,89,96,99,101,103,108,109,111,113,115,116,117,118,120,121,122,124,125,131,132,135,137,138,139,143,144,145,146,147,149,151,152,153,158,163,164,165,173,174,178,180,181,183,184,186,187,188,194,196,197,199,202,204,205,208,209,230,231,233,236,239,243,245,247,248,249,250,253,259,261,265,269,271,274,296,305,316,321,324,328,332,334,336,337,341,342,347,360,362],custom_add:194,custom_cal:[194,197],custom_gametim:[61,140,141,177],custom_kei:249,custom_pattern:[3,4,68,132,133],customis:233,customiz:[17,40,179,187,189,205],customlog:8,cut:[20,39,48,49,54,90,110,122,136,250],cute:135,cutoff:342,cvcc:204,cvccv:204,cvccvcv:204,cvcvcc:204,cvcvccc:204,cvcvccvv:204,cvcvcvcvv:204,cvcvvcvvcc:204,cvv:204,cvvc:204,cwho:163,cyan:[113,125],cyberspac:78,cycl:[13,14,25,55,60,61,131,216,217,218,219,220],cyril:15,daemon:[8,92,99,102,109,282,310],dai:[27,36,55,60,61,99,102,107,119,125,130,131,138,183,186,329,335,342,343],daili:86,dailylogfil:335,dali:204,dalnet:[42,163],dam:55,damag:[14,21,28,60,72,84,102,115,121,216,217,218,219,220,229,230],damage_rang:219,damage_taken:55,damage_valu:[216,217,218,219,220],damnedscholar:47,dandi:139,danger:[13,31,81,96,104,151],dare:33,dark:[13,14,17,31,72,78,110,113,121,125,152,186,223,231,239,254,320],darkcmdset:231,darker:[113,125],darkgrai:125,darkroom:231,darkroom_cmdset:231,darkstat:231,dash:[118,203,214],dashcount:214,data:[2,10,13,15,22,23,25,27,42,55,56,57,58,60,63,74,82,85,86,87,89,92,95,96,99,101,103,108,111,112,118,124,127,132,133,134,136,137,138,143,144,145,153,158,168,174,187,189,193,194,205,208,209,235,242,244,245,247,251,257,259,262,263,267,271,272,274,275,276,277,278,283,284,285,286,288,289,290,292,293,294,296,297,298,303,304,305,306,312,313,314,315,316,317,319,320,321,322,323,325,326,327,328,331,335,336,337,338,355,360],data_in:[39,82,209,274,276,277,283,284,288,293,294,304,305,306],data_out:[39,209,283,285,288,289,294,304,305,306],data_to_port:262,data_to_serv:275,databa:265,databas:[0,4,5,6,7,11,12,13,15,17,19,20,21,23,27,28,29,31,34,36,38,42,44,46,54,55,56,57,58,59,60,62,63,73,76,79,83,86,88,90,92,99,100,101,103,104,106,109,110,111,114,115,118,122,123,124,126,129,130,132,133,134,135,137,138,139,143,147,151,152,158,165,168,172,173,174,175,176,186,193,194,196,205,219,231,234,236,237,239,242,244,245,248,249,251,252,254,255,259,265,269,271,282,296,303,312,313,314,315,316,317,320,322,323,330,332,338,339,342,344],datareceiv:[267,274,288,296],datastor:85,datbas:118,date:[7,11,12,23,34,48,61,67,74,75,85,125,127,130,132,137,144,152,156,208,329,335,343],date_appli:132,date_cr:[124,143,147,176,254,314,316],date_join:[144,147],date_s:34,datetim:[61,124,132,314,329,335,336,342,343],datetime_format:342,datetimefield:[85,132,144,147,176,244,254,314,316,342],david:78,day_rot:335,db3:[23,110,127,130],db_:[83,85,118,124,205,245,255,270,339],db_account:[181,242,244,254],db_account__db_kei:242,db_account_id:[244,254],db_account_subscript:[172,176],db_attribut:[106,118,144,147,176,242,244,254,316],db_attrtyp:314,db_attryp:86,db_categori:[85,313,314,317],db_category__iequ:85,db_channel:172,db_cmdset_storag:[144,147,181,242,244],db_data:[313,317],db_date_cr:[85,147,172,176,181,244,254,314,316],db_desc:254,db_destin:[181,242,244],db_destination__isnul:119,db_destination_id:244,db_entrytext:[235,237],db_header:176,db_help_categori:[235,237],db_hide_from_account:176,db_hide_from_channel:176,db_hide_from_object:176,db_hide_from_receiv:176,db_hide_from_send:176,db_home:[181,242,244],db_home_id:244,db_index:85,db_interv:[252,254],db_is_act:254,db_is_bot:[144,147],db_is_connect:[144,147],db_kei:[68,83,85,118,124,144,172,181,193,235,237,242,252,255,261,272,313,314,316,317,355],db_key__contain:124,db_key__icontain:85,db_key__istartswith:118,db_key__startswith:[118,124],db_locat:[83,118,181,242,244],db_location__db_tags__db_kei:118,db_location__isnul:119,db_location_id:244,db_lock_storag:[144,172,176,181,235,237,242,314,316],db_messag:[172,176],db_model:[314,317],db_obj:[252,254,323],db_obj_id:254,db_object_subscript:[172,176],db_permiss:[85,144],db_persist:[252,254],db_properti:270,db_protototyp:249,db_receiv:172,db_receivers_account:176,db_receivers_channel:176,db_receivers_object:176,db_receivers_script:176,db_repeat:[252,254],db_sender:172,db_sender_account:176,db_sender_extern:176,db_sender_object:176,db_sender_script:176,db_sessid:[181,242,244],db_staff_onli:[235,237],db_start_delai:[252,254],db_strvalu:314,db_tag:[118,144,147,176,235,237,242,244,254,316,317],db_tags__db_categori:[38,118],db_tags__db_kei:[38,118,172],db_tags__db_key__in:38,db_tagtyp:[313,317],db_text:85,db_typeclass_path:[85,119,144,181,242,244,252,316,342],db_valu:[83,261,272,314],dbef:339,dbhandler:355,dbholder:314,dbid:[42,124,145,163,316],dbid_to_obj:342,dbmodel:315,dbobj:[11,314],dbobject:[11,315,316],dbprototyp:[168,249],dbref:[12,13,20,42,57,65,79,108,110,115,118,120,121,124,127,143,147,156,158,168,175,187,202,205,211,231,233,239,244,245,248,249,250,254,256,315,316,322,339,342],dbref_search:315,dbref_to_obj:342,dbrefmax:[42,158],dbrefmin:[42,158],dbsafe_decod:338,dbsafe_encod:338,dbserial:[11,96,140,141,255,318],dbshell:[23,85,109,127],dbunseri:323,ddesc:55,deactiv:[42,62,63,80,116,163,186,226,229,326],deactivatebuttonev:226,dead:[111,229,230,303,306,332],deadli:121,deal:[10,11,12,15,40,50,63,68,72,90,102,104,111,112,115,123,125,130,133,137,138,143,178,179,183,187,216,217,218,219,220,244,245,304,316,319,336,360],dealt:[166,167,218,219],dealth:218,death:[50,72,119],death_msg:229,death_pac:229,debat:90,debian:[8,23,62,66,130],debug:[14,27,42,44,50,58,71,73,90,94,101,105,134,138,149,153,157,168,187,247,265,270,276,277,288,310,320,326,335,342,362],debugg:[15,41,109,140],decemb:89,decend:149,decent:[92,204],decic:204,decid:[4,14,15,25,33,40,45,57,60,68,72,84,85,87,89,102,104,111,113,115,125,137,149,178,216,240,327],deciph:47,decis:[72,114],declar:[113,338],declared_field:[144,235,242,313,355],declin:[50,178],decod:[15,289,319,342],decode_gmcp:289,decode_msdp:289,decoded_text:342,decompos:132,decompress:[274,338],deconstruct:[121,169,227,291,340],decor:[0,29,33,45,106,130,147,244,254,262,274,275,316,322,326,327,342],decoupl:[9,249],decoupled_mut:11,decreas:[219,231,324],decrease_ind:324,dedent:[49,342],dedic:[72,89,126],deduc:324,deduce_ind:324,deduct:[72,84,216,217,218,219,220],deem:[37,56,128,130,177,360],deep:78,deeper:[40,214],deepest:158,deepli:11,deepsiz:342,def:[1,3,4,5,6,10,11,21,22,25,27,28,29,30,31,33,38,39,40,41,43,47,48,49,50,55,56,57,59,61,68,70,72,73,78,79,80,81,83,84,88,90,94,95,101,106,108,110,113,115,116,117,118,119,120,122,124,126,131,132,133,179,186,232,233,248,294,307,324,326,334,342],def_down_mod:218,defalt_cmdset:70,default_access:[1,11,314,322],default_categori:236,default_channel:34,default_charact:188,default_cmd:[5,21,22,25,28,29,30,40,43,52,56,57,61,80,115,118,140,179,181,186,198],default_cmdset:[5,22,25,30,35,40,43,56,57,59,61,80,104,122,152,179,180,181,186,187,199,201,211,214,216,217,218,219,220],default_command:25,default_confirm:[158,202],default_error_messag:338,default_hom:[58,108],default_in:136,default_out:136,default_pass:322,default_screen_width:33,default_set:[3,126],default_transaction_isol:23,default_unload:136,defaultaccount:[2,40,42,63,124,140,143,145,159,245,340],defaultchannel:[6,124,140,174],defaultcharact:[5,6,22,25,42,56,57,59,61,72,80,85,88,95,122,124,126,140,143,160,179,181,188,196,205,216,217,218,219,220,245,340],defaultcmdset:[184,223],defaultdict:255,defaultexit:[6,84,88,124,140,196,211,212,230,233,245,340],defaultguest:[140,143],defaultlock:239,defaultmod:335,defaultobject:[5,6,26,52,59,63,81,84,85,88,95,110,116,118,120,124,140,143,181,196,205,213,217,220,225,230,245,316,340],defaultpath:342,defaultroom:[6,38,48,55,84,88,124,131,140,186,196,205,231,233,245,340],defaultscript:[55,101,115,119,120,124,140,145,178,183,194,202,203,204,216,217,218,219,220,222,226,233,249,256,257,298,329,340],defaultsess:[42,161],defaultset:5,defaulttyp:310,defaultunloggedin:[42,162,200],defeat:[72,115,121,216,217,218,219,220,229],defeat_msg:229,defeat_msg_room:229,defend:[50,115,121,216,217,218,219,220,230,245],defens:[115,216,217,218,219,220],defense_valu:[216,217,218,219,220],defer:[10,27,29,33,93,132,144,147,149,176,186,212,237,244,245,254,258,262,272,274,275,306,310,314,316,317,333,335,342],deferredlist:310,defin:[0,2,4,5,10,11,12,13,14,20,21,22,25,27,30,35,36,39,41,42,43,45,48,49,54,55,56,57,58,60,61,63,67,68,72,73,76,77,80,82,84,87,88,90,94,95,96,103,105,108,110,112,113,114,116,118,120,122,124,125,126,128,132,134,135,136,137,138,140,142,144,147,149,151,152,153,155,158,164,166,167,168,169,172,174,175,176,179,181,182,183,184,186,187,193,194,197,199,202,203,204,205,213,214,218,219,222,223,226,230,231,234,235,236,237,238,239,240,241,242,244,245,249,250,254,257,259,260,262,265,272,275,296,297,304,305,306,309,312,314,315,316,317,319,320,321,324,326,329,333,334,337,339,342,344,355,360],define_charact:50,definit:[0,2,5,10,12,14,20,33,34,38,40,41,42,54,59,60,67,68,81,86,87,88,108,113,114,123,126,151,153,158,163,166,167,191,202,225,230,238,240,244,249,250,256,320,322,326,334,338],deflist:310,degrad:126,deindent:342,del:[11,12,29,42,57,79,115,121,156,158,186,201,202,248,316],del_callback:[192,194],del_detail:186,del_pid:265,delaccount:12,delai:[0,28,33,44,119,183,187,194,212,230,258,259,277,283,306,321,342],delaliaschan:[42,163],delayed_import:306,delchanalia:[42,163],delcom:[57,163],deleg:[147,176,237,244,254,314,316,317,333],delet:[2,4,7,11,12,13,20,22,23,31,42,49,50,62,65,67,79,86,88,97,99,101,104,106,110,111,115,121,127,130,143,152,155,156,157,158,163,164,165,168,173,174,176,186,191,192,194,195,196,198,201,202,211,226,230,237,240,245,249,255,256,257,259,271,283,304,313,314,316,319,320,326,332,358,360],delete_attribut:314,delete_default:[31,152],delete_prototyp:249,deletet:186,deleteview:360,deliber:[11,41,128],delic:181,delimit:[90,166,167,320],delin:47,deliv:[89,198,205],delpart:202,delresult:202,deltatim:342,delux:89,demand:[30,57,60,72,89,114,116,143,174,186,245,307,321],demo:[22,54,78,137,228,326],demon:108,demonin:342,demonstr:[0,4,22,125,132,179,187,208,218],demowiki:4,deni:[8,102,193,197],denot:[55,113,133,320],denounc:325,depart:48,depend:[0,4,10,11,12,14,15,16,22,27,31,33,34,37,39,42,45,48,50,54,56,57,60,62,63,68,71,72,73,74,82,84,87,89,92,94,96,99,101,102,103,104,105,110,113,114,115,117,122,124,130,132,133,136,137,142,149,151,153,155,168,174,179,180,184,186,192,204,233,240,245,249,257,259,265,285,288,294,296,306,316,317,324,342],deplet:218,deploi:[45,89,102],deploy:[36,78,89,99,105],depmsg:335,deprec:[27,50,108,140,141,250,260,335,342],deprecationwarn:264,depreci:319,depth:[16,17,36,94,113,121,123,214,250],dequ:[11,308],deriv:[23,55,62,66,99,107,118,124,126,232,319,343],desc:[14,20,21,22,34,40,56,57,59,68,73,79,81,83,84,88,101,108,110,115,119,133,152,155,158,169,179,181,186,201,202,211,214,219,233,254,263,320,322,324,325,326,355,360],desc_al:229,desc_dead:229,desc_lamp_broken:225,desc_lid_clos:225,desc_lid_open:225,descend:[118,355],describ:[5,9,11,13,14,20,21,22,30,31,33,37,42,45,50,54,57,61,62,63,67,68,70,74,75,78,79,84,85,87,89,91,95,101,108,109,110,112,113,115,123,124,126,127,129,130,132,134,136,138,151,158,162,163,164,176,181,183,186,203,205,219,225,242,250,257,262,283,285,288,298,326,341,342,361],descripion:229,descript:[0,14,15,20,21,22,34,38,40,42,45,48,50,53,54,56,57,59,60,67,73,76,84,89,95,101,108,110,111,125,128,130,132,133,134,138,144,155,158,163,164,174,178,179,181,186,201,203,205,211,214,225,229,230,231,232,233,235,239,242,245,254,320,322,326,336,337],description_str:110,descvalidateerror:201,deseri:[11,96,336],deserunt:51,design:[14,16,23,26,33,37,38,40,54,56,60,78,88,90,107,108,110,111,116,117,118,123,128,132,137,152,158,179,193,205,208,230,245,320,336,342],desir:[1,4,27,28,29,42,48,56,57,58,90,107,111,113,114,118,120,122,132,136,158,182,204,240,265,310,314,322,328,343],desired_perm:240,desktop:[15,16,137],despit:[11,13,56,62,63,78,80,104,231],dest:[232,245],destin:[0,22,25,33,42,48,73,76,84,88,90,108,110,118,120,158,196,199,208,211,212,216,217,218,219,220,230,239,244,245,250,322,360],destinations_set:244,destroi:[0,20,88,102,115,126,143,145,158,163,202,218,245],destroy:211,destruct:[31,151],detach:105,detail:[2,5,9,12,15,19,20,22,26,30,33,34,37,40,45,50,57,59,60,62,63,79,87,88,89,90,92,94,95,104,108,110,113,115,117,121,123,124,127,128,130,133,134,135,138,144,152,153,158,174,179,186,202,203,205,217,231,233,237,242,249,250,267,268,304,306,316,319,324,334,342,358,360],detail_color:158,detailkei:[186,231],detailview:360,detect:[31,33,36,60,80,87,88,102,104,117,150,153,167,174,277],determ:315,determin:[2,4,13,15,20,27,29,31,33,34,38,42,43,48,49,50,51,62,72,79,81,82,84,86,92,101,108,109,115,122,135,136,143,144,151,152,153,155,166,172,174,178,199,204,205,212,214,216,217,218,219,220,230,237,240,242,245,249,289,314,315,316,319,324,327,342],detour:[21,82,306],dev:[1,23,37,54,56,60,62,63,66,70,75,78,89,94,97,137],develop:[3,9,15,16,19,20,25,26,27,33,36,37,41,42,47,53,54,55,57,59,60,62,63,67,69,70,71,75,76,79,85,87,89,90,92,93,95,96,98,103,105,107,108,110,113,122,125,130,132,134,135,136,137,138,156,157,163,168,174,191,192,197,208,226,237,245,250,311,316,320,326,361,362],devoid:319,dex:[11,50,57,325],dexter:[216,217,218,219,220],diagnos:[30,96],diagram:124,dialog:136,dialogu:[0,123,138,362],dice:[62,72,90,115,140,141,177],dicecmdset:184,dicenum:184,dicetyp:184,dict:[0,11,13,25,31,42,45,50,87,106,108,118,126,143,145,151,153,158,174,181,183,186,187,191,194,196,197,199,204,205,208,209,214,218,220,245,247,248,249,250,257,259,262,263,265,270,275,276,278,283,285,288,293,294,305,306,308,315,320,321,323,325,326,327,334,337,342,355,360],dictat:[31,61,116],dictionari:[0,10,11,13,25,31,42,48,54,55,61,68,72,79,95,96,108,115,123,133,137,156,158,181,183,186,187,191,194,197,199,204,205,208,209,210,214,218,219,231,233,240,250,270,283,292,304,305,306,308,315,319,321,325,326,332,336,337,338,342,355,360],did:[2,21,22,29,56,59,63,67,90,94,95,103,110,122,130,143,178,245,317,338,342],did_declin:178,didn:[5,20,22,40,41,43,48,50,57,58,60,71,79,90,99,103,118,120,125,126,132,135,139],die:[72,90,105,116,184,204,306],dies:229,diff:[74,130,184,250],differ:[0,2,8,9,11,13,14,15,16,19,20,21,22,25,27,31,33,37,38,39,40,41,42,43,45,46,48,49,50,53,54,56,57,60,61,62,63,65,67,68,69,72,78,79,81,82,83,86,87,90,92,94,95,99,101,102,104,105,106,108,109,110,111,112,113,114,115,117,118,119,120,121,123,125,126,128,130,132,135,136,137,138,139,140,143,144,149,151,152,155,158,167,168,170,174,179,183,184,185,194,195,198,203,205,212,214,216,217,218,219,220,223,232,233,245,247,249,250,254,257,259,263,267,289,294,296,313,314,316,320,322,326,335,338,342,360],differenti:[55,56,57,181,205,214,245,342],differet:60,difficult:[4,38,92,102,132,219,220],difficulti:132,dig:[0,20,31,33,39,56,57,88,92,95,108,120,122,139,158,211,297],digit:[12,89,113,203,309,319,335],diku:[54,63,123,138,362],dikumud:128,dime:107,dimens:[48,54],dimension:57,diminish:113,dimli:110,dinner:45,dip:95,dir:[9,21,23,36,53,57,62,63,74,78,89,95,99,101,126,127,130,133,335,342],direct:[0,3,8,10,11,12,20,22,31,42,43,44,48,50,57,69,73,87,89,99,108,110,115,117,118,120,127,136,137,138,158,193,199,209,233,240,265,326,328,335,339,342,362],direction_of_split:136,directli:[2,5,8,13,14,20,21,23,27,29,30,33,37,39,41,43,45,49,50,52,54,55,57,58,60,61,63,71,79,87,88,89,92,93,94,95,99,101,103,108,109,110,113,115,117,118,122,124,127,130,136,137,153,169,174,175,178,179,180,184,197,205,214,219,220,226,232,236,240,244,245,249,254,271,276,285,288,293,298,304,314,316,320,322,326,340,342],director:205,directori:[4,8,9,13,20,25,27,36,37,42,44,52,57,58,61,62,63,68,74,75,94,95,99,105,122,124,126,127,129,130,132,133,134,135,136,138,158,208,265,285,286,310,320,335,342,362],directorylist:310,dirnam:265,dirti:54,disabl:[0,4,24,25,49,79,80,105,113,126,136,153,169,187,205,214,232,240,288,327,332,343],disableloc:288,disableremot:288,disadvantag:[57,89,115,220],disambigu:[40,71,118,153,173,245,316],disappear:102,discard:[174,319],disconcert:40,disconnect:[2,11,12,39,40,42,54,56,59,91,96,104,106,109,111,115,122,127,136,143,155,158,163,166,168,174,200,245,275,276,277,283,284,285,288,293,294,297,303,304,305,306],disconnect_al:283,disconnect_all_sess:306,disconnect_duplicate_sess:306,disconnect_session_from_account:143,discontinu:24,discord:[9,62,71,78],discordia:107,discourag:[63,74],discov:[90,121,314],discoveri:209,discrimin:102,discuss:[1,4,25,26,33,37,44,47,54,62,68,69,115,137,138],discworld:87,disengag:[115,143,216,217,218,219,220],disk:[11,27,85,99,107,109,204,208,247],dislik:56,disonnect:11,dispel:125,displai:[0,17,22,25,30,31,33,41,42,45,49,50,52,57,58,59,60,67,68,79,80,81,82,84,87,88,90,92,100,101,102,103,110,113,115,118,122,123,132,133,134,135,136,137,138,144,153,155,158,165,168,170,172,174,178,179,181,185,186,187,189,192,194,196,198,200,205,214,230,231,232,233,235,245,250,252,263,265,282,300,303,308,316,317,324,325,326,327,328,336,337,338,341,342,343,355,360],display:259,display_buff:324,display_choic:179,display_formdata:187,display_help:324,display_helptext:[247,326],display_len:342,display_met:189,display_nodetext:326,display_titl:179,dispos:[110,202],disput:115,disregard:33,dist3:93,dist:62,distanc:[6,27,38,45,48,63,124,204,219,220,245,342],distance_inc:220,distance_to_room:38,distant:[48,137,186,231],distinct:[54,63,104,139,220],distinguish:[22,153,214,220],distribut:[8,9,15,23,31,34,41,62,63,77,95,96,123,126,127,174,176,205,319,322,342],distribute_messag:174,distributor:34,distro:[8,23,62,66,71],disturb:[27,139],distutil:62,distutilserror:62,ditto:62,div:[3,16,17,108,136,248],dive:[22,40,62],diverg:82,divid:[13,63,68,183,231,342],dividend:183,divisiblebi:68,divisor:183,django:[2,3,4,9,15,23,25,36,38,54,62,68,72,75,78,85,93,100,102,103,106,111,112,119,123,124,126,127,133,135,136,138,143,144,147,170,172,174,176,185,235,237,242,244,252,254,261,264,265,271,272,285,291,293,294,301,307,309,310,313,314,316,317,320,323,327,331,332,333,338,340,342,344,347,350,355,360],django_admin:358,django_nyt:4,djangonytconfig:4,djangoproject:[23,355],djangowebroot:310,dmg:72,dnf:[8,62,66],do_attack:229,do_batch_delet:314,do_batch_finish:314,do_batch_update_attribut:314,do_create_attribut:314,do_delete_attribut:314,do_flush:[316,332],do_gmcp:289,do_hunt:229,do_mccp:278,do_msdp:289,do_mssp:279,do_mxp:280,do_naw:281,do_nested_lookup:158,do_not_exce:25,do_patrol:229,do_pickl:323,do_task:258,do_unpickl:323,do_update_attribut:314,do_xterm256:319,doabl:[14,137],doc:[16,17,23,25,33,44,50,59,63,67,69,78,85,94,95,108,109,124,128,129,135,138,140,158,203,232,276,342,355,361,362],docker:[7,62,78,89,138,362],dockerfil:99,dockerhub:99,docstr:[1,5,25,40,42,67,73,95,153,158,169,179,192,204,205,214,232,326],documen:95,document:[0,3,5,6,9,16,17,20,22,23,25,26,29,40,42,45,46,47,51,52,54,56,57,59,63,67,69,75,78,85,89,93,95,102,103,105,110,113,120,121,122,123,124,126,130,132,134,135,138,152,166,179,203,232,314,317,325,332,360,362],dodg:217,doe:[2,4,5,9,11,20,21,23,24,25,26,29,31,33,37,38,39,40,42,48,50,53,54,55,56,57,59,60,62,63,67,68,72,77,79,84,87,88,90,94,95,99,101,103,108,109,110,111,112,113,115,116,117,118,120,122,124,125,126,128,130,131,132,135,136,137,139,143,145,155,163,166,168,170,173,180,181,182,185,186,199,201,202,214,216,217,218,219,220,230,231,232,233,245,249,250,257,264,265,269,270,271,274,277,285,286,292,314,316,321,326,334,335,338,342,347,355,360],doesn:[0,4,9,11,13,15,22,26,29,33,36,37,38,43,45,48,50,56,59,60,62,68,70,71,72,74,75,77,85,87,88,89,90,94,95,102,109,110,120,122,124,125,126,127,132,135,136,137,176,180,186,193,194,205,218,240,258,265,278,285,289,314,319,326,337,342],doesnotexist:[143,145,147,174,176,178,181,183,186,188,194,196,202,203,204,205,211,212,213,216,217,218,219,220,222,225,226,229,230,231,233,237,244,245,249,254,257,272,298,314,317,322,329,333],doff:217,dog:[27,95],doing:[2,4,10,11,27,29,31,33,36,38,42,45,48,50,56,57,58,59,60,63,68,69,78,79,88,89,94,95,96,104,109,113,114,118,124,125,126,132,133,136,137,143,155,178,181,193,205,214,216,217,218,219,220,225,229,230,233,239,245,259,296,326,332,338],dolor:51,dom:136,domain:[8,54,89,102,137,322],domexcept:89,dominion:9,dompc:9,don:[0,1,3,4,6,9,10,11,20,21,22,23,25,26,27,29,30,31,33,34,37,38,40,41,42,43,45,46,49,50,53,57,58,60,61,62,63,67,68,69,71,72,74,79,80,82,84,85,87,89,90,92,94,95,96,101,102,103,104,105,110,113,115,118,121,122,124,125,126,127,130,131,132,133,134,135,136,137,139,143,145,151,152,158,163,164,165,166,167,173,174,179,184,193,197,204,205,217,218,219,223,226,231,232,233,240,244,245,249,250,259,269,270,277,282,283,288,290,297,304,311,316,319,320,326,332,335,338,342,355,360],donald:92,donat:[69,89],done:[1,4,6,9,10,11,20,21,22,25,29,30,31,33,34,36,37,38,40,42,43,48,50,54,55,56,57,58,60,61,62,63,68,69,72,75,79,81,84,86,89,90,92,99,106,107,109,114,115,116,117,118,119,120,122,125,127,130,132,135,136,143,153,155,173,174,178,184,204,220,226,233,240,244,245,257,259,265,278,282,284,286,290,294,300,303,304,306,311,314,319,320,327,332,342,360],donoth:257,dont:287,doom:250,door:[0,20,22,27,42,48,60,79,84,88,102,158,211],doorwai:211,dot:[22,42,52,118,152,158,320,342],dotal:[319,341],dotpath:342,doubl:[22,42,56,96,118,132,151,170,341,342],doublet:[151,152],doubt:[22,137,232],down:[0,4,6,11,12,21,22,29,31,33,36,38,40,42,48,49,50,52,54,56,57,60,62,72,80,84,85,89,90,92,95,99,101,102,103,105,107,110,113,118,121,122,135,136,143,158,168,194,208,214,217,218,230,233,239,245,250,257,259,265,267,274,275,282,283,303,304,306,319,327,328,342],download:[5,9,23,26,62,63,71,74,78,89,99,100,127,129,130,138],downtim:[29,102,329],downward:[42,155],dozen:[25,54,107],drag:136,draggabl:137,dragon:55,dramat:[11,60],drape:181,draw:[14,38,48,72,118,328],draw_room_on_map:48,drawback:[14,23,28,29,50,57,72,85,137,180,320],drawn:[48,57,110],drawtext:72,dream:[26,54,60,128],dress:181,drink:[314,316],drive:[9,19,21,60,62,63,95,99,120,130,132],driven:[25,78,122,213,247],driver:23,drizzl:[101,131],drop:[6,9,14,20,21,23,25,33,37,39,54,56,57,59,68,69,79,84,85,86,87,88,89,116,117,120,127,136,137,158,164,181,196,202,213,217,220,225,239,245,274,316,320,342,361],drop_whitespac:328,dropdown:[105,137],droplock:239,dropper:[196,217,220,245],drum:89,dtobj:342,duck:[27,94],duckclient:24,due:[5,6,12,22,29,31,33,39,42,57,59,61,62,63,75,89,90,92,94,95,103,106,124,125,139,152,168,196,244,245,267,303,306,313,319,335],duh:107,dull:[20,26,110],dumb:[20,137,306,319],dummi:[9,33,53,58,79,92,126,205,240,265,283,296,297,304],dummycli:296,dummyfactori:296,dummyrunn:[140,260,265,283,295,297,299],dummyrunner_act:296,dummyrunner_actions_modul:296,dummyrunner_set:[92,140,260,265,295],dummyrunner_settings_modul:92,dummysess:306,dump:[34,208,274],dungeon:[54,76,111],dupic:31,duplic:[31,37,95,151,158,259,316,335],durat:[10,28,131,138,218,336,343,362],dure:[9,11,29,31,39,54,59,60,62,65,67,78,79,94,96,99,101,104,106,115,122,131,134,135,136,139,143,151,169,186,199,202,226,229,231,232,240,242,256,274,284,320,322,326,335,355,361],duti:63,dwarf:110,dying:[216,217,218,219,220],dynam:[2,3,34,42,67,81,85,89,110,113,114,123,132,136,137,138,143,147,153,165,168,169,173,176,187,205,214,216,217,218,219,220,237,244,245,254,259,314,316,317,322,324,326,333,336,342,360,362],dynamic_split:136,dyndns_system:89,each:[0,1,2,4,5,10,11,13,19,20,22,27,29,31,33,34,36,38,39,41,42,47,48,50,54,55,56,57,58,60,61,63,68,72,76,79,81,82,84,85,94,95,96,99,101,103,104,107,108,110,111,113,114,115,118,120,122,123,124,125,126,131,132,135,136,137,139,143,150,151,152,156,158,167,174,178,180,181,182,186,187,199,202,204,205,214,216,218,219,220,227,233,237,240,244,245,250,256,259,267,270,283,285,288,292,297,304,305,306,314,316,317,319,320,322,324,325,326,327,328,332,334,342],eaoiui:204,earli:[36,137,216,217,218,219,220,267],earlier:[3,9,13,31,36,50,53,57,59,60,61,63,73,84,94,95,105,118,120,122,130,133,270],earn:123,earnest:123,earth:[81,102],eas:[31,33,38,85,89,99,125],easi:[0,5,10,13,17,22,23,26,29,33,38,42,45,50,54,55,60,61,67,68,71,72,75,78,80,81,84,87,88,89,99,101,105,107,110,112,115,117,122,124,125,126,127,130,132,133,137,139,152,156,163,181,187,214,326,332],easier:[1,4,10,11,12,22,25,37,38,46,50,54,55,56,57,60,61,68,72,85,89,90,94,95,101,108,125,135,204,214,216,217,218,219,220,230,258,307,317,327,342],easiest:[0,5,12,15,25,27,30,45,57,62,69,75,122,127,130,132,134,208,316],easili:[0,3,4,11,12,13,14,17,20,25,27,28,33,34,37,38,45,47,48,50,54,57,59,60,61,62,67,69,72,79,82,84,87,89,90,95,97,99,102,104,105,106,107,108,110,111,118,121,122,130,132,135,136,137,139,165,176,178,179,181,187,189,193,204,211,214,216,217,218,219,220,232,236,237,239,259,320,326,337],east:[25,43,48,110,158,199,231],east_exit:231,east_west:110,eastern:[61,110],eastward:231,eccel:328,echo1:29,echo2:29,echo3:29,echo:[5,10,12,20,26,27,28,29,33,36,42,43,48,49,54,58,64,70,89,94,95,97,99,103,108,109,115,117,122,131,139,143,145,156,158,163,168,181,184,196,205,225,229,230,231,245,263,270,285,288,324,342],echotest:5,econom:[54,78,85],economi:[60,72,101,107,119,178],ecosystem:99,edg:[16,27,130,328,342],edgi:48,edit:[0,1,4,5,6,9,11,13,14,23,25,26,30,33,35,37,39,40,42,45,47,53,55,57,58,59,60,61,66,67,68,69,74,75,78,79,80,85,94,95,96,99,100,103,105,108,110,113,127,132,133,134,135,136,137,156,158,165,168,179,185,187,191,192,194,195,200,201,202,235,240,242,245,247,249,250,314,324,355,360],edit_callback:[192,194],edit_handl:158,editcmd:22,editor:[0,5,9,15,21,22,33,42,44,45,56,59,62,75,78,94,95,96,107,108,110,130,138,158,165,167,168,179,201,254,320,324],editor_command_group:324,editorcmdset:324,editsheet:57,effect:[6,10,11,14,27,28,29,31,35,38,42,55,56,57,60,72,86,94,103,106,109,110,113,114,115,116,123,125,126,127,128,137,139,140,141,143,151,152,158,167,184,194,217,218,219,225,226,229,231,238,245,251,254,278,334,342],effici:[11,26,28,29,38,54,55,63,75,78,85,86,92,94,102,111,114,118,124,131,178,205,212,240,245,259,314,315,317,324,327],effort:[37,55,130,133,360],egg:74,egg_info:62,egi:267,either:[0,4,9,12,13,17,23,27,29,31,33,34,37,38,40,42,43,45,48,50,55,56,57,68,72,79,82,89,90,92,94,96,101,102,104,108,109,110,111,113,115,118,120,122,124,125,127,130,136,137,143,145,151,152,153,168,173,174,175,179,191,197,198,200,204,205,211,214,216,219,220,240,245,249,250,254,256,257,259,263,274,286,290,297,315,316,317,326,328,334,335,337,339,342],elabor:[4,22,84,90,122],electr:89,eleg:37,element:[16,17,22,40,42,50,54,90,113,150,155,179,183,203,204,245,250,314,315,317,320,325,326,327,342],elev:[45,81,123,138,362],elif:[0,40,48,50,57,72,101,115,116,122],elimin:[95,99,319],ellipsi:95,ellow:113,els:[0,1,2,5,9,10,12,19,20,21,22,23,25,27,29,30,33,38,40,41,45,47,48,50,57,59,67,68,72,79,80,81,83,84,89,90,94,101,102,110,113,114,115,116,119,120,122,126,130,132,133,136,178,181,187,203,216,217,218,219,220,233,244,294,316,342],elsewher:[2,29,31,57,69,95,111,132,137,152,231,265,306,314],elvish:204,emac:[14,78],email:[62,63,130,143,144,185,322,336,342,343,355],email_login:[140,141,177],emailaddress:342,emailfield:[144,355],emb:[57,108,113,186,250],embark:120,embed:[108,113,124,137,248,325,334,342],emerg:[75,79,102],emi:204,emit:[25,34,107,136,152,156,174,188,245,304,335],emit_to_obj:[152,245],emo:21,emoji:24,emot:[33,40,42,54,67,115,164,178,204,205],emoteerror:205,emoteexcept:205,emphas:60,emploi:343,empti:[0,2,3,6,9,10,14,31,33,40,41,42,46,48,50,53,57,59,62,63,68,72,76,83,85,87,88,90,95,96,99,113,114,116,118,122,124,126,127,130,133,136,137,149,150,156,158,169,179,189,191,205,249,250,263,270,274,296,297,313,320,322,326,328,339,342],empty_color:189,empty_permit:[144,235,242,355],empty_threadpool:310,emptyset:31,emul:[42,63,74,104,122,128,168],enabl:[8,24,42,70,99,102,105,113,125,133,136,143,174,187,288,343],enable_recog:205,enableloc:288,enableremot:288,encamp:45,encapsul:336,encarnia:78,encas:324,enclos:[35,42,49,170,185,334],encod:[7,27,57,110,138,276,289,293,294,319,338,342,362],encode_gmcp:289,encode_msdp:289,encoded_text:342,encompass:27,encount:[59,94,152,343],encourag:[3,22,38,69,90,93],encrypt:[7,8,42,82,102,163,285,286,290],end:[1,5,6,8,9,10,11,13,14,19,20,21,22,23,25,27,28,29,31,33,34,38,39,42,46,49,50,53,54,57,59,61,63,64,68,72,75,79,80,82,85,86,87,89,90,92,94,95,99,104,106,107,108,113,115,117,118,120,121,122,125,127,130,132,133,134,136,137,139,143,145,151,152,158,164,165,173,178,180,181,184,189,201,205,213,214,216,217,218,219,220,231,236,248,269,276,277,285,288,289,299,304,308,310,315,319,320,322,326,327,328,334,335,342,360],end_convers:50,end_turn:115,endblock:[3,68,132,133],endclr:[113,334],endfor:[68,132,133],endhour:25,endif:[68,132,133],endlessli:102,endpoint:102,endsep:342,endswith:319,enemi:[11,29,50,60,108,115,121,218,219,220,229,230,231],enemynam:50,enforc:[10,33,40,60,72,79,113,125,137,285,288,327,328,360],enforce_s:328,engag:[54,220,229],engin:[22,23,33,36,42,54,55,63,67,72,76,78,88,101,102,103,121,126,130,135,139,149,152,167,168,209,231,236,265,276,282,285,288,293,303,305,320,322],english:[15,75,78,96,112,138],enhanc:[58,80,113,136,208,319,360],enigmat:20,enjoi:[60,62,90,105],enough:[4,6,21,29,38,40,41,42,54,56,57,60,62,63,68,69,79,83,84,86,89,90,95,107,111,114,118,122,125,135,152,158,203,204,225,233,326,327,328],ensdep:342,ensur:[48,68,93,99,105,116,125,126,214,340,360],ensure_ascii:294,enter:[0,1,3,5,9,13,14,15,20,21,22,23,25,26,27,29,31,33,35,36,40,41,42,43,45,50,57,61,62,63,65,68,74,76,79,82,84,86,88,90,94,95,99,108,110,113,115,116,118,122,123,127,128,130,132,134,137,138,140,143,150,152,157,166,167,168,173,178,179,181,186,187,197,200,214,216,217,218,219,220,229,231,233,239,245,250,254,263,304,326,355],enter_guild:50,enter_nam:50,enter_wild:233,enterlock:239,enterpris:36,entir:[10,11,13,14,19,22,27,29,33,45,48,49,50,59,60,68,79,85,89,90,107,110,113,114,122,124,126,135,179,204,205,214,232,239,240,245,250,316,320,328,332,334,342,360],entireti:[50,72,187,326],entit:322,entiti:[6,11,27,34,42,46,50,52,54,58,60,63,79,83,86,88,101,104,106,108,111,115,118,124,125,138,142,143,153,158,168,174,175,176,205,211,239,245,247,248,249,250,251,254,255,257,259,306,314,315,317,322,326,327,331,339,342],entitii:106,entitl:89,entranc:110,entri:[4,5,11,15,25,27,31,33,34,42,46,47,50,53,57,58,62,68,69,71,76,79,90,94,106,118,120,130,137,138,143,153,165,166,169,189,196,203,214,216,217,218,219,220,234,235,236,237,240,245,259,284,297,314,320,322,324,326,328,335,336,339,342,343,360],entriest:[42,155],entrust:58,entrypoint:99,entrytext:[68,237,322],enul:8,enumar:342,enumer:133,env:[265,275],environ:[4,7,9,13,25,36,42,44,52,58,60,62,63,64,81,89,94,99,102,127,168,169,227,265,275,291,300,320,326,340,358],environment:265,eof:285,epic:78,epilog:232,epoch:[27,61,329],epollreactor:310,epub:78,equal:[0,16,19,20,25,31,33,38,45,90,92,95,96,113,120,151,186,205,216,217,218,219,220,245,342],equip:[14,56,113,181,216,217,219,220],equival:[10,11,13,39,42,46,62,86,87,100,102,103,109,113,127,142,158,236,283,289,314,342,360],eras:[9,94,220],err:[57,79,296,320],err_travers:[88,245],errback:[10,262,265,274,275,342],errmessag:151,errmsg:[122,335],erron:[112,122,274,328],error:[1,5,6,8,9,10,11,14,15,20,22,23,24,26,27,31,33,37,41,42,50,52,55,56,57,58,59,62,63,70,73,74,75,79,82,85,86,88,89,90,96,102,103,104,108,110,112,113,117,118,119,121,122,124,126,127,130,132,134,138,143,149,151,152,158,174,194,199,203,205,214,226,230,232,240,245,248,249,257,262,264,265,267,269,274,288,296,316,319,320,322,325,326,334,335,338,342,343,362],error_check_python_modul:265,error_class:[144,235,242,355],error_cmd:43,error_msg:308,errorlist:[144,235,242,355],errorlog:8,escal:[2,19,42,79,155,239],escap:[42,68,113,164,168,232,248,319,334,341,355],escript:[22,179],especi:[1,8,15,22,23,29,59,60,62,79,104,110,111,123,189,204,320,327],ess:51,essai:78,essenti:[28,48,55,74,78,105,112,175,265,322],est:51,establish:[33,60,72,104,143,196,216,245,262,274,276,283,285,288,293,296,303,305],estat:136,estim:[30,250,332],esult:245,etc:[2,5,6,8,11,12,20,22,23,24,25,27,29,30,33,35,39,40,42,46,47,48,50,54,55,56,57,60,61,62,63,72,78,79,82,83,85,86,87,88,94,95,99,101,102,104,106,107,108,109,115,118,119,124,125,126,130,131,136,137,143,147,149,150,151,152,155,157,158,166,167,168,174,178,182,183,187,189,202,204,205,211,217,219,223,226,232,245,248,249,250,283,285,288,292,293,294,304,305,313,314,316,319,320,322,323,324,325,326,334,335,342,360],etern:50,ev_channel:145,eval:[108,178,248],evalstr:240,evalu:[33,118,150,178,240,248],evbot:[42,163,306],evcast:78,evcel:[325,328],evcolor:78,evcolum:328,evcolumn:328,eve:342,eveditor:[22,44,138,140,141,179,318,362],eveditorcmdset:324,even:[1,4,6,9,11,12,14,19,21,22,25,26,27,29,31,37,38,40,41,42,45,48,49,50,53,54,55,56,57,59,60,61,62,63,68,69,72,76,79,84,85,89,90,92,96,101,102,104,105,107,109,113,114,115,117,118,121,122,124,125,128,130,134,137,151,153,156,181,183,186,187,196,204,216,217,218,219,220,231,232,245,250,288,328,332,342],evenli:[27,183,342],evenn:99,evenna:9,evenni:4,evennia:[0,1,2,3,6,10,11,13,14,15,17,19,20,21,22,24,27,28,29,30,31,33,34,35,36,37,38,39,42,43,47,48,49,50,51,58,59,60,61,62,63,64,65,67,68,69,71,72,73,77,79,80,82,83,84,85,86,87,88,91,92,93,96,97,98,100,101,102,103,104,106,107,110,111,112,113,114,115,116,117,118,119,120,121,122,124,128,129,131,132,133,134,135,137,138,362],evennia_access:8,evennia_admin:360,evennia_channel:[42,64,71,97,163],evennia_dir:342,evennia_error:8,evennia_gener:135,evennia_launch:[105,140,141,260,263],evennia_logo:135,evennia_vers:265,evennia_websocket_webcli:293,evennia_wsgi_apach:8,evenniacreateview:360,evenniadeleteview:360,evenniadetailview:360,evenniaform:355,evenniagameindexcli:267,evenniagameindexservic:268,evenniaindexview:360,evennialogfil:335,evennian:24,evenniapasswordvalid:309,evenniareverseproxyresourc:310,evenniatest:[169,195,210,227,291,340,358],evenniaupdateview:360,evenniausernameavailabilityvalid:[143,309],evenniawebtest:358,event:[50,63,72,102,106,136,138,140,145,178,183,193,194,195,196,197,205,208,226,254,257,307,362],event_nam:[193,197],eventcharact:196,eventdict:335,eventexit:196,eventfunc:[0,140,177,190,194],eventhandl:194,eventi:[153,179,232],eventobject:196,eventroom:196,eventu:[4,11,12,19,29,33,40,57,60,69,75,79,82,87,89,109,115,118,122,132,135,143,149,150,167,169,184,196,204,205,231,240,245,249,250,262,270,296,304,305,317,321,322,326,328,353],evenv:[4,36,62,63,74,96,105],evenwidth:328,ever:[11,12,13,14,15,22,23,33,40,56,63,72,85,90,101,104,109,110,111,112,117,124,127,130,137,239,259,276,277,283,314,326],everi:[0,4,6,11,13,20,21,26,27,28,31,33,36,37,38,40,42,45,47,48,50,56,61,62,63,68,72,73,74,76,84,85,89,90,95,99,101,103,107,108,110,111,112,113,114,115,118,119,120,121,122,124,126,127,129,130,131,132,133,134,135,136,137,143,158,163,181,187,194,204,205,214,216,217,218,219,220,222,226,233,245,250,257,259,270,287,297,303,312,313,314,316,326,327,328],everror:194,everybodi:40,everyon:[19,21,24,33,34,42,50,57,60,63,70,72,76,77,79,86,97,101,109,111,113,115,120,122,126,127,130,131,158,164,165,184,216,217,218,219,220,245,283],everyth:[9,11,19,21,26,28,31,36,41,42,46,48,52,54,57,60,62,63,68,71,72,74,78,79,80,82,84,86,89,90,96,99,102,103,108,109,110,112,114,115,118,121,126,127,130,134,135,136,137,138,148,153,163,164,166,167,168,169,170,180,185,231,239,244,254,269,296,304,314,316,320,334],everywher:[9,55,93],evform:[27,44,140,141,318],evgam:[42,163],evid:71,evil:[14,92,225,250],evmenu:[22,27,33,44,57,84,123,138,140,141,179,187,200,213,214,247,318,327,362],evmenucmdset:326,evmenuerror:326,evmor:[44,138,140,141,318,362],evtabl:[27,33,44,48,110,140,141,153,187,249,318,325,327,342],evtable_arg:327,evtable_kwarg:327,exact:[33,40,42,50,79,92,94,95,118,128,137,143,150,158,167,175,205,220,236,245,249,250,315,316,338,339,342],exactli:[2,10,19,20,39,41,45,57,61,62,63,68,72,75,82,85,90,94,95,99,101,109,110,113,114,122,127,130,135,137,205,245,265,316,339],exam:[42,158],examin:[2,11,12,20,22,33,57,59,72,79,82,84,90,95,105,114,121,122,130,136,139,143,158,178,223,230,231,297],exampl:[0,2,4,5,6,8,10,11,13,14,15,17,19,20,21,22,25,27,28,29,30,31,33,36,37,39,40,42,43,47,48,52,54,55,56,57,58,59,60,61,62,63,66,67,70,73,76,80,81,82,83,84,85,86,87,88,90,92,94,95,96,97,99,102,103,104,105,108,109,110,111,113,114,116,117,118,120,121,122,123,124,125,128,129,130,131,132,134,135,137,138,139,140,143,147,150,151,152,153,156,157,158,163,164,165,166,167,169,173,175,176,178,179,181,183,184,186,187,188,189,198,199,202,203,204,205,208,211,212,213,214,216,217,218,219,220,222,225,226,229,231,232,233,237,240,244,245,250,254,257,259,270,285,288,289,294,297,306,310,313,314,316,317,318,319,321,325,326,327,328,329,333,334,335,336,339,340,342,343,355,360,361,362],example1_build_forest:199,example1_build_mountain:199,example1_build_templ:199,example1_legend:199,example1_map:199,example2_build_forest:199,example2_build_horizontal_exit:199,example2_build_verticle_exit:199,example2_legend:199,example2_map:199,example_batch_cod:[13,140,177,221],exapmpl:5,excalibur:84,exce:[81,216,217,218,219,220,308,332],exceed:308,excel:[55,78,79,101,107],excempt:151,except:[4,9,10,11,14,19,20,21,22,27,28,29,31,33,38,40,45,49,57,62,63,74,79,82,88,89,90,94,96,101,108,110,113,115,117,118,119,120,122,125,132,133,143,145,147,149,152,153,166,167,174,175,176,178,181,183,186,188,193,194,196,197,201,202,203,204,205,211,212,213,216,217,218,219,220,222,225,226,229,230,231,232,233,237,239,240,244,245,249,254,257,265,270,272,274,286,288,290,294,298,310,314,317,319,322,325,326,328,329,333,334,335,337,342],excepteur:51,excerpt:49,excess:[22,79,108,166,167,244,320],exchang:[13,89,101,178,323],excit:[20,35,53],exclam:21,exclud:[63,118,119,122,181,202,231,244,245,324,326],exclude_channel_messag:175,exclude_cov:181,excluded_typeclass_path:168,exclus:[50,60,79,245,254,315,326],exclusiv:322,exe:[62,105,127],exec:[50,84,108,250,326],exec_kwarg:326,exec_str:300,execcgi:8,execut:[0,9,10,12,13,14,19,22,25,28,29,31,33,36,42,44,45,46,49,50,54,61,62,63,68,74,82,84,86,88,90,94,101,105,108,110,113,118,126,127,136,138,143,145,147,148,149,153,156,157,165,166,168,169,176,179,194,199,205,214,232,237,239,240,244,245,249,250,251,254,258,262,270,272,275,276,282,285,288,293,297,300,303,304,314,316,317,320,326,327,333,334,342,362],execute_cmd:[2,33,88,116,117,122,143,145,153,245,270,304],execute_command:33,executor:36,exemplifi:[28,39,121],exercis:[21,40,41,57,84,94,95,110,115,122,131,291,301,333],exhaust:22,exhaustedgener:203,exidbobj:245,exis:43,exist:[0,2,3,5,11,12,13,20,21,22,25,27,31,33,35,36,38,39,40,42,43,45,47,48,50,55,56,57,59,60,63,64,67,68,69,71,75,79,85,95,96,99,101,104,108,110,111,114,115,116,122,123,127,130,133,135,137,138,142,143,144,145,151,152,153,158,165,166,167,168,174,179,180,186,191,193,194,197,198,201,202,204,205,212,219,230,233,239,240,244,245,247,250,257,258,265,269,271,285,286,290,298,303,304,306,314,315,316,317,320,322,324,325,326,328,335,337,342],existen:304,exit:[20,21,22,23,31,38,40,42,44,48,49,50,54,57,62,79,84,85,90,99,105,108,110,118,120,121,122,123,124,127,138,140,149,151,152,158,168,178,179,195,196,199,200,211,212,214,220,229,230,231,232,233,239,244,245,250,285,297,314,322,324,326,327,340,358,362],exit_alias:[158,211],exit_back:57,exit_cmd:[50,327],exit_command:245,exit_nam:[48,158,211],exit_on_lastpag:327,exit_ther:57,exit_to_her:[42,158],exit_to_ther:[42,158],exit_typeclass:[233,340,358],exitbuildingmenu:22,exitcmdset:[31,245],exitcommand:245,exitnam:211,exitobject:43,exixt:283,exot:33,exp:325,expand:[0,1,4,5,6,20,21,23,48,54,56,57,60,63,69,73,80,84,88,89,103,110,113,116,119,122,123,130,131,134,138,139,158,185,211,216,217,218,219,220,245,319,328],expand_tab:328,expandtab:[319,328],expans:[43,60],expect:[0,1,6,9,10,33,34,37,46,55,57,60,74,79,82,86,87,88,89,90,93,94,95,96,106,112,113,114,121,122,123,125,126,127,133,137,158,166,167,179,191,193,203,226,233,239,245,249,250,263,313,316,326,327,332,347,360],expected_return:126,expedit:95,expens:[89,114,118,339],experi:[26,41,50,56,59,60,61,62,72,76,80,89,94,99,110,121,130,134,138],experienc:[50,60,63,78,94],experienced_betray:50,experienced_viol:50,experiment:[42,73,168,172,242,361],explain:[20,22,33,38,47,50,54,57,63,70,78,85,118,120,123,125,126,128,130,133,135,138],explan:[25,31,33,38,63,68,76,113,123,138,309],explicit:[0,1,22,31,39,47,68,70,87,90,103,128,135,203,265,287,314],explicitli:[4,9,21,30,31,42,57,58,62,67,79,82,83,84,85,86,95,96,108,111,113,114,123,124,152,153,158,203,245,250,259,316,319,322,338],explor:[0,2,10,20,41,42,52,58,62,68,82,94,103,110,115,121,124,168],expos:[102,133],express:[3,33,42,50,55,79,108,118,133,134,139,158,183,203,220,248,342],ext:50,extend:[1,3,5,27,34,38,42,54,55,68,72,78,84,85,107,110,116,117,124,132,133,147,153,165,169,174,180,182,186,194,197,233,242,244,245,316,319,336,355,360],extended_room:[140,141,177],extendedloopingcal:259,extendedroom:186,extendedroomcmdset:186,extens:[1,3,9,23,50,54,55,60,62,63,87,95,96,103,110,113,126,137,147,209,216,280,288,322,331,341],extent:[22,55,72],extern:[8,15,23,34,39,40,42,53,54,56,62,64,71,89,97,105,107,108,110,123,138,140,163,171,174,176,208,249,263,265,267],external_discord_hello:270,extra:[1,6,8,14,16,21,23,25,29,31,33,37,40,50,56,57,79,88,89,92,94,95,106,113,118,122,124,125,126,133,135,136,137,143,144,147,153,165,178,186,188,201,205,231,245,248,259,262,313,315,319,320,324,326,328,335,336,337,341,342],extra_environ:320,extra_spac:342,extract:[11,40,55,90,95,96,106,137,153,205,209,240,279,293,327,342],extract_goto_exec:326,extrainfoauthserv:285,extran:187,extrem:[26,55,90,109,127,216,217,219,220,278,336],eye:[59,96,110,113,250,327],eyed:135,eyes:[33,37,56],eyesight:[57,79,113],f6d4ca9b2b22:99,face:[89,102,121,188,309,326],facil:335,fact:[10,11,14,21,29,33,54,56,57,60,75,82,88,102,105,113,116,122,124,125,133,137,139,306,334],facter:137,factor:[0,61,81,113,217,219,262,276,277],factori:[39,95,262,267,275,276,277,283,284,285,286,288,296],factory_path:145,fade:[107,204],fail:[4,9,10,11,12,13,14,24,27,31,40,50,59,60,62,88,90,102,106,108,109,112,115,116,120,126,152,167,174,184,205,211,230,239,240,245,249,257,262,263,265,269,276,277,287,308,313,314,316,334,336,338,342,360],failmsg:308,failtext:72,failur:[10,14,62,72,118,126,143,231,267,274,276,277,296,308,319,342],failure_teleport_msg:231,failure_teleport_to:231,faint:101,fair:[72,184],fairli:[38,68,74,181,187,214,217],fake:[182,296,306,314],fall:[26,31,59,61,63,72,96,101,110,112,140,143,167,188,205,231,342,355,360],fall_exit:231,fallback:[43,48,54,149,153,176,186,240,257,265,289,294,314,326,337,342],fals:[1,2,4,6,11,20,21,22,25,27,29,31,33,40,43,48,49,50,57,61,67,73,76,79,80,81,83,85,88,95,101,102,114,115,117,119,120,122,124,126,132,136,143,144,147,150,151,152,153,158,165,174,175,176,178,179,181,182,183,184,187,191,194,196,198,204,205,211,214,216,217,218,219,220,232,233,235,236,237,239,240,242,244,245,247,249,250,254,255,256,257,259,262,265,267,271,274,275,282,283,284,285,288,294,302,304,306,308,310,313,314,315,316,317,319,320,322,324,326,327,328,329,332,334,337,338,339,341,342,343,355],falsestr:187,falter:60,fame:121,famili:[9,50,56],familiar:[3,9,20,29,31,33,38,57,59,62,84,89,90,94,95,110,118,123,124,132],famou:[51,324],fan:78,fanci:[15,17,36,72,137,181],fanclub:118,faq:[44,123,138,287,362],far:[0,13,20,21,22,31,33,38,40,43,45,48,53,54,56,58,60,74,87,89,90,94,95,99,105,110,113,118,130,137,151,220,233,239,267,292,314,324,332],fashion:110,fast:[11,15,23,26,27,29,55,61,63,81,88,107,114,130,156],faster:[23,61,92,118,174,176,178,314],fastest:5,fatal:265,faulti:94,favor:27,favorit:[21,37],fear:27,featgmcp:289,featur:[0,4,15,17,20,22,25,26,27,31,33,34,36,37,41,44,45,46,47,48,49,55,56,58,60,61,62,63,69,71,77,80,84,90,95,102,106,108,110,113,118,121,122,123,124,127,128,130,137,138,143,152,153,186,194,205,214,232,259,282,303,307,316,324,342,360,362],februari:61,fed:[10,33,79,283,314,323,325],fedora:[8,62,66,130],feed:[7,15,42,48,50,54,72,97,108,127,138,145,163,267,284,285,316],feedback:[37,41,60,69,88,117,175,225,324],feedpars:[97,284],feedread:145,feel:[0,10,17,22,37,38,45,54,56,59,60,62,63,68,69,70,72,76,89,90,107,117,121,122,124,130,132,137,204,214,217,223,231],feend78:198,feint:115,felin:27,fellow:325,felt:[101,131],femal:188,fetch:[11,62,89,99,127,130,132,199,314,327,360],few:[0,4,6,9,10,11,15,17,20,23,31,33,34,36,40,41,42,48,49,54,58,59,60,63,65,72,73,78,79,85,87,88,90,102,109,113,115,118,120,121,122,125,126,130,137,168,183,204,226,244,280,289,308,319,328,342,360],fewer:[107,306,315],fg_colormap:341,fgstart:341,fgstop:341,fiction:[50,54,61,76,326],fictional_word:204,fictiv:204,fiddl:231,fido:95,field:[3,11,23,34,53,55,57,73,83,85,86,88,101,105,106,111,118,124,127,132,134,144,147,172,176,187,191,205,220,229,235,237,239,242,244,245,249,250,252,254,255,259,272,313,314,315,316,317,325,333,338,339,355,357,360],field_class:355,field_or_argnam:73,field_ord:355,fieldevmenu:187,fieldfil:[140,141,177],fieldnam:[57,83,187,255,316,332,355],fieldset:[144,172,235,242,252],fieldtyp:187,fifi:95,fifo:342,fifth:48,fight:[29,31,60,115,121,216,217,218,219,220,230],fighter:[216,217,218,219,220],figur:[3,12,26,33,37,41,48,79,82,89,90,92,95,96,118,120,130,132,137,178,180,183,205,265],file:[2,3,4,5,6,8,9,19,20,21,22,23,25,26,27,31,34,36,37,39,40,41,43,46,47,53,55,56,57,58,59,61,62,63,64,65,66,67,68,71,74,75,78,79,80,84,85,89,92,94,95,96,97,99,102,105,109,110,113,116,118,119,120,122,127,129,132,133,134,135,136,137,138,140,141,143,144,157,165,174,179,181,182,183,185,199,200,204,208,232,233,235,239,242,250,264,265,285,286,289,290,297,298,299,303,310,311,313,318,325,326,335,338,339,342,355,360],file_end:[320,342],filelogobserv:335,filenam:[27,59,130,320,325,335],filename1:265,filename2:265,filesystem:[62,99,102],fill:[36,40,48,49,57,60,64,69,105,110,113,118,132,134,187,248,313,314,319,325,327,328,342],fill_char:328,fill_color:189,fillabl:187,fillchar:[113,319,334,342],filo:342,filter:[31,34,38,42,68,85,105,113,118,119,124,132,137,151,156,174,179,186,205,244,245,342,360],filter_famili:[118,124],filthi:77,final_valu:10,find:[0,3,4,6,10,11,12,13,14,17,20,21,22,23,24,25,26,27,29,31,33,34,37,39,40,41,45,46,47,48,49,54,55,56,57,59,60,61,62,67,68,69,72,73,74,75,77,78,79,83,85,86,88,89,90,92,94,95,96,99,101,102,107,108,109,111,113,118,121,122,123,124,126,127,130,132,133,134,135,138,139,143,150,158,175,183,186,199,205,211,214,231,232,245,249,250,256,265,279,314,315,319,321,339,342],find_apropo:236,find_topicmatch:236,find_topics_with_categori:236,find_topicsuggest:236,fine:[12,15,20,33,40,43,45,63,84,85,88,94,104,111,114,117,121,122,137,145,231,314,322,342],finer:12,finish:[10,14,29,33,57,58,60,99,106,121,122,123,127,132,135,140,143,153,155,166,178,186,202,230,245,265,269,277,288,303,310,321,326,342],finish_chargen:50,finit:90,fire:[2,20,21,27,28,29,33,45,50,57,60,95,101,105,106,110,114,117,119,131,138,145,149,194,218,219,245,248,250,257,265,274,276,293,326,327,332,342],firebreath:57,firefox:71,firestorm:28,firestorm_lastcast:28,firewal:89,first:[2,3,4,5,6,7,9,10,11,12,13,14,15,16,19,20,21,23,24,26,27,29,31,33,35,38,39,40,41,42,44,47,48,49,50,54,55,57,58,60,61,62,64,67,68,69,70,72,74,75,76,79,80,82,84,85,88,89,90,92,95,96,97,99,101,102,103,104,105,106,107,108,109,112,113,115,117,118,119,120,121,122,124,125,126,127,130,131,132,133,134,135,136,137,138,143,145,147,150,151,158,166,167,170,174,176,178,179,181,182,183,185,186,199,200,203,204,205,211,213,216,217,218,219,220,222,226,229,230,231,232,233,237,239,244,245,249,250,254,257,265,269,270,272,283,285,288,289,293,294,296,297,303,306,314,316,317,319,320,322,324,325,326,328,329,332,333,334,341,342,361,362],first_lin:122,first_nam:144,firsthand:79,firstli:[9,88,89,95,96],firstspac:341,fish:[72,152,202],fist:250,fit:[11,23,38,46,57,79,87,120,128,129,132,217,220,325,327,328,342],five:[28,33,89,110,118,152,214,342,343],fix:[13,14,16,26,27,33,37,41,42,50,56,59,60,62,63,69,74,77,82,84,89,94,95,96,108,109,120,122,124,126,137,204,265,325,327,328,338],fix_sentence_end:328,fixer:118,fixing_strange_bug:130,fixtur:[169,227,291,301,333,340],flag:[9,13,14,20,28,29,30,31,33,39,40,42,50,57,60,73,75,82,85,107,114,122,130,143,149,153,158,229,239,240,245,265,272,276,285,288,293,304,324,326,342],flame:[28,219],flash:[14,226],flat:[22,26,27,44,46,47,52,55,58,59,95,124,140,250],flatfil:55,flaticon:78,flatten:250,flatten_diff:250,flatten_prototyp:250,flattened_diff:250,flatul:101,flavor:[20,89,219],flavour:[86,125],flaw:120,fled:[115,229],fledg:[15,89,107,122,132,157,184],flee:[115,116,220,229],fleevalu:115,flesh:[20,57],flexibl:[1,13,21,22,29,38,42,50,52,56,58,72,87,89,101,107,108,110,115,133,136,137,147,158,178,179,187,214,239,314,342,360],flick:343,flip:[50,80],flood:[27,49],floor:[0,81,205],flow:[17,36,39,54,60,82,85,114,130,136,322,334],flower:[12,20,42,60,86,88,118,158],flowerpot:[12,56],fluent:78,fluid:[16,17],flurri:205,flush:[23,33,42,110,127,168,257,314,316,332],flush_cach:332,flush_cached_inst:332,flush_from_cach:332,flush_instance_cach:332,flusher:332,flushmem:[42,168],fly:[3,12,21,27,31,33,34,42,50,54,63,84,101,108,118,137,143,164,166,167,174,176,237,245,259,272,283,286,290,314,320,329,342,360],focu:[4,60,115,123],focus:[55,56,60,76,78,105,122,123,220],foe:217,fold:214,folder:[3,5,8,13,14,21,27,30,46,48,54,56,57,59,62,63,68,72,74,75,85,94,95,99,102,105,109,110,115,116,117,122,126,127,132,133,134,135,136,199,216,217,218,219,220,265],folder_nam:63,foldernam:59,follow:[0,2,4,5,7,8,9,10,11,13,14,16,17,19,20,22,23,25,31,33,34,37,38,39,40,41,42,45,46,47,48,49,50,52,53,57,59,60,61,62,64,67,68,70,72,73,74,75,78,79,81,84,85,87,88,89,90,92,94,95,96,99,101,102,105,109,111,113,115,116,118,119,120,122,124,126,127,130,132,133,134,136,143,145,147,149,150,153,158,166,167,169,174,176,179,181,182,184,188,194,196,198,199,205,214,218,219,225,231,237,239,240,244,245,248,250,254,255,269,270,280,289,293,294,297,307,314,316,319,320,322,325,326,328,334,335,342],follwo:240,fond:61,font:[25,110,136],foo:[33,39,50,82,83,87,94,106,111,118,126,214,326,340],foo_bar:87,foobarfoo:12,foolish:225,footer:[68,132,153],footnot:15,footprint:[42,168],footwear:56,for_cont:245,forai:95,forbid:40,forbidden:130,forc:[0,6,8,10,31,33,57,59,62,72,80,81,90,99,102,109,115,120,122,124,126,136,137,145,152,156,158,178,186,188,202,204,205,240,245,249,256,276,277,283,288,306,327,328,332],force_init:245,force_repeat:[101,115,257],force_restart:257,force_str:338,forcibl:[101,256],fore:303,forebod:186,foreground:[41,99,113,125,182,265,334],foreign:124,foreignkei:[147,244,254,313,316,333],forens:209,forest:[13,110,111,139,186,199],forest_meadow:111,forest_room:111,forestobj:139,forev:[60,101],forget:[3,9,10,13,25,27,33,40,53,61,71,84,85,94,95,99,122,130,205,320],forgo:230,forgotten:[28,48,76,84],fork:[9,78],forloop:68,form:[11,13,27,31,33,34,42,44,50,54,57,58,60,63,67,69,73,75,76,79,82,87,88,92,95,96,108,111,112,113,114,115,117,122,123,124,126,128,134,140,143,144,145,150,152,153,156,158,166,167,169,172,174,175,176,178,187,188,204,205,209,235,237,239,240,242,245,249,250,252,255,257,259,263,283,285,289,293,304,306,313,314,315,316,319,320,322,323,324,325,328,334,335,338,339,342,343,344,354,360],form_char:325,form_class:360,form_template_to_dict:187,form_valid:360,formal:[60,79,95,137,245,289],format:[0,14,17,19,22,23,27,31,33,37,40,41,45,47,54,57,61,67,68,75,78,80,82,87,95,97,102,107,108,110,112,113,118,123,128,130,132,137,151,153,155,158,165,167,169,173,174,179,181,182,183,187,197,205,208,214,218,232,233,237,245,247,249,250,255,265,270,280,285,305,307,314,316,319,320,322,324,326,327,328,329,334,335,337,342,343,361],format_attribut:158,format_available_protfunc:249,format_callback:191,format_diff:250,format_extern:174,format_grid:342,format_help:232,format_help_entri:165,format_help_list:165,format_messag:174,format_output:158,format_pag:327,format_send:174,format_t:342,format_text:179,format_usag:232,formatt:[187,249,326,327],formatted_list:174,formcallback:187,formchar:[57,325],formdata:187,former:[17,23,63,125,326],formfield:338,formhelptext:187,formset:313,formstr:57,formtempl:187,formul:133,forth:[27,42,130,158,219],fortress:110,fortun:[4,33,38,47,68,121,127],forum:[1,9,37,47,54,56,62,89,97,127],forward:[13,14,20,41,44,49,50,61,68,89,120,125,143,147,176,198,208,237,244,254,310,314,316,317,325,327,333],forwardfor:66,forwardmanytoonedescriptor:[244,254,333],forwardonetoonedescriptor:[244,254,333],foul:108,found:[2,4,6,9,10,13,14,15,20,22,23,25,27,31,33,38,39,40,41,42,48,50,52,54,56,57,58,62,67,72,73,75,77,79,82,84,88,89,90,93,96,102,103,108,111,115,118,121,122,124,126,127,133,134,136,137,140,143,148,149,150,151,153,158,166,167,174,178,179,191,193,194,196,199,205,231,237,240,245,248,249,250,256,259,264,265,271,280,283,294,304,306,314,315,316,319,320,321,322,326,328,332,334,337,339,342,344],foundat:[48,54,76,78,216],four:[4,14,27,38,39,67,72,81,85,86,110,113,118,152,176,186,240],fourth:38,fqdn:89,fractal:55,fraction:126,frame:[136,137],framework:[3,16,63,93,123,132,135,136,169,216,219,338],frankli:128,free:[0,22,29,37,47,54,56,59,60,63,75,76,78,89,105,111,115,122,123,125,129,132,138,178,205,214,217,249],freedn:89,freedom:[14,26,43,62],freeform:[72,115,181],freeli:[54,76,99,102,320],freenod:[9,42,62,69,71,78,89,145,163,306],freepik:78,freetext:[175,339],freez:[29,33,41,193],frequenc:204,frequent:[90,179],fresh:[11,31,57,127,265],freshli:110,fri:12,friarzen:137,friend:[37,57,60,81,102],friendli:[22,77,94,132,137,147],friendlier:[174,245],frighten:218,from:[0,2,3,5,6,8,9,10,11,12,13,14,15,16,17,19,21,22,23,26,27,28,29,30,31,33,34,35,36,38,39,40,41,42,43,45,46,47,48,49,51,53,55,56,57,58,60,61,62,63,65,67,68,69,70,71,72,73,74,75,78,79,80,81,82,83,84,85,86,88,90,91,92,94,96,97,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,133,134,135,138,139,140,143,145,147,148,149,150,151,152,153,155,156,157,158,163,164,165,166,167,168,169,170,172,173,174,175,176,178,179,180,181,182,183,184,185,186,187,188,193,194,196,197,198,199,201,202,203,204,205,208,209,210,211,212,214,216,217,218,219,220,223,225,226,229,230,231,232,233,236,237,239,240,241,244,245,249,250,254,255,256,257,258,259,262,265,270,271,272,274,275,276,277,278,282,283,284,285,288,293,294,297,299,303,304,305,306,310,311,312,313,314,315,316,317,319,320,321,322,323,324,325,326,327,328,329,332,333,334,335,336,338,339,341,342,343,355,360,361,362],from_channel:145,from_db_valu:338,from_obj:[80,82,117,143,145,153,188,245],from_pickl:323,from_tz:343,frombox:274,fromstr:274,fromtimestamp:329,front:[8,13,20,52,72,79,84,95,102,108,130,136,138],frontend:[214,314],frozen:[29,33,121,194],fruit:202,ftabl:342,ftp:341,fuel:[21,219],fugiat:51,fulfil:265,full:[4,9,13,14,15,16,17,20,21,23,24,25,26,27,33,37,42,50,52,54,56,57,58,59,60,63,72,74,79,83,87,88,89,94,95,96,99,100,101,104,107,108,109,110,114,115,116,118,120,122,123,124,126,127,130,132,133,134,135,145,150,152,153,157,158,163,167,168,169,178,179,184,186,189,201,204,205,214,219,232,240,250,255,277,283,296,306,307,314,316,320,324,326,328,342],full_justifi:[108,248],full_nam:86,full_result:184,fuller:57,fulli:[4,11,19,33,50,54,57,58,60,62,84,85,89,92,102,109,121,143,204,240,245,257,293,305,322,342],fun:[20,26,60,78,80,110,135],func1:[42,158,240,297],func2:[42,158,240,297],func:[5,10,21,22,25,28,29,30,33,41,43,49,50,55,57,59,61,70,72,79,80,81,82,84,90,115,118,120,122,149,153,155,156,157,158,163,164,165,166,167,168,169,170,173,178,179,180,181,183,184,185,186,187,188,192,198,199,200,201,202,205,211,212,213,214,216,217,218,219,220,223,229,230,231,232,239,240,245,276,297,301,310,324,326,327,329,342,360],func_arg:274,func_kwarg:274,funciton:219,funcnam:[73,113,240,248,259,334],functioncal:274,functionnam:[274,334],functool:62,fund:69,fundament:[33,56,76,88,94,95,111,245],furnitur:[13,111,124],further:[0,9,11,27,31,34,41,42,43,48,56,82,84,85,89,90,95,99,103,104,105,108,109,110,118,123,124,129,130,137,152,158,180,204,218,220,250,265,289,342],furthermor:[37,123,125],fuss:99,futur:[9,10,11,20,23,42,44,49,54,57,59,60,61,62,75,86,94,99,122,138,155,194,230,233,270,315,336,343,362],futurist:61,fuzzi:[75,236,339,342],fuzzy_import_from_modul:342,gag:24,gain:[11,29,60,92,153,176,205,240,245],galosch:204,gambl:184,game:[0,2,3,4,5,6,8,9,10,11,13,14,15,17,18,19,20,21,22,23,24,25,28,29,30,31,33,34,35,36,37,40,41,42,43,45,49,50,51,52,55,59,62,63,64,65,67,68,70,71,74,75,76,77,78,79,80,82,84,85,86,87,88,90,91,92,94,95,96,97,100,101,102,103,104,105,106,107,108,109,111,112,113,114,115,116,117,118,120,121,124,128,129,131,132,133,134,135,136,137,138,139,142,143,144,145,147,149,151,152,153,155,156,157,158,162,164,165,168,169,170,171,173,174,175,176,177,178,179,180,181,183,184,185,186,187,189,192,193,194,195,196,198,199,203,204,205,212,214,216,217,218,219,220,228,231,232,237,239,241,244,245,254,256,257,260,265,267,268,269,270,276,277,282,284,285,288,289,296,297,298,303,304,306,313,315,316,317,320,321,322,324,325,329,332,334,335,342,361,362],game_dir:[335,342],game_epoch:[27,329],game_index_cli:[140,141,260],game_index_en:53,game_index_list:53,game_map:199,game_nam:[53,348],game_slogan:[9,348],game_statu:53,game_templ:46,game_websit:53,gamedir:[50,108,265,311],gamedirnam:57,gameindexcli:268,gamemap:199,gameplai:[89,144],gamer:[64,71],gamesrc:27,gametim:[27,58,138,140,141,183,186,194,318,362],gametime_to_realtim:183,gametimescript:183,gammon:[78,280],gandalf:50,garbag:314,garden:78,garment:181,gatewai:[109,294],gather:[24,33,47,82,93,118,126,131,135,149,150,231,263,267,322,339],gave:[5,21,59,63,90,101,125],gbg:319,gcc:62,gear:[42,89,105,135,145,152,170,185],gemer:203,gen:17,gender:188,gendercharact:188,gendersub:[140,141,177],gener:[0,1,5,9,10,11,12,20,23,25,29,31,33,34,36,37,47,48,50,52,54,56,57,58,59,61,62,63,67,69,72,75,79,82,85,86,87,89,92,95,103,104,105,108,110,111,113,115,125,126,133,136,137,138,140,143,145,148,153,154,155,158,165,166,167,169,170,173,174,178,179,180,181,184,185,186,187,188,194,198,199,200,201,203,204,205,208,209,211,212,213,214,216,217,218,219,220,223,229,231,232,237,240,245,247,250,276,283,285,288,289,293,304,305,306,310,314,317,319,321,322,324,326,327,328,335,337,338,342,347,355,360,361,362],general_context:[140,344,346],generate_sessid:283,generic_mud_communication_protocol:289,genericbuildingcmd:179,genericbuildingmenu:179,genesi:89,geniu:202,genr:[37,63,279],geoff:232,geograph:139,geographi:38,geoip:208,geometr:110,geometri:110,get:[0,1,2,3,5,6,7,8,9,10,11,12,13,15,17,21,22,23,25,26,28,29,30,31,33,38,39,40,41,43,44,45,46,47,48,49,52,53,54,55,56,57,58,59,60,61,63,64,67,68,70,71,72,73,74,75,76,79,80,81,82,83,84,85,86,87,89,90,91,92,94,95,96,99,101,102,103,104,105,106,109,110,111,113,115,117,120,121,122,124,125,126,127,129,130,132,133,134,135,136,137,138,143,145,147,151,152,153,155,156,158,159,163,164,170,172,173,175,176,179,181,184,191,193,194,196,197,198,202,203,205,212,213,214,216,217,218,219,220,222,223,230,231,233,236,237,239,240,244,245,247,249,250,254,256,257,259,263,265,270,274,275,279,283,285,288,289,291,293,294,302,304,305,306,308,314,315,316,317,319,320,321,324,326,328,329,331,332,334,335,336,337,339,342,355,360,361,362],get_abl:59,get_absolute_url:[133,174,237,316],get_account:[240,304],get_al:314,get_alia:315,get_all_attribut:314,get_all_cached_inst:332,get_all_categori:236,get_all_channel:175,get_all_cmd_keys_and_alias:151,get_all_mail:198,get_all_puppet:143,get_all_sync_data:306,get_all_top:236,get_all_typeclass:342,get_attack:[216,217,218,219,220],get_attr:158,get_attribut:315,get_buff:324,get_by_alia:315,get_by_attribut:315,get_by_nick:315,get_by_permiss:315,get_by_tag:315,get_cach:314,get_cached_inst:332,get_callback:194,get_channel:[40,175],get_charact:304,get_client_opt:270,get_client_s:304,get_client_sess:[293,294],get_client_sessid:294,get_cmdset:173,get_command_info:[153,166],get_context_data:360,get_damag:[216,217,218,219,220],get_db_prep_lookup:338,get_db_prep_valu:338,get_dbref_rang:315,get_default:338,get_defens:[216,217,218,219,220],get_display_nam:[22,41,45,57,81,205,233,245,316],get_err_msg:[6,20,79],get_ev:194,get_evennia_pid:342,get_evennia_vers:342,get_event_handl:197,get_extra_info:[40,153,173,245,316],get_famili:[118,124],get_fieldset:242,get_form:242,get_formset:313,get_game_dir_path:342,get_god_account:269,get_height:328,get_help:[33,67,68,153,169,192,232],get_help_text:309,get_id:[132,315],get_info_dict:[282,303],get_initi:360,get_input:326,get_inputfunc:[270,289,306],get_internal_typ:338,get_kwarg:358,get_location_nam:233,get_mass:81,get_message_by_id:175,get_messages_by_channel:175,get_messages_by_receiv:175,get_messages_by_send:175,get_min_height:328,get_min_width:328,get_new:284,get_new_coordin:233,get_next_by_date_join:147,get_next_by_db_date_cr:[147,176,244,254,314,316],get_next_wait:197,get_nick:315,get_nicklist:[145,277],get_numbered_nam:245,get_obj_coordin:233,get_object:360,get_object_with_account:339,get_objs_at_coordin:233,get_oth:178,get_permiss:315,get_pid:265,get_player_count:279,get_previous_by_date_join:147,get_previous_by_db_date_cr:[147,176,244,254,314,316],get_puppet:[2,143,304],get_puppet_or_account:304,get_queryset:360,get_rang:220,get_redirect_url:360,get_regex_tupl:205,get_respons:349,get_room_at:38,get_rooms_around:38,get_sess:306,get_statu:275,get_subscript:175,get_success_url:360,get_sync_data:305,get_system_cmd:151,get_tag:315,get_time_and_season:186,get_typeclass_tot:315,get_uptim:279,get_username_valid:143,get_valu:[270,289],get_vari:[191,194],get_width:328,get_worn_cloth:181,getattr:83,getchild:310,getclientaddress:[39,285],getel:136,getenv:[265,275],getfromlock:239,getgl:136,getinput:326,getkeypair:285,getloadavg:74,getpeer:285,getpid:342,getsizof:332,getsslcontext:[286,290],getston:33,getter:[147,176,181,196,205,217,220,244,245,272,314],gettext:75,gfg:319,ghostli:231,giant:[21,123],gid:[99,297],gidcount:296,gift:68,gist:[204,342],git:[9,23,25,36,44,46,62,74,75,78,85,89,99,107,123,127,129],github:[9,25,37,40,44,56,62,69,74,75,78,95,97,129,130,137,179,293,310,342],gitignor:130,give:[0,1,2,3,4,5,9,10,11,12,13,15,18,19,20,21,22,23,25,26,27,30,33,38,40,45,47,50,51,52,54,56,57,58,59,60,61,62,63,66,67,68,72,74,76,78,79,81,84,87,88,89,90,92,93,95,97,99,101,102,104,106,108,109,110,111,112,114,115,116,117,118,121,122,123,124,126,127,132,133,135,137,138,139,149,151,152,155,164,166,167,168,173,175,179,180,181,186,203,204,213,214,216,217,218,219,220,223,231,233,239,245,254,291,304,310,316,319,328,339,340,342,361,362],givelock:239,given:[0,2,4,10,11,12,13,14,20,21,22,25,27,31,33,34,38,41,42,45,48,49,50,57,61,63,66,69,72,73,79,82,83,84,85,87,88,89,92,96,99,101,104,108,109,112,113,114,115,116,118,121,122,124,125,126,130,132,133,134,137,139,143,149,150,151,152,153,155,156,158,163,165,167,168,174,175,176,179,180,181,183,184,185,186,187,188,189,191,193,197,202,203,204,205,211,214,216,217,218,219,220,230,231,232,239,240,245,247,248,249,250,255,256,257,259,263,265,270,271,274,283,288,289,294,297,300,304,305,306,307,309,310,314,315,316,317,319,320,322,323,324,325,326,327,328,329,332,334,335,337,338,339,340,342,347,360],given_class:357,giver:[217,220,245],glad:90,glanc:[22,27,31,33,38,47,52,57,60,90,95,179,205],glance_exit:22,glass:[202,223,225,226],glob:[42,164],global:[13,22,33,34,35,42,44,50,55,60,63,66,73,84,88,99,103,104,107,108,113,114,119,124,130,131,136,137,139,158,186,194,203,205,211,239,245,248,250,251,254,262,265,270,272,275,296,297,320,321,322,326,329,334,339,340,342,348],global_script:[101,140,321],global_search:[13,22,27,57,90,143,205,245,315],globalscript:[42,168],globalscriptcontain:321,globalth:340,globe:[89,135],gloss:60,glossari:[62,138,362],glow:110,glu:91,glyph:274,gmcp:[54,73,82,289],gmsheet:57,gmud:24,gno:22,gnome:24,gnu:14,go_back:214,go_up_one_categori:214,goal:[60,75,78,90,101,102,121,123,204],goals_of_input_valid:355,goblin:[42,50,108,158,250],goblin_arch:250,goblin_archwizard:250,goblin_wizard:250,goblinwieldingclub:108,god:[20,79,269],godlik:205,goe:[0,5,9,22,26,29,33,37,39,41,48,63,68,72,74,85,89,94,95,117,120,121,122,138,151,152,220,233,245,285,288,303,304,341,342,360],goff:203,going:[0,3,20,25,26,39,44,45,48,50,57,60,61,64,68,69,81,87,89,90,94,95,99,110,115,120,126,132,136,137,138,179,196,205,216,217,218,219,220,233,245,262,267,319,326],goings:267,gold:[50,81,84,108,320],gold_valu:84,golden:137,goldenlayout:137,goldenlayout_config:[136,137],goldenlayout_default_config:[136,137],gone:[5,12,76,79,84,99,101,130,257],good:[0,2,4,5,9,11,12,14,20,21,22,25,26,27,31,33,37,38,39,40,45,47,48,50,52,53,54,55,56,59,60,62,68,69,71,72,78,79,84,86,89,90,92,93,94,95,96,99,101,102,103,105,108,109,110,113,118,120,122,124,125,126,130,132,133,137,143,151,152,153,169,178,193,205,288,326],goodby:285,goodgui:240,googl:[42,74,78,89,163,328],googli:135,gossip:[64,78],got:[10,13,94,95,115,127,137,214,230],goto_kwarg:326,goto_next_room:120,gotten:[54,94,130,220,230,245,292],graaah:116,grab:[20,33,42,72,132,164,174,230,360],gracefulli:[26,42,155,168,205,245,265,342],gradual:[13,14,29,60,78,95,204],grai:[113,125],grain:[114,322],gram:81,grammar:204,grammat:204,grand:11,grant:[19,23,79,130,176,216,217,218,219,220,239,240,249,314],granular:220,grapevin:[7,138,140,145,260,273,362],grapevine2chan:64,grapevine_channel:[64,145],grapevine_client_id:64,grapevine_client_secret:64,grapevine_en:64,grapevinebot:145,grapevinecli:276,graph:[48,130],graphic:[41,57,79,82,83,92,110,127,134,140,185,189,289],grasp:[125,132],grave:59,grayscal:182,great:[0,4,14,16,21,22,29,37,38,50,56,60,68,69,72,76,78,90,94,106,107,122,130,133,179,187,310],greater:[22,31,79,96,104,118,239,326],greatli:77,greek:15,green:[31,42,79,108,113,125,130,158,168,230],greenskin:250,greet:[9,35,45,94,103,104,116,270],greetjack:86,greg:78,grei:[108,125],grenad:88,grep:[74,130],greyscal:113,greyskinnedgoblin:108,griatch:[21,85,118,178,180,182,183,184,185,186,188,198,200,201,204,205,211,212,213,230,325,332,338,341],grid:[7,16,110,122,138,220,233,342,362],gridstr:342,grief:12,griefer:133,grin:[33,40],gritti:33,ground:[20,21,54,110],group:[4,9,10,12,19,21,26,33,37,40,42,45,54,67,69,78,90,99,101,108,111,124,126,138,139,144,147,154,158,164,175,186,202,230,231,245,249,250,274,313,314,317,319,322],grow:[13,25,26,60,62,78,109,276,277,328,342],grown:[9,25,50,128],grudg:72,grumbl:59,grungies1138:[198,213],grunt:[42,158,250],gthi:80,guarante:[11,37,60,79,85,89,101,184,194,249,283,304,316],guard:50,guess:[15,22,45,49,68,90,102,112,137,179,250],guest1:65,guest9:65,guest:[7,79,138,143,362],guest_en:[65,79],guest_hom:[65,132],guest_list:65,guest_start_loc:65,guestaccount:111,gui:[44,56,82,136,198,362],guid:[36,37,44,80,94,95,127,132,135],guidelin:[37,78],guild:[78,85,111,117],guild_memb:50,gun:[21,76],guru:54,habit:55,habitu:114,hack:[54,72,115,274],hacker:[78,102],had:[8,9,14,15,19,20,21,29,31,37,54,60,89,94,95,99,101,118,122,127,134,137,157,181,230,249,250,254,257,265,316,320,327,355],hadn:[60,61,130],half:[107,137,237],hall:48,hallwai:48,halt:[101,110],hand:[1,15,37,39,42,50,54,55,56,57,60,69,72,86,88,95,104,107,118,133,153,164,166,167,168,178,200],handi:[41,74,118,132,218],handl:[0,2,4,5,7,8,9,11,13,15,22,24,27,33,34,37,39,40,42,43,46,48,49,50,54,55,59,60,61,63,67,73,74,79,82,84,85,86,87,88,90,92,94,96,99,103,104,107,114,115,116,123,124,125,127,128,130,131,136,137,138,143,145,148,149,151,152,158,159,163,164,167,173,178,185,186,194,196,197,200,205,209,211,213,214,216,217,218,219,220,225,230,231,232,234,244,245,248,249,250,254,255,262,265,269,270,274,275,277,278,285,288,289,292,294,296,305,306,313,314,316,319,320,322,323,324,326,328,329,332,341,342,349],handle_egd_respons:267,handle_eof:285,handle_error:194,handle_ff:285,handle_int:285,handle_quit:285,handle_setup:269,handler:[2,11,31,33,40,46,63,72,79,82,83,85,86,88,101,103,104,111,114,124,138,143,149,152,167,171,173,176,178,191,194,195,197,205,229,233,239,240,244,245,250,255,256,258,259,270,282,283,303,306,312,313,314,316,317,321,322,325,326,336,337,342],handlertyp:317,handshak:[24,51,82,275,281,283,288],handshake_don:288,hang:[3,60,69,123],hangout:118,happen:[0,6,12,19,20,26,27,31,33,37,38,40,41,43,50,53,54,56,57,59,60,61,63,71,72,76,79,82,85,87,89,90,94,95,96,101,104,106,107,109,110,113,114,115,118,121,122,125,126,127,130,132,137,143,151,152,174,183,196,212,216,217,218,219,220,226,229,231,233,245,248,250,267,274,277,297,302,304,305,306,316,326,327,332,334,335,342,361],happend:250,happi:[13,118],happier:90,happili:95,haproxi:[89,138,362],hard:[9,10,11,13,15,19,26,27,31,33,39,40,57,60,62,63,75,78,87,89,92,95,96,99,101,108,111,114,118,120,126,130,132,137,138,167,187,214,254,265,314,316,326,362],hardcod:[56,57,76,99,110,139,314],harden:62,harder:[12,55,60,92,118,126,230],hardwar:[89,278],hare:78,harm:[11,29,218],harri:58,harvest:360,has:[0,2,4,8,9,10,11,12,13,14,15,16,19,20,21,22,23,25,27,28,29,31,33,34,36,37,38,39,40,41,42,43,45,46,48,49,50,53,55,56,57,58,59,60,61,62,63,64,67,68,69,70,73,74,75,76,77,78,79,82,84,85,86,87,88,89,90,92,93,94,95,96,99,100,101,102,103,104,106,108,109,111,112,113,114,115,116,117,118,120,121,122,124,125,126,127,128,130,131,132,133,134,135,136,137,138,142,143,144,145,150,151,152,153,155,157,158,166,167,168,169,170,173,174,175,178,179,183,184,185,186,187,194,196,198,199,202,203,205,214,216,217,218,219,220,222,229,230,231,232,233,237,239,240,244,245,249,250,254,257,259,265,267,269,270,274,277,279,283,287,292,293,297,303,304,305,306,308,313,314,315,316,322,324,325,326,328,332,334,335,336,339,342,355,358,360],has_account:[88,229,239,244,245],has_attribut:314,has_cmdset:152,has_connect:[40,174],has_drawn:48,has_nick:314,has_par:342,has_perm:[166,240],has_sub:174,has_thorn:11,hasattr:[28,33],hash:[14,89,108,250,259,293,297,306,315],hasn:[22,48,203,230,313,314,360],hassl:61,hast:218,hat:[37,69,181],hau:[64,145,276],have:[0,1,2,3,4,5,6,9,10,11,12,13,14,15,16,19,20,21,22,23,25,26,27,28,29,30,31,33,34,35,36,37,38,39,40,41,42,43,45,46,47,48,49,50,52,53,54,55,56,57,58,59,60,61,62,63,64,65,67,68,69,70,71,72,73,74,75,76,77,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,99,101,102,103,104,105,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,143,145,149,151,152,153,155,158,160,163,166,167,168,169,170,174,175,176,178,179,180,181,183,185,186,187,188,193,194,196,197,201,203,204,205,208,209,214,216,217,218,219,220,223,226,231,232,236,237,239,244,245,248,249,250,251,254,256,257,258,259,270,275,278,279,283,285,288,289,303,304,305,306,308,311,312,313,314,315,316,317,319,320,321,322,323,325,326,327,328,334,335,338,339,340,342,343,355,360,361],haven:[4,22,29,41,61,76,108,110,116,117,119,126,127,132,133,137,308],hdict_cmd:165,hdict_db:165,head:[20,21,31,45,68,75,76,95,105,118,120,122,137,138],headach:[60,137],header1:327,header2:327,header:[9,13,14,27,34,37,62,81,88,94,102,128,137,153,174,176,198,205,245,289,320,322,328],header_color:158,header_line_char:328,headi:328,heading1:328,heading2:328,headless:[95,245],headlong:62,heal:[218,219,231],healing_rang:219,health:[30,60,72,83,87,89,108,115,189,250,289],health_bar:[140,141,177],hear:[29,45,60],heard:[110,121,239],heart:125,heartbeat:[114,276],heavi:[6,11,20,23,27,33,63,72,79,81,95,115,122,178,205,217,278,342],heavier:217,heavili:[9,27,37,39,56,74,85,103,179,216,217,218,219,220,316],heed:[104,240],heh:137,hei:[20,178,198],height:[51,73,136,140,270,285,304,325,328],held:[1,31,47,115,239],hello:[0,29,34,40,42,45,50,71,73,82,86,87,90,95,104,107,122,128,136,164,173,205,270,319],hello_funct:94,hello_valu:107,hello_world:[94,95,107],helmet:[29,76],help:[0,1,4,5,12,13,14,15,19,22,23,27,29,32,33,35,38,40,41,43,44,45,46,47,48,49,50,56,57,59,60,62,63,70,71,75,76,79,85,89,90,92,95,104,106,107,108,109,110,111,112,115,118,121,122,123,125,126,130,132,136,137,138,140,141,148,149,151,153,154,155,166,167,169,170,176,178,183,185,187,191,192,194,198,204,208,216,217,218,219,220,223,231,232,239,247,258,263,265,267,268,276,283,285,286,288,290,293,294,296,297,314,315,319,322,323,324,326,334,337,338,339,340,349,355,360,361,362],help_categori:[22,33,40,42,57,59,67,68,70,84,115,122,153,155,156,157,158,163,164,165,166,167,168,169,170,173,178,179,180,181,184,185,186,187,188,192,198,199,200,201,202,205,211,212,213,214,216,217,218,219,220,223,229,230,231,232,236,237,245,324,326,327,339],help_cateogori:324,help_detail:360,help_entri:324,help_kei:158,help_list:360,help_mor:165,help_system:68,help_text:[165,194,355],helpact:232,helpdetailview:360,helpentri:[68,79,235,236,237,322,360],helpentry_db_tag:235,helpentry_set:317,helpentryadmin:235,helpentryform:235,helpentrymanag:[236,237],helper:[19,40,42,50,57,79,108,118,140,143,152,155,158,165,172,175,179,183,204,245,249,250,262,274,275,294,306,320,326,335,340,341,342],helpfil:165,helplistview:360,helpmixin:360,helptaginlin:235,helptext:[50,247,326],helptext_formatt:[50,247,326],henc:[0,22,45,52,75,94,105,231,232,239,320],henceforth:[13,43,59,65,79,89,94,96,101,104,110,122,130,131,139,306],henddher:202,her:[121,126,181,188],herbal:325,herd:23,here:[0,2,3,4,5,9,10,11,13,14,15,16,17,19,20,21,22,23,24,25,27,29,30,33,36,37,38,39,40,41,42,43,45,46,47,48,50,55,56,57,58,60,61,62,63,64,68,69,70,71,72,73,74,75,76,78,79,80,82,83,84,85,86,87,88,90,91,94,97,99,100,101,102,103,104,105,106,107,108,109,110,112,113,114,115,116,117,118,119,120,122,124,125,126,127,128,129,130,132,133,134,135,136,143,145,151,152,153,158,166,167,168,170,174,178,179,180,181,183,184,185,193,194,203,204,205,212,216,217,218,219,222,223,226,229,230,231,232,233,237,240,245,249,250,257,265,267,270,274,276,282,283,285,288,303,304,306,312,313,314,316,319,322,326,328,332,334,342,344,360],hesit:[22,38],hfill_char:328,hidden:[11,48,60,63,95,121,130,136,176,181,184,232],hide:[9,11,20,31,33,34,40,60,72,79,95,110,137,165,176,184,205,223,230],hide_from:[34,176],hide_from_accounts_set:147,hide_from_channels_set:176,hide_from_objects_set:244,hieararci:239,hierarch:[2,19,42,79,155],hierarchi:[4,19,22,42,60,65,68,79,118,138,164,181,239],high:[4,8,20,31,54,62,79,121,151,219,245,307],higher:[7,19,25,31,40,42,43,50,55,57,61,62,72,79,89,104,107,118,122,127,143,151,155,168,204,216,217,218,219,220,231,239,267,326,342],highest:[31,57,319,342],highest_protocol:338,highli:[9,17,50,54,55,63,79,85,106,114,116,189,320,332],highlight:[14,56,57,113,125],hijack:133,hilight:341,hilit:341,hill:86,him:[40,45,50,188,205],hint:[1,25,54,62,78,92,94,108,109,122,123,127,135,138,183,311],hire:[84,102],his:[45,50,57,76,95,108,126,181,188,205,341],histogram:342,histor:[61,128,264,335],histori:[4,23,34,40,49,57,63,94,99,130,136,137,138,152,173,187,335],hit:[6,9,21,29,51,60,72,115,118,121,130,145,216,217,218,219,220,229,230,263,304,335,338],hit_msg:229,hite:113,hmm:137,hnow:113,hobbi:[60,89],hobbit:61,hoc:54,hold:[2,6,9,13,14,16,21,26,31,34,36,40,46,48,50,57,60,62,63,65,72,76,79,84,88,95,96,99,101,103,104,105,108,110,111,113,115,118,122,124,130,132,135,139,151,152,177,179,181,184,203,213,214,216,217,218,219,220,228,229,230,234,239,240,249,250,251,255,260,272,274,283,293,294,296,306,316,317,318,322,325,326,328,330,335,342,344],holder:[9,68,89,314],home:[8,16,26,62,63,65,78,88,89,102,108,130,132,138,152,158,164,229,239,244,245,250,322,342],home_loc:[42,158],homepag:[27,62,78,89,92],homes_set:244,homogen:[27,163,249,250,254],homogenize_prototyp:249,honor:205,hood:[20,33,50,56,59,60,63,85,86,118,121,124,127,205,232],hook:[2,25,30,33,42,48,54,59,60,72,73,75,79,80,88,95,101,106,109,114,115,116,117,119,120,122,126,131,143,149,151,153,155,158,164,166,168,169,172,174,181,186,194,196,202,203,205,209,216,217,218,219,220,227,229,230,231,233,242,245,252,254,257,259,269,276,288,291,293,301,303,304,305,307,316,324,327,332,333,336,340,342,355,360],hooligan:12,hop:54,hope:[41,57,90],hopefulli:[8,26,40,48,89,110,132,136],horizon:61,horizont:[136,137,230,328,342],hors:27,host1plu:89,host:[7,12,23,26,27,60,63,88,97,99,101,102,130,134,204,310,342],host_os_i:342,hotbutton:136,hotel:89,hotspot:102,hour:[27,61,131,183,329,342],hous:[42,89,108,158],housecat:27,hover:137,how:[0,1,3,4,5,6,7,8,10,11,12,13,14,15,17,19,20,21,22,25,26,27,28,29,30,31,35,37,38,39,40,41,42,43,44,45,47,48,50,54,55,56,59,60,61,62,63,65,67,68,71,72,74,76,79,80,81,82,83,84,85,86,87,89,90,92,93,94,95,96,101,102,103,104,105,107,108,109,110,111,115,116,117,118,119,122,123,125,126,127,129,130,131,132,133,134,135,136,137,138,139,144,145,150,152,153,167,168,169,172,173,174,179,181,183,184,188,199,203,204,205,212,214,218,219,220,225,229,233,235,239,244,245,250,254,259,265,270,275,279,284,289,292,296,303,304,305,306,310,313,316,320,324,326,328,335,336,341,342,355,361,362],howev:[0,2,4,5,10,11,12,13,14,15,17,20,22,23,29,30,31,33,37,39,40,42,43,45,49,54,57,58,59,61,69,72,76,79,84,87,89,90,107,108,109,110,112,113,114,119,122,124,127,128,130,131,134,152,153,158,165,168,169,179,187,189,194,203,214,219,226,239,319,327],howto:93,hpad_char:328,href:[17,68,132],hrs:183,htm:280,html5:54,html:[24,42,54,63,68,78,93,95,102,113,133,134,135,136,137,144,168,174,203,232,237,287,289,293,294,310,316,338,341,360],htmlchar:341,htop:109,http404:[68,133],http:[3,4,9,22,23,36,42,53,54,62,64,68,74,89,93,97,102,106,107,127,129,130,132,133,134,136,137,140,145,163,179,203,232,267,274,276,277,278,279,280,281,287,289,292,293,294,310,319,328,341,342,355],http_request:[102,134],httpchannel:310,httpchannelwithxforwardedfor:310,httpd:8,httprequest:143,httprespons:[144,172,242],httpresponseredirect:132,hub:[78,99,138,322],hue:113,huge:[3,16,21,29,38,60,61,85,126,233],huh:[22,33],human:[4,12,39,56,60,63,72,84,92,95,116,132,360],humanizeconfig:4,hundr:[71,112,132],hungri:85,hunt:[72,229],hunting_pac:229,hunting_skil:72,hurdl:48,hurt:30,huzzah:9,hwejfpoiwjrpw09:9,hybrid:72,i18n:[46,75,245],iac:87,iattribut:314,iattributebackend:314,icon:[78,105,137],id_:[144,235,242,355],id_str:83,idcount:296,idea:[0,9,12,26,33,37,38,44,48,54,55,59,60,62,68,70,71,72,76,79,84,105,106,107,118,120,122,126,129,130,132,133,138,153,165,166,169,178,204,250,332,341,360,362],ideal:[1,6,33,37,45,47,89,128,137,147,240],idenfi:151,ident:[9,31,33,43,56,60,82,95,96,109,113,143,166,167,205,211,240,245,319,320],identif:[27,114,306],identifi:[0,8,23,28,30,31,33,38,40,41,42,48,49,50,57,60,68,73,82,83,87,92,96,101,108,114,115,118,124,133,137,150,153,158,163,166,167,169,173,175,179,186,204,205,214,231,240,245,249,256,259,262,265,270,272,275,289,293,302,304,306,314,315,319,325,326,334],identify_object:175,idl:[12,104,143,145,229,245,297,304,306],idle_command:33,idle_tim:[143,245],idle_timeout:145,idmap:332,idmapp:[42,85,124,140,141,168,176,237,272,298,314,315,316,318],idnum:175,ids:[12,57,120,186,296,306,325],idstr:[83,114,255,259,302],idtifi:175,idx:120,ietf:281,ifram:[136,137],ignor:[6,14,20,23,27,29,31,33,34,41,42,50,57,72,73,79,82,85,89,90,94,95,104,113,116,120,121,124,130,143,150,151,152,153,158,174,186,205,239,244,245,259,265,270,276,277,292,293,294,314,316,319,320,325,326,334,337,342,343],ignore_error:143,ignorecas:[158,164,165,170,173,181,200,319,324,341],ignoredext:310,illumin:110,illus:[10,95],imag:[4,17,62,68,89,100,105,132,134,135,136,137],imagesconfig:4,imagin:[14,29,31,45,47,50,60,76,115,116,121,131,137,320],imaginari:[21,60,78],imc2:34,imeplement:233,img:17,immedi:[0,5,15,27,29,33,42,47,48,50,63,69,73,82,89,94,99,101,108,115,119,132,133,149,156,168,229,276,320,322,326,327],immobil:25,immort:229,immut:[11,259],imo:1,impact:[93,125],impati:62,imper:101,implement:[1,6,11,21,25,26,28,29,31,33,34,37,39,40,48,50,54,55,56,57,59,60,77,78,79,80,85,87,88,95,96,107,110,111,113,114,115,116,117,118,119,122,123,124,126,127,130,134,136,137,138,139,144,147,151,152,155,156,157,158,159,160,163,164,165,166,167,168,175,176,178,180,181,183,184,186,188,196,201,204,205,209,211,212,213,214,216,217,220,223,229,230,231,233,236,237,239,240,244,245,254,256,259,271,276,278,279,280,281,282,283,285,287,288,289,292,293,294,296,303,310,314,315,316,317,319,320,323,324,326,327,333,334,337,338,341,342,360,362],impli:[22,111],implicit:[90,113,125],implicit_keep:250,impmement:240,import_cmdset:152,importantli:[50,132,240],importerror:[4,9,52,342],impos:[54,78,308],imposs:[15,19,48,50,89,110,112,120,132,137,328],impract:[33,108,250],imprecis:332,impress:[41,110],improv:[0,11,37,60,69,75,90,127],in_game_error:[26,102],in_templ:[314,334],inabl:102,inaccess:[0,79],inact:[101,229],inactiv:[42,168],inadvert:220,inadyn:89,inarticul:107,inbuilt:[111,122],incant:74,incarn:355,incid:209,includ:[2,4,6,9,12,13,16,20,21,22,27,30,31,33,36,37,38,40,42,43,47,50,54,57,59,60,61,62,63,68,72,73,74,77,78,79,83,84,87,88,90,92,94,95,99,100,101,103,104,105,106,107,108,110,111,113,114,115,118,120,124,126,130,132,133,134,135,136,137,143,149,150,151,153,156,157,158,166,167,169,173,178,181,186,187,188,194,196,199,204,205,209,214,216,217,218,219,220,223,226,231,232,233,239,245,265,283,285,288,289,302,305,314,315,316,317,320,321,322,323,325,326,328,329,335,342],include_account:314,include_children:315,include_par:315,include_prefix:150,include_unloggedin:[283,306],inclus:[315,334],incoher:125,incol:[57,325,328],incom:[33,39,87,89,95,103,138,144,145,150,167,172,209,217,242,252,274,278,281,284,288,289,293,294,296,304,305,306,310,326,334],incomplet:[153,212,328],inconsist:[10,96,203],incorpor:[42,155,328],incorrect:175,increas:[61,72,79,102,113,118,124,178,217,219,220,231,277,283,297,324],increase_ind:324,incred:[214,267],increment:[62,314],incur:27,indata:[39,314],inde:[9,54,89,90],indefinit:[101,218,230,322],indent:[0,9,13,14,27,49,56,59,94,128,136,294,320,324,326,342],independ:[0,55,63,101,125,178,200,208],indetermin:267,index:[7,42,48,55,60,67,78,84,85,89,107,120,134,135,150,164,178,214,230,237,263,267,268,310,317,319,327,328,342,355,358,360,361,362],index_to_select:214,indexerror:[133,233,315],indextest:358,indic:[0,8,22,42,48,61,84,90,94,110,118,145,158,165,166,167,188,209,214,254,276,277,285,292,293,306,308,310,320,326,327,342],individu:[0,11,13,14,18,21,22,33,34,40,42,45,47,48,54,56,57,58,70,72,77,84,87,89,95,108,110,131,152,156,173,184,191,194,219,226,239,247,248,250,304,317,319,328,334,336,337],ineffici:[114,116,319],infact:33,infinit:[0,60,62,145,233,249],inflict:[101,218],inflict_condit:218,influenc:[10,16,22,45,50,101,122,178,342],influenti:78,info1:213,info2:213,info3:213,info:[3,5,11,13,16,17,20,23,25,26,27,33,35,37,42,51,54,57,58,62,63,67,77,85,87,88,94,99,100,101,103,104,105,111,123,124,130,137,138,143,145,147,155,156,158,168,170,174,177,178,180,185,186,189,198,231,237,245,265,270,274,282,283,303,304,306,315,316,317,322,325,335,342],infomsg:335,inforamt:[205,233,245,316],inform:[0,2,3,6,8,9,18,20,22,23,25,27,28,33,34,36,40,42,45,47,50,54,59,64,65,67,68,72,82,83,84,85,90,93,94,95,99,101,102,103,104,108,111,113,115,116,118,119,122,123,126,130,131,132,133,134,135,136,137,138,143,145,153,156,158,164,168,173,176,179,184,196,203,205,209,210,218,219,220,237,245,257,265,270,279,280,281,283,292,305,306,315,316,319,322,324,335,342,355],infrastructur:[63,82,89,102,149,275],infrequ:45,ing:[9,14,57,184],ingame_python:[140,141,177],ingame_tim:61,ingo:[31,50,57,73,113,151,277,334],inher:[4,10,86,107],inherit:[2,5,6,22,27,30,31,33,36,39,41,42,56,59,63,68,80,85,88,95,101,108,113,116,118,122,124,126,147,151,153,158,166,168,169,174,176,178,179,181,186,188,196,202,205,212,216,217,218,219,220,229,231,232,241,244,245,250,254,256,305,312,315,316,324,327,328,332,340,342,360],inheritng:250,inherits_from:[42,116,133,168,342],inifinit:249,init:[6,9,22,39,46,48,57,59,62,74,94,103,105,130,136,137,178,179,187,223,244,256,265,283,284,294,306,342],init_delayed_messag:187,init_evt:327,init_f_str:327,init_fill_field:187,init_game_directori:265,init_iter:327,init_mod:[152,256],init_new_account:342,init_pars:232,init_queryset:327,init_rang:220,init_sess:[39,305],init_spawn_valu:249,init_str:327,init_tree_select:214,init_tru:152,initi:[5,9,11,21,29,33,46,48,49,50,57,59,60,63,67,72,84,96,104,106,109,119,122,126,129,130,132,136,137,143,144,145,152,153,169,173,174,176,178,185,187,191,195,197,204,205,214,216,217,218,219,220,229,230,235,242,244,245,255,258,259,262,263,265,267,268,269,274,275,276,278,279,280,281,283,284,285,286,287,288,289,290,292,293,294,296,304,305,306,313,314,319,321,324,325,326,334,337,338,342,349,355,360],initial_formdata:187,initial_ind:328,initial_setup:[140,141,260,303],initialdelai:[262,276,277],initialize_for_combat:[216,217,218,219,220],initialize_nick_templ:[314,334],initil:293,inject:[95,102,304,320,326],inlin:[18,56,84,103,136,144,172,235,242,252,263,313,334],inlinefunc:[44,82,103,108,140,141,248,306,318],inlinefunc_en:[113,334],inlinefunc_modul:[113,334],inlinefuncerror:334,inlinefunct:[113,334],inlinepars:334,inmemori:314,inmemoryattribut:314,inmemoryattributebackend:314,inmemorybackend:314,inmemorysavehandl:337,inner:76,innoc:[12,42,156],innocu:102,inobject:274,inp:[50,158,175,263,327,342],inpect:50,input:[1,5,9,10,14,15,17,20,22,27,30,31,39,40,42,49,54,56,57,69,73,78,82,86,90,94,95,103,104,108,109,110,112,113,114,117,126,130,132,134,136,137,143,148,149,150,153,158,163,165,166,167,168,169,173,175,179,184,187,199,200,204,205,209,214,219,230,236,245,248,250,263,270,274,285,293,304,306,314,315,317,324,325,326,327,328,334,336,338,342,343,355],input_cmdset:326,input_func_modul:[73,270],input_str:326,input_validation_cheat_sheet:355,inputcmdset:326,inputcommand:[73,82,87],inputcompon:136,inputdebug:[73,270],inputfunc:[39,44,103,138,140,141,145,260,293,304,306,362],inputfunc_nam:293,inputfunct:73,inputhandl:140,inputlin:[42,86,164,314,315],insecur:89,insensit:[173,186,205,231,315,347],insert:[13,14,25,49,57,63,70,86,95,108,113,137,152,188,201,248,320,328,334,342],insid:[0,5,10,11,13,15,19,20,21,23,25,27,28,31,33,41,42,45,46,50,52,56,58,63,67,68,70,71,72,79,81,84,85,87,88,90,91,92,94,95,99,101,104,105,107,108,109,110,113,116,120,122,124,126,131,132,133,134,135,138,140,145,168,179,186,189,193,194,205,229,233,239,244,245,248,265,282,303,310,320,321,334,342],inside_rec:239,insiderecurs:239,insight:[20,40,41,121,135],insist:[89,90],inspect:[12,23,42,50,84,143,158,178,263,265,326],inspectdb:85,inspir:[33,40,72,115,126,128,180,188,328,342],instac:[153,245,304],instal:[0,3,5,14,20,26,37,40,41,45,46,52,53,54,56,57,58,59,63,64,66,75,76,78,94,95,96,97,100,102,105,107,109,123,126,127,129,133,137,138,140,178,180,181,182,184,185,186,198,200,201,202,205,209,211,212,216,217,218,219,220,361,362],installed_app:[4,68,85,126,132,133],instanc:[0,2,3,8,11,16,17,22,25,27,28,29,38,40,41,42,45,49,50,55,56,57,58,59,60,61,63,68,75,83,84,90,94,95,96,101,102,104,106,108,115,118,120,125,126,129,130,135,136,143,144,147,149,150,151,152,153,162,165,167,168,172,174,176,179,194,196,197,199,203,214,232,233,235,237,242,244,245,249,250,252,254,258,259,262,265,274,275,276,277,278,279,280,281,283,287,288,292,296,297,305,306,310,313,314,316,317,319,322,323,326,328,332,333,338,342,343,355],instanci:179,instant:135,instanti:[33,85,126,143,152,169,223,256,259,282,303,306,314,325],instantli:313,instead:[0,3,6,9,10,11,12,14,16,19,20,21,22,23,25,26,27,29,30,31,33,34,37,38,40,42,45,47,48,50,56,57,59,61,62,63,66,78,79,82,83,84,85,88,89,90,92,94,95,99,101,102,103,104,105,108,109,110,111,113,115,116,117,118,120,122,124,125,126,127,130,131,132,133,134,135,137,138,143,145,152,153,155,156,158,160,163,167,168,170,179,184,185,187,196,197,200,205,212,214,216,217,218,219,220,225,230,232,233,239,240,245,250,259,265,293,294,304,308,313,314,316,317,322,326,332,335,337,338,339,342,355,360,361],instig:156,instil:[139,218],instr:[274,342],instruct:[0,8,9,13,14,23,27,30,37,41,42,45,46,54,56,57,59,60,62,73,74,76,78,82,84,89,92,95,96,99,105,118,123,130,138,143,153,168,199,205,209,250,259,262,265,275,277,283,288,289,293,294,296,304,306,326,336],insult:93,integ:[31,33,38,84,90,104,108,113,122,124,150,181,183,184,187,216,217,218,219,220,231,239,245,248,315,334,338,342,343],integerfield:[132,355],integr:[4,7,40,44,60,63,75,78,102,133,136,138,169,205,268,270,326,362],intellig:[72,82,90,102,133,152,296],intend:[13,17,20,22,27,31,33,34,37,41,54,60,89,102,107,108,110,111,113,121,125,130,135,136,143,163,178,179,205,226,237,245,250,283,315,317,322,323,325,328,334,339,340,343,360],intens:[78,92,113],intent:[75,95,102,204,342],inter:13,interact:[2,20,23,29,33,39,41,42,50,52,54,55,58,60,76,78,99,105,107,109,115,121,132,137,140,157,220,225,265,282,320,335,342],intercept:306,interchang:[115,326,360],interest:[0,1,4,11,14,20,21,22,26,33,37,39,41,45,48,54,56,59,60,69,78,85,89,90,92,95,102,108,113,118,119,120,122,135,152,167,178,183,231,233],interf:62,interfac:[9,21,22,23,25,36,39,41,42,52,62,63,68,69,78,79,89,93,95,96,100,103,118,132,134,136,137,138,155,158,172,174,245,257,276,305,310,314,317,319,360],interfaceclass:285,interfer:[23,96],interim:[29,114],interlink:[282,303],intermediari:[205,240,255,326],intern:[10,11,15,27,34,39,50,62,75,79,86,87,89,99,101,102,103,104,106,108,109,111,112,115,127,143,145,173,176,185,188,205,233,245,249,256,293,294,314,316,317,319,323,326,328,334,342],internal_port:89,internation:[7,112,138,362],internet:[10,12,16,33,39,42,62,71,89,93,102,123,156,262,267,275,276,277,285,288,296,310],interpret:[33,41,42,55,58,59,90,92,95,101,102,103,108,133,153,157,158,249,250,293,319,334,338],interrupt:[62,149,153,169,191,194,197,285],interruptcommand:[33,90,140,149,153],interruptev:197,intersect:[31,151],interv:[63,73,101,114,115,119,120,131,145,183,194,216,217,218,219,220,222,225,226,229,231,248,254,257,259,270,322,329,342],interval1:259,intim:[31,33],intimid:57,intoexit:[42,158],intpropv:122,intricaci:61,intrigu:53,intro:[4,68,121,123,133,231],introduc:[26,29,31,56,72,96,122,123,126,130,138,205],introduct:[3,13,14,15,18,19,20,44,59,62,123,130,138,179,361,362],introductori:[54,62],introroom:231,introspect:202,intrus:125,intuit:[22,50,60,85,90,130,138],intxt:27,inv:[31,42,81,164,181],invalid:[11,40,59,90,108,143,187,205,226,249,328,338,342,343],invalid_formchar:325,inventori:[20,21,25,27,31,79,84,90,96,118,137,164,181,205,239,245,316],invers:[79,113,125,205,291,341],invert:[113,125],invis:24,invit:[0,10,60,76],invitingli:20,invok:[11,13,14,101,208,239],involv:[39,55,60,67,74,79,88,104,106,115,122,187,220,316,317,319],ioerror:320,ipregex:156,ipstart:[62,99,109],iptabl:102,ipython:[26,52,57,58,95],irc2chan:[71,163],irc:[7,9,26,34,42,54,59,62,69,78,93,97,130,137,138,140,145,163,171,260,270,273,283,306,361,362],irc_botnam:145,irc_channel:145,irc_en:[71,163,239],irc_network:145,irc_port:145,irc_rpl_endofnam:277,irc_rpl_namrepli:277,irc_ssl:145,ircbot:[145,277],ircbotfactori:[145,277],ircclient:[277,306],ircclientfactori:283,irchannel:[42,71,163],ircnetwork:[42,71,163],iron:178,ironrealm:289,irregular:[222,229,231],irregular_echo:229,irrelev:[102,274],irur:51,is_account_object:55,is_act:[144,254],is_aggress:116,is_anonym:[4,68],is_anyon:4,is_authent:132,is_ban:143,is_bot:147,is_build:4,is_categori:214,is_channel:[33,40,173],is_connect:[147,245],is_craft:29,is_exit:[33,153],is_fight:29,is_full_moon:25,is_giving_light:230,is_gm:57,is_in_chargen:122,is_in_combat:[216,217,218,219,220],is_inst:27,is_it:342,is_iter:342,is_lit:[230,231],is_next:[147,176,244,254,314,316],is_o:342,is_ouch:11,is_prototype_bas:249,is_sai:117,is_staff:144,is_subprocess:342,is_superus:[2,4,143,144,147,240,245,322],is_thief:[42,165],is_turn:[216,217,218,219,220],is_typeclass:[143,316],is_valid:[101,120,132,178,226,254,257],is_valid_coordin:233,isalnum:319,isalpha:319,isbinari:[276,293],isclos:136,isconnect:136,isdigit:[57,113,319],isfiremag:28,isinst:[38,342],island:199,isleaf:294,islow:319,isn:[0,4,17,22,40,41,45,49,55,61,62,68,90,118,137,179,191,195,220,231,232,267,313,319,336,347],isnul:338,iso:[15,112],isol:[13,37,60,62,63,90,94,99,126],isp:[89,102],isspac:319,issu:[7,8,10,11,13,14,21,22,23,29,31,33,37,41,42,47,53,57,59,62,69,78,84,88,89,92,102,107,122,124,125,126,130,137,139,249,265,296,297,328,361],istart:[41,109,140],istep:297,istitl:319,isub:115,isupp:319,itch:[60,62],item:[20,42,46,50,58,62,67,68,81,84,85,115,116,136,137,164,178,181,187,205,218,223,233,245,284,314,334,342],item_consum:218,item_func:218,item_kwarg:218,item_selfonli:218,item_us:218,itemcoordin:233,itemfunc:218,itemfunc_add_condit:218,itemfunc_attack:218,itemfunc_cure_condit:218,itemfunc_h:218,iter:[11,48,50,58,96,111,118,137,143,199,205,233,245,250,257,294,296,314,316,319,320,323,327,342],iter_cal:327,iter_to_str:342,itl:[22,179],its:[0,2,3,5,9,11,12,14,15,16,20,21,22,23,25,27,29,31,33,37,38,39,40,41,42,43,48,49,50,51,52,54,55,56,57,59,60,61,62,63,64,67,68,69,71,72,74,79,80,81,82,83,84,85,87,88,89,90,92,93,94,95,97,99,100,101,102,103,104,108,110,113,114,116,117,118,120,121,122,123,124,125,126,127,128,129,130,132,133,134,135,136,137,138,143,144,145,147,149,150,151,152,153,156,158,166,167,168,174,175,178,179,187,188,194,196,202,204,205,212,214,216,217,218,219,220,225,226,229,230,232,233,239,244,245,250,257,258,259,265,270,274,278,291,292,293,294,297,305,306,310,311,313,314,315,316,317,320,325,326,328,332,334,335,336,337,338,339,342,355,360],itself:[0,4,9,11,15,17,20,21,22,23,25,27,29,33,36,37,39,40,43,44,45,46,48,50,54,59,62,63,67,74,76,77,79,81,84,85,88,95,103,104,105,110,113,114,115,117,118,121,122,124,126,130,132,133,134,135,143,145,173,174,179,184,187,197,203,205,214,219,222,230,231,233,234,239,245,247,250,258,265,289,294,306,310,313,314,317,319,322,324,326,337,339,344,355,360],iusernamepassword:285,iwar:84,iweb:89,iwebsocketclientchannelfactori:276,iwth:259,jack:86,jail:[12,13],jamochamud:24,jan:[12,61],januari:61,jarin:89,javascript:[54,87,102,134,135,136,137,293,294],jenkin:[122,181,187,189,214,216,217,218,219,220],jet:219,jetbrain:[78,105],jnwidufhjw4545_oifej:9,job:[33,40,68,79,143],jobfusc:204,john:[57,213],johnni:[208,209],johnsson:86,join:[9,22,34,42,48,57,60,62,64,71,95,111,115,118,122,132,143,163,174,178,204,319,342],join_fight:[216,217,218,219,220],join_rangefield:220,joiner:174,jointli:[63,152],joke:58,joker_kei:[22,179],jqueri:137,json:[82,87,136,137,208,276,289,293,294,323],jsondata:87,jsonencod:294,jsonifi:294,judgement:72,jump:[13,14,21,40,43,48,50,51,54,60,62,76,88,107,130,138,214,263],junk:274,just:[0,1,3,4,5,6,9,10,11,12,13,14,15,17,19,20,21,22,23,25,26,27,28,29,30,31,33,34,37,38,39,40,41,42,43,45,46,47,48,50,51,52,53,55,56,57,58,59,60,61,62,63,67,68,69,72,73,75,76,78,79,80,82,84,85,86,87,88,89,90,92,94,95,96,99,100,101,104,105,106,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,124,125,126,127,130,131,132,133,134,135,136,137,139,143,151,152,153,156,158,166,167,168,169,173,178,179,181,184,186,191,193,194,196,205,213,214,216,217,218,219,220,223,226,229,231,233,239,240,245,249,250,255,270,283,293,303,310,314,315,316,319,323,324,326,328,337,338,342,343,360],justif:[327,342],justifi:[95,108,248,319,327,342],justifii:327,justify_kwarg:327,kavir:289,kcachegrind:92,keen:37,keep:[0,1,4,7,9,11,13,14,15,16,20,25,26,29,30,33,34,41,44,47,50,55,56,57,59,60,61,62,63,67,68,72,74,75,76,77,80,81,84,90,91,94,95,96,99,104,108,115,117,120,121,125,127,130,131,132,133,137,145,186,189,194,203,208,226,230,231,249,250,256,267,308,326,328,342],keep_log:[34,174,322],keepal:[104,288,294],keeper:84,keepint:63,kei:[0,1,5,8,9,10,11,13,21,25,26,27,28,29,30,31,33,34,38,40,41,42,43,48,49,51,52,55,56,57,59,61,68,70,73,79,80,81,83,84,85,87,88,90,93,94,95,96,101,106,110,111,113,114,115,118,119,120,122,124,126,128,130,132,136,137,143,145,147,149,151,152,153,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,173,174,175,178,179,180,181,183,184,185,186,187,188,192,193,198,199,200,201,202,204,205,211,212,213,214,216,217,218,219,220,223,229,230,231,232,233,237,239,244,245,248,249,250,254,255,256,257,259,263,265,270,271,272,274,283,286,289,290,292,293,294,297,304,305,306,308,314,315,316,317,321,322,324,325,326,327,335,336,337,339,342,355,360],kept:[33,42,56,79,90,118,126,158,193,194,250,314],kept_opt:214,key1:201,key2:[50,201,245],key_mergetyp:[31,151,223],keyboard:137,keydown:136,keyerror:[249,259,337],keyfil:[286,290],keynam:[174,250,322],keypair:285,keys_go_back:[22,179],keystr:317,keystrok:285,keywarg:[169,227,291,301,340,350],keywod:328,keyword:[0,1,5,10,11,22,25,27,29,30,33,34,42,49,50,51,57,61,73,79,80,82,85,90,92,94,101,106,108,113,114,118,122,124,126,133,143,145,149,153,158,164,174,181,183,186,191,193,194,196,197,204,205,209,216,217,218,219,220,231,232,240,245,248,249,250,255,258,259,263,265,270,274,276,277,283,284,285,288,293,294,304,305,306,308,314,315,316,322,325,326,327,328,332,334,336,338,339,342,360],keyword_ev:197,kick:[12,31,42,50,57,89,145,151,156,163,170,185,245,327],kildclient:24,kill:[20,27,42,50,60,74,92,99,101,104,115,168,178,229,230,255,256,257,259,265,303,310],killsign:265,kilogram:81,kind:[0,11,37,39,79,90,96,103,115,117,118,120,132,137,216,217,218,219,240,316,343],kinda:137,kindli:125,kitchen:[42,43,158],knew:94,knock:50,knot:181,know:[0,2,5,6,8,10,11,13,14,15,16,20,21,22,23,26,29,31,33,37,38,39,40,41,42,43,47,48,50,53,55,56,57,59,60,63,68,69,71,72,73,78,79,80,81,82,83,84,85,88,89,90,92,94,95,96,97,99,101,103,104,109,110,112,113,115,116,117,118,120,124,125,126,127,130,131,132,133,135,137,138,153,157,158,166,167,169,173,178,193,198,204,214,219,230,244,245,270,304,306,313,314,320,321,326,342,360,361],knowledg:[13,15,24,33,54,76,287,306],known:[7,20,24,33,49,72,78,79,86,91,95,113,114,124,133,136,142,167,219,327,361],knuth:92,kobold:60,koster:78,kovash:50,kwar:316,kwarg:[1,10,25,29,33,39,40,50,57,58,73,79,80,82,83,87,95,106,108,113,114,117,120,124,131,133,136,143,144,145,146,147,149,153,155,156,157,158,163,164,165,166,167,168,169,170,173,174,175,176,178,179,180,181,183,184,185,186,187,188,191,192,193,194,196,198,199,200,201,202,203,204,205,209,211,212,213,214,216,217,218,219,220,222,223,225,226,229,230,231,232,233,236,237,239,240,242,243,244,245,247,248,249,250,253,254,255,257,258,259,262,263,267,270,271,272,274,275,276,277,282,283,284,285,286,288,289,290,293,294,298,303,304,305,306,307,308,310,313,314,315,316,317,319,324,325,326,327,328,329,331,332,334,335,336,337,338,339,340,342,343,355,358,360],label:[47,85,111,132,139,355],label_suffix:[144,235,242,355],laborum:51,lack:[13,55,60,69,128,205,245,314,342],ladder:57,lag:[48,62],lai:[1,47],lair:14,lambda:[10,38,50,68,108,194,250,342],lamp:[110,223,225,226],land:[90,115,229,230],landscap:[102,110],lang:204,langcod:205,langnam:205,languag:[7,15,39,46,54,55,56,57,63,78,90,94,102,107,112,113,117,123,124,126,128,129,136,138,204,205],language_cod:75,languageerror:[204,205],languageexistserror:204,languagehandl:204,larg:[10,11,13,14,16,20,23,37,50,54,55,60,85,89,95,96,107,108,121,126,204,233,283,320,325,332],larger:[14,20,48,56,60,67,79,81,85,107,186,291,319,332,342],largesword:85,laser:76,last:[4,11,13,14,22,26,29,31,33,34,36,41,42,47,50,53,57,59,68,73,75,85,86,88,90,94,95,104,106,109,115,120,121,125,126,130,133,135,136,149,150,152,158,163,164,178,183,186,194,196,205,214,216,217,218,219,220,226,245,269,319,320,321,326,327,328,329,335,342],last_cmd:33,last_initial_setup_step:303,last_login:144,last_nam:144,last_step:269,lastcast:28,lastli:[80,110,132,149],lastsit:25,late:321,later:[0,2,9,11,12,13,22,23,33,34,39,42,45,54,57,59,60,62,63,68,72,73,75,80,82,83,85,89,94,96,108,110,113,114,116,119,120,121,122,124,130,132,137,138,139,151,155,156,158,166,167,183,202,205,250,259,285,317,342],latest:[20,21,27,31,36,42,57,62,63,74,97,130,158,163,168,196,245,250,284,308,326,335,361],latin:[15,112,245,342],latin_nam:245,latinifi:[245,342],latter:[6,27,29,34,63,76,79,88,90,94,114,125,205,254,256,317],launch:[14,21,53,62,74,84,89,92,101,105,109,121,126,137,152,223,264,265,275,277,296,324,342],launcher:[92,105,264,265,274,275,296],law:78,layer:[22,31,244,316],layout:[27,48,55,57,95,118,124,127,136,137,233],lazi:342,lazy_properti:342,lazyencod:294,lazyset:335,lc_messag:75,lcnorth:113,ldesc:55,ldflag:74,lead:[0,11,13,17,20,22,23,31,37,42,48,50,55,59,60,63,68,78,82,85,101,102,110,120,143,150,151,158,168,194,197,203,211,245,250,289,304,314,316,326,328,334,342],leak:134,lean:205,leap:[61,117],learn:[0,15,16,17,20,22,29,31,33,41,45,48,52,55,56,59,62,67,68,78,79,80,94,95,105,107,121,123,125,130,133,135,138,204,219,362],learnspel:219,least:[3,8,33,38,41,46,48,50,54,56,57,60,72,79,85,89,95,101,105,120,137,143,152,175,178,204,236,245,250,257,319,325,328,339,342],leasur:229,leather:84,leav:[0,2,20,21,22,25,42,57,59,72,73,76,84,92,94,101,102,115,122,136,137,155,157,158,163,174,178,179,231,233,239,245,293,294,326,332],leavelock:239,leaver:174,left:[22,27,33,36,38,40,42,56,68,73,79,84,85,90,100,101,108,110,113,136,137,143,158,164,166,167,189,216,217,218,219,220,230,233,240,248,250,316,319,328,342],left_justifi:[108,248],leg:302,legaci:[87,108,143,205],legal:[89,102],legend:[48,49,199],leisur:343,len:[25,48,57,70,84,108,113,115,118,119,120,150,167,183,342],lend:49,length:[22,23,25,48,61,65,67,70,85,89,90,94,121,150,183,187,189,197,204,205,267,308,314,319,328,342,360],lengthi:[1,25],lengthier:361,lenient:108,less:[22,34,43,50,55,60,63,72,85,89,90,105,107,115,118,131,132,136,138,183,217,219,314],let:[0,3,5,7,8,9,11,12,14,15,20,21,22,25,28,31,33,37,38,39,40,42,43,45,47,48,50,55,56,57,59,60,61,62,63,64,69,71,72,73,74,76,79,80,81,82,84,88,90,92,94,95,97,102,105,110,113,114,116,117,118,120,122,123,125,126,130,132,133,135,136,139,143,153,158,164,165,169,173,178,181,184,187,189,214,226,233,240,245,275,294,306,322,326,336,341,355,360,361],letsencrypt:89,letter:[15,22,38,42,75,89,94,110,112,113,118,122,132,155,164,179,203,309,342],level:[2,11,13,19,20,22,26,27,30,36,39,40,42,46,49,50,52,54,56,57,60,65,68,70,72,78,79,84,89,94,95,103,104,107,110,111,118,124,132,137,138,139,143,155,160,161,179,180,183,198,204,214,239,245,249,250,267,304,314,316,322,324,329,334,342,360],lever:[33,124],leverag:3,levi:85,lhs:[25,57,166,167],lhslist:[166,167],lib:[62,66,74,96],libapache2:8,libcrypt:74,libjpeg:74,librari:[6,13,26,44,52,55,56,62,63,74,75,77,78,90,94,99,102,107,108,124,126,127,132,135,136,137,177,203,232,249,250,278,316,328,342],licenc:319,licens:[37,44,78,105,138,203,319,362],lid:[223,225,226],lidclosedcmdset:223,lidopencmdset:223,lie:110,lies:[33,130],life:[11,37,61,86,94,125,183,229],lift:[20,72,79,95,122,220,240],lifter:79,light:[14,23,27,60,101,107,121,152,217,230,231,239,250,258,319],lightabl:230,lighter:[113,217],lightest:27,lightli:[16,217],lightsail:89,lightsourc:230,lightsource_cmdset:230,like:[0,2,3,5,6,8,9,10,11,12,14,15,16,17,19,20,21,22,23,24,25,26,27,28,29,30,31,33,34,35,36,37,38,39,40,41,42,43,44,45,47,48,50,51,53,54,56,57,58,59,60,61,62,63,64,67,68,69,70,71,72,73,74,75,76,78,79,80,82,83,84,85,87,88,89,90,92,94,95,96,99,101,102,103,104,105,106,107,108,110,111,113,114,115,116,118,119,120,124,125,126,127,128,130,131,132,133,134,135,136,137,138,139,143,145,147,148,150,151,152,155,157,158,163,166,167,170,171,174,175,178,179,181,185,186,187,188,189,197,199,203,204,205,211,212,214,216,217,218,219,220,223,226,231,232,233,237,239,240,244,245,248,249,250,270,278,294,299,303,305,306,314,315,316,319,320,322,325,326,327,328,329,332,336,338,339,342,355,360,362],limbo:[0,9,13,14,20,22,27,42,58,62,65,103,110,120,121,133,158,179,269],limbo_exit:110,limit:[0,2,6,11,16,19,20,25,26,27,28,31,33,34,37,42,45,50,54,57,60,63,67,70,79,85,89,90,94,101,103,108,111,115,121,122,124,125,126,137,139,143,155,156,157,158,174,175,181,194,205,214,216,218,219,226,236,237,240,245,250,254,257,259,270,283,308,314,315,316,317,320,322,324,335,339,342,360],limit_valu:143,limitedsizeordereddict:342,line:[0,4,5,9,10,13,14,15,19,22,23,25,26,27,29,30,31,33,34,36,38,40,42,44,45,47,50,53,55,56,57,58,59,60,61,62,66,68,73,75,80,82,85,86,88,89,90,91,92,94,95,96,97,99,103,107,108,109,110,113,118,120,122,124,126,127,132,133,136,137,138,140,143,149,152,158,165,167,168,179,184,185,187,199,200,201,204,205,214,232,233,249,265,270,285,288,293,304,316,320,324,325,326,327,328,335,342,355,360],linear:48,linebreak:[68,341],lineeditor:324,lineend:341,linefe:136,linenum:324,liner:277,linereceiv:[285,288],linesend:294,lingo:[56,85,104,134],linguist:342,link:[2,3,4,9,14,17,18,20,22,25,29,31,33,37,38,39,45,47,48,50,53,54,56,62,63,68,69,71,84,88,89,95,97,104,110,118,120,122,123,127,130,132,133,138,143,147,158,163,191,196,223,226,232,239,240,245,254,263,265,276,280,285,288,316,341,342,362],link_ok:239,linklock:239,linknam:53,linod:89,linux:[4,8,9,23,25,63,71,74,86,89,92,96,99,105,130,208,342],liquid:316,list:[0,1,2,3,4,6,7,11,12,13,14,15,20,22,23,25,27,31,33,34,37,38,39,40,42,44,45,47,48,50,53,54,56,57,58,59,60,62,65,67,68,69,71,72,73,75,76,78,79,81,84,85,87,88,89,90,92,93,95,96,97,101,102,104,105,108,109,110,111,112,113,115,118,120,122,123,124,127,128,130,132,133,134,136,137,138,143,145,147,150,151,152,153,155,156,157,158,163,164,165,166,167,168,169,173,174,175,176,178,179,180,181,182,186,187,188,189,191,192,194,195,196,197,198,199,201,202,203,204,205,208,209,214,216,217,218,219,220,229,230,233,236,239,240,244,245,248,249,250,255,256,257,258,259,263,265,270,271,275,277,279,281,283,284,289,294,297,306,308,310,313,314,315,316,317,319,320,321,322,323,326,327,328,334,335,336,339,342,360,361],list_attribut:158,list_callback:192,list_displai:[144,172,235,242,252,261,313],list_display_link:[172,235,242,252,261],list_filt:[242,313],list_nod:326,list_of_all_rose_attribut:11,list_of_all_rose_ndb_attr:11,list_of_lycanthrop:118,list_of_myscript:101,list_prototyp:249,list_select_rel:[172,235,242,252,261],list_set:265,list_styl:155,list_task:192,list_to_str:342,listabl:[42,158],listcmdset:[42,158],listcmset:[42,158],listen:[2,12,34,40,42,66,79,102,104,123,136,138,163,174,204,205,223,239,360,362],listing_contact:53,listobj:[42,168],listobject:[42,168],listscript:[42,168],listview:360,lit:[230,231],liter:[13,20,42,56,65,108,164,248,319,338,342],literal_ev:[249,313],littl:[0,4,9,10,15,20,21,25,28,33,34,40,41,56,57,59,63,68,69,70,84,89,90,95,99,101,108,109,110,116,117,118,124,130,133,135,137,138,199,217,231,300,314,326,342,355],live:[8,23,59,62,69,78,89,99,105],ljust:319,lne:214,load:[6,11,12,13,15,26,29,31,33,42,43,49,50,55,56,57,59,60,68,72,81,96,102,105,108,110,120,122,126,135,136,137,147,152,164,165,168,176,186,194,204,237,240,244,245,254,258,269,272,274,305,314,316,317,320,321,324,333,336,337,340,342,353],load_buff:324,load_data:321,load_kwarg:337,load_sync_data:305,loader:[50,316,342],loadfunc:[49,324,337],loc:[42,158],local0:66,local:[23,25,36,37,46,58,61,63,71,75,96,99,102,105,113,130,132,135,137,191,194,205,250,288,314],localecho:89,localevenniatest:340,localhost:[3,4,9,23,24,62,66,68,74,89,94,132,133,134,136,294],localstorag:137,locat:[0,2,4,6,8,9,11,12,13,20,21,25,27,30,31,33,35,38,42,45,46,47,48,50,52,56,57,58,62,63,65,73,76,79,84,88,89,90,95,99,101,102,108,110,111,113,116,117,118,120,121,122,124,126,127,130,132,134,135,136,139,143,149,158,164,168,175,179,180,181,186,196,199,202,205,211,229,231,233,239,244,245,250,294,303,315,316,317,320,322,326,328,335,339],location_nam:233,location_set:118,locations_set:[118,244],locattr:[230,239],lock:[4,6,10,12,19,20,21,22,23,25,28,29,31,33,34,38,40,43,44,46,47,57,59,61,67,70,81,84,88,89,95,103,108,109,111,122,124,132,137,138,140,141,143,144,153,155,156,157,158,163,164,165,167,168,169,170,174,176,178,179,180,181,184,185,186,188,191,192,194,195,198,199,200,201,202,205,211,213,223,229,230,231,233,235,237,244,245,249,250,310,314,316,322,324,326,336,343,362],lock_definit:240,lock_func_modul:[79,240],lock_storag:[153,155,156,157,158,163,164,165,166,167,168,169,170,173,176,178,179,180,181,184,185,186,187,188,192,198,199,200,201,202,205,211,212,213,214,216,217,218,219,220,223,229,230,231,232,237,245,314,316,324,326,327],lockabl:[57,211],lockablethreadpool:310,lockdown:[79,314],lockdown_mod:[66,89],lockexcept:240,lockfunc1:79,lockfunc2:79,lockfunc:[25,33,42,79,103,120,140,141,158,238],lockhandl:[11,47,79,124,140,141,153,179,232,238,239],lockset:245,lockstr:[4,11,33,42,79,96,108,158,163,165,174,176,211,239,240,245,250,314,322],locktyp:[151,250],log:[2,4,5,6,8,10,11,12,20,21,23,24,25,33,34,35,36,38,42,43,44,46,50,54,56,57,58,59,62,63,64,65,66,70,71,72,73,74,75,85,88,89,92,93,99,100,101,104,105,106,109,110,113,120,121,122,127,129,130,132,133,134,136,137,143,152,156,170,174,180,185,187,200,208,209,245,254,265,270,274,275,279,282,283,285,288,296,297,298,304,306,308,310,316,322,334,335,342,360,362],log_dep:[27,335],log_depmsg:335,log_dir:208,log_err:[27,335],log_errmsg:335,log_fil:[27,335],log_info:[27,335],log_infomsg:335,log_msg:335,log_sec:335,log_secmsg:335,log_serv:335,log_trac:[27,101,117,119,335],log_tracemsg:335,log_typ:335,log_typemsg:335,log_warn:[27,335],log_warnmsg:335,logdir:36,logentry_set:147,logfil:[265,335,360],logged_in:104,loggedin:283,logger:[27,101,117,119,140,141,208,277,318],logic:[0,4,10,38,40,41,43,48,68,96,110,133,204,244,248,269,314,326,343],login:[2,4,7,9,25,33,35,42,50,54,68,69,79,89,96,100,104,106,130,132,138,143,155,170,185,200,240,269,270,285,288,293,294,297,306,342,347,349,358,360,362],login_func:297,loginrequiredmixin:360,logintest:358,logout:[296,297,358],logout_func:297,logouttest:358,logprefix:[275,285,288,310],lone:[42,60,110,158],long_descript:53,long_running_funct:10,long_text:51,longer:[0,21,25,29,33,40,42,49,51,53,57,68,78,85,90,101,114,123,124,125,128,151,156,174,181,204,205,212,216,217,218,219,220,255,324,328],longest:[27,205],longrun:33,loo:[153,169],look:[0,3,4,6,9,10,11,12,13,14,15,16,17,19,20,21,22,23,25,26,27,29,30,31,33,35,36,37,38,39,40,41,43,45,47,48,50,54,56,57,59,60,61,62,63,67,68,69,70,72,73,74,75,76,79,80,81,82,84,85,86,87,88,89,90,93,95,96,99,102,104,107,108,109,110,111,113,115,116,117,118,120,121,123,124,125,126,130,132,133,134,135,136,137,138,143,145,150,152,153,155,158,164,166,167,169,170,173,180,181,185,186,187,193,200,201,202,204,205,214,218,223,230,231,233,236,239,240,242,244,245,247,250,270,285,286,293,297,314,316,320,326,327,328,336,339,341,342,355,362],look_str:143,lookaccount:57,lookat:33,looker:[48,57,59,122,181,186,205,233,239,245,316],lookm:33,lookstr:245,lookup:[11,33,42,79,85,96,111,118,149,164,208,244,284,317,319,331,332,338,339,342,343],lookup_typ:338,lookup_usernam:50,lookuperror:319,loom:110,loop:[0,5,6,11,21,45,48,54,59,63,68,84,92,95,115,117,118,123,124,140,145,216,250,283],loopingcal:[257,268],loos:[14,37,143,181,220,236,285,296,320],loot:60,lop:118,lore:57,lose:[11,55,60,99,104,109,115,122,137,208,218,276,277,285,288],lost:[0,38,42,55,78,90,109,110,124,134,138,212,262,275,276,277,285,288,293,314,319],lot:[0,4,10,13,15,22,26,27,28,34,37,38,40,41,45,54,56,57,58,60,61,62,68,69,72,78,79,85,89,90,92,94,95,107,108,110,111,113,118,120,122,124,126,130,132,134,137,179,183,185,187,205,213,217,230,233,310],loud:21,love:136,low:[31,39,45,65,89,94,151],lower:[2,10,19,25,29,31,33,40,42,48,50,57,61,79,84,85,89,92,113,121,136,150,151,155,166,168,205,270,319],lower_channelkei:[40,173],lowercas:[94,153,319],lowest:[65,89,239,319],lpmud:128,lpthw:76,lsarmedpuzzl:202,lspuzzlerecip:202,lst:[48,322],lstart:49,lstrip:[90,319],ltto:113,luc:325,luciano:78,luck:[8,50,90,95],luckili:[59,79,110,126,130],lue:113,lug:54,lunch:45,luxuri:[111,312],lycanthrop:118,lying:110,m2m:317,m2m_chang:106,m_len:342,mac:[9,23,24,63,92,99,105,130,342],machin:[13,25,99,105,130,229],macport:[62,130],macro:[4,115],macrosconfig:4,mad:130,made:[3,11,19,20,21,25,26,35,36,42,50,55,57,58,60,78,79,89,95,97,102,103,108,110,120,122,130,133,149,151,163,168,178,181,187,214,218,219,220,240,267,311,319,320,324,326,342],mag:[59,126,325],magazin:78,mage:50,mage_guild_block:50,mage_guild_welcom:50,magenta:125,magic:[30,59,60,79,111,120,121,139,178,189,219,267],magic_meadow:111,magicalforest:139,magnific:50,mai:[0,4,6,8,9,10,11,13,19,20,21,23,25,27,28,29,31,33,34,37,39,40,41,42,47,50,53,55,56,59,61,62,63,65,66,68,69,70,72,74,76,78,79,80,82,83,85,86,87,88,89,92,93,94,95,96,99,101,102,103,104,105,107,108,109,110,113,114,115,117,118,119,122,124,126,127,129,130,132,133,134,135,143,145,149,150,151,153,155,156,158,168,174,175,177,178,180,181,183,187,189,196,204,205,216,217,218,219,220,223,230,231,239,240,245,248,249,250,251,267,297,304,306,307,311,313,314,316,317,319,321,322,323,324,326,328,329,334,336,339,342,360],mail:[9,34,37,50,54,56,59,60,69,78,92,115,127,140,141,175,176,177,239,361],mailbox:[34,198],maillock:239,main:[13,14,15,20,21,22,30,31,33,34,37,39,42,48,50,53,55,63,67,68,75,78,79,80,82,83,84,85,88,89,90,91,99,103,104,108,109,111,114,115,118,123,124,130,132,133,134,136,137,138,143,144,147,149,155,158,169,176,179,187,194,198,204,205,233,237,244,250,252,254,265,269,270,272,277,282,284,289,303,305,310,316,317,327,330,339,341,342],mainli:[10,12,33,34,42,50,56,78,82,88,92,95,104,155,234,314,320,334,342],maintain:[4,19,23,37,40,42,55,67,89,92,99,107,114,118,136,168,170,185,259,361],mainten:[89,102],major:[14,15,23,44,56,59,62,63,118,120,132],make:[0,1,2,4,5,6,7,8,9,10,11,12,13,14,15,16,19,22,23,24,25,26,28,29,30,31,33,36,37,38,39,40,41,42,43,45,46,47,48,49,50,52,53,54,55,58,60,61,62,63,67,69,70,71,72,73,74,76,77,78,79,80,82,84,85,86,88,89,90,92,93,94,95,96,99,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,121,123,124,125,127,129,131,132,133,135,136,137,138,139,143,145,147,150,151,152,153,155,156,158,163,166,169,173,174,175,178,179,181,186,187,189,195,198,199,204,205,210,211,212,214,216,217,218,219,222,223,225,226,229,230,231,236,239,240,245,249,250,256,257,259,265,269,277,282,296,297,303,304,306,307,309,310,313,314,315,316,317,319,320,321,322,323,324,326,328,329,332,334,339,341,342,358,360],make_it:342,make_shared_login:349,make_uniqu:151,makeconnect:274,makefactori:285,makeit:296,makemessag:75,makemigr:[36,85,132],male:188,malevol:14,malform:343,malici:102,malign:240,man2x1:107,man:[42,86,89,107,128,164,198,205],mana:[28,30],manaag:235,manag:[2,7,9,11,31,38,39,42,55,56,58,79,82,84,85,88,92,95,99,101,104,109,114,118,124,126,127,130,132,137,140,141,142,143,147,168,169,171,173,174,176,196,201,205,220,226,231,234,237,241,244,245,249,251,254,259,260,265,272,312,314,316,317,318,321,322,330,333,335,339,342,358,360,362],manager_nam:314,manchest:342,mandat:355,mandatori:[0,22,106,108,128],maneuv:214,mangl:291,mango:202,manhol:[93,285],manhole_ssh:285,mani:[0,1,2,4,5,9,10,11,12,14,15,17,20,26,27,30,31,33,34,39,42,43,48,50,54,55,56,57,60,61,62,63,65,67,69,71,72,75,76,84,85,87,88,89,90,92,94,95,97,101,102,103,104,106,107,108,109,110,112,113,114,115,117,118,119,120,121,122,123,124,125,126,127,128,130,132,133,134,139,147,151,153,158,169,176,178,181,185,187,199,205,212,213,214,218,219,223,229,232,237,239,240,244,250,254,259,265,279,287,289,308,314,316,317,319,326,332,333,335,360],manifest:96,manipul:[0,11,22,31,40,42,43,50,63,85,101,108,122,158,165,175,186,191,236,245,271,322,327],manner:[14,174,205,233,245,283,316],manpow:37,manual:[4,6,14,20,21,23,30,33,34,39,54,57,59,60,62,67,78,79,84,85,88,89,96,101,108,109,110,113,116,118,120,123,124,127,130,133,138,139,140,145,158,214,223,226,232,245,250,257,265,282,289,326,327,361,362],manual_paus:257,manual_transl:204,manual_unpaus:257,manytomanydescriptor:[147,176,237,244,254,314,316,317],manytomanyfield:[147,176,237,244,254,314,316,317],map:[0,15,25,38,42,45,50,56,57,60,63,86,87,96,99,123,134,137,138,155,163,182,183,196,199,204,205,233,245,249,250,289,314,316,319,325,326,334,342,362],map_legend:199,map_modul:110,map_str:[48,110,233],mapbuild:[140,141,177],maplegend:199,mapnam:199,mapper:332,mapprovid:233,march:[78,335],margin:17,mark:[13,14,20,21,33,42,48,52,57,62,71,75,79,89,94,113,118,130,134,136,137,139,150,157,186,194,203,214,306,316,320,325,326,334,338],mark_categori:214,markdown:[1,4,47,53],marker:[13,20,33,42,63,86,113,137,164,186,188,196,205,214,245,277,285,288,293,294,314,317,319,325,327,334],market:89,markup:[80,113,135,138,182,319,341],mask:[202,205,209,210],maskout_protodef:202,mass:[60,123,138,362],massiv:[28,54],master:[7,9,37,56,60,62,72,97,99,115,117,133,311],match:[9,11,20,22,27,31,33,38,40,42,43,48,50,56,57,61,67,73,75,79,82,85,86,87,88,90,101,103,104,108,110,111,113,117,118,124,127,130,132,133,134,135,136,137,143,149,150,151,153,156,158,164,165,167,169,173,175,179,182,183,186,187,197,198,199,200,201,202,205,219,233,236,239,240,245,249,250,256,259,270,271,283,296,306,314,315,316,317,319,324,326,328,334,337,339,341,342,343,360],match_index:150,matched_charact:187,matches2:85,matchobject:[319,341],mate:63,math:38,mathemat:151,matplotlib:298,matrix:328,matt:101,matter:[0,4,9,11,25,31,36,40,50,56,60,61,62,68,72,75,83,90,94,102,104,106,107,115,116,126,135,151,220,229,244,270,314],matur:[107,127,128],maverick:63,max:[16,48,70,115,187,205,308,335,342],max_damag:218,max_dbref:315,max_depth:342,max_dist:48,max_heal:218,max_l:48,max_length:[48,85,132,205],max_lin:328,max_num:144,max_num_lin:360,max_popular:360,max_rmem:332,max_siz:335,max_valu:[189,355],max_w:48,max_width:48,maxconn:66,maxdelai:[262,276,277],maxdepth:250,maxdiff:350,maximum:[16,38,70,85,90,110,113,143,187,189,216,217,218,219,220,245,250,310,319,328,334,342],maxlengthvalid:143,maxnum:342,maxrotatedfil:335,maxsplit:319,maxthread:310,maxval:[334,342],maxvalu:334,maxwidth:328,may_use_red_door:108,mayb:[6,9,11,13,14,21,22,25,27,31,33,43,47,48,53,60,62,67,68,69,72,81,84,85,89,108,115,118,121,137,139,152,178,197,283],mccp:[24,54,73,140,260,270,273],mccp_compress:278,meadow:[22,111,139],mean:[0,5,10,11,12,13,14,15,20,22,23,27,28,31,33,34,37,39,40,41,42,45,48,50,52,54,56,57,59,60,61,63,67,72,73,76,77,79,80,82,83,84,85,86,87,89,92,94,95,96,99,101,102,103,104,109,110,111,112,113,115,116,118,120,121,122,124,125,126,127,130,133,134,135,136,137,143,145,152,158,174,184,194,204,225,226,230,232,239,245,249,250,255,259,265,289,305,314,316,319,326,328,332,335,338,339],meaningless:122,meant:[16,20,22,31,34,43,53,61,67,75,82,95,101,124,125,136,137,139,151,179,188,205,213,216,217,218,219,220,226,231,233,245,270,320],meantim:1,meanwhil:95,measur:[89,92,122,150,167,342],meat:132,mech:[123,138,362],mechan:[27,28,33,38,49,50,52,54,57,60,68,72,90,101,108,115,121,122,124,125,138,143,145,149,186,205,219,238,250,257,259,265,269,275,283,294,305,316,324,327,330,337,360],mechcmdset:21,mechcommand:21,mechcommandset:21,meck:21,media:[16,144,172,235,242,252,261,293,310,313,338,355],median:48,mediat:72,medium:16,mediumbox:274,meet:[25,36,60,121,193,233,309],mele:220,mem:[42,168],member:[9,11,42,69,85,164,166,167,245,342],membership:[4,9,118],memori:[6,12,23,28,31,33,42,55,74,85,89,92,112,124,134,143,168,174,226,245,259,298,308,314,318,327,332,337,342],memoryerror:62,memoryusag:298,memplot:[140,260,295],meni:179,mental:125,mention:[6,9,10,11,13,14,15,21,29,33,39,40,48,55,56,60,62,69,73,79,89,101,107,112,114,125,126,152,185],menu:[11,25,31,42,44,45,46,53,54,62,64,68,104,105,108,109,122,127,137,138,140,141,158,179,187,200,213,214,246,250,263,265,326,336,362],menu_cmdset:326,menu_data:50,menu_edit:179,menu_login:[140,141,177],menu_modul:326,menu_module_path:326,menu_quit:179,menu_setattr:179,menu_start_nod:213,menuchoic:[50,326],menudata:[187,247,326],menudebug:[50,326],menufil:326,menumodul:326,menunode_fieldfil:187,menunode_inspect_and_bui:84,menunode_shopfront:84,menunode_treeselect:214,menunodename1:50,menunodename2:50,menunodename3:50,menuopt:214,merc:319,merchant:45,mercuri:107,mere:[116,189],merg:[3,5,22,33,37,42,43,50,56,61,63,96,130,138,149,150,151,152,165,223,231,233,250,254,289,326,334],merge_prior:326,merger:[5,31,37,110,151,152],mergetyp:[31,50,115,151,223,231,324,326],mess:[11,19,27,89,92,130,137,214],messag:[5,6,8,10,13,15,20,21,22,27,28,29,33,34,39,40,42,43,44,45,49,50,51,54,57,58,59,60,61,62,63,64,69,70,72,73,75,79,80,81,84,88,89,90,91,94,95,100,101,102,103,104,109,110,112,115,117,118,122,123,126,127,130,131,136,137,138,139,143,145,149,152,153,156,158,163,164,165,167,169,171,173,174,175,176,178,179,181,187,188,192,194,196,198,202,203,205,209,216,217,218,219,220,222,223,225,227,229,230,231,232,239,245,265,267,274,276,277,283,284,285,288,289,291,293,302,304,306,308,310,322,324,326,327,334,335,339,342],message_rout:136,message_search:175,message_transform:174,messagepath:[138,362],messagewindow:136,meta:[103,124,144,235,242,313,316,332,355],metaclass:[85,95,124,153,316],metadata:[209,267],metavar:232,meteor:81,meter:189,metho:173,method:[1,2,5,6,9,10,11,22,25,27,28,29,30,31,34,38,39,41,45,47,48,50,54,57,58,59,61,63,67,68,72,76,79,82,85,87,88,90,94,95,101,103,104,106,108,110,111,113,114,115,116,117,118,119,120,122,124,126,130,131,132,133,136,138,143,147,149,151,152,153,155,158,159,163,165,166,167,168,169,172,173,174,175,176,178,179,183,186,191,194,196,200,201,202,203,204,205,208,209,211,216,217,218,219,220,226,227,229,230,231,232,233,236,237,239,240,245,257,258,259,262,267,270,271,272,274,275,276,277,278,283,285,288,291,293,294,297,301,303,304,305,306,308,313,314,316,319,320,322,324,326,327,328,329,332,333,334,335,336,337,339,340,341,342,360],methodnam:[169,195,210,227,259,291,301,333,340,350,358],metric:81,microsecond:11,microsoft:[62,110],mid:[29,107,120],middl:[29,33,48,89,217,319],middlewar:[140,344,346],midnight:[25,61],midst:121,midwai:113,mighht:90,might:[0,4,8,10,11,12,14,15,17,20,22,23,25,26,27,28,29,30,31,33,34,38,39,40,41,42,45,50,51,54,57,59,60,61,62,68,69,72,74,75,76,79,80,81,84,88,89,90,94,95,96,97,99,101,102,103,104,109,110,113,114,115,118,119,121,122,123,125,126,130,131,132,135,137,152,156,158,178,203,209,212,216,217,218,219,232,245,294,316,319,324,335,336,342,355,361],mighti:[29,110],migrat:[9,23,36,62,74,85,106,109,110,126,129,130,132,250],mike:[42,158],mileston:138,million:[23,132],mime:322,mimic:[23,34,49,54,72,92,176,304,324],mimick:[49,63,72,137,296,324,327],mimim:317,min:[48,61,101,183,187,329,334],min_damag:218,min_dbref:315,min_heal:218,min_height:328,min_shortcut:[22,179],min_valu:355,min_width:328,mind:[10,12,13,14,37,40,44,50,53,54,55,56,59,60,121,125,133,137,178,189,194,203,267,342],mindex:150,mine:[45,102,137],mini:[54,110],miniatur:[60,121],minim:[60,102,104,115,137,204,250],minimalist:[33,57,107],minimum:[22,57,63,72,104,136,187,216,217,218,219,220,270,310,316,328,334,337,342],mininum:328,minlengthvalid:143,minor:[40,152],mint:[62,130],minthread:310,minu:[85,245,329],minut:[27,28,42,61,78,90,99,101,115,163,178,183,308,329,342],minval:[334,342],mirc:277,mirror:[71,78,104],mis:56,misanthrop:118,misc:[136,137],miscelan:318,miscellan:46,mislead:40,mismatch:[73,342],miss:[48,56,59,62,69,89,93,94,96,216,217,218,219,220,249,270],missil:[21,219],mission:[40,68],mistak:59,misus:89,mit:[78,123,319],mitig:[56,102,360],mix:[11,30,33,34,50,113,125,132,143,178,205,249,250,309,317,320,328],mixin:[249,299,360],mixtur:80,mkdir:[9,36,62],mktime:61,mob0:55,mob:[14,42,54,55,60,79,104,121,140,152,158,177,228,231,250,320],mob_data:55,mob_db:55,mob_vnum_1:55,mobcmdset:229,mobdb:55,mobil:[14,70,108,121,137,229,239],moboff:229,mobon:229,mock:[126,340],mockdeferlat:340,mockdelai:340,mockup:137,mockval:340,mod:[8,102],mod_import:342,mod_import_from_path:342,mod_proxy_http:8,mod_proxy_wstunnel:8,mod_sslj:8,mode:[2,8,31,40,41,42,49,50,66,68,73,78,92,99,102,105,115,116,122,132,134,137,140,157,168,174,180,196,198,229,245,249,256,265,270,275,282,293,294,303,320,324,326,335,342],mode_clos:294,mode_init:294,mode_input:294,mode_keepal:294,mode_rec:294,model:[9,11,34,40,44,58,63,68,72,79,86,95,103,111,114,118,124,131,134,135,138,140,141,142,143,144,171,172,174,175,234,235,241,242,245,251,252,255,259,260,261,271,312,313,314,315,317,318,323,330,331,333,338,339,342,355,360,362],model_inst:338,modeladmin:[172,235,242,252,261,313],modelattributebackend:314,modelbackend:347,modelbas:332,modelchoicefield:242,modelclass:[11,111],modelform:[144,235,242,313,355],modelmultiplechoicefield:[144,235,242],modelnam:[174,237,316],moder:[4,38,178],modern:[10,11,15,30,78,102,107,125,137,200,278],modif:[0,8,25,33,37,45,82,90,99,122,130,137,311,355],modifi:[0,2,4,11,20,22,25,26,31,33,34,38,39,42,43,45,50,54,55,56,57,59,67,72,77,84,88,92,95,99,103,104,108,109,110,113,117,118,121,122,124,127,130,134,136,137,138,139,143,144,152,174,179,184,186,188,194,196,202,205,212,216,217,218,219,220,230,232,237,245,250,259,316,320,326,332,338,341,355,360],modified_text:113,modul:[3,5,6,11,13,15,20,21,26,27,29,31,35,37,39,42,44,46,49,50,52,54,55,56,57,58,59,61,64,67,73,74,79,80,81,82,84,88,92,95,96,97,101,102,103,104,106,107,109,110,113,116,118,120,121,122,123,124,126,134,137,138,149,150,152,153,158,160,161,162,163,167,169,173,178,179,180,181,182,183,184,185,186,187,189,191,192,193,195,196,199,200,203,204,205,210,211,212,214,216,217,218,219,220,223,229,230,231,232,239,240,244,245,248,249,250,255,257,258,259,262,264,265,269,270,274,282,284,285,288,289,292,294,296,297,298,303,305,306,307,314,316,317,318,320,321,322,323,324,325,326,327,329,334,340,342,362],modular:54,modulepath:274,moifi:186,mollit:51,moment:[21,31,45,56,75,84,90,95,114,134,138,143,248,254],monei:[9,60,69,85,89,239],monetari:[37,178],monitor:[83,87,92,138,255,270,289,332],monitor_handl:[83,140,255],monitorhandl:[44,73,138,140,141,251,362],mono:25,monster:[29,42,56,60,63,88,108,158,250],month:[37,61,89,183,329,335,342],monthli:61,montorhandl:83,moo:[54,56,78,107,128],mood:[45,121],moon:[25,60,61,81],moor:121,moral:96,more:[0,1,2,3,4,5,9,10,11,12,13,14,15,17,19,20,21,22,23,25,26,27,28,31,33,34,35,36,37,38,39,40,41,42,43,45,48,49,50,51,52,54,55,57,58,59,60,61,62,63,65,67,68,69,70,71,72,73,74,75,76,78,82,84,85,86,87,88,89,90,92,93,94,95,96,99,101,102,103,104,107,108,109,110,111,112,113,114,115,117,118,120,121,122,123,124,125,126,130,131,132,133,135,136,137,140,142,143,144,147,150,151,152,157,158,164,168,170,173,177,178,179,180,181,183,185,186,189,194,197,199,203,204,205,212,213,214,216,217,218,219,220,225,229,230,231,232,233,239,242,245,248,249,250,275,277,280,296,297,306,311,314,315,319,320,322,323,324,325,326,327,328,332,339,342,343,355,360],more_command:327,moreov:[89,101],morn:[186,187],most:[0,4,6,8,9,10,11,13,17,22,23,25,27,30,31,33,35,37,38,39,40,41,42,45,46,47,48,50,52,55,56,57,58,59,60,61,62,63,68,72,73,76,79,81,82,85,87,88,89,90,92,94,95,96,99,102,103,104,106,107,110,112,113,114,115,116,118,120,122,124,125,127,128,132,136,137,139,143,147,151,152,155,158,166,176,179,189,204,205,212,216,217,218,219,220,237,239,240,244,245,250,254,288,293,303,314,315,316,317,326,327,332,333,342,360],mostli:[39,50,56,68,72,89,90,94,113,122,124,136,137,144,151,184,204,218,233,285,319],motiv:[13,14,37,54,60,69,88,276,277,283,284,285,288,293,294,305,306],mount:99,mountain:[107,110,199],mous:[113,136,326],move:[0,4,9,14,15,21,22,23,29,33,34,40,42,43,45,48,49,50,51,53,57,60,62,68,76,78,81,84,88,90,94,95,110,115,116,121,125,132,133,137,152,158,164,178,179,187,193,196,212,216,217,218,219,220,229,230,231,233,236,239,245,297,316,320,327],move_hook:245,move_obj:233,move_to:[0,84,88,120,196,212,245],movecommand:43,moved_obj:[233,245],moved_object:245,movement:[57,108,120,212,216,217,218,219,220,245],mover:220,mptt:4,mratio:[150,167],msdp:[54,82,270,289],msdp_list:270,msdp_report:270,msdp_send:270,msdp_unreport:270,msdp_var:289,msg:[0,2,5,10,11,13,22,25,27,28,29,30,33,39,40,41,43,45,49,50,51,55,57,58,59,61,70,72,79,81,83,84,85,87,88,90,94,95,104,110,113,115,117,118,120,122,126,128,136,137,140,143,145,153,155,159,163,169,172,174,175,176,188,196,198,209,232,240,245,276,277,304,313,320,322,324,326,327,335,339,342],msg_all:115,msg_all_sess:[33,153],msg_arriv:0,msg_content:[0,21,27,33,45,61,88,101,117,120,122,131,196,245],msg_help:165,msg_leav:0,msg_locat:[196,245],msg_other:178,msg_receiv:[196,245],msg_self:[196,245],msg_set:317,msgadmin:172,msglauncher2port:[265,274],msgmanag:[175,176],msgobj:[34,174],msgportal2serv:274,msgreturn:169,msgserver2port:274,msgstatu:[265,274],mssp:[54,103,140,260,273],mtt:292,much:[0,4,10,11,13,14,15,20,22,23,25,26,29,37,38,40,41,48,50,52,55,58,60,61,62,63,68,72,75,78,79,81,88,89,90,92,93,95,108,110,112,114,115,118,119,120,124,126,131,132,133,137,147,152,157,166,179,183,184,205,214,220,223,230,305,319,320,321,328,342],muck:56,mud:[8,15,21,22,23,24,30,39,42,48,54,55,59,60,62,63,71,72,73,79,86,87,89,90,91,94,96,97,99,100,103,104,107,109,110,113,114,115,116,121,123,125,127,131,134,136,137,139,147,152,155,220,262,278,279,280,285,288,289,292,320,329],mudbyt:78,mudconnector:78,mudderi:78,muddev:62,mudform:325,mudinfo:34,mudlab:78,mudlet:[24,95,100,270,280],mudmast:24,mudramm:24,muhammad:341,mukluk:24,mul:248,mult:[108,248],multi:[10,22,31,42,50,54,60,94,95,99,103,104,118,121,122,136,150,168,205,214,306,326,342],multi_page_t:327,multiaccount_mod:96,multidesc:[140,141,177],multilin:341,multimatch:[31,150,205,245,342],multimatch_str:[143,205,245,342],multimedia:136,multipl:[6,12,14,22,23,27,30,31,33,39,42,54,57,60,61,63,72,78,83,87,88,89,94,95,103,104,106,107,108,113,114,121,122,124,130,137,143,149,151,156,157,158,163,167,168,182,184,185,186,188,189,195,201,205,214,216,217,218,219,231,240,245,248,249,250,259,263,267,270,274,289,297,313,314,315,320,328,339,342],multiplay:[54,56,78],multipleobjectsreturn:[143,145,147,174,176,178,181,183,186,188,194,196,202,203,204,205,211,212,213,216,217,218,219,220,222,225,226,229,230,231,233,237,244,245,249,254,257,272,298,314,317,329,333],multipli:248,multisess:[2,40,68,326],multisession_mod:[24,33,63,104,122,132,143,155,159,180,188,245,306],multisession_modd:50,multitud:[56,110,113],multumatch:245,mundan:21,murri:342,muse:78,mush:[9,36,54,59,72,78,107,115,123,138,182,201,362],mushclient:[24,73,95,270,280],musher:78,mushman:107,musoapbox:[56,78],must:[0,1,2,4,5,8,10,11,15,24,25,29,31,33,37,39,42,47,48,49,50,55,57,60,61,62,63,64,70,71,73,75,79,80,82,83,84,86,88,89,92,94,95,96,99,102,103,108,109,111,112,113,114,115,116,118,122,124,126,127,130,132,134,135,136,139,145,150,153,158,168,169,173,174,175,178,181,182,183,185,196,200,202,204,205,209,214,216,217,218,219,220,225,226,230,231,237,239,245,248,255,259,265,270,283,285,288,305,307,308,313,314,315,316,319,320,321,322,323,324,325,326,327,329,334,336,337,338,339,341,342,343,360],must_be_default:152,mutabl:323,mute:[17,40,173,174],mutelist:[40,174],mutltidesc:201,mutual:315,mux2:128,mux:[20,21,33,34,40,44,54,57,102,107,138,140,141,148,166,167,182,238,362],mux_color_ansi_extra_map:182,mux_color_xterm256_extra_bg:182,mux_color_xterm256_extra_fg:182,mux_color_xterm256_extra_gbg:182,mux_color_xterm256_extra_gfg:182,muxaccountcommand:[166,198],muxaccountlookcommand:155,muxcommand:[5,25,28,29,30,33,43,57,81,118,122,140,148,154,155,156,157,158,163,164,165,167,168,170,181,184,185,186,192,198,199,201,202,211,213,218,219,231],mvattr:158,mxp:[24,54,73,113,140,260,270,273,285,288,319,326,341,342],mxp_pars:280,mxp_re:319,mxp_sub:319,my_callback:307,my_datastor:85,my_funct:29,my_github_password:130,my_github_usernam:130,my_identsystem:86,my_object:29,my_plugin:136,my_port:39,my_portal_plugin:39,my_script:101,my_server_plugin:39,my_servic:39,my_word_fil:204,myaccount:111,myapp:85,myarx:9,myattr:[11,143],mybot:[42,163],mycar2:86,mychair:111,mychan:34,mychannel:[12,42,163],mycharact:80,mychargen:50,myclass:59,mycmd:[33,67],mycmdset:[5,31,33],mycommand1:31,mycommand2:31,mycommand3:31,mycommand:[30,31,33,82],mycompon:136,myconf:36,mycontrib:126,mycss:136,mycssdiv:136,mycustom_protocol:39,mycustomcli:39,mycustomview:134,mydatastor:85,mydhaccount:99,mydhaccountt:99,mydhacct:99,myevennia:71,myevilcmdset:[31,151],myevmenu:50,myfix:130,myfunc:[10,114,126,342],mygam:[2,3,5,6,9,13,14,21,23,25,26,27,30,31,35,39,41,43,46,48,50,53,55,56,57,59,61,62,64,66,68,70,72,73,74,75,79,80,81,84,85,88,89,92,94,95,99,101,103,105,108,109,110,113,115,117,118,119,120,122,124,126,127,130,132,133,134,135,136,179,180,182,186,198,199,200,201,211,212,290,340,342],mygamegam:80,myglobaleconomi:101,myhandl:106,myhousetypeclass:[42,158],myinstanc:85,myircchan:[42,163],mykwarg:50,mylayout:136,mylist2:11,mylist:[6,11,96,316],mylog:27,mymap:199,mymenu:50,mymethod:55,mymodul:114,mymud:[8,105],mymudgam:89,mynam:99,mynestedlist:323,mynod:50,mynoinputcommand:33,mynpc:122,myobj1:111,myobj2:111,myobj:[11,27,79,101,259],myobject:[5,11],myobjectcommand:25,myothercmdset:31,myownfactori:39,myownprototyp:108,mypassw:185,mypath:126,myplugin:136,myproc:39,myproc_en:39,myprotfunc:108,myroom:[42,55,101,111,158],myros:88,myscript:[101,111,124],myscriptpath:101,myserv:185,myservic:39,mysess:104,mysql:[36,54,63,127,342],mysqlclient:23,mysteri:[74,86],mytag:136,mythic:121,mytick:259,mytickerhandl:259,mytickerpool:259,mytop:20,mytup1:11,mytup:11,myvar:33,myview:134,naccount:306,naiv:[174,233,237,316],nake:33,name1:[42,158],name2:[42,158],name:[0,2,3,4,5,6,9,10,11,13,14,15,19,20,22,23,24,25,29,31,33,34,36,39,40,41,43,45,46,48,50,51,52,53,54,55,56,57,58,59,60,61,63,64,65,67,68,70,71,73,74,75,78,79,80,81,82,83,84,85,86,88,89,90,92,94,95,99,101,102,103,104,105,106,108,109,110,111,112,113,115,116,118,120,122,124,125,126,127,129,130,131,132,133,134,135,136,137,138,139,140,141,143,145,147,149,150,151,152,153,155,156,158,163,164,165,166,167,168,169,170,173,174,175,176,179,180,181,183,185,187,191,193,194,197,200,202,203,204,205,211,214,218,219,229,231,232,233,236,237,238,244,245,249,250,254,255,257,259,265,268,270,271,272,274,275,277,282,285,288,289,292,293,294,297,310,313,314,315,316,317,319,320,321,322,324,325,326,327,332,333,334,335,336,338,339,341,342,343,347,355,360],namecolor:214,namedtupl:191,nameerror:[41,94],namelist:198,namesak:96,namespac:[68,124,136,194,232,250,320],narg:[113,232],narr:220,narrow:90,nativ:[34,41,87,101,208,310,360],nattempt:50,nattribut:[11,42,50,115,124,158,250,304,314,316,322,326],nattributehandl:314,natur:[11,15,27,54,78,87,111,145,328],natural_height:328,natural_kei:314,natural_width:328,navig:[9,47,48,50,105,110,127,132,133,220,360],naw:[24,51,140,260,273],nbsp:341,nchar:119,nclient:296,ncolumn:328,ncurs:140,ndb:[6,13,22,25,29,33,42,50,101,104,115,124,143,147,168,244,254,304,316,326],ndb_:[42,108,158,250],ndb_del:304,ndb_get:304,ndb_set:304,ndk:74,nearbi:[118,151,152,153,220],nearli:319,neat:[0,3,137,355],neatli:[107,342],necess:[39,94],necessari:[0,4,22,36,38,39,56,57,58,60,76,90,107,109,113,117,120,124,130,137,153,176,180,194,209,231,232,250,258,294,313,320,328,336,338,342],necessarili:[40,56,87,89,108,342],necessit:307,neck:[108,181],necklac:181,need:[1,2,3,4,5,6,8,9,10,11,13,14,15,19,20,21,22,23,25,26,27,28,29,30,31,33,34,35,36,37,38,39,40,41,42,43,44,45,47,48,49,50,53,55,56,57,58,59,60,61,62,63,64,65,67,68,69,70,71,72,73,74,75,76,78,79,80,81,82,83,84,85,86,87,88,89,90,92,93,94,95,96,97,99,101,102,103,104,105,108,109,110,111,112,113,114,115,116,117,118,120,121,122,123,124,125,126,127,129,130,132,133,134,135,136,137,139,143,145,147,151,153,155,158,163,164,166,169,173,174,178,179,185,186,188,192,193,194,195,199,202,203,204,205,214,216,217,218,219,220,226,229,230,231,232,233,239,240,244,245,249,250,257,265,267,269,270,274,282,289,294,296,304,305,306,310,313,314,316,319,320,322,326,327,328,329,334,336,337,339,342,360],need_gamedir:265,needl:202,neg:[61,125,151,324,342],negat:[113,118,240],negoti:[54,178,279,281,283,292,306],negotiate_s:281,neighbor:38,neither:[11,53,60,72,96,109,184,249,289,314,317,343],nenter:50,nest:[11,14,33,42,50,52,113,143,158,205,214,239,245,248,250,289,323,334],nested_mut:11,nested_r:158,nestl:110,net:[9,42,56,62,71,78,89,145,163,278,279,289,292,306],netrc:130,network:[39,42,54,63,64,69,70,71,78,89,102,112,138,145,163,276,277,282,303,306],neu:179,neutral:188,never:[12,14,26,27,31,33,50,53,55,59,60,61,63,79,85,87,90,94,95,103,113,114,117,118,120,124,126,130,132,143,193,204,205,219,220,229,240,245,304,323,334,342],nevertheless:[26,42,50,85,125,155,179],new_alias:153,new_arriv:231,new_attrobj:314,new_channel:57,new_charact:229,new_coordin:233,new_datastor:85,new_goto:326,new_kei:[106,153,245],new_loc:[42,158],new_menu:179,new_nam:[42,106,158],new_name2:[42,158],new_obj:[79,245,250],new_obj_lockstr:158,new_object:[108,250],new_pane_name1:136,new_pane_name2:136,new_raw_str:150,new_room_lockstr:158,new_ros:88,new_script:101,new_typeclass:[143,316],new_typeclass_path:124,new_valu:[83,314],newbi:[25,47,54,123,173],newcom:[95,116],newer:9,newindex:214,newli:[42,45,57,59,65,130,132,158,174,179,198,203,232,245,250,257,322],newlin:[24,33,42,136,165,320,328],newnam:[33,42,158,316],newpassword:[42,156],newstr:136,nexist:22,nexit:[119,126],next:[0,4,5,6,9,10,11,12,13,14,20,21,22,23,25,28,29,30,31,33,36,38,40,41,45,48,49,50,51,55,57,59,60,61,63,64,67,71,72,74,75,76,78,79,80,82,84,85,88,89,94,95,97,99,101,102,105,109,110,113,115,118,120,121,122,130,132,133,136,137,179,183,199,201,214,216,217,218,219,220,230,240,257,265,320,326,327,329,334,342,360],next_nod:50,next_turn:[216,217,218,219,220],nextrpi:78,nexu:44,nfkc:143,ng2:328,nginx:8,nice:[0,12,22,27,48,53,57,60,61,67,69,80,89,95,99,110,118,126,136,137,139,158,178,181,205,249],nicer:[20,59,95],niceti:[42,158],nick:[2,11,44,56,73,78,88,128,138,143,145,158,164,205,239,244,245,277,314,315,334,362],nick_typ:86,nickhandl:[11,86,314],nicklist:[145,277],nicknam:[42,86,88,128,130,164,205,244,245,277,314,315],nickreplac:314,nicktemplateinvalid:[314,334],nicktyp:[205,245],nifti:8,night:[57,60,131,137,186],nine:65,nineti:343,nit:[59,61],nline:335,no_channel:[31,33,151,326],no_default:[124,143,316],no_exit:[31,33,115,151,223,326],no_gmcp:289,no_log:152,no_match:179,no_mccp:278,no_more_weapons_msg:230,no_msdp:289,no_mssp:279,no_mxp:280,no_naw:281,no_obj:[31,151,223,326],no_superuser_bypass:[143,174,240,245,316],no_tel:79,noansi:169,nobj:119,nocaptcha:132,nocaptcha_recaptcha:132,nocolor:[80,270,285,288,293,294],nodaemon:105,node1:[50,326],node2:[50,326],node3:[50,326],node:[13,84,108,187,200,214,247,263,326],node_abort:50,node_apply_diff:247,node_attack:50,node_background:50,node_betrayal_background:50,node_border_char:326,node_destin:247,node_enter_password:200,node_enter_usernam:200,node_examine_ent:247,node_exit:50,node_formatt:[50,187,326],node_four:50,node_game_index_field:263,node_game_index_start:263,node_hom:247,node_index:[247,326],node_kei:247,node_loc:247,node_login:50,node_mssp_start:263,node_mylist:50,node_on:50,node_parse_input:50,node_password:50,node_prototype_desc:247,node_prototype_kei:247,node_prototype_sav:247,node_prototype_spawn:247,node_quit_or_login:200,node_readus:50,node_select:50,node_set_nam:50,node_start:263,node_test:50,node_usernam:50,node_validate_prototyp:247,node_view_and_apply_set:263,node_view_sheet:50,node_violent_background:50,node_with_other_nam:326,nodekei:326,nodenam:[50,326],nodetext:[50,187,247,326],nodetext_formatt:[50,187,247,326],noecho:[42,168],noerror:245,nofound_str:[143,205,245,342],nogoahead:287,nohom:322,nois:21,noisi:[89,262,267,275,285,288,310],noloc:[42,158],nomarkup:[73,80],nomatch:[22,167,179,324,334,342],nomatch_exit:22,nomatch_single_exit:22,nomigr:126,nomin:360,non:[4,6,14,15,20,22,27,29,31,33,42,43,48,49,51,54,57,60,61,62,63,64,67,69,73,81,85,87,101,104,108,109,113,123,124,125,130,136,138,139,143,145,147,149,151,158,168,174,176,184,194,203,211,213,214,230,236,244,245,249,250,254,255,256,257,258,259,265,274,288,289,303,304,306,314,316,319,322,323,324,326,328,334,339,342],nonc:293,nondatabas:[11,304,316],none:[0,1,2,10,11,13,14,15,22,25,30,31,33,34,38,39,40,41,42,43,48,49,50,55,57,59,61,63,68,73,76,79,80,82,83,84,85,86,87,90,95,101,104,110,111,113,115,117,118,120,122,143,144,145,150,151,152,153,155,158,159,160,161,162,165,166,167,169,172,173,174,175,176,178,179,180,181,184,186,187,188,191,193,194,196,197,200,202,203,204,205,211,213,214,216,217,218,219,220,223,229,230,231,232,233,235,236,239,240,242,244,245,247,248,249,250,252,255,256,257,259,262,263,265,267,271,274,275,276,277,284,285,293,294,304,305,306,308,309,310,313,314,315,316,317,319,320,321,322,323,324,325,326,327,328,329,332,334,335,337,338,339,342,343,347,350,355,360],nonpc:122,nonsens:204,noon:[20,59,72,75,79,95],nop:288,nopkeepal:[24,288],nor:[11,13,29,31,41,53,105,107,115,125,184,185,232,249,289,314,317],norecapcha:132,norecaptcha_secret_kei:132,norecaptcha_site_kei:132,norecaptchafield:132,normal:[2,3,5,6,9,10,11,13,14,15,19,20,21,23,25,27,29,30,31,33,34,42,43,45,48,50,52,54,55,56,57,59,61,63,65,67,68,71,73,74,75,79,80,81,82,84,85,86,87,89,92,95,96,99,101,103,104,108,109,110,111,112,113,115,118,120,121,122,124,125,126,127,133,134,136,137,139,143,145,147,149,150,152,153,155,158,165,168,173,174,178,183,184,196,216,217,218,219,220,229,232,233,244,245,247,250,257,259,265,274,277,278,279,281,283,297,304,306,312,314,315,316,319,320,323,326,327,332,334,339,341,342,344],normal_turn_end:115,normalize_nam:245,normalize_usernam:143,north:[0,20,22,42,43,45,48,88,110,113,120,158,179,199,212,297],north_south:110,northeast:[20,42,158,233],northern:[22,110],northwest:158,nose:314,not_don:310,not_error:265,not_found:158,notabl:[6,9,10,39,42,62,96,130,153,158,169,178,316,323,334,342],notat:[42,52,118,158,319,342],notdatabas:124,note:[0,1,2,4,5,6,9,11,12,13,19,20,21,23,24,25,27,29,40,41,42,47,48,56,57,58,59,60,61,62,63,68,69,72,73,74,75,79,82,84,85,87,88,89,92,93,94,95,99,101,102,104,105,106,108,109,112,113,114,115,116,118,120,122,123,124,125,127,129,130,132,133,134,135,136,140,143,145,150,151,152,153,155,158,159,160,164,165,166,168,169,170,173,174,175,178,180,181,182,183,184,185,186,188,193,194,196,197,199,200,201,202,203,204,205,211,212,214,216,217,218,219,220,223,225,226,231,232,233,239,240,244,245,249,250,257,259,262,265,270,274,275,277,278,282,283,284,285,288,289,290,292,293,296,298,299,304,306,310,311,314,315,316,317,319,320,321,322,323,324,325,326,327,328,329,332,334,335,337,338,339,342,348,361,362],notepad:62,notfound:342,notgm:57,noth:[0,10,11,14,20,22,27,29,33,34,41,55,56,59,61,82,84,88,94,107,110,114,115,126,143,158,167,214,216,219,220,229,233,245,257,277,314,316,326],nother:119,notic:[0,10,12,13,20,22,23,29,33,36,37,38,40,41,45,61,68,69,90,95,116,120,125,130,179,222,278,360],notif:[4,74,130,136,137,198],notifi:[42,97,163,216,217,218,219,220,231],notificationsconfig:4,notimplementederror:288,notion:[61,114,115],noun:[204,205],noun_postfix:204,noun_prefix:204,noun_transl:204,now:[0,2,3,5,6,9,10,11,12,14,20,21,22,23,25,27,28,29,31,33,36,38,40,45,47,48,50,54,55,56,57,59,60,61,62,63,64,68,70,71,72,74,75,76,78,79,80,81,84,85,88,89,90,94,95,96,97,99,101,102,104,105,107,108,109,110,113,114,116,117,118,120,122,124,125,126,127,130,132,133,134,135,136,137,139,152,178,183,187,194,196,214,225,233,240,245,277,285,306,338,340,342],nowher:[94,110],noxterm256:288,npc:[9,33,45,50,60,63,72,110,118,123,138,178,213,239,245,362],npcname:117,npcshop:84,nprot:119,nr_start:256,nroom:[22,119],nroom_desc:126,nrow:328,ntf:62,nuanc:113,nudg:[77,223,226,310],nuisanc:102,nulla:51,num:[48,79,205,245],num_lines_to_append:335,num_object:118,num_objects__gt:118,num_tag:118,number:[0,6,10,11,12,13,20,21,23,26,27,31,33,34,36,40,42,48,49,50,56,57,59,60,61,63,70,72,76,80,84,86,89,92,94,95,96,97,99,101,103,104,106,110,111,113,114,115,118,119,121,122,124,126,130,133,134,139,140,143,145,150,151,152,156,158,163,164,173,175,176,181,183,184,187,189,191,193,194,197,199,203,204,205,214,216,217,218,219,220,245,248,250,256,257,263,265,270,276,277,279,283,296,306,308,310,314,315,317,319,320,322,324,326,328,329,332,334,335,339,342,355],number_of_dummi:265,number_tweet_output:119,numbertweetoutput:119,numer:[60,72,96,189,319],numpi:298,o_o:137,obelisk:230,obfusc:[204,205],obfuscate_languag:[204,205],obfuscate_whisp:[204,205],obj1:[11,42,79,96,108,158,202,220],obj2:[11,42,79,96,108,126,158,202,220,320],obj3:[11,42,158],obj4:11,obj5:11,obj:[2,6,10,11,22,25,27,31,33,40,41,42,47,55,57,58,59,79,81,83,85,86,88,90,101,108,111,114,116,118,120,124,126,138,143,144,151,152,153,156,158,164,166,167,168,169,172,173,175,179,181,186,187,188,191,193,194,197,198,202,205,214,216,217,218,219,220,223,226,230,231,233,239,240,242,244,245,248,250,252,254,255,256,257,294,296,297,304,313,314,315,316,317,320,322,323,327,337,338,339,342],obj_desc:219,obj_detail:231,obj_kei:219,obj_prototyp:250,obj_to_chang:124,obj_typeclass:219,objattr:[230,239],objclass:[332,342],object1:33,object2:[33,178,245],object:[0,2,9,10,12,13,14,15,18,19,21,22,23,26,29,30,31,33,34,36,38,39,40,41,43,44,45,46,48,49,50,51,52,54,55,56,57,61,68,72,73,76,78,80,82,83,84,85,86,87,90,92,94,101,102,103,106,107,108,109,113,114,115,116,117,119,121,122,124,126,128,131,132,133,134,136,137,138,139,140,141,142,143,144,145,146,147,149,150,151,152,153,155,156,157,158,159,160,163,164,166,167,168,169,170,172,173,174,175,176,177,178,179,180,181,185,186,187,188,191,192,193,194,195,196,197,198,199,202,203,205,208,209,210,211,212,213,214,216,217,218,219,220,222,223,225,226,228,229,231,232,233,235,236,237,239,240,247,248,249,250,251,252,254,255,256,257,258,259,263,265,267,269,270,271,272,274,275,278,279,280,281,282,283,284,285,287,289,292,294,296,297,303,304,305,306,308,309,310,313,314,315,316,317,319,320,321,322,323,324,325,326,327,328,332,333,334,336,337,338,339,340,341,342,343,347,349,355,358,360,362],object_confirm_delet:360,object_detail:360,object_from_modul:342,object_id:133,object_search:133,object_subscription_set:244,object_tot:315,object_typeclass:[340,358],objectattributeinlin:242,objectcr:355,objectcreateform:242,objectcreateview:360,objectdb:[11,58,95,111,118,119,124,132,140,242,244,245,250,312,313,314,322,327,339],objectdb_db_attribut:242,objectdb_db_tag:[242,313],objectdb_set:[147,314,317],objectdbadmin:242,objectdbmanag:[243,244],objectdeleteview:360,objectdetailview:360,objectdoesnotexist:[147,176,237,244,254,272,314,317,333],objecteditform:242,objectform:355,objectmanag:[243,245,315],objectnam:[6,57],objects_objectdb:85,objectsessionhandl:[2,245],objecttaginlin:242,objectupd:355,objectupdateview:360,objid:79,objlist:[108,248],objlocattr:[230,239],objmanip:[42,158],objmanipcommand:158,objnam:[27,42,124,158],objparam:250,objs2:111,objsparam:250,objtag:239,objtyp:175,obnoxi:267,obs:316,obscur:[47,71,81,204,205],observ:[13,14,20,42,80,87,158,164,186,205,222,226,231,289,320,342],obtain:[0,33,38,62,76,89,90,92,99,179,230],obviou:[0,58,60,102,120,127,137,189,360],obvious:[0,4,14,48,54,104,107,120,317],occaecat:51,occas:127,occasion:[89,118],occation:328,occur:[9,10,25,33,41,56,59,101,136,167,174,203,218,232,240,245,297,326,335],occurr:[45,90,122,319],ocean:[89,121],odd:[22,48,60,102,125],odor:57,off:[0,11,14,20,23,24,29,31,33,36,39,40,42,48,49,50,54,60,63,65,73,79,80,85,87,89,99,102,106,107,109,113,114,122,125,134,137,138,143,153,163,168,169,173,174,181,187,199,200,205,226,229,231,240,245,270,278,285,288,304,316,319,320,322,324,326,327,328,334,335,343],off_bal:29,offend:12,offer:[1,4,11,14,22,26,28,31,33,34,37,38,39,42,43,49,50,54,55,56,58,61,63,71,72,73,75,82,85,86,88,89,90,95,101,105,107,108,110,113,114,115,122,123,126,127,128,130,131,136,137,151,152,157,158,168,178,179,186,204,231,247,255,306,326],offernam:178,offici:[71,99,102,126,130,335],officia:51,offlin:[9,15,78,89,108,157,174,320],offscreen:9,offset:[205,324,335],often:[2,5,10,11,15,22,26,28,31,33,39,40,41,42,45,47,48,50,52,56,58,60,61,63,75,85,87,89,90,92,94,95,96,101,102,103,104,111,113,114,115,118,127,130,145,151,156,166,167,168,174,179,214,216,217,218,219,220,223,225,240,244,254,256,265,270,284,304,314,316,320,322,328,335],ohloh:37,okai:[40,41,47,48,50,57,74,76,110,122,127,197],olc:[42,46,158,247,250],olcmenu:247,old:[0,1,5,9,21,25,27,31,38,42,49,50,54,55,57,59,62,79,80,84,87,89,104,105,110,113,121,122,124,125,127,137,143,151,152,155,158,173,178,196,205,240,245,250,274,315,316,319,322],old_default_set:126,old_kei:[106,245],old_nam:106,older:[2,9,24,54,62,63,78,104,158],oldnam:316,oliv:113,omiss:59,omit:[90,99,108],ommand:149,on_:179,on_bad_request:267,on_ent:[22,179],on_leav:[22,179],on_nomatch:[22,179],onbeforeunload:136,onbuild:99,onc:[0,2,5,6,9,10,13,16,21,22,23,25,33,34,37,38,39,40,41,42,45,46,48,50,54,56,57,59,60,61,62,63,71,78,79,82,84,88,89,92,94,95,96,99,101,104,107,113,115,118,120,121,124,125,127,130,132,136,143,145,150,153,158,163,166,167,169,174,178,179,187,188,194,198,199,200,202,204,211,214,216,217,218,219,220,222,226,229,230,231,232,233,245,249,254,257,270,275,288,292,303,314,319,326,335,340,342],onclos:[39,276,293],onconnectionclos:136,ond:317,one:[0,1,2,3,4,5,9,10,11,12,13,14,15,16,19,20,21,22,23,25,26,27,28,29,31,33,34,35,36,37,40,41,42,43,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,67,68,69,71,72,73,75,76,78,79,80,81,82,84,85,86,87,88,89,90,91,92,94,95,96,97,99,101,102,103,104,105,107,108,110,111,112,113,114,115,117,118,120,121,122,124,125,126,127,130,131,132,133,134,135,136,137,139,142,143,147,150,151,152,153,155,156,158,164,167,169,173,174,175,176,178,179,181,184,186,188,194,197,198,199,203,204,205,213,214,216,217,218,219,220,223,226,230,231,232,233,236,237,239,240,242,244,245,247,248,249,250,254,258,259,265,267,269,270,275,276,277,285,288,289,304,305,306,310,312,314,315,316,319,320,322,323,325,326,327,328,329,332,333,334,335,337,338,339,340,342,343,355,358,360],ones:[4,9,14,20,22,27,31,33,56,57,64,71,73,79,80,82,89,94,99,102,108,113,115,125,126,134,151,152,153,176,179,194,196,216,217,218,219,220,239,249,250,269,274,306,319,328,336],onewai:[42,158],ongo:[28,90,115,178,212],ongotopt:136,onkeydown:136,onli:[0,2,4,5,6,9,10,11,12,13,14,15,19,20,21,22,24,25,26,27,28,29,31,33,34,37,38,39,40,41,42,43,45,47,48,49,50,51,53,54,55,56,57,58,59,60,61,62,63,64,67,68,70,71,72,73,76,78,79,80,81,82,84,85,86,87,88,89,90,92,93,94,95,99,101,102,103,104,105,106,108,110,111,113,115,116,117,118,120,121,122,123,124,125,126,130,131,132,133,134,135,136,137,139,140,143,144,145,149,150,151,152,153,155,156,157,158,163,164,165,166,167,168,169,174,175,176,178,179,180,181,184,186,187,189,194,196,198,204,205,213,214,216,217,218,219,220,222,225,226,230,231,232,233,237,239,240,245,248,249,250,254,256,257,259,265,269,270,277,280,282,283,285,288,297,303,304,306,308,309,310,313,314,315,316,317,319,320,321,322,324,326,327,328,332,334,335,337,338,339,340,342,355,360],onlin:[7,12,15,21,37,40,42,54,56,57,59,60,63,64,67,68,69,70,72,76,78,88,95,97,100,103,107,115,122,127,128,138,140,155,163,174,179,187,279,320,361,362],onloggedin:136,onlook:245,only_tim:339,only_valid:250,onmessag:[39,276,293],onopen:[39,276,293],onoptionsui:136,onprompt:136,onsend:136,onset:[5,11],ontext:136,onto:[25,31,33,43,54,59,60,71,89,94,120,136,152,223,231,244,277,323,326],onunknowncmd:136,onward:106,oob:[24,30,33,44,82,103,136,137,138,143,145,165,188,245,270,288,289,293,294,306,362],oobfunc:103,oobhandl:332,oobobject:101,ooc:[2,57,101,104,113,122,143,147,155,158,159,163,166,176,180,198,245],ooccmdsetchargen:180,ooclook:[104,180,327],opaqu:[15,102],open:[0,3,4,5,9,20,22,23,26,31,34,37,41,45,49,54,56,57,59,62,63,64,68,69,70,71,72,74,78,79,89,94,95,102,104,105,110,113,115,122,129,130,132,133,137,158,165,168,178,179,187,211,212,220,223,225,226,230,239,308,314,322,335,342,361],open_lid:225,open_parent_menu:179,open_submenu:[22,179],open_wal:230,openhatch:78,openlidst:226,openlock:239,opensourc:319,oper:[9,11,12,14,22,27,33,40,41,42,45,50,56,58,59,60,62,63,71,73,79,81,87,88,89,94,95,96,101,109,111,114,118,123,125,130,136,138,143,149,151,153,155,158,163,168,174,179,184,205,226,230,240,245,248,250,259,262,265,274,275,279,281,285,287,288,294,296,297,304,305,314,315,316,319,322,326,328,332,342,362],opinion:[1,47],opnli:314,oppon:[11,72,217,219,229],opportun:[0,4,22,90,132,220],oppos:[27,88,102,109,113,304,317],opposit:[40,42,57,110,120,158,223],opt:[57,136,232],optim:[23,27,33,34,38,55,63,85,92,114,118,153,250,300,303,314],option100:50,option10:50,option11:50,option12:50,option13:50,option14:50,option1:50,option2:50,option3:50,option4:50,option5:50,option6:50,option7:50,option8:50,option9:50,option:[2,4,7,8,10,11,17,20,23,24,25,27,29,31,33,34,36,40,41,46,49,53,54,56,61,62,63,73,75,78,79,80,82,84,85,87,95,99,101,103,105,107,108,110,111,112,113,115,116,122,126,128,132,133,134,136,137,138,140,143,144,145,149,150,151,152,153,155,156,158,163,166,167,169,172,173,174,175,176,178,179,180,181,183,184,186,187,188,189,191,193,194,196,198,199,202,203,204,205,213,214,218,220,232,233,235,236,239,240,242,244,245,247,249,250,252,254,255,256,257,258,259,261,262,263,265,267,270,271,274,275,278,279,280,281,282,283,284,285,287,288,289,292,293,294,296,297,304,306,308,313,314,315,316,317,319,320,321,322,324,325,326,327,328,329,332,334,335,336,337,338,339,341,342,343,347,362],option_class:[140,321],option_dict:326,option_gener:326,option_kei:343,option_str:232,option_typ:337,option_valu:337,optiona:[143,262,316],optionclass:[140,141,318,321],optioncontain:321,optionhandl:[140,141,318,336],optionlist:[50,247,326],options2:136,options_dict:337,options_formatt:[50,187,247,326],optionsl:249,optionstext:[50,187,326],optlist:214,optlist_to_menuopt:214,optuon:204,oracl:[23,342],orang:[113,202,232],orc:[56,60,108,116],orc_shaman:108,orchestr:99,order:[0,2,5,6,9,10,11,13,14,22,27,31,33,36,37,38,42,43,48,49,50,57,59,60,61,62,63,67,68,69,70,79,83,86,88,92,101,103,108,110,112,113,115,118,120,121,122,125,126,127,129,130,132,133,135,136,137,143,149,153,159,164,165,168,169,172,178,179,180,181,182,184,187,202,203,205,216,217,218,219,220,226,229,230,231,232,235,239,240,242,245,250,252,261,276,288,293,297,304,314,316,319,320,326,327,328,335,339,342,360],order_bi:118,order_clothes_list:181,ordered_clothes_list:181,ordered_permutation_regex:205,ordereddict:[11,342],ordin:319,org:[89,203,232,281,287,293,319,342,355],organ:[5,6,9,22,68,72,79,88,101,107,110,111,118,123,128,130,131,153,169],orient:[54,56,63,95,123],origin:[0,4,9,21,25,29,40,42,48,50,54,56,59,74,75,78,80,88,90,95,101,102,104,105,118,130,135,137,145,151,158,179,196,198,204,205,232,245,249,250,274,316,319,326,334,338,341,361],oscar:[174,237,316],osnam:342,oss:105,ostr:[143,175,236,339],osx:[62,130],other:[0,1,2,4,5,6,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,24,25,27,28,29,31,34,36,37,38,39,40,42,43,45,46,47,48,49,50,52,54,56,57,58,59,60,61,62,63,64,67,68,69,70,72,73,75,79,80,81,82,84,85,86,87,88,90,94,95,96,99,101,102,104,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,122,123,124,125,126,127,130,132,133,134,135,136,137,138,139,143,149,150,151,152,153,158,164,165,166,169,170,175,178,181,183,185,187,193,196,198,204,205,209,211,214,216,217,218,219,220,223,226,231,232,233,237,240,244,245,249,250,255,257,259,263,269,270,274,276,277,283,285,288,297,304,305,307,314,316,318,319,320,322,324,325,326,327,328,334,336,337,339,342,343,360],otherroom:211,otherwis:[0,4,11,15,23,25,27,29,31,33,37,38,40,41,42,50,58,61,67,68,75,77,82,85,88,89,90,94,96,99,101,102,104,108,113,120,122,130,134,140,150,151,155,158,174,178,182,186,187,191,194,205,216,217,218,219,220,233,240,245,248,249,250,257,265,276,277,285,304,308,309,313,319,326,327,334,335,339,340,342,360],our:[2,3,4,8,9,11,14,16,20,21,23,25,26,30,31,33,36,37,38,39,40,41,42,43,45,48,54,56,57,58,59,60,61,62,63,69,71,72,74,76,77,78,79,80,81,82,84,87,89,90,97,99,100,102,110,114,115,116,118,122,123,126,127,128,130,131,133,134,135,136,137,139,147,152,166,167,186,199,214,229,230,233,240,255,310,313,335,361],ourself:122,ourselv:[0,20,57,79,86,117,131,137,143,180,278,279,281,292],out:[0,1,3,6,8,9,10,12,13,14,15,16,17,19,20,21,22,23,25,26,28,29,33,34,37,38,40,41,42,43,44,45,46,47,48,50,53,54,55,56,58,59,60,61,62,63,65,68,69,70,76,78,79,85,87,88,89,90,92,94,95,96,99,101,103,104,107,108,110,113,115,116,118,120,121,122,125,126,128,130,132,134,136,137,138,142,143,150,151,155,157,158,178,180,183,185,187,198,204,205,208,209,211,212,216,217,218,219,220,226,230,239,249,250,257,265,267,289,293,294,296,305,306,313,314,323,325,326,328,334,341,342,355],out_templ:[314,334],outcom:[72,85,184,240,245,249],outdat:8,outdata:[39,306],outdoor:[111,118,121,131,231],outer:328,outermost:[11,29,73],outerwear:181,outfunc_nam:39,outgo:[87,89,95,104,145,196,245,277,289,305,342],outgoing_port:89,outlet:89,outlin:[36,42,110,132,276],outmessag:245,output:[4,14,20,22,26,27,34,39,42,50,51,57,73,78,87,90,94,95,99,104,105,107,109,110,112,113,115,119,120,122,125,127,128,134,136,137,153,158,165,168,169,177,179,183,188,206,207,209,216,217,218,219,220,249,265,270,285,289,297,304,319,327,335,338,342],outputcmd:289,outputcommand:[73,82],outputfunc:[39,58,82,245,270,276],outputfunc_nam:[39,270],outputfunct:82,outrank:315,outright:[12,89],outro:[121,231],outroroom:231,outsid:[0,13,15,20,21,38,56,63,72,87,95,99,103,107,108,109,111,120,133,203,219,229,239,289,304,305,314,317,328],outtempl:[314,334],outtxt:27,outward:[48,89],over:[1,6,8,11,13,14,15,16,17,27,28,31,33,34,36,37,38,39,42,44,47,48,50,52,53,56,57,58,59,60,72,76,80,82,84,87,89,92,93,95,96,99,102,104,107,110,111,112,113,114,115,117,118,124,125,126,127,128,132,135,136,137,143,152,163,173,175,187,199,211,214,216,217,218,219,220,226,231,259,269,283,285,288,290,294,296,298,311,316,320,332,338,342,360,361],overal:[10,55,56,67,70,85,89,151,166,167,217],overcom:110,overhead:[23,27,34,112,131,205,233,314],overhear:204,overlap:[31,61,204,319,328],overload:[5,22,30,31,33,39,43,46,50,54,56,59,73,75,88,95,96,103,113,114,116,122,135,143,151,153,167,174,179,180,186,188,202,205,211,212,216,217,218,219,220,229,230,231,232,245,250,259,269,288,305,324,326,327,328,336],overrid:[1,3,4,9,20,21,22,25,31,36,42,50,53,67,68,79,82,90,95,101,104,106,108,116,117,120,134,135,136,143,153,158,165,169,174,175,179,186,194,196,204,218,220,231,232,240,245,250,257,288,306,310,313,314,327,332,335,336,339,360],overridden:[4,39,95,135,137,143,158,179,232,360],override_set:106,overriden:[143,165,205],overrod:16,overrul:[2,79,143,152,205,245,328],overseen:72,overshadow:60,overshoot:342,oversight:56,overview:[15,16,18,23,44,45,56,67,76,95,102,138,362],overwhelm:[45,60],overwrit:[5,42,75,135,137,158,165,283,315,360],overwritten:[33,133,231,317],owasp:355,own:[1,3,4,5,6,8,9,10,11,13,17,19,20,21,22,25,26,27,29,30,31,34,37,40,42,44,46,50,52,54,56,60,61,62,63,67,70,71,74,75,76,77,79,80,82,84,85,86,87,90,92,94,95,97,100,101,102,103,104,106,107,108,110,111,113,118,120,121,122,123,124,126,127,128,130,131,132,133,134,135,137,138,147,149,150,151,152,158,163,166,181,183,186,187,198,200,204,205,209,216,217,218,219,220,230,232,233,239,240,245,250,270,297,305,316,319,320,321,327,328,332,335,336,340,342,360,362],owner:[4,19,79,84,143,240,336],owner_object:79,ownership:[89,99],p_id:132,pace:[121,229],pack:[82,274],packag:[8,9,23,40,46,52,62,63,71,74,77,87,89,92,95,96,99,107,126,127,134,140,142,148,154,171,177,228,234,238,241,251,260,265,274,289,293,312,318,344],package_nam:63,packagenam:63,packed_data:[262,274,275],packeddict:[96,316],packedlist:[96,316],packet:[82,285],pad:[17,113,319,328,334,342],pad_bottom:328,pad_char:328,pad_left:328,pad_right:328,pad_top:328,pad_width:328,page:[7,8,9,12,13,14,16,17,20,21,23,25,26,28,31,33,36,37,39,44,47,50,51,54,56,57,58,59,60,63,69,71,72,74,75,76,78,79,80,87,88,89,93,95,98,99,100,102,103,105,107,109,123,124,125,126,128,129,130,132,133,136,137,138,163,164,174,237,239,242,252,294,313,316,326,327,342,344,353,360,361,362],page_back:327,page_ban:163,page_end:327,page_formatt:327,page_next:327,page_quit:327,page_titl:360,page_top:327,pagelock:239,pageno:327,pager:[51,138,327],pages:[50,326],pagin:327,paginate_bi:360,paginator_index:327,paginator_slic:327,pai:[55,84,89,102,230,239],paid:89,pain:[89,137],painstakingli:13,pair:[31,82,115,136,137,143,151,181,239,245,306,355,360],pal:86,palett:125,pallet:110,palm:187,pane:[42,87,136,137,170,185],pane_name_to_cut_apart:136,pane_to_set:136,panel:105,panic:108,paper:[60,78,115],paperback:72,par:23,paradigm:[9,60,117,217],paragraph:[14,27,201,320,328,342],parallel:[56,61,68,315],paralyz:218,param:[158,245,257,259,267,277,310,335,343],paramat:[143,153,245,304],paramet:[0,22,24,31,36,38,41,45,48,61,90,99,105,118,126,140,143,144,145,149,150,151,152,153,158,165,172,173,174,175,176,178,179,181,183,184,186,187,188,189,191,192,193,194,196,197,198,199,203,204,205,208,209,211,214,216,217,218,219,220,225,231,232,233,236,240,242,244,245,247,249,250,252,255,256,257,258,259,262,263,264,265,267,269,270,271,272,274,275,276,277,278,279,280,281,282,283,284,285,287,288,289,290,292,293,294,296,302,303,304,305,306,308,309,310,314,315,316,317,319,320,321,322,323,324,325,326,327,328,329,332,334,335,336,337,339,340,341,342,343,347],paramount:126,paramt:343,paremt:250,parent1:108,parent2:108,parent:[2,6,22,25,27,31,33,39,42,43,59,63,80,88,95,108,113,117,120,122,124,139,147,155,158,166,168,179,196,205,214,232,239,244,245,249,250,254,314,315,316,324,333,335,342,360],parent_categori:214,parent_kei:[22,179],parent_model:[144,172,235,242,252,313],parentesi:334,parenthes:94,parentlock:239,pari:[78,89],pariatur:51,paricular:33,park:179,parlanc:3,parri:[115,230],parrot:117,pars:[3,15,31,33,39,42,49,50,62,80,82,87,96,103,107,108,113,122,123,128,133,138,148,149,150,153,158,164,165,166,167,168,169,173,178,179,184,185,186,198,205,208,209,210,214,230,231,232,240,245,248,249,250,270,277,280,289,293,294,314,319,320,324,325,326,334,341,342,362],parse_ansi:319,parse_ansi_to_irc:277,parse_fil:320,parse_html:341,parse_inlinefunc:334,parse_input:326,parse_irc_to_ansi:277,parse_languag:205,parse_nick_templ:[314,334],parse_opt:214,parse_sdescs_and_recog:205,parseabl:249,parsed_str:277,parseerror:232,parser:[33,40,46,78,103,107,108,133,149,150,155,158,166,167,173,185,186,202,204,205,230,232,248,249,284,319,334,341],parsestack:334,part1:202,part2:202,part:[1,4,5,9,11,13,14,15,16,20,22,23,26,29,33,36,37,38,39,40,41,43,44,45,47,48,50,56,57,59,60,67,68,69,72,75,79,84,85,87,89,90,91,93,94,101,104,105,110,113,115,116,118,121,122,123,124,126,130,134,135,136,137,138,139,150,151,153,166,167,169,174,178,179,184,202,205,214,219,236,239,240,248,249,265,269,294,305,308,310,314,315,319,320,324,326,334,342,362],part_a:178,part_b:178,parth:290,parti:[8,9,13,23,27,37,41,63,71,74,89,100,113,127,133,176,178,184],partial:[25,67,93,204,249,267,280,306,337,339,342,343],particip:[40,102,216,217,218,219,220],particular:[5,8,12,13,14,20,22,28,31,39,40,42,43,47,57,58,63,67,69,71,73,74,78,79,82,84,87,88,92,95,96,103,104,106,111,112,113,117,118,120,123,124,130,131,134,138,143,150,151,158,175,186,209,218,219,226,236,239,240,245,254,306,308,316,332,339,360],particularli:[0,4,12,38,50,54,126,166,205,250,269],partit:319,partli:[11,31,46,85,128,151],party_oth:178,pass:[4,10,21,23,25,27,28,29,30,33,36,39,42,48,50,51,61,68,73,79,81,82,84,87,89,90,94,95,99,104,106,108,109,110,114,116,118,120,124,126,129,133,137,138,143,145,151,170,181,183,184,187,188,193,199,208,209,211,214,216,217,218,219,220,230,239,240,245,249,255,259,263,275,283,285,288,293,294,304,310,314,316,325,326,327,328,334,335,336,337,338,341,342,360],passag:[82,115,181,230,231,329],passant:125,passavataridterminalrealm:285,passiv:[29,115,132],passthrough:[1,31,257],password1:[144,355],password2:[144,355],password:[4,9,12,23,35,36,50,63,73,79,102,130,138,143,144,155,156,170,185,200,203,209,270,285,288,309,322,347,355],password_chang:358,passwordresettest:358,past:[0,13,20,26,37,45,49,57,61,68,95,103,107,110,115,122,132,136,218,311,320,329,360],pastebin:37,patch:[124,340],path:[0,2,4,8,14,20,21,22,27,29,38,39,42,44,47,50,52,58,59,62,63,65,66,73,79,84,85,87,88,89,94,95,99,101,104,105,108,113,116,117,118,120,122,123,124,133,134,135,137,138,143,145,147,150,151,152,157,158,159,160,161,162,163,168,174,176,178,179,180,181,183,184,186,188,194,196,197,199,200,202,203,204,205,211,212,213,216,217,218,219,220,222,223,225,226,229,230,231,233,237,244,245,249,250,254,256,257,259,265,272,274,283,290,296,298,302,306,310,314,315,316,320,322,324,325,326,327,329,332,333,339,342,360],path_or_typeclass:197,pathnam:340,patient:[20,69],patreon:69,patrol:229,patrolling_pac:229,patron:[37,69],pattern:[3,4,16,68,86,132,133,134,139,156,205,309,342],paul:124,paus:[10,38,45,50,99,101,109,115,193,257,342],pausabl:342,pauseproduc:267,paxboard:78,payload:[276,293],paypal:[37,69],pdb:[138,140],pdbref:[79,239],pdf:78,peac:116,peek:[20,26,50,90],peer:[276,293],peform:270,peg:102,pem:66,pemit:[42,107,156],penalti:[85,218],pend:310,pennmush:[56,107,128],pentagon:102,peopl:[2,20,21,26,37,42,53,54,57,60,63,67,70,71,72,78,79,80,84,89,94,95,96,102,107,113,115,118,138,164,185,205,230,231,313,322],pep8:26,per:[2,4,11,19,33,40,46,50,57,59,61,63,68,82,85,88,92,99,104,108,115,118,122,137,143,174,186,204,216,217,218,219,220,229,278,279,281,289,292,308,326,327,328,332,335,336],perceiv:61,percent:[33,342],percentag:[115,315,342],percentil:342,perception_method_test:301,perfect:[49,54,60,74,99,130],perfectli:[4,68,95,111,128,137,319],perform:[11,13,14,22,23,25,38,40,41,42,51,54,58,70,73,74,79,88,90,92,96,101,102,113,115,116,122,132,133,149,151,155,158,163,174,179,181,187,193,194,205,208,214,216,217,218,219,220,226,245,248,254,255,274,288,296,297,314,315,316,323,334,336,339,342,343,355],perhap:[16,22,41,45,61,68,76,90,93,96,107,137],period:[89,94,95,99,102,126,127,129,342],perist:[34,124],perm:[4,11,12,19,22,25,33,57,67,70,79,84,108,111,122,132,147,156,157,158,163,164,165,168,186,192,202,211,231,237,239,240,244,245,254,314,316],perm_abov:[79,239],perm_us:156,perman:[4,5,12,21,24,25,31,42,50,84,89,95,121,122,137,143,151,152,155,158,163,164,168,196,204,245,258,316],permiss:[2,4,7,8,9,11,12,18,20,21,23,25,31,40,42,44,65,67,69,70,74,92,107,108,122,132,138,143,144,146,147,151,153,155,156,157,158,164,166,167,174,192,196,205,220,237,239,240,244,245,249,250,254,314,315,316,317,320,322,335,339,360,362],permission_account_default:[79,296],permission_func_modul:239,permission_guest_default:65,permission_hierarchi:[19,79,239,240],permissionerror:249,permissionhandl:[132,317],permissionshandl:313,permit:[40,77,158,309],permstr:[79,143,316,322],permut:205,perpetu:92,persis:29,persist:[0,6,21,22,27,31,33,34,42,50,54,55,56,59,63,78,83,85,88,101,103,104,108,109,114,115,120,122,124,143,147,158,168,174,175,176,179,183,187,194,204,205,212,214,216,217,218,219,220,226,230,237,244,245,247,248,249,254,255,256,257,258,259,270,271,272,303,304,312,316,322,324,326,328,329,342],person:[12,21,42,60,62,69,72,89,101,104,117,128,138,143,158,164,178,184,205,225],persona:95,perspect:[72,75,76,104],pertain:[102,125,135,348],pertin:[67,132],perus:[52,136],peski:84,pester:[56,60],phase:[48,60],philosophi:79,phone:[16,63,74,138,203],phone_gener:203,phonem:204,php:[107,355],phrase:[45,197],phrase_ev:197,physic:[2,48,219,229],pick:[6,9,13,15,20,21,31,33,35,37,38,42,50,54,61,67,71,72,79,84,89,94,95,99,101,103,105,110,118,131,150,155,158,164,166,167,173,181,189,196,205,220,223,230,231,245,297],pickl:[11,29,82,114,255,259,262,272,274,275,314,315,323,324,326,338],pickle_protocol:338,pickledfield:338,pickledformfield:[313,338],pickledobject:338,pickledobjectfield:338,pickledwidget:338,picklefield:[140,141,313,318],pickpocket:[42,165],pickup:[196,220,245],pictur:[21,39,56,105,137],pid:[36,79,99,109,130,132,239,245,265,275,342],piddir:36,pidfil:265,piec:[10,13,58,60,63,92,121,202,292,320],pierc:230,piggyback:143,pile:[152,320],pillow:74,ping:[145,265,277],pink:118,pip:[9,23,26,41,46,52,58,62,64,70,74,92,95,96,97,99,126,127,129,132,140],pipe:[104,277,323],pitfal:[14,26,113,125],pixel:24,pizza:[147,176,237,244,254,314,316,317],pkg:74,pki:8,place:[0,2,3,4,5,8,9,11,14,15,20,21,25,26,30,37,40,42,45,48,50,52,54,61,62,63,68,70,72,74,75,79,82,88,89,90,94,95,99,101,102,103,104,108,110,120,122,123,125,127,128,130,131,132,134,135,137,143,156,158,164,178,179,181,183,187,196,202,205,208,216,217,218,219,220,230,231,233,245,257,274,283,288,304,305,306,320,321,323,326,342],placehold:[133,240,245,328],plai:[0,2,11,14,19,22,29,38,45,54,57,60,63,67,72,74,80,82,89,90,94,104,110,113,115,120,121,122,123,131,132,137,143,216,220,289,306,322],plain:[13,14,57,85,87,122,178,179,201,250,270,296,323,360],plaintext:209,plan:[9,14,15,39,40,41,44,54,55,89,93,95,99,123,124,138,320,362],plane:120,planet:[61,78],plant:232,plate:[81,124,203],platform:[9,16,55,62,89,101,105,130],playabl:[132,358],player:[9,10,11,12,19,20,21,22,25,29,31,34,39,40,42,50,53,54,57,59,60,63,64,67,70,72,76,79,80,82,84,89,90,92,94,96,97,104,107,109,110,111,112,115,116,117,118,119,120,121,122,123,132,136,137,138,152,155,158,163,168,175,178,179,187,189,197,198,199,202,204,205,209,213,214,219,220,231,232,233,236,254,279,288,305,320,325,342,355,360],playernam:70,playerornpc:9,pleas:[4,5,8,16,17,26,31,37,42,50,62,69,70,71,74,77,89,92,93,108,110,113,116,117,119,123,124,126,130,132,136,168,267,296,332,338,355,361],pleasur:16,plenti:[14,54,59,128],plot:298,plu:[22,27,42,63,105,168],pluck:33,plug:[95,102,106,135,233],plugin:[4,39,44,46,54,71,78,82,103,107,137,205,263,362],plugin_handl:136,plugin_manag:136,plural:[19,57,79,219,245],png:135,pobject:225,pocoo:342,point:[0,2,4,5,8,13,14,15,20,21,22,25,27,29,31,33,34,36,37,38,41,42,48,50,54,55,59,60,61,62,68,72,74,80,82,84,85,87,88,89,90,92,94,96,99,101,103,104,105,111,112,114,115,120,122,124,126,129,130,132,133,134,135,137,138,143,149,153,158,166,167,168,178,188,196,199,205,211,216,231,232,233,245,247,249,259,265,269,283,285,293,304,306,313,314,316,320,326,334,342,360],pointer:[26,48,55,90],pointless:[6,10,88,114],poison:[218,250],poke:118,pole:202,polici:[42,44,89,93,102,138,209,237,309,314],polit:102,poll:[39,135,155,229,265,294],pong:277,pool:[23,31,114,259,310,323],poor:[47,57],poorli:102,pop:[10,23,25,47,52,57,84,105,137],popen:275,popul:[22,23,36,40,56,60,61,80,123,134,137,151,159,160,161,162,179,181,186,202,205,213,216,217,218,219,220,223,229,230,231,258,259,313,320,324,325,327,334],popular:[9,56,63,78,102,107,360],popup:[136,137],port:[0,8,9,23,36,42,53,54,62,66,71,93,99,100,109,145,163,274,277,285,297,306,310],portal:[39,42,44,46,78,87,88,89,92,93,102,103,105,109,120,127,136,138,140,141,145,168,182,260,262,265,303,304,305,306,329,335,342,362],portal_connect:306,portal_disconnect:306,portal_disconnect_al:306,portal_l:275,portal_pid:[275,342],portal_receive_adminserver2port:275,portal_receive_launcher2port:275,portal_receive_server2port:275,portal_receive_statu:275,portal_reset_serv:306,portal_restart_serv:306,portal_run:265,portal_service_plugin_modul:39,portal_services_plugin:[39,103],portal_services_plugin_modul:39,portal_sess:39,portal_session_sync:306,portal_sessions_sync:306,portal_shutdown:306,portal_st:265,portal_uptim:329,portallogobserv:335,portalsess:[39,104,283],portalsessiondata:306,portalsessionhandl:[39,140,260,273,284,306],portalsessionsdata:306,portion:[76,179,189],pose:[29,57,115,164,174,194,205],pose_transform:174,poser:174,posgresql:23,posit:[13,20,22,38,48,50,90,110,115,125,136,137,138,152,170,179,185,199,201,220,230,231,232,233,258,319,320,323,324,328,342,343],positive_integ:343,positiveinteg:336,posix:[335,342],possess:[7,76,188],possibl:[0,5,9,10,11,22,23,25,26,31,33,34,37,38,42,45,49,50,54,56,57,62,63,65,72,73,74,75,79,90,92,99,101,103,104,108,110,111,113,115,122,125,126,127,130,133,135,137,140,143,147,149,151,158,166,167,178,186,193,196,199,202,204,205,213,226,229,231,233,239,240,245,248,249,250,255,259,270,290,294,304,306,315,317,319,322,324,325,326,328,338,339,342],post:[5,31,34,37,54,56,57,60,62,68,69,70,79,97,106,110,119,132,135,209,294,360],post_delet:106,post_init:106,post_join_channel:174,post_leave_channel:174,post_migr:106,post_sav:106,post_send_messag:174,post_text:189,post_url_continu:[144,172,242],postfix:204,postgr:[23,63],postgresql:[54,342],postgresql_psycopg2:23,postinit:136,posttext:187,postupd:[70,119],pot:12,potato:[24,232],potenti:[10,11,13,26,40,81,82,89,97,110,113,115,122,153,175,209,210,239,240,245,249,336,339,342],potion:[76,316],power:[15,19,20,29,30,31,33,41,42,45,49,50,54,55,57,60,63,79,88,95,108,110,115,121,122,136,137,151,152,157,158,214,219,232,320,326,342],powerfulli:0,pperm:[12,40,42,70,79,132,155,163,202,239,245],pperm_abov:239,pprofil:265,pprogram:265,practial:15,practic:[0,13,14,22,26,29,33,34,36,37,56,57,62,63,69,79,88,89,95,104,108,118,123,125,130,138,320,362],pre:[33,42,46,48,53,60,62,70,88,89,110,113,137,143,158,165,204,240,245,249,250,293,294,324,338],pre_delet:106,pre_init:106,pre_join_channel:174,pre_leave_channel:174,pre_migr:106,pre_sav:[106,338],pre_send_messag:174,pre_text:189,preced:[19,31,40,95,108,113,118,151,153,173,214,245,250,315,328],precend:149,precis:[11,95,125,319],predefin:[120,309],predict:[124,132],prefac:118,prefer:[21,22,23,31,37,42,46,54,56,70,79,89,90,95,105,108,110,122,130,136,137,151,153,156,174,179,205,217,229,236,245],prefix:[20,22,23,41,75,85,96,102,124,144,150,167,174,189,204,235,242,270,277,313,319,334,335,339,342,355],prefix_str:25,prematur:[27,92,178,257],prepai:89,prepar:[3,48,56,86,108,126,143,205,216,217,218,219,220,229,254,323,338],prepend:[198,205,245,319,320,326,342],prepopul:[313,360],preprocess:158,prerequisit:[9,36],prescrib:[54,56],preselect:137,presenc:[9,17,23,54,55,89,121,123,125,135,143,245,310,344],present:[1,4,8,22,41,45,47,48,50,61,68,76,84,90,95,96,103,104,115,122,130,137,179,187,189,203,204,213,214,232,250,324,342],preserv:[125,166,167,316,319,320,335,342],press:[9,14,15,22,26,31,33,41,50,52,62,79,82,87,94,95,99,105,109,179,223,225,226,230,263,326],press_button:225,pressabl:226,pressur:81,presto:20,presum:[61,72,152,335,336],pretend:74,pretext:187,pretti:[0,22,25,26,37,38,40,59,63,71,84,87,88,89,115,120,122,125,130,132,137,153,181,203,234,240,249,325,327,336,342],prettier:[0,355],prettifi:[56,342],prettili:61,pretty_corn:328,prettyt:[27,81,328],prev:50,prev_entri:50,prevent:[11,20,33,45,61,94,193,220,232,313,327,360],previou:[0,10,11,14,16,22,29,31,33,40,41,50,51,57,59,61,68,79,84,85,86,90,94,95,99,103,106,113,118,122,125,173,214,231,247,257,326,335,360],previous:[20,31,34,42,48,49,71,73,90,101,103,113,118,126,132,135,153,156,158,178,199,270,286,290,297,306,317],prgmr:89,price:[89,230],primari:[17,99,124,132,205,245,314,339],primarili:[2,12,34,36,37,54,60,107,143,178,205,236,283,323,342],primary_kei:132,prime:[149,178],primit:[42,60,158,249],princess:[110,121],principl:[2,9,19,26,30,33,37,39,42,50,54,56,59,79,84,88,89,95,97,118,122,131,137,152,155,178,231],print:[4,9,10,11,21,25,26,27,39,41,42,49,50,52,57,58,85,90,94,95,96,109,112,124,155,184,204,232,249,264,265,325,326,327,328,334,335,342],print_debug_info:326,print_help:232,print_usag:232,printabl:291,printout:288,prio:[25,31,33,149,231],prior:[116,193,245],priorit:204,prioriti:[4,25,31,33,43,50,96,115,151,155,159,160,161,162,166,167,179,200,230,231,245,324,326,327],privat:[4,8,42,56,60,68,89,130,163,164,175,277,290],private_set:9,privatestaticroot:310,privileg:[21,23,42,59,62,64,71,97,122,164,205,233,245,316],privkeyfil:285,privmsg:277,prize:121,proactiv:114,probabl:[4,5,11,16,21,22,23,25,29,33,37,45,47,50,54,56,60,63,66,68,84,85,88,89,95,107,115,118,120,127,132,133,135,137,179,197,203,231,267,277,285,332,342,343],problem:[11,13,15,21,22,23,25,26,27,36,42,55,60,63,68,69,74,76,79,89,94,96,99,102,109,110,112,126,137,139,143,152,194,245,274,320],problemat:[25,342],proce:[14,15,99,120,125,292,360],procedur:[137,214,285,288],proceed:[130,342],process:[0,4,8,9,11,13,14,15,22,23,25,29,33,36,38,40,41,42,48,50,54,58,60,63,72,74,75,82,87,88,89,90,91,92,93,99,105,121,130,132,137,138,143,149,151,158,168,178,199,205,214,232,238,240,245,249,255,265,270,274,275,282,285,288,293,294,303,304,306,319,320,323,326,336,341,342,343,360,362],process_languag:205,process_recog:205,process_sdesc:205,processed_result:342,processj:[314,334],processor:[18,42,92,109,110,138,140,141,157,168,199,318,362],procpool:342,produc:[33,42,50,95,113,122,130,155,158,202,204,230,233,245,249,250,264,296,314,316,325,326,334,342],produce_weapon:230,producion:27,product:[23,26,36,89,92,102,105,127,130,134,296,299,326],production_set:9,prof:92,profession:[3,56,63,107],profil:[44,64,138,140,141,144,147,187,260,362],profile_templ:187,profit:137,profunc:108,prog:232,progmat:55,program:[2,10,15,23,42,52,55,56,62,63,69,74,76,78,85,89,91,92,94,95,99,102,105,107,109,113,123,126,127,168,232,260,265,288,294,296],programm:[90,94],programmat:[113,137],progress:[69,72,78,84,93,130,216,217,218,219,220,324,362],proident:51,project:[4,15,25,37,48,63,69,71,76,78,90,98,107,110,123,126,130,134,135,336],projectil:219,promis:26,promisqu:125,prompt:[9,23,24,26,41,53,62,63,74,82,87,95,99,110,123,124,136,138,153,214,263,277,288,293,294,320,326,362],promptli:14,prone:[1,127,152,316],pronoun:188,prop:60,propag:[8,269,338],proper:[15,21,23,27,36,38,42,43,55,56,60,63,84,90,95,99,102,115,122,126,130,132,134,136,137,158,178,179,195,204,325],properli:[9,29,57,61,68,83,105,107,116,124,125,126,127,129,130,132,139,153,178,210,231,239,259,285,342,360],properti:[5,6,13,22,25,38,42,52,54,55,56,58,60,67,72,79,80,83,85,86,95,96,103,108,109,110,114,115,118,120,122,125,126,143,144,145,147,153,155,158,166,168,169,172,174,176,179,187,191,193,202,205,214,216,218,219,220,229,230,231,232,233,235,237,239,240,242,244,245,249,250,252,254,256,257,261,270,272,277,283,297,304,305,306,313,314,316,317,321,323,326,336,337,338,339,342,355,360],propnam:122,propos:[49,137],proprietari:23,propval:122,propvalu:122,prosimii:[132,133],prospect:60,prot:250,prot_func_modul:[108,248],protect:[6,31,42,89,158],protfunc:[140,141,246,249],protfunc_modul:249,protfunc_pars:249,protfunct:249,protkei:[108,248,249],proto:[274,285],proto_def:202,protocol:[24,27,33,42,46,63,71,73,78,82,89,91,93,100,102,103,104,109,136,138,143,145,153,156,188,209,245,260,262,265,267,270,274,275,276,277,278,279,280,281,283,284,285,287,288,289,290,292,293,294,296,303,304,305,306,324,338,342,362],protocol_flag:[287,288,292,304],protocol_kei:305,protocol_path:[283,306],protodef:202,prototocol:[42,168],protototyp:[247,249,250],protototype_tag:108,prototoyp:248,prototyp:[42,44,45,46,54,119,138,140,141,158,168,202,217,218,230,362],prototype1:250,prototype2:250,prototype_:108,prototype_desc:[108,250],prototype_dict:[42,158],prototype_diff:250,prototype_diff_from_object:250,prototype_from_object:250,prototype_kei:[42,108,158,249,250],prototype_keykei:[42,158],prototype_lock:[108,250],prototype_modul:[42,108,158,249,250],prototype_par:[42,108,158,250],prototype_tag:250,prototype_to_str:249,prototypefunc:250,protpar:[249,250],protpart:249,provid:[0,3,4,11,12,16,17,22,25,29,33,36,40,42,46,54,66,68,74,76,89,90,95,96,99,101,102,107,108,118,123,124,125,126,130,132,133,135,136,137,143,153,158,163,174,179,181,187,189,192,199,202,203,214,216,217,218,219,220,232,233,239,245,257,285,308,315,326,336,337,338,342,343,355,360],provok:[41,78],proxi:[46,59,93,102,124,310,313],proxypass:8,proxypassrevers:8,prudent:36,prune:31,pseudo:[39,48,90,107,203,204],psionic:219,psql:23,psycopg2:23,pty:9,pub:40,pubkeyfil:285,publicli:[53,60,78],publish:[21,36,78,99],pudb:140,puff:55,pull:[25,31,33,36,37,63,99,127,130,135,197,226,230,267],punch:31,punish:220,puppet:[2,9,19,21,22,31,33,38,39,40,42,54,56,57,61,73,79,95,96,104,106,113,117,122,132,142,143,149,155,158,166,180,196,198,239,245,304,306,316,334,358,360],puppet_object:[2,143],purchas:84,pure:[45,55,87,113,124,125,254,265,314,319],pure_ascii:342,purg:[11,42,109,124,168],purpos:[4,11,82,89,91,94,111,118,122,125,132,145,149,153,184,193,285,314,323,326,342],pursu:[121,229],push:[22,75,99,102,125,197,223,225,226,230],pushd:62,put:[0,2,3,5,6,10,12,13,14,19,20,21,23,25,33,37,41,42,45,48,49,50,56,57,59,60,63,69,72,76,78,79,82,84,85,86,88,89,94,95,101,102,103,104,105,108,110,113,115,120,121,122,124,126,128,132,134,135,137,152,155,156,158,160,164,180,181,187,189,205,214,216,217,218,219,220,222,226,240,274,288,327,328,342],putti:89,puzzl:[78,121,140,141,177,230,231],puzzle_desc:230,puzzle_kei:231,puzzle_nam:202,puzzle_valu:231,puzzleedit:202,puzzlerecip:202,puzzlesystemcmdset:202,pwd:99,py3:274,pyc:[46,94],pycharm:[44,138,362],pyflak:26,pylint:26,pyopenssl:64,pypath:342,pypath_prefix:342,pypath_to_realpath:342,pypi:[63,78,89,92,319],pypiwin32:[9,62],pyprof2calltre:92,pyramid:233,pyramidmapprovid:233,pyreadlin:52,python2:[9,62,96],python37:62,python3:[62,74,93],python:[0,2,3,4,9,10,11,12,14,15,19,20,21,22,23,27,29,31,33,37,38,41,42,44,45,46,48,49,50,52,55,57,59,61,62,63,64,65,68,71,72,74,75,79,81,84,85,88,89,90,92,96,97,99,102,103,105,107,108,109,110,112,113,115,117,118,122,123,124,126,127,129,132,133,134,138,150,152,157,158,162,168,169,179,184,191,192,193,194,195,196,197,203,232,233,240,244,248,249,250,256,259,265,267,274,278,283,293,304,306,310,312,315,316,319,320,322,323,324,325,326,328,329,332,335,338,342,361,362],python_execut:63,python_path:[152,342],pythonista:78,pythonpath:[152,265,275,320],pytz:343,qualiti:[60,150],quell:[2,6,20,120,121,155,211],quell_color:158,queri:[11,16,34,38,55,63,82,85,108,111,130,147,176,205,236,237,244,245,248,249,250,254,272,285,300,314,315,316,317,327,333,339,342,343],quersyet:118,query_al:314,query_categori:314,query_info:265,query_kei:314,query_statu:265,queryset:[63,101,111,118,175,198,236,249,271,313,315,327,360],queryset_maxs:327,quest:[54,56,60,62,116,121,138],question:[8,10,22,26,33,34,42,49,50,52,56,60,62,69,72,89,95,123,130,134,158,244,262,263,314,324,326,342],queu:265,queue:[36,115,310],qui:51,quick:[5,18,22,31,33,38,42,47,54,60,69,78,89,90,94,96,107,111,115,118,123,137,139,145,158,179,204,250,270,314,317,328,361],quicker:[0,37,85,86],quickli:[10,11,15,25,33,34,38,42,47,50,52,85,88,95,111,113,119,127,135,138,158,179,204,317,320],quickstart:[94,138,362],quiescentcallback:267,quiet:[25,42,84,143,156,158,163,179,181,196,205,245,327,342],quiethttp11clientfactori:267,quietli:[29,82,87,314],quirk:[24,44,138,152,362],quit:[0,2,4,10,17,21,22,23,30,33,38,39,41,45,49,50,53,54,56,59,74,84,92,95,104,118,126,127,132,155,170,179,185,187,193,219,285,324,326,327],quitfunc:[49,324],quitfunc_arg:324,quitsave_yesno:324,quo:114,quot:[23,27,35,42,49,79,94,95,108,113,117,158,170,185,205,324,334,338,342],qux:214,ra4d24e8a3cab:35,race:[8,54,55,60,72,78,116,132,342],rack:230,radiu:[38,48,110],rage:121,rail:[63,120],railroad:120,rain:[101,118,121,131],raini:231,rais:[10,15,27,33,68,72,76,82,90,108,118,133,143,145,175,179,184,186,191,193,194,203,204,205,240,248,249,257,259,264,265,283,288,294,309,314,315,319,320,322,325,326,328,334,335,336,337,338,342,343],raise_error:[337,342],raise_except:[1,314],ram:[11,89],ramalho:78,ran:[13,36,41,126],rand:101,randint:[72,90,108,115,119,122,216,217,218,219,220,248,250],random:[9,20,35,45,59,72,89,90,101,103,108,115,119,122,131,203,204,216,217,218,219,220,222,223,225,227,230,231,233,248,250,296,297,334,342],random_string_from_modul:342,random_string_gener:[140,141,177],randomli:[85,92,101,119,131,216,217,218,219,220,229,230,248,265,297],randomstringgener:203,randomstringgeneratorscript:203,rang:[24,31,38,41,42,48,49,55,58,62,87,90,92,102,108,110,115,117,119,121,126,158,183,187,217,220,315,324,334,355,360],rank:[19,239],raph:78,rapidli:152,raptur:289,rare:[10,22,33,34,62,85,103,105,114,127,240,322],rascal:111,rate:[33,37,42,63,89,163,259,265,284,342],rather:[2,3,11,13,20,22,25,26,29,33,37,38,40,42,46,54,56,59,60,63,70,85,88,90,92,94,96,101,103,109,110,111,114,115,126,127,128,130,133,134,137,143,147,151,155,158,159,163,166,168,178,189,193,196,201,205,216,217,218,219,220,234,239,245,247,250,313,314,316,319,328,334,337,338,341,360],ration:178,raw:[3,12,20,33,40,55,63,73,82,85,94,108,113,118,143,150,153,158,166,167,169,205,209,232,245,270,285,288,293,294,304,319,324,326,334,336,342],raw_cmdnam:[150,167],raw_desc:186,raw_id_field:[172,242,252],raw_input:[84,326],raw_nick:86,raw_str:[33,50,84,143,145,149,150,153,169,187,200,214,245,247,304,314,326],raw_templ:86,raw_text:200,rawstr:[153,169],rcannot:22,re_bg:341,re_bgfg:341,re_blink:341,re_bold:341,re_color:341,re_dblspac:341,re_double_spac:341,re_fg:341,re_format:319,re_hilit:341,re_invers:341,re_mxplink:341,re_norm:341,re_str:341,re_ulin:341,re_underlin:341,re_unhilit:341,re_url:341,reach:[20,22,38,50,72,86,87,89,94,100,120,121,140,153,187,191,220,239,285,289,308,326,327,334,339],reachabl:[63,114],react:[50,114,116,117,229,245],reactiv:[42,168],reactor:[93,276,303,310,340],read:[0,1,4,5,8,9,11,13,15,16,17,20,22,23,25,27,29,31,33,34,37,38,40,42,45,50,54,55,57,58,59,60,63,68,69,70,71,75,76,78,79,84,85,87,89,90,92,94,95,101,102,103,104,108,113,118,121,122,123,125,126,127,130,132,133,137,138,143,147,157,165,176,179,186,189,197,198,203,205,230,231,237,244,245,249,250,254,272,274,297,314,316,317,320,321,325,327,333,335,360,361],read_batchfil:320,read_default_fil:36,readabl:[1,27,48,92,95,107,113,114,124,230,319],readable_text:230,reader:[42,47,57,73,78,80,97,132,163,189,220,270,284],readi:[2,10,12,15,20,25,29,36,37,39,41,53,62,74,76,79,88,92,105,120,130,135,137,143,153,165,205,216,217,218,219,220,245,294,336,342],readili:[23,110],readin:325,readlin:335,readm:[14,37,46,129,130,177,209],readonlypasswordhashfield:144,readthedoc:78,real:[2,10,21,22,27,31,38,41,45,52,54,57,58,61,62,65,71,72,88,89,92,94,99,107,108,109,110,115,118,122,124,125,130,136,147,152,176,178,183,204,205,218,239,296,320,329],real_address:2,real_nam:2,real_seconds_until:[183,329],real_word:204,realis:76,realist:[126,131],realiti:[21,54,55,60,76,78,125],realiz:[47,95,125,130],realli:[4,10,11,12,13,14,19,20,22,25,26,31,33,38,41,50,52,57,61,63,71,76,79,84,88,90,95,97,103,107,109,110,111,114,117,118,120,126,127,137,138,178,179,180,214,232,240,274,319,320,326,338],realm:285,realnam:88,realtim:[57,183],realtime_to_gametim:183,reason:[8,9,11,12,13,22,25,29,34,37,38,39,40,42,43,48,50,55,56,57,59,60,62,63,68,72,79,81,82,85,86,88,92,96,101,102,103,105,108,113,114,115,118,121,125,128,130,137,143,156,158,163,168,185,203,204,245,249,255,262,267,274,275,276,277,283,284,285,288,293,294,296,304,305,306,316,324,335,342,360],reasourc:108,reassign:48,reattach:[105,276,277],rebas:130,reboot:[11,27,28,42,49,54,83,85,89,99,101,104,114,115,127,143,152,168,182,187,229,230,245,254,255,256,257,259,265,305,306,324,326,342],reboot_evennia:265,rebuild:[57,62,99,127,277],rebuilt:33,rec:205,recach:231,recal:[94,137,230,360],recaptcha:132,receipt:[102,267],receiv:[31,33,34,37,40,41,50,51,57,76,82,86,90,104,112,113,116,126,132,136,137,143,151,152,169,170,174,175,176,185,196,198,199,205,209,245,267,270,274,276,277,283,293,294,303,304,322,327,339,342],receive_functioncal:274,receive_status_from_port:265,receivelock:239,receiver_account_set:147,receiver_object_set:244,receiver_script_set:254,recent:[4,17,25,59,66,93,122,308],recev:294,recip:[0,28,114,202],recipi:[34,57,143,175,198,274],reckon:9,reclaim:101,recog:[86,205],recog_regex:205,recogerror:205,recoghandl:205,recogn:[16,20,62,73,88,89,95,109,126,133,205,310],recognit:[205,314,334],recommend:[9,12,23,24,25,26,36,37,42,50,54,57,58,59,60,62,68,72,78,85,87,88,89,92,94,107,108,123,124,126,130,134,168,189,193,208,232,240,245,267,320,326,339],reconfigur:89,reconnect:[121,143,145,262,265,274,276,277,303,306],reconnectingclientfactori:[262,276,277],record:[15,23,89,122,209,220,308,355],recours:12,recov:[27,28,29,55,216,217,218,219,220,240,342],recoveri:115,recreat:[23,62,101,110,127,145,152,320,321],rectangl:325,rectangular:[57,325],recur:63,recurs:[11,239,249],red:[13,14,20,31,42,58,79,86,94,108,113,125,158,168,223,225,226,230,334,343],red_bal:58,red_button:[13,14,20,42,86,140,158,177,221,223,226],red_button_script:[140,177,221,225],red_kei:79,redbutton:[13,14,20,42,86,158,223,225,226],redbuttonblind:226,redbuttonclos:226,redbuttondefault:223,redbuttonopen:226,redd:102,reddit:102,redefin:[22,33,54,88,245,355],redhat:[62,66],redirect:[8,22,39,68,95,104,132,134,179,326,360],redirectview:360,redistribut:34,redit:179,redo:[49,60,324],redon:269,redraw:285,reduc:[93,115,216,217,218,219,220,278],redund:319,reel:152,reen:113,ref:[23,124,205,342,355],refactor:[44,56,138,245,362],refenc:52,refer:[0,8,9,13,19,20,22,31,33,34,37,39,42,45,47,48,50,52,55,56,61,63,68,72,78,79,85,86,87,88,89,94,95,99,103,104,105,108,109,110,115,118,123,124,125,126,128,129,130,132,133,143,152,158,163,167,178,187,196,199,203,205,216,217,218,219,220,239,245,256,259,267,277,297,305,313,315,332,338,339,360,361],referenc:[42,55,88,103,108,158,174,205,237,316,342],referenti:342,referr:89,refin:[48,118],reflect:[95,360],reflow:16,reformat:[250,328,335],reformat_cel:328,reformat_column:[110,328],refresh:[26,133,285],refus:12,regain:29,regard:[47,125,126,137,203],regardless:[12,19,31,33,57,72,79,80,82,101,104,113,118,120,124,126,137,143,151,178,188,196,205,223,226,245,257,259,282,285,288,303,305,314,317,320,332,335],regener:218,regex:[5,33,49,86,136,153,156,169,182,203,205,309,314,334,342],regex_nick:86,regex_tupl:205,regex_tuple_from_key_alia:205,regexfield:144,region:[42,57,89,139,156],regist:[64,70,82,102,103,115,119,130,132,134,136,137,143,197,229,230,255,265,276,277,283,306,310,319,334,358,360],register_error:319,register_ev:197,registercompon:136,registertest:358,registr:[64,360,361],registri:[203,310],regress:249,regul:240,regular:[3,17,33,68,78,89,95,104,114,131,133,134,145,151,181,202,203,225,226,231,240,259,317,332,342,361],regulararticl:333,regulararticle_set:333,regularcategori:333,regularli:[84,97,101,119,127,131,183,225,229,231,256,257,259,268,298,329],reilli:78,reinforc:78,reiniti:109,reinstal:62,reinvent:56,reject:[187,203],rejectedregex:203,rel:[10,13,14,19,22,31,48,50,81,103,122,130,132,183,199,220,320,326],relai:[27,33,42,71,104,143,163,178,188,245,283,306,326,327,342],relat:[28,31,33,34,42,46,50,55,56,71,78,93,95,101,102,103,109,124,131,136,137,138,144,147,148,151,165,166,171,175,176,183,197,209,216,217,218,219,220,231,237,244,245,254,257,259,270,306,313,314,316,317,319,326,333,335,344,348,355],related_field:[144,172,235,242,252,313],related_nam:[147,176,237,244,254,314,316,317,333],relationship:[34,48,118,124],relay:145,releas:[9,28,37,42,54,62,77,78,89,95,168],releg:1,relev:[3,9,11,14,22,30,33,37,46,57,61,78,79,88,93,95,106,111,113,115,118,122,123,124,132,134,139,143,144,149,151,178,179,239,240,256,257,279,297,304,305,306,313,319,324,326,336],relevant_choic:179,reli:[9,34,40,50,61,69,80,84,85,87,90,113,114,118,125,126,134,188,205,226,231,265,316,326],reliabl:[13,23,25,29,124,332],reliant:199,reload:[0,2,3,5,6,7,12,13,14,19,21,22,26,27,28,29,31,33,35,36,38,39,40,41,43,47,49,50,54,56,57,59,61,62,64,65,67,68,70,72,73,80,91,94,95,97,101,103,104,105,114,115,116,117,120,122,124,127,132,133,134,135,136,138,143,145,152,157,158,168,174,179,180,184,185,186,194,200,201,205,211,212,230,231,233,240,245,255,256,257,259,265,274,275,277,279,303,306,310,314,320,322,324,325,326,329,342,362],reload_evennia:265,remain:[13,19,30,31,33,42,49,50,57,76,89,90,95,96,106,108,109,112,150,152,158,160,164,174,180,183,186,216,217,218,219,220,229,245,257,265,293,294,326,327,334],remaind:[21,33,183],remaining_repeat:[101,257],remap:[314,334],remedi:59,rememb:[0,1,4,5,11,12,13,21,22,28,29,31,33,38,40,42,47,48,50,53,55,57,60,61,62,68,76,79,85,87,89,90,92,94,95,96,110,111,113,114,118,122,125,127,130,136,138,156,158,180,193,245,255,320,339],remind:[0,4,49],remit:[42,156],remnisc:56,remot:[25,99,102,274,276,288],remov:[0,1,4,9,11,12,21,22,27,31,36,38,40,42,47,49,50,54,57,68,79,80,83,84,86,88,90,92,97,101,114,115,121,126,127,130,132,135,137,140,151,152,156,158,163,164,165,168,173,174,176,179,181,186,187,191,195,202,203,204,205,214,216,217,218,219,220,223,240,244,245,250,255,258,259,265,283,294,306,308,314,317,319,323,326,332,338,340,341,342],remove_backspac:341,remove_bel:341,remove_charact:115,remove_default:[31,152],remove_receiv:176,remove_send:176,removeth:314,renam:[9,20,42,57,80,135,158,164,245,316],render:[3,22,68,80,101,106,132,133,135,144,165,189,235,242,310,313,336,338,353,355,360],render_post:294,renew:[29,57],reorgan:[44,46],repair:[21,60],repeat:[0,41,60,61,74,87,92,101,109,110,115,117,120,135,138,143,145,178,183,203,214,254,257,265,270,289,314,322,326,329],repeatedli:[14,41,61,73,101,138,229,254,257,259,265,270,296],repeatlist:73,repetit:[61,115,203],replac:[5,6,9,22,23,25,29,30,31,33,36,40,42,49,50,56,68,73,79,86,88,93,94,95,99,103,104,108,110,113,115,118,133,134,135,136,137,143,150,151,152,153,156,164,165,169,178,180,182,185,186,187,191,194,196,201,202,204,205,223,226,231,232,240,245,247,249,250,277,280,293,294,304,314,319,324,325,326,328,334,341,342],replace_data:328,replace_timeslot:186,replace_whitespac:328,replacement_str:[42,164],replacement_templ:[42,164],replenish:[216,217,218,219,220],repli:[33,50,64,69,138,145,178,198,263,287,288,294,306,326],replic:[22,135],repo:[46,56,78,105,130,138],report:[22,24,26,33,37,42,60,62,69,72,74,83,90,92,93,96,101,102,103,114,115,126,130,135,137,158,191,194,205,232,245,265,270,277,280,281,288,289,293,304,306,319,322,326,342],report_to:322,repositori:[8,9,23,25,36,75,77,95,99,129,250],repositri:75,repr:[90,327,342],reprehenderit:51,repres:[0,2,9,20,21,22,25,31,33,39,45,48,55,60,61,63,68,76,85,88,94,95,104,106,112,115,118,124,125,126,132,135,143,149,173,175,181,187,189,191,196,197,199,203,205,209,211,214,218,230,231,232,245,250,259,262,276,277,293,294,304,305,306,310,314,315,319,321,322,326,328,338,342],represent:[2,11,28,39,57,63,72,76,85,86,87,104,112,118,125,175,191,194,205,249,254,274,293,294,317,323,329],reprocess:102,reproduc:[10,95,245],reput:208,reqhash:[315,342],reqiur:187,request:[3,8,26,37,39,42,50,62,68,79,89,102,106,118,122,130,132,133,134,138,143,144,145,156,172,178,194,242,245,249,252,265,267,274,277,279,284,285,287,294,310,313,317,326,347,348,349,353,360],request_finish:106,request_start:106,requestavatarid:285,requestfactori:310,requestor:[143,308],requir:[1,4,8,9,10,11,14,15,22,23,33,36,37,42,45,46,48,49,53,57,59,60,66,67,68,69,70,74,76,77,78,79,83,84,85,88,89,92,93,101,108,109,110,113,114,115,117,118,124,125,126,128,131,132,133,135,136,144,157,158,163,168,175,176,184,185,186,187,199,200,201,203,205,214,218,219,231,232,235,236,239,242,245,249,265,276,277,290,298,309,313,315,320,325,326,327,328,332,337,338,339,342,355,360],require_singl:249,requr:108,rerout:[137,155,159,277],rerun:[13,14,50,121],resart:257,research:[78,193],resembl:[25,54,128],resend:33,reserv:[1,10,33,94,95,110,249,309,315,334,342],reset:[0,7,12,15,17,23,27,29,31,33,43,49,59,65,72,80,101,103,104,110,113,115,120,122,124,125,138,143,145,152,158,168,173,183,194,205,226,230,240,256,257,265,269,275,285,303,314,317,320,328,329,334,340,342],reset_cach:[314,317],reset_callcount:[101,257],reset_gametim:[27,329],reset_serv:269,reset_tim:186,resid:[46,95,107,226,240],residu:[42,168,218],resist:[250,342],resiz:[57,137,325,328],resolut:[113,115],resolv:[26,29,41,59,69,89,94,103,115,130,202,216,217,218,219,220],resolve_attack:[216,217,218,219,220],resolve_combat:115,resort:[33,53,57,205,342],resourc:[9,23,26,28,40,46,47,52,55,89,93,94,95,102,107,114,123,126,134,135,138,219,255,263,294,310,321,340],respect:[0,6,23,33,42,47,57,79,103,104,122,124,156,158,165,178,198,202,205,212,223,240,245,304,305,316,317,320,322,328,339,342,355],respond:[0,45,50,60,82,83,106,109,116,117,125,292,296],respons:[7,10,16,17,37,48,50,59,62,63,69,84,87,89,90,117,119,120,143,145,174,196,231,233,237,245,263,265,267,274,297,306,316,336,338,342],response_add:[144,172,242],rest:[17,29,33,50,55,62,72,81,84,85,86,103,105,110,121,122,150,166,167,216,217,218,219,220,314,319,328],restart:[12,41,42,57,59,75,89,91,92,101,102,103,105,109,115,127,130,134,136,137,140,143,168,174,179,182,194,226,245,255,257,259,269,282,303,304,305,342],restartingwebsocketserverfactori:[145,276],restock:84,restor:[0,31,101,125,179,219,226,255,259],restrain:[42,158,239,325,342],restrict:[4,8,11,19,20,42,46,58,67,72,79,89,108,110,114,124,133,136,158,163,181,203,219,220,235,240,250,322,324,326,328,339],restructur:55,result1:202,result2:[50,202],result:[10,11,23,27,30,31,33,42,43,47,50,57,58,72,79,87,89,90,94,95,96,103,104,108,113,114,115,117,118,122,123,125,126,130,133,134,135,143,150,151,153,158,165,174,176,178,184,187,199,202,203,204,205,208,216,217,218,219,220,231,236,240,245,248,249,250,257,265,274,297,314,316,319,324,325,326,328,332,334,335,336,339,342,343],result_nam:202,resum:[29,33,101],resurrect:229,resync:[145,274,304],ret:33,ret_index:342,retain:[10,27,31,96,110,137,188,237,250,311,316,320,322,335,342],retract:178,retreat:220,retri:265,retriev:[0,33,42,68,73,85,95,96,107,111,118,122,138,139,143,147,149,152,158,168,173,175,186,193,236,239,244,249,263,270,271,277,283,292,314,317,323,332,337,339,342,360],retriv:[145,321],retroact:[57,124],retur:51,return_appear:[48,59,121,122,181,186,205,230,245],return_cmdset:165,return_detail:[186,231],return_key_and_categori:317,return_list:[1,314,317],return_map:110,return_minimap:110,return_obj:[1,11,86,314,317,337],return_par:250,return_prototyp:119,return_puppet:143,return_tagobj:317,return_tupl:[86,184,314],returnvalu:[10,33],reus:332,reusabl:121,rev342453534:342,reveal:181,revers:[29,31,33,38,110,113,120,125,133,147,176,233,237,244,254,310,314,316,317,319,333],reverseerror:[265,274],reversemanytoonedescriptor:[147,244,333],reverseproxyresourc:310,revert:[42,89,125,130,155,236],review:[0,31,37,40,63,69,127,134],revis:60,revisit:[36,326],reviu:50,revok:57,revolutionari:130,rework:[29,60,200],rfc1073:281,rfc858:287,rfc:[281,287],rfind:319,rgb:113,rgbmatch:319,rhel:8,rhostmush:[56,107,128],rhs:[25,57,166,167,169],rhs_split:[158,164,166,167],rhslist:[166,167],ricardo:342,riccardomurri:342,rich:[22,56,77,78,323],richard:78,rick:108,rid:[55,118,138],riddanc:12,ridden:[1,95],riddick:187,ride:120,right:[0,5,8,10,14,20,21,23,25,28,29,33,38,40,41,42,45,50,52,54,55,56,57,59,60,62,67,73,74,75,79,84,86,89,90,95,100,101,108,110,113,116,118,120,122,125,126,127,132,133,136,137,144,152,155,158,166,167,174,180,186,187,189,194,195,202,220,223,226,229,230,233,240,248,250,254,305,319,320,324,328,342,343],right_justifi:[108,248],rigid:56,rindex:319,ring:204,ripe:95,rise:[31,61],risen:61,risk:[42,56,62,89,122,137,157,168],rival:110,rjust:319,rm_attr:158,rnormal:113,rnote:[42,168],road:[31,45,110,120,151],roadmap:[44,138,362],roam:[121,152,229],roar:110,robot:[76,132],robust:[84,90,102],rock:[6,59,85,115,123,152],rocki:121,rod:152,role:[17,23,54,56,60,72,90,216],roleplai:[9,11,56,60,67,72,78,115,122,138,184,205,362],roll1:72,roll2:72,roll:[11,57,60,62,72,90,115,122,184,216,217,218,219,220,308],roll_challeng:72,roll_dic:184,roll_dmg:72,roll_hit:72,roll_init:[216,217,218,219,220],roll_result:184,roll_skil:72,roller:[72,115,184],rom:78,roof:[42,158],room1:126,room56:13,room:[9,12,13,14,15,20,21,22,27,31,33,41,42,43,44,45,54,55,56,58,61,62,63,72,76,79,84,90,95,101,103,107,108,110,111,115,116,117,118,119,120,121,122,123,124,126,128,131,132,139,140,149,150,151,152,156,158,164,169,177,179,181,184,186,193,196,199,205,211,212,213,216,217,218,219,220,228,229,230,232,233,239,245,254,269,297,320,340,358,362],room_count:118,room_dict:199,room_flag:55,room_lava:55,room_typeclass:[233,340,358],roombuildingmenu:[22,179],roomnam:[42,57,158],roomobj:118,roomref:120,root:[9,13,22,23,36,46,52,62,63,68,74,77,79,80,85,88,89,92,95,96,99,105,127,129,133,134,135,230,245,250,265,310,323,362],rose:[11,86,88,124],roster:[9,216,217,218,219,220],rosterentri:9,rot:126,rotat:335,rotatelength:335,roughli:[57,60,93,95,342],round:[17,204,220,328],rounder:204,rout:[5,20,48,55,120,136,143],router:89,routin:[205,300,339,342],row:[0,3,16,48,57,63,68,85,110,113,115,125,136,328,342],rpcharact:205,rpcommand:205,rpg:[57,59,72,123,184,220],rpi:78,rplanguag:[140,141,177,205],rpm:62,rpobject:205,rpsystem:[140,141,177,201,204],rpsystemcmdset:205,rred:319,rsa:[285,286],rspli8t:90,rsplit:[122,319],rss2chan:[97,163],rss:[7,42,54,78,127,138,140,145,163,171,260,270,273,283,362],rss_enabl:[97,163],rss_rate:145,rss_update_interv:[42,163],rss_url:[42,97,145,163],rssbot:145,rssbotfactori:284,rsschan:[42,163],rssfactori:284,rssreader:284,rstrip:[90,319],rsyslog:208,rtest2:113,rtext:84,rthe:22,rthi:113,rtype:310,rubbish:[42,155],rubi:63,rudimentari:229,ruin:[121,186,231],rule:[12,13,14,21,33,46,52,54,57,60,67,76,78,79,95,113,123,125,126,130,138,179,203,204,216,217,220,237,320,362],rulebook:115,rumour:121,run:[0,2,3,5,6,8,9,10,11,13,14,15,20,21,23,24,25,26,27,28,29,31,35,36,39,42,44,45,46,50,52,53,55,56,58,59,60,61,62,63,67,68,71,72,75,78,79,80,84,85,89,90,91,92,94,95,96,100,101,102,103,108,109,110,114,118,120,121,122,123,124,125,127,129,130,131,132,133,135,136,137,138,140,143,145,149,150,153,157,158,163,164,165,168,169,173,174,194,195,200,205,208,212,214,216,217,218,219,220,226,233,239,240,245,249,250,254,256,257,259,265,269,271,275,282,283,290,294,296,299,303,304,308,310,316,319,320,324,326,327,329,335,339,340,342,360,361,362],run_async:[10,342],run_connect_wizard:265,run_dummyrunn:265,run_exec:326,run_exec_then_goto:326,run_init_hook:303,run_initial_setup:303,run_menu:265,run_start_hook:[59,124,316],runexec:326,runexec_kwarg:326,runnabl:108,runner:[36,105,230,296],runsnak:92,runtest:[169,195,210,227,291,301,333,340,350,358],runtim:[12,27,33,61,153,179,232,329,342],runtimeerror:[72,143,145,191,194,197,203,204,249,257,283,314,326,334,342],runtimewarn:249,rusernam:50,rush:29,rusti:84,ruv:36,ryou:22,sad:[132,288],safe:[11,26,30,31,42,45,55,59,63,81,88,96,103,130,132,143,155,178,226,240,259,274,306,310,316,320,323,332,342],safer:[12,13],safest:[0,89,104,316],safeti:[2,42,55,88,89,122,124,138,158,178,244,320],sai:[0,5,6,10,12,14,17,20,22,25,26,27,29,31,33,38,39,40,43,45,50,55,56,57,59,60,61,62,63,68,72,76,77,79,88,89,90,92,95,108,113,115,116,117,118,122,124,125,126,127,128,130,136,137,138,139,152,164,178,180,184,187,196,197,204,205,214,226,231,245,326],said:[0,4,10,22,26,42,43,45,48,50,56,82,90,95,110,111,117,126,133,150,163,167,196,205,233,245,277,316],sake:[13,42,56,125,134,170,185,360],sale:84,same:[0,2,5,6,9,10,11,12,13,14,15,16,19,20,21,22,23,26,27,28,29,31,33,34,37,39,40,41,42,43,49,54,56,57,58,59,60,61,62,63,65,68,72,73,77,79,80,82,83,84,85,87,88,89,90,94,95,96,97,99,101,103,104,105,107,108,109,110,111,112,113,114,115,118,120,122,124,125,126,127,130,132,133,135,137,143,149,150,151,152,153,156,158,166,167,168,169,174,179,181,183,186,189,193,194,198,203,204,205,211,213,214,216,217,218,219,220,223,229,231,232,233,239,245,250,254,255,259,269,274,286,289,290,304,305,306,308,310,313,314,315,316,317,319,320,322,326,327,328,329,335,336,342,355,360],sampl:[8,36,55,99,214],san:189,sand:61,sandi:110,sane:[60,78,95,360],sanit:[355,360],saniti:[9,48,110,126,138,336],sarah:[42,128,164],sat:[21,139],satisfi:[107,166,314],satur:102,save:[0,1,9,15,21,22,24,27,29,33,34,36,40,41,42,45,47,49,50,53,55,63,83,85,86,88,94,96,99,101,102,104,106,108,109,111,114,115,122,124,130,132,137,143,144,155,158,168,172,174,175,176,179,194,240,242,244,245,247,249,252,255,257,258,259,263,270,283,297,298,303,310,313,314,316,323,324,332,336,337,338,342],save_a:[172,235,242,252,261],save_as_new:313,save_buff:324,save_data:336,save_for_next:[33,153],save_handl:336,save_kwarg:337,save_model:[144,172,242,252],save_nam:259,save_on_top:[172,235,242,252,261],save_prototyp:249,save_recip:202,savefunc:[49,324,337],savehandl:337,saver:323,saverdict:323,saverlist:323,saverset:323,saveyesnocmdset:324,saw:[10,45,68],say_text:117,saytext:205,scale:[23,56,60,72,105,113,204],scalewai:89,scan:[8,149,229,231],scarf:181,scatter:[218,320],scedul:329,scenario:57,scene:[11,21,54,58,60,72,73,96,108,111,113,115,121,125,203,231,254,259,332],schedul:[27,61,183,194,329],schema:[4,63,85,124,130,342],scheme:[28,33,42,62,85,113,158,168,319],scienc:[48,123],scientif:78,scissor:115,scm:9,scope:[29,54,63,73,123,133,137,203,322],score:[57,59,342],scraper:360,scratch:[39,45,56,57,60,62,122,123,127,129,135,138],scream:121,screen:[7,16,18,33,42,50,51,60,65,73,80,84,96,99,100,103,104,108,113,132,136,137,138,144,170,185,189,200,220,248,270,285,327,342,362],screenheight:[73,270],screenread:[73,270,293,294],screenshot:[54,132,138,362],screenwidth:[73,153,270],script:[6,11,13,14,20,27,36,44,46,54,55,56,58,60,61,62,70,79,83,84,85,88,89,92,102,103,104,105,106,107,108,109,111,114,115,116,118,119,121,124,129,131,132,136,137,138,140,141,143,145,157,158,168,176,177,178,183,186,190,191,197,202,203,204,212,216,217,218,219,220,222,223,225,226,231,233,239,244,245,249,250,265,298,303,320,321,322,329,337,339,340,342,358,362],script_path:[42,158],script_search:58,script_typeclass:[227,340,358],scriptattributeinlin:252,scriptbas:257,scriptclass:256,scriptdb:[118,124,140,252,254,312],scriptdb_db_attribut:252,scriptdb_db_tag:252,scriptdb_set:[147,244,314,317],scriptdbadmin:252,scriptdbmanag:[253,254],scripthandl:[140,141,251],scriptkei:[42,158],scriptmanag:253,scriptnam:321,scripttaginlin:252,scroll:[20,44,51,62,76,94,95,96,122,137,327],scrub:306,sdesc:[55,201,205],sdesc_regex:205,sdescerror:205,sdeschandl:205,sdk:62,sea:[110,121],seamless:205,seamlessli:[91,101],search:[0,2,9,13,21,22,30,33,40,41,42,47,49,54,57,58,59,63,67,69,72,75,86,88,93,95,101,103,108,115,122,123,124,126,130,133,135,138,139,140,141,143,149,151,153,158,165,168,175,178,193,198,202,205,216,217,218,219,220,231,233,236,237,239,245,248,249,256,271,314,315,316,317,318,319,322,324,342,361,362],search_:[27,58],search_account:[57,106,118,140,245,339],search_account_attribut:118,search_account_tag:[118,339],search_at_multimatch_input:245,search_at_result:[205,245],search_attribute_object:118,search_channel:[40,118,140,175,339],search_channel_tag:[118,339],search_field:[172,235,242,252,261,313],search_for_obj:158,search_help:[118,140,236],search_help_entri:339,search_helpentri:236,search_index_entri:[153,155,156,157,158,163,164,165,166,167,168,169,170,173,178,179,180,181,184,185,186,187,188,192,198,199,200,201,202,205,211,212,213,214,216,217,218,219,220,223,229,230,231,232,237,245,324,326,327],search_messag:[118,140,175,339],search_mod:205,search_object:[11,13,27,110,118,120,124,140,143,339],search_object_attribut:118,search_objects_with_prototyp:249,search_prototyp:249,search_script:[58,101,118,140,339],search_script_tag:[118,339],search_tag:[47,111,118,139,140,339],search_tag_account:111,search_tag_script:111,search_target:198,searchabl:193,searchdata:[143,205,245,339],searchstr:67,season:[60,186],sec:[10,29,61,73,183,277,329],secmsg:335,second:[0,10,11,14,16,21,22,25,27,29,31,33,38,40,42,50,61,62,68,79,81,84,85,87,89,90,94,101,102,103,108,109,113,114,115,118,119,120,122,125,126,131,133,143,145,150,158,183,193,194,197,199,205,212,216,217,218,219,220,222,226,229,239,245,250,257,259,265,270,279,284,297,308,319,322,326,329,335,342,343],secondari:[80,305],secondli:88,secreci:130,secret:[9,23,64,70,184,265],secret_kei:9,secret_set:[4,9,23,64,265],sect_insid:48,section:[1,4,9,11,15,18,21,22,23,25,26,29,31,33,35,36,38,39,47,50,57,59,61,62,67,68,74,76,79,85,88,89,92,94,95,99,110,112,118,123,124,126,132,136,137,138,186,204,250,319,320,343],sector:48,sector_typ:48,secur:[7,11,13,22,26,40,42,56,62,79,84,89,95,107,108,113,122,132,133,138,140,141,157,168,174,177,237,245,285,316,335,355,362],secure_attr:79,sed:36,sedcond:258,see:[0,1,2,3,4,5,8,9,10,11,12,13,14,19,20,21,22,23,25,26,27,28,29,30,31,32,33,34,35,37,38,39,40,41,42,43,45,47,48,49,50,51,52,54,55,56,57,58,59,60,61,62,63,64,67,69,70,71,73,74,75,79,80,81,85,86,87,88,89,90,92,94,95,97,99,100,101,102,103,104,105,107,108,109,110,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,129,130,131,132,133,134,135,136,137,138,143,153,155,157,158,164,165,166,167,169,174,176,177,178,179,185,189,191,198,202,203,204,205,209,212,213,214,216,217,218,219,220,222,223,225,229,232,233,239,244,245,258,263,265,267,268,276,277,278,279,281,285,286,288,290,292,293,294,296,297,305,306,310,314,319,322,323,324,325,326,328,334,337,338,342,349,355,360],seek:[121,240,335],seem:[4,22,24,31,38,40,55,60,62,74,93,108,109,118,120,121,122,136,137,314,320],seen:[0,22,29,31,34,39,45,48,50,56,57,68,80,90,94,95,101,104,110,118,119,120,125,126,130,179,249,277,328],sefsefiwwj3:9,segment:[120,310],seldomli:[153,169],select:[2,20,22,27,31,42,50,53,62,68,76,79,84,85,103,104,105,110,118,119,122,130,132,136,137,139,150,151,156,165,214,217,316,324,326],selet:326,self:[0,1,2,5,6,9,10,11,13,20,21,22,25,27,28,29,30,31,33,38,39,40,41,42,43,48,49,50,55,56,57,58,59,61,62,70,71,72,75,76,79,80,81,84,85,86,88,94,95,101,108,114,115,116,117,118,119,120,122,124,126,128,131,133,143,145,147,149,151,152,153,155,158,159,163,166,167,168,169,173,174,176,178,179,180,181,184,186,187,191,196,198,199,201,202,205,214,216,217,218,219,220,222,223,226,229,230,231,232,233,239,245,257,258,263,265,267,268,272,276,277,283,285,286,288,290,292,293,294,304,305,306,314,316,317,319,324,326,327,332,334,336,337,338,342,349],self_pid:342,selfaccount:57,sell:[77,84,178],semi:[92,131,137,204],semicolon:[79,240,322],send:[2,12,22,25,27,29,33,34,40,42,50,51,57,58,60,63,69,70,72,73,75,79,80,82,88,90,92,94,95,101,102,104,106,109,112,113,114,115,117,119,122,125,132,136,137,138,139,143,145,149,152,153,156,163,167,173,174,175,176,178,187,188,198,205,209,220,222,229,239,245,258,259,262,265,267,268,270,274,275,276,277,278,280,283,284,285,287,288,289,291,293,294,296,304,305,306,307,319,322,323,326,328,342],send_:[39,82,283],send_adminportal2serv:275,send_adminserver2port:262,send_authent:276,send_channel:[276,277],send_default:[39,82,276,277,283,285,288,293,294],send_defeated_to:229,send_emot:205,send_functioncal:274,send_game_detail:267,send_heartbeat:276,send_instruct:265,send_mail:198,send_msgportal2serv:275,send_msgserver2port:262,send_p:277,send_privmsg:277,send_prompt:[285,288,293,294],send_random_messag:222,send_reconnect:277,send_request_nicklist:277,send_status2launch:275,send_subscrib:276,send_text:[39,82,285,288,293,294],send_unsubscrib:276,sender:[34,40,42,106,143,145,163,174,175,176,178,205,245,276,307,332,339],sender_account_set:147,sender_extern:176,sender_object:307,sender_object_set:244,sender_script_set:254,sender_str:174,sendernam:[42,163],senderobj:322,sendlin:[285,288,293],sendmessag:[39,187],sens:[1,10,22,31,37,55,57,79,85,88,95,101,120,137,151,223,322,323],sensibl:[89,269],sensit:[11,50,57,79,175,179,183,186,194,209,210,236,315,329,339],sensivit:203,sent:[25,34,50,57,68,73,82,87,90,104,106,112,113,118,136,137,143,145,149,165,169,174,175,176,179,185,187,194,196,198,209,227,232,245,262,265,267,270,274,275,276,277,285,289,293,304,306,314,326,334,339],sentenc:[45,90,197,204,205],sep:[319,342],sep_kei:[22,179],separ:[8,11,13,14,20,23,29,31,33,37,39,42,45,47,56,57,60,61,63,70,71,74,76,79,83,84,85,86,88,90,91,92,94,95,97,100,102,104,105,111,113,114,118,120,122,125,128,130,132,135,136,137,139,150,152,153,158,164,165,166,167,168,174,179,194,197,198,204,205,214,216,217,218,219,220,223,231,233,236,240,244,245,255,259,284,289,294,306,319,320,322,325,334,339,342],separatli:29,seq:86,sequenc:[10,13,14,15,33,63,79,80,86,88,112,125,153,157,183,200,205,240,263,269,319,320,326,328,341,342],seri:[50,60,78,113,130,135,137,225,328],serial:[11,82,137,248,259,283,323,336,338],serializ:294,seriou:[38,109],serious:62,serv:[44,48,54,63,82,100,102,103,110,134,151,218,294,310,320,322,353],server:[0,2,4,9,10,11,12,13,15,19,21,25,26,27,28,29,31,33,34,35,36,37,39,40,44,46,50,53,54,55,56,57,58,59,61,62,63,64,65,66,68,69,70,71,72,73,74,77,78,79,80,82,83,85,87,88,90,92,93,94,95,96,99,100,101,102,105,106,108,109,110,112,113,114,115,117,120,121,123,124,126,127,130,132,133,134,135,136,137,138,140,141,143,145,152,156,158,163,168,170,174,177,179,182,185,186,194,200,201,205,206,207,208,211,212,226,229,230,233,245,254,255,256,257,259,311,316,320,322,323,326,329,332,335,342,344,361,362],server_connect:283,server_disconnect:283,server_disconnect_al:283,server_epoch:[27,329],server_l:275,server_logged_in:283,server_nam:103,server_pid:[275,342],server_receive_adminportal2serv:262,server_receive_msgportal2serv:262,server_receive_statu:262,server_reload:[255,259],server_run:265,server_runn:303,server_servic:342,server_services_plugin:[39,103],server_services_plugin_modul:39,server_session_class:104,server_session_sync:283,server_st:265,server_twistd_cmd:275,server_twisted_cmd:275,serverconf:[156,259],serverconfig:[258,259,271,272],serverconfigadmin:261,serverconfigmanag:[271,272],serverfactori:[275,285,288],serverload:[42,168],serverlogobserv:335,servermsg:335,servernam:[4,8,9,53,73,89,103],serverprocess:[42,168],serversess:[39,104,113,140,141,209,240,260,283,306,314],serversessionhandl:[39,104,306],serverset:[42,79,163,239],servic:[12,23,39,44,70,89,93,99,102,103,109,130,132,140,168,260,262,265,266,274,275,282,303,310,342],sessdata:[305,306],sessid:[2,33,104,122,244,245,262,274,275,283,306],session:[2,12,15,24,31,33,39,44,46,50,56,73,80,81,83,87,88,90,95,99,106,113,122,126,137,138,140,141,143,145,147,149,150,151,153,155,156,159,161,165,166,170,185,187,188,196,208,209,210,244,245,247,248,249,255,260,262,270,274,275,276,277,283,284,285,288,293,294,303,304,306,308,324,326,327,334,342,343,362],session_data:306,session_from_account:306,session_from_sessid:306,session_handl:[104,140],session_portal_partial_sync:306,session_portal_sync:306,sessioncmdset:[31,42,161],sessionhandl:[39,82,140,141,143,245,260,270,276,277,283,284,304,305],sessionid:283,sessionobject:334,sessions_from_account:306,sessions_from_charact:306,sessions_from_csessid:[283,306],sessions_from_puppet:306,sesslen:245,set:[0,2,3,6,7,8,10,11,12,13,14,15,16,17,19,20,21,22,23,24,25,26,27,29,30,32,33,34,35,36,37,38,39,40,41,43,44,45,46,49,51,54,55,56,57,58,59,60,62,63,65,66,67,68,70,73,74,75,81,82,84,85,86,88,90,92,94,95,96,99,101,104,106,107,108,109,110,111,112,113,115,116,118,119,120,123,124,125,127,128,129,132,133,134,135,136,137,138,140,142,143,145,147,149,150,151,152,153,155,156,158,159,160,161,162,163,165,166,167,169,171,173,179,180,181,182,183,184,185,186,187,188,192,194,196,197,200,201,202,204,205,208,211,212,214,216,217,218,219,220,223,225,226,227,229,230,231,232,233,235,239,240,244,245,248,249,250,256,257,259,262,264,265,269,270,271,272,275,276,278,279,281,282,285,287,288,290,291,296,297,299,301,303,304,305,306,308,310,311,313,314,315,316,317,319,320,321,322,323,324,325,326,327,328,329,332,333,334,335,336,337,338,339,340,341,342,343,348,355,358,362],set_active_coordin:233,set_al:229,set_alias:153,set_attr:158,set_cach:314,set_class_from_typeclass:316,set_dead:229,set_descript:50,set_detail:[186,231],set_game_name_and_slogan:348,set_gamedir:265,set_kei:153,set_nam:50,set_pane_typ:136,set_password:143,set_task:194,set_trac:[41,140],set_webclient_set:348,setcolor:80,setdesc:[56,164,211],setgend:188,sethelp:[20,67,165],sethom:158,setlock:211,setnam:39,setobjalia:[42,158],setperm:[42,156],setspe:212,sett:97,settabl:[73,85,288],setter:38,settestattr:49,settingnam:79,settings_chang:106,settings_default:[4,5,34,46,103,126,140,141,342],settings_ful:103,settings_mixin:[140,260,295],settl:[110,115],setup:[5,15,18,26,39,46,60,62,70,84,92,95,99,115,119,126,128,130,137,138,143,155,163,169,183,195,223,227,231,245,257,269,282,291,296,300,301,303,310,314,316,332,333,340,358,362],setup_str:300,setuptool:[62,74],sever:[0,11,14,19,22,29,31,33,36,40,41,42,47,49,51,54,55,56,58,61,68,78,79,101,103,108,112,115,118,124,136,157,158,166,167,168,186,193,194,229,231,245,291,292,317,322],sex:188,shall:[125,133],shaman:[56,108],shape:[20,22,38,57,60,110,233,328],sharabl:108,share:[9,25,31,36,37,41,45,56,58,62,63,64,79,85,89,101,102,104,111,115,118,124,132,134,144,193,194,250,259,296,314,315,317,328,342,349],sharedloginmiddlewar:349,sharedmemorymanag:[315,331],sharedmemorymodel:[176,237,314,316,332,333],sharedmemorymodelbas:[147,176,237,244,254,314,316,332,333],sharedmemorystest:333,shaw:[76,78],she:[0,22,33,55,90,125,179,188,204],sheer:[42,158],sheet:[23,50,132,133,136,325],sheet_lock:57,shell:[7,23,25,26,36,52,56,57,58,59,62,74,85,86,89,99,102,107,109,124,127,285],shield:[29,76,85],shift:[14,15,27,107,194,230,236,342],shiftroot:230,shine:[21,231],shini:342,ship:[54,63,74,110],shire:61,shirt:181,shoe:181,shoot:[21,219,220,325],shop:[50,56,107,123,138,362],shop_exit:84,shopcmdset:84,shopnam:84,shopper:84,short_descript:53,shortcom:84,shortcut:[0,3,22,23,27,29,31,33,42,46,52,58,68,90,95,99,106,115,118,124,128,132,133,140,145,152,153,158,179,191,233,240,245,336,342],shorten:[41,45,124,250],shorter:[39,60,103,107,116,117,124,131,174,204,315,322,335],shortest:[38,205],shorthand:[42,88,125,158],shortli:[0,22,76],shot:219,should:[0,1,2,3,4,5,6,8,9,10,11,12,13,14,15,16,19,20,22,23,24,25,26,27,29,31,33,34,37,38,39,40,41,42,45,46,47,50,52,54,56,57,58,59,60,61,62,63,64,65,67,68,71,72,73,74,75,76,79,80,81,82,84,85,87,88,89,90,92,93,94,95,96,97,99,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,118,120,121,122,123,124,125,126,127,128,129,130,132,133,134,135,136,137,138,139,143,145,147,149,151,152,153,155,157,158,159,162,165,166,168,169,173,174,176,179,181,183,186,191,194,196,197,198,199,201,202,203,204,205,208,216,217,218,219,220,223,226,229,231,232,239,240,244,245,247,248,249,250,254,256,257,258,259,263,264,265,269,272,276,282,285,288,289,291,293,294,297,303,304,305,306,309,311,313,314,316,317,319,320,322,323,324,326,327,328,329,334,335,336,337,338,340,342,343,355,358,360],should_join:174,should_leav:174,should_list_cmd:165,shoulddrop:[220,245],shoulder:[57,181],shouldget:[220,245],shouldgiv:[220,245],shouldmov:[196,216,217,218,219,220,245],shouldn:[0,13,21,22,29,40,47,57,92,125,165,179,194,197,219,296],shouldrot:335,shout:29,shove:21,show:[0,12,13,14,20,22,24,26,27,30,33,35,37,38,39,41,42,45,47,48,50,51,52,53,54,56,57,59,60,61,62,63,67,68,69,70,72,80,81,84,85,89,90,94,95,96,97,100,101,102,103,104,105,109,110,113,115,116,117,118,119,121,123,125,126,127,128,130,132,133,135,136,137,138,143,155,156,158,163,164,166,168,170,178,180,181,184,185,186,187,189,201,214,219,220,225,231,232,233,245,247,249,250,263,265,274,324,326,335,336,337,342,355],show_foot:327,show_map:48,show_non_edit:249,show_non_us:249,show_valu:189,show_version_info:265,show_warn:265,showcas:[31,110,199],shown:[0,4,9,22,25,29,35,40,42,48,50,53,56,61,67,108,113,120,132,137,156,163,165,167,179,181,203,205,230,245,265,326,327],showtim:61,shrink:328,shrug:45,shrunk:100,shuffl:27,shun:[26,89,107],shut:[0,4,29,42,92,99,101,103,136,143,168,245,257,259,265,267,274,275,282,283,303,306],shutdown:[12,19,31,57,92,101,104,109,143,145,168,259,265,274,275,282,303,304,316,322,326],shy:[26,60,128],sibl:[10,56,95,101],sid:[42,156],side:[0,1,11,24,36,42,47,48,57,72,73,82,90,104,111,118,125,126,132,136,137,143,145,147,164,166,167,176,178,184,211,237,244,254,262,274,275,283,286,289,290,293,304,305,306,314,316,317,319,328,333],sidestep:19,sidewai:328,sigint:265,sign:[0,14,20,45,82,89,90,105,114,122,131,186,245,259,314,319,343],signal:[44,92,109,138,140,141,216,217,218,219,220,260,265,288,294,296,332,362],signal_acccount_post_first_login:106,signal_account_:106,signal_account_post_connect:106,signal_account_post_cr:106,signal_account_post_last_logout:106,signal_account_post_login:106,signal_account_post_login_fail:106,signal_account_post_logout:106,signal_account_post_renam:106,signal_channel_post_cr:106,signal_helpentry_post_cr:106,signal_object_:106,signal_object_post_cr:106,signal_object_post_puppet:106,signal_object_post_unpuppet:106,signal_script_post_cr:106,signal_typed_object_post_renam:106,signatur:[33,72,153,176,191,258,263,265,267,268,276,285,286,288,290,293,294,314,319,326,334,337,338,349],signed_integ:343,signedinteg:336,signedon:277,signifi:[14,239,314],signific:96,significantli:49,signup:4,silenc:267,silenced_system_check:126,silent:[10,42,61,117,156,269,277],silli:[59,88,95,108],silvren:[54,89],similar:[0,11,13,20,21,22,25,33,40,47,50,54,57,63,67,72,76,85,88,89,95,101,105,120,124,128,135,136,139,143,153,155,169,179,187,196,204,216,217,218,219,220,233,237,245,306,317,322,326,342,360],similarli:[57,61,89,111,217,232,313],simpl:[0,2,4,5,6,9,10,13,14,15,17,25,26,28,30,31,33,35,38,39,40,42,45,48,49,54,55,56,57,58,59,60,66,68,69,72,73,75,76,80,84,85,87,88,89,90,94,95,97,99,102,104,107,108,110,111,115,116,117,118,119,121,122,123,125,131,132,134,138,158,173,178,179,180,185,186,187,188,193,196,198,202,203,205,211,212,213,214,216,217,218,219,220,222,223,229,230,231,233,234,244,245,248,250,257,275,284,286,320,321,352,353,355,362],simpledoor:[140,141,177],simplemu:24,simpler:[10,15,42,55,157,158,323,360],simpleresponsereceiv:267,simplest:[6,29,57,72,89,115,152,320,343],simpli:[5,8,11,12,13,17,20,21,22,23,25,29,31,37,38,39,40,46,48,50,52,54,57,58,60,62,70,71,72,79,80,82,84,95,101,102,103,108,111,113,117,120,122,124,126,127,130,131,137,139,143,151,152,153,169,170,173,174,179,185,186,195,196,199,205,212,214,216,217,218,219,220,223,230,237,245,283,314,316,320,321,325,327,342],simplic:[22,38,42,54,125,170,185,230],simplif:[44,115],simplifi:[10,68,93,99,110,115,117,191],simplist:[115,122,131,136,204,213],simul:[33,72,92,212],simultan:[57,87,115,342],sinc:[0,1,3,4,5,6,9,10,11,13,14,19,21,22,23,25,26,27,28,29,31,33,34,35,38,39,40,41,42,43,46,47,48,49,50,53,54,55,56,57,58,59,60,61,63,68,73,75,79,82,83,84,85,87,88,89,90,95,96,99,101,103,109,110,113,114,115,117,118,120,121,122,124,125,126,130,132,133,134,136,137,143,145,147,151,152,153,158,166,167,168,174,175,178,179,180,183,186,198,205,214,216,217,218,219,220,226,230,231,239,245,250,255,259,265,267,270,282,287,289,297,303,304,306,313,314,315,316,320,321,322,324,326,329,332,335,338,339,340,342,355],singl:[0,5,10,14,16,22,23,24,31,33,37,42,43,47,50,54,56,57,58,60,63,66,72,76,82,86,87,89,94,95,104,107,110,111,113,118,121,124,126,127,128,138,143,149,156,158,164,175,176,179,203,208,214,216,217,218,219,220,231,232,233,245,249,250,259,297,304,306,314,315,317,319,320,325,326,327,328,334,339,342,355],single_type_count:181,singleton:[83,104,114,173,255,258,321],singular:[57,60,245],sink:26,sint:51,sir:45,sit:[11,14,29,33,46,54,62,79,82,89,94,95,118,120,122,124,166,197,198,205,223,230,231,240,256,259,278,322,337,340],sitabl:124,sitat:231,site:[8,16,17,23,37,68,70,78,79,89,96,97,99,100,102,110,132,133,144,310,360],site_nam:58,situ:[11,316,323],situat:[0,6,11,22,33,37,41,42,45,61,75,82,85,101,104,118,124,130,152,153,158,193,332],six:[72,90,184,214],sixti:61,size:[16,24,41,48,57,96,100,107,110,136,137,140,233,267,281,319,325,327,328,332,335,342],size_limit:342,skeleton:[122,136],sketch:[115,137],skill:[28,29,30,54,59,60,69,72,78,109,115,120,126,132,133,204,205,325],skill_combat:72,skillnam:72,skin:108,skip:[31,33,40,42,48,60,61,74,87,99,105,108,114,130,143,157,158,199,245,314,323],skipkei:294,skippabl:128,skull:108,sky:[101,131],slack:78,slam:187,slash:[20,40,54,72,115,121,230],slate:110,sleep:[10,29,33,72],slew:[60,72,74,320],slice:[118,155,319,327],slice_bright_bg:155,slice_bright_fg:155,slice_dark_bg:155,slice_dark_fg:155,slight:[8,90,183,194],slightli:[41,61,62,78,115,122,144,176,186,217,232,360],slightly_smiling_fac:137,slip:341,slogan:9,slot:[57,133,186,187,217,219,250,342],slow:[27,115,175,212,229,233,278,284,319,339,342],slow_exit:[140,141,177],slower:[61,76,89,92],slowexit:212,slowli:78,slug:[174,237,316,360],slugifi:360,small:[4,14,15,16,25,30,33,37,54,56,57,60,62,68,69,78,80,84,89,90,92,95,96,97,107,110,121,122,123,126,127,138,184,219,223,233,288,324,325,328,342],smaller:[13,14,16,100,136,328],smallest:[57,61,79,89,183,325,342],smallshield:85,smart:[40,76,90,233],smarter:108,smash:[60,223,226],smell:60,smelli:108,smile:[33,42,164],smith:325,smithi:29,smoothi:202,smoothli:133,smush:47,snake:135,snap:81,snapshot:130,snazzi:77,sneak:240,snippet:[10,13,21,31,42,54,63,79,108,113,138,168,274,289,341,342],snoop:102,snuff:26,social:[54,70],socializechat:297,soft:[4,63,138,204,362],softcod:[128,138],softli:77,softwar:[36,62,89,130],solar:61,soldier:84,sole:[56,68,145],solid:[48,54,113],solo:[20,62,123],solut:[0,9,14,25,27,29,38,55,68,72,84,89,90,102,110,114,117,120,121,124,126,137,167,240],solv:[21,27,43,48,60,62,76,96,110,202,230],some:[0,3,4,5,6,8,9,11,12,13,14,15,16,20,21,22,23,24,25,26,27,28,29,31,33,36,37,39,41,42,44,45,47,48,49,50,54,56,57,59,60,61,62,63,68,69,71,72,73,74,76,77,78,79,81,82,84,85,86,88,89,90,93,94,95,96,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,120,121,122,123,124,125,126,127,130,132,133,135,136,137,138,143,152,153,158,160,164,167,168,174,175,178,179,180,185,194,196,197,203,204,211,214,217,218,219,220,225,226,230,231,232,233,240,245,249,250,254,267,269,274,277,303,314,316,319,320,325,326,329,332,335,336,342,355,360],some_long_text_output:327,somebodi:[0,137],somehow:[33,39,72,79,86,89,112,139,181,324],someon:[0,1,29,33,42,45,47,48,57,59,79,84,89,95,102,106,114,116,117,118,137,143,164,181,225,229,230,245],somepassword:23,someplac:229,someth:[0,3,4,6,8,9,10,11,12,14,20,22,23,25,27,29,30,33,38,39,40,42,43,45,48,50,51,55,56,57,58,59,60,61,63,64,67,68,69,70,71,72,74,79,81,82,84,85,88,89,90,92,94,95,101,103,106,107,108,110,113,114,118,122,124,126,127,128,132,133,134,136,137,138,143,151,153,158,164,165,166,178,179,181,188,196,197,199,203,205,212,216,217,218,219,220,230,231,232,233,240,245,304,316,320,326,327,336,342,360],sometim:[6,22,27,33,39,41,49,50,59,61,63,79,85,90,92,94,95,101,108,109,118,135,137,165],somewhat:[4,22,40,56,126,137,179],somewher:[0,12,37,42,72,79,89,108,120,124,130,158,174,237,316,342],soon:[41,60,68,71,95,99,104,126,225,294,342],sophist:[10,27,54,107,115],sorl:4,sorri:[79,240],sort:[3,6,11,31,38,48,58,60,63,68,72,82,83,89,104,109,111,115,116,134,139,178,189,216,217,218,219,220,231,245,250,254,314,315,316,342,355,360],sort_kei:294,sought:[143,150,174,237,245,314,316],soul:110,sound:[22,29,37,57,60,79,81,82,101,103,110,114,130,137,204,289],sourc:[0,4,9,10,12,15,16,17,20,21,22,23,27,31,36,37,45,46,52,54,56,59,62,63,67,71,74,75,78,87,88,93,95,96,107,121,126,127,129,130,133,138,140,143,144,145,146,147,149,150,151,152,153,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,172,173,174,175,176,178,179,180,181,183,184,185,186,187,188,189,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,208,209,210,211,212,213,214,216,217,218,219,220,222,223,225,226,227,229,230,231,232,233,235,236,237,239,240,242,243,244,245,247,248,249,250,252,253,254,255,256,257,258,259,261,262,263,264,265,267,268,269,270,271,272,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,296,297,298,300,301,302,303,304,305,306,308,309,310,313,314,315,316,317,319,320,321,322,323,324,325,326,327,328,329,331,332,333,334,335,336,337,338,339,340,341,342,343,347,348,349,350,353,355,357,358,360,361],source_loc:[25,76,95,116,196,230,231,233,245],source_object:[170,173,185],sourceforg:[278,279,289,292],sourceurl:277,south:[0,22,42,43,48,110,120,158,199,297],south_north:110,southeast:158,southern:110,southwest:[20,42,158],space:[9,20,21,22,25,33,35,40,42,45,47,48,56,67,79,86,90,94,101,108,110,113,115,117,125,128,136,137,150,153,158,164,166,167,169,170,173,199,201,204,205,220,230,245,248,309,316,319,320,325,328,334,341,342],spaceship:120,spacestart:341,spaghetti:[13,326],spam:[12,28,102,115,137,308],spammi:[12,115],span:[16,17,107],spanish:75,spare:[216,217,218,219,220],spars:308,spatial:110,spawen:202,spawn:[46,54,92,119,121,136,137,140,156,158,202,217,218,247,248,249,250],spawner:[18,44,88,119,138,140,141,158,218,219,246,362],spd:133,speak:[0,15,19,40,42,45,59,93,95,112,116,117,125,132,164,196,205,239,245],speaker:[45,204,205],spear:108,special:[2,10,11,13,14,15,19,20,25,26,27,30,31,33,35,37,40,41,50,57,59,60,63,68,75,76,79,80,82,84,85,87,88,94,101,102,103,106,110,111,112,113,115,118,121,122,124,126,130,133,136,145,147,149,152,164,167,186,188,205,214,218,219,230,231,233,240,242,245,269,270,293,314,316,320,326,341],specif:[0,2,4,9,11,12,22,23,24,25,26,27,31,33,36,37,38,39,40,41,42,45,46,49,50,54,55,58,60,61,63,66,68,76,77,78,79,81,86,87,88,89,90,94,95,99,104,106,109,110,111,114,115,118,120,121,122,123,124,125,126,130,131,132,133,134,136,137,143,144,149,156,158,168,174,176,177,178,179,191,192,193,194,196,198,203,205,236,239,245,255,265,270,277,293,294,304,314,316,319,320,324,326,327,328,342,360],specifi:[3,11,12,16,19,21,22,27,29,31,38,42,45,48,50,53,57,61,62,67,82,83,85,87,89,90,97,99,101,102,104,108,110,111,113,114,118,122,126,133,135,149,150,158,165,174,179,181,182,184,186,187,191,193,194,198,202,203,205,214,217,218,219,233,239,240,245,248,249,250,255,276,302,314,317,319,320,322,325,326,327,329,336,337,338,342,355,360],spectacular:41,speech:[196,245],speechlock:239,speed:[11,46,61,81,85,86,92,115,133,212,250,283,317,339],spell:[15,19,28,56,59,108,111,214,219,250],spell_attack:219,spell_conjur:219,spell_heal:219,spell_nam:219,spellnam:219,spend:[38,88,90,118,216,217,218,219,220],spend_act:[216,217,218,219,220],spend_item_us:218,spent:219,spin:[61,89],spit:[3,59,115],splashscreen:185,split:[9,25,31,33,40,57,90,103,104,110,117,120,122,130,135,136,137,150,166,167,183,230,233,247,291,306,319,320,329],split_2:137,split_nested_attr:158,splithandl:137,spoken:[0,45,71,196,204,205,245],spoof:313,spool:62,sport:86,spot:[56,63,143],spread:[69,72,108],spring:[81,186],sprint:212,sprofil:265,spunki:76,spyrit:24,sql:[7,36,55,56,63,85,124,138,300,362],sqlite3:[54,63,85,122,126,127,130,342],sqlite3_prep:303,sqlite:[23,85,127,303],sqllite:36,sqrt:38,squar:[38,128],squeez:85,src:[10,17,20,58,74,79,88,99,101,132,136,138,209],srcobj:[153,166],srun:269,srv:36,ssessionhandl:82,ssh:[9,24,25,39,54,63,82,89,93,104,109,140,260,273,304,305],ssh_interfac:89,ssh_port:89,sshd:102,sshfactori:285,sshprotocol:285,sshserverfactori:285,sshuserauthserv:285,ssl:[7,8,42,54,63,66,82,87,93,140,145,163,260,273,277,290,305],ssl_context:[286,290],ssl_interfac:89,ssl_port:89,sslcertificatefil:8,sslcertificatekeyfil:8,sslciphersuit:8,sslengin:8,ssllab:8,sslprotocol:[8,286,290],ssltest:8,sslv3:66,sstem:68,sta:325,stab:[29,121,230],stabil:[60,169,204],stabl:[37,39,55,59,99],stabli:[96,259],stack:[13,31,60,120,136,144,152,226,249,306,326,334],stackedinlin:144,stackexchang:126,stackful:334,stacktrac:[249,334],staf:107,staff:[9,19,25,56,60,67,72,79,107,108,110,122,132,151,250,320],staff_onli:237,staffer:9,staffernam:9,stage:[2,36,55,60,76,110,122,130,132,144,172,242],stagger:277,stai:[1,31,48,50,62,89,90,120,124,125,137,233],stale:[99,124],stalker:360,stamina:[30,189,219],stamp:[27,42,95,104,124,136,143,147,156,168,244,254,297,302,316],stanc:[115,205],stand:[13,17,20,21,22,25,29,42,48,55,60,62,71,72,79,85,89,94,95,110,115,120,121,122,126,130,132,137,164,178,196,205,229,245,254,259,296,317,320,322,328],standalon:102,standard:[0,1,6,8,9,15,21,27,30,40,42,49,56,57,58,62,63,78,82,87,90,94,102,112,113,115,119,125,130,135,138,140,143,155,184,185,205,232,239,245,285,287,292,309,314,319,328,329,334,343,362],stanza:275,star:[42,158],stare:130,start:[0,1,2,3,4,5,7,12,13,14,15,16,18,20,21,23,25,26,27,29,31,33,34,38,39,40,41,42,43,44,46,47,48,49,50,52,53,54,56,58,59,60,61,63,64,65,68,69,71,72,73,74,75,76,78,79,82,83,85,86,89,90,92,94,95,96,97,100,101,102,103,104,105,106,107,108,110,113,115,118,119,120,122,123,124,126,127,129,130,131,132,135,136,137,138,143,145,150,151,157,158,163,164,166,167,168,169,173,178,179,184,186,187,188,189,194,196,199,200,204,205,214,216,217,218,219,220,225,226,229,231,233,245,247,248,254,256,257,258,259,262,265,267,269,270,275,276,277,278,282,283,284,289,290,296,302,303,306,310,315,319,320,321,322,324,326,327,328,329,334,335,342,361,362],start_all_dummy_cli:296,start_attack:229,start_bot_sess:306,start_delai:[101,115,119,120,226,254,257,259,322],start_driv:120,start_evennia:265,start_hunt:229,start_idl:229,start_lines1:265,start_lines2:265,start_loc_on_grid:48,start_olc:247,start_only_serv:265,start_ov:50,start_patrol:229,start_plugin_servic:39,start_portal_interact:265,start_serv:275,start_server_interact:265,start_sunrise_ev:61,start_text:214,start_turn:[216,217,218,219,220],startapp:[68,85,132,133],startclr:[113,334],startedconnect:[262,276,277],starter:[9,135],starthour:25,startnod:[50,84,187,247,326],startnode_input:[50,187,247,326],startproduc:267,startservic:[268,310],startswith:[40,42,83,158,319],starttupl:285,startup:[11,35,39,59,61,89,101,103,135,245,254,294,303,335],stat:[17,42,59,60,70,84,115,122,132,133,135,138,168,178,216,217,218,219,220,362],state:[11,13,14,31,33,41,42,49,50,54,55,63,79,94,99,101,104,109,113,115,120,121,125,130,136,137,143,149,151,155,162,170,173,200,211,216,217,218,219,220,223,226,229,231,250,254,256,257,259,265,285,314,324,326],state_unlog:162,statefultelnetprotocol:[288,296],statement:[10,13,14,27,31,41,48,50,54,57,58,85,93,94,95,117,118,123,245,320,341],static_overrid:[134,135,136],static_root:135,statict:[42,168],station:120,stationari:229,statist:[3,12,42,103,104,119,123,134,168,189,298,315,332],statu:[20,29,50,57,60,87,89,103,104,114,130,174,178,218,219,220,229,259,263,265,274,275,276,279,293,362],status:60,status_cod:267,stderr:232,stdin_open:99,stdout:[58,99,232,265,335],steadi:63,steal:[42,84,165],steer:120,step1:29,step2:29,step3:29,step:[0,4,7,8,13,14,21,23,29,31,33,36,38,40,42,44,45,49,57,62,68,72,76,81,84,85,90,96,99,101,105,107,120,121,122,125,126,127,133,137,138,157,179,231,257,259,269,281,292,296,297,306,316,320,323,324,326,327,361,362],stick:[15,33,42,50,62,112,156],still:[0,1,4,6,9,11,13,14,15,19,20,22,25,26,29,31,33,37,38,39,40,42,48,54,56,57,59,61,62,63,76,77,78,82,90,93,94,95,101,102,104,105,106,107,109,113,120,122,124,125,127,130,133,137,151,158,165,185,196,214,216,217,218,219,220,231,233,245,249,256,297,326,328,329,338,342],sting:110,stock:[34,54,84,100,209,355],stolen:[102,319],stone:[20,33,59],stoni:59,stop:[7,9,10,12,14,20,25,27,29,34,40,41,42,48,50,56,57,61,62,73,76,79,81,88,89,92,94,95,99,101,103,104,105,107,114,115,119,120,122,127,136,138,155,158,163,168,178,183,193,195,196,205,211,212,217,220,225,226,245,256,257,259,264,265,267,270,282,283,303,304,310,319,320,322,342,362],stop_driv:120,stop_evennia:265,stop_serv:275,stop_server_onli:265,stopproduc:267,stopservic:[268,310],storag:[11,13,23,28,29,33,42,46,55,63,72,84,85,95,101,124,132,137,147,168,173,176,197,204,233,240,244,245,249,250,254,257,259,272,308,312,314,316,321,336,337],storage_modul:321,storagecontain:101,storagescript:101,store:[0,2,9,13,15,21,23,27,28,29,31,33,34,37,38,39,40,42,43,45,46,48,49,52,54,55,56,57,59,60,63,68,72,74,79,81,84,85,86,88,90,94,96,99,101,103,104,111,112,114,115,118,120,122,124,126,127,130,132,133,134,135,136,137,138,143,145,147,152,155,156,158,159,161,166,167,173,176,178,186,187,194,201,203,204,205,209,212,213,218,222,230,231,233,239,240,244,248,249,250,251,255,256,257,258,259,265,269,270,271,272,275,277,278,279,281,289,292,297,303,304,305,306,308,310,314,315,316,317,319,321,322,323,324,325,326,327,332,334,336,337,338,342,355,360],store_kei:259,store_result:47,store_tru:232,stored_obj:25,storekei:[84,259],storenam:84,storeroom:84,storeroom_exit:84,storeroom_kei:84,storeroom_key_nam:84,stori:[3,9,96,132],storm:[28,118],storypag:3,storytel:122,stove:245,str:[0,10,11,22,25,27,38,39,49,50,57,58,59,72,73,83,90,95,112,113,118,124,126,132,133,140,143,145,149,150,151,152,153,158,165,169,173,174,175,176,178,179,181,183,186,187,188,189,191,192,193,194,196,197,198,199,203,204,205,209,211,214,216,217,218,219,220,231,232,233,236,237,240,244,245,248,249,250,255,256,257,259,262,263,265,270,271,272,274,275,276,277,278,280,283,284,285,288,289,290,293,294,296,302,303,304,305,306,308,309,310,313,314,315,316,317,319,320,321,322,324,325,326,327,328,334,335,336,337,338,339,340,341,342,343,347,360],straight:[48,67,125],straightforward:[25,40,84,90,120,122],strang:[6,8,14,29,40,55,130,152],strangl:89,strategi:[41,220],strattr:[1,11,314],strawberri:232,stream:[105,274,278,304],streamlin:[36,178],strength:[11,56,57,59,60,72,79,115,133],stress:[92,296],stretch:110,stribg:342,strict:[10,249,319],stricter:249,strictli:[19,50,58,76,132,185,219,328],strike:[42,50,81,115,164,213,219,220],string1:342,string2:342,string:[5,9,11,12,13,15,19,20,22,23,25,27,29,31,33,34,35,40,41,42,48,49,50,53,54,56,57,58,59,61,67,70,75,81,82,83,85,86,87,88,89,92,94,95,96,103,108,110,111,112,113,114,115,118,123,124,126,128,132,133,136,137,138,143,145,147,149,150,153,156,158,164,165,166,167,168,169,173,174,175,176,178,179,181,185,187,196,197,198,199,202,203,204,205,209,210,214,216,217,218,219,220,229,233,236,237,238,239,240,244,245,248,249,250,254,257,259,265,267,270,274,277,285,288,289,291,297,302,304,306,309,313,314,315,316,317,319,320,322,323,324,325,326,327,328,334,335,336,338,339,340,341,342,343,360,362],string_from_modul:342,string_partial_match:342,string_similar:342,string_suggest:342,stringproduc:267,strip:[21,22,33,40,42,50,57,73,80,84,107,108,113,117,122,150,158,166,167,205,250,270,285,288,289,319,320,324,326,334,342],strip_ansi:[80,319,341],strip_control_sequ:342,strip_mxp:319,strip_raw_ansi:319,strip_raw_cod:319,stroll:212,strong:[79,113,122,341],strongest:79,strongli:[63,72,94,123,204],strr:203,struct:55,structur:[9,11,33,37,40,42,44,46,47,48,54,55,58,62,63,67,68,79,82,87,94,95,108,118,132,133,135,137,158,205,245,248,249,250,289,294,317,323,326,352,359,360],strvalu:[11,314,315],stuck:[50,62],studi:58,stuff:[3,9,11,21,29,31,37,46,48,50,56,60,66,72,79,84,95,101,104,106,108,118,137,152,158,188,232,259,303,348],stumbl:96,stupidli:34,sturdi:325,stutter:107,style:[3,16,20,21,27,33,37,39,40,44,50,54,56,57,60,78,86,94,105,110,113,115,121,123,128,137,147,153,155,166,181,182,187,198,200,216,232,245,249,319,324,328,342],styled_foot:153,styled_head:[33,153],styled_separ:153,styled_t:[33,153],sub:[9,11,36,37,56,64,68,87,89,107,108,115,118,136,137,142,148,171,172,177,179,205,232,234,236,238,241,248,250,251,260,312,318,319,341,344],sub_ansi:319,sub_app:132,sub_brightbg:319,sub_dblspac:341,sub_mxp_link:341,sub_text:341,sub_xterm256:319,subclass:[27,63,104,108,117,118,124,158,179,233,244,254,275,288,294,313,316,333,338,342],subdir:126,subdirectori:[37,126],subdomain:[8,89,102],subfold:[46,85,94,95,133,134],subject:[36,38,80,85,89,123,188,198],submarin:120,submenu:[105,179,247],submenu_class:179,submenu_obj:179,submiss:[187,355],submit:[17,37,102,132,187,355,360],submitcmd:187,submodul:[141,206,289],subnegoti:289,subnet:[12,42,156],subpackag:[87,126,141],subprocess:[25,342],subreddit:78,subscrib:[12,33,34,40,42,57,63,79,114,127,131,145,163,173,174,175,218,259,276,307],subscript:[33,42,57,78,114,131,163,172,175,176,259],subsequ:[10,11,33,42,94,115,163,320,342],subsequent_ind:328,subset:[55,111,126],subsid:124,substitut:[70,86,105,245,319,341],substr:319,subsystem:[9,62,85,240],subtitl:17,subtract:[84,248],subturn:115,subword:342,succ:239,succe:[60,115,184],succeed:[184,232],success:[72,115,122,133,143,174,178,184,216,217,218,219,220,223,230,231,240,249,265,269,316,324,336,342,360],success_teleport_msg:231,success_teleport_to:231,success_url:360,successfuli:202,successfulli:[10,28,33,36,59,76,109,110,129,143,202,230,233,245,257,265,277,309,316,360],suddenli:[26,96,316],sudo:[62,99,102],suffic:[17,56,60],suffici:[85,89,93,118],suffix:[27,96,113,319,334,335,342],suggest:[1,23,25,37,47,50,51,54,60,66,67,69,89,94,96,124,137,139,150,165,178,196,205,231,245,342,361],suggestion_cutoff:165,suggestion_maxnum:165,suit:[29,34,54,63,116,129,138,169,342,360],suitabl:[21,25,33,37,54,62,63,79,82,86,87,89,111,130,151,240,299,306,322],sum:[37,81,90,138,152],summar:[0,78,138],summari:[0,7,45,78,95,109,122,179],summer:186,sun:61,sunris:61,sunt:51,super_long_text:327,superclass:144,superfici:204,superflu:341,supersus:240,superus:[2,4,5,6,9,13,14,19,20,21,23,25,40,42,57,59,62,80,94,95,110,121,133,143,147,157,168,174,181,199,211,229,239,240,245,250,265,316,320,322],supplement:50,suppli:[10,11,27,34,37,42,50,57,58,62,67,71,73,83,87,92,101,104,108,111,113,114,115,122,126,147,152,153,156,158,163,168,169,175,179,183,185,186,189,244,245,249,254,259,276,306,316,324,329,339,342],supporst:292,support:[2,4,7,8,9,11,23,26,33,37,39,41,42,43,46,48,49,50,55,56,57,60,62,63,64,65,69,73,74,75,80,82,85,86,89,90,93,97,99,102,108,109,112,113,122,125,138,155,164,182,183,184,186,197,232,239,245,248,249,250,259,270,278,279,280,281,285,287,288,289,290,292,294,305,314,319,323,326,327,328,334,339,342,347,362],supports_set:[73,270],suppos:[0,33,50,60,75,82,108,118,137,143,179],supposedli:[204,289],suppress:[24,287],suppress_ga:[140,260,273],suppressga:287,supress:287,sur:78,sure:[0,2,4,5,8,9,11,12,13,14,15,19,20,21,23,25,28,29,30,31,33,36,37,40,41,42,43,48,50,56,57,59,60,61,62,70,71,72,74,77,79,80,85,86,88,89,90,92,94,95,96,99,101,104,105,108,109,110,111,112,114,115,117,122,124,125,126,127,130,132,133,135,136,137,139,143,145,151,152,153,155,158,163,166,173,175,179,181,195,199,203,204,205,210,214,219,222,226,229,230,231,236,239,240,245,249,250,256,257,265,269,275,277,282,303,309,310,311,313,315,316,319,321,323,326,332,338,339,341,342,358,360],surfac:[57,81,102],surpris:[22,38,68,79,90],surround:[31,33,42,110,115,118,128,156,199,229,338,342],surviv:[5,11,27,28,31,42,49,50,83,101,104,114,115,125,145,152,168,179,254,255,259,322,324,326],suscept:[27,55,240],suspect:132,suspend:[99,102,105],suspens:101,suspici:50,suspicion:132,svn:[36,107],swallow:[95,117,274,341],swap:[42,113,126,136,137,158,186,201,316,324],swap_autoind:324,swap_object:316,swap_typeclass:[59,124,143,316],swapcas:319,swapcont:137,swapper:316,swedish:75,sweep:101,swiftli:10,swing:[28,29,33,81],switch1:128,switch2:128,switch_opt:[155,156,157,158,163,164,165,166,167,168,186],sword:[20,28,33,60,72,76,84,85,118,178,205,250,339,342],symbol:[14,15,33,48,74,105,107,118,199,214,233,327],symlink:62,symmetr:328,sync:[63,82,104,130,173,283,288,303,304,305,306,314,323],sync_port:306,syncdata:[305,306],syncdb:126,synchron:335,syntact:[240,342],syntax:[5,6,13,14,15,21,22,23,29,33,40,42,45,47,54,57,59,61,75,79,90,96,113,118,122,128,133,140,141,153,157,158,166,167,169,179,184,186,187,232,240,245,265,277,304,316,318,319,334],syntaxerror:59,sys_cmd:151,sys_game_tim:58,syscmdkei:[33,140],syscommand:[140,148,154,245],syslog:208,sysroot:74,system:[0,2,4,5,9,10,11,19,21,22,23,26,27,28,29,31,34,36,37,38,39,40,43,45,46,48,54,55,58,59,61,62,63,73,74,75,76,78,80,82,83,84,85,86,89,92,94,96,101,102,103,104,106,107,108,109,110,111,113,114,118,120,121,124,125,126,127,128,130,131,133,135,137,138,139,140,144,145,147,148,149,151,153,154,155,157,165,167,169,171,174,175,176,178,179,181,185,192,193,194,195,196,197,198,200,201,202,204,205,208,209,210,214,216,217,218,219,220,225,231,233,234,237,239,240,244,245,247,250,251,257,265,288,294,302,312,316,320,322,325,326,335,361,362],system_command:33,systemat:38,systemctl:8,systemmultimatch:167,systemnoinput:167,systemnomatch:167,systemsendtochannel:167,tab:[9,14,26,30,36,52,58,68,94,95,105,113,136,137,319,328],tabl:[0,4,13,15,42,44,45,47,57,58,63,68,81,87,96,110,112,113,118,124,127,133,153,155,165,168,187,249,289,308,319,325,327,328,339,342],table_char:325,table_format:155,table_lin:328,table_str:57,tablea:325,tableb:325,tablechar:[57,325],tableclos:[87,289],tablecol:[327,328],tableopen:[87,289],tablet:16,tabletop:[57,72,78,123,216,220],tabsiz:[319,328],tabstop:341,tabularinlin:313,tack:[20,118,152],tackl:37,tactic:[72,115],taction:115,tag:[9,12,13,18,20,24,27,33,44,47,50,54,56,57,63,73,85,86,87,94,95,99,108,113,118,123,124,133,135,136,137,138,139,140,141,144,153,155,156,157,158,163,164,165,166,167,168,169,170,172,173,176,178,179,180,181,182,184,185,186,187,188,192,198,199,200,201,202,203,205,208,211,212,213,214,216,217,218,219,220,223,229,230,231,232,237,239,242,245,249,250,252,280,294,302,312,313,315,316,319,322,324,325,326,327,328,339,342,362],tag_categori:313,tag_data:313,tag_kei:313,tag_typ:313,tagadmin:313,tagform:313,tagformset:313,taghandl:[111,124,313,317],taginlin:[144,172,235,242,252,313],tagkei:[239,317,322],taglin:17,tagnam:250,tagstr:[250,317],tagtyp:[111,315,317,339],tail:[75,89,99,265,335],tail_log_fil:[265,335],tail_log_funct:335,tailor:[4,68,355],take:[0,3,4,9,10,11,13,14,15,16,17,19,20,21,22,25,26,27,28,29,31,33,37,39,41,45,48,50,51,54,55,56,57,61,63,68,69,73,74,75,76,78,79,82,84,89,90,94,95,102,103,104,105,107,108,110,113,115,118,120,121,122,123,124,125,126,132,133,135,137,138,143,145,150,151,155,167,173,176,178,181,183,186,187,199,202,203,205,208,212,214,216,217,218,219,220,229,231,240,248,250,269,285,293,305,306,315,316,319,324,325,326,327,336,342,343],taken:[31,42,55,63,102,115,119,120,122,164,185,208,216,217,218,219,220,285,309,319,322],takeov:307,taladan:47,tale:3,talk:[23,27,33,34,37,39,40,42,45,57,59,89,90,130,137,164,178,204,205,213,231,262],talker:[54,60],talki:63,talking_npc:[140,141,177],talkingcmdset:213,talkingnpc:213,tall:[42,128,164,205],tallman:[42,164],tandem:60,tantal:14,target1:219,target2:219,target:[21,25,28,29,30,33,34,39,42,57,72,87,102,113,115,118,122,126,135,137,143,153,158,163,164,168,176,181,184,186,196,198,214,216,217,218,219,220,229,233,245,315,319,322,326,342],target_loc:[196,212,231,233,245],target_obj:240,targetlist:198,task:[0,27,36,39,40,90,92,93,101,109,111,137,192,194,214,258,259,342],task_handl:[140,258,342],task_id:[194,258],taskhandl:[140,141,251,342],tast:[22,34,132],tavern:205,tax:[74,92],taylor:78,tb_basic:[140,177,215],tb_equip:[140,177,215],tb_filenam:320,tb_item:[140,177,215],tb_iter:320,tb_magic:[140,177,215],tb_rang:[140,177,215],tbbasiccharact:216,tbbasicturnhandl:216,tbearmor:217,tbequipcharact:217,tbequipturnhandl:217,tbeweapon:217,tbitemscharact:218,tbitemscharactertest:218,tbitemsturnhandl:218,tbmagiccharact:219,tbmagicturnhandl:219,tbodi:133,tbrangecharact:220,tbrangeobject:220,tbrangeturnhandl:220,tchar:115,tcp:[54,102],tcpserver:[39,310],teach:123,team:[33,36,60,63,107,130],teardown:[126,169,195,227,291,340],teaser:89,tech:78,technic:[4,6,9,10,11,19,20,23,38,39,50,63,69,82,89,107,111,113,118,124,138,178,314],techniqu:[29,138,319],tediou:[1,105,110],teenag:[21,102],tehom:[9,118],tehomcd:9,tel:[0,12,57,62,90,120,158],teleport:[12,14,20,42,57,84,121,139,158,164,231,239,320],teleportroom:231,televis:31,tell:[0,3,5,8,10,12,13,19,21,22,23,26,29,31,33,40,41,42,45,48,50,52,57,58,59,60,68,72,73,74,75,76,79,82,85,86,89,90,92,94,95,99,101,102,108,109,115,116,120,126,127,129,130,131,133,134,138,145,155,163,164,175,176,184,205,231,245,265,283,294,306,324,360],telnet:[9,15,25,30,39,42,54,62,63,74,78,82,93,99,100,102,104,109,113,136,137,140,168,260,273,278,279,280,281,285,286,287,289,290,292,296,304,305,341],telnet_:89,telnet_hostnam:53,telnet_interfac:89,telnet_oob:[87,140,260,273],telnet_port:[9,36,53,89,297],telnet_ssl:[140,260,273],telnetoob:289,telnetprotocol:[286,288,290],telnetserverfactori:288,teloutlock:239,temp:176,tempat:187,templ:199,templat:[2,3,4,5,27,31,42,46,63,80,86,103,106,108,122,124,130,133,134,135,136,137,144,164,166,187,265,294,304,305,314,325,334,353,360],template_nam:360,template_overrid:[4,134,135,136],template_regex:[314,334],template_rend:106,template_str:86,templates_overrid:134,templatestr:325,templatetag:[140,344,354],templateview:360,tempmsg:[174,176],temporari:[6,11,109,121,126,130,152,176,197,216,217,218,219,220,259,326],temporarili:[20,26,31,42,50,59,89,96,101,126,163,168,174,194,202],tempt:[42,60,94,103,156],ten:[29,89,110],tend:[40,42,56,60,63,72,75,85,89,96,102,118,120,123,128,137,158,204,208],tent:[44,110,138],term:[0,10,31,61,62,63,68,89,90,95,125,138,153,203],term_siz:[41,140],termin:[4,23,26,27,41,46,58,59,62,63,74,89,92,94,95,96,99,102,105,109,113,122,125,130,137,138,140,193,214,216,217,218,219,220,264,265,285,292,308,360],terminalrealm:285,terminals:285,terminalsessiontransport:285,terminalsessiontransport_getp:285,terrain:48,terribl:278,ters:101,test1:[11,73,328],test2:[11,33,73,113],test3:[11,328],test4:[11,328],test5:11,test6:11,test7:11,test8:11,test:[0,5,10,11,13,14,15,17,19,20,21,22,23,24,25,29,31,33,36,37,40,41,42,44,45,49,50,55,57,59,60,61,62,64,67,68,71,73,78,79,80,84,88,89,90,93,94,95,97,105,106,108,110,114,115,119,123,129,130,131,132,136,137,138,140,148,150,154,155,157,165,168,177,181,184,186,187,190,206,207,214,216,217,218,219,220,221,222,248,249,260,267,270,273,294,295,296,300,316,318,319,320,322,326,330,340,342,344,346,348,354,362],test_:126,test_about:169,test_accept:195,test_access:169,test_add:195,test_add_valid:195,test_all_com:169,test_alternative_cal:126,test_amp_in:291,test_amp_out:291,test_at_repeat:227,test_attribute_command:169,test_audit:210,test_ban:169,test_batch_command:169,test_bold:291,test_c_creates_button:301,test_c_creates_obj:301,test_c_dig:301,test_c_examin:301,test_c_help:301,test_c_login:301,test_c_login_no_dig:301,test_c_logout:301,test_c_look:301,test_c_mov:301,test_c_move_:301,test_c_move_n:301,test_c_soci:301,test_cal:195,test_cas:126,test_cboot:169,test_cdesc:169,test_cdestroi:169,test_cemit:169,test_channel:169,test_channelcommand:169,test_char_cr:169,test_char_delet:169,test_clock:169,test_color:291,test_color_test:169,test_copi:169,test_creat:169,test_cwho:169,test_data_in:291,test_data_out:291,test_del:195,test_desc:169,test_desc_default_to_room:169,test_destroi:169,test_destroy_sequ:169,test_dig:169,test_displayinput_nod:326,test_do_nested_lookup:169,test_dynamic_nod:326,test_edit:195,test_edit_valid:195,test_emit:169,test_empty_desc:169,test_end_nod:326,test_examin:169,test_exit:195,test_exit_command:169,test_find:169,test_forc:169,test_general_context:350,test_get:358,test_get_and_drop:169,test_get_authent:358,test_get_dis:358,test_giv:169,test_handl:195,test_help:169,test_hom:169,test_ic:169,test_ic__nonaccess:169,test_ic__other_object:169,test_ident:291,test_idl:301,test_info_command:169,test_interrupt_command:169,test_invalid_access:358,test_inventori:169,test_ital:291,test_large_msg:291,test_list:195,test_list_cmdset:169,test_lock:[169,195],test_look:169,test_look_nod:326,test_mask:210,test_memplot:301,test_menu:214,test_messag:302,test_mudlet_ttyp:291,test_multimatch:169,test_mux_command:169,test_mycmd_char:126,test_mycmd_room:126,test_nam:169,test_nested_attribute_command:169,test_nick:169,test_object:169,test_object_search:126,test_ooc:169,test_ooc_look:169,test_opt:169,test_pag:169,test_password:169,test_perm:169,test_pi:169,test_plain_ansi:291,test_pos:169,test_quel:169,test_queri:[140,260,295],test_quit:169,test_resourc:[126,140,141,169,195,210,227,291,318,358],test_return_valu:126,test_sai:169,test_script:169,test_send_random_messag:227,test_server_load:169,test_sess:169,test_set_game_name_and_slogan:350,test_set_help:169,test_set_hom:169,test_set_nod:326,test_set_obj_alia:169,test_set_webclient_set:350,test_simpl:126,test_simple_default:169,test_spawn:169,test_split_nested_attr:169,test_start:195,test_start_nod:326,test_tag:169,test_teleport:169,test_toggle_com:169,test_tunnel:169,test_tunnel_exit_typeclass:169,test_typeclass:169,test_upp:126,test_valid_access:358,test_valid_access_multisession_0:358,test_valid_access_multisession_2:358,test_valid_char:358,test_view_nod:326,test_wal:169,test_whisp:169,test_who:169,test_without_migr:126,testabl:126,testaccount:169,testadmin:169,testampserv:291,testapp:132,testbatchprocess:169,testbodyfunct:227,testbuild:169,testcas:[126,291,301,333,340,350],testcmdcallback:195,testcomm:169,testcommand:50,testdefaultcallback:195,testdummyrunnerset:301,tester:[89,118,283],testeventhandl:195,testform:325,testgener:169,testgeneralcontext:350,testhelp:169,testid:33,testinterruptcommand:169,testirc:291,testmemplot:301,testmenu:[187,326],testmixedrefer:333,testmod:306,testmymodel:126,testobj:126,testobject:126,testobjectdelet:333,testok:90,testregularrefer:333,testresult:249,testset:126,testsharedmemoryrefer:333,teststr:126,testsystem:169,testsystemcommand:169,testtelnet:291,testunconnectedcommand:169,testvalu:11,testwebsocket:291,text2html:[140,141,318],text:[0,1,2,5,7,9,10,13,14,15,17,18,21,22,24,26,30,33,34,35,37,39,42,44,45,47,49,51,54,55,56,57,58,59,62,67,71,72,75,76,77,78,79,80,82,84,85,86,87,89,90,94,95,96,97,99,107,108,109,110,111,117,120,122,123,125,126,130,132,136,137,138,143,145,150,153,155,156,157,158,163,164,165,166,167,168,169,170,173,174,175,176,178,179,180,181,184,185,186,187,188,189,192,194,196,198,199,200,201,202,204,205,209,211,212,213,214,216,217,218,219,220,223,229,230,231,232,237,240,245,247,248,250,254,262,263,270,276,277,280,283,284,285,288,289,293,294,304,305,306,309,310,314,315,317,319,320,322,324,325,326,327,328,334,336,339,341,342,343,355,362],text_color:189,text_exit:[22,179],text_flow_pane1:136,text_flow_pane2:136,text_single_exit:22,textarea:[338,355],textbook:39,textbox:355,textfield:[85,132],textstr:73,texttag:[125,138,362],texttohtmlpars:341,textual:38,textwrap:328,textwrapp:328,than:[0,2,4,6,8,11,13,14,16,19,23,24,25,26,29,31,33,35,37,38,41,42,45,46,48,50,51,52,53,54,56,57,59,60,61,63,67,68,70,72,75,79,81,85,88,89,90,92,94,96,102,103,104,105,108,109,111,112,113,114,115,118,121,122,124,125,126,127,128,130,133,134,136,137,138,143,147,150,151,152,155,156,157,158,159,163,166,168,178,179,180,183,189,194,196,203,204,205,212,214,216,217,218,219,220,230,232,239,245,247,248,265,291,306,311,313,314,315,316,319,320,326,327,328,332,334,335,337,338,339,341,342,360],thank:[4,101,133,137,198,310],thankfulli:132,thead:133,thei:[0,1,2,4,5,6,8,9,10,11,12,13,14,15,16,17,19,20,21,22,23,25,27,29,30,31,33,34,37,38,39,40,41,42,43,45,47,50,52,54,55,56,57,60,62,63,65,67,68,72,74,76,77,79,80,82,84,85,87,88,89,90,91,92,94,95,96,101,102,104,105,106,107,108,109,110,111,112,113,115,117,118,120,122,123,124,125,126,130,131,133,135,136,137,138,139,143,144,151,152,155,157,158,163,164,166,167,168,173,178,179,181,184,186,188,193,199,204,205,216,217,218,219,220,230,231,232,233,239,240,244,245,248,250,251,254,256,257,259,265,285,286,288,289,290,294,297,303,304,305,306,308,313,314,319,320,321,323,326,328,334,342,343,355,360],theirs:[115,180,188],them:[0,2,4,5,6,9,10,11,12,13,14,15,16,21,22,23,26,27,28,29,30,31,33,34,35,37,38,39,40,42,45,47,49,50,53,54,56,57,58,59,60,61,63,65,67,68,70,72,73,74,75,76,79,81,82,84,85,86,87,88,89,90,94,95,96,97,101,102,103,104,105,108,109,110,111,112,113,114,115,117,118,120,121,122,123,124,125,126,127,130,132,133,134,135,136,137,138,139,143,149,150,151,153,155,157,158,163,165,166,167,169,174,180,181,182,186,187,188,189,191,193,196,202,203,205,214,216,217,218,219,220,223,229,231,232,236,240,245,250,256,259,265,283,285,288,296,300,303,304,306,313,314,316,317,319,320,322,326,334,338,341,360],themat:60,theme:[60,133],themself:218,themselv:[0,11,19,21,28,31,33,42,48,50,54,57,68,71,72,79,80,84,88,96,101,106,112,118,120,122,124,126,131,137,139,158,205,245,254,257,265,315,317,338],theoret:[31,107],theori:[31,41,56,78,122,138,143,151,362],thereaft:86,therefor:[0,48,61,67,90,101,121,126,157,179,191],therein:[15,33,155,166,186,202],thereof:[205,245],thi:[0,1,2,3,4,5,6,8,9,10,11,12,13,14,15,16,18,19,20,21,22,23,24,25,26,27,28,29,30,31,33,34,35,36,37,38,39,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,67,69,70,71,72,73,74,75,76,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,142,143,144,145,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,191,192,193,194,196,197,198,199,200,201,202,203,204,205,208,209,211,212,213,214,216,217,218,219,220,222,223,225,226,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,244,245,248,249,250,251,252,254,255,256,257,258,259,260,262,263,264,265,267,269,270,271,272,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,292,293,294,296,297,298,299,300,302,303,304,305,306,307,308,309,310,311,312,313,314,315,316,317,318,319,320,321,322,323,324,325,326,327,328,329,332,333,334,335,336,337,338,339,340,341,342,343,344,347,348,352,353,355,359,360,361],thie:50,thief:60,thieveri:[42,165],thin:[10,22,29,110,181,335],thing:[0,1,3,4,5,6,8,9,10,11,12,13,15,19,20,21,22,25,26,27,28,29,30,31,33,34,37,38,39,40,42,45,46,47,48,49,50,54,57,58,59,60,62,63,68,69,70,72,73,74,75,78,79,81,82,84,85,88,89,90,92,94,95,96,99,101,102,103,104,106,107,108,109,110,113,114,115,117,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,143,151,152,158,174,178,179,186,194,204,205,214,220,226,231,232,239,240,244,245,248,269,274,278,310,313,314,316,319,320,328,334,338,360],think:[1,20,29,31,34,37,45,47,50,54,58,60,61,69,72,78,80,90,93,94,95,96,108,110,111,113,114,134,137,138,306,360],third:[0,8,9,23,27,37,38,41,42,50,63,68,71,74,89,95,100,113,120,126,127,133,158,319],thirdnod:50,this_sign:307,thoma:[12,42,86,156],thorn:[11,88],thorough:26,those:[2,3,4,6,9,11,13,14,15,19,20,21,23,28,30,31,33,35,36,42,43,46,47,50,54,55,56,57,59,60,61,63,67,70,72,76,77,78,79,80,84,85,87,88,89,94,95,102,104,108,109,110,111,113,117,118,120,122,123,124,126,127,129,130,134,135,137,152,153,155,158,164,165,169,175,179,205,209,214,216,230,231,240,248,249,250,288,293,315,316,326,328,336,337,340,342,355,360],though:[2,10,11,12,13,14,15,22,23,26,27,30,31,37,38,40,50,56,58,59,61,62,63,68,71,74,78,80,88,89,90,93,95,96,99,101,102,103,109,115,118,120,121,122,125,126,127,128,130,137,143,153,179,180,189,216,217,219,220,225,231,232,245,250,319,342],thought:[23,38,60,78,79,83,137],thousand:[38,89,110,132],thread:[23,27,54,78,93,109,284,310,335,342],threadpool:[93,310],threadsaf:313,threat:102,three:[0,4,12,13,16,22,25,31,33,45,50,68,79,82,84,86,88,89,113,132,133,134,150,214,219,240,256,319,326],threshold:[227,308,320],thrill:84,throttl:[140,141,143,260,270,283],through:[0,1,2,5,9,13,14,17,23,25,27,30,31,33,34,38,39,40,43,45,47,50,51,52,54,55,56,57,58,59,60,61,63,67,68,69,70,75,76,79,82,84,86,87,88,89,90,92,95,96,97,98,102,103,104,105,106,107,108,109,113,115,116,118,120,121,123,135,137,138,139,140,143,152,158,165,173,178,186,191,209,211,216,217,218,219,220,233,238,240,244,245,249,255,256,259,265,267,272,281,285,288,294,297,302,304,305,313,315,316,320,322,325,326,327,334,341,342,355,360],throughout:[11,20,48,50,54,103,218],throughput:[174,322],thrown:115,thrust:230,thu:[14,19,31,33,38,42,43,50,53,56,57,72,79,82,85,95,107,110,113,120,121,122,124,133,134,135,155,159,180,204,240,245,259,297,311,314,315,322],thud:188,thumb:[52,113,130],thumbnail:4,thunder:23,thunderstorm:121,thusli:74,tick:[23,33,50,63,114,130,131,138,218,229,231,259,297],ticker1:[114,259],ticker2:[114,259],ticker:[54,73,101,131,138,145,229,231,255,259,270],ticker_class:259,ticker_handl:[114,131,140,259],ticker_pool_class:259,ticker_storag:259,tickerhandl:[27,44,101,115,131,138,140,141,212,218,231,251,362],tickerpool:259,tickerpool_layout:259,ticket:93,tidbit:54,tidi:99,tie:[115,137],tied:[63,118,152,165,181,223,226,237],tier:89,ties:[48,134,160],tight:181,tightli:102,tim:[181,187,189,214,216,217,218,219,220],time:[0,1,2,4,5,6,8,9,10,11,12,13,14,17,20,21,22,23,25,26,28,29,30,31,34,36,37,38,39,40,41,44,48,50,51,53,54,55,57,58,59,60,62,63,64,65,68,69,71,72,74,79,82,85,87,88,89,90,92,93,94,95,99,103,104,105,108,109,112,113,114,115,116,118,120,121,122,123,124,126,127,128,130,131,132,134,136,137,138,143,145,147,149,150,152,153,156,163,168,174,176,178,183,184,186,193,194,197,199,202,203,211,212,214,216,217,218,219,220,222,226,229,230,231,237,244,245,248,250,251,254,257,258,259,265,267,269,271,272,277,283,288,290,297,298,302,303,304,306,308,313,314,316,317,319,320,321,322,327,329,332,333,335,338,342,361],time_ev:197,time_factor:[27,61,183,329],time_format:[58,342],time_game_epoch:[27,61,329],time_to_tupl:183,time_unit:[61,183],time_until_next_repeat:[101,257],timedelai:[29,258,340,342],timedelta:[336,343],timeeventscript:194,timefactor:61,timeformat:[335,342],timeit:92,timeout:[66,115,119,288,308,332],timer:[20,27,33,46,55,63,82,101,114,115,186,218,222,225,230,251,257,259,296,304,339],timerobject:101,timescript:329,timeslot:186,timestamp:[25,27,308,329],timestep:297,timestr:335,timetrac:[140,260,295],timetupl:61,timezon:[23,335,336,343],tini:[23,38,80],tinker:96,tintin:[24,278,279,289,292],tinyfugu:24,tinymud:[56,107],tinymush:[56,107,128],tinymux:[56,107],tip:[37,69,78,102,111],tire:[20,152],titeuf87:233,titl:[17,22,34,42,47,68,97,136,163,165,179,236,319,322,360],titlebar:136,titleblock:68,tlen:70,tls:8,tlsv10:66,tlsv1:8,tmp:[36,62],to_be_impl:360,to_byt:342,to_cur:218,to_displai:179,to_dupl:151,to_execut:342,to_exit:0,to_fil:208,to_init:220,to_non:245,to_obj:[143,153,245],to_object:175,to_pickl:323,to_str:342,to_syslog:208,tobox:274,toc:361,todai:[137,189],todo:57,toe:107,togeth:[0,3,8,9,14,22,29,31,33,42,47,48,56,57,60,63,67,70,72,82,88,89,91,115,118,121,122,123,124,125,130,137,149,158,160,174,186,201,202,204,205,230,231,244,250,274,293,306,313,319,320,334,339],toggl:[80,288],toggle_nop_keepal:288,togglecolor:80,toint:[108,248],token:[70,245,285,288,320,334],told:[43,58,89,90,94,112,113,122,127,338],tolkien:61,tom:[42,57,86,122,128,158,164,188,205,325],tommi:[19,79,86],ton:[56,81],tone:113,tonon:[42,158],too:[0,4,6,9,11,12,13,14,17,20,21,22,24,25,27,29,33,38,40,41,42,45,46,47,48,50,56,57,58,59,60,62,72,79,82,83,84,90,92,95,105,113,115,120,121,122,124,127,130,132,137,156,158,177,214,219,223,239,257,270,274,308,310,320,325,326,327,328,339,342],took:[126,342],tool:[4,6,7,8,23,29,52,56,61,62,63,85,89,95,99,107,108,110,111,113,118,135,138],toolbox:78,tooltip:136,top:[5,9,13,22,26,29,31,33,38,46,47,49,51,52,56,57,58,59,62,67,68,74,78,84,92,94,95,100,101,103,109,110,111,116,122,124,129,130,132,133,136,137,138,147,152,176,179,181,183,201,205,214,232,233,237,244,254,265,307,314,316,317,320,327,328,335],topcistr:236,topic:[4,10,20,31,33,39,41,42,54,67,68,85,92,104,118,125,165,216,217,218,219,220,236,339,355,360],topicstr:236,tos:239,tostr:274,total:[27,42,61,79,81,90,92,101,103,104,113,117,138,168,184,302,328,329],total_num:332,touch:[8,53,59,95,96,102,103,113],tour:90,toward:[22,33,39,41,90,101,110,189,199,220,229],tower:[110,186,231],tportlock:239,trac:93,trace:[82,95,194,302,326],traceback:[6,13,27,56,59,94,96,101,109,113,122,126,132,134,194,201,248,274,316,320,334,335,342],tracemessag:302,track:[11,27,30,48,56,60,63,72,76,81,85,94,97,98,99,101,104,115,120,127,131,132,137,143,152,220,255,276,277,282,285,288,303,308,323,324,336],tracker:[42,60,69,130],trade:[45,178],tradehandl:178,trader:45,tradetimeout:178,tradit:[10,15,36,72,73,82,89,102,113,115,137,233,288,304,327],tradition:[56,82],traffic:[8,102,278],train:78,traindriv:120,traindrivingscript:120,trainobject:120,trainscript:120,trainstop:120,trainstoppedscript:120,trait:[27,72,250],transact:178,transfer:[84,132,152,276,286,290,328],transform:[36,174],transit:[88,123],translat:[14,39,44,78,86,87,112,113,125,204,205,250,267,319],transmiss:208,transmit:112,transpar:[104,125,136,137,244,259],transport:[274,285,294],transportfactori:285,transpos:125,trap:[14,81,121],traumat:50,travel:[48,81,82,87,95,212,233],travers:[11,43,48,79,84,88,120,196,211,212,229,230,233,239,245],traverse_:33,traversing_object:[196,211,212,233,245],travi:[44,138,362],travis_build_dir:129,treasur:[9,233],treat:[10,14,33,63,94,95,104,110,111,118,124,137,143,149,152,174,188,245,250,306,328,339],tree:[3,11,33,46,50,60,62,63,76,79,95,130,139,179,205,214,232,245,250,265,294,310,326,342],tree_select:[140,141,177],treestr:214,treshold:332,tri:[11,12,14,24,29,33,42,52,57,60,79,82,86,89,90,104,106,112,115,118,132,137,150,168,178,180,187,223,230,231,269,308,342,343],trial:[93,105,291],tribal:110,trick:[8,22,78,137,316,355],tricki:[108,125,126,137],trickier:[9,68],trigger:[21,24,31,33,36,41,45,48,50,55,56,68,73,82,83,88,99,104,106,113,114,115,116,117,120,133,134,137,143,145,149,150,153,155,169,174,179,197,199,200,229,231,244,245,250,257,259,267,270,274,296,303,307,322,334],trim:319,trip:95,tripl:[27,95,113,334,342],trivial:[27,33,39,41,90,92,137],troll:12,troubl:[5,8,9,23,40,45,57,62,69,74,90,104,130,138,314,361],troubleshoot:9,troublesom:[12,13,14],trove:9,truestr:187,truli:[0,12,38,40,104,186],trust:[19,42,50,56,168,320],truth:41,truthfulli:33,try_num_prefix:150,ttarget:115,tto:288,tty:[9,99],ttype:[54,140,260,273,285,288],ttype_step:292,tuck:[110,223],tun:[42,158],tune:125,tunnel:[0,20,22,43,48,57,120,158,290],tup:[38,205],tupl:[11,38,40,41,42,50,58,59,79,85,86,87,89,108,115,118,133,140,143,150,156,158,166,167,175,178,179,183,184,188,191,199,205,218,219,233,239,240,245,248,249,250,259,262,274,275,285,286,290,297,304,306,314,317,319,321,322,324,326,329,334,335,337,342],tupled:335,turbo:74,turkish:143,turn:[0,10,12,27,31,33,40,42,49,50,56,57,63,65,76,78,79,80,82,87,89,95,101,104,106,109,110,113,116,117,120,121,125,126,130,132,134,137,138,143,153,163,168,169,174,197,199,205,214,216,217,218,219,220,229,231,245,250,265,270,278,285,288,296,306,312,313,316,320,322,326,327,328,334,342,362],turn_act:115,turn_end_check:[216,217,218,219,220],turnbattl:[140,141,177],turnchar:218,tut:[121,231],tutori:[3,4,10,16,17,20,22,25,26,28,29,31,32,33,35,37,38,40,41,44,47,48,50,54,56,57,59,60,62,63,69,70,76,78,80,81,90,94,101,110,111,113,114,125,132,134,138,179,212,217,230,231,361,362],tutorial_bridge_posist:231,tutorial_cmdset:231,tutorial_exampl:[13,14,20,101,140,141,177],tutorial_info:231,tutorial_world:[20,22,62,121,140,141,177],tutorialclimb:230,tutorialobject:[229,230],tutorialread:230,tutorialroom:[229,231],tutorialroomcmdset:231,tutorialroomlook:231,tutorialweapon:[229,230],tutorialweaponrack:230,tutorialworld:[230,231],tweak:[8,9,25,56,57,96,101,108,116,118,124,137,310,319],tweet:[123,138,362],tweet_output:119,tweet_stat:119,tweetstat:119,twenti:57,twice:[25,50,61,115,194,199,220,326],twist:[10,27,29,33,39,62,71,74,78,96,102,245,262,265,267,268,274,275,276,277,282,285,288,291,293,294,296,303,306,310,335,362],twistd:[62,105,109,282,303],twistedcli:39,twistedmatrix:93,twistedweb:102,twitch:[40,115],twitter:[7,54,119,138,362],twitter_api:70,two:[0,4,11,13,14,15,16,19,22,23,25,26,27,28,29,31,33,34,38,39,40,42,43,45,46,48,49,50,52,56,57,63,64,67,68,72,73,75,79,82,83,84,85,87,88,89,90,91,94,96,99,101,102,103,104,107,108,109,110,111,112,115,118,120,121,122,124,125,126,128,130,132,133,134,136,137,138,139,151,158,176,178,179,184,198,199,203,211,212,214,218,220,223,231,232,245,247,265,294,305,306,315,317,320,326,328,334,335,342,343,362],twowai:[42,158],txt:[9,39,49,74,77,89,95,145,204,281,289,324],tying:89,typclass:205,type:[0,8,12,14,16,17,19,20,21,22,24,25,26,27,28,29,31,33,34,35,37,40,41,42,43,45,46,48,49,50,54,55,56,57,58,60,61,63,72,74,76,78,79,80,81,82,85,86,87,89,90,94,95,96,101,102,104,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,124,125,127,132,136,137,138,143,145,153,158,165,168,169,170,174,175,176,179,181,185,187,191,194,196,197,198,199,205,212,216,217,218,219,220,226,230,231,232,237,239,240,244,245,249,250,258,259,263,265,267,268,276,277,283,285,286,288,289,290,292,293,294,296,304,306,310,313,314,315,316,317,319,320,322,323,326,328,334,337,338,339,342,343,349,355],type_count:181,typecalass:314,typecalss:194,typeclass:[0,2,5,9,11,12,13,20,21,22,25,26,27,33,34,38,43,46,47,48,55,57,59,60,61,65,68,72,75,76,79,81,82,83,84,88,90,95,101,104,106,108,110,111,115,116,117,119,120,121,122,126,131,132,133,138,140,141,143,144,145,146,147,152,158,163,172,174,175,176,177,181,186,190,193,194,197,202,205,211,212,213,216,217,218,219,220,225,231,233,235,236,239,240,242,243,244,245,249,250,252,253,254,255,257,259,303,321,322,339,340,342,355,358,360,362],typeclass_path:[42,101,118,124,147,158,254,315,316],typeclass_search:315,typeclassbas:95,typeclassmanag:[146,175,243,253],typeclassmixin:360,typedobject:[40,124,147,153,173,176,205,233,244,245,254,314,315,316,317,337,342],typedobjectmanag:[175,236,315],typeerror:[41,184,294],typenam:[22,143,145,147,174,176,178,181,183,186,188,194,196,202,203,204,205,211,212,213,216,217,218,219,220,222,225,226,229,230,231,233,237,244,245,249,254,257,272,298,314,316,329,332,333],typeobject:317,types_count:181,typic:[27,54,90,126,219,220,360],typo:[37,69,102],ubuntu:[8,62,96,102,130],ufw:102,ugli:[55,108,136,336],uid:[99,147,277,284,305,306],uit:[22,179],ulrik:57,ultima:78,umlaut:15,unabl:[70,189],unaccept:33,unaffect:[50,115,218],unarm:217,unarmor:217,unassign:137,unauthenticated_respons:358,unavoid:114,unban:[12,156],unbias:184,unbroken:325,uncas:319,uncategor:339,unchang:[86,96,204,250,342],unclear:[30,361],uncolor:[80,113],uncom:89,uncommit:130,uncompress:278,unconnect:[42,170,185],uncov:181,undefin:[36,85,111],under:[6,9,20,24,33,36,40,41,42,45,47,50,56,59,60,62,63,72,74,76,77,78,85,92,99,105,107,109,118,121,122,124,127,132,133,134,135,136,153,155,158,187,214,232,240,257,265,292,314,319,327,328,342,344,360],undergar:181,undergon:194,underli:[56,60,63,79,118,123,130],underlin:[328,341],underneath:[9,316],underscor:[0,50,73,87,94,96,113,118,151,342],underscror:151,understand:[4,10,15,24,25,26,29,30,31,33,37,38,40,41,43,47,48,54,59,60,62,78,80,82,90,94,95,102,103,104,108,110,112,113,122,123,130,132,133,135,138,150,151,203,204,205,310,319,342,362],understood:[82,90,110,126,293,294],undestand:25,undo:[49,102,324],undon:[42,155],undoubtedli:56,unexpect:[90,125,126,326],unexpectedli:332,unfamiliar:[62,73,79,87,89,117,123],unformat:[50,326,329],unfortun:[4,40,60],unhandl:59,unhappi:9,unhilit:341,unicod:[15,82,93,112,143,319,342],unicodeencodeerror:319,unicorn:118,unifi:[132,305],uniform:104,uninform:8,uninstal:62,uninstati:342,unintent:232,union:[31,50,151,223,326],uniqu:[2,12,13,20,31,33,35,36,39,42,45,54,56,59,60,63,70,79,82,83,89,94,95,101,104,108,111,118,122,124,126,136,137,143,149,151,153,158,163,168,170,174,175,180,183,185,193,199,203,204,205,211,214,217,218,229,231,236,245,249,250,259,262,274,275,283,296,297,305,306,314,315,316,317,322,324,336,339],unit:[27,31,34,36,37,44,46,54,61,63,78,81,106,123,138,175,183,197,218,267,322,329,342,348,362],unittest:[25,126,129,169,306,322,340],univers:[14,15,42,61,163],unix:[24,42,51,62,86,164,232,327,335,342],unixcommand:[140,141,177],unixcommandpars:232,unixtim:335,unjoin:178,unknown:[40,42,55,68,136,249,334,342],unleash:28,unless:[4,5,11,12,21,22,23,27,29,33,42,50,71,77,79,83,87,88,89,95,101,109,114,122,137,139,143,152,156,158,163,166,173,174,193,203,204,205,220,226,230,235,239,240,245,250,263,278,294,306,314,316,339,342,343],unlik:[37,63,72,89,106,143,179,218,316],unlimit:[233,257],unlink:158,unload:340,unload_modul:340,unlock:[57,76,79,314],unlocks_red_chest:79,unlog:[42,156,161,162,170,174,185,306],unloggedin:[104,140,148,154,200,306],unloggedincmdset:[35,42,104,162,185,200],unlucki:12,unmask:205,unmodifi:[150,167,186,326],unmonitor:270,unmut:[173,174],unnam:[111,151],unneccesari:112,unnecessari:[36,60],unneed:233,unpaced_data:274,unpack:[90,239],unpars:[73,86,150,293,294,334],unpaus:[99,101,257],unpickl:[82,274,314,323,338],unplay:[25,104],unpredict:342,unprivileg:250,unprogram:72,unpuppet:[42,95,106,122,155],unpuppet_al:143,unpuppet_object:[2,143],unquel:[20,42,79,155],unreal:78,unregist:134,unrel:[50,130,144],unrepeat:270,unreport:270,unsaf:[109,151,231],unsatisfactori:110,unsav:324,unsel:84,unset:[33,48,57,88,115,156,205,229,240,245,249,250,257,259,322,326,327,328,334,335],unsign:343,unsigned_integ:[336,343],unsignedinteg:336,unstabl:99,unstrip:150,unsubscrib:[42,57,114,163,259,276],unsuit:[19,249,317],unsur:[15,37,62,70,75,89,115,137,212],untag:136,untest:[24,60,62,126],until:[5,8,10,11,12,13,20,26,29,30,31,33,36,47,50,60,62,63,85,86,92,94,96,101,113,114,118,122,125,130,135,136,137,138,178,181,183,197,199,216,217,218,219,220,229,230,231,245,257,265,294,296,319,320,329,342],untouch:319,untrust:13,unus:[33,80,143,149,153,174,186,214,220,245,257,288,304,309,315],unusu:[102,118],unwant:138,unwield:217,unwieldli:152,upcom:[53,361],updat:[2,4,5,8,9,11,13,14,20,23,28,29,30,33,36,38,42,44,48,50,54,56,57,60,61,62,63,67,70,72,74,75,78,80,82,83,85,87,88,89,90,94,96,97,99,101,114,115,122,126,132,133,134,135,137,138,144,145,152,153,158,163,166,168,169,173,174,182,186,194,205,219,231,237,240,244,245,247,248,250,255,281,283,284,289,303,304,306,308,313,314,316,323,324,325,326,327,328,332,342,355,358,360,362],update_attribut:314,update_buff:324,update_cached_inst:332,update_charsheet:57,update_current_descript:186,update_default:303,update_flag:304,update_method:136,update_po:48,update_session_count:304,update_undo:324,update_weath:231,updated_bi:191,updated_on:191,updatemethod:[136,137],updateview:360,upfir:105,upgrad:[62,63,74],upload:[4,62,63,89,99],upon:[14,29,60,79,85,89,95,99,102,112,116,122,187,209,216,217,218,219,220,256,267,276,308,360],upp:231,upper:[29,38,42,85,100,113,126,137,155,319],uppercas:[113,319],upping:113,ups:7,upsel:89,upsid:[40,233],upstart:[39,256],upstream:[26,63,103,127],uptim:[12,27,42,61,168,279,329],urfgar:108,uri:[174,237,316],url:[8,42,63,89,97,130,133,134,135,137,140,141,145,163,174,237,284,294,310,316,341,344,351,354,360],url_nam:358,url_to_online_repo:130,urlencod:68,urlpattern:[3,4,68,132,133,134],usabl:[4,42,65,113,122,158,179,189,218,239,308,326],usag:[0,5,12,21,22,23,28,29,30,33,40,41,42,50,57,59,63,67,70,72,80,81,84,89,90,92,93,108,114,115,118,120,122,123,128,153,155,156,157,158,163,164,165,168,169,170,173,178,179,180,181,183,184,185,186,187,188,198,199,201,202,204,205,209,211,212,213,216,217,218,219,220,223,229,230,231,232,233,239,248,265,326,328,332],use:[0,2,3,4,5,6,8,9,10,11,12,13,14,15,16,17,19,20,21,22,23,24,25,26,27,28,29,31,33,34,35,36,37,38,39,40,41,42,45,46,47,48,49,50,51,52,53,55,56,57,58,59,60,61,62,63,64,65,67,68,69,70,71,72,73,75,78,79,80,81,82,83,84,85,86,87,88,89,90,92,93,94,95,97,99,101,102,103,104,105,106,107,108,110,111,112,113,115,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,143,144,145,147,149,150,151,152,153,155,158,159,163,164,166,167,168,169,173,174,176,178,179,180,181,184,186,188,189,193,196,197,198,199,201,202,203,204,205,211,213,214,216,217,218,219,220,222,223,225,229,230,231,232,233,239,240,244,245,249,250,257,258,259,263,270,274,287,289,290,293,296,297,304,305,306,313,314,315,316,317,319,320,321,322,324,325,326,327,328,332,334,335,336,338,342,343,360],use_dbref:[205,245,339],use_destin:245,use_evt:327,use_i18n:75,use_item:218,use_nick:[143,205,245],use_required_attribut:[144,235,242,355],use_success_location_messag:202,use_success_messag:202,use_xterm256:319,useabl:233,used:[0,2,3,7,9,10,11,13,15,16,17,19,20,22,23,24,27,29,30,31,34,35,39,40,42,45,46,47,49,50,51,52,53,54,55,56,57,58,59,61,62,63,67,68,71,72,73,78,79,81,82,83,84,85,86,87,88,89,90,92,93,94,95,99,101,102,103,104,106,107,108,109,110,111,112,113,114,115,117,118,119,120,121,122,123,124,125,126,127,128,130,132,133,134,135,136,138,140,143,144,145,149,151,152,153,155,158,163,165,166,167,168,169,174,178,179,181,183,185,186,187,188,189,191,193,194,196,197,198,199,203,204,205,212,214,216,217,218,219,220,229,230,231,232,233,236,238,239,240,242,245,248,250,256,257,258,259,260,262,263,267,270,271,274,275,276,277,278,279,280,281,282,283,285,287,288,289,292,293,294,297,304,306,307,313,314,315,316,317,318,319,320,322,323,324,326,327,328,334,335,336,337,338,339,342,343,348,355,360,361],used_kei:79,useful:[0,1,4,5,10,11,12,13,14,15,16,17,18,19,20,22,23,25,26,27,28,29,30,31,34,36,37,38,40,41,42,45,46,47,49,50,56,57,58,59,62,63,65,68,69,79,80,86,88,89,90,92,94,95,101,103,106,108,109,110,111,113,114,115,118,119,122,123,124,126,130,131,132,137,138,149,151,152,153,155,157,158,165,166,167,169,177,178,179,193,194,198,204,205,209,231,232,233,239,245,249,250,257,265,285,314,316,320,326,327,329,338,342],useless:229,uselock:239,user:[2,4,7,8,10,11,12,13,14,20,22,23,25,28,29,30,31,35,36,37,39,40,41,42,48,49,50,51,52,54,59,62,63,64,65,66,67,69,70,71,73,74,75,76,78,79,80,84,86,87,89,90,92,94,96,97,99,100,103,104,106,108,112,113,118,120,121,122,124,125,126,132,133,134,135,136,137,138,143,144,145,147,150,153,156,158,163,168,173,174,175,176,179,181,186,188,192,194,199,200,205,208,209,214,218,220,226,233,237,239,240,245,250,257,260,263,269,277,284,285,288,293,294,304,306,309,314,316,319,324,326,327,328,334,336,342,343,347,355,360,362],user_change_password:144,user_input:50,user_permiss:[144,147],useradmin:144,userauth:[93,285],userchangeform:144,usercreationform:[144,355],usernam:[2,4,35,50,73,99,106,118,130,133,143,144,147,185,285,309,347,355],username__contain:118,usernamefield:355,userpassword:[12,156],uses:[0,5,9,13,15,16,17,22,23,29,30,31,33,34,38,39,43,50,56,63,67,68,79,80,85,87,89,93,97,106,108,111,112,113,114,118,123,124,126,129,130,135,136,151,178,184,186,198,200,205,218,225,226,231,232,233,240,254,259,274,294,314,317,334,335,336,342],uses_databas:342,using:[2,4,5,6,8,9,10,11,12,13,14,15,19,20,21,22,23,24,25,26,27,28,29,30,31,33,34,36,37,38,40,42,44,45,46,48,49,50,54,55,56,57,58,59,60,61,62,63,66,67,69,70,71,72,73,76,77,78,79,80,82,84,85,86,87,88,89,90,92,94,95,96,99,100,101,102,104,106,107,108,109,110,111,113,114,115,116,117,119,120,121,122,123,124,125,127,128,130,131,132,133,136,137,138,139,143,147,149,152,153,155,157,158,163,166,167,168,173,178,179,180,183,184,186,187,189,193,199,200,202,204,205,211,212,213,214,216,217,218,219,220,223,229,231,232,233,240,245,248,249,250,254,257,258,259,276,277,278,283,284,288,294,297,307,308,310,314,316,317,319,320,324,326,327,329,334,335,336,337,338,339,340,342,344,355,360,361,362],usr:[62,63,74,99],usual:[0,2,4,5,6,8,9,11,19,20,21,22,23,25,26,27,29,30,31,33,34,37,39,40,42,45,46,49,50,51,56,58,59,61,62,63,66,71,73,79,80,86,88,89,90,92,94,95,96,99,101,104,105,108,109,111,113,114,118,123,124,125,126,130,132,135,143,145,150,151,152,153,155,158,164,168,169,173,174,176,183,193,194,196,197,203,204,205,231,232,240,244,245,250,257,265,267,272,297,304,313,314,316,321,322,326,327,335,337,339,342],utc:[23,343],utf8:[23,36],utf:[15,24,57,73,110,112,270,276,293,328,342],util:[8,10,11,13,14,16,34,40,44,46,47,48,49,50,51,56,57,58,61,62,80,84,85,88,95,96,101,102,110,113,116,123,126,132,133,136,138,140,141,144,157,169,174,176,177,183,186,187,190,194,195,210,212,219,227,235,237,242,245,247,249,257,258,272,291,296,313,314,315,316,344,355,358,362],utilis:326,uyi:204,v19:62,vagu:21,val1:248,val2:248,val:[11,87,143,155,248,289,342],valid:[1,11,13,26,30,31,33,41,42,43,50,57,59,68,87,88,89,90,94,95,96,101,102,108,109,113,118,122,129,132,133,140,141,143,150,152,158,166,167,168,175,178,179,187,191,194,195,199,203,205,214,219,225,226,230,231,232,233,240,245,247,248,249,250,255,256,257,258,259,260,263,265,289,293,304,315,317,320,322,326,336,337,338,339,341,342,343,355,360],valid_handl:336,validate_email_address:342,validate_nam:245,validate_onli:240,validate_password:[50,143],validate_prototyp:249,validate_sess:306,validate_usernam:143,validationerror:[143,249,309,336,338],validator_config:143,validator_kei:336,validatorfunc:[140,141,318],valign:328,valu:[0,2,4,6,10,11,12,17,20,22,25,27,28,31,33,38,40,41,42,48,49,57,58,59,60,61,63,68,72,73,76,79,80,81,83,84,85,86,87,89,96,101,110,113,114,115,122,124,125,126,127,132,133,136,137,138,143,147,149,153,155,156,158,169,174,176,179,181,184,187,188,189,191,194,195,199,202,203,204,205,210,216,217,218,219,220,226,227,231,233,237,239,240,244,245,248,249,250,254,256,257,259,263,270,271,272,274,283,288,289,304,305,306,311,314,315,316,317,319,321,322,323,324,325,326,332,333,334,336,337,338,339,342,343,348,355,360],valuabl:121,value1:108,value2:108,value_from_datadict:338,value_to_obj:249,value_to_obj_or_ani:249,value_to_str:338,valueerror:[40,90,108,122,179,201,203,314,319,322,334,342,343],valuei:110,values_list:118,valuex:110,vanilla:[9,26,48,55,57,85,100,124],vaniti:50,vari:[30,39,59,63,81,107,113,124,130,192,204,220,304,314,316],variabl:[0,3,5,11,13,28,31,33,40,42,45,48,50,52,54,55,57,63,65,68,79,87,90,94,95,96,99,102,103,105,108,112,120,123,132,133,134,136,137,143,147,149,153,155,158,163,166,167,168,169,182,186,187,191,193,194,197,202,231,239,244,245,249,250,262,265,275,278,279,281,285,287,297,304,311,319,320,326,342,348],variable_from_modul:342,variable_nam:[191,194],variablenam:342,varianc:204,variant:[11,54,111,152,179,185,212,276],variat:[61,72,115,151,186,204,226,342],varieti:[54,81,115,119,218,219],variou:[5,6,11,15,24,33,37,39,40,45,46,47,56,61,68,72,76,80,87,88,89,92,93,96,101,102,104,108,109,111,113,114,115,122,123,124,126,136,138,151,167,183,204,205,214,218,219,229,230,240,244,245,250,251,259,297,322,328,339,340],varnam:289,vast:[23,59,85,107,110,118],vastli:63,vcc:204,vccv:204,vccvccvc:204,vcpython27:9,vcv:204,vcvccv:204,vcvcvcc:204,vcvcvvccvcvv:204,vcvvccvvc:204,vector:342,vehicl:[21,123,138,362],velit:51,venu:[130,175],venv:[62,74],verb:[25,301],verbal:[196,245],verbatim_el:342,verbos:[26,115,126,205],verbose_nam:[132,316],veri:[0,2,4,5,6,8,9,10,11,13,14,17,20,21,22,23,26,27,28,29,31,33,35,37,38,39,40,41,45,48,49,50,51,54,55,56,57,59,60,63,66,67,69,71,72,73,76,77,78,79,84,85,87,89,90,92,94,95,96,103,106,107,108,109,110,111,113,114,115,118,120,121,122,124,126,127,128,130,131,133,136,137,138,139,143,145,151,153,169,174,176,179,181,193,194,203,204,205,211,212,213,214,219,226,229,232,233,236,244,269,315,317,322,324,326,342,360],verif:89,verifi:[36,50,62,89,130,158,187,219,290],verify_online_play:187,verify_or_create_ssl_key_and_cert:290,verify_ssl_key_and_cert:286,verifyfunc:187,versa:[39,42,60,87,104,115,163,274],version:[2,4,7,11,13,14,20,21,23,24,29,30,31,33,35,36,37,40,42,46,50,52,53,56,59,60,62,63,73,74,75,78,80,85,86,89,90,94,95,99,107,110,113,122,123,124,125,127,135,136,138,158,166,168,170,180,181,185,186,200,205,217,218,219,220,223,230,245,250,265,270,284,308,313,314,319,327,342,355,362],version_info:265,versu:54,vertic:[136,137,230,328,342],very_strong:240,very_weak:79,vest:102,vet:108,veteran:78,vfill_char:328,via:[10,11,27,37,39,50,51,54,55,56,62,69,72,73,82,84,85,89,91,92,100,102,107,108,113,118,122,124,125,130,136,171,175,176,208,244,254,314,317,319,333],viabl:229,vice:[39,42,60,87,104,115,163,274],vicin:[33,42,164,186,231],video:[78,94,113,136],vienv:9,view:[1,4,17,27,34,40,41,42,49,50,51,54,57,59,62,63,71,79,81,85,89,95,100,101,109,110,114,115,122,123,130,135,138,140,143,155,156,158,163,164,165,168,173,174,181,205,216,217,218,219,220,233,235,237,245,247,300,316,344,348,351,354,355,362],view_attr:158,viewabl:[54,165],viewer:[25,68,205,233,239,245,316],viewport:41,vim:[14,49,78,324],vincent:[179,186,200,203,232],violent:50,virtual:[4,40,42,52,54,56,58,62,78,89,123,168,186,329],virtual_env:74,virtualenv:[9,23,26,36,62,74,75,89,92,94,95,96,99,105,109,127],virtualhost:8,visibl:[13,25,31,36,42,47,53,60,62,68,80,89,95,104,113,122,124,130,138,164,205,239,245,277,310,326,342],visiblelock:239,vision:[11,57,60],visit:[22,48,89,110,132,133,232,326],visitor:[102,133,134],vista:62,visual:[25,56,62,92,113,136,143,165,189],vital:90,vlgeoff:183,vniftg:62,vnum:55,vocabulari:[45,342],voic:[33,45,123,138,362],volum:[21,60,99],volund:118,voluntari:37,volupt:51,vowel:[118,204],vpad_char:328,vulner:[29,102],vvc:204,vvcc:204,vvccv:204,vvccvvcc:204,w001:126,wai:[0,2,5,6,9,10,11,12,13,14,15,19,20,21,22,23,27,28,30,31,33,37,38,39,40,41,42,43,45,47,48,52,53,54,55,56,57,60,61,62,63,67,68,69,71,72,73,74,78,79,81,82,83,84,85,86,87,88,89,90,91,92,94,95,96,97,101,102,103,104,105,106,108,109,110,111,112,113,114,115,116,117,118,120,121,122,123,124,125,126,127,128,130,131,132,135,137,138,139,143,150,151,158,165,174,178,183,184,186,187,189,193,196,197,204,211,212,214,216,217,218,219,220,223,229,230,232,240,245,257,259,265,270,274,285,306,310,311,312,315,317,320,325,326,328,332,335,338,360,362],wail:48,waist:181,wait:[0,10,20,25,27,28,29,33,41,50,101,120,137,145,193,197,216,217,218,219,220,257,265,275,294,296,308,322,342],wait_for_disconnect:275,wait_for_server_connect:275,wait_for_statu:265,wait_for_status_repli:265,waiter:265,wake:187,walias:[42,158],walk:[0,14,21,31,38,45,48,59,61,84,138,212,213,214,233,320],walki:63,wall:[110,156,164,186,230,231],wanna:[37,178],want:[0,2,3,4,5,6,8,9,10,11,12,13,14,15,19,20,21,22,23,25,26,27,28,29,30,31,33,34,35,37,38,39,40,41,42,43,45,47,48,49,50,52,53,56,57,59,60,61,62,63,65,67,68,69,70,71,72,73,74,75,76,77,79,80,81,82,83,84,85,86,87,88,89,90,92,94,95,96,97,101,102,103,104,105,106,107,108,109,110,112,113,114,117,118,120,121,122,124,125,126,127,130,131,132,133,134,135,136,137,139,143,151,152,153,155,164,169,173,178,179,185,186,187,189,196,203,205,208,214,216,217,218,219,220,226,231,233,235,239,240,245,250,257,259,281,283,289,296,306,311,313,314,316,324,327,332,338,342,355,360,361],wanted_id:79,ware:84,warehous:[208,320],wari:[113,233,245,316],warm:[101,109,269],warn:[8,23,27,31,58,59,62,63,89,90,92,103,104,110,127,133,137,139,151,173,209,264,265,290,335,362],warnmsg:335,warrior:[28,56,57,60,121,122],wasclean:[276,293],wasn:[0,41,133],wast:[6,14,114],watch:[14,83,105,138],water:[152,199,202],waterballon:202,wave:110,wcach:[42,168],wcactu:219,wcommandnam:232,wcure:219,wdestin:[42,158],weak:250,weakref:332,weaksharedmemorymodel:[272,332],weaksharedmemorymodelbas:[272,332],weakvalu:332,wealth:84,weapon:[29,50,60,63,72,76,81,84,85,108,115,121,217,229,230,250],weapon_ineffective_msg:229,weapon_prototyp:230,weaponrack_cmdset:230,wear:[81,181,205,217],wearabl:181,wearer:181,wearstyl:181,weather:[30,60,72,101,110,111,114,121,123,138,139,231,362],weather_script:101,weatherroom:[131,231],web:[4,8,9,16,17,23,25,30,46,54,60,62,63,66,68,71,74,75,78,79,93,94,100,108,109,118,138,140,141,172,267,269,279,283,289,293,294,304,308,310,317,323,362],web_client_url:53,web_get_admin_url:[174,237,316],web_get_create_url:[174,237,316],web_get_delete_url:[174,237,316],web_get_detail_url:[174,237,316],web_get_puppet_url:316,web_get_update_url:[174,237,316],webclient:[24,30,39,42,44,53,63,68,82,87,94,102,104,109,113,134,138,140,141,168,260,270,273,289,294,305,344,348,349,358,362],webclient_ajax:[136,140,260,273],webclient_en:102,webclient_opt:270,webclientdata:294,webclienttest:358,webpag:[8,17,76,89,352],webport:36,webserv:[3,7,8,9,23,39,46,54,89,99,100,103,134,138,140,141,260,344],webserver_en:102,webserver_interfac:[66,89],webserver_port:[36,89],webservic:102,websit:[3,9,17,54,56,63,66,68,78,89,97,100,102,123,132,135,136,137,138,140,141,144,294,310,344,349,362],websocket:[24,39,54,63,89,99,136,276,282,293,305],websocket_client_interfac:[66,89],websocket_client_port:89,websocket_client_url:[8,66,89],websocket_clos:293,websocketcli:293,websocketclientfactori:276,websocketclientprotocol:276,websocketserverfactori:282,websocketserverprotocol:293,weed:[26,118,151],week:[61,183,335,343],weeklylogfil:335,weigh:[81,296],weight:[23,60,107,123,138,189,204,315,362],weird:342,weirdli:95,welcom:[3,4,22,24,35,37,62,71,75,84],well:[2,4,6,9,11,12,16,17,19,21,22,23,25,26,33,37,38,39,40,42,43,44,45,48,49,50,51,54,56,57,60,61,63,65,67,68,70,73,74,80,84,87,88,90,95,97,102,103,104,105,107,108,112,115,117,118,119,122,123,124,126,127,130,132,133,134,135,137,147,151,152,153,158,163,168,171,178,181,186,193,201,204,205,214,218,219,220,225,229,245,254,260,265,274,276,277,283,300,308,313,314,315,319,323,326,329,338,342,361],went:[56,109,126,130,255,259],were:[1,10,11,13,24,31,33,37,41,43,50,57,58,63,68,76,81,84,85,90,99,101,103,107,108,118,122,124,125,126,136,143,150,151,152,203,214,245,249,312,316,320,339,342],weren:61,werewolf:25,werewolv:118,werkzeug:342,west:[20,25,43,48,110,158,199,231],west_east:110,west_exit:231,western:110,westward:231,wether:[178,322],wevennia:22,wflame:219,wflushmem:[42,168],wfull:219,what:[0,1,2,4,8,9,10,12,13,14,19,20,21,22,23,25,26,27,29,31,33,38,39,41,42,43,44,45,47,48,50,52,55,56,57,59,60,61,62,63,67,68,69,71,72,73,76,77,78,79,80,82,84,85,87,88,89,92,93,94,95,96,97,101,102,103,104,107,108,109,110,112,113,114,115,116,117,118,120,121,122,123,124,125,126,127,128,129,130,131,132,133,135,137,138,139,143,149,151,152,153,155,158,165,169,174,194,202,203,205,208,213,218,219,223,226,229,231,237,240,245,249,250,265,267,270,277,289,294,309,311,314,316,317,319,320,326,336,337,342,343,347,355,360,362],whatev:[2,11,14,21,22,23,27,33,39,42,45,47,50,55,57,60,63,77,81,88,90,99,101,110,122,126,130,132,133,137,143,145,152,158,187,219,229,230,245,250,254,255,276,285,288,293,306,314,327,336,360],whatnot:137,wheel:[56,62,74,114,256],whelp:232,when:[0,2,3,4,5,6,8,9,10,11,12,13,14,15,17,19,20,21,22,23,26,27,29,30,31,33,34,35,36,37,38,39,40,41,42,43,45,46,48,49,50,51,55,56,57,58,59,60,61,62,63,64,65,67,68,72,73,74,75,76,77,78,79,81,82,83,84,85,86,87,88,89,90,92,94,95,96,97,99,101,102,103,104,105,106,107,108,109,110,111,112,113,115,116,117,118,119,120,121,122,123,124,125,126,127,128,130,131,132,135,136,137,138,140,143,145,147,149,151,152,153,155,157,158,163,164,166,167,168,170,174,175,176,178,179,180,181,183,184,185,186,187,188,189,194,195,196,197,198,199,200,201,202,203,204,205,211,213,214,216,217,218,219,220,222,223,225,226,227,229,230,231,232,233,236,237,239,240,244,245,247,249,250,254,255,257,258,259,262,265,267,271,272,274,275,276,277,278,279,280,281,283,285,286,287,288,289,290,293,294,296,297,303,304,305,306,307,308,314,316,317,319,320,322,323,324,325,326,327,328,332,333,334,335,337,342,355,360],when_stop:265,whenev:[6,10,11,22,25,33,45,63,65,73,75,79,83,86,89,94,97,99,101,105,106,108,110,112,116,118,127,143,152,173,174,229,230,231,245,255,257,267,284,304,305,306],where:[0,1,3,6,9,10,11,12,13,14,20,21,22,25,26,29,31,33,36,38,39,40,41,42,45,47,48,49,50,51,52,55,56,57,58,60,61,63,68,72,74,75,79,82,84,85,87,89,90,94,99,101,102,103,104,107,108,110,112,113,116,117,118,120,121,122,123,124,126,130,132,133,134,135,136,137,138,150,151,156,158,164,167,174,175,180,184,196,198,199,204,205,209,218,230,231,233,239,240,245,248,249,250,255,265,267,270,274,289,297,302,306,313,316,319,320,324,326,327,328,334,336,337,342,360],wherea:[11,12,13,19,21,26,31,33,34,39,41,54,55,60,79,80,84,85,92,96,102,104,108,112,113,115,124,127,204,223,226,259,294,314,332],whereabout:121,wherebi:219,wherev:[11,62,63,99,110,126,179,208,218],whether:[0,12,38,42,45,50,54,61,68,76,120,143,145,152,158,163,165,174,187,214,216,217,218,219,220,239,245,259,276,293,308,314,315,319,334,336,338,342],whewiu:9,which:[0,1,3,4,5,6,9,10,11,12,13,14,15,19,20,22,24,25,26,27,28,29,30,31,33,34,36,37,38,39,40,41,42,43,45,48,50,51,52,55,56,57,58,59,60,61,62,63,64,65,68,70,71,72,73,75,76,79,80,81,82,84,85,86,87,88,89,90,92,93,94,95,96,99,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,124,125,126,130,131,132,133,134,135,136,137,138,139,143,145,149,151,152,153,155,156,158,164,166,167,168,169,173,174,175,176,178,179,180,181,182,183,186,187,189,196,197,198,199,201,205,208,209,211,213,214,216,217,218,219,220,225,226,229,230,231,232,233,237,240,244,245,249,250,254,255,257,258,259,262,264,265,269,270,277,283,285,293,294,296,297,304,305,306,308,311,313,314,315,316,317,319,320,322,323,326,327,328,329,332,334,335,336,338,339,340,342,347,348,355,360,361],whichev:[27,89,102,231],whilst:[76,110,199],whim:138,whisp:204,whisper:[45,164,196,197,204,205,245],white:[47,73,113,125,342],whitelist:73,whitepag:[1,47,137],whitespac:[14,27,33,57,80,118,122,166,167,201,205,319,320,328,342],who:[4,10,11,12,21,34,40,45,48,50,54,55,57,60,72,79,86,94,102,108,113,115,118,120,122,123,124,131,132,137,145,153,155,158,163,173,174,178,187,194,205,216,217,218,219,220,230,237,239,240,245,250,316,324],whoever:132,whole:[4,16,42,48,54,56,59,60,86,95,110,111,121,122,128,137,158,168,220,328],wholist:174,whome:[42,158],whomev:[72,113,120],whose:[87,113,118,124,143,194,205,214,216,217,218,219,220,270,321,326,342],whould:326,why:[0,11,12,20,22,25,38,40,42,43,45,50,54,59,62,63,81,90,94,95,102,110,122,124,125,138,156,203,216,219,220,262,263,326],wide:[16,25,27,38,42,57,60,72,85,90,137,156,218,219,233,325,328,342],widen:12,wider:[12,25,38,42,156,328],widest:342,widget:[144,235,242,313,338,355],width:[16,17,25,27,33,48,73,108,110,113,140,153,248,270,285,304,319,324,325,327,328,334,342],wield:[60,81,108,217],wifi:[89,102],wiki:[1,9,33,37,44,47,54,57,69,78,93,107,110,123,124,137,179,293,361,362],wiki_account_handl:4,wiki_account_signup_allow:4,wiki_can:4,wiki_can_admin:4,wiki_can_assign:4,wiki_can_assign_own:4,wiki_can_change_permiss:4,wiki_can_delet:4,wiki_can_moder:4,wiki_can_read:4,wiki_can_writ:4,wikiconfig:4,wikipedia:[15,54,112,126,130,293],wild:[107,125,130],wildcard:[12,42,56,86,156,158,342],wildcard_to_regexp:342,wilder:[140,141,177],wildernessexit:233,wildernessmap:233,wildernessmapprovid:233,wildernessroom:233,wildernessscript:233,wildli:204,will_suppress_ga:287,will_ttyp:292,willing:[57,60,78],win10:62,win7:62,win8:62,win:[9,24,90,115],wind:[121,131],window:[4,23,25,31,43,44,48,51,52,63,71,75,82,87,88,92,94,95,96,100,104,105,109,127,130,136,137,153,165,265,281,304,308,327,342],windowid:304,windows10:62,wingd:110,winpti:9,winter:186,wintext:72,wipe:[9,13,23,110,137,151,158,168,218],wire:[27,39,63,82,87,89,112,137,167,262,274,275,306,319],wis:57,wisdom:[59,92],wise:[6,11,13,14,15,26,57,59,79,95,117,130,134],wise_text:59,wiseobject:59,wiser:20,wiseword:59,wish:[33,36,38,74,119,130,135,179,220,319,341,355],with_metaclass:95,with_tag:202,withdraw:[115,220],withdrawl:220,within:[1,8,9,10,11,22,24,26,31,33,37,38,42,46,48,50,55,57,63,89,93,94,96,99,113,114,115,116,117,118,119,123,125,130,133,135,136,137,143,147,149,158,178,186,189,191,209,236,245,250,308,314,315,319,334,335,342,355,360],without:[0,8,11,12,13,14,16,20,21,22,23,25,27,29,30,31,33,35,37,39,41,42,43,45,48,49,50,54,56,57,58,59,60,62,63,65,75,79,85,87,89,90,91,92,95,96,99,100,103,106,107,108,113,114,117,118,120,122,124,125,126,127,128,130,132,135,137,138,143,145,150,153,155,156,158,163,164,166,167,168,169,176,178,180,181,186,191,194,196,199,204,205,211,214,216,219,220,229,231,240,245,248,249,250,257,258,274,285,288,289,296,306,307,314,316,319,320,322,323,324,326,327,334,338,339],withstand:79,wiz:57,wizard:[108,250,263,265],wkei:[42,158],wlocat:[42,158],wlock:[42,158],wmagic:219,wmass:219,wndb_:[42,158],won:[0,2,4,10,11,12,13,15,21,22,23,29,31,40,41,45,56,60,62,68,72,77,80,82,84,85,90,94,95,99,110,113,118,122,124,126,133,136,137,152,187,203,222,223,225,226,310,319,334,338],wonder:[9,16,55,81,118,137],wont_suppress_ga:287,wont_ttyp:292,wooden:108,woosh:21,word:[14,27,33,42,45,48,49,52,61,68,69,71,75,87,88,90,92,93,94,95,96,110,118,121,125,130,135,150,166,167,170,185,197,204,205,277,324,339,342],word_fil:204,word_length_vari:204,wordi:204,work:[0,2,4,5,8,9,10,11,13,14,15,16,20,21,22,23,24,25,26,27,28,29,31,34,36,37,40,41,42,43,47,48,50,52,55,56,57,58,59,60,61,62,63,65,69,70,71,74,79,80,82,83,84,85,88,89,92,93,94,95,96,101,102,104,105,107,108,110,111,113,114,115,116,118,121,122,123,125,126,127,128,131,132,133,135,137,138,149,152,153,155,158,163,164,166,168,173,174,178,179,180,186,201,202,205,211,214,218,219,220,231,232,233,237,239,240,245,249,250,265,269,270,282,297,310,312,314,316,320,325,328,336,342,360,361,362],workaround:[62,99,130],workflow:[60,144],world:[9,10,11,13,14,15,21,27,31,33,34,38,40,46,48,50,54,56,57,59,61,62,63,67,71,72,77,78,79,81,85,89,95,103,107,108,110,112,115,116,120,122,123,126,130,136,138,143,157,158,165,173,178,183,199,201,205,216,217,218,219,220,230,231,233,237,254,304,306,319,320,329,361,362],world_map:110,worm:48,worm_has_map:48,worn:[181,217],worri:[0,11,15,36,38,40,50,54,103,112,113,122,126,137,178,226],worst:60,worth:[0,8,21,29,50,60,69,78,90,92,123,124,132,178],worthi:60,worthless:89,would:[0,1,4,6,8,9,10,11,13,14,15,16,19,20,21,22,25,27,29,31,33,36,38,40,41,42,43,45,47,48,50,54,55,56,57,59,60,61,62,63,67,68,72,76,79,80,81,84,85,87,88,89,90,92,94,95,99,101,104,105,108,110,111,113,114,115,116,117,118,120,122,124,125,126,127,132,133,134,135,137,139,143,150,151,152,158,167,174,178,183,194,196,204,214,223,226,232,233,237,239,240,249,250,277,313,316,319,320,323,326,334,337,338,340],wouldn:[38,125,137],wound:219,wow:[68,137],wpermiss:[42,158],wprototype_desc:[42,158],wprototype_kei:[42,158],wprototype_lock:[42,158],wprototype_par:[42,158],wprototype_tag:[42,158],wrap:[10,30,48,50,58,95,101,108,118,135,181,187,205,272,312,328,342],wrap_conflictual_object:338,wrapper:[10,27,29,50,73,85,92,104,118,124,143,147,174,175,176,211,237,244,245,254,258,270,272,304,313,314,316,317,319,328,332,333,335,342,360],wresid:[42,168],write:[0,4,10,11,14,15,16,20,22,23,25,27,31,33,34,37,40,42,43,44,45,47,50,52,55,57,61,62,64,67,68,70,71,86,87,90,92,93,95,107,122,123,124,128,129,130,137,158,165,173,179,196,208,209,232,245,278,335,340,360,362],writeabl:74,written:[15,27,53,55,56,57,60,78,102,108,126,132,133,165,208,320,360],wrong:[26,40,41,42,59,62,80,84,94,109,126,151,158,168,205],wserver:[42,168],wservic:[42,163],wsgi:[8,93,310],wsgi_resourc:310,wsgiwebserv:310,wsl:62,wss:[8,66,89],wtypeclass:[42,158],wwhere:[196,245],www:[8,9,22,54,107,127,132,140,280,281,287,289,341,355],wyou:81,x0c:158,x1b:[319,341],x2x:57,x4x:325,x5x:325,x6x:325,x7x:325,x8x:325,x9x:325,x_r:38,xcode:62,xforward:310,xgettext:75,xit:[22,179],xmlcharrefreplac:319,xp_gain:72,xpo:328,xterm256:[42,54,73,80,82,136,155,182,189,270,285,288,319,362],xterm256_bg:319,xterm256_bg_sub:319,xterm256_fg:319,xterm256_fg_sub:319,xterm256_gbg:319,xterm256_gbg_sub:319,xterm256_gfg:319,xterm256_gfg_sub:319,xterm:[113,125],xterms256:113,xval:33,xxx:[25,41,203],xxxx:203,xxxxx1xxxxx:325,xxxxx3xxxxx:325,xxxxxxx2xxxxxxx:325,xxxxxxxxxx3xxxxxxxxxxx:57,xxxxxxxxxx4xxxxxxxxxxx:57,xxxxxxxxxxx:325,xxxxxxxxxxxxxx1xxxxxxxxxxxxxxx:57,xxxxxxxxxxxxxxxxxxxxxx:57,xxxxxxxxxxxxxxxxxxxxxxxxxxxxxx:57,xyz:86,y_r:38,yan:113,yank:49,yeah:137,year:[54,60,61,87,89,107,183,329,335,342,355],yearli:[61,89],yellow:[113,125,130,230],yep:137,yes:[10,33,38,45,50,125,137,158,197,263,324,342],yesno:[50,324],yet:[0,2,4,12,14,22,25,28,35,36,40,41,45,48,50,53,59,62,63,75,78,85,89,93,95,104,108,110,118,120,127,130,132,133,137,143,170,178,185,194,199,240,244,283,306,310,319,360],yield:[10,23,33,79,107,158,209,328,342],yml:[99,129],yogurt:202,you:[0,1,2,3,4,5,6,8,9,10,11,12,13,14,15,16,17,19,20,21,22,23,25,27,28,29,30,31,33,34,35,36,37,38,39,40,41,42,43,45,46,47,48,49,50,52,53,55,56,57,58,59,60,61,62,63,64,65,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,94,95,96,97,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,143,152,153,155,158,163,164,165,166,167,168,169,170,173,178,179,180,181,182,183,186,187,189,192,193,194,196,197,198,199,200,201,202,203,204,205,208,209,211,212,213,214,216,217,218,219,220,222,223,225,226,230,231,232,233,235,239,240,245,250,256,257,259,267,276,277,278,294,296,306,308,310,311,314,316,319,320,322,325,326,328,329,338,339,342,355,360,361],young:76,your:[0,1,3,5,6,7,8,9,10,11,12,13,14,15,16,17,21,22,23,25,27,29,30,31,34,35,36,37,40,41,42,43,44,45,46,47,48,49,50,52,53,54,55,56,57,58,60,61,62,63,64,65,66,67,68,69,70,71,72,74,75,76,77,78,79,80,81,82,84,86,87,90,92,94,95,97,100,101,103,104,105,106,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,128,129,131,133,134,135,137,138,139,143,147,150,152,153,155,156,158,163,164,168,169,170,178,179,181,182,183,184,185,186,187,189,193,196,199,203,204,205,208,209,212,214,216,217,218,219,220,222,230,231,232,233,239,240,244,296,313,316,319,324,326,328,338,339,340,342,343,355,360,362],your_email:130,yourgam:208,yourhost:66,yournam:8,yourpassword:23,yourrepo:105,yourself:[0,2,5,6,14,16,19,22,23,26,31,37,41,42,50,54,57,62,68,69,72,77,79,85,88,89,90,95,101,107,110,118,122,124,129,130,134,158,164,178,188,205,211,219,222,326],yoursit:132,yourusernam:130,yourwebsit:132,yousuck:12,yousuckmor:12,youth:187,youtub:130,ypo:328,yrs:183,ythi:113,yum:[8,66,130],yvonn:57,z_r:38,zed:[76,78],zero:[20,27,108,205,245,314,319],zine:60,zip:102,zlib:[74,274,278],zmud:[24,280],zone:[18,45,54,55,69,78,111,118,121,123,138,317,335,362],zope:96,zopeinterfac:62,zuggsoft:280},titles:["A voice operated elevator using events","API refactoring","Accounts","Add a simple new web page","Add a wiki on your website","Adding Command Tutorial","Adding Object Typeclass Tutorial","Administrative Docs","Apache Config","Arxcode installing help","Async Process","Attributes","Banning","Batch Code Processor","Batch Command Processor","Batch Processors","Bootstrap & Evennia","Bootstrap Components and Utilities","Builder Docs","Building Permissions","Building Quickstart","Building a mech tutorial","Building menus","Choosing An SQL Server","Client Support Grid","Coding FAQ","Coding Introduction","Coding Utils","Command Cooldown","Command Duration","Command Prompt","Command Sets","Command System","Commands","Communications","Connection Screen","Continuous Integration","Contributing","Coordinates","Custom Protocols","Customize channels","Debugging","Default Command Help","Default Exit Errors","Developer Central","Dialogues in events","Directory Overview","Docs refactoring","Dynamic In Game Map","EvEditor","EvMenu","EvMore","Evennia API","Evennia Game Index","Evennia Introduction","Evennia for Diku Users","Evennia for MUSH Users","Evennia for roleplaying sessions","Execute Python Code","First Steps Coding","Game Planning","Gametime Tutorial","Getting Started","Glossary","Grapevine","Guest Logins","HAProxy Config (Optional)","Help System","Help System Tutorial","How To Get And Give Help","How to connect Evennia to Twitter","IRC","Implementing a game rule system","Inputfuncs","Installing on Android","Internationalization","Learn Python for Evennia The Hard Way","Licensing","Links","Locks","Manually Configuring Color","Mass and weight for objects","Messagepath","MonitorHandler","NPC shop Tutorial","New Models","Nicks","OOB","Objects","Online Setup","Parsing command arguments, theory and best practices","Portal And Server","Profiling","Python 3","Python basic introduction","Python basic tutorial part two","Quirks","RSS","Roadmap","Running Evennia in Docker","Screenshot","Scripts","Security","Server Conf","Sessions","Setting up PyCharm","Signals","Soft Code","Spawner and Prototypes","Start Stop Reload","Static In Game Map","Tags","Text Encodings","TextTags","TickerHandler","Turn based Combat System","Tutorial Aggressive NPCs","Tutorial NPCs listening","Tutorial Searching For Objects","Tutorial Tweeting Game Stats","Tutorial Vehicles","Tutorial World Introduction","Tutorial for basic MUSH like game","Tutorials","Typeclasses","Understanding Color Tags","Unit Testing","Updating Your Game","Using MUX as a Standard","Using Travis","Version Control","Weather Tutorial","Web Character Generation","Web Character View Tutorial","Web Features","Web Tutorial","Webclient","Webclient brainstorm","Wiki Index","Zones","evennia","evennia","evennia.accounts","evennia.accounts.accounts","evennia.accounts.admin","evennia.accounts.bots","evennia.accounts.manager","evennia.accounts.models","evennia.commands","evennia.commands.cmdhandler","evennia.commands.cmdparser","evennia.commands.cmdset","evennia.commands.cmdsethandler","evennia.commands.command","evennia.commands.default","evennia.commands.default.account","evennia.commands.default.admin","evennia.commands.default.batchprocess","evennia.commands.default.building","evennia.commands.default.cmdset_account","evennia.commands.default.cmdset_character","evennia.commands.default.cmdset_session","evennia.commands.default.cmdset_unloggedin","evennia.commands.default.comms","evennia.commands.default.general","evennia.commands.default.help","evennia.commands.default.muxcommand","evennia.commands.default.syscommands","evennia.commands.default.system","evennia.commands.default.tests","evennia.commands.default.unloggedin","evennia.comms","evennia.comms.admin","evennia.comms.channelhandler","evennia.comms.comms","evennia.comms.managers","evennia.comms.models","evennia.contrib","evennia.contrib.barter","evennia.contrib.building_menu","evennia.contrib.chargen","evennia.contrib.clothing","evennia.contrib.color_markups","evennia.contrib.custom_gametime","evennia.contrib.dice","evennia.contrib.email_login","evennia.contrib.extended_room","evennia.contrib.fieldfill","evennia.contrib.gendersub","evennia.contrib.health_bar","evennia.contrib.ingame_python","evennia.contrib.ingame_python.callbackhandler","evennia.contrib.ingame_python.commands","evennia.contrib.ingame_python.eventfuncs","evennia.contrib.ingame_python.scripts","evennia.contrib.ingame_python.tests","evennia.contrib.ingame_python.typeclasses","evennia.contrib.ingame_python.utils","evennia.contrib.mail","evennia.contrib.mapbuilder","evennia.contrib.menu_login","evennia.contrib.multidescer","evennia.contrib.puzzles","evennia.contrib.random_string_generator","evennia.contrib.rplanguage","evennia.contrib.rpsystem","evennia.contrib.security","evennia.contrib.security.auditing","evennia.contrib.security.auditing.outputs","evennia.contrib.security.auditing.server","evennia.contrib.security.auditing.tests","evennia.contrib.simpledoor","evennia.contrib.slow_exit","evennia.contrib.talking_npc","evennia.contrib.tree_select","evennia.contrib.turnbattle","evennia.contrib.turnbattle.tb_basic","evennia.contrib.turnbattle.tb_equip","evennia.contrib.turnbattle.tb_items","evennia.contrib.turnbattle.tb_magic","evennia.contrib.turnbattle.tb_range","evennia.contrib.tutorial_examples","evennia.contrib.tutorial_examples.bodyfunctions","evennia.contrib.tutorial_examples.cmdset_red_button","evennia.contrib.tutorial_examples.example_batch_code","evennia.contrib.tutorial_examples.red_button","evennia.contrib.tutorial_examples.red_button_scripts","evennia.contrib.tutorial_examples.tests","evennia.contrib.tutorial_world","evennia.contrib.tutorial_world.mob","evennia.contrib.tutorial_world.objects","evennia.contrib.tutorial_world.rooms","evennia.contrib.unixcommand","evennia.contrib.wilderness","evennia.help","evennia.help.admin","evennia.help.manager","evennia.help.models","evennia.locks","evennia.locks.lockfuncs","evennia.locks.lockhandler","evennia.objects","evennia.objects.admin","evennia.objects.manager","evennia.objects.models","evennia.objects.objects","evennia.prototypes","evennia.prototypes.menus","evennia.prototypes.protfuncs","evennia.prototypes.prototypes","evennia.prototypes.spawner","evennia.scripts","evennia.scripts.admin","evennia.scripts.manager","evennia.scripts.models","evennia.scripts.monitorhandler","evennia.scripts.scripthandler","evennia.scripts.scripts","evennia.scripts.taskhandler","evennia.scripts.tickerhandler","evennia.server","evennia.server.admin","evennia.server.amp_client","evennia.server.connection_wizard","evennia.server.deprecations","evennia.server.evennia_launcher","evennia.server.game_index_client","evennia.server.game_index_client.client","evennia.server.game_index_client.service","evennia.server.initial_setup","evennia.server.inputfuncs","evennia.server.manager","evennia.server.models","evennia.server.portal","evennia.server.portal.amp","evennia.server.portal.amp_server","evennia.server.portal.grapevine","evennia.server.portal.irc","evennia.server.portal.mccp","evennia.server.portal.mssp","evennia.server.portal.mxp","evennia.server.portal.naws","evennia.server.portal.portal","evennia.server.portal.portalsessionhandler","evennia.server.portal.rss","evennia.server.portal.ssh","evennia.server.portal.ssl","evennia.server.portal.suppress_ga","evennia.server.portal.telnet","evennia.server.portal.telnet_oob","evennia.server.portal.telnet_ssl","evennia.server.portal.tests","evennia.server.portal.ttype","evennia.server.portal.webclient","evennia.server.portal.webclient_ajax","evennia.server.profiling","evennia.server.profiling.dummyrunner","evennia.server.profiling.dummyrunner_settings","evennia.server.profiling.memplot","evennia.server.profiling.settings_mixin","evennia.server.profiling.test_queries","evennia.server.profiling.tests","evennia.server.profiling.timetrace","evennia.server.server","evennia.server.serversession","evennia.server.session","evennia.server.sessionhandler","evennia.server.signals","evennia.server.throttle","evennia.server.validators","evennia.server.webserver","evennia.settings_default","evennia.typeclasses","evennia.typeclasses.admin","evennia.typeclasses.attributes","evennia.typeclasses.managers","evennia.typeclasses.models","evennia.typeclasses.tags","evennia.utils","evennia.utils.ansi","evennia.utils.batchprocessors","evennia.utils.containers","evennia.utils.create","evennia.utils.dbserialize","evennia.utils.eveditor","evennia.utils.evform","evennia.utils.evmenu","evennia.utils.evmore","evennia.utils.evtable","evennia.utils.gametime","evennia.utils.idmapper","evennia.utils.idmapper.manager","evennia.utils.idmapper.models","evennia.utils.idmapper.tests","evennia.utils.inlinefuncs","evennia.utils.logger","evennia.utils.optionclasses","evennia.utils.optionhandler","evennia.utils.picklefield","evennia.utils.search","evennia.utils.test_resources","evennia.utils.text2html","evennia.utils.utils","evennia.utils.validatorfuncs","evennia.web","evennia.web.urls","evennia.web.utils","evennia.web.utils.backends","evennia.web.utils.general_context","evennia.web.utils.middleware","evennia.web.utils.tests","evennia.web.webclient","evennia.web.webclient.urls","evennia.web.webclient.views","evennia.web.website","evennia.web.website.forms","evennia.web.website.templatetags","evennia.web.website.templatetags.addclass","evennia.web.website.tests","evennia.web.website.urls","evennia.web.website.views","VERSION WARNING","Toc"],titleterms:{"3rd":137,"9th":137,"case":0,"class":[22,27,33,40,95,124,126],"default":[5,6,25,30,42,43,54,59,73,79,136,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170],"final":[48,74],"function":[22,41,79,88,94,101,113],"goto":50,"import":[26,40,52,94],"new":[3,4,6,57,59,68,85,96,101,113,124,126,132],"public":53,"return":[50,58,104],"static":110,"super":19,"switch":40,"try":40,Adding:[0,4,5,6,9,20,25,31,38,39,40,43,73,85,111,120,132],And:[69,91],For:118,NOT:76,PMs:57,TLS:8,The:[3,10,11,13,14,16,18,19,22,26,29,40,45,46,48,49,50,57,68,76,82,84,92,95,108,115,122,134],USE:76,Use:[26,102],Using:[48,51,83,85,89,92,108,111,126,128,129,139],Yes:50,__unloggedin_look_command:42,abort:29,about:[29,42,114,124,127],abus:12,access:42,access_typ:79,account:[2,42,57,63,96,142,143,144,145,146,147,155],activ:[56,132],actual:[33,124],add:[3,4,23,25,59],add_choic:22,addclass:357,addcom:42,adding:126,addit:[9,38,40,43,99],address:25,admin:[42,63,96,134,144,156,172,235,242,252,261,313],administr:7,advanc:[18,29,86,109],affect:239,aggress:116,alia:[42,96],alias:111,all:[25,68],allcom:42,alpha:60,altern:[9,105],amp:274,amp_client:262,amp_serv:275,analyz:92,android:74,ani:[13,54],annot:118,anoth:[40,118],ansi:[27,113,125,319],apach:8,api:[1,44,52,136],app:[68,132],arbitrari:50,area:[110,122],arg:90,arg_regex:33,argument:[1,50,90],arm:21,arx:9,arxcod:9,ascii:27,ask:[33,50],assign:[19,33],assort:[10,14,31,33,39,50,111,117],async:10,asynchron:10,attach:[105,106],attack:122,attribut:[11,63,96,314],attributehandl:11,audit:[207,208,209,210],aug:[1,47],auto:67,automat:25,avail:[35,58,106],backend:347,ban:[12,42],barter:178,base:[25,108,115],basic:[4,13,14,18,54,70,94,95,122,126,135],batch:[13,14,15,320],batchcod:[13,42],batchcommand:42,batchprocess:[42,157],batchprocessor:320,befor:26,best:90,beta:60,between:[13,50,124],blank:24,block:[13,29],bodyfunct:222,boot:[12,42],bootstrap:[16,17],border:17,bot:145,brainstorm:[44,137],branch:[50,130],bridg:76,brief:[54,68],briefli:87,bug:96,build:[18,19,20,21,22,42,48,57,60,84,110,123,158],builder:18,building_menu:[22,179],busi:84,button:[17,20],calendar:61,call:33,callback:[0,45,136],callbackhandl:191,caller:50,can:[11,22,54,66],capcha:132,card:17,care:102,caveat:[13,14,74,113,124],cboot:42,ccreat:42,cdesc:42,cdestroi:42,cemit:42,central:44,chainsol:137,chang:[0,5,6,25,57,59,75,96,102,107,127,130,135],channel:[25,34,40,42,57,63],channelhandl:173,charact:[6,24,25,45,57,59,60,63,72,81,88,95,122,132,133],charcreat:42,chardelet:42,chargen:[122,180],chat:137,cheat:41,check:[11,79],checker:26,checkpoint:132,choic:22,choos:23,clean:9,clickabl:113,client:[24,82,87,89,134,136,267],client_opt:73,clock:42,clone:[9,130],cloth:181,cloud9:89,cmdabout:42,cmdaccess:42,cmdaddcom:42,cmdallcom:42,cmdban:42,cmdbatchcod:42,cmdbatchcommand:42,cmdboot:42,cmdcboot:42,cmdcdesc:42,cmdcdestroi:42,cmdcemit:42,cmdchannel:42,cmdchannelcr:42,cmdcharcreat:42,cmdchardelet:42,cmdclock:42,cmdcolortest:42,cmdcopi:42,cmdcpattr:42,cmdcreat:42,cmdcwho:42,cmddelcom:42,cmddesc:42,cmddestroi:42,cmddig:42,cmddrop:42,cmdemit:42,cmdexamin:42,cmdfind:42,cmdforc:42,cmdget:42,cmdgive:42,cmdhandler:149,cmdhelp:42,cmdhome:42,cmdic:42,cmdinventori:42,cmdirc2chan:42,cmdlink:42,cmdlistcmdset:42,cmdlock:42,cmdlook:42,cmdmvattr:42,cmdname:42,cmdnewpassword:42,cmdnick:42,cmdobject:42,cmdooc:42,cmdooclook:42,cmdopen:42,cmdoption:42,cmdpage:42,cmdparser:150,cmdpassword:42,cmdperm:42,cmdpose:42,cmdpy:42,cmdquell:42,cmdquit:42,cmdreload:42,cmdreset:42,cmdrss2chan:42,cmdsai:42,cmdscript:42,cmdserverload:42,cmdservic:42,cmdsession:42,cmdset:[5,42,151],cmdset_account:159,cmdset_charact:160,cmdset_red_button:223,cmdset_sess:161,cmdset_unloggedin:162,cmdsetattribut:42,cmdsetdesc:42,cmdsethandl:152,cmdsethelp:42,cmdsethom:42,cmdsetobjalia:42,cmdshutdown:42,cmdspawn:42,cmdstyle:42,cmdtag:42,cmdteleport:42,cmdtime:42,cmdtunnel:42,cmdtypeclass:42,cmdunban:42,cmdunconnectedconnect:42,cmdunconnectedcr:42,cmdunconnectedhelp:42,cmdunconnectedlook:42,cmdunconnectedquit:42,cmdunlink:42,cmdwall:42,cmdwhisper:42,cmdwho:42,cmdwipe:42,code:[8,13,22,25,26,27,40,41,49,58,59,60,72,84,86,107,123,127,130,320],collabor:56,color:[17,25,27,42,80,125],color_markup:182,colour:113,combat:[115,122],comfort:99,comm:[42,163,171,172,173,174,175,176],command:[5,14,22,25,28,29,30,31,32,33,35,40,41,42,43,44,57,59,61,67,70,80,84,87,90,96,99,115,120,122,126,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,192,320],comment:[43,48],commit:130,commun:[13,34],complet:79,complex:[22,118],compon:[17,44],comput:89,concept:[44,48,115],conclud:[38,122],conclus:[22,40,90,110],condit:[25,118],conf:103,config:[8,66,80],configur:[8,23,64,70,71,80,97,105,130,132],congratul:60,connect:[35,42,53,70,89,96],connection_wizard:263,contain:[99,321],content:[25,54],continu:36,contrib:[22,37,123,126,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233],contribut:37,control:130,convert:90,cooldown:28,coordin:38,copi:[8,42],core:[44,55,63],cpattr:42,cprofil:92,creat:[0,2,3,5,6,12,20,21,27,33,36,42,68,85,88,96,99,110,120,122,124,132,322],createnpc:122,creatur:99,credit:78,crop:27,current:[41,61],custom:[4,5,7,10,22,39,40,50,56,61,79,80,104,112,123,126,134,136],custom_gametim:183,cwho:42,data:[6,11,39,50,104,105],databas:[9,67,85,96,108,127],dbserial:323,deal:101,debug:[13,41,102],debugg:105,decor:[10,50],dedent:27,dedic:132,defaultobject:96,defin:[31,33,34,50,79,85,101,130],definit:79,delai:[10,27,29],delcom:42,delimit:25,demo:60,depend:[9,127],deploi:99,deprec:264,desc:[42,50],descer:56,descript:99,design:84,destroi:42,detail:[42,68,132],develop:[44,56,78,99,102,109,123,126],dialogu:45,dice:[57,184],dictionari:50,differ:[55,124],dig:42,diku:55,direct:105,directori:[46,89,103],disabl:102,discuss:78,displai:[24,27,48,61],django:[63,79,109,118,132,134],doc:[7,18,26,47],docker:99,document:[37,128,361],don:[13,54,99],donat:37,down:[20,109,120],drop:42,dummyrunn:[92,296],dummyrunner_set:297,durat:29,dure:109,dynam:[33,48,50],earli:7,echo:73,edit:[22,49,122],editnpc:122,editor:49,effect:239,elev:0,email_login:185,emit:42,emul:55,encod:[15,112],encrypt:89,end:40,engin:123,enjoi:8,enter:[24,120],entir:0,entri:[20,67],error:[43,94,101,109],eveditor:[49,324],evennia:[4,5,7,8,9,16,23,25,26,40,41,44,46,52,53,54,55,56,57,66,70,74,75,76,78,89,90,94,95,99,105,108,109,123,125,126,127,130,136,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,256,257,258,259,260,261,262,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,303,304,305,306,307,308,309,310,311,312,313,314,315,316,317,318,319,320,321,322,323,324,325,326,327,328,329,330,331,332,333,334,335,336,337,338,339,340,341,342,343,344,345,346,347,348,349,350,351,352,353,354,355,356,357,358,359,360,361],evennia_launch:265,evenniatest:126,event:[0,45,61],eventfunc:193,everi:30,everyth:22,evform:[57,325],evmenu:[25,50,326],evmor:[51,327],evtabl:[25,57,328],examin:[41,42],exampl:[38,41,45,49,50,72,79,89,101,107,115,126,136,320],example_batch_cod:224,execut:[41,58],exercis:76,exist:[6,124],exit:[0,6,25,33,43,88],expand:[115,120],explan:22,explor:[26,95],extended_room:186,extern:102,familiar:[55,56],faq:25,faster:126,featur:[54,68,134],feel:55,field:63,fieldfil:187,file:[13,14,15,42,103,126,130,320],fill:27,find:[38,42,58],firewal:102,first:[0,22,45,56,59,94,123],fix:130,folder:[9,26,130],forc:42,foreground:109,forget:96,fork:[37,130],form:[17,132,355],format:50,forum:78,framework:78,from:[4,20,25,50,52,54,59,89,95,99,132,136,137],front:135,full:[22,40,68],func:40,further:[8,10,135],futur:[21,137],game:[7,26,27,38,44,46,48,53,54,56,57,58,60,61,72,89,99,110,119,122,123,126,127,130],game_index_cli:[266,267,268],gameplai:121,gametim:[61,329],gap:76,gendersub:188,gener:[17,22,40,42,44,78,122,123,132,164],general_context:348,get:[20,42,50,62,69,118],get_client_opt:73,get_input:50,get_inputfunc:73,get_valu:73,git:[63,130],github:63,give:[42,69],given:111,global:[90,101],glossari:63,gmcp:87,godhood:20,goldenlayout:136,googl:132,grant:57,grapevin:[64,276],griatch:[1,47,137],grid:[24,48],group:118,guest:65,gui:137,guid:9,handl:[12,68,102,109],handler:[106,115],haproxi:66,hard:76,have:122,health_bar:189,hello:94,help:[9,20,26,37,42,67,68,69,165,234,235,236,237],here:[26,54,59,95],hierarchi:57,hint:8,home:42,hook:124,host:89,hous:20,how:[2,33,57,69,70,88,99,112,120,124],html:[3,132],http:[8,66],idea:137,idmapp:[330,331,332,333],imag:[99,102],implement:72,improv:68,index:[53,68,132,138],info:[78,109],inform:[44,89],infrastructur:72,ingame_python:[190,191,192,193,194,195,196,197],ingo:82,inherit:139,inherits_from:27,initi:[6,23,25,115],initial_setup:269,inlin:113,inlinefunc:[113,334],input:[33,50,87],inputfunc:[73,82,87,270],insid:118,instal:[4,7,8,9,23,62,70,74,89,99,121,130,132],instanc:[33,85,124],instruct:87,integr:36,interact:[10,13,14,26],interfac:102,internation:75,interpret:105,introduct:[9,26,48,50,54,92,94,110,121,132],inventori:[42,81],irc2chan:42,irc:[71,277],issu:24,jan:137,johnni:1,join:40,jumbotron:17,just:54,kei:[22,24,50,108],keyword:45,kill:109,know:[54,102],known:96,kovitiku:47,languag:75,last:25,latest:[99,127],latin:25,launch:[49,50],layout:[16,40,46],learn:[26,54,76],leav:[40,120],legend:24,let:[13,41,68,89],librari:[46,95],licens:77,life:7,lift:12,like:[13,55,122],limit:[13,14,118],line:[21,24,41,49],link:[42,78,93,113],linux:[36,62,109],list:41,list_nod:50,listen:117,literatur:78,live:109,local:[89,90],lock:[11,42,79,120,238,239,240],lockdown:89,lockfunc:239,lockhandl:240,log:[9,27,68,94,102],logfil:105,logger:335,login:[65,73],logo:135,longer:45,look:[5,42,55,94,122],mac:[62,109],machin:89,magic:96,mail:[130,198],make:[20,21,27,56,57,59,120,122,126,130],manag:[4,136,146,175,236,243,253,271,315,331],manual:[53,80],map:[48,110],mapbuild:199,mapper:48,mariadb:23,mass:81,master:[57,130],match:96,mccp:278,mech:21,mechan:123,memplot:298,menu:[22,27,50,84,247],menu_login:200,merg:31,messag:[0,25,82,87],messagepath:82,method:[33,40,80,96],middlewar:349,migrat:[4,63,127],mind:130,mini:126,minimap:110,miscellan:123,mob:229,mod_proxi:8,mod_ssl:8,mod_wsgi:8,mode:[13,14,63,89,104,109],model:[85,126,132,147,176,237,244,254,272,316,332],modif:57,modifi:[8,30],modul:[70,72,93,94,108,115],monitor:73,monitorhandl:[83,255],more:[16,29,56,79,80,127,134],most:26,move:[25,120],msdp:87,msg:[34,80,82],mssp:279,mud:78,multi:56,multidesc:[56,201],multipl:[11,118],multisess:[63,104],mush:[56,122],mutabl:[11,96],mux:[128,239],muxcommand:166,mvattr:42,mxp:280,mysql:23,name:[12,42,87,96,239],naw:281,ndb:11,need:[0,54],nest:22,next:[56,62,70],nice:66,nick:[42,86],node:50,non:[11,25,28,53],nop:24,note:[8,10,14,15,31,33,39,50,86,111,117,121,126],npc:[84,116,117,122],number:90,object:[5,6,11,20,25,27,42,58,59,60,63,79,81,88,95,96,104,110,111,118,120,123,230,241,242,243,244,245],objmanipcommand:42,obtain:132,oct:137,octob:137,off:25,offici:78,olc:108,older:136,one:38,onli:109,onlin:[89,130],oob:87,ooc:42,open:[42,84],oper:[0,10],option:[1,22,42,50,57,66,89,90,102,109],optionclass:336,optionhandl:337,other:[23,33,44,78,89,103],our:[0,22,68,94,95,107,120,132],out:[39,57],outgo:82,output:[58,208],outputcommand:87,outputfunc:87,outsid:[58,89],overal:72,overload:[80,124,134],overrid:96,overview:[36,46,85,115,135],own:[2,33,39,73,88,89,99,136],page:[3,4,42,68,134,135],parent:[56,85],pars:[25,40,90,94],part:95,parti:78,password:42,patch:37,path:[13,82],paus:[0,29,33],pax:9,pdb:41,perm:42,permiss:[19,57,79,111],perpetu:60,persist:[11,28,29,49],person:20,picklefield:338,pictur:132,pip:[4,63],plai:66,plan:[26,60,110],player:56,plugin:136,point:26,polici:128,port:[89,102],portal:[82,91,104,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294],portalsess:82,portalsessionhandl:[82,283],pose:42,posit:1,post:137,postgresql:23,practic:90,prepar:36,prerequisit:74,press:24,prevent:25,privileg:4,problem:107,process:[10,109],processor:[13,14,15,320],product:[21,99],profil:[92,295,296,297,298,299,300,301,302],program:[41,54],progress:76,project:[36,105],prompt:[30,50],properti:[2,11,31,33,34,50,63,88,101,104,111,124],protfunc:[108,248],protocol:[39,44,54,87],prototyp:[108,246,247,248,249,250],proxi:[8,89],publicli:130,pudb:41,puppet:63,push:[20,130],put:[68,130],puzzl:202,pycharm:105,python:[13,26,54,56,58,70,76,78,93,94,95],quell:[19,42,79],queri:[118,124],quick:[36,62],quickli:66,quickstart:20,quiet:90,quirk:96,quit:42,random_string_gener:203,read:[10,26,134,135],real:13,reboot:109,recapcha:132,receiv:[39,87],red_button:225,red_button_script:226,reduc:1,refactor:[1,47],refer:25,regist:89,relat:[44,61],releas:60,relev:89,reli:13,reload:[8,25,42,96,109],remark:122,rememb:52,remind:68,remot:[89,130],remov:[25,111],repeat:[50,73],repo:9,repositori:[26,37,63,130],requir:62,reset:[42,109,127],reshuffl:20,resourc:78,restart:8,retriev:11,roadmap:98,role:57,roleplai:57,roller:57,rom:55,room:[0,6,25,38,48,57,60,81,88,231],rplanguag:204,rpsystem:205,rss2chan:42,rss:[97,284],rule:[31,72,115],run:[4,7,33,41,54,74,99,105,126],runner:126,safeti:13,sage:47,sai:42,same:[45,50],save:11,schema:127,score:122,screen:35,screenshot:100,script:[42,63,101,120,194,251,252,253,254,255,256,257,258,259],scripthandl:256,search:[27,31,38,85,90,111,118,339],secret:132,secur:[8,66,102,206,207,208,209,210],see:[68,96],select:25,self:90,send:[24,30,39,87],sent:30,separ:22,sept:[1,47],server:[7,8,23,42,75,89,91,103,104,122,209,260,261,262,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,303,304,305,306,307,308,309,310],serverconf:103,serversess:[82,304],serversessionhandl:82,servic:[42,268],session:[25,42,57,63,82,104,305],sessionhandl:[104,306],set:[4,5,9,31,42,48,50,53,61,64,71,79,80,89,97,102,103,105,122,126,130],setdesc:42,sethelp:42,sethom:42,setpow:122,settings_default:311,settings_mixin:299,setup:[8,9,23,36,89],sever:[38,45,90],share:130,sharedmemorymodel:85,sheet:[41,57],shell:95,shop:84,shortcut:11,show:122,shut:109,shutdown:42,signal:[106,307],simpl:[3,22,29,41,50,79,92,126],simpledoor:211,singl:11,site:[63,134],sitekei:132,slow_exit:212,soft:107,softcod:[56,107],solut:107,some:[38,40,55],somewher:54,sourc:[42,105],space:17,spawn:[42,56,108],spawner:[108,250],specif:5,splithandl:136,spread:37,spuriou:24,sql:23,sqlite3:23,ssh:[87,102,285],ssl:[89,286],standard:[54,61,128],start:[9,57,62,84,99,109],stat:119,statu:[93,109],step:[5,9,20,41,56,59,60,64,70,71,74,97,123,130,132],stop:109,storag:50,store:[6,11,25,50,108],string:[79,90,93],strip:90,studi:0,stuff:[54,122],style:[17,42],sub:22,subclass:88,subject:95,submodul:[140,142,148,154,171,177,190,207,215,221,228,234,238,241,246,251,260,266,273,295,312,318,330,344,346,351,354,356],subpackag:[140,148,177,206,260,318,344,354],suit:126,summari:[12,54],superus:79,support:[24,54,87],suppress_ga:287,surround:41,swap:124,synchron:10,syntax:[26,56,109,320],syscommand:167,system:[16,32,33,42,44,60,67,68,72,79,115,122,123,168],tabl:[25,27,85],tag:[38,42,111,125,317],talking_npc:213,taskhandl:258,tb_basic:216,tb_equip:217,tb_item:218,tb_magic:219,tb_rang:220,teamciti:36,tech:60,technic:54,tel:42,telnet:[24,87,89,288],telnet_oob:289,telnet_ssl:290,templat:[36,68,132],templatetag:[356,357],tempmsg:34,temporari:50,termux:74,test:[54,58,92,122,126,169,195,210,227,291,301,333,350,358],test_queri:300,test_resourc:340,text2html:341,text:[27,50,73,112,113,135],texttag:113,theori:90,thi:[40,68],thing:[55,56,118],third:78,throttl:308,through:[37,41,99],ticker:[63,114],tickerhandl:[114,259],tie:57,time:[27,33,42,61,101,107],time_format:27,timer:92,timetrac:302,tip:130,titeuf87:137,to_byt:27,to_str:27,toc:362,togeth:[66,68],tool:[12,27,78],traceback:26,track:130,train:120,translat:75,travi:129,treat:13,tree_select:214,trick:130,troubleshoot:[59,62,74],ttype:292,tunnel:42,turn:[25,96,115],turnbattl:[215,216,217,218,219,220],tutori:[0,5,6,18,21,45,61,68,84,95,115,116,117,118,119,120,121,122,123,126,131,133,135],tutorial_exampl:[221,222,223,224,225,226,227],tutorial_world:[228,229,230,231],tweak:[59,95],tweet:[70,119],twist:[63,93],twitter:70,two:95,type:[2,5,6,11,59,88],typeclass:[6,42,44,56,63,80,96,118,123,124,139,196,312,313,314,315,316,317],unban:42,under:130,understand:125,ungm:57,uninstal:121,unit:126,unixcommand:232,unlink:42,unloggedin:[42,170],unmonitor:73,unrepeat:73,updat:[6,25,59,124,127,130],upgrad:127,upload:102,upstream:[96,130],url:[3,4,68,132,345,352,359],usag:[1,13,14,49],use:[54,96,114],used:[25,33],useful:[33,78],user:[19,33,55,56,68,102,123,130],userpassword:42,using:[0,41,118,126],util:[17,27,29,33,78,105,118,197,318,319,320,321,322,323,324,325,326,327,328,329,330,331,332,333,334,335,336,337,338,339,340,341,342,343,346,347,348,349,350],valid:[79,309],validatorfunc:343,valu:[50,108,118],variabl:[41,58],vehicl:120,version:[130,361],versu:10,vhost:8,view:[3,67,68,132,133,134,353,360],virtualenv:63,voic:0,wai:[29,50,76],wall:42,want:[54,99],warn:361,weather:131,web:[3,44,87,89,96,102,123,132,133,134,135,136,344,345,346,347,348,349,350,351,352,353,354,355,356,357,358,359,360],webclient:[136,137,293,351,352,353],webclient_ajax:294,webclient_gui:136,webserv:[102,310],websit:[4,134,354,355,356,357,358,359,360],websocket:[8,66],weight:81,what:[11,16,36,40,54,90,99],when:[25,52,114],where:[5,54,59,62,95],whisper:42,whitepag:44,who:[33,42],wiki:[4,138],wilder:233,willing:54,window:[9,62],wipe:42,wizard:53,won:24,word:37,work:[7,33,54,68,76,90,99,120,124,130],workaround:24,world:[18,20,60,94,121],write:[39,126,136],xterm256:[113,125],yield:[29,50],you:[26,54],your:[2,4,19,20,26,33,38,39,59,73,85,88,89,96,99,102,107,127,130,132,136],yourself:[20,59,60],zone:139}}) \ No newline at end of file diff --git a/docs/1.0-dev/.buildinfo b/docs/1.0-dev/.buildinfo index ff88aebd52..117808a0b1 100644 --- a/docs/1.0-dev/.buildinfo +++ b/docs/1.0-dev/.buildinfo @@ -1,4 +1,4 @@ # Sphinx build info version 1 # This file hashes the configuration used when building these files. When it is not found, a full rebuild will be done. -config: 33f344c06d002d5cd75fc83289be4946 +config: 8244059fe98625c9832c2ceb57107810 tags: 645f666f9bcd5a90fca523b33c5a78b7 diff --git a/docs/1.0-dev/Contributing-Docs.html b/docs/1.0-dev/Contributing-Docs.html index f44dc46778..69739a58ae 100644 --- a/docs/1.0-dev/Contributing-Docs.html +++ b/docs/1.0-dev/Contributing-Docs.html @@ -72,14 +72,15 @@ Any contrib-specific tutorials will be found here instead of in source/Howtos/StartingTutorial/ holds all documents part of the initial tutorial sequence.

    +
  • source/Howtos/Starting/ holds all documents part of the initial tutorial sequence.

  • Other files and folders:

    • source/api/ contains the auto-generated API documentation as .rst files. Don’t edit these -files manually, your changes will be lost.

    • +files manually, your changes will be lost. To refer to these files, use api: followed by +the Python path, for example [rpsystem contrib](api:evennia.contrib.rpsystem).

    • source/_templates and source/_static should not be modified unless adding a new doc-page feature or changing the look of the HTML documentation.

    • conf.py holds the Sphinx configuration. It should usually not be modified except to update @@ -98,7 +99,7 @@ referred to in this document.

      not hard and is very readable on its raw text-form.

      You can furthermore get a good feel for how things will look using a Markdown-viewer like [Grip][grip]. Editors like [ReText][retext] or IDE’s like -[PyCharm][pycharm] also have Markdown previews. Building the docs locally is +[PyCharm][pycharm] also have native Markdown previews. Building the docs locally is however the only way to make sure the outcome is exactly as you expect. The process will also find any mistakes you made, like making a typo in a link.

      @@ -133,13 +134,16 @@ build them!

    • Building the main documentation and API docs

      The full documentation includes both the doc pages and the API documentation generated from the Evennia source. For this you must install Evennia and -initialize a new game with a default database (you don’t need to have it +initialize a new game with a default database (you don’t need to have any server running)

        -
      • Follow the normal [Evennia Getting-Started instructions][getting-started] -to install Evennia into a virtualenv. Get back here once everything is installed but -before creating a new game.

      • -
      • Make sure you cd to the folder containing your evennia/ repo (so two levels +

      • It’s recommended that you use a virtualenv. Install your cloned version of Evennia into +by pointing to the repo folder (the one containing /docs):

        +
        pip install -e evennia 
        +
        +
        +
      • +
      • Make sure you are in the parent folder containing your evennia/ repo (so two levels up from evennia/docs/).

      • Create a new game folder called exactly gamedir at the same level as your evennia repo with

        @@ -147,8 +151,8 @@ repo with

      • -
      • Then cd into it and create a new, empty database. You don’t need to start the game -or do any further changes.

        +
      • Then cd into it and create a new, empty database. You don’t need to start the +game or do any further changes after this.

        evennia migrate
         
        @@ -163,11 +167,10 @@ or do any further changes.

      -

      If you are already working on a game, you may of course have your ‘real’ game folder there as -well. We won’t touch that.

      +

      (If you are already working on a game, you may of course have your ‘real’ game folder there as +well. We won’t touch that.)

        -
      • Make sure you are still in your virtualenv, then go to evennia/docs/ and -install the doc-building requirements:

        +
      • Go to evennia/docs/ and install the doc-building requirements (you only need to do this once):

        make install
         or
         pip install -r requirements.txt
        @@ -211,8 +214,8 @@ docs are built by looking at the git tree.

      -

      This is as close to the ‘real’ version as you can get locally. The different versions -will be found under evennia/docs/build. During deploy a symlink latest will point +

      This is as close to the ‘real’ version of the docs as you can get locally. The different versions +will be found under evennia/docs/build/versions/. During deploy a symlink latest will point to the latest version of the docs.

      Release

      @@ -253,17 +256,17 @@ few alternative forms for some of these, we try to stick to the below forms for

      Headings

      We use # to indicate sections/headings. The more # the more of a sub-heading it is (will get -smaller -and smaller font).

      +smaller and smaller font).

      • # Heading

      • ## SubHeading

      • -
      • ## SubSubHeading

      • +
      • ### SubSubHeading

      • +
      • #### SubSubSubHeading

      -

      Don’t reuse the same heading/subheading name over and over in the same document. While Markdown -does not prevent -it, it makes it impossible to link to those duplicates properly (see next section).

      +

      Don’t use the same heading/subheading name more than once in one page. While Markdown +does not prevent it, it will make it impossible to refer to that heading uniquely. +The Evennia documentation preparser will detect this and give you an error.

      @@ -318,20 +321,20 @@ full http://

    You can point to sub-sections (headings) in a document by using a single # and the name of the heading, replacing spaces with dashes. So to refer to a heading ## Cool Stuff inside My-Document -would be a link [cool stuff](My-Document#Cool-Stuff).

    +would be a link [cool stuff](My-Document#Cool-Stuff). This is why headings must be uniquely named +within on document.

    • [linktext][linkref] - refer to a reference defined later in the document.

    Urls can get long and if you are using the same url in many places it can get a little cluttered. So -you can also put -the url as a ‘footnote’ at the end of your document +you can also put the url as a ‘footnote’ at the end of your document and refer to it by putting your reference within square brackets [ ]. Here’s an example:

    This is a [clickable link][mylink]. This is [another link][1].
     
     ...
     
     
    -[mylink](http://...)
    +[mylink]: http://...
     [1]: My-Document
     
    @@ -341,8 +344,8 @@ and refer to it by putting your reference within square brackets

    Github online repository

      -
    • github: - a shortcut for the full path to the Evennia repository on github. This will refer to -the master branch by default:

      +
    • github: - a shortcut for the full path to the Evennia repository on github. This must be given +with forward-slashes and include the .py file ending. It will refer to the master branch by default:

        [link to objects.py](github:evennia/objects/objects.py)
       
      @@ -364,25 +367,21 @@ the master

      This will create a link to the auto-generated evennia/source/api/evennia.objects.rst document.

      Since api-docs are generated alongside the documentation, this will always be the api docs for -the -current version/branch of the docs.

      +the current version/branch of the docs.

    Bug reports/feature request

      -
    • issue, bug-report, feature-request - links to the same github issue select page.

      +
    • github:issue - links to the github issue selection page, where the user can choose which type of +issue to create.

        If you find a problem, make a [bug report](github:issue)!
       

      This will generate a link to https://github.com/evennia/evennia/issues/new/choose.

    -
    -

    For some reason these particular shortcuts gives a warning during documentation compilation. This -can be ignored.

    -
    @@ -434,11 +433,11 @@ def a_python_func(x):

    Markdown is easy to read and use. But while it does most of what we need, there are some things it’s not quite as expressive as it needs to be. For this we need to fall back to the [ReST][ReST] markup language which the documentation system uses under the hood. This is done by specifying eval_rst -as -the name of the language of a literal block:

    +as the name of the language of a literal block:

    ```eval_rst
     
    -    This will be evaluated as ReST.
    +    This will be evaluated as ReST. 
    +    All content must be indented.
     
     ```
     
    @@ -447,13 +446,24 @@ the name of the lan eval_rst:

    ```directive:: possible-option
     
    -  Content that *must* be indented for it to be included in the directive.
    +  Content *must* be indented for it to be included in the directive.
     
    -  New lines are ignored except if separated by an empty line.
    +  New lines are ignored, empty lines starts a new paragraph.
     ```
     
    -

    See below for examples of this.

    +

    Within a ReST block, one must use Restructured Text syntax, which is not the same as Markdown.

    +
      +
    • Single backticks around text makes it italic.

    • +
    • Double backticks around text makes it verbatim.

    • +
    • A link is written within back-ticks, with an underscore at the end:

      +
      `python <www.python.org>`_
      +
      +
      +
    • +
    +

    Here is a ReST formatting cheat sheet.

    +

    Below are examples of ReST-block structures.

    Note

    This kind of note may pop more than doing a > Note: .... Contrary to a @@ -563,7 +573,7 @@ a plain HTML string in the markdown like so:

    Tables

    -

    A table is specified using [ReST table syntax][ReST-tables]:

    +

    A table is specified using [ReST table syntax][ReST-tables] (they don’t need to be indented):

    ```eval_rst
     
     =====  =====  =======
    @@ -652,9 +662,9 @@ True   True   True
     

    A more flexible code block

    -

    The regular Markdown codeblock is usually enough but for more direct control over the style, one -can also specify the code block explicitly in ReST. -for more flexibility. It also provides a link to the code block, identified by its name.

    +

    The regular Markdown Python codeblock is usually enough but for more direct control over the style, one +can also specify the code block explicitly in ReST for more flexibility. +It also provides a link to the code block, identified by its name.

    ```code-block:: python
         :linenos:
         :emphasize-lines: 1-2,8
    @@ -698,15 +708,23 @@ this
     block through the link that will appear (so it should be unique for a give document).

    The default markdown syntax will actually generate a code-block ReST instruction like this -automatically for us behind the scenes. The automatic generation can’t know things like emphasize- -lines -or caption since that’s not a part of the Markdown specification.

    +automatically for us behind the scenes. But the automatic generation can’t know things like emphasize- +lines or captions since that’s not a part of the Markdown specification.

    +
    +

    Code documentation

    +

    The source code docstrings will be parsed as Markdown. When writing a module docstring, you can use Markdown formatting, +including header levels down to 4th level (#### SubSubSubHeader). After the module documentation it’s +a good idea to end with four dashes ----. This will create a visible line between the documentation and the +class/function docs to follow. See for example the Traits docs.

    +

    All non-private classes, methods and functions must have a Google-style docstring, as per the +[Evennia coding style guidelines][github:evennia/CODING_STYLE.md]. This will then be correctly formatted +into pretty api docs.

    -

    Technical

    +

    Technical

    Evennia leverages [Sphinx][sphinx] with the [recommonmark][recommonmark] extension, which allows us to write our docs in light-weight Markdown (more specifically [CommonMark][commonmark], like on github) rather @@ -733,6 +751,7 @@ to understand our friendly Google-style docstrings used in classes and functions retext grip pycharm

    +
    @@ -799,9 +818,10 @@ to understand our friendly Google-style docstrings used in classes and functions
  • A more flexible code block
  • +
  • Code documentation
  • +
  • Technical
  • -
  • Technical
  • diff --git a/docs/1.0-dev/Howto/Howto-Overview.html b/docs/1.0-dev/Howto/Howto-Overview.html index 89bee786fd..8b52e2692c 100644 --- a/docs/1.0-dev/Howto/Howto-Overview.html +++ b/docs/1.0-dev/Howto/Howto-Overview.html @@ -71,9 +71,7 @@ in mind for your own game, this will give you a good start.

    1. Introduction & Overview

    2. On planning a game

    3. -
    4. Multisession modes

    5. -
    6. Layout of our tutorial game

    7. -
    8. Some useful Contribs

    9. +
    10. Planning to use some useful Contribs

    diff --git a/docs/1.0-dev/Howto/Starting/Part2/Game-Planning.html b/docs/1.0-dev/Howto/Starting/Part2/Game-Planning.html index 8287dec1dd..e51cde05d0 100644 --- a/docs/1.0-dev/Howto/Starting/Part2/Game-Planning.html +++ b/docs/1.0-dev/Howto/Starting/Part2/Game-Planning.html @@ -5,7 +5,7 @@ - Game Planning — Evennia 1.0-dev documentation + On Planning a Game — Evennia 1.0-dev documentation @@ -27,7 +27,7 @@ modules | - +
    @@ -36,115 +36,118 @@
    -
    -

    Game Planning

    -

    So you have Evennia up and running. You have a great game idea in mind. Now it’s time to start -cracking! But where to start? Here are some ideas for a workflow. Note that the suggestions on this -page are just that - suggestions. Also, they are primarily aimed at a lone hobby designer or a small -team developing a game in their free time. There is an article in the Imaginary Realities e-zine -which was written by the Evennia lead dev. It focuses more on you finding out your motivations for -making a game - you can -read the article here.

    -

    Below are some minimal steps for getting the first version of a new game world going with players. -It’s worth to at least make the attempt to do these steps in order even if you are itching to jump -ahead in the development cycle. On the other hand, you should also make sure to keep your work fun -for you, or motivation will falter. Making a full game is a lot of work as it is, you’ll need all -your motivation to make it a reality.

    -

    Remember that 99.99999% of all great game ideas never lead to a game. Especially not to an online -game that people can actually play and enjoy. So our first all overshadowing goal is to beat those -odds and get something out the door! Even if it’s a scaled-down version of your dream game, -lacking many “must-have” features! It’s better to get it out there and expand on it later than to -code in isolation forever until you burn out, lose interest or your hard drive crashes.

    -

    Like is common with online games, getting a game out the door does not mean you are going to be -“finished” with the game - most MUDs add features gradually over the course of years - it’s often -part of the fun!

    -
    -

    Planning (step 1)

    -

    This is what you do before having coded a single line or built a single room. Many prospective game -developers are very good at parts of this process, namely in defining what their world is “about”: -The theme, the world concept, cool monsters and so on. It is by all means very important to define -what is the unique appeal of your game. But it’s unfortunately not enough to make your game a -reality. To do that you must also have an idea of how to actually map those great ideas onto +

    prev lesson | next lesson

    +
    +

    On Planning a Game

    +

    This lesson will be less hands-on and more introspective. We’ll go through some general things to think +about when planning your game. In the following lessons we’ll apply this to plan out the tutorial-game we will +be making.

    +

    Note that the suggestions on this page are just that - suggestions. Also, they are primarily aimed at a lone +hobby designer or a small team developing a game in their free time.

    +
    +

    Important

    +

    Your first all overshadowing goal is to beat the odds and get something out the door! +Even if it’s a scaled-down version of your dream game, lacking many “must-have” features!

    +
    +

    Remember: 99.99999% of all great game ideas never lead to a game. Especially not to an online +game that people can actually play and enjoy. It’s better to get your game out there and expand on it +later than to code in isolation until you burn out, lose interest or your hard drive crashes.

    +
      +
    • Keep the scope of your initial release down. Way down.

    • +
    • Start small, with an eye towards expansions later, after first release.

    • +
    • If the suggestions here seems boring or a chore to you, do it your way instead. Everyone’s different.

    • +
    • Keep having fun. You must keep your motivation up, whichever way works for you.

    • +
    +
    +

    The steps

    +

    Here are the rough steps towards your goal.

    +
      +
    1. Planning

    2. +
    3. Coding + Gradually building a tech-demo

    4. +
    5. Building the actual game world

    6. +
    7. Release

    8. +
    9. Celebrate

    10. +
    +
    +
    +

    Planning

    +

    You need to have at least a rough idea about what you want to create. Some like a lot of planning, others +do it more seat-of-the-pants style. Regardless, while some planning is always good to do, it’s common +to have your plans change on you as you create your code prototypes. So don’t get too bogged down in +the details out of the gate.

    +

    Many prospective game developers are very good at parts of this process, namely in defining what their +world is “about”: The theme, the world concept, cool monsters and so on. Such things are very important. But +unfortunately, they are not enough to make your game. You need to figure out how to accomplish your ideas in Evennia.

    -

    A good start is to begin by planning out the basic primitives of the game and what they need to be -able to do. Below are a far-from-complete list of examples (and for your first version you should -definitely try for a much shorter list):

    +

    Below are some questions to get you going. In the next lesson we will try to answer them for our particular +tutorial game. There are of course many more questions you could be asking yourself.

    +
    +

    Administration

    +
      +
    • Should your game rules be enforced by coded systems or by human game masters?

    • +
    • What is the staff hierarchy in your game? Is vanilla Evennia roles enough or do you need something else?

    • +
    • Should players be able to post out-of-characters on channels and via other means like bulletin-boards?

    • +
    +
    +
    +

    Building

    +
      +
    • How will the world be built? Traditionally (from in-game with build-commands) or externally (by batchcmds/code +or directly with custom code)?

    • +
    • Can only privileged Builders create things or should regular players also have limited build-capability?

    • +
    +

    Systems

    -

    These are the behind-the-scenes features that exist in your game, often without being represented by -a specific in-game object.

      -
    • Should your game rules be enforced by coded systems or are you planning for human game masters to -run and arbitrate rules?

    • -
    • What are the actual mechanical game rules? How do you decide if an action succeeds or fails? What -“rolls” does the game need to be able to do? Do you base your game off an existing system or make up -your own?

    • -
    • Does the flow of time matter in your game - does night and day change? What about seasons? Maybe -your magic system is affected by the phase of the moon?

    • -
    • Do you want changing, global weather? This might need to operate in tandem over a large number of -rooms.

    • -
    • Do you want a game-wide economy or just a simple barter system? Or no formal economy at all?

    • -
    • Should characters be able to send mail to each other in-game?

    • -
    • Should players be able to post on Bulletin boards?

    • -
    • What is the staff hierarchy in your game? What powers do you want your staff to have?

    • -
    • What should a Builder be able to build and what commands do they need in order to do that?

    • -
    • etc.

    • +
    • Do you base your game off an existing RPG system or make up your own?

    • +
    • What are the game mechanics? How do you decide if an action succeeds or fails?

    • +
    • Does the flow of time matter in your game - does night and day change? What about seasons?

    • +
    • Do you want changing, global weather or should weather just be set manually in roleplay?

    • +
    • Do you want a coded world-economy or just a simple barter system? Or no formal economy at all?

    • +
    • Do you have concepts like reputation and influence?

    • +
    • Will your characters be known by their name or only by their physical appearance?

    Rooms

    -

    Consider the most basic room in your game.

      -
    • Is a simple description enough or should the description be able to change (such as with time, by +

    • Is a simple room description enough or should the description be able to change (such as with time, by light conditions, weather or season)?

    • Should the room have different statuses? Can it have smells, sounds? Can it be affected by dramatic weather, fire or magical effects? If so, how would this affect things in the room? Or are these things something admins/game masters should handle manually?

    • Can objects be hidden in the room? Can a person hide in the room? How does the room display this?

    • -
    • etc.

    -
    -

    Objects

    -

    Consider the most basic (non-player-controlled) object in your game.

    +
    +

    Objects / items

    • How numerous are your objects? Do you want large loot-lists or are objects just role playing props created on demand?

    • -
    • Does the game use money? If so, is each coin a separate object or do you just store a bank account -value?

    • -
    • What about multiple identical objects? Do they form stacks and how are those stacks handled in -that case?

    • +
    • If you use money, is each coin a separate object or do you just store a bank account value?

    • +
    • Do multiple similar objects form stacks and how are those stacks handled in that case?

    • Does an object have weight or volume (so you cannot carry an infinite amount of them)?

    • -
    • Can objects be broken? If so, does it have a health value? Is burning it causing the same damage -as smashing it? Can it be repaired?

    • -
    • Is a weapon a specific type of object or are you supposed to be able to fight with a chair too? -Can you fight with a flower or piece of paper as well?

    • -
    • NPCs/mobs are also objects. Should they just stand around or should they have some sort of AI?

    • -
    • Are NPCs/mobs differet entities? How is an Orc different from a Kobold, in code - are they the -same object with different names or completely different types of objects, with custom code?

    • -
    • Should there be NPCs giving quests? If so, how would you track quest status and what happens when -multiple players try to do the same quest? Do you use instances or some other mechanism?

    • -
    • etc.

    • +
    • Can objects be broken? Can they be repaired?

    • +
    • Can you fight with a chair or a flower or must you use a specific ‘weapon’ kind of thing?

    • +
    • Will characters be able to craft new objects?

    • +
    • Should mobs/NPCs have some sort of AI?

    • +
    • Are NPCs and mobs different entities? How do they differ?

    • +
    • Should there be NPCs giving quests? If so, how do you track Quest status?

    Characters

    -

    These are the objects controlled directly by Players.

    • Can players have more than one Character active at a time or are they allowed to multi-play?

    • -
    • How does a Player create their Character? A Character-creation screen? Answering questions? -Filling in a form?

    • -
    • Do you want to use classes (like “Thief”, “Warrior” etc) or some other system, like Skill-based?

    • +
    • How does the character-generation work? Walk from room-to-room? A menu?

    • How do you implement different “classes” or “races”? Are they separate types of objects or do you simply load different stats on a basic object depending on what the Player wants?

    • If a Character can hide in a room, what skill will decide if they are detected?

    • -
    • What skill allows a Character to wield a weapon and hit? Do they need a special skill to wield a -chair rather than a sword?

    • -
    • Does a Character need a Strength attribute to tell how much they can carry or which objects they -can smash?

    • What does the skill tree look like? Can a Character gain experience to improve? By killing enemies? Solving quests? By roleplaying?

    • -
    • etc.

    • +
    • May player-characters attack each other (PvP)?

    • +
    • What are the penalties of defeat? Permanent death? Quick respawn? Time in prison?

    A MUD’s a lot more involved than you would think and these things hang together in a complex web. It can easily become overwhelming and it’s tempting to want all functionality right out of the door. @@ -152,82 +155,71 @@ Try to identify the basic things that “make” your game and focus only

    -
    -

    Coding (step 2)

    -

    This is the actual work of creating the “game” part of your game. Many “game-designer” types tend to -gloss over this bit and jump directly to World Building. Vice versa, many “game-coder” types -tend to jump directly to this part without doing the Planning first. Neither way is good and -will lead to you having to redo all your hard work at least once, probably more.

    -

    Evennia’s Evennia Component overview tries to help you with this bit of development. We -also have a slew of Tutorials with worked examples. Evennia tries hard to make this -part easier for you, but there is no way around the fact that if you want anything but a very basic -Talker-type game you will have to bite the bullet and code your game (or find a coder willing to -do it for you).

    -

    Even if you won’t code anything yourself, as a designer you need to at least understand the basic -paradigms of Evennia, such as Objects, -Commands and Scripts and -how they hang together. We recommend you go through the Tutorial World in detail (as well as glancing at its code) to get at least a feel for what is -involved behind the scenes. You could also look through the tutorial for -building a game from scratch.

    +
    +

    Coding and Tech demo

    +

    This is the actual work of creating the “game” part of your game. As you code and test systems you should +build a little “tech demo” along the way.

    + +

    Try to avoid going wild with building a huge game world before you have a tech-demo showing off all parts +you expect to have in the first version of your game. Otherwise you run the risk of having to redo it all +again.

    +

    Evennia tries hard to make the coding easier for you, but there is no way around the fact that if you want +anything but a basic chat room you will have to bite the bullet and code your game (or find a coder willing +to do it for you).

    +
    +

    Even if you won’t code anything yourself, as a designer you need to at least understand the basic +paradigms and components of Evennia. It’s recommended you look over the rest of this Beginner Tutorial to learn +what tools you have available.

    +

    During Coding you look back at the things you wanted during the Planning phase and try to implement them. Don’t be shy to update your plans if you find things easier/harder than you thought. The earlier you revise problems, the easier they will be to fix.

    -

    A good idea is to host your code online (publicly or privately) using version control. Not only will -this make it easy for multiple coders to collaborate (and have a bug-tracker etc), it also means -your work is backed up at all times. The Version Control tutorial has -instructions for setting up a sane developer environment with proper version control.

    -
    -

    “Tech Demo” Building

    -

    This is an integral part of your Coding. It might seem obvious to experienced coders, but it cannot -be emphasized enough that you should test things on a small scale before putting your untested -code into a large game-world. The earlier you test, the easier and cheaper it will be to fix bugs -and even rework things that didn’t work out the way you thought they would. You might even have to -go back to the Planning phase if your ideas can’t handle their meet with reality.

    -

    This means building singular in-game examples. Make one room and one object of each important type -and test so they work correctly in isolation. Then add more if they are supposed to interact with -each other in some way. Build a small series of rooms to test how mobs move around … and so on. In -short, a test-bed for your growing code. It should be done gradually until you have a fully -functioning (if not guaranteed bug-free) miniature tech demo that shows all the features you want -in the first release of your game. There does not need to be any game play or even a theme to your -tests, this is only for you and your co-coders to see. The more testing you do on this small scale, -the less headaches you will have in the next phase.

    +

    A good idea is to host your code online using version control. Github.com offers free Private repos +these days if you don’t want the world to learn your secrets. Not only version control +make it easy for your team to collaborate, it also means +your work is backed up at all times. The page on Version Control +will help you to setting up a sane developer environment with proper version control.

    -
    -
    -

    World Building (step 3)

    +
    +

    World Building

    Up until this point we’ve only had a few tech-demo objects in the database. This step is the act of populating the database with a larger, thematic world. Too many would-be developers jump to this stage too soon (skipping the Coding or even Planning stages). What if the rooms you build now doesn’t include all the nice weather messages the code grows to support? Or the way you store data changes under the hood? Your building work would at best require some rework and at worst you -would have to redo the whole thing. And whereas Evennia’s typeclass system does allow you to edit -the properties of existing objects, some hooks are only called at object creation … Suffice to -say you are in for a lot of unnecessary work if you build stuff en masse without having the -underlying code systems in some reasonable shape first.

    +would have to redo the whole thing. You could be in for a lot of unnecessary work if you build stuff +en masse without having the underlying code systems in some reasonable shape first.

    So before starting to build, the “game” bit (Coding + Testing) should be more or less complete, at least to the level of your initial release.

    -

    Before starting to build, you should also plan ahead again. Make sure it is clear to yourself and -your eventual builders just which parts of the world you want for your initial release. Establish -for everyone which style, quality and level of detail you expect. Your goal should not be to -complete your entire world in one go. You want just enough to make the game’s “feel” come across. -You want a minimal but functioning world where the intended game play can be tested and roughly -balanced. You can always add new areas later.

    +

    Make sure it is clear to yourself and your eventual builders just which parts of the world you want +for your initial release. Establish for everyone which style, quality and level of detail you expect.

    +

    Your goal should not be to complete your entire world in one go. You want just enough to make the +game’s “feel” come across. You want a minimal but functioning world where the intended game play can +be tested and roughly balanced. You can always add new areas later.

    During building you get free and extensive testing of whatever custom build commands and systems you -have made at this point. Since Building often involves different people than those Coding, you also +have made at this point. If Builders and coders are different people you also get a chance to hear if some things are hard to understand or non-intuitive. Make sure to respond to this feedback.

    Alpha Release

    As mentioned, don’t hold onto your world more than necessary. Get it out there with a huge Alpha -flag and let people try it! Call upon your alpha-players to try everything - they will find ways -to break your game in ways that you never could have imagined. In Alpha you might be best off to +flag and let people try it!

    +

    Call upon your alpha-players to try everything - they will find ways to break your game in ways that +you never could have imagined. In Alpha you might be best off to focus on inviting friends and maybe other MUD developers, people who you can pester to give proper -feedback and bug reports (there will be bugs, there is no way around it). Follow the quick -instructions for Online Setup to make your game visible online. If you hadn’t -already, make sure to put up your game on the Evennia game index so -people know it’s in the works (actually, even pre-alpha games are allowed in the index so don’t be -shy)!

    +feedback and bug reports (there will be bugs, there is no way around it).

    +

    Follow the quick instructions for Online Setup to make your +game visible online.

    +

    If you hadn’t already, make sure to put up your game on the +Evennia game index so people know it’s in the works (actually, even +pre-alpha games are allowed in the index so don’t be shy)!

    Beta Release/Perpetual Beta

    @@ -242,6 +234,11 @@ to gradually perfect your vision.

    You are worthy of a celebration since at this point you have joined the small, exclusive crowd who have made their dream game a reality!

    +
    +

    Planning our tutorial game

    +

    In the next lesson we’ll make use of these general points and try to plan out our tutorial game.

    +

    prev lesson | next lesson

    +
    @@ -266,22 +263,23 @@ have made their dream game a reality!

    Table of Contents

    @@ -138,7 +205,6 @@ parameter to disable it for that Evennian account permanently.

  • Client Grid
  • Workarounds for client issues:
  • diff --git a/docs/1.0-dev/_modules/evennia.html b/docs/1.0-dev/_modules/evennia.html index 7f7468ba80..1bc7ff458d 100644 --- a/docs/1.0-dev/_modules/evennia.html +++ b/docs/1.0-dev/_modules/evennia.html @@ -490,13 +490,17 @@ # Stopped at breakpoint. Press 'n' to continue into the code. dbg.set_trace()
    + # initialize the doc string global __doc__ __doc__ = DOCSTRING.format( - "\n- " + "\n- ".join( - f"evennia.{key}" for key in sorted(globals()) - if not key.startswith("_") - and key not in ("DOCSTRING", ))) + "\n- " + + "\n- ".join( + f"evennia.{key}" + for key in sorted(globals()) + if not key.startswith("_") and key not in ("DOCSTRING",) + ) +)
    diff --git a/docs/1.0-dev/_modules/evennia/accounts/accounts.html b/docs/1.0-dev/_modules/evennia/accounts/accounts.html index 825f67dca5..a48f693316 100644 --- a/docs/1.0-dev/_modules/evennia/accounts/accounts.html +++ b/docs/1.0-dev/_modules/evennia/accounts/accounts.html @@ -692,6 +692,53 @@ logger.log_sec(f"Password successfully changed for {self}.") self.at_password_change()
    +
    [docs] def create_character(self, *args, **kwargs): + """ + Create a character linked to this account. + + Args: + key (str, optional): If not given, use the same name as the account. + typeclass (str, optional): Typeclass to use for this character. If + not given, use settings.BASE_CHARACTER_TYPECLASS. + permissions (list, optional): If not given, use the account's permissions. + ip (str, optiona): The client IP creating this character. Will fall back to the + one stored for the account if not given. + kwargs (any): Other kwargs will be used in the create_call. + Returns: + Object: A new character of the `character_typeclass` type. None on an error. + list or None: A list of errors, or None. + + """ + # parse inputs + character_key = kwargs.pop("key", self.key) + character_ip = kwargs.pop("ip", self.db.creator_ip) + character_permissions = kwargs.pop("permissions", self.permissions) + + # Load the appropriate Character class + character_typeclass = kwargs.pop("typeclass", None) + character_typeclass = ( + character_typeclass if character_typeclass else settings.BASE_CHARACTER_TYPECLASS + ) + Character = class_from_module(character_typeclass) + + # Create the character + character, errs = Character.create( + character_key, + self, + ip=character_ip, + typeclass=character_typeclass, + permissions=character_permissions, + **kwargs, + ) + if character: + # Update playable character list + if character not in self.characters: + self.db._playable_characters.append(character) + + # We need to set this to have @ic auto-connect to this character + self.db._last_puppet = character + return character, errs
    +
    [docs] @classmethod def create(cls, *args, **kwargs): """ @@ -800,31 +847,13 @@ logger.log_err(string) if account and settings.MULTISESSION_MODE < 2: - # Load the appropriate Character class - character_typeclass = kwargs.get( - "character_typeclass", settings.BASE_CHARACTER_TYPECLASS + # Auto-create a character to go with this account + + character, errs = account.create_character( + typeclass=kwargs.get("character_typeclass") ) - character_home = kwargs.get("home") - Character = class_from_module(character_typeclass) - - # Create the character - character, errs = Character.create( - account.key, - account, - ip=ip, - typeclass=character_typeclass, - permissions=permissions, - home=character_home, - ) - errors.extend(errs) - - if character: - # Update playable character list - if character not in account.characters: - account.db._playable_characters.append(character) - - # We need to set this to have @ic auto-connect to this character - account.db._last_puppet = character + if errs: + errors.extend(errs) except Exception: # We are in the middle between logged in and -not, so we have @@ -961,6 +990,7 @@ nofound_string=None, multimatch_string=None, use_nicks=True, + quiet=False, **kwargs, ): """ @@ -987,9 +1017,13 @@ message to echo if `searchdata` leads to multiple matches. If not given, will fall back to the default handler. use_nicks (bool, optional): Use account-level nick replacement. + quiet (bool, optional): If set, will not show any error to the user, + and will also lead to returning a list of matches. Return: match (Account, Object or None): A single Account or Object match. + list: If `quiet=True` this is a list of 0, 1 or more Account or Object matches. + Notes: Extra keywords are ignored, but are allowed in call in order to make API more consistent with @@ -1001,28 +1035,31 @@ # handle wrapping of common terms if searchdata.lower() in ("me", "*me", "self", "*self"): return self - if search_object: - matches = ObjectDB.objects.object_search( - searchdata, typeclass=typeclass, use_nicks=use_nicks - ) - else: - searchdata = self.nicks.nickreplace( - searchdata, categories=("account",), include_account=False - ) - - matches = AccountDB.objects.account_search(searchdata, typeclass=typeclass) - matches = _AT_SEARCH_RESULT( - matches, - self, - query=searchdata, - nofound_string=nofound_string, - multimatch_string=multimatch_string, + searchdata = self.nicks.nickreplace( + searchdata, categories=("account",), include_account=False ) - if matches and return_puppet: - try: - return matches.puppet - except AttributeError: - return None + if search_object: + matches = ObjectDB.objects.object_search(searchdata, typeclass=typeclass) + else: + matches = AccountDB.objects.account_search(searchdata, typeclass=typeclass) + + if quiet: + matches = list(matches) + if return_puppet: + matches = [match.puppet for match in matches] + else: + matches = _AT_SEARCH_RESULT( + matches, + self, + query=searchdata, + nofound_string=nofound_string, + multimatch_string=multimatch_string, + ) + if matches and return_puppet: + try: + matches = matches.puppet + except AttributeError: + return None return matches
    [docs] def access( @@ -1589,7 +1626,7 @@ try: # Find an available guest name. for name in settings.GUEST_LIST: - if not AccountDB.objects.filter(username__iexact=name).count(): + if not AccountDB.objects.filter(username__iexact=name).exists(): username = name break if not username: @@ -1615,6 +1652,15 @@ ip=ip, ) errors.extend(errs) + + if not account.characters: + # this can happen for multisession_mode > 1. For guests we + # always auto-create a character, regardless of multi-session-mode. + character, errs = account.create_character() + + if errs: + errors.extend(errs) + return account, errors except Exception as e: diff --git a/docs/1.0-dev/_modules/evennia/accounts/admin.html b/docs/1.0-dev/_modules/evennia/accounts/admin.html index 5845e26ab5..7bcc3a7943 100644 --- a/docs/1.0-dev/_modules/evennia/accounts/admin.html +++ b/docs/1.0-dev/_modules/evennia/accounts/admin.html @@ -45,13 +45,26 @@ # from django import forms from django.conf import settings -from django.contrib import admin +from django.contrib import admin, messages +from django.contrib.admin.options import IS_POPUP_VAR from django.contrib.auth.admin import UserAdmin as BaseUserAdmin from django.contrib.auth.forms import UserChangeForm, UserCreationForm +from django.contrib.admin.utils import unquote +from django.template.response import TemplateResponse +from django.http import Http404, HttpResponseRedirect +from django.core.exceptions import PermissionDenied +from django.views.decorators.debug import sensitive_post_parameters +from django.utils.decorators import method_decorator +from django.utils.html import escape +from django.urls import path, reverse +from django.contrib.auth import update_session_auth_hash + from evennia.accounts.models import AccountDB from evennia.typeclasses.admin import AttributeInline, TagInline from evennia.utils import create +sensitive_post_parameters_m = method_decorator(sensitive_post_parameters()) + # handle the custom User editor
    [docs]class AccountDBChangeForm(UserChangeForm): @@ -128,7 +141,8 @@
    [docs] class Meta(object): model = AccountDB - fields = "__all__"
    + fields = "__all__" + app_label = "accounts"
    db_key = forms.RegexField( label="Username", @@ -300,6 +314,70 @@ ), ) +
    [docs] @sensitive_post_parameters_m + def user_change_password(self, request, id, form_url=""): + user = self.get_object(request, unquote(id)) + if not self.has_change_permission(request, user): + raise PermissionDenied + if user is None: + raise Http404("%(name)s object with primary key %(key)r does not exist.") % { + "name": self.model._meta.verbose_name, + "key": escape(id), + } + if request.method == "POST": + form = self.change_password_form(user, request.POST) + if form.is_valid(): + form.save() + change_message = self.construct_change_message(request, form, None) + self.log_change(request, user, change_message) + msg = "Password changed successfully." + messages.success(request, msg) + update_session_auth_hash(request, form.user) + return HttpResponseRedirect( + reverse( + "%s:%s_%s_change" + % ( + self.admin_site.name, + user._meta.app_label, + # the model_name is something we need to hardcode + # since our accountdb is a proxy: + "accountdb", + ), + args=(user.pk,), + ) + ) + else: + form = self.change_password_form(user) + + fieldsets = [(None, {"fields": list(form.base_fields)})] + adminForm = admin.helpers.AdminForm(form, fieldsets, {}) + + context = { + "title": "Change password: %s" % escape(user.get_username()), + "adminForm": adminForm, + "form_url": form_url, + "form": form, + "is_popup": (IS_POPUP_VAR in request.POST or IS_POPUP_VAR in request.GET), + "add": True, + "change": False, + "has_delete_permission": False, + "has_change_permission": True, + "has_absolute_url": False, + "opts": self.model._meta, + "original": user, + "save_as": False, + "show_save": True, + **self.admin_site.each_context(request), + } + + request.current_app = self.admin_site.name + + return TemplateResponse( + request, + self.change_user_password_template or "admin/auth/user/change_password.html", + context, + )
    +
    [docs] def save_model(self, request, obj, form, change): """ Custom save actions. diff --git a/docs/1.0-dev/_modules/evennia/accounts/models.html b/docs/1.0-dev/_modules/evennia/accounts/models.html index 4f50bc51dd..a7909d7b11 100644 --- a/docs/1.0-dev/_modules/evennia/accounts/models.html +++ b/docs/1.0-dev/_modules/evennia/accounts/models.html @@ -150,8 +150,8 @@ __applabel__ = "accounts" __settingsclasspath__ = settings.BASE_SCRIPT_TYPECLASS - class Meta(object): - verbose_name = "Account" + # class Meta: + # verbose_name = "Account" # cmdset_storage property # This seems very sensitive to caching, so leaving it be for now /Griatch diff --git a/docs/1.0-dev/_modules/evennia/commands/cmdhandler.html b/docs/1.0-dev/_modules/evennia/commands/cmdhandler.html index 88e5950725..b26f126a7e 100644 --- a/docs/1.0-dev/_modules/evennia/commands/cmdhandler.html +++ b/docs/1.0-dev/_modules/evennia/commands/cmdhandler.html @@ -513,13 +513,13 @@ tempmergers[prio] = cmdset # sort cmdsets after reverse priority (highest prio are merged in last) - cmdsets = yield sorted(list(tempmergers.values()), key=lambda x: x.priority) + sorted_cmdsets = yield sorted(list(tempmergers.values()), key=lambda x: x.priority) # Merge all command sets into one, beginning with the lowest-prio one - cmdset = cmdsets[0] - for merging_cmdset in cmdsets[1:]: + cmdset = sorted_cmdsets[0] + for merging_cmdset in sorted_cmdsets[1:]: cmdset = yield cmdset + merging_cmdset - # store the full sets for diagnosis + # store the original, ungrouped set for diagnosis cmdset.merged_from = cmdsets # cache _CMDSET_MERGE_CACHE[mergehash] = cmdset diff --git a/docs/1.0-dev/_modules/evennia/commands/cmdset.html b/docs/1.0-dev/_modules/evennia/commands/cmdset.html index 1be1410740..73827247d6 100644 --- a/docs/1.0-dev/_modules/evennia/commands/cmdset.html +++ b/docs/1.0-dev/_modules/evennia/commands/cmdset.html @@ -484,12 +484,12 @@ # print "__add__ for %s (prio %i) called with %s (prio %i)." % (self.key, self.priority, cmdset_a.key, cmdset_a.priority) # return the system commands to the cmdset - cmdset_c.add(sys_commands) + cmdset_c.add(sys_commands, allow_duplicates=True) return cmdset_c -
    [docs] def add(self, cmd): +
    [docs] def add(self, cmd, allow_duplicates=False): """ - Add a new command or commands to this CmdSetcommand, a list of + Add a new command or commands to this CmdSet, a list of commands or a cmdset to this cmdset. Note that this is *not* a merge operation (that is handled by the + operator). @@ -497,6 +497,9 @@ cmd (Command, list, Cmdset): This allows for adding one or more commands to this Cmdset in one go. If another Cmdset is given, all its commands will be added. + allow_duplicates (bool, optional): If set, will not try to remove + duplicate cmds in the set. This is needed during the merge process + to avoid wiping commands coming from cmdsets with duplicate=True. Notes: If cmd already exists in set, it will replace the old one @@ -539,8 +542,10 @@ commands[ic] = cmd # replace except ValueError: commands.append(cmd) - # extra run to make sure to avoid doublets - self.commands = list(set(commands)) + self.commands = commands + if not allow_duplicates: + # extra run to make sure to avoid doublets + self.commands = list(set(self.commands)) # add system_command to separate list as well, # for quick look-up if cmd.key.startswith("__"): diff --git a/docs/1.0-dev/_modules/evennia/commands/default/account.html b/docs/1.0-dev/_modules/evennia/commands/default/account.html index 95f556cd7e..661679635e 100644 --- a/docs/1.0-dev/_modules/evennia/commands/default/account.html +++ b/docs/1.0-dev/_modules/evennia/commands/default/account.html @@ -195,7 +195,8 @@ if not account.is_superuser and ( account.db._playable_characters and len(account.db._playable_characters) >= charmax ): - self.msg("You may only create a maximum of %i characters." % charmax) + plural = "" if charmax == 1 else "s" + self.msg(f"You may only create a maximum of {charmax} character{plural}.") return from evennia.objects.models import ObjectDB @@ -341,27 +342,68 @@ session = self.session new_character = None + character_candidates = [] + if not self.args: - new_character = account.db._last_puppet - if not new_character: + character_candidates = [account.db._last_puppet] or [] + if not character_candidates: self.msg("Usage: ic <character>") return - if not new_character: - # search for a matching character - new_character = [ - char for char in search.object_search(self.args) if char.access(account, "puppet") - ] - if not new_character: - self.msg("That is not a valid character choice.") - return - if len(new_character) > 1: - self.msg( - "Multiple targets with the same name:\n %s" - % ", ".join("%s(#%s)" % (obj.key, obj.id) for obj in new_character) + else: + # argument given + + if account.db._playable_characters: + # look at the playable_characters list first + character_candidates.extend( + account.search( + self.args, + candidates=account.db._playable_characters, + search_object=True, + quiet=True, + ) ) - return - else: - new_character = new_character[0] + + if account.locks.check_lockstring(account, "perm(Builder)"): + # builders and higher should be able to puppet more than their + # playable characters. + if session.puppet: + # start by local search - this helps to avoid the user + # getting locked into their playable characters should one + # happen to be named the same as another. We replace the suggestion + # from playable_characters here - this allows builders to puppet objects + # with the same name as their playable chars should it be necessary + # (by going to the same location). + character_candidates = [ + char + for char in session.puppet.search(self.args, quiet=True) + if char.access(account, "puppet") + ] + if not character_candidates: + # fall back to global search only if Builder+ has no + # playable_characers in list and is not standing in a room + # with a matching char. + character_candidates.extend( + [ + char + for char in search.object_search(self.args) + if char.access(account, "puppet") + ] + ) + + # handle possible candidates + if not character_candidates: + self.msg("That is not a valid character choice.") + return + if len(character_candidates) > 1: + self.msg( + "Multiple targets with the same name:\n %s" + % ", ".join("%s(#%s)" % (obj.key, obj.id) for obj in character_candidates) + ) + return + else: + new_character = character_candidates[0] + + # do the puppet puppet try: account.puppet_object(session, new_character) account.db._last_puppet = new_character diff --git a/docs/1.0-dev/_modules/evennia/commands/default/batchprocess.html b/docs/1.0-dev/_modules/evennia/commands/default/batchprocess.html index 31aaca1234..4f0560489d 100644 --- a/docs/1.0-dev/_modules/evennia/commands/default/batchprocess.html +++ b/docs/1.0-dev/_modules/evennia/commands/default/batchprocess.html @@ -91,35 +91,6 @@ Error reported was: '%s' """ -_PROCPOOL_BATCHCMD_SOURCE = """ -from evennia.commands.default.batchprocess import batch_cmd_exec, step_pointer, BatchSafeCmdSet -caller.ndb.batch_stack = commands -caller.ndb.batch_stackptr = 0 -caller.ndb.batch_batchmode = "batch_commands" -caller.cmdset.add(BatchSafeCmdSet) -for inum in range(len(commands)): - print "command:", inum - caller.cmdset.add(BatchSafeCmdSet) - if not batch_cmd_exec(caller): - break - step_pointer(caller, 1) -print "leaving run ..." -""" -_PROCPOOL_BATCHCODE_SOURCE = """ -from evennia.commands.default.batchprocess import batch_code_exec, step_pointer, BatchSafeCmdSet -caller.ndb.batch_stack = codes -caller.ndb.batch_stackptr = 0 -caller.ndb.batch_batchmode = "batch_code" -caller.cmdset.add(BatchSafeCmdSet) -for inum in range(len(codes)): - print "code:", inum - caller.cmdset.add(BatchSafeCmdSet) - if not batch_code_exec(caller): - break - step_pointer(caller, 1) -print "leaving run ..." -""" - # ------------------------------------------------------------- # Helper functions @@ -341,42 +312,17 @@ "for %s (this might take some time) ..." % python_path ) - procpool = False - if "PythonProcPool" in utils.server_services(): - if utils.uses_database("sqlite3"): - caller.msg("Batchprocessor disabled ProcPool under SQLite3.") - else: - procpool = True - - if procpool: - # run in parallel process - def callback(r): - caller.msg(" |GBatchfile '%s' applied." % python_path) - purge_processor(caller) - - def errback(e): - caller.msg(" |RError from processor: '%s'" % e) - purge_processor(caller) - - utils.run_async( - _PROCPOOL_BATCHCMD_SOURCE, - commands=commands, - caller=caller, - at_return=callback, - at_err=errback, - ) - else: - # run in-process (might block) - for _ in range(len(commands)): - # loop through the batch file - if not batch_cmd_exec(caller): - return - step_pointer(caller, 1) - # clean out the safety cmdset and clean out all other - # temporary attrs. - string = " Batchfile '%s' applied." % python_path - caller.msg("|G%s" % string) - purge_processor(caller)
    + # run in-process (might block) + for _ in range(len(commands)): + # loop through the batch file + if not batch_cmd_exec(caller): + return + step_pointer(caller, 1) + # clean out the safety cmdset and clean out all other + # temporary attrs. + string = " Batchfile '%s' applied." % python_path + caller.msg("|G%s" % string) + purge_processor(caller)
    [docs]class CmdBatchCode(_COMMAND_DEFAULT_CLASS): @@ -461,41 +407,16 @@ else: caller.msg("Running Batch-code processor - Automatic mode for %s ..." % python_path) - procpool = False - if "PythonProcPool" in utils.server_services(): - if utils.uses_database("sqlite3"): - caller.msg("Batchprocessor disabled ProcPool under SQLite3.") - else: - procpool = True - if procpool: - # run in parallel process - def callback(r): - caller.msg(" |GBatchfile '%s' applied." % python_path) - purge_processor(caller) - - def errback(e): - caller.msg(" |RError from processor: '%s'" % e) - purge_processor(caller) - - utils.run_async( - _PROCPOOL_BATCHCODE_SOURCE, - codes=codes, - caller=caller, - at_return=callback, - at_err=errback, - ) - else: - # un in-process (will block) - for _ in range(len(codes)): - # loop through the batch file - if not batch_code_exec(caller): - return - step_pointer(caller, 1) - # clean out the safety cmdset and clean out all other - # temporary attrs. - string = " Batchfile '%s' applied." % python_path - caller.msg("|G%s" % string) - purge_processor(caller)
    + for _ in range(len(codes)): + # loop through the batch file + if not batch_code_exec(caller): + return + step_pointer(caller, 1) + # clean out the safety cmdset and clean out all other + # temporary attrs. + string = " Batchfile '%s' applied." % python_path + caller.msg("|G%s" % string) + purge_processor(caller)
    # ------------------------------------------------------------- diff --git a/docs/1.0-dev/_modules/evennia/commands/default/building.html b/docs/1.0-dev/_modules/evennia/commands/default/building.html index 45d9ab91c3..cf148eb815 100644 --- a/docs/1.0-dev/_modules/evennia/commands/default/building.html +++ b/docs/1.0-dev/_modules/evennia/commands/default/building.html @@ -57,11 +57,13 @@ dbref, interactive, list_to_string, + display_len, ) from evennia.utils.eveditor import EvEditor from evennia.utils.evmore import EvMore from evennia.prototypes import spawner, prototypes as protlib, menus as olc_menus -from evennia.utils.ansi import raw +from evennia.utils.ansi import raw as ansi_raw +from evennia.utils.inlinefuncs import raw as inlinefunc_raw COMMAND_DEFAULT_CLASS = class_from_module(settings.COMMAND_DEFAULT_CLASS) @@ -1448,6 +1450,7 @@ locks = "cmd:perm(open) or perm(Builder)" help_category = "Building" + new_obj_lockstring = "control:id({id}) or perm(Admin);delete:id({id}) or perm(Admin)" # a custom member method to chug out exits and do checks
    [docs] def create_exit(self, exit_name, location, destination, exit_aliases=None, typeclass=None): """ @@ -1493,10 +1496,16 @@ else: # exit does not exist before. Create a new one. + lockstring = self.new_obj_lockstring.format(id=caller.id) if not typeclass: typeclass = settings.BASE_EXIT_TYPECLASS exit_obj = create.create_object( - typeclass, key=exit_name, location=location, aliases=exit_aliases, report_to=caller + typeclass, + key=exit_name, + location=location, + aliases=exit_aliases, + locks=lockstring, + report_to=caller, ) if exit_obj: # storing a destination is what makes it an exit! @@ -2396,116 +2405,160 @@ arg_regex = r"(/\w+?(\s|$))|\s|$" account_mode = False + detail_color = "|c" + header_color = "|w" + quell_color = "|r" + separator = "-"
    [docs] def list_attribute(self, crop, attr, category, value): """ Formats a single attribute line. + + Args: + crop (bool): If output should be cropped if too long. + attr (str): Attribute key. + category (str): Attribute category. + value (any): Attribute value. + Returns: """ + if attr is None: + return "No such attribute was found." + value = utils.to_str(value) if crop: - if not isinstance(value, str): - value = utils.to_str(value) value = utils.crop(value) + value = inlinefunc_raw(ansi_raw(value)) if category: - string = "\n %s[%s] = %s" % (attr, category, value) + return f"{attr}[{category}] = {value}" else: - string = "\n %s = %s" % (attr, value) - string = raw(string) - return string
    + return f"{attr} = {value}"
    [docs] def format_attributes(self, obj, attrname=None, crop=True): """ Helper function that returns info about attributes and/or non-persistent data stored on object - """ + """ if attrname: - db_attr = [(attrname, obj.attributes.get(attrname), None)] + if obj.attributes.has(attrname): + db_attr = [(attrname, obj.attributes.get(attrname), None)] + else: + db_attr = None try: ndb_attr = [(attrname, object.__getattribute__(obj.ndb, attrname))] except Exception: ndb_attr = None + if not (db_attr or ndb_attr): + return {"Attribue(s)": f"\n No Attribute '{attrname}' found on {obj.name}"} else: db_attr = [(attr.key, attr.value, attr.category) for attr in obj.db_attributes.all()] try: ndb_attr = obj.nattributes.all(return_tuples=True) except Exception: - ndb_attr = None - string = "" + ndb_attr = (None, None, None) + + output = {} if db_attr and db_attr[0]: - string += "\n|wPersistent attributes|n:" - for attr, value, category in db_attr: - string += self.list_attribute(crop, attr, category, value) + output["Persistent attribute(s)"] = "\n " + "\n ".join( + sorted( + self.list_attribute(crop, attr, category, value) + for attr, value, category in db_attr + ) + ) if ndb_attr and ndb_attr[0]: - string += "\n|wNon-Persistent attributes|n:" - for attr, value in ndb_attr: - string += self.list_attribute(crop, attr, None, value) - return string
    + output["Non-Persistent attribute(s)"] = " \n" + " \n".join( + sorted(self.list_attribute(crop, attr, None, value) for attr, value in ndb_attr) + ) + return output
    [docs] def format_output(self, obj, avail_cmdset): """ Helper function that creates a nice report about an object. - returns a string. + Args: + obj (any): Object to analyze. + avail_cmdset (CmdSet): Current cmdset for object. + + Returns: + str: The formatted string. + """ - string = "\n|wName/key|n: |c%s|n (%s)" % (obj.name, obj.dbref) + hclr = self.header_color + dclr = self.detail_color + qclr = self.quell_color + + output = {} + # main key + output["Name/key"] = f"{dclr}{obj.name}|n ({obj.dbref})" + # aliases if hasattr(obj, "aliases") and obj.aliases.all(): - string += "\n|wAliases|n: %s" % (", ".join(utils.make_iter(str(obj.aliases)))) + output["Aliases"] = ", ".join(utils.make_iter(str(obj.aliases))) + # typeclass + output["Typeclass"] = f"{obj.typename} ({obj.typeclass_path})" + # sessions if hasattr(obj, "sessions") and obj.sessions.all(): - string += "\n|wSession id(s)|n: %s" % ( - ", ".join("#%i" % sess.sessid for sess in obj.sessions.all()) - ) + output["Session id(s)"] = ", ".join(f"#{sess.sessid}" for sess in obj.sessions.all()) + # email, if any if hasattr(obj, "email") and obj.email: - string += "\n|wEmail|n: |c%s|n" % obj.email + output["Email"] = f"{dclr}{obj.email}|n" + # account, for puppeted objects if hasattr(obj, "has_account") and obj.has_account: - string += "\n|wAccount|n: |c%s|n" % obj.account.name + output["Account"] = f"{dclr}{obj.account.name}|n ({obj.account.dbref})" + # account typeclass + output[" Account Typeclass"] = f"{obj.account.typename} ({obj.account.typeclass_path})" + # account permissions perms = obj.account.permissions.all() if obj.account.is_superuser: perms = ["<Superuser>"] elif not perms: perms = ["<None>"] - string += "\n|wAccount Perms|n: %s" % (", ".join(perms)) + perms = ", ".join(perms) if obj.account.attributes.has("_quell"): - string += " |r(quelled)|n" - string += "\n|wTypeclass|n: %s (%s)" % (obj.typename, obj.typeclass_path) + perms += f" {qclr}(quelled)|n" + output[" Account Permissions"] = perms + # location if hasattr(obj, "location"): - string += "\n|wLocation|n: %s" % obj.location + loc = str(obj.location) if obj.location: - string += " (#%s)" % obj.location.id + loc += f" (#{obj.location.id})" + output["Location"] = loc + # home if hasattr(obj, "home"): - string += "\n|wHome|n: %s" % obj.home + home = str(obj.home) if obj.home: - string += " (#%s)" % obj.home.id + home += f" (#{obj.home.id})" + output["Home"] = home + # destination, for exits if hasattr(obj, "destination") and obj.destination: - string += "\n|wDestination|n: %s" % obj.destination + dest = str(obj.destination) if obj.destination: - string += " (#%s)" % obj.destination.id + dest += f" (#{obj.destination.id})" + output["Destination"] = dest + # main permissions perms = obj.permissions.all() + perms_string = "" if perms: perms_string = ", ".join(perms) - else: - perms_string = "<None>" if obj.is_superuser: - perms_string += " [Superuser]" - - string += "\n|wPermissions|n: %s" % perms_string - + perms_string += " <Superuser>" + if perms_string: + output["Permissions"] = perms_string + # locks locks = str(obj.locks) if locks: - locks_string = utils.fill("; ".join([lock for lock in locks.split(";")]), indent=6) + locks_string = "\n" + utils.fill( + "; ".join([lock for lock in locks.split(";")]), indent=2 + ) else: locks_string = " Default" - string += "\n|wLocks|n:%s" % locks_string - + output["Locks"] = locks_string + # cmdsets if not (len(obj.cmdset.all()) == 1 and obj.cmdset.current.key == "_EMPTY_CMDSET"): # all() returns a 'stack', so make a copy to sort. stored_cmdsets = sorted(obj.cmdset.all(), key=lambda x: x.priority, reverse=True) - string += "\n|wStored Cmdset(s)|n:\n %s" % ( - "\n ".join( - "%s [%s] (%s, prio %s)" - % (cmdset.path, cmdset.key, cmdset.mergetype, cmdset.priority) - for cmdset in stored_cmdsets - if cmdset.key != "_EMPTY_CMDSET" - ) + output["Stored Cmdset(s)"] = "\n " + "\n ".join( + f"{cmdset.path} [{cmdset.key}] ({cmdset.mergetype}, prio {cmdset.priority})" + for cmdset in stored_cmdsets + if cmdset.key != "_EMPTY_CMDSET" ) # this gets all components of the currently merged set @@ -2539,40 +2592,28 @@ pass all_cmdsets = [cmdset for cmdset in dict(all_cmdsets).values()] all_cmdsets.sort(key=lambda x: x.priority, reverse=True) - string += "\n|wMerged Cmdset(s)|n:\n %s" % ( - "\n ".join( - "%s [%s] (%s, prio %s)" - % (cmdset.path, cmdset.key, cmdset.mergetype, cmdset.priority) - for cmdset in all_cmdsets - ) + output["Merged Cmdset(s)"] = "\n " + "\n ".join( + f"{cmdset.path} [{cmdset.key}] ({cmdset.mergetype} prio {cmdset.priority})" + for cmdset in all_cmdsets ) - # list the commands available to this object avail_cmdset = sorted([cmd.key for cmd in avail_cmdset if cmd.access(obj, "cmd")]) - cmdsetstr = utils.fill(", ".join(avail_cmdset), indent=2) - string += "\n|wCommands available to %s (result of Merged CmdSets)|n:\n %s" % ( - obj.key, - cmdsetstr, - ) - + cmdsetstr = "\n" + utils.fill(", ".join(avail_cmdset), indent=2) + output[f"Commands available to {obj.key} (result of Merged CmdSets)"] = str(cmdsetstr) + # scripts if hasattr(obj, "scripts") and hasattr(obj.scripts, "all") and obj.scripts.all(): - string += "\n|wScripts|n:\n %s" % obj.scripts + output["Scripts"] = "\n " + f"{obj.scripts}" # add the attributes - string += self.format_attributes(obj) - - # display Tags - tags_string = utils.fill( - ", ".join( - "%s[%s]" % (tag, category) - for tag, category in obj.tags.all(return_key_and_category=True) - ), - indent=5, + output.update(self.format_attributes(obj)) + # Tags + tags = obj.tags.all(return_key_and_category=True) + tags_string = "\n" + utils.fill( + ", ".join(sorted(f"{tag}[{category}]" for tag, category in tags)), indent=2, ) - if tags_string: - string += "\n|wTags[category]|n: %s" % tags_string.strip() - - # add the contents + if tags: + output["Tags[category]"] = tags_string + # Contents of object exits = [] pobjs = [] things = [] @@ -2585,24 +2626,28 @@ else: things.append(content) if exits: - string += "\n|wExits|n: %s" % ", ".join( - ["%s(%s)" % (exit.name, exit.dbref) for exit in exits] + output["Exits (has .destination)"] = ", ".join( + f"{exit.name}({exit.dbref})" for exit in exits ) if pobjs: - string += "\n|wCharacters|n: %s" % ", ".join( - ["|c%s|n(%s)" % (pobj.name, pobj.dbref) for pobj in pobjs] + output["Characters"] = ", ".join( + f"{dclr}{pobj.name}|n({pobj.dbref})" for pobj in pobjs ) if things: - string += "\n|wContents|n: %s" % ", ".join( - [ - "%s(%s)" % (cont.name, cont.dbref) - for cont in obj.contents - if cont not in exits and cont not in pobjs - ] + output["Contents"] = ", ".join( + f"{cont.name}({cont.dbref})" + for cont in obj.contents + if cont not in exits and cont not in pobjs ) - separator = "-" * _DEFAULT_WIDTH - # output info - return "%s\n%s\n%s" % (separator, string.strip(), separator)
    + # format output + max_width = -1 + for block in output.values(): + max_width = max(max_width, max(display_len(line) for line in block.split("\n"))) + max_width = max(0, min(self.client_width(), max_width)) + + sep = self.separator * max_width + mainstr = "\n".join(f"{hclr}{header}|n: {block}" for (header, block) in output.items()) + return f"{sep}\n{mainstr}\n{sep}"
    [docs] def func(self): """Process command""" @@ -2617,8 +2662,7 @@ that function finishes. Taking the resulting cmdset, we continue to format and output the result. """ - string = self.format_output(obj, cmdset) - self.msg(string.strip()) + self.msg(self.format_output(obj, cmdset).strip()) if not self.args: # If no arguments are provided, examine the invoker's location. @@ -2672,7 +2716,13 @@ if obj_attrs: for attrname in obj_attrs: # we are only interested in specific attributes - caller.msg(self.format_attributes(obj, attrname, crop=False)) + ret = "\n".join( + f"{self.header_color}{header}|n:{value}" + for header, value in self.format_attributes( + obj, attrname, crop=False + ).items() + ) + self.caller.msg(ret) else: session = None if obj.sessions.count(): diff --git a/docs/1.0-dev/_modules/evennia/commands/default/general.html b/docs/1.0-dev/_modules/evennia/commands/default/general.html index feed2013d6..b291d6f872 100644 --- a/docs/1.0-dev/_modules/evennia/commands/default/general.html +++ b/docs/1.0-dev/_modules/evennia/commands/default/general.html @@ -467,11 +467,16 @@ if not obj.at_before_get(caller): return - obj.move_to(caller, quiet=True) - caller.msg("You pick up %s." % obj.name) - caller.location.msg_contents("%s picks up %s." % (caller.name, obj.name), exclude=caller) - # calling at_get hook method - obj.at_get(caller)
    + success = obj.move_to(caller, quiet=True) + if not success: + caller.msg("This can't be picked up.") + else: + caller.msg("You pick up %s." % obj.name) + caller.location.msg_contents( + "%s picks up %s." % (caller.name, obj.name), exclude=caller + ) + # calling at_get hook method + obj.at_get(caller)
    [docs]class CmdDrop(COMMAND_DEFAULT_CLASS): @@ -512,11 +517,14 @@ if not obj.at_before_drop(caller): return - obj.move_to(caller.location, quiet=True) - caller.msg("You drop %s." % (obj.name,)) - caller.location.msg_contents("%s drops %s." % (caller.name, obj.name), exclude=caller) - # Call the object script's at_drop() method. - obj.at_drop(caller)
    + success = obj.move_to(caller.location, quiet=True) + if not success: + caller.msg("This couldn't be dropped.") + else: + caller.msg("You drop %s." % (obj.name,)) + caller.location.msg_contents("%s drops %s." % (caller.name, obj.name), exclude=caller) + # Call the object script's at_drop() method. + obj.at_drop(caller)
    [docs]class CmdGive(COMMAND_DEFAULT_CLASS): @@ -563,11 +571,14 @@ return # give object - caller.msg("You give %s to %s." % (to_give.key, target.key)) - to_give.move_to(target, quiet=True) - target.msg("%s gives you %s." % (caller.key, to_give.key)) - # Call the object script's at_give() method. - to_give.at_give(caller, target)
    + success = to_give.move_to(target, quiet=True) + if not success: + caller.msg("This could not be given.") + else: + caller.msg("You give %s to %s." % (to_give.key, target.key)) + target.msg("%s gives you %s." % (caller.key, to_give.key)) + # Call the object script's at_give() method. + to_give.at_give(caller, target)
    [docs]class CmdSetDesc(COMMAND_DEFAULT_CLASS): diff --git a/docs/1.0-dev/_modules/evennia/commands/default/muxcommand.html b/docs/1.0-dev/_modules/evennia/commands/default/muxcommand.html index 968d4ced9b..b2d828ba4e 100644 --- a/docs/1.0-dev/_modules/evennia/commands/default/muxcommand.html +++ b/docs/1.0-dev/_modules/evennia/commands/default/muxcommand.html @@ -243,12 +243,6 @@ else: self.character = None
    - def get_command_info(self): - """ - Update of parent class's get_command_info() for MuxCommand. - """ - self.get_command_info() -
    [docs] def get_command_info(self): """ Update of parent class's get_command_info() for MuxCommand. diff --git a/docs/1.0-dev/_modules/evennia/commands/default/system.html b/docs/1.0-dev/_modules/evennia/commands/default/system.html index d74310f8cb..0cb02a5c52 100644 --- a/docs/1.0-dev/_modules/evennia/commands/default/system.html +++ b/docs/1.0-dev/_modules/evennia/commands/default/system.html @@ -489,7 +489,9 @@ table.add_row( script.id, - script.obj.key if (hasattr(script, "obj") and script.obj) else "<Global>", + f"{script.obj.key}({script.obj.dbref})" + if (hasattr(script, "obj") and script.obj) + else "<Global>", script.key, script.interval if script.interval > 0 else "--", nextrep, diff --git a/docs/1.0-dev/_modules/evennia/commands/default/tests.html b/docs/1.0-dev/_modules/evennia/commands/default/tests.html index c1b2a29402..56e25bb501 100644 --- a/docs/1.0-dev/_modules/evennia/commands/default/tests.html +++ b/docs/1.0-dev/_modules/evennia/commands/default/tests.html @@ -58,7 +58,7 @@ from anything import Anything from django.conf import settings -from mock import Mock, mock +from unittest.mock import patch, Mock, MagicMock from evennia import DefaultRoom, DefaultExit, ObjectDB from evennia.commands.default.cmdset_character import CharacterCmdSet @@ -97,7 +97,8 @@ # ------------------------------------------------------------ -
    [docs]class CommandTest(EvenniaTest): +
    [docs]@patch("evennia.server.portal.portal.LoopingCall", new=MagicMock()) +class CommandTest(EvenniaTest): """ Tests a command """ @@ -190,11 +191,18 @@ returned_msg = msg_sep.join( _RE.sub("", ansi.parse_ansi(mess, strip_ansi=noansi)) for mess in stored_msg ).strip() - if msg == "" and returned_msg or not returned_msg.startswith(msg.strip()): + msg = msg.strip() + if msg == "" and returned_msg or not returned_msg.startswith(msg): + prt = "" + for ic, char in enumerate(msg): + import re + + prt += char + sep1 = "\n" + "=" * 30 + "Wanted message" + "=" * 34 + "\n" sep2 = "\n" + "=" * 30 + "Returned message" + "=" * 32 + "\n" sep3 = "\n" + "=" * 78 - retval = sep1 + msg.strip() + sep2 + returned_msg + sep3 + retval = sep1 + msg + sep2 + returned_msg + sep3 raise AssertionError(retval) else: returned_msg = "\n".join(str(msg) for msg in stored_msg) @@ -400,11 +408,29 @@ self.call(account.CmdOOC(), "", "You go OOC.", caller=self.account)
    [docs] def test_ic(self): + self.account.db._playable_characters = [self.char1] self.account.unpuppet_object(self.session) self.call( account.CmdIC(), "Char", "You become Char.", caller=self.account, receiver=self.char1 )
    +
    [docs] def test_ic__other_object(self): + self.account.db._playable_characters = [self.obj1] + self.account.unpuppet_object(self.session) + self.call( + account.CmdIC(), "Obj", "You become Obj.", caller=self.account, receiver=self.obj1 + )
    + +
    [docs] def test_ic__nonaccess(self): + self.account.unpuppet_object(self.session) + self.call( + account.CmdIC(), + "Nonexistent", + "That is not a valid character choice.", + caller=self.account, + receiver=self.account, + )
    +
    [docs] def test_password(self): self.call( account.CmdPassword(), @@ -510,10 +536,18 @@ self.call(building.CmdExamine(), "*TestAccount", "Name/key: TestAccount") self.char1.db.test = "testval" - self.call(building.CmdExamine(), "self/test", "Persistent attributes:\n test = testval") + self.call(building.CmdExamine(), "self/test", "Persistent attribute(s):\n test = testval") self.call(building.CmdExamine(), "NotFound", "Could not find 'NotFound'.") self.call(building.CmdExamine(), "out", "Name/key: out") + # escape inlinefuncs + self.char1.db.test2 = "this is a $random() value." + self.call( + building.CmdExamine(), + "self/test2", + "Persistent attribute(s):\n test2 = this is a \$random() value.", + ) + self.room1.scripts.add(self.script.__class__) self.call(building.CmdExamine(), "") self.account.scripts.add(self.script.__class__) @@ -559,7 +593,7 @@ self.call(building.CmdSetAttribute(), "Obj2/test2", "Attribute Obj2/test2 = value2") self.call(building.CmdSetAttribute(), "Obj2/NotFound", "Obj2 has no attribute 'notfound'.") - with mock.patch("evennia.commands.default.building.EvEditor") as mock_ed: + with patch("evennia.commands.default.building.EvEditor") as mock_ed: self.call(building.CmdSetAttribute(), "/edit Obj2/test3") mock_ed.assert_called_with(self.char1, Anything, Anything, key="Obj2/test3") @@ -843,7 +877,7 @@ ) self.call(building.CmdDesc(), "", "Usage: ") - with mock.patch("evennia.commands.default.building.EvEditor") as mock_ed: + with patch("evennia.commands.default.building.EvEditor") as mock_ed: self.call(building.CmdDesc(), "/edit") mock_ed.assert_called_with( self.char1, @@ -1058,9 +1092,9 @@ } ) ] - with mock.patch( + with patch( "evennia.commands.default.building.protlib.search_prototype", - new=mock.MagicMock(return_value=test_prototype), + new=MagicMock(return_value=test_prototype), ) as mprot: self.call( building.CmdTypeclass(), @@ -1126,7 +1160,7 @@ self.call(building.CmdFind(), "/exact Obj", "One Match") # Test multitype filtering - with mock.patch( + with patch( "evennia.commands.default.building.CHAR_TYPECLASS", "evennia.objects.objects.DefaultCharacter", ): @@ -1166,7 +1200,7 @@ "= Obj", "To create a global script you need scripts/add <typeclass>.", ) - self.call(building.CmdScript(), "Obj = ", "dbref obj") + self.call(building.CmdScript(), "Obj = ", "dbref obj") self.call( building.CmdScript(), "/start Obj", "0 scripts started on Obj" @@ -1594,11 +1628,11 @@ self.call(multimatch, "look", "")
    -
    [docs] @mock.patch("evennia.commands.default.syscommands.ChannelDB") +
    [docs] @patch("evennia.commands.default.syscommands.ChannelDB") def test_channelcommand(self, mock_channeldb): - channel = mock.MagicMock() - channel.msg = mock.MagicMock() - mock_channeldb.objects.get_channel = mock.MagicMock(return_value=channel) + channel = MagicMock() + channel.msg = MagicMock() + mock_channeldb.objects.get_channel = MagicMock(return_value=channel) self.call(syscommands.SystemSendToChannel(), "public:Hello") channel.msg.assert_called()
    diff --git a/docs/1.0-dev/_modules/evennia/comms/comms.html b/docs/1.0-dev/_modules/evennia/comms/comms.html index e07636b5ee..af30cb8b23 100644 --- a/docs/1.0-dev/_modules/evennia/comms/comms.html +++ b/docs/1.0-dev/_modules/evennia/comms/comms.html @@ -91,7 +91,9 @@ if cdict.get("keep_log"): self.attributes.add("keep_log", cdict["keep_log"]) if cdict.get("desc"): - self.attributes.add("desc", cdict["desc"])
    + self.attributes.add("desc", cdict["desc"]) + if cdict.get("tags"): + self.tags.batch_add(*cdict["tags"])
    [docs] def basetype_setup(self): # delayed import of the channelhandler @@ -435,7 +437,8 @@ to build senders for the message. sender_strings (list, optional): Name strings of senders. Used for external connections where the sender is not an account or object. - When this is defined, external will be assumed. + When this is defined, external will be assumed. The list will be + filtered so each sender-string only occurs once. keep_log (bool or None, optional): This allows to temporarily change the logging status of this channel message. If `None`, the Channel's `keep_log` Attribute will be used. If `True` or `False`, that logging status will be used for this @@ -466,6 +469,8 @@ msgobj = self.pre_send_message(msgobj) if not msgobj: return False + if sender_strings: + sender_strings = list(set(make_iter(sender_strings))) msgobj = self.message_transform( msgobj, emit=emit, sender_strings=sender_strings, external=external ) diff --git a/docs/1.0-dev/_modules/evennia/contrib/gendersub.html b/docs/1.0-dev/_modules/evennia/contrib/gendersub.html index ce6250f353..9df62a63a0 100644 --- a/docs/1.0-dev/_modules/evennia/contrib/gendersub.html +++ b/docs/1.0-dev/_modules/evennia/contrib/gendersub.html @@ -184,9 +184,9 @@ """ try: if text and isinstance(text, tuple): - text = (self._RE_GENDER_PRONOUN.sub(self._get_pronoun, text[0]), *text[1:]) + text = (_RE_GENDER_PRONOUN.sub(self._get_pronoun, text[0]), *text[1:]) else: - text = self._RE_GENDER_PRONOUN.sub(self._get_pronoun, text) + text = _RE_GENDER_PRONOUN.sub(self._get_pronoun, text) except TypeError: pass except Exception as e: diff --git a/docs/1.0-dev/_modules/evennia/contrib/traits.html b/docs/1.0-dev/_modules/evennia/contrib/traits.html index f1dee6818c..42e0c23337 100644 --- a/docs/1.0-dev/_modules/evennia/contrib/traits.html +++ b/docs/1.0-dev/_modules/evennia/contrib/traits.html @@ -369,6 +369,8 @@ ``` +---- + """ diff --git a/docs/1.0-dev/_modules/evennia/contrib/turnbattle/tb_range.html b/docs/1.0-dev/_modules/evennia/contrib/turnbattle/tb_range.html index 856f2430d5..932a745307 100644 --- a/docs/1.0-dev/_modules/evennia/contrib/turnbattle/tb_range.html +++ b/docs/1.0-dev/_modules/evennia/contrib/turnbattle/tb_range.html @@ -119,7 +119,7 @@ instead of the default: class Character(TBRangeCharacter): - + Do the same thing in your game's objects.py module for TBRangeObject: from evennia.contrib.turnbattle.tb_range import TBRangeObject @@ -287,10 +287,10 @@
    [docs]def at_defeat(defeated): """ Announces the defeat of a fighter in combat. - + Args: defeated (obj): Fighter that's been defeated. - + Notes: All this does is announce a defeat message by default, but if you want anything else to happen to defeated fighters (like putting them @@ -341,11 +341,11 @@
    [docs]def get_range(obj1, obj2): """ Gets the combat range between two objects. - + Args: obj1 (obj): First object obj2 (obj): Second object - + Returns: range (int or None): Distance between two objects or None if not applicable """ @@ -365,7 +365,7 @@
    [docs]def distance_inc(mover, target): """ Function that increases distance in range field between mover and target. - + Args: mover (obj): The object moving target (obj): The object to be moved away from @@ -381,11 +381,11 @@
    [docs]def approach(mover, target): """ Manages a character's whole approach, including changes in ranges to other characters. - + Args: mover (obj): The object moving target (obj): The object to be moved toward - + Notes: The mover will also automatically move toward any objects that are closer to the target than the mover is. The mover will also move away from anything they started @@ -395,7 +395,7 @@ def distance_dec(mover, target): """ Helper function that decreases distance in range field between mover and target. - + Args: mover (obj): The object moving target (obj): The object to be moved toward @@ -429,11 +429,11 @@
    [docs]def withdraw(mover, target): """ Manages a character's whole withdrawal, including changes in ranges to other characters. - + Args: mover (obj): The object moving target (obj): The object to be moved away from - + Notes: The mover will also automatically move away from objects that are close to the target of their withdrawl. The mover will never inadvertently move toward anything else while @@ -581,7 +581,8 @@ room as its object. Fights persist until only one participant is left with any HP or all - remaining participants choose to end the combat with the 'disengage' command. + remaining participants choose to end the combat with the 'disengage' + command. """
    [docs] def at_script_creation(self): @@ -656,7 +657,7 @@
    [docs] def init_range(self, to_init): """ Initializes range values for an object at the start of a fight. - + Args: to_init (object): Object to initialize range field for. """ @@ -679,14 +680,13 @@
    [docs] def join_rangefield(self, to_init, anchor_obj=None, add_distance=0): """ Adds a new object to the range field of a fight in progress. - + Args: to_init (object): Object to initialize range field for. - Keyword args: anchor_obj (object): Object to copy range values from, or None for a random object. add_distance (int): Distance to put between to_init object and anchor object. - + """ # Get a list of room's contents without to_init object. contents = self.obj.contents diff --git a/docs/1.0-dev/_modules/evennia/contrib/tutorial_examples/mirror.html b/docs/1.0-dev/_modules/evennia/contrib/tutorial_examples/mirror.html index 69cff7502f..8249193dfa 100644 --- a/docs/1.0-dev/_modules/evennia/contrib/tutorial_examples/mirror.html +++ b/docs/1.0-dev/_modules/evennia/contrib/tutorial_examples/mirror.html @@ -95,9 +95,9 @@ text = text[0] if is_iter(text) else text if from_obj: for obj in make_iter(from_obj): - obj.msg(f"{self.key} echoes back to you:\n\"{text}\".") + obj.msg(f'{self.key} echoes back to you:\n"{text}".') elif self.location: - self.location.msg_contents(f"{self.key} echoes back:\n\"{text}\".", exclude=[self]) + self.location.msg_contents(f'{self.key} echoes back:\n"{text}".', exclude=[self]) else: # no from_obj and no location, just log logger.log_msg(f"{self.key}.msg was called without from_obj and .location is None.")
    diff --git a/docs/1.0-dev/_modules/evennia/locks/lockfuncs.html b/docs/1.0-dev/_modules/evennia/locks/lockfuncs.html index 0b9b7bfbb3..4c30841496 100644 --- a/docs/1.0-dev/_modules/evennia/locks/lockfuncs.html +++ b/docs/1.0-dev/_modules/evennia/locks/lockfuncs.html @@ -580,7 +580,9 @@ Only true if accessed_obj has the specified tag and optional category. """ - return bool(accessed_obj.tags.get(*args))
    + tagkey = args[0] if args else None + category = args[1] if len(args) > 1 else None + return bool(accessed_obj.tags.get(tagkey, category=category))
    [docs]def inside(accessing_obj, accessed_obj, *args, **kwargs): diff --git a/docs/1.0-dev/_modules/evennia/locks/lockhandler.html b/docs/1.0-dev/_modules/evennia/locks/lockhandler.html index 2d116d4fe8..75d8e8f2ee 100644 --- a/docs/1.0-dev/_modules/evennia/locks/lockhandler.html +++ b/docs/1.0-dev/_modules/evennia/locks/lockhandler.html @@ -277,7 +277,13 @@ elist.append(_("Lock: lock-function '%s' is not available.") % funcstring) continue args = list(arg.strip() for arg in rest.split(",") if arg and "=" not in arg) - kwargs = dict([arg.split("=", 1) for arg in rest.split(",") if arg and "=" in arg]) + kwargs = dict( + [ + (part.strip() for part in arg.split("=", 1)) + for arg in rest.split(",") + if arg and "=" in arg + ] + ) lock_funcs.append((func, args, kwargs)) evalstring = evalstring.replace(funcstring, "%s") if len(lock_funcs) < nfuncs: diff --git a/docs/1.0-dev/_modules/evennia/objects/manager.html b/docs/1.0-dev/_modules/evennia/objects/manager.html index d32590daca..d3f72259e9 100644 --- a/docs/1.0-dev/_modules/evennia/objects/manager.html +++ b/docs/1.0-dev/_modules/evennia/objects/manager.html @@ -195,7 +195,7 @@ Args: attribute_name (str): Attribute key to search for. - attribute_value (str): Attribute value to search for. + attribute_value (any): Attribute value to search for. This can also be database objects. candidates (list, optional): Candidate objects to limit search to. typeclasses (list, optional): Python pats to restrict matches with. @@ -216,31 +216,13 @@ ) type_restriction = typeclasses and Q(db_typeclass_path__in=make_iter(typeclasses)) or Q() - # This doesn't work if attribute_value is an object. Workaround below - - if isinstance(attribute_value, (str, int, float, bool)): - return self.filter( - cand_restriction - & type_restriction - & Q(db_attributes__db_key=attribute_name, db_attributes__db_value=attribute_value) - ).order_by("id") - else: - # We must loop for safety since the referenced lookup gives deepcopy error if attribute value is an object. - global _ATTR - if not _ATTR: - from evennia.typeclasses.models import Attribute as _ATTR - cands = list( - self.filter( - cand_restriction & type_restriction & Q(db_attributes__db_key=attribute_name) - ) - ) - results = [ - attr.objectdb_set.all() - for attr in _ATTR.objects.filter( - objectdb__in=cands, db_value=attribute_value - ).order_by("id") - ] - return chain(*results) + results = self.filter( + cand_restriction + & type_restriction + & Q(db_attributes__db_key=attribute_name) + & Q(db_attributes__db_value=attribute_value) + ).order_by("id") + return results def get_objs_with_db_property(self, property_name, candidates=None): """ diff --git a/docs/1.0-dev/_modules/evennia/objects/models.html b/docs/1.0-dev/_modules/evennia/objects/models.html index 5cdf04a2e2..78a39b9473 100644 --- a/docs/1.0-dev/_modules/evennia/objects/models.html +++ b/docs/1.0-dev/_modules/evennia/objects/models.html @@ -66,7 +66,7 @@ from evennia.utils.utils import make_iter, dbref, lazy_property -
    [docs]class ContentsHandler(object): +
    [docs]class ContentsHandler: """ Handles and caches the contents of an object to avoid excessive lookups (this is done very often due to cmdhandler needing to look diff --git a/docs/1.0-dev/_modules/evennia/objects/objects.html b/docs/1.0-dev/_modules/evennia/objects/objects.html index a1621aad67..4441a18f10 100644 --- a/docs/1.0-dev/_modules/evennia/objects/objects.html +++ b/docs/1.0-dev/_modules/evennia/objects/objects.html @@ -250,7 +250,7 @@ # lockstring of newly created objects, for easy overloading. # Will be formatted with the appropriate attributes. - lockstring = "control:id({account_id}) or perm(Admin);" "delete:id({account_id}) or perm(Admin)" + lockstring = "control:id({account_id}) or perm(Admin);delete:id({account_id}) or perm(Admin)" objects = ObjectManager() @@ -434,8 +434,7 @@ - `me,self`: self-reference to this object - `<num>-<string>` - can be used to differentiate between multiple same-named matches - global_search (bool): Search all objects globally. This is overruled - by `location` keyword. + global_search (bool): Search all objects globally. This overrules 'location' data. use_nicks (bool): Use nickname-replace (nicktype "object") on `searchdata`. typeclass (str or Typeclass, or list of either): Limit search only to `Objects` with this typeclass. May be a list of typeclasses @@ -2083,10 +2082,13 @@ _content_types = ("character",) # lockstring of newly created rooms, for easy overloading. # Will be formatted with the appropriate attributes. - lockstring = "puppet:id({character_id}) or pid({account_id}) or perm(Developer) or pperm(Developer);delete:id({account_id}) or perm(Admin)" + lockstring = ( + "puppet:id({character_id}) or pid({account_id}) or perm(Developer) or pperm(Developer);" + "delete:id({account_id}) or perm(Admin)" + )
    [docs] @classmethod - def create(cls, key, account, **kwargs): + def create(cls, key, account=None, **kwargs): """ Creates a basic Character with default parameters, unless otherwise specified or extended. @@ -2095,8 +2097,8 @@ Args: key (str): Name of the new Character. - account (obj): Account to associate this Character with. Required as - an argument, but one can fake it out by supplying None-- it will + account (obj, optional): Account to associate this Character with. + If unset supplying None-- it will change the default lockset and skip creator attribution. Keyword args: @@ -2346,7 +2348,7 @@ )
    [docs] @classmethod - def create(cls, key, account, **kwargs): + def create(cls, key, account=None, **kwargs): """ Creates a basic Room with default parameters, unless otherwise specified or extended. @@ -2355,7 +2357,9 @@ Args: key (str): Name of the new Room. - account (obj): Account to associate this Room with. + account (obj, optional): Account to associate this Room with. If + given, it will be given specific control/edit permissions to this + object (along with normal Admin perms). If not given, default Keyword args: description (str): Brief description for this object. @@ -2384,13 +2388,20 @@ # Get description, if provided description = kwargs.pop("description", "") + # get locks if provided + locks = kwargs.pop("locks", "") + try: # Create the Room obj = create.create_object(**kwargs) - # Set appropriate locks - lockstring = kwargs.get("locks", cls.lockstring.format(id=account.id)) - obj.locks.add(lockstring) + # Add locks + if not locks and account: + locks = cls.lockstring.format(**{"id": account.id}) + elif not locks and not account: + locks = cls.lockstring(**{"id": obj.id}) + + obj.locks.add(locks) # Record creator id and creation IP if ip: @@ -2540,7 +2551,7 @@ # Command hooks
    [docs] @classmethod - def create(cls, key, account, source, dest, **kwargs): + def create(cls, key, source, dest, account=None, **kwargs): """ Creates a basic Exit with default parameters, unless otherwise specified or extended. @@ -2584,13 +2595,18 @@ description = kwargs.pop("description", "") + locks = kwargs.get("locks", "") + try: # Create the Exit obj = create.create_object(**kwargs) # Set appropriate locks - lockstring = kwargs.get("locks", cls.lockstring.format(id=account.id)) - obj.locks.add(lockstring) + if not locks and account: + locks = cls.lockstring.format(**{"id": account.id}) + elif not locks and not account: + locks = cls.lockstring.format(**{"id": obj.id}) + obj.locks.add(locks) # Record creator id and creation IP if ip: diff --git a/docs/1.0-dev/_modules/evennia/scripts/manager.html b/docs/1.0-dev/_modules/evennia/scripts/manager.html index d0863f6ed6..006e510975 100644 --- a/docs/1.0-dev/_modules/evennia/scripts/manager.html +++ b/docs/1.0-dev/_modules/evennia/scripts/manager.html @@ -114,7 +114,7 @@ Get all scripts in the database. Args: - key (str, optional): Restrict result to only those + key (str or int, optional): Restrict result to only those with matching key or dbref. Returns: @@ -124,12 +124,9 @@ if key: script = [] dbref = self.dbref(key) - if dbref or dbref == 0: - # return either [] or a valid list (never [None]) - script = [res for res in [self.dbref_search(dbref)] if res] - if not script: - script = self.filter(db_key=key) - return script + if dbref: + return self.filter(id=dbref) + return self.filter(db_key__iexact=key.strip()) return self.all() def delete_script(self, dbref): @@ -272,7 +269,7 @@ ostring = ostring.strip() dbref = self.dbref(ostring) - if dbref or dbref == 0: + if dbref: # this is a dbref, try to find the script directly dbref_match = self.dbref_search(dbref) if dbref_match and not ( diff --git a/docs/1.0-dev/_modules/evennia/server/portal/portal.html b/docs/1.0-dev/_modules/evennia/server/portal/portal.html index 6216dfbc0a..1b1663944e 100644 --- a/docs/1.0-dev/_modules/evennia/server/portal/portal.html +++ b/docs/1.0-dev/_modules/evennia/server/portal/portal.html @@ -54,6 +54,7 @@ from os.path import dirname, abspath from twisted.application import internet, service +from twisted.internet.task import LoopingCall from twisted.internet import protocol, reactor from twisted.python.log import ILogObserver @@ -61,6 +62,7 @@ django.setup() from django.conf import settings +from django.db import connection import evennia @@ -142,10 +144,29 @@ WEB_PLUGINS_MODULE = None INFO_DICT["errors"] = ( "WARNING: settings.WEB_PLUGINS_MODULE not found - " - "copy 'evennia/game_template/server/conf/web_plugins.py to mygame/server/conf." + "copy 'evennia/game_template/server/conf/web_plugins.py to " + "mygame/server/conf." ) +_MAINTENANCE_COUNT = 0 + + +def _portal_maintenance(): + """ + Repeated maintenance tasks for the portal. + + """ + global _MAINTENANCE_COUNT + + _MAINTENANCE_COUNT += 1 + + if _MAINTENANCE_COUNT % (3600 * 7) == 0: + # drop database connection every 7 hrs to avoid default timeouts on MySQL + # (see https://github.com/evennia/evennia/issues/1376) + connection.close() + + # ------------------------------------------------------------- # Portal Service object # ------------------------------------------------------------- @@ -184,6 +205,9 @@ self.start_time = time.time() + self.maintenance_task = LoopingCall(_portal_maintenance) + self.maintenance_task.start(60, now=True) # call every minute + # in non-interactive portal mode, this gets overwritten by # cmdline sent by the evennia launcher self.server_twistd_cmd = self._get_backup_server_twistd_cmd() diff --git a/docs/1.0-dev/_modules/evennia/server/portal/webclient.html b/docs/1.0-dev/_modules/evennia/server/portal/webclient.html index 968dac2bf5..e8d441df92 100644 --- a/docs/1.0-dev/_modules/evennia/server/portal/webclient.html +++ b/docs/1.0-dev/_modules/evennia/server/portal/webclient.html @@ -290,6 +290,8 @@ return else: return + # just to be sure + text = to_str(text) flags = self.protocol_flags diff --git a/docs/1.0-dev/_modules/evennia/typeclasses/attributes.html b/docs/1.0-dev/_modules/evennia/typeclasses/attributes.html index 152b43a465..6fb0ca9bdf 100644 --- a/docs/1.0-dev/_modules/evennia/typeclasses/attributes.html +++ b/docs/1.0-dev/_modules/evennia/typeclasses/attributes.html @@ -1135,13 +1135,13 @@ repeat-calling add when having many Attributes to add. Args: - *args (tuple): Tuples of varying length representing the - Attribute to add to this object. Supported tuples are - - - (key, value) - - (key, value, category) - - (key, value, category, lockstring) - - (key, value, category, lockstring, default_access) + *args (tuple): Each argument should be a tuples (can be of varying + length) representing the Attribute to add to this object. + Supported tuples are + - `(key, value)` + - `(key, value, category)` + - `(key, value, category, lockstring)` + - `(key, value, category, lockstring, default_access)` Keyword args: strattr (bool): If `True`, value must be a string. This diff --git a/docs/1.0-dev/_modules/evennia/typeclasses/models.html b/docs/1.0-dev/_modules/evennia/typeclasses/models.html index 41e230ea02..ebbc89796d 100644 --- a/docs/1.0-dev/_modules/evennia/typeclasses/models.html +++ b/docs/1.0-dev/_modules/evennia/typeclasses/models.html @@ -151,10 +151,38 @@ attrs["typename"] = name attrs["path"] = "%s.%s" % (attrs["__module__"], name) + def _get_dbmodel(bases): + """Recursively get the dbmodel""" + if not hasattr(bases, "__iter__"): + bases = [bases] + for base in bases: + try: + if base._meta.proxy or base._meta.abstract: + for kls in base._meta.parents: + return _get_dbmodel(kls) + except AttributeError: + # this happens if trying to parse a non-typeclass mixin parent, + # without a _meta + continue + else: + return base + return None + + dbmodel = _get_dbmodel(bases) + + if not dbmodel: + raise TypeError(f"{name} does not appear to inherit from a database model.") + # typeclass proxy setup + # first check explicit __applabel__ on the typeclass, then figure + # it out from the dbmodel + if "__applabel__" not in attrs: + # find the app-label in one of the bases, usually the dbmodel + attrs["__applabel__"] = dbmodel._meta.app_label + if "Meta" not in attrs: - class Meta(object): + class Meta: proxy = True app_label = attrs.get("__applabel__", "typeclasses") @@ -163,6 +191,16 @@ new_class = ModelBase.__new__(cls, name, bases, attrs) + # django doesn't support inheriting proxy models so we hack support for + # it here by injecting `proxy_for_model` to the actual dbmodel. + # Unfortunately we cannot also set the correct model_name, because this + # would block multiple-inheritance of typeclasses (Django doesn't allow + # multiple bases of the same model). + if dbmodel: + new_class._meta.proxy_for_model = dbmodel + # Maybe Django will eventually handle this in the future: + # new_class._meta.model_name = dbmodel._meta.model_name + # attach signals signals.post_save.connect(call_at_first_save, sender=new_class) signals.pre_delete.connect(remove_attributes_on_delete, sender=new_class) diff --git a/docs/1.0-dev/_modules/evennia/typeclasses/tags.html b/docs/1.0-dev/_modules/evennia/typeclasses/tags.html index 355571fb63..9f08efe904 100644 --- a/docs/1.0-dev/_modules/evennia/typeclasses/tags.html +++ b/docs/1.0-dev/_modules/evennia/typeclasses/tags.html @@ -77,7 +77,7 @@ indexed for efficient lookup in the database. Tags are shared between objects - a new tag is only created if the key+category combination did not previously exist, making them unsuitable for - storing object-related data (for this a full tag should be + storing object-related data (for this a regular Attribute should be used). The 'db_data' field is intended as a documentation field for the @@ -490,8 +490,8 @@ Batch-add tags from a list of tuples. Args: - tuples (tuple or str): Any number of `tagstr` keys, `(keystr, category)` or - `(keystr, category, data)` tuples. + *args (tuple or str): Each argument should be a `tagstr` keys or tuple `(keystr, category)` or + `(keystr, category, data)`. It's possible to mix input types. Notes: This will generate a mimimal number of self.add calls, diff --git a/docs/1.0-dev/_modules/evennia/utils/create.html b/docs/1.0-dev/_modules/evennia/utils/create.html index 36d65fc898..d33d07ca90 100644 --- a/docs/1.0-dev/_modules/evennia/utils/create.html +++ b/docs/1.0-dev/_modules/evennia/utils/create.html @@ -345,7 +345,7 @@ # -
    [docs]def create_help_entry(key, entrytext, category="General", locks=None, aliases=None): +
    [docs]def create_help_entry(key, entrytext, category="General", locks=None, aliases=None, tags=None): """ Create a static help entry in the help database. Note that Command help entries are dynamic and directly taken from the __doc__ @@ -358,7 +358,8 @@ entrytext (str): The body of te help entry category (str, optional): The help category of the entry. locks (str, optional): A lockstring to restrict access. - aliases (list of str): List of alternative (likely shorter) keynames. + aliases (list of str, optional): List of alternative (likely shorter) keynames. + tags (lst, optional): List of tags or tuples `(tag, category)`. Returns: help (HelpEntry): A newly created help entry. @@ -376,7 +377,9 @@ if locks: new_help.locks.add(locks) if aliases: - new_help.aliases.add(aliases) + new_help.aliases.add(make_iter(aliases)) + if tags: + new_help.tags.batch_add(*tags) new_help.save() return new_help except IntegrityError: @@ -398,7 +401,9 @@ # Comm system methods -
    [docs]def create_message(senderobj, message, channels=None, receivers=None, locks=None, header=None): +
    [docs]def create_message( + senderobj, message, channels=None, receivers=None, locks=None, tags=None, header=None +): """ Create a new communication Msg. Msgs represent a unit of database-persistent communication between entites. @@ -414,6 +419,7 @@ receivers (Object, Account, str or list): An Account/Object to send to, or a list of them. May be Account objects or accountnames. locks (str): Lock definition string. + tags (list): A list of tags or tuples `(tag, category)`. header (str): Mime-type or other optional information for the message Notes: @@ -440,6 +446,9 @@ new_message.receivers = receiver if locks: new_message.locks.add(locks) + if tags: + new_message.tags.batch_add(*tags) + new_message.save() return new_message
    @@ -448,7 +457,9 @@ create_msg = create_message -
    [docs]def create_channel(key, aliases=None, desc=None, locks=None, keep_log=True, typeclass=None): +
    [docs]def create_channel( + key, aliases=None, desc=None, locks=None, keep_log=True, typeclass=None, tags=None +): """ Create A communication Channel. A Channel serves as a central hub for distributing Msgs to groups of people without specifying the @@ -467,6 +478,7 @@ keep_log (bool): Log channel throughput. typeclass (str or class): The typeclass of the Channel (not often used). + tags (list): A list of tags or tuples `(tag, category)`. Returns: channel (Channel): A newly created channel. @@ -483,7 +495,7 @@ # store call signature for the signal new_channel._createdict = dict( - key=key, aliases=aliases, desc=desc, locks=locks, keep_log=keep_log + key=key, aliases=aliases, desc=desc, locks=locks, keep_log=keep_log, tags=tags ) # this will trigger the save signal which in turn calls the diff --git a/docs/1.0-dev/_modules/evennia/utils/dbserialize.html b/docs/1.0-dev/_modules/evennia/utils/dbserialize.html index 1190d2bb54..18c3aa4028 100644 --- a/docs/1.0-dev/_modules/evennia/utils/dbserialize.html +++ b/docs/1.0-dev/_modules/evennia/utils/dbserialize.html @@ -270,6 +270,12 @@ def __ne__(self, other): return self._data != other + def __lt__(self, other): + return self._data < other + + def __gt__(self, other): + return self._data > other + @_save def __setitem__(self, key, value): self._data.__setitem__(key, self._convert_mutables(value)) @@ -315,6 +321,13 @@ def index(self, value, *args): return self._data.index(value, *args) + @_save + def sort(self, *, key=None, reverse=False): + self._data.sort(key=key, reverse=reverse) + + def copy(self): + return self._data.copy() + class _SaverDict(_SaverMutable, MutableMapping): """ diff --git a/docs/1.0-dev/_modules/evennia/utils/evtable.html b/docs/1.0-dev/_modules/evennia/utils/evtable.html index 35f1f8080e..5ecb0ba704 100644 --- a/docs/1.0-dev/_modules/evennia/utils/evtable.html +++ b/docs/1.0-dev/_modules/evennia/utils/evtable.html @@ -158,7 +158,7 @@ from django.conf import settings from textwrap import TextWrapper from copy import deepcopy, copy -from evennia.utils.utils import m_len, is_iter +from evennia.utils.utils import is_iter, display_len as d_len from evennia.utils.ansi import ANSIString _DEFAULT_WIDTH = settings.CLIENT_DEFAULT_WIDTH @@ -272,7 +272,7 @@ indent = self.initial_indent # Maximum width for this line. - width = self.width - m_len(indent) + width = self.width - d_len(indent) # First chunk on line is whitespace -- drop it, unless this # is the very beginning of the text (ie. no lines started yet). @@ -280,7 +280,7 @@ del chunks[-1] while chunks: - l = m_len(chunks[-1]) + l = d_len(chunks[-1]) # Can at least squeeze this chunk onto the current line. if cur_len + l <= width: @@ -293,7 +293,7 @@ # The current line is full, and the next chunk is too big to # fit on *any* line (not just this one). - if chunks and m_len(chunks[-1]) > width: + if chunks and d_len(chunks[-1]) > width: self._handle_long_word(chunks, cur_line, cur_len, width) # If the last chunk on this line is all whitespace, drop it. @@ -483,7 +483,7 @@ self.valign = kwargs.get("valign", "c") self.data = self._split_lines(_to_ansi(data)) - self.raw_width = max(m_len(line) for line in self.data) + self.raw_width = max(d_len(line) for line in self.data) self.raw_height = len(self.data) # this is extra trimming required for cels in the middle of a table only @@ -522,9 +522,9 @@ width (int): The width to crop `text` to. """ - if m_len(text) > width: + if d_len(text) > width: crop_string = self.crop_string - return text[: width - m_len(crop_string)] + crop_string + return text[: width - d_len(crop_string)] + crop_string return text def _reformat(self): @@ -565,7 +565,7 @@ width = self.width adjusted_data = [] for line in data: - if 0 < width < m_len(line): + if 0 < width < d_len(line): # replace_whitespace=False, expand_tabs=False is a # fix for ANSIString not supporting expand_tabs/translate adjusted_data.extend( @@ -608,7 +608,7 @@ text (str): Centered text. """ - excess = width - m_len(text) + excess = width - d_len(text) if excess <= 0: return text if excess % 2: @@ -647,13 +647,13 @@ if line.startswith(" ") and not line.startswith(" ") else line ) - + hfill_char * (width - m_len(line)) + + hfill_char * (width - d_len(line)) for line in data ] return lines elif align == "r": return [ - hfill_char * (width - m_len(line)) + hfill_char * (width - d_len(line)) + ( " " + line.rstrip(" ") if line.endswith(" ") and not line.endswith(" ") @@ -794,7 +794,7 @@ natural_width (int): Width of cell. """ - return m_len(self.formatted[0]) # if self.formatted else 0
    + return d_len(self.formatted[0]) # if self.formatted else 0
    [docs] def replace_data(self, data, **kwargs): """ @@ -809,7 +809,7 @@ """ self.data = self._split_lines(_to_ansi(data)) - self.raw_width = max(m_len(line) for line in self.data) + self.raw_width = max(d_len(line) for line in self.data) self.raw_height = len(self.data) self.reformat(**kwargs)
    diff --git a/docs/1.0-dev/_modules/evennia/utils/inlinefuncs.html b/docs/1.0-dev/_modules/evennia/utils/inlinefuncs.html index ecfa3c0bdb..e828f903fb 100644 --- a/docs/1.0-dev/_modules/evennia/utils/inlinefuncs.html +++ b/docs/1.0-dev/_modules/evennia/utils/inlinefuncs.html @@ -106,14 +106,66 @@ import re import fnmatch +import random as base_random from django.conf import settings from evennia.utils import utils, logger +# The stack size is a security measure. Set to <=0 to disable. +_STACK_MAXSIZE = settings.INLINEFUNC_STACK_MAXSIZE + # example/testing inline functions +
    [docs]def random(*args, **kwargs): + """ + Inlinefunc. Returns a random number between + 0 and 1, from 0 to a maximum value, or within a given range (inclusive). + + Args: + minval (str, optional): Minimum value. If not given, assumed 0. + maxval (str, optional): Maximum value. + + Keyword argumuents: + session (Session): Session getting the string. + + Notes: + If either of the min/maxvalue has a '.' in it, a floating-point random + value will be returned. Otherwise it will be an integer value in the + given range. + + Example: + `$random()` + `$random(5)` + `$random(5, 10)` + + """ + nargs = len(args) + if nargs == 1: + # only maxval given + minval, maxval = "0", args[0] + elif nargs > 1: + minval, maxval = args[:2] + else: + minval, maxval = ("0", "1") + + if "." in minval or "." in maxval: + # float mode + try: + minval, maxval = float(minval), float(maxval) + except ValueError: + minval, maxval = 0, 1 + return "{:.2f}".format(minval + maxval * base_random.random()) + else: + # int mode + try: + minval, maxval = int(minval), int(maxval) + except ValueError: + minval, maxval = 0, 1 + return str(base_random.randint(minval, maxval))
    + +
    [docs]def pad(*args, **kwargs): """ Inlinefunc. Pads text to given width. @@ -123,7 +175,8 @@ width (str, optional): Will be converted to integer. Width of padding. align (str, optional): Alignment of padding; one of 'c', 'l' or 'r'. - fillchar (str, optional): Character used for padding. Defaults to a space. + fillchar (str, optional): Character used for padding. Defaults to a + space. Keyword args: session (Session): Session performing the pad. @@ -271,12 +324,6 @@ raise -# The stack size is a security measure. Set to <=0 to disable. -try: - _STACK_MAXSIZE = settings.INLINEFUNC_STACK_MAXSIZE -except AttributeError: - _STACK_MAXSIZE = 20 - # regex definitions _RE_STARTTOKEN = re.compile(r"(?<!\\)\$(\w+)\(") # unescaped $funcname( (start of function call) @@ -509,6 +556,20 @@ return retval
    +
    [docs]def raw(string): + """ + Escape all inlinefuncs in a string so they won't get parsed. + + Args: + string (str): String with inlinefuncs to escape. + """ + + def _escape(match): + return "\\" + match.group(0) + + return _RE_STARTTOKEN.sub(_escape, string)
    + + # # Nick templating # diff --git a/docs/1.0-dev/_modules/evennia/utils/picklefield.html b/docs/1.0-dev/_modules/evennia/utils/picklefield.html index 0c3da7dca1..ee12ef6871 100644 --- a/docs/1.0-dev/_modules/evennia/utils/picklefield.html +++ b/docs/1.0-dev/_modules/evennia/utils/picklefield.html @@ -72,7 +72,7 @@ from ast import literal_eval from datetime import datetime -from copy import deepcopy +from copy import deepcopy, Error as CopyError from base64 import b64encode, b64decode from zlib import compress, decompress @@ -85,6 +85,7 @@ from pickle import loads, dumps from django.utils.encoding import force_str +from evennia.utils.dbserialize import pack_dbobj DEFAULT_PROTOCOL = 4 @@ -133,7 +134,15 @@ # The reason this is important is because we do all of our lookups as # simple string matches, thus the character streams must be the same # for the lookups to work properly. See tests.py for more information. - value = dumps(deepcopy(value), protocol=pickle_protocol) + try: + value = deepcopy(value) + except CopyError: + # this can happen on a manager query where the search query string is a + # database model. + value = pack_dbobj(value) + + value = dumps(value, protocol=pickle_protocol) + if compress_object: value = compress(value) value = b64encode(value).decode() # decode bytes to str diff --git a/docs/1.0-dev/_modules/evennia/utils/utils.html b/docs/1.0-dev/_modules/evennia/utils/utils.html index 117e561fcb..65a0accb5f 100644 --- a/docs/1.0-dev/_modules/evennia/utils/utils.html +++ b/docs/1.0-dev/_modules/evennia/utils/utils.html @@ -50,6 +50,7 @@ import os import gc import sys +import copy import types import math import re @@ -60,6 +61,7 @@ import importlib import importlib.util import importlib.machinery +from unicodedata import east_asian_width from twisted.internet.task import deferLater from twisted.internet.defer import returnValue # noqa - used as import target from os.path import join as osjoin @@ -70,6 +72,8 @@ from django.utils import timezone from django.utils.translation import gettext as _ from django.apps import apps +from django.core.validators import validate_email as django_validate_email +from django.core.exceptions import ValidationError as DjangoValidationError from evennia.utils import logger _MULTIMATCH_TEMPLATE = settings.SEARCH_MULTIMATCH_TEMPLATE @@ -381,14 +385,16 @@ return "\n".join(rows)
    -
    [docs]def list_to_string(inlist, endsep="and", addquote=False): +
    [docs]def iter_to_string(initer, endsep="and", addquote=False): """ - This pretty-formats a list as string output, adding an optional + This pretty-formats an iterable list as string output, adding an optional alternative separator to the second to last entry. If `addquote` is `True`, the outgoing strings will be surrounded by quotes. Args: - inlist (list): The list to print. + initer (any): Usually an iterable to print. Each element must be possible to + present with a string. Note that if this is a generator, it will be + consumed by this operation. endsep (str, optional): If set, the last item separator will be replaced with this value. addquote (bool, optional): This will surround all outgoing @@ -413,16 +419,21 @@ endsep = "," else: endsep = " " + endsep - if not inlist: + if not initer: return "" + initer = tuple(str(val) for val in make_iter(initer)) if addquote: - if len(inlist) == 1: - return '"%s"' % inlist[0] - return ", ".join('"%s"' % v for v in inlist[:-1]) + "%s %s" % (endsep, '"%s"' % inlist[-1]) + if len(initer) == 1: + return '"%s"' % initer[0] + return ", ".join('"%s"' % v for v in initer[:-1]) + "%s %s" % (endsep, '"%s"' % initer[-1]) else: - if len(inlist) == 1: - return str(inlist[0]) - return ", ".join(str(v) for v in inlist[:-1]) + "%s %s" % (endsep, inlist[-1])
    + if len(initer) == 1: + return str(initer[0]) + return ", ".join(str(v) for v in initer[:-1]) + "%s %s" % (endsep, initer[-1])
    + + +# legacy alias +list_to_string = iter_to_string
    [docs]def wildcard_to_regexp(instring): @@ -947,69 +958,25 @@
    [docs]def validate_email_address(emailaddress): """ - Checks if an email address is syntactically correct. + Checks if an email address is syntactically correct. Makes use + of the django email-validator for consistency. Args: emailaddress (str): Email address to validate. Returns: - is_valid (bool): If this is a valid email or not. - - Notes. - (This snippet was adapted from - http://commandline.org.uk/python/email-syntax-check.) + bool: If this is a valid email or not. """ - - emailaddress = r"%s" % emailaddress - - domains = ( - "aero", - "asia", - "biz", - "cat", - "com", - "coop", - "edu", - "gov", - "info", - "int", - "jobs", - "mil", - "mobi", - "museum", - "name", - "net", - "org", - "pro", - "tel", - "travel", - ) - - # Email address must be more than 7 characters in total. - if len(emailaddress) < 7: - return False # Address too short. - - # Split up email address into parts. try: - localpart, domainname = emailaddress.rsplit("@", 1) - host, toplevel = domainname.rsplit(".", 1) - except ValueError: - return False # Address does not have enough parts. - - # Check for Country code or Generic Domain. - if len(toplevel) != 2 and toplevel not in domains: - return False # Not a domain name. - - for i in "-_.%+.": - localpart = localpart.replace(i, "") - for i in "-_.": - host = host.replace(i, "") - - if localpart.isalnum() and host.isalnum(): - return True # Email address is fine. + django_validate_email(str(emailaddress)) + except DjangoValidationError: + return False + except Exception: + logger.log_trace() + return False else: - return False # Email address has funny characters.
    + return True
    [docs]def inherits_from(obj, parent): @@ -2078,7 +2045,7 @@ back to normal len for other objects. Args: - target (string): A string with potential MXP components + target (str): A string with potential MXP components to search. Returns: @@ -2093,6 +2060,33 @@ return len(target)
    +
    [docs]def display_len(target): + """ + Calculate the 'visible width' of text. This is not necessarily the same as the + number of characters in the case of certain asian characters. This will also + strip MXP patterns. + + Args: + target (any): Something to measure the length of. If a string, it will be + measured keeping asian-character and MXP links in mind. + + Return: + int: The visible width of the target. + + """ + # Would create circular import if in module root. + from evennia.utils.ansi import ANSI_PARSER + + if inherits_from(target, str): + # str or ANSIString + target = ANSI_PARSER.strip_mxp(target) + target = ANSI_PARSER.parse_ansi(target, strip_ansi=True) + extra_wide = ("F", "W") + return sum(2 if east_asian_width(char) in extra_wide else 1 for char in target) + else: + return len(target)
    + + # ------------------------------------------------------------------- # Search handler function # ------------------------------------------------------------------- diff --git a/docs/1.0-dev/_modules/evennia/utils/validatorfuncs.html b/docs/1.0-dev/_modules/evennia/utils/validatorfuncs.html index 1326f1ea6b..5b579a457f 100644 --- a/docs/1.0-dev/_modules/evennia/utils/validatorfuncs.html +++ b/docs/1.0-dev/_modules/evennia/utils/validatorfuncs.html @@ -52,10 +52,8 @@ import re as _re import pytz as _pytz import datetime as _dt -from django.core.exceptions import ValidationError as _error -from django.core.validators import validate_email as _val_email from evennia.utils.ansi import strip_ansi -from evennia.utils.utils import string_partial_matching as _partial +from evennia.utils.utils import string_partial_matching as _partial, validate_email_address from django.utils.translation import gettext as _ _TZ_DICT = {str(tz): _pytz.timezone(tz) for tz in _pytz.common_timezones} @@ -255,9 +253,8 @@
    [docs]def email(entry, option_key="Email Address", **kwargs): if not entry: raise ValueError("Email address field empty!") - try: - _val_email(str(entry)) # offloading the hard work to Django! - except _error: + valid = validate_email_address(entry) + if not valid: raise ValueError(f"That isn't a valid {option_key}!") return entry
    diff --git a/docs/1.0-dev/_sources/Contribs/Arxcode-installing-help.md.txt b/docs/1.0-dev/_sources/Contribs/Arxcode-installing-help.md.txt index e7fba4fbc2..e8837ae768 100644 --- a/docs/1.0-dev/_sources/Contribs/Arxcode-installing-help.md.txt +++ b/docs/1.0-dev/_sources/Contribs/Arxcode-installing-help.md.txt @@ -31,7 +31,7 @@ important if referring to newer Evennia documentation. If you are new to Evennia it's *highly* recommended that you run through the instructions in full - including initializing and starting a new empty game and connecting to it. That way you can be sure Evennia works correctly as a base line. If you have trouble, make sure to -read the [Troubleshooting instructions](Getting-Started#troubleshooting) for your +read the [Troubleshooting instructions](./Getting-Started#troubleshooting) for your operating system. You can also drop into our [forums](https://groups.google.com/forum/#%21forum/evennia), join `#evennia` on `irc.freenode.net` or chat from the linked [Discord Server](https://discord.gg/NecFePw). diff --git a/docs/1.0-dev/_sources/Contributing-Docs.md.txt b/docs/1.0-dev/_sources/Contributing-Docs.md.txt index bcaa5ace95..c8872ba267 100644 --- a/docs/1.0-dev/_sources/Contributing-Docs.md.txt +++ b/docs/1.0-dev/_sources/Contributing-Docs.md.txt @@ -36,12 +36,13 @@ primarily be accessed as link refs (e.g. `Component/Account`) - `source/Howtos/` holds docs that describe how to achieve a specific goal, effect or result in Evennia. This is often on a tutorial or FAQ form and will refer to the rest of the documentation for further reading. - - `source/Howtos/StartingTutorial/` holds all documents part of the initial tutorial sequence. + - `source/Howtos/Starting/` holds all documents part of the initial tutorial sequence. Other files and folders: - `source/api/` contains the auto-generated API documentation as `.rst` files. Don't edit these - files manually, your changes will be lost. + files manually, your changes will be lost. To refer to these files, use `api:` followed by + the Python path, for example `[rpsystem contrib](api:evennia.contrib.rpsystem)`. - `source/_templates` and `source/_static` should not be modified unless adding a new doc-page feature or changing the look of the HTML documentation. - `conf.py` holds the Sphinx configuration. It should usually not be modified except to update @@ -62,7 +63,7 @@ not hard and is very readable on its raw text-form. You can furthermore get a good feel for how things will look using a Markdown-viewer like [Grip][grip]. Editors like [ReText][retext] or IDE's like -[PyCharm][pycharm] also have Markdown previews. Building the docs locally is +[PyCharm][pycharm] also have native Markdown previews. Building the docs locally is however the only way to make sure the outcome is exactly as you expect. The process will also find any mistakes you made, like making a typo in a link. @@ -98,13 +99,17 @@ done in your terminal/console. The full documentation includes both the doc pages and the API documentation generated from the Evennia source. For this you must install Evennia and -initialize a new game with a default database (you don't need to have it +initialize a new game with a default database (you don't need to have any server running) -- Follow the normal [Evennia Getting-Started instructions][getting-started] - to install Evennia into a virtualenv. Get back here once everything is installed but - before creating a new game. -- Make sure you `cd` to the folder _containing_ your `evennia/` repo (so two levels +- It's recommended that you use a virtualenv. Install your cloned version of Evennia into +by pointing to the repo folder (the one containing `/docs`): + + ``` + pip install -e evennia + ``` + +- Make sure you are in the parent folder _containing_ your `evennia/` repo (so _two_ levels up from `evennia/docs/`). - Create a new game folder called exactly `gamedir` at the same level as your `evennia` repo with @@ -113,8 +118,8 @@ repo with evennia --init gamedir ``` -- Then `cd` into it and create a new, empty database. You don't need to start the game - or do any further changes. +- Then `cd` into it and create a new, empty database. You don't need to start the +game or do any further changes after this. ``` evennia migrate @@ -130,11 +135,10 @@ repo with ----- gamedir/ ``` -If you are already working on a game, you may of course have your 'real' game folder there as -well. We won't touch that. +(If you are already working on a game, you may of course have your 'real' game folder there as +well. We won't touch that.) -- Make sure you are still in your virtualenv, then go to `evennia/docs/` and - install the doc-building requirements: +- Go to `evennia/docs/` and install the doc-building requirements (you only need to do this once): ``` make install @@ -180,8 +184,8 @@ docs are built by looking at the git tree. make mv-local ``` -This is as close to the 'real' version as you can get locally. The different versions -will be found under `evennia/docs/build`. During deploy a symlink `latest` will point +This is as close to the 'real' version of the docs as you can get locally. The different versions +will be found under `evennia/docs/build/versions/`. During deploy a symlink `latest` will point to the latest version of the docs. #### Release @@ -221,16 +225,16 @@ We generally use underscores for italics and double-asterisks for bold: ### Headings We use `#` to indicate sections/headings. The more `#` the more of a sub-heading it is (will get -smaller -and smaller font). +smaller and smaller font). - `# Heading` - `## SubHeading` -- `## SubSubHeading` +- `### SubSubHeading` +- `#### SubSubSubHeading` -> Don't reuse the same heading/subheading name over and over in the same document. While Markdown -does not prevent -it, it makes it impossible to link to those duplicates properly (see next section). +> Don't use the same heading/subheading name more than once in one page. While Markdown +does not prevent it, it will make it impossible to refer to that heading uniquely. +The Evennia documentation preparser will detect this and give you an error. ### Lists @@ -283,13 +287,13 @@ full `http://` linking unless really referring to an external resource. You can point to sub-sections (headings) in a document by using a single `#` and the name of the heading, replacing spaces with dashes. So to refer to a heading `## Cool Stuff` inside `My-Document` -would be a link `[cool stuff](My-Document#Cool-Stuff)`. +would be a link `[cool stuff](My-Document#Cool-Stuff)`. This is why headings must be uniquely named +within on document. - `[linktext][linkref]` - refer to a reference defined later in the document. Urls can get long and if you are using the same url in many places it can get a little cluttered. So -you can also put -the url as a 'footnote' at the end of your document +you can also put the url as a 'footnote' at the end of your document and refer to it by putting your reference within square brackets `[ ]`. Here's an example: ``` @@ -298,7 +302,7 @@ This is a [clickable link][mylink]. This is [another link][1]. ... -[mylink](http://...) +[mylink]: http://... [1]: My-Document ``` @@ -309,8 +313,8 @@ The Evennia documentation supports some special reference shortcuts in links: ##### Github online repository -- `github:` - a shortcut for the full path to the Evennia repository on github. This will refer to - the `master` branch by default: +- `github:` - a shortcut for the full path to the Evennia repository on github. This must be given +with forward-slashes and include the `.py` file ending. It will refer to the `master` branch by default: [link to objects.py](github:evennia/objects/objects.py) @@ -328,21 +332,18 @@ The Evennia documentation supports some special reference shortcuts in links: This will create a link to the auto-generated `evennia/source/api/evennia.objects.rst` document. Since api-docs are generated alongside the documentation, this will always be the api docs for -the - current version/branch of the docs. + the current version/branch of the docs. ##### Bug reports/feature request -- `issue`, `bug-report`, `feature-request` - links to the same github issue select page. +- `github:issue` - links to the github issue selection page, where the user can choose which type of + issue to create. If you find a problem, make a [bug report](github:issue)! This will generate a link to https://github.com/evennia/evennia/issues/new/choose. - > For some reason these particular shortcuts gives a warning during documentation compilation. This - > can be ignored. - ### Verbatim text It's common to want to mark something to be displayed verbatim - just as written - without any @@ -396,13 +397,13 @@ def a_python_func(x): Markdown is easy to read and use. But while it does most of what we need, there are some things it's not quite as expressive as it needs to be. For this we need to fall back to the [ReST][ReST] markup language which the documentation system uses under the hood. This is done by specifying `eval_rst` -as -the name of the `language` of a literal block: +as the name of the `language` of a literal block: ```` ```eval_rst - This will be evaluated as ReST. + This will be evaluated as ReST. + All content must be indented. ``` ```` @@ -413,13 +414,23 @@ There is also a short-hand form for starting a [ReST directive][ReST-directives] ```` ```directive:: possible-option - Content that *must* be indented for it to be included in the directive. + Content *must* be indented for it to be included in the directive. - New lines are ignored except if separated by an empty line. + New lines are ignored, empty lines starts a new paragraph. ``` ```` -See below for examples of this. +Within a ReST block, one must use Restructured Text syntax, which is not the same as Markdown. + +- Single backticks around text makes it _italic_. +- Double backticks around text makes it `verbatim`. +- A link is written within back-ticks, with an underscore at the end: + + `python `_ + +[Here is a ReST formatting cheat sheet](https://thomas-cokelaer.info/tutorials/sphinx/rest_syntax.html). + +Below are examples of ReST-block structures. #### Note @@ -543,7 +554,7 @@ a plain HTML string in the markdown like so: #### Tables -A table is specified using [ReST table syntax][ReST-tables]: +A table is specified using [ReST table syntax][ReST-tables] (they don't need to be indented): ```` ```eval_rst @@ -598,9 +609,9 @@ or the more flexible but verbose #### A more flexible code block -The regular Markdown codeblock is usually enough but for more direct control over the style, one -can also specify the code block explicitly in `ReST`. -for more flexibility. It also provides a link to the code block, identified by its name. +The regular Markdown Python codeblock is usually enough but for more direct control over the style, one +can also specify the code block explicitly in `ReST` for more flexibility. +It also provides a link to the code block, identified by its name. ```` @@ -642,11 +653,21 @@ this block through the link that will appear (so it should be unique for a give document). > The default markdown syntax will actually generate a code-block ReST instruction like this -> automatically for us behind the scenes. The automatic generation can't know things like emphasize- -lines -> or caption since that's not a part of the Markdown specification. +> automatically for us behind the scenes. But the automatic generation can't know things like emphasize- +lines or captions since that's not a part of the Markdown specification. -# Technical +## Code documentation + +The source code docstrings will be parsed as Markdown. When writing a module docstring, you can use Markdown formatting, +including header levels down to 4th level (`#### SubSubSubHeader`). After the module documentation it's +a good idea to end with four dashes `----`. This will create a visible line between the documentation and the +class/function docs to follow. See for example [the Traits docs](api:evennia.contrib.traits). + +All non-private classes, methods and functions must have a Google-style docstring, as per the +[Evennia coding style guidelines][github:evennia/CODING_STYLE.md]. This will then be correctly formatted +into pretty api docs. + +## Technical Evennia leverages [Sphinx][sphinx] with the [recommonmark][recommonmark] extension, which allows us to write our diff --git a/docs/1.0-dev/_sources/Howto/Howto-Overview.md.txt b/docs/1.0-dev/_sources/Howto/Howto-Overview.md.txt index b28424f057..bf7e96431e 100644 --- a/docs/1.0-dev/_sources/Howto/Howto-Overview.md.txt +++ b/docs/1.0-dev/_sources/Howto/Howto-Overview.md.txt @@ -32,9 +32,7 @@ in mind for your own game, this will give you a good start. 1. [Introduction & Overview](Starting/Starting-Part2) 1. [On planning a game](Starting/Part2/Game-Planning) -1. [Multisession modes](../Unimplemented) -1. [Layout of our tutorial game](../Unimplemented) -1. [Some useful Contribs](Starting/Part2/Some-Useful-Contribs) +1. [Planning to use some useful Contribs](Starting/Part2/Planning-Some-Useful-Contribs) ### Part3: How we get there diff --git a/docs/1.0-dev/_sources/Howto/Starting/Part2/Game-Planning.md.txt b/docs/1.0-dev/_sources/Howto/Starting/Part2/Game-Planning.md.txt index b4abde166c..c8f144ec8d 100644 --- a/docs/1.0-dev/_sources/Howto/Starting/Part2/Game-Planning.md.txt +++ b/docs/1.0-dev/_sources/Howto/Starting/Part2/Game-Planning.md.txt @@ -1,193 +1,176 @@ -# Game Planning +[prev lesson](../Starting-Part2) | [next lesson](./Planning-The-Tutorial-Game) + +# On Planning a Game + +This lesson will be less hands-on and more introspective. We'll go through some general things to think +about when planning your game. In the following lessons we'll apply this to plan out the tutorial-game we will +be making. + +Note that the suggestions on this page are just that - suggestions. Also, they are primarily aimed at a lone +hobby designer or a small team developing a game in their free time. + +```important:: + + Your first all overshadowing goal is to beat the odds and get **something** out the door! + Even if it's a scaled-down version of your dream game, lacking many "must-have" features! + +``` + +Remember: *99.99999% of all great game ideas never lead to a game*. Especially not to an online +game that people can actually play and enjoy. It's better to get your game out there and expand on it +later than to code in isolation until you burn out, lose interest or your hard drive crashes. + +- Keep the scope of your initial release down. Way down. +- Start small, with an eye towards expansions later, after first release. +- If the suggestions here seems boring or a chore to you, do it your way instead. Everyone's different. +- Keep having _fun_. You must keep your motivation up, whichever way works for _you_. -So you have Evennia up and running. You have a great game idea in mind. Now it's time to start -cracking! But where to start? Here are some ideas for a workflow. Note that the suggestions on this -page are just that - suggestions. Also, they are primarily aimed at a lone hobby designer or a small -team developing a game in their free time. There is an article in the Imaginary Realities e-zine -which was written by the Evennia lead dev. It focuses more on you finding out your motivations for -making a game - you can -[read the article here](http://journal.imaginary-realities.com/volume-07/issue-03/where-do-i-begin/index.html). +## The steps +Here are the rough steps towards your goal. -Below are some minimal steps for getting the first version of a new game world going with players. -It's worth to at least make the attempt to do these steps in order even if you are itching to jump -ahead in the development cycle. On the other hand, you should also make sure to keep your work fun -for you, or motivation will falter. Making a full game is a lot of work as it is, you'll need all -your motivation to make it a reality. +1. Planning +2. Coding + Gradually building a tech-demo +3. Building the actual game world +4. Release +5. Celebrate -Remember that *99.99999% of all great game ideas never lead to a game*. Especially not to an online -game that people can actually play and enjoy. So our first all overshadowing goal is to beat those -odds and get *something* out the door! Even if it's a scaled-down version of your dream game, -lacking many "must-have" features! It's better to get it out there and expand on it later than to -code in isolation forever until you burn out, lose interest or your hard drive crashes. +## Planning -Like is common with online games, getting a game out the door does not mean you are going to be -"finished" with the game - most MUDs add features gradually over the course of years - it's often -part of the fun! +You need to have at least a rough idea about what you want to create. Some like a lot of planning, others +do it more seat-of-the-pants style. Regardless, while _some_ planning is always good to do, it's common +to have your plans change on you as you create your code prototypes. So don't get _too_ bogged down in +the details out of the gate. -## Planning (step 1) - -This is what you do before having coded a single line or built a single room. Many prospective game -developers are very good at *parts* of this process, namely in defining what their world is "about": -The theme, the world concept, cool monsters and so on. It is by all means very important to define -what is the unique appeal of your game. But it's unfortunately not enough to make your game a -reality. To do that you must also have an idea of how to actually map those great ideas onto +Many prospective game developers are very good at *parts* of this process, namely in defining what their +world is "about": The theme, the world concept, cool monsters and so on. Such things are very important. But +unfortunately, they are not enough to make your game. You need to figure out how to accomplish your ideas in Evennia. -A good start is to begin by planning out the basic primitives of the game and what they need to be -able to do. Below are a far-from-complete list of examples (and for your first version you should -definitely try for a much shorter list): +Below are some questions to get you going. In the next lesson we will try to answer them for our particular +tutorial game. There are of course many more questions you could be asking yourself. -### Systems +### Administration -These are the behind-the-scenes features that exist in your game, often without being represented by -a specific in-game object. +- Should your game rules be enforced by coded systems or by human game masters? +- What is the staff hierarchy in your game? Is vanilla Evennia roles enough or do you need something else? +- Should players be able to post out-of-characters on channels and via other means like bulletin-boards? -- Should your game rules be enforced by coded systems or are you planning for human game masters to -run and arbitrate rules? -- What are the actual mechanical game rules? How do you decide if an action succeeds or fails? What -"rolls" does the game need to be able to do? Do you base your game off an existing system or make up -your own? -- Does the flow of time matter in your game - does night and day change? What about seasons? Maybe -your magic system is affected by the phase of the moon? -- Do you want changing, global weather? This might need to operate in tandem over a large number of -rooms. -- Do you want a game-wide economy or just a simple barter system? Or no formal economy at all? -- Should characters be able to send mail to each other in-game? -- Should players be able to post on Bulletin boards? -- What is the staff hierarchy in your game? What powers do you want your staff to have? -- What should a Builder be able to build and what commands do they need in order to do that? -- etc. +### Building + +- How will the world be built? Traditionally (from in-game with build-commands) or externally (by batchcmds/code + or directly with custom code)? +- Can only privileged Builders create things or should regular players also have limited build-capability? + +### Systems + +- Do you base your game off an existing RPG system or make up your own? +- What are the game mechanics? How do you decide if an action succeeds or fails? +- Does the flow of time matter in your game - does night and day change? What about seasons? +- Do you want changing, global weather or should weather just be set manually in roleplay? +- Do you want a coded world-economy or just a simple barter system? Or no formal economy at all? +- Do you have concepts like reputation and influence? +- Will your characters be known by their name or only by their physical appearance? ### Rooms -Consider the most basic room in your game. - - - Is a simple description enough or should the description be able to change (such as with time, by +- Is a simple room description enough or should the description be able to change (such as with time, by light conditions, weather or season)? - - Should the room have different statuses? Can it have smells, sounds? Can it be affected by +- Should the room have different statuses? Can it have smells, sounds? Can it be affected by dramatic weather, fire or magical effects? If so, how would this affect things in the room? Or are these things something admins/game masters should handle manually? - - Can objects be hidden in the room? Can a person hide in the room? How does the room display this? - - etc. +- Can objects be hidden in the room? Can a person hide in the room? How does the room display this? -### Objects - -Consider the most basic (non-player-controlled) object in your game. +### Objects / items - How numerous are your objects? Do you want large loot-lists or are objects just role playing props created on demand? -- Does the game use money? If so, is each coin a separate object or do you just store a bank account -value? -- What about multiple identical objects? Do they form stacks and how are those stacks handled in -that case? +- If you use money, is each coin a separate object or do you just store a bank account value? +- Do multiple similar objects form stacks and how are those stacks handled in that case? - Does an object have weight or volume (so you cannot carry an infinite amount of them)? -- Can objects be broken? If so, does it have a health value? Is burning it causing the same damage -as smashing it? Can it be repaired? -- Is a weapon a specific type of object or are you supposed to be able to fight with a chair too? -Can you fight with a flower or piece of paper as well? -- NPCs/mobs are also objects. Should they just stand around or should they have some sort of AI? -- Are NPCs/mobs differet entities? How is an Orc different from a Kobold, in code - are they the -same object with different names or completely different types of objects, with custom code? -- Should there be NPCs giving quests? If so, how would you track quest status and what happens when -multiple players try to do the same quest? Do you use instances or some other mechanism? -- etc. +- Can objects be broken? Can they be repaired? +- Can you fight with a chair or a flower or must you use a specific 'weapon' kind of thing? +- Will characters be able to craft new objects? +- Should mobs/NPCs have some sort of AI? +- Are NPCs and mobs different entities? How do they differ? +- Should there be NPCs giving quests? If so, how do you track Quest status? ### Characters -These are the objects controlled directly by Players. - - Can players have more than one Character active at a time or are they allowed to multi-play? -- How does a Player create their Character? A Character-creation screen? Answering questions? -Filling in a form? -- Do you want to use classes (like "Thief", "Warrior" etc) or some other system, like Skill-based? +- How does the character-generation work? Walk from room-to-room? A menu? - How do you implement different "classes" or "races"? Are they separate types of objects or do you simply load different stats on a basic object depending on what the Player wants? - If a Character can hide in a room, what skill will decide if they are detected? -- What skill allows a Character to wield a weapon and hit? Do they need a special skill to wield a -chair rather than a sword? -- Does a Character need a Strength attribute to tell how much they can carry or which objects they -can smash? - What does the skill tree look like? Can a Character gain experience to improve? By killing enemies? Solving quests? By roleplaying? -- etc. +- May player-characters attack each other (PvP)? +- What are the penalties of defeat? Permanent death? Quick respawn? Time in prison? A MUD's a lot more involved than you would think and these things hang together in a complex web. It can easily become overwhelming and it's tempting to want *all* functionality right out of the door. Try to identify the basic things that "make" your game and focus *only* on them for your first release. Make a list. Keep future expansions in mind but limit yourself. -## Coding (step 2) +## Coding and Tech demo -This is the actual work of creating the "game" part of your game. Many "game-designer" types tend to -gloss over this bit and jump directly to **World Building**. Vice versa, many "game-coder" types -tend to jump directly to this part without doing the **Planning** first. Neither way is good and -*will* lead to you having to redo all your hard work at least once, probably more. +This is the actual work of creating the "game" part of your game. As you code and test systems you should +build a little "tech demo" along the way. -Evennia's [Evennia Component overview](../../../Components/Components-Overview) tries to help you with this bit of development. We -also have a slew of [Tutorials](../../Howto-Overview) with worked examples. Evennia tries hard to make this -part easier for you, but there is no way around the fact that if you want anything but a very basic -Talker-type game you *will* have to bite the bullet and code your game (or find a coder willing to -do it for you). +```sidebar:: Tech demo -Even if you won't code anything yourself, as a designer you need to at least understand the basic -paradigms of Evennia, such as [Objects](../../../Components/Objects), -[Commands](../../../Components/Commands) and [Scripts](../../../Components/Scripts) and -how they hang together. We recommend you go through the [Tutorial World](../Part1/Tutorial-World-Introduction) in detail (as well as glancing at its code) to get at least a feel for what is -involved behind the scenes. You could also look through the tutorial for -[building a game from scratch](../Part3/Tutorial-for-basic-MUSH-like-game). + With "tech demo" we mean a small example of your code in-action: A room with a mob, + a way to jump into and test character-creation etc. The tech demo need not be pretty, it's + there to test functionality. It's not the beginning of your game world (unless you find that + to be more fun). + +``` + +Try to avoid going wild with building a huge game world before you have a tech-demo showing off all parts +you expect to have in the first version of your game. Otherwise you run the risk of having to redo it all +again. + +Evennia tries hard to make the coding easier for you, but there is no way around the fact that if you want +anything but a basic chat room you *will* have to bite the bullet and code your game (or find a coder willing +to do it for you). + +> Even if you won't code anything yourself, as a designer you need to at least understand the basic +paradigms and components of Evennia. It's recommended you look over the rest of this Beginner Tutorial to learn +what tools you have available. During Coding you look back at the things you wanted during the **Planning** phase and try to implement them. Don't be shy to update your plans if you find things easier/harder than you thought. The earlier you revise problems, the easier they will be to fix. -A good idea is to host your code online (publicly or privately) using version control. Not only will -this make it easy for multiple coders to collaborate (and have a bug-tracker etc), it also means -your work is backed up at all times. The [Version Control](../../../Coding/Version-Control) tutorial has -instructions for setting up a sane developer environment with proper version control. +A good idea is to host your code online using _version control_. Github.com offers free Private repos +these days if you don't want the world to learn your secrets. Not only version control +make it easy for your team to collaborate, it also means +your work is backed up at all times. The page on [Version Control](../../../Coding/Version-Control) +will help you to setting up a sane developer environment with proper version control. -### "Tech Demo" Building - -This is an integral part of your Coding. It might seem obvious to experienced coders, but it cannot -be emphasized enough that you should *test things on a small scale* before putting your untested -code into a large game-world. The earlier you test, the easier and cheaper it will be to fix bugs -and even rework things that didn't work out the way you thought they would. You might even have to -go back to the **Planning** phase if your ideas can't handle their meet with reality. - -This means building singular in-game examples. Make one room and one object of each important type -and test so they work correctly in isolation. Then add more if they are supposed to interact with -each other in some way. Build a small series of rooms to test how mobs move around ... and so on. In -short, a test-bed for your growing code. It should be done gradually until you have a fully -functioning (if not guaranteed bug-free) miniature tech demo that shows *all* the features you want -in the first release of your game. There does not need to be any game play or even a theme to your -tests, this is only for you and your co-coders to see. The more testing you do on this small scale, -the less headaches you will have in the next phase. - -## World Building (step 3) +## World Building Up until this point we've only had a few tech-demo objects in the database. This step is the act of populating the database with a larger, thematic world. Too many would-be developers jump to this stage too soon (skipping the **Coding** or even **Planning** stages). What if the rooms you build now doesn't include all the nice weather messages the code grows to support? Or the way you store data changes under the hood? Your building work would at best require some rework and at worst you -would have to redo the whole thing. And whereas Evennia's typeclass system does allow you to edit -the properties of existing objects, some hooks are only called at object creation ... Suffice to -say you are in for a *lot* of unnecessary work if you build stuff en masse without having the -underlying code systems in some reasonable shape first. +would have to redo the whole thing. You could be in for a *lot* of unnecessary work if you build stuff +en masse without having the underlying code systems in some reasonable shape first. So before starting to build, the "game" bit (**Coding** + **Testing**) should be more or less **complete**, *at least to the level of your initial release*. -Before starting to build, you should also plan ahead again. Make sure it is clear to yourself and -your eventual builders just which parts of the world you want for your initial release. Establish -for everyone which style, quality and level of detail you expect. Your goal should *not* be to -complete your entire world in one go. You want just enough to make the game's "feel" come across. -You want a minimal but functioning world where the intended game play can be tested and roughly -balanced. You can always add new areas later. +Make sure it is clear to yourself and your eventual builders just which parts of the world you want +for your initial release. Establish for everyone which style, quality and level of detail you expect. + +Your goal should *not* be to complete your entire world in one go. You want just enough to make the +game's "feel" come across. You want a minimal but functioning world where the intended game play can +be tested and roughly balanced. You can always add new areas later. During building you get free and extensive testing of whatever custom build commands and systems you -have made at this point. Since Building often involves different people than those Coding, you also +have made at this point. If Builders and coders are different people you also get a chance to hear if some things are hard to understand or non-intuitive. Make sure to respond to this feedback. @@ -195,14 +178,19 @@ to this feedback. ## Alpha Release As mentioned, don't hold onto your world more than necessary. *Get it out there* with a huge *Alpha* -flag and let people try it! Call upon your alpha-players to try everything - they *will* find ways -to break your game in ways that you never could have imagined. In Alpha you might be best off to +flag and let people try it! + +Call upon your alpha-players to try everything - they *will* find ways to break your game in ways that +you never could have imagined. In Alpha you might be best off to focus on inviting friends and maybe other MUD developers, people who you can pester to give proper -feedback and bug reports (there *will* be bugs, there is no way around it). Follow the quick -instructions for [Online Setup](../../../Setup/Online-Setup) to make your game visible online. If you hadn't -already, make sure to put up your game on the [Evennia game index](http://games.evennia.com/) so -people know it's in the works (actually, even pre-alpha games are allowed in the index so don't be -shy)! +feedback and bug reports (there *will* be bugs, there is no way around it). + +Follow the quick instructions for [Online Setup](../../../Setup/Online-Setup) to make your +game visible online. + +If you hadn't already, make sure to put up your game on the +[Evennia game index](http://games.evennia.com/) so people know it's in the works (actually, even +pre-alpha games are allowed in the index so don't be shy)! ## Beta Release/Perpetual Beta @@ -215,4 +203,10 @@ to gradually perfect your vision. ## Congratulate yourself! You are worthy of a celebration since at this point you have joined the small, exclusive crowd who -have made their dream game a reality! \ No newline at end of file +have made their dream game a reality! + +## Planning our tutorial game + +In the next lesson we'll make use of these general points and try to plan out our tutorial game. + +[prev lesson](../Starting-Part2) | [next lesson](./Planning-The-Tutorial-Game) \ No newline at end of file diff --git a/docs/1.0-dev/_sources/Howto/Starting/Part2/Planning-Some-Useful-Contribs.md.txt b/docs/1.0-dev/_sources/Howto/Starting/Part2/Planning-Some-Useful-Contribs.md.txt new file mode 100644 index 0000000000..f09a9b8dfc --- /dev/null +++ b/docs/1.0-dev/_sources/Howto/Starting/Part2/Planning-Some-Useful-Contribs.md.txt @@ -0,0 +1,255 @@ +[prev lesson](./Planning-The-Tutorial-Game) | [next lesson](../Starting-Part3) + +# Planning the use of some useful contribs + +Evennia is deliberately bare-bones out of the box. The idea is that you should be as unrestricted as possible +in designing your game. This is why you can easily replace the few defaults we have and why we don't try to +prescribe any major game systems on you. + +That said, Evennia _does_ offer some more game-opinionated _optional_ stuff. These are referred to as _Contribs_ +and is an ever-growing treasure trove of code snippets, concepts and even full systems you can pick and choose +from to use, tweak or take inspiration from when you make your game. + +The [Contrib overview](../../../Contribs/Contrib-Overview) page gives the full list of the current roster of contributions. On +this page we will review a few contribs we will make use of for our game. We will do the actual installation +of them when we start coding in the next part of this tutorial series. While we will introduce them here, you +are wise to read their doc-strings yourself for the details. + +This is the things we know we need: + +- A barter system +- Character generation +- Some concept of wearing armor +- The ability to roll dice +- Rooms with awareness of day, night and season +- Roleplaying with short-descs, poses and emotes +- Quests +- Combat (with players and against monsters) + +## Barter contrib + +[source](api:evennia.contrib.barter) + +Reviewing this contrib suggests that it allows for safe trading between two parties. The basic principle +is that the parties puts up the stuff they want to sell and the system will guarantee that these systems are +exactly what is being offered. Both sides can modify their offers (bartering) until both mark themselves happy +with the deal. Only then the deal is sealed and the objects are exchanged automatically. Interestingly, this +works just fine for money too - just put coin objects on one side of the transaction. + + Sue > trade Tom: Hi, I have a necklace to sell; wanna trade for a healing potion? + Tom > trade Sue: Hm, I could use a necklace ... + + Sue > offer necklace: This necklace is really worth it. + Tom > evaluate necklace: + + Tom > offer ration: I don't have a healing potion, but I'll trade you an iron ration! + Sue > Hey, this is a nice necklace, I need more than a ration for it... + Tom > offer ration, 10gold: Ok, a ration and 10 gold as well. + Sue > accept: Ok, that sounds fair! + Tom > accept: Good! Nice doing business with you. + + +Arguably, in a small game you are just fine to just talk to people and use `give` to do the exchange. The +barter system guarantees trading safety if you don't trust your counterpart to try to give you the wrong thing or +to run away with your money. + +We will use the barter contrib as an optional feature for player-player bartering. More importantly we can +add it for NPC shopkeepers and expand it with a little AI, which allows them to potentially trade in other +things than boring gold coin. + +## Character generation contrib + +[source](api:evennia.contrib.chargen) + +This contrib is an example module for creating characters. Since we will be using `MULTISESSION_MODE=3` we will +get a selection screen like this automatically. We also plan to use a proper menu to build our character, so +we will _not_ be using this contrib. + +## Clothing contrib + +[source](api:evennia.contrib.clothing) + +This contrib provides a full system primarily aimed at wearing clothes, but it could also work for armor. You wear +an object in a particular location and this will then be reflected in your character's description. You can +also add roleplaying flavor: + + > wear helmet slightly askew on her head + look self + Username is wearing a helmet slightly askew on her head. + +By default there are no 'body locations' in this contrib, we will need to expand on it a little to make it useful +for things like armor. It's a good contrib to build from though, so that's what we'll do. + +## Dice contrib + +[source](api:evennia.contrib.dice) + +The dice contrib presents a general dice roller to use in game. + + > roll 2d6 + Roll(s): 2 and 5. Total result is 7. + > roll 1d100 + 2 + Roll(s): 43. Total result is 47 + > roll 1d20 > 12 + Roll(s): 7. Total result is 7. This is a failure (by 5) + > roll/hidden 1d20 > 12 + Roll(s): 18. Total result is 17. This is a success (by 6). (not echoed) + +The contrib also has a python function for producing these results in-code. However, while +we will emulate rolls for our rule system, we'll do this as simply as possible with Python's `random` +module. + +So while this contrib is fun to have around for GMs or for players who want to get a random result +or play a game, we will not need it for the core of our game. + +## Extended room contrib + +[source](api:evennia.contrib.extended_room) + +This is a custom Room typeclass that changes its description based on time of day and season. + +For example, at night, in wintertime you could show the room as being dark and frost-covered while in daylight +at summer it could describe a flowering meadow. The description can also contain special markers, so +` ... ` would include text only visible at morning. + +The extended room also supports _details_, which are things to "look at" in the room without there having +to be a separate database object created for it. For example, a player in a church may do `look window` and +get a description of the windows without there needing to be an actual `window` object in the room. + +Adding all those extra descriptions can be a lot of work, so they are optional; if not given the room works +like a normal room. + +The contrib is simple to add and provides a lot of optional flexibility, so we'll add it to our +game, why not! + +## RP-System contrib + +[source](api:evennia.contrib.rpsystem) + +This contrib adds a full roleplaying subsystem to your game. It gives every character a "short-description" +(sdesc) that is what people will see when first meeting them. Let's say Tom has an sdesc "A tall man" and +Sue has the sdesc "A muscular, blonde woman" + + Tom > look + Tom: ... You see: A muscular, blonde woman + Tom > emote /me smiles to /muscular. + Tom: Tom smiles to A muscular, blonde woman. + Sue: A tall man smiles to Sue. + Tom > emote Leaning forward, /me says, "Well hello, what's yer name?" + Tom: Leaning forward, Tom says, "Well hello..." + Sue: Leaning forward, A tall man says, "Well hello, what's yer name?" + Sue > emote /me grins. "I'm Angelica", she says. + Sue: Sue grins. "I'm Angelica", she says. + Tom: A muscular, blonde woman grins. "I'm Angelica", she says. + Tom > recog muscular Angelica + Tom > emote /me nods to /angelica: "I have a message for you ..." + Tom: Tom nods to Angelica: "I have a message for you ..." + Sue: A tall man nods to Sue: "I have a message for you ..." + +Above, Sue introduces herself as "Angelica" and Tom uses this info to `recoc` her as "Angelica" hereafter. He +could have `recoc`-ed her with whatever name he liked - it's only for his own benefit. There is no separate +`say`, the spoken words are embedded in the emotes in quotes `"..."`. + +The RPSystem module also includes options for `poses`, which help to establish your position in the room +when others look at you. + + Tom > pose stands by the bar, looking bored. + Sue > look + Sue: ... A tall man stands by the bar, looking bored. + +You can also wear a mask to hide your identity; your sdesc will then be changed to the sdesc of the mask, +like `a person with a mask`. + +The RPSystem gives a lot of roleplaying power out of the box, so we will add it. There is also a separate +[rplanguage](api:evennia.contrib.rplanguage) module that integrates with the spoken words in your emotes and garbles them if you don't understand +the language spoken. In order to restrict the scope we will not include languages for the tutorial game. + + +## Talking NPC contrib + +[source](api:evennia.contrib.talking_npc) + +This exemplifies an NPC with a menu-driven dialogue tree. We will not use this contrib explicitly, but it's +good as inspiration for how we'll do quest-givers later. + +## Traits contrib + +[source](api:evennia.contrib.traits) + +An issue with dealing with roleplaying attributes like strength, dexterity, or skills like hunting, sword etc +is how to keep track of the values in the moment. Your strength may temporarily be buffed by a strength-potion. +Your swordmanship may be worse because you are encumbered. And when you drink your health potion you must make +sure that those +20 health does not bring your health higher than its maximum. All this adds complexity. + +The _Traits_ contrib consists of several types of objects to help track and manage values like this. When +installed, the traits are accessed on a new handler `.traits`, for example + + > py self.traits.hp.value + 100 + > py self.traits.hp -= 20 # getting hurt + > py self.traits.hp.value + 80 + > py self.traits.hp.reset() # drink a potion + > py self.traits.hp.value + 100 + +A Trait is persistent (it uses an Attribute under the hood) and tracks changes, min/max and other things +automatically. They can also be added together in various mathematical operations. + +The contrib introduces three main Trait-classes + +- _Static_ traits for single values like str, dex, things that at most gets a modifier. +- _Counters_ is a value that never moves outside a given range, even with modifiers. For example a skill + that can at most get a maximum amount of buff. Counters can also easily be _timed_ so that they decrease + or increase with a certain rate per second. This could be good for a time-limited curse for example. +- _Gauge_ is like a fuel-gauge; it starts at a max value and then empties gradually. This is perfect for +things like health, stamina and the like. Gauges can also change with a rate, which works well for the +effects of slow poisons and healing both. + +``` +> py self.traits.hp.value +100 +> py self.traits.hp.rate = -1 # poisoned! +> py self.traits.hp.ratetarget = 50 # stop at 50 hp +# Wait 30s +> py self.traits.hp.value +70 +# Wait another 30s +> py self.traits.hp.value +50 # stopped at 50 +> py self.traits.hp.rate = 0 # no more poison +> py self.traits.hp.rate = 5 # healing magic! +# wait 5s +> pyself.traits.hp.value +75 +``` + +Traits will be very practical to use for our character sheets. + +## Turnbattle contrib + +[source](api:evennia.contrib.turnbattle) + +This contrib consists of several implementations of a turn-based combat system, divivided into complexity: + +- basic - initiative and turn order, attacks against defense values, damage. +- equip - considers weapons and armor, wielding and weapon accuracy. +- items - adds usable items with conditions and status effects +- magic - adds spellcasting system using MP. +- range - adds abstract positioning and 1D movement to differentiate between melee and ranged attacks. + +The turnbattle system is comprehensive, but it's meant as a base to start from rather than offer +a complete system. It's also not built with _Traits_ in mind, so we will need to adjust it for that. + +## Conclusions + +With some contribs selected, we have pieces to build from and don't have to write everything from scratch. +We will need Quests and will likely need to do a bunch of work on Combat to adapt the combat contrib +to our needs. + +We will now move into actually starting to implement our tutorial game +in the next part of this tutorial series. When doing this for yourself, remember to refer +back to your planning and adjust it as you learn what works and what does not. + + +[prev lesson](./Planning-The-Tutorial-Game) | [next lesson](../Starting-Part3) diff --git a/docs/1.0-dev/_sources/Howto/Starting/Part2/Planning-The-Tutorial-Game.md.txt b/docs/1.0-dev/_sources/Howto/Starting/Part2/Planning-The-Tutorial-Game.md.txt new file mode 100644 index 0000000000..0438a64a4c --- /dev/null +++ b/docs/1.0-dev/_sources/Howto/Starting/Part2/Planning-The-Tutorial-Game.md.txt @@ -0,0 +1,414 @@ +[prev lesson](./Game-Planning) | [next lesson](./Planning-Some-Useful-Contribs) + +# Planning our tutorial game + +Using the general plan from last lesson we'll now establish what kind of game we want to create for this tutorial. +Remembering that we need to keep the scope down, let's establish some parameters. Note that for your own +game you don't _need_ to agree/adopt any of these. Many game-types need more or much less than this. +But this makes for good, instructive examples. + +- We want a small game we can play ourselves for fun, but which could in principle be expanded + to something more later. +- Let's go with a fantasy theme, it's well understood. +- We'll use some existing, simple RPG system. +- We want to be able to create and customize a character of our own. +- We want the tools to roleplay with other players. +- We don't want to have to rely on a Game master to resolve things, but will rely on code for skill resolution + and combat. +- We want monsters to fight and NPCs we can talk to. So some sort of AI. +- We want to be able to buy and sell stuff. +- We want some sort of crafting system. +- We want some sort of quest system. + +Let's answer the questions from the previous lesson and discuss some of the possibilities. + +### Administration + +#### Should your game rules be enforced by coded systems by human game masters? + +Using game masters one need to add some new GM-helper commands to make their jobs easier. But overall there +is less work code-wise. GM:ing is work-intensive however, and they can't be online all the time. + +We want our tutorial game to work without human Game masters. + +#### What is the staff hierarchy in your game? Is vanilla Evennia roles enough or do you need something else? + +The default hierarchy is + +- `Player` - regular players +- `Player Helper` - can create/edit help entries +- `Builder` - can use build commands +- `Admin` - can kick and ban accounts +- `Developer` - full access, usually also trusted with server access + +There is also the _superuser_, the "owner" of the game you create when you first set up your database. This user +goes outside the regular hierarchy and should usually only. + +We are okay with keeping this structure for our game. + +#### Should players be able to post out-of-characters on channels and via other means like bulletin-boards? + +Evennia's _Channels_ are by default only available between _Accounts_. That is, for players to communicate with each +other. By default, the `public` channel is created for general discourse. +Channels are logged to a file and when you are coming back to the game you can view the history of a channel +in case you missed something. + + > public Hello world! + [Public] MyName: Hello world! + +But Channels can also be set up to work between Characters instead of Accounts. This would mean the channels +would have an in-game meaning: + +- Members of a guild could be linked telepathically. +- Survivors of the apocalypse can communicate over walkie-talkies. +- Radio stations you can tune into or have to discover. + +_Bulletin boards_ are a sort of in-game forum where posts are made publicly or privately. Contrary to a channel, +the messages are usually stored and are grouped into topics with replies. Evennia has no default bulletin-board +system. + +In this tutorial game we will just use the default inter-account channels. We will also not be implementing any +bulletin boards. + +### Building + +#### How will the world be built? + +There are two main ways to handle this: +- Traditionally, from in-game with build-commands: This pretty means builders creating content in their game + client. This has the advantage of not requiring Python skills nor server access. This can often be a quite + intuitive way to build since you are sort-of walking around in your creation as you build it. However, the + developer (you) must make sure to provide build-commands that are flexible enough for builders to be able to + create the content you want for your game. +- Externally (by batchcmds): Evennia's `batchcmd` takes a text file with Evennia Commands and executes them + in sequence. This allows the build process to be repeated and applied quickly to a new database during development. + It also allows builders to use proper text-editing tools rather than writing things line-by-line in their clients. + The drawback is that for their changes to go live they either need server access or they need to send their + batchcode to the game administrator so they can apply the changes. Or use version control. +- Externally (with batchcode or custom code): This is the "professional game development" approach. This gives the + builders maximum power by creating the content in Python using Evennia primitives. The `batchcode` processor + allows Evennia to apply and re-apply build-scripts that are raw Python modules. Again, this would require the + builder to have server access or to use version control to share their work with the rest of the development team. + +In this tutorial, we will show examples of all these ways, but since we don't have a team of builders we'll +build the brunt of things using Evennia's Batchcode system. + +#### Can only privileged Builders create things or should regular players also have limited build-capability? + +In some game styles, players have the ability to create objects and even script them. While giving regular users +the ability to create objects with in-built commands is easy and safe, actual code-creation (aka _softcode_ ) is +not something Evennia supports natively. Regular, untrusted users should never be allowed to execute raw Python +code (such as what you can do with the `py` command). You can +[read more about Evennia's stance on softcode here](../../../Concepts/Soft-Code). If you want users to do limited scripting, +it's suggested that this is accomplished by adding more powerful build-commands for them to use. + +For our tutorial-game, we will only allow privileged builders to modify the world. The exception is crafting, +where we will allow players to to use in-game commands to create specific, prescribed objects from recipes. + +### Systems + +#### Do you base your game off an existing RPG system or make up your own? + +We will make use of [Open Adventure](http://www.geekguild.com/openadventure/), an 'old school' RRG-system +that is available for free under the Creative Commons license. We'll only use a subset of the rules from +the blue "basic" book. For the sake of keeping down the length of this tutorial we will limit what features +we will include: + +- Only two 'archetypes' (classes) - Arcanist (wizard) and Warrior, these are examples of two different play + styles. +- Two races only (dwarves and elves), to show off how to implement races and race bonuses. +- No extra features of the races/archetypes such as foci and special feats. While these are good for fleshing + out a character, these will work the same as other bonuses and are thus not that instructive. +- We will add only a small number of items/weapons from the Open Adventure rulebook to show how it's done. + +#### What are the game mechanics? How do you decide if an action succeeds or fails? + +Open Adventure's conflict resolution is based on adding a trait (such as Strength) with a random number in +order beat a target. We will emulate this in code. + +There are no pre-set "skills", all resolution is based on using suitable traits in different combinations. +The computer can't do this decision on-the-fly like a GM could, so we need to encode what is needed +to achieve a certain effect - this will be a set of 'skills'. We will only make the minimum amount of skills +needed to accomplish the actions we want to support. This will mean custom Commands. + +#### Does the flow of time matter in your game - does night and day change? What about seasons? + +Most commonly, game-time runs faster than real-world time. There are +a few advantages with this: + +- Unlike in a single-player game, you can't fast-forward time in a multiplayer game if you are waiting for + something, like NPC shops opening. +- Healing and other things that we know takes time will go faster while still being reasonably 'realistic'. + +The main drawback is for games with slower roleplay pace. While you are having a thoughtful roleplaying scene +over dinner, the game world reports that two days have passed. Having a slower game time than real-time is +a less common, but possible solution for such games. + +It is however _not_ recommended to let game-time exactly equal the speed of real time. The reason for this +is that people will join your game from all around the world, and they will often only be able to play at +particular times of their day. With a game-time drifting relative real-time, everyone will eventually be +able to experience both day and night in the game. + +For this tutorial-game we will go with Evennia's default, which is that the game-time runs two times faster +than real time. + +#### Do you want changing, global weather or should weather just be set manually in roleplay? + +A weather system is a good example of a game-global system that affects a subset of game entities +(outdoor rooms). We will not be doing any advanced weather simulation, but we'll show how to do +random weather changes happening across the game world. + +#### Do you want a coded world-economy or just a simple barter system? Or no formal economy at all? + +We will allow for money and barter/trade between NPCs/Players and Player/Player, but will not care about +inflation. A real economic simulation could do things like modify shop prices based on supply and demand. +We will not go down that rabbit hole. + +#### Do you have concepts like reputation and influence? + +These are useful things for a more social-interaction heavy game. We will not include them for this +tutorial however. + +#### Will your characters be known by their name or only by their physical appearance? + +This is a common thing in RP-heavy games. Others will only see you as "The tall woman" until you +introduce yourself and they 'recognize' you with a name. Linked to this is the concept of more complex +emoting and posing. + +Adding such a system from scratch is complex and way beyond the scope of this tutorial. However, +there is an existing Evennia contrib that adds all of this functionality and more, so we will +include that and explain briefly how it works. + +### Rooms + +#### Is a simple room description enough or should the description be able to change? + +Changing room descriptions for day and night, winder and summer is actually quite easy to do, but looks +very impressive. We happen to know there is also a contrib that helps with this, so we'll show how to +include that. + +#### Should the room have different statuses? + +We will have different weather in outdoor rooms, but this will not have any gameplay effect - bow strings +will not get wet and fireballs will not fizzle if it rains. + +#### Can objects be hidden in the room? Can a person hide in the room? + +We will not model hiding and stealth. This will be a game of honorable face-to-face conflict. + +### Objects + +#### How numerous are your objects? Do you want large loot-lists or are objects just role playing props? + +Since we are not going for a pure freeform RPG here, we will want objects with properties, like weapons +and potions and such. Monsters should drop loot even though our list of objects will not be huge. + +#### Is each coin a separate object or do you just store a bank account value? + +Since we will use bartering, placing coin objects on one side of the barter makes for a simple way to +handle payments. So we will use coins as-objects. + +#### Do multiple similar objects form stacks and how are those stacks handled in that case? + +Since we'll use coins, it's practical to have them and other items stack together. While Evennia does not +do this natively, we will make use of a contrib for this. + +#### Does an object have weight or volume (so you cannot carry an infinite amount of them)? + +Limiting carrying weight is one way to stop players from hoarding. It also makes it more important +for players to pick only the equipment they need. Carrying limits can easily come across as +annoying to players though, so one needs to be careful with it. + +Open Adventure rules include weight limits, so we will include them. + +#### Can objects be broken? Can they be repaired? + +Item breakage is very useful for a game economy; breaking weapons adds tactical considerations (if it's not +too common, then it becomes annoying) and repairing things gives work for crafting players. + +We wanted a crafting system, so this is what we will limit it to - repairing items using some sort +of raw materials. + +#### Can you fight with a chair or a flower or must you use a special 'weapon' kind of thing? + +Traditionally, only 'weapons' could be used to fight with. In the past this was a useful +simplification, but with Python classes and inheritance, it's not actually more work to just +let all items in game work as a weapon in a pinch. + +So for our game we will let a character use any item they want as a weapon. The difference will +be that non-weapon items will do less damage and also break and become unusable much quicker. + +#### Will characters be able to craft new objects? + +Crafting is a common feature in multiplayer games. In code it usually means using a skill-check +to combine base ingredients from a fixed recipe in order to create a new item. The classic +example is to combine _leather straps_, a _hilt_, a _pommel_ and a _blade_ to make a new _sword_. +A full-fledged crafting system could require multiple levels of crafting, including having to mine +for ore or cut down trees for wood. + +In our case we will limit our crafting to repairing broken items. To show how it's done, we will require +extra items (a recipe) in order to facilitate the repairs. + +#### Should mobs/NPCs have some sort of AI? + +A rule of adding Artificial Intelligence is that with today's technology you should not hope to fool +anyone with it anytime soon. Unless you have a side-gig as an AI researcher, users will likely +not notice any practical difference between a simple state-machine and you spending a lot of time learning +how to train a neural net. + +For this tutorial, we will show how to add a simple state-machine for monsters. NPCs will only be +shop-keepers and quest-gives so they won't need any real AI to speak of. + +#### Are NPCs and mobs different entities? How do they differ? + +"Mobs" or "mobiles" are things that move around. This is traditionally monsters you can fight with, but could +also be city guards or the baker going to chat with the neighbor. Back in the day, they were often fundamentally +different these days it's often easier to just make NPCs and mobs essentially the same thing. + +In our tutorial game, Both Monsters and NPCs will be the same type of thing; A monster could give you a quest +and an NPC might fight you as a mob as well as trade with you. + +#### _Should there be NPCs giving quests? If so, how do you track Quest status? + +We will design a simple quest system to track the status of ongoing quests. + +### Characters + +#### Can players have more than one Character active at a time or are they allowed to multi-play? + +Since Evennia differentiates between `Sessions` (the client-connection to the game), `Accounts` +and `Character`s, it natively supports multi-play. This is controlled by the `MULTISESSION_MODE` +setting, which has a value from `0` (default) to `3`. + +- `0`- One Character per Account and one Session per Account. This means that if you login to the same + account from another client you'll be disconnected from the first. When creating a new account, a Character + will be auto-created with the same name as your Account. This is default mode and mimics legacy code bases + which had no separation between Account and Character. +- `1` - One Character per Account, multiple Sessions per Account. So you can connect simultaneously from + multiple clients and see the same output in all of them. +- `2` - Multiple Characters per Account, one Session per Character. This will not auto-create a same-named + Character for you, instead you get to create/choose between a number of Characters up to a max limit given by + the `MAX_NR_CHARACTERS` setting (default 1). You can play them all simultaneously if you have multiple clients + open, but only one client per Character. +- `3` - Multiple Characters per Account, Multiple Sessions per Character. This is like mode 2, except players + can control each Character from multiple clients, seeing the same output from each Character. + +We will go with a multi-role game, so we will use `MULTISESSION_MODE=3` for this tutorial. + +#### How does the character-generation work? + +There are a few common ways to do character generation: + +- Rooms. This is the traditional way. Each room's description tells you what command to use to modify + your character. When you are done you move to the next room. Only use this if you have another reason for + using a room, like having a training dummy to test skills on, for example. +- A Menu. The Evennia _EvMenu_ system allows you to code very flexible in-game menus without needing to walk + between rooms. You can both have a step-by-step menu (a 'wizard') or allow the user to jump between the + steps as they please. This tends to be a lot easier for newcomers to understand since it doesn't require + using custom commands they will likely never use again after this. +- Questions. A fun way to build a character is to answer a series of questions. This is usually implemented + with a sequential menu. + +For the tutorial we will use a menu to let the user modify each section of their character sheet in any order +until they are happy. + +#### How do you implement different "classes" or "races"? + +The way classes and races work in most RPGs (as well as in OpenAdventure) is that they act as static 'templates' +that inform which bonuses and special abilities you have. This means that all we need to store on the +Character is _which_ class and _which_ race they have; the actual logic can sit in Python code and just +be looked up when we need it. + +#### If a Character can hide in a room, what skill will decide if they are detected? + +Hiding means a few things. +- The Character should not appear in the room's description / character list +- Others hould not be able to interact with a hidden character. It'd be weird if you could do `attack ` + or `look ` if the named character is in hiding. +- There must be a way for the person to come out of hiding, and probably for others to search or accidentally + find the person (probably based on skill checks). +- The room will also need to be involved, maybe with some modifier as to how easy it is to hide in the room. + +We will _not_ be including a hide-mechanic in our tutorial game though. + +#### What does the skill tree look like? Can a Character gain experience to improve? By killing enemies? Solving quests? By roleplaying? + +Gaining experience points (XP) and improving one's character is a staple of roleplaying games. There are many +ways to implement this: +- Gaining XP from kills is very common; it's easy to let a monster be 'worth' a certain number of XP and it's + easy to tell when you should gain it. +- Gaining XP from quests is the same - each quest is 'worth' XP and you get them when completing the test. +- Gaining XP from roleplay is harder to define. Different games have tried a lot of different ways to do this: + - XP from being online - just being online gains you XP. This inflates player numbers but many players may + just be lurking and not be actually playing the game at any given time. + - XP from roleplaying scenes - you gain XP according to some algorithm analyzing your emotes for 'quality', + how often you post, how long your emotes are etc. + - XP from actions - you gain XP when doing things, anything. Maybe your XP is even specific to each action, so + you gain XP only for running when you run, XP for your axe skill when you fight with an axe etc. + - XP from fails - you only gain XP when failing rolls. + - XP from other players - other players can award you XP for good RP. + +For our tutorial game we will use Open Adventure's rules for XP, which will be driven by kills and quest successes. + +#### May player-characters attack each other (PvP)? + +Deciding this affects the style of your entire game. PvP makes for exciting gameplay but it opens a whole new +can of worms when it comes to "fairness". Players will usually accept dying to an overpowered NPC dragon. They +will not be as accepting if they perceive another player is perceived as being overpowered. PvP means that you +have to be very careful to balance the game - all characters does not have to be exactly equal but they should +all be viable to play a fun game with. PvP does not only mean combat though. Players can compete in all sorts of ways, including gaining influence in +a political game or gaining market share when selling their crafted merchandise. + +For the tutorial game we will support both Player-vs-environment combat and turn-based PvP. We will allow players +to barter with each other (so potentially scam others?) but that's the extent of it. We will focus on showing +off techniques and will not focus on making a balanced game. + +#### What are the penalties of defeat? Permanent death? Quick respawn? Time in prison? + +This is another big decision that strongly affects the mood and style of your game. + +Perma-death means that once your character dies, it's gone and you have to make a new one. + +- It allows for true heroism. If you genuinely risk losing your character of two years to fight the dragon, + your triumph is an actual feat. +- It limits the old-timer dominance problem. If long-time players dies occationally, it will open things + up for newcomers. +- It lowers inflation, since the hoarded resources of a dead character can be removed. +- It gives capital punishment genuine discouraging power. +- It's realistic. + +Perma-death comes with some severe disadvantages however. + +- It's impopular. Many players will just not play a game where they risk losing their beloved character + just like that. +- Many players say they like the _idea_ of permadeath except when it could happen to them. +- It can limit roleplaying freedom and make people refuse to take any risks. +- It may make players even more reluctant to play conflict-driving 'bad guys'. +- Game balance is much, much more important when results are "final". This escalates the severity of 'unfairness' + a hundred-fold. Things like bugs or exploits can also lead to much more server effects. + +For these reasons, it's very common to do hybrid systems. Some tried variations: + +- NPCs cannot kill you, only other players can. +- Death is permanent, but it's difficult to actually die - you are much more likely to end up being severely +hurt/incapacitated. +- You can pre-pay 'insurance' to magically/technologically avoid actually dying. Only if don't have insurance will + you die permanently. +- Death just means harsh penalties, not actual death. +- When you die you can fight your way back to life from some sort of afterlife. +- You'll only die permanently if you as a player explicitly allows it. + +For our tutorial-game we will not be messing with perma-death; instead your defeat will mean you will re-spawn +back at your home location with a fraction of your health. + +## Conclusions + +Going through the questions has helped us get a little bit more of a feel for the game we want to do. There are +many other things we could ask ourselves, but if we can cover these points we will be a good way towards a complete, +playable game! + +Before starting to code in earnest a good coder should always do an inventory of all the stuff they _don't_ need +to code themselves. So in the next lesson we will check out what help we have from Evennia's _contribs_. + + +[prev lesson](./Game-Planning) | [next lesson](./Planning-Some-Useful-Contribs) \ No newline at end of file diff --git a/docs/1.0-dev/_sources/Howto/Starting/Part2/Some-Useful-Contribs.md.txt b/docs/1.0-dev/_sources/Howto/Starting/Part2/Some-Useful-Contribs.md.txt deleted file mode 100644 index 70b574a6ef..0000000000 --- a/docs/1.0-dev/_sources/Howto/Starting/Part2/Some-Useful-Contribs.md.txt +++ /dev/null @@ -1,3 +0,0 @@ -# Some useful contribs - -TODO \ No newline at end of file diff --git a/docs/1.0-dev/_sources/Howto/Starting/Part3/A-Sittable-Object.md.txt b/docs/1.0-dev/_sources/Howto/Starting/Part3/A-Sittable-Object.md.txt new file mode 100644 index 0000000000..a51c9b52e4 --- /dev/null +++ b/docs/1.0-dev/_sources/Howto/Starting/Part3/A-Sittable-Object.md.txt @@ -0,0 +1,802 @@ +[prev lesson](../../../Unimplemented) | [next lesson](../../../Unimplemented) + +# Making a sittable object + +In this lesson we will go through how to make a chair you can sit on. Sounds easy, right? +Well it is. But in the process of making the chair we will need to consider the various ways +to do it depending on how we want our game to work. + +The goals of this lesson are as follows: + +- We want a new 'sittable' object, a Chair in particular". +- We want to be able to use a command to sit in the chair. +- Once we are sitting in the chair it should affect us somehow. To demonstrate this we'll + set a flag "Resting" on the Character sitting in the Chair. +- When you sit down you should not be able to walk to another room without first standing up. +- A character should be able to stand up and move away from the chair. + +There are two main ways to design the commands for sitting and standing up. +- You can store the commands on the chair so they are only available when a chair is in the room +- You can store the commands on the Character so they are always available and you must always specify + which chair to sit on. + +Both of these are very useful to know about, so in this lesson we'll try both. But first +we need to handle some basics. + + +## Don't move us when resting + +When you are sitting in a chair you can't just walk off without first standing up. +This requires a change to our Character typeclass. Open `mygame/typeclasses/characters.py`: + +```python + +# ... + +class Character(DefaultCharacter): + # ... + + def at_before_move(self, destination): + """ + Called by self.move_to when trying to move somewhere. If this returns + False, the move is immediately cancelled. + """ + if self.db.is_resting: + self.msg("You can't go anywhere while resting.") + return False + return True + +``` + +When moving somewhere, [character.move_to](api.objects.objects#Object.move_to) is called. This in turn +will call `character.at_before_move`. Here we look for an Attribute `is_resting` (which we will assign below) +to determine if we are stuck on the chair or not. + +## Making the Chair itself + +Next we need the Chair itself, or rather a whole family of "things you can sit on" that we will call +_sittables_. We can't just use a default Object since we want a sittable to contain some custom code. We need +a new, custom Typeclass. Create a new module `mygame/typeclasses/sittables.py` with the following content: + +```python + +from evennia import DefaultObject + +class Sittable(DefaultObject): + + def at_object_creation(self): + self.db.sitter = None + + def do_sit(self, sitter): + """ + Called when trying to sit on/in this object. + + Args: + sitter (Object): The one trying to sit down. + + """ + current = self.db.sitter + if current: + if current == sitter: + sitter.msg("You are already sitting on {self.key}.") + else: + sitter.msg(f"You can't sit on {self.key} " + f"- {current.key} is already sitting there!") + return + self.db.sitting = sitter + sitter.db.is_resting = True + sitter.msg(f"You sit on {self.key}") + + def do_stand(self, stander): + """ + Called when trying to stand from this object. + + Args: + stander (Object): The one trying to stand up. + + """ + current = self.db.sitter + if not stander == current: + stander.msg(f"You are not sitting on {self.key}.") + else: + self.db.sitting = None + stander.db.is_resting = False + stander.msg(f"You stand up from {self.key}") +``` + +Here we have a small Typeclass that handles someone trying to sit on it. It has two methods that we can simply +call from a Command later. We set the `is_resting` Attribute on the one sitting down. + +One could imagine that one could have the future `sit` command check if someone is already sitting in the +chair instead. This would work too, but letting the `Sittable` class handle the logic around who can sit on it makes +logical sense. + +We let the typeclass handle the logic, and also let it do all the return messaging. This makes it easy to churn out +a bunch of chairs for people to sit on. But it's not perfect. The `Sittable` class is general. What if you want to +make an armchair. You sit "in" an armchair rather than "on" it. We _could_ make a child class of `Sittable` named +`SittableIn` that makes this change, but that feels excessive. Instead we will make it so that Sittables can +modify this per-instance: + + +```python + +from evennia import DefaultObject + +class Sittable(DefaultObject): + + def at_object_creation(self): + self.db.sitter = None + # do you sit "on" or "in" this object? + self.db.adjective = "on" + + def do_sit(self, sitter): + """ + Called when trying to sit on/in this object. + + Args: + sitter (Object): The one trying to sit down. + + """ + adjective = self.db.adjective + current = self.db.sitter + if current: + if current == sitter: + sitter.msg(f"You are already sitting {adjective} {self.key}.") + else: + sitter.msg( + f"You can't sit {adjective} {self.key} " + f"- {current.key} is already sitting there!") + return + self.db.sitting = sitter + sitter.db.is_resting = True + sitter.msg(f"You sit {adjective} {self.key}") + + def do_stand(self, stander): + """ + Called when trying to stand from this object. + + Args: + stander (Object): The one trying to stand up. + + """ + current = self.db.sitter + if not stander == current: + stander.msg(f"You are not sitting {self.db.adjective} {self.key}.") + else: + self.db.sitting = None + stander.db.is_resting = False + stander.msg(f"You stand up from {self.key}") +``` + +We added a new Attribute `adjective` which will probably usually be `in` or `on` but could also be `at` if you +want to be able to sit _at a desk_ for example. A regular builder would use it like this: + + > create/drop armchair : sittables.Sittable + > set armchair/adjective = in + +This is probably enough. But all those strings are hard-coded. What if we want some more dramatic flair when you +sit down? + + You sit down and a whoopie cushion makes a loud fart noise! + +For this we need to allow some further customization. Let's let the current strings be defaults that +we can replace. + +```python + +from evennia import DefaultObject + +class Sittable(DefaultObject): + """ + An object one can sit on + + Customizable Attributes: + adjective: How to sit (on, in, at etc) + Return messages (set as Attributes): + msg_already_sitting: Already sitting here + format tokens {adjective} and {key} + msg_other_sitting: Someone else is sitting here. + format tokens {adjective}, {key} and {other} + msg_sitting_down: Successfully sit down + format tokens {adjective}, {key} + msg_standing_fail: Fail to stand because not sitting. + format tokens {adjective}, {key} + msg_standing_up: Successfully stand up + format tokens {adjective}, {key} + + """ + def at_object_creation(self): + self.db.sitter = None + # do you sit "on" or "in" this object? + self.db.adjective = "on" + + def do_sit(self, sitter): + """ + Called when trying to sit on/in this object. + + Args: + sitter (Object): The one trying to sit down. + + """ + adjective = self.db.adjective + current = self.db.sitter + if current: + if current == sitter: + if self.db.msg_already_sitting: + sitter.msg( + self.db.msg_already_sitting.format( + adjective=self.db.adjective, key=self.key)) + else: + sitter.msg(f"You are already sitting {adjective} {self.key}.") + else: + if self.db.msg_other_sitting: + sitter.msg(self.db.msg_already_sitting.format( + other=current.key, adjective=self.db.adjective, key=self.key)) + else: + sitter.msg(f"You can't sit {adjective} {self.key} " + f"- {current.key} is already sitting there!") + return + self.db.sitting = sitter + sitter.db.is_resting = True + if self.db.msg_sitting_down: + sitter.msg(self.db.msg_sitting_down.format(adjective=adjective, key=self.key)) + else: + sitter.msg(f"You sit {adjective} {self.key}") + + def do_stand(self, stander): + """ + Called when trying to stand from this object. + + Args: + stander (Object): The one trying to stand up. + + """ + current = self.db.sitter + if not stander == current: + if self.db.msg_standing_fail: + stander.msg(self.db.msg_standing_fail.format( + adjective=self.db.adjective, key=self.key)) + else: + stander.msg(f"You are not sitting {self.db.adjective} {self.key}") + else: + self.db.sitting = None + stander.db.is_resting = False + if self.db.msg_standing_up: + stander.msg(self.db.msg_standing_up.format( + adjective=self.db.adjective, key=self.key)) + else: + stander.msg(f"You stand up from {self.key}") +``` + +Here we really went all out with flexibility. If you need this much is up to you. +We added a bunch of optional Attributes to hold alternative versions of all the messages. +There are some things to note: + +- We don't actually initiate those Attributes in `at_object_creation`. This is a simple +optimization. The assumption is that _most_ chairs will probably not be this customized. +So initiating a bunch of Attributes to, say, empty strings would be a lot of useless database calls. +The drawback is that the available Attributes become less visible when reading the code. So we add a long +describing docstring to the end to explain all you can use. +- We use `.format` to inject formatting-tokens in the text. The good thing about such formatting +markers is that they are _optional_. They are there if you want them, but Python will not complain +if you don't include some or any of them. Let's see an example: + + > reload # if you have new code + > create/drop armchair : sittables.Sittable + > set armchair/adjective = in + > set armchair/msg_sitting_down = As you sit down {adjective} {key}, life feels easier. + > set armchair/msg_standing_up = You stand up from {key}. Life resumes. + +The `{key}` and `{adjective}` are examples of optional formatting markers. Whenever the message is +returned, the format-tokens within will be replaced with `armchair` and `in` respectively. Should we +rename the chair later, this will show in the messages automatically (since `{key}` will change). + +We have no Command to use this chair yet. But we can try it out with `py`: + + > py self.search("armchair").do_sit(self) + As you sit down in armchair, life feels easier. + > self.db.resting + True + > py self.search("armchair").do_stand(self) + You stand up from armchair. Life resumes + > self.db.resting + False + +If you follow along and get a result like this, all seems to be working well! + +## Command variant 1: Commands on the chair + +This way to implement `sit` and `stand` puts new cmdsets on the Sittable itself. +As we've learned before, commands on objects are made available to others in the room. +This makes the command easy but instead adds some complexity in the management of the CmdSet. + +This is how it will look if `armchair` is in the room: + + > sit + As you sit down in armchair, life feels easier. + +What happens if there are sittables `sofa` and `barstool` also in the room? Evennia will automatically +handle this for us and allow us to specify which one we want: + + > sit + More than one match for 'sit' (please narrow target): + sit-1 (armchair) + sit-2 (sofa) + sit-3 (barstool) + > sit-1 + As you sit down in armchair, life feels easier. + +To keep things separate we'll make a new module `mygame/commands/sittables.py`: + +```sidebar:: Separate Commands and Typeclasses? + + You can organize these things as you like. If you wanted you could put the sit-command + cmdset + together with the `Sittable` typeclass in `mygame/typeclasses/sittables.py`. That has the advantage of + keeping everything related to sitting in one place. But there is also some organizational merit to + keeping all Commands in one place as we do here. + +``` + +```python +from evennia import Command, CmdSet + +class CmdSit(Command): + """ + Sit down. + """ + key = "sit" + + def func(self): + self.obj.do_sit(self.caller) + +class CmdStand(Command): + """ + Stand up. + """ + key = "stand" + def func(self): + self.obj.do_stand(self.caller) + + +class CmdSetSit(CmdSet): + priority = 1 + def at_cmdset_creation(self): + self.add(CmdSit) + self.add(CmdStand) + +``` + +As seen, the commands are nearly trivial. `self.obj` is the object to which we added the cmdset with this +Command (so for example a chair). We just call the `do_sit/stand` on that object and the `Sittable` will +do the rest. + +Why that `priority = 1` on `CmdSetSit`? This makes same-named Commands from this cmdset merge with a bit higher +priority than Commands from the Character-cmdset. Why this is a good idea will become clear shortly. + +We also need to make a change to our `Sittable` typeclass. Open `mygame/typeclasses/sittables.py`: + +```python +from evennia import DefaultObject +from commands.sittables import CmdSetSit # <- new + +class Sittable(DefaultObject): + """ + (docstring) + """ + def at_object_creation(self): + + self.db.sitter = None + # do you sit "on" or "in" this object? + self.db.adjective = "on" + self.cmdset.add_default(CmdSetSit) # <- new +``` + +Any _new_ Sittables will now have your `sit` Command. Your existing `armchair` will not, +since `at_object_creation` will not re-run for already existing objects. We can update it manually: + + > reload + > update armchair + +We could also update all existing sittables (all on one line): + + > py from typeclasses.sittables import Sittable ; + [sittable.at_object_creation() for sittable in Sittable.objects.all()] + +> The above shows an example of a _list comprehension_. Think of it as an efficient way to construct a new list +all in one line. You can read more about list comprehensions +[here in the Python docs](https://docs.python.org/3/tutorial/datastructures.html#list-comprehensions). + +We should now be able to use `sit` while in the room with the armchair. + + > sit + As you sit down in armchair, life feels easier. + > stand + You stand up from armchair. + +One issue with placing the `sit` (or `stand`) Command "on" the chair is that it will not be available when in a +room without a Sittable object: + + > sit + Command 'sit' is not available. ... + +This is practical but not so good-looking; it makes it harder for the user to know a `sit` action is at all +possible. Here is a trick for fixing this. Let's add _another_ Command to the bottom +of `mygame/commands/sittables.py`: + +```python +# ... + +class CmdNoSitStand(Command): + """ + Sit down or Stand up + """ + key = "sit" + aliases = ["stand"] + + def func(self): + if self.cmdname == "sit": + self.msg("You have nothing to sit on.") + else: + self.msg("You are not sitting down.") + +``` + +Here we have a Command that is actually two - it will answer to both `sit` and `stand` since we +added `stand` to its `aliases`. In the command we look at `self.cmdname`, which is the string +_actually used_ to call this command. We use this to return different messages. + +We don't need a separate CmdSet for this, instead we will add this +to the default Character cmdset. Open `mygame/commands/default_cmdsets.py`: + +```python +# ... +from commands import sittables + +class CharacterCmdSet(CmdSet): + """ + (docstring) + """ + def at_cmdset_creation(self): + # ... + self.add(sittables.CmdNoSitStand) + +``` + +To test we'll build a new location without any comfy armchairs and go there: + + > reload + > tunnel n = kitchen + north + > sit + You have nothing to sit on. + > south + sit + As you sit down in armchair, life feels easier. + +We now have a fully functioning `sit` action that is contained with the chair itself. When no chair is around, a +default error message is shown. + +How does this work? There are two cmdsets at play, both of which have a `sit` Command. As you may remember we +set the chair's cmdset to `priority = 1`. This is where that matters. The default Character cmdset has a +priority of 0. This means that whenever we enter a room with a Sittable thing, the `sit` command +from _its_ cmdset will take _precedence_ over the Character cmdset's version. So we are actually picking +_different_ `sit` commands depending on circumstance! The user will never be the wiser. + +So this handles `sit`. What about `stand`? That will work just fine: + + > stand + You stand up from armchair. + > north + > stand + You are not sitting down. + +We have one remaining problem with `stand` though - what happens when you are sitting down and try to +`stand` in a room with more than one chair: + + > stand + More than one match for 'stand' (please narrow target): + stand-1 (armchair) + stand-2 (sofa) + stand-3 (barstool) + +Since all the sittables have the `stand` Command on them, you'll get a multi-match error. This _works_ ... but +you could pick _any_ of those sittables to "stand up from". That's really weird and non-intuitive. With `sit` it +was okay to get a choice - Evennia can't know which chair we intended to sit on. But we know which chair we +sit on so we should only get _its_ `stand` command. + +We will fix this with a `lock` and a custom `lock function`. We want a lock on the `stand` Command that only +makes it available when the caller is actually sitting on the chair the `stand` command is on. + +First let's add the lock so we see what we want. Open `mygame/commands/sittables.py`: + +```python +# ... + +class CmdStand(Command): + """ + Stand up. + """ + key = "stand" + lock = "cmd:sitsonthis()" # < this is new + + def func(self): + self.obj.do_stand(self.caller) +# ... +``` + +We define a [Lock](../../../Components/Locks) on the command. The `cmd:` is in what situation Evennia will check +the lock. The `cmd` means that it will check the lock when determining if a user has access to this command or not. +What will be checked is the `sitsonthis` _lock function_ which doesn't exist yet. + +Open `mygame/server/conf/lockfuncs.py` to add it! + +```python +""" +(module lockstring) +""" +# ... + +def sitsonthis(accessing_obj, accessed_obj, *args, **kwargs): + """ + True if accessing_obj is sitting on/in the accessed_obj. + """ + return accessed_obj.db.sitting == accessing_obj + +# ... +``` + +Evennia knows that all functions in `mygame/server/conf/lockfuncs` should be possible to use in a lock definition. +The arguments are required and Evennia will pass all relevant objects to them: + +```sidebar:: Lockfuncs + + Evennia provides a large number of default lockfuncs, such as checking permission-levels, + if you are carrying or are inside the accessed object etc. There is no concept of 'sitting' + in default Evennia however, so this we need to specify ourselves. + +``` + +- `accessing_obj` is the one trying to access the lock. So us, in this case. +- `accessed_obj` is the entity we are trying to gain a particular type of access to. So the chair. +- `args` is a tuple holding any arguments passed to the lockfunc. Since we use `sitsondthis()` this will + be empty (and if we add anything, it will be ignored). +- `kwargs` is a tuple of keyword arguments passed to the lockfuncs. This will be empty as well in our example. + +If you are superuser, it's important that you `quell` yourself before trying this out. This is because the superuser +bypasses all locks - it can never get locked out, but it means it will also not see the effects of a lock like this. + + > reload + > quell + > stand + You stand up from armchair + +None of the other sittables' `stand` commands passed the lock and only the one we are actually sitting on did. + +Adding a Command to the chair object like this is powerful and a good technique to know. It does come with some +caveats though that one needs to keep in mind. + +We'll now try another way to add the `sit/stand` commands. + +## Command variant 2: Command on Character + +Before we start with this, delete the chairs you've created (`del armchair` etc) and then do the following +changes: + +- In `mygame/typeclasses/sittables.py`, comment out the line `self.cmdset.add_default(CmdSetSit)`. +- In `mygame/commands/default_cmdsets.py`, comment out the line `self.add(sittables.CmdNoSitStand)`. + +This disables the on-object command solution so we can try an alternative. Make sure to `reload` so the +changes are known to Evennia. + +In this variation we will put the `sit` and `stand` commands on the `Character` instead of on the chair. This +makes some things easier, but makes the Commands themselves more complex because they will not know which +chair to sit on. We can't just do `sit` anymore. This is how it will work. + + > sit + You sit on chair. + > stand + You stand up from chair. + +Open `mygame/commands.sittables.py` again. We'll add a new sit-command. We name the class `CmdSit2` since +we already have `CmdSit` from the previous example. We put everything at the end of the module to +keep it separate. + +```python +from evennia import Command, CmdSet +from evennia import InterruptCommand # <- this is new + +class CmdSit(Command): + # ... + +# ... + +# new from here + +class CmdSit2(Command): + """ + Sit down. + + Usage: + sit + + """ + key = "sit" + + def parse(self): + self.args = self.args.strip() + if not self.args: + self.caller.msg("Sit on what?") + raise InterruptCommand + + def func(self): + + # self.search handles all error messages etc. + sittable = self.caller.search(self.args) + if not sittable: + return + try: + sittable.do_sit(self.caller) + except AttributeError: + self.caller.msg("You can't sit on that!") + +``` + +With this Command-variation we need to search for the sittable. A series of methods on the Command +are run in sequence: + +1. `Command.at_pre_command` - this is not used by default +2. `Command.parse` - this should parse the input +3. `Command.func` - this should implement the actual Command functionality +4. `Command.at_post_func` - this is not used by default + +So if we just `return` in `.parse`, `.func` will still run, which is not what we want. To immediately +abort this sequence we need to `raise InterruptCommand`. + +```sidebar:: Raising exceptions + + Raising an exception allows for immediately interrupting the current program flow. Python + automatically raises error-exceptions when detecting problems with the code. It will be + raised up through the sequence of called code (the 'stack') until it's either `caught` with + a `try ... except` or reaches the outermost scope where it'll be logged or displayed. + +``` + +`InterruptCommand` is an _exception_ that the Command-system catches with the understanding that we want +to do a clean abort. In the `.parse` method we strip any whitespaces from the argument and +sure there actuall _is_ an argument. We abort immediately if there isn't. + +We we get to `.func` at all, we know that we have an argument. We search for this and abort if we there was +a problem finding the target. + +> We could have done `raise InterruptCommand` in `.func` as well, but `return` is a little shorter to write +> and there is no harm done if `at_post_func` runs since it's empty. + +Next we call the found sittable's `do_sit` method. Note that we wrap this call like this: + +```python + +try: + # code +except AttributeError: + # stuff to do if AttributeError exception was raised +``` + +The reason is that `caller.search` has no idea we are looking for a Sittable. The user could have tried +`sit wall` or `sit sword`. These don't have a `do_sit` method _but we call it anyway and handle the error_. +This is a very "Pythonic" thing to do. The concept is often called "leap before you look" or "it's easier to +ask for forgiveness than for permission". If `sittable.do_sit` does not exist, Python will raise an `AttributeError`. +We catch this with `try ... except AttributeError` and convert it to a proper error message. + +While it's useful to learn about `try ... except`, there is also a way to leverage Evennia to do this without +`try ... except`: + +```python + + # ... + + def func(self): + + # self.search handles all error messages etc. + sittable = self.caller.search( + self.args, + typeclass="typeclasses.sittables.Sittable") + if not sittable: + return + sittable.do_sit(self.caller) +``` + +```sidebar:: Continuing across multiple lines + + Note how the `.search()` method's arguments are spread out over multiple + lines. This works for all lists, tuples and other listings and is + a good way to avoid very long and hard-to-read lines. + +``` + +The `caller.search` method has an keyword argument `typeclass` that can take either a python-path to a +typeclass, the typeclass itself, or a list of either to widen the allowed options. In this case we know +for sure that the `sittable` we get is actually a `Sittable` class and we can call `sittable.do_sit` without +needing to worry about catching errors. + +Let's do the `stand` command while we are at it. Again, since the Command is external to the chair we don't +know which object we are sitting in and have to search for it. + +```python + +class CmdStand2(Command): + """ + Stand up. + + Usage: + stand + + """ + key = "stand" + + def func(self): + + caller = self.caller + # find the thing we are sitting on/in, by finding the object + # in the current location that as an Attribute "sitter" set + # to the caller + sittable = caller.search( + caller, + candidates=caller.location.contents, + attribute_name="sitter", + typeclass="typeclasses.sittables.Sittable") + # if this is None, the error was already reported to user + if not sittable: + return + + sittable.do_stand(caller) + +``` + +This forced us to to use the full power of the `caller.search` method. If we wanted to search for something +more complex we would likely need to break out a [Django query](../Part1/Django-queries) to do it. The key here is that +we know that the object we are looking for is a `Sittable` and that it must have an Attribute named `sitter` +which should be set to us, the one sitting on/in the thing. Once we have that we just call `.do_stand` on it +and let the Typeclass handle the rest. + +All that is left now is to make this available to us. This type of Command should be available to us all the time +so we can put it in the default Cmdset` on the Character. Open `mygame/default_cmdsets.py` + + +```python +# ... +from commands import sittables + +class CharacterCmdSet(CmdSet): + """ + (docstring) + """ + def at_cmdset_creation(self): + # ... + self.add(sittables.CmdSit2) + self.add(sittables.CmdStand2) + +``` + +Now let's try it out: + + > reload + > create/drop sofa : sittables.Sittable + > sit sofa + You sit down on sofa. + > stand + You stand up from sofa. + + +## Conclusions + +In this lesson we accomplished quite a bit: + +- We modified our `Character` class to avoid moving when sitting down. +- We made a new `Sittable` typeclass +- We tried two ways to allow a user to interact with sittables using `sit` and `stand` commands. + +Eagle-eyed readers will notice that the `stand` command sitting "on" the chair (variant 1) would work just fine +together with the `sit` command sitting "on" the Character (variant 2). There is nothing stopping you from +mixing them, or even try a third solution that better fits what you have in mind. + +[prev lesson](../../../Unimplemented) | [next lesson](../../../Unimplemented) \ No newline at end of file diff --git a/docs/1.0-dev/_sources/Howto/Starting/Starting-Part2.md.txt b/docs/1.0-dev/_sources/Howto/Starting/Starting-Part2.md.txt index 5fb48dfb39..39c72d99d1 100644 --- a/docs/1.0-dev/_sources/Howto/Starting/Starting-Part2.md.txt +++ b/docs/1.0-dev/_sources/Howto/Starting/Starting-Part2.md.txt @@ -18,9 +18,7 @@ 1. Introduction & Overview (you are here) 1. [On planning a game](Part2/Game-Planning) -1. [Multisession modes](../../Unimplemented) -1. [Layout of our tutorial game](../../Unimplemented) -1. [Some useful Contribs](Part2/Some-Useful-Contribs) +1. [Planning to use some useful Contribs](Part2/Planning-Some-Useful-Contribs) In Part two of the Starting tutorial we'll step back and plan out the kind of tutorial game we want to make. In the process we'll go through the common questions of "where to start" diff --git a/docs/1.0-dev/_sources/Setup/Client-Support-Grid.md.txt b/docs/1.0-dev/_sources/Setup/Client-Support-Grid.md.txt index e1b27f3de2..1a9fc0ef61 100644 --- a/docs/1.0-dev/_sources/Setup/Client-Support-Grid.md.txt +++ b/docs/1.0-dev/_sources/Setup/Client-Support-Grid.md.txt @@ -1,95 +1,109 @@ # Client Support Grid -This grid tries to gather Evennia-specific knowledge about the various clients and protocols used. -Everyone's welcome to report their findings. +This grid tries to gather info about different MU clients when used with Evennia. +If you want to report a problem, update an entry or add a client, make a +new [documentation issue](github:issue) for it. Everyone's encouraged to report their findings. ##### Legend: - - **Name**: The name of the client. If it's only available for a specific OS, it should be noted -here too. + - **Name**: The name of the client. Also note if it's OS-specific. - **Version**: Which version or range of client versions were tested. - - **Comments**: Any comments or quirks on using this client with Evennia should be added here. Also -note if some other protocol than Telnet is used (like Websockets, SSH etc). + - **Comments**: Any quirks on using this client with Evennia should be added here. ## Client Grid -Name | Version | Comments -:----------:------------ -[Evennia webclient][1] | 0.6 | Uses WS/AJAX. [Current client issues][2] -[tintin++][3] | 2.0+ | No MXP support -[tinyfugue][4] | 5.0+ | No UTF-8 support -[MUSHclient][5] (Win) | 4.94 | NAWS reports full text area -[Zmud][6] (Win) | 7.21 | *UNTESTED* -[Cmud][7] (Win) | v3 | *UNTESTED* -[Potato][8] | 2.0.0b16 | No MXP, MCCP support. Win 32bit does not understand -"localhost", must use `127.0.0.1`. [Newline issue](https://github.com/evennia/evennia/issues/1131). -*Won't send a single blank line on Enter press. -[Mudlet][9] | 3.4+ | No known issues. Some older versions showed <> as html under MXP. -[SimpleMU][10] (Win) | full | *UNTESTED*. Discontinued. NAWS reports pixel size. -[Atlantis][11] (Mac) | 0.9.9.4 | No known issues. -[GMUD][12] | 0.0.1 | Can't handle any telnet handshakes. Not recommended. -[BeipMU][13] (Win) | 3.0.255 | No MXP support. Best to enable "MUD prompt handling", disable -"Handle HTML tags". -[MudRammer][14] (IOS) | 1.8.7 | Bad Telnet Protocol compliance: displays spurious characters. -[MUDMaster][15] (IOS) | 1.3.1 | *UNTESTED* -[BlowTorch][16] (Andr) | 1.1.3 | *Telnet NOP displays as spurious character. -[Mukluk][17] (Andr) | 2015.11.20| *Telnet NOP displays as spurious character. Has UTF-8/Emoji -support. -[Gnome-MUD][18] (Unix) | 0.11.2 | Telnet handshake errors. First (only) attempt at logging in -fails. -[Spyrit][19] | 0.4 | No MXP, OOB support. -[JamochaMUD][20] | 5.2 | Does not support ANSI within MXP text. -[DuckClient][21] (Chrome)| 4.2 | No MXP support. Displays Telnet Go-Ahead and WILL SUPPRESS-GO-AHEAD -as ù character. Also seems to run the `version` command on connection, which will not work in -`MULTISESSION_MODES` above 1. -[KildClient][22] | 2.11.1 | No known issues. +```eval_rst ++----------------------------+-----------+----------------------------------------------------------------+ +| Name | Version | Comments | ++============================+===========+================================================================+ +| `Evennia Webclient`_ | 0.9 | Evennia-specific | ++----------------------------+-----------+----------------------------------------------------------------+ +| `tintin++`_ | 2.0+ | No MXP support | ++----------------------------+-----------+----------------------------------------------------------------+ +| tinyfugue_ | 5.0+ | No UTF-8 support | ++----------------------------+-----------+----------------------------------------------------------------+ +| MUSHclient_ (Win) | 4.94 | NAWS reports full text area | ++----------------------------+-----------+----------------------------------------------------------------+ +| Zmud_ (Win) | 7.21 | *UNTESTED* | ++----------------------------+-----------+----------------------------------------------------------------+ +| Cmud_ (Win) | v3 | *UNTESTED* | ++----------------------------+-----------+----------------------------------------------------------------+ +| Potato_ | 2.0.0b16 | No MXP, MCCP support. Win 32bit does not understand | +| | | "localhost", must use `127.0.0.1`. | ++----------------------------+-----------+----------------------------------------------------------------+ +| Mudlet_ | 3.4+ | No known issues. Some older versions showed <> as html | +| | | under MXP. | ++----------------------------+-----------+----------------------------------------------------------------+ +| SimpleMU_ (Win) | full | Discontinued. NAWS reports pixel size. | ++----------------------------+-----------+----------------------------------------------------------------+ +| Atlantis_ (Mac) | 0.9.9.4 | No known issues. | ++----------------------------+-----------+----------------------------------------------------------------+ +| GMUD_ | 0.0.1 | Can't handle any telnet handshakes. Not recommended. | ++----------------------------+-----------+----------------------------------------------------------------+ +| BeipMU_ (Win) | 3.0.255 | No MXP support. Best to enable "MUD prompt handling", disable | +| | | "Handle HTML tags". | ++----------------------------+-----------+----------------------------------------------------------------+ +| MudRammer_ (IOS) | 1.8.7 | Bad Telnet Protocol compliance: displays spurious characters. | ++----------------------------+-----------+----------------------------------------------------------------+ +| MUDMaster_ | 1.3.1 | *UNTESTED* | ++----------------------------+-----------+----------------------------------------------------------------+ +| BlowTorch_ (Andr) | 1.1.3 | Telnet NOP displays as spurious character. | ++----------------------------+-----------+----------------------------------------------------------------+ +| Mukluk_ (Andr) | 2015.11.20| Telnet NOP displays as spurious character. Has UTF-8/Emoji | +| | | support. | ++----------------------------+-----------+----------------------------------------------------------------+ +| Gnome-MUD_ (Unix) | 0.11.2 | Telnet handshake errors. First (only) attempt at logging in | +| | | fails. | ++----------------------------+-----------+----------------------------------------------------------------+ +| Spyrit_ | 0.4 | No MXP, OOB support. | ++----------------------------+-----------+----------------------------------------------------------------+ +| JamochaMUD_ | 5.2 | Does not support ANSI within MXP text. | ++----------------------------+-----------+----------------------------------------------------------------+ +| DuckClient_ (Chrome) | 4.2 | No MXP support. Displays Telnet Go-Ahead and | +| | | WILL SUPPRESS-GO-AHEAD as ù character. Also seems to run | +| | | the `version` command on connection, which will not work in | +| | | `MULTISESSION_MODES` above 1. | ++----------------------------+-----------+----------------------------------------------------------------+ +| KildClient_ | 2.11.1 | No known issues. | ++----------------------------+-----------+----------------------------------------------------------------+ + +.. _Evennia Webclient: ../Components/Webclient.html +.. _tintin++: http://tintin.sourceforge.net/ +.. _tinyfugue: http://tinyfugue.sourceforge.net/ +.. _MUSHclient: http://mushclient.com/ +.. _Zmud: http://forums.zuggsoft.com/index.php?page=4&action=file&file_id=65 +.. _Cmud: http://forums.zuggsoft.com/index.php?page=4&action=category&cat_id=11 +.. _Potato: http://www.potatomushclient.com/ +.. _Mudlet: http://www.mudlet.org/ +.. _SimpleMU: https://archive.org/details/tucows_196173_SimpleMU_MU_Client +.. _Atlantis: http://www.riverdark.net/atlantis/ +.. _GMUD: https://sourceforge.net/projects/g-mud/ +.. _BeipMU: http://www.beipmu.com/ +.. _MudRammer: https://itunes.apple.com/us/app/mudrammer-a-modern-mud-client/id597157072 +.. _MUDMaster: https://itunes.apple.com/us/app/mudmaster/id341160033 +.. _BlowTorch: http://bt.happygoatstudios.com/ +.. _Mukluk: https://play.google.com/store/apps/details?id=com.crap.mukluk +.. _Gnome-MUD: https://github.com/GNOME/gnome-mud +.. _Spyrit: https://spyrit.ierne.eu.org/ +.. _JamochaMUD: http://jamochamud.org/ +.. _DuckClient: http://duckclient.com/ +.. _KildClient: https://www.kildclient.org/ + +``` ## Workarounds for client issues: ### Issue: Telnet NOP displays as spurious character. Known clients: -* [BlowTorch][16] (Andr) -* [Mukluk][17] (Andr) +* BlowTorch (Andr) +* Mukluk (Andr) Workaround: -* Set the command in game to `@option NOPKEEPALIVE=off` for the session, or use the `/save` -parameter to disable it for that Evennian account permanently. +* In-game: Use `@option NOPKEEPALIVE=off` for the session, or use the `/save` +parameter to disable it for that Evennia account permanently. * Client-side: Set a gag-type trigger on the NOP character to make it invisible to the client. -### Issue: Won't send blank line on Enter key press. - -Known clients: - -* [Potato][8] - -Workaround: - -* Press Control Enter, then Enter key again to send blank line. - - -[1]: https://github.com/evennia/evennia/wiki/Web%20features#web-client -[2]: https://github.com/evennia/evennia/issues?utf8=%E2%9C%93&q=client+status%3Dopen+] -[3]: http://tintin.sourceforge.net/ -[4]: http://tinyfugue.sourceforge.net/ -[5]: http://mushclient.com/ -[6]: http://forums.zuggsoft.com/index.php?page=4&action=file&file_id=65 -[7]: http://forums.zuggsoft.com/index.php?page=4&action=category&cat_id=11 -[8]: http://www.potatomushclient.com/ -[9]: http://www.mudlet.org/ -[10]: https://archive.org/details/tucows_196173_SimpleMU_MU_Client -[11]: http://www.riverdark.net/atlantis/ -[12]: https://sourceforge.net/projects/g-mud/ -[13]: http://www.beipmu.com/ -[14]: https://itunes.apple.com/us/app/mudrammer-a-modern-mud-client/id597157072 -[15]: https://itunes.apple.com/us/app/mudmaster/id341160033 -[16]: http://bt.happygoatstudios.com/ -[17]: https://play.google.com/store/apps/details?id=com.crap.mukluk -[18]: https://github.com/GNOME/gnome-mud -[19]: https://spyrit.ierne.eu.org/ -[20]: http://jamochamud.org/ -[21]: http://duckclient.com/ -[22]: https://www.kildclient.org/ \ No newline at end of file diff --git a/docs/1.0-dev/_sources/Setup/Extended-Installation.md.txt b/docs/1.0-dev/_sources/Setup/Extended-Installation.md.txt index c41ac5f0fc..a33aa446ce 100644 --- a/docs/1.0-dev/_sources/Setup/Extended-Installation.md.txt +++ b/docs/1.0-dev/_sources/Setup/Extended-Installation.md.txt @@ -68,10 +68,10 @@ Twisted packages ## Linux Install If you run into any issues during the installation and first start, please -check out [Linux Troubleshooting](Getting-Started#linux-troubleshooting). +check out [Linux Troubleshooting](./Getting-Started#linux-troubleshooting). For Debian-derived systems (like Ubuntu, Mint etc), start a terminal and -install the [dependencies](Getting-Started#requirements): +install the [dependencies](./Getting-Started#requirements): ``` sudo apt-get update @@ -175,7 +175,7 @@ evennia start # (create a superuser when asked. Email is optional.) Your game should now be running! Open a web browser at `http://localhost:4001` or point a telnet client to `localhost:4000` and log in with the user you -created. Check out [where to go next](Getting-Started#where-to-go-next). +created. Check out [where to go next](./Getting-Started#where-to-go-next). ## Mac Install @@ -184,7 +184,7 @@ The Evennia server is a terminal program. Open the terminal e.g. from *Applications->Utilities->Terminal*. [Here is an introduction to the Mac terminal](http://blog.teamtreehouse.com/introduction-to-the-mac-os-x-command-line) if you are unsure how it works. If you run into any issues during the -installation, please check out [Mac Troubleshooting](Getting-Started#mac-troubleshooting). +installation, please check out [Mac Troubleshooting](./Getting-Started#mac-troubleshooting). * Python should already be installed but you must make sure it's a high enough version. ([This](http://docs.python-guide.org/en/latest/starting/install/osx/) discusses @@ -287,13 +287,13 @@ evennia start # (create a superuser when asked. Email is optional.) Your game should now be running! Open a web browser at `http://localhost:4001` or point a telnet client to `localhost:4000` and log in with the user you -created. Check out [where to go next](Getting-Started#where-to-go-next). +created. Check out [where to go next](./Getting-Started#where-to-go-next). ## Windows Install If you run into any issues during the installation, please check out -[Windows Troubleshooting](Getting-Started#windows-troubleshooting). +[Windows Troubleshooting](./Getting-Started#windows-troubleshooting). > If you are running Windows10, consider using the Windows Subsystem for Linux > ([WSL](https://en.wikipedia.org/wiki/Windows_Subsystem_for_Linux)) instead. @@ -428,7 +428,7 @@ evennia start # (create a superuser when asked. Email is optional.) Your game should now be running! Open a web browser at `http://localhost:4001` or point a telnet client to `localhost:4000` and log in with the user you -created. Check out [where to go next](Getting-Started#where-to-go-next). +created. Check out [where to go next](./Getting-Started#where-to-go-next). ## Where to Go Next diff --git a/docs/1.0-dev/_sources/Setup/Installing-on-Android.md.txt b/docs/1.0-dev/_sources/Setup/Installing-on-Android.md.txt index cce67117f0..b686110e64 100644 --- a/docs/1.0-dev/_sources/Setup/Installing-on-Android.md.txt +++ b/docs/1.0-dev/_sources/Setup/Installing-on-Android.md.txt @@ -120,7 +120,7 @@ $ cd ~ && source evenv/bin/activate (evenv) $ evennia start ``` -You may wish to look at the [Linux Instructions](Getting-Started#linux-install) for more. +You may wish to look at the [Linux Instructions](./Getting-Started#linux-install) for more. ## Caveats diff --git a/docs/1.0-dev/_sources/toc.md.txt b/docs/1.0-dev/_sources/toc.md.txt index cc0434cdbf..f27032e3ac 100644 --- a/docs/1.0-dev/_sources/toc.md.txt +++ b/docs/1.0-dev/_sources/toc.md.txt @@ -99,7 +99,9 @@ - [Howto/NPC shop Tutorial](Howto/NPC-shop-Tutorial) - [Howto/Parsing commands tutorial](Howto/Parsing-commands-tutorial) - [Howto/Starting/Part2/Game Planning](Howto/Starting/Part2/Game-Planning) -- [Howto/Starting/Part2/Some Useful Contribs](Howto/Starting/Part2/Some-Useful-Contribs) +- [Howto/Starting/Part2/Planning Some Useful Contribs](Howto/Starting/Part2/Planning-Some-Useful-Contribs) +- [Howto/Starting/Part2/Planning The Tutorial Game](Howto/Starting/Part2/Planning-The-Tutorial-Game) +- [Howto/Starting/Part3/A Sittable Object](Howto/Starting/Part3/A-Sittable-Object) - [Howto/Starting/Part3/Implementing a game rule system](Howto/Starting/Part3/Implementing-a-game-rule-system) - [Howto/Starting/Part3/Turn based Combat System](Howto/Starting/Part3/Turn-based-Combat-System) - [Howto/Starting/Part3/Tutorial for basic MUSH like game](Howto/Starting/Part3/Tutorial-for-basic-MUSH-like-game) diff --git a/docs/1.0-dev/_static/basic.css b/docs/1.0-dev/_static/basic.css index e89235ddc2..d0fa172aba 100644 --- a/docs/1.0-dev/_static/basic.css +++ b/docs/1.0-dev/_static/basic.css @@ -390,14 +390,16 @@ table caption span.caption-number { table caption span.caption-text { } + table.docutils td, table.docutils th { padding: 1px 8px 1px 5px; - border-top: 0; - border-left: 0; - border-right: 0; + border-top: 1px solid #aaa; + border-left: 1px solid #aaa; + border-right: 1px solid #aaa; border-bottom: 1px solid #aaa; } + table.footnote td, table.footnote th { border: 0 !important; } @@ -426,6 +428,19 @@ td > p:last-child { margin-bottom: 0px; } +thead { + border-bottom: 2px solid #aaa; +} + +.row-odd { + background: #edeee4; +} + +.row-even { + background: #f4f4ed; +} + + /* -- figures --------------------------------------------------------------- */ div.figure { diff --git a/docs/1.0-dev/api/evennia-api.html b/docs/1.0-dev/api/evennia-api.html index 6332e4c362..148de554f7 100644 --- a/docs/1.0-dev/api/evennia-api.html +++ b/docs/1.0-dev/api/evennia-api.html @@ -117,11 +117,6 @@
  • Using traits
  • Trait types
  • Static trait
  • -
  • # Counter
  • -
  • ## .rate
  • -
  • ## .percentage()
  • -
  • # Gauge
  • -
  • # Trait
  • Expanding with your own Traits
  • diff --git a/docs/1.0-dev/api/evennia.accounts.accounts.html b/docs/1.0-dev/api/evennia.accounts.accounts.html index b23b9f5052..da5c99115a 100644 --- a/docs/1.0-dev/api/evennia.accounts.accounts.html +++ b/docs/1.0-dev/api/evennia.accounts.accounts.html @@ -439,6 +439,29 @@ error (ValidationError, None): Any validation error(s) raised. Multiple

    would mean old passwords in the database (pre validation checks) could get invalidated.

    +
    +
    +create_character(*args, **kwargs)[source]
    +

    Create a character linked to this account.

    +
    +
    Parameters
    +
      +
    • key (str, optional) – If not given, use the same name as the account.

    • +
    • typeclass (str, optional) – Typeclass to use for this character. If +not given, use settings.BASE_CHARACTER_TYPECLASS.

    • +
    • permissions (list, optional) – If not given, use the account’s permissions.

    • +
    • ip (str, optiona) – The client IP creating this character. Will fall back to the +one stored for the account if not given.

    • +
    • kwargs (any) – Other kwargs will be used in the create_call.

    • +
    +
    +
    Returns
    +

    Object – A new character of the character_typeclass type. None on an error. +list or None: A list of errors, or None.

    +
    +
    +
    +
    classmethod create(*args, **kwargs)[source]
    @@ -532,7 +555,7 @@ commands at run-time.

    -search(searchdata, return_puppet=False, search_object=False, typeclass=None, nofound_string=None, multimatch_string=None, use_nicks=True, **kwargs)[source]
    +search(searchdata, return_puppet=False, search_object=False, typeclass=None, nofound_string=None, multimatch_string=None, use_nicks=True, quiet=False, **kwargs)[source]

    This is similar to DefaultObject.search but defaults to searching for Accounts only.

    @@ -557,10 +580,13 @@ will fall back to the default handler.

    message to echo if searchdata leads to multiple matches. If not given, will fall back to the default handler.

  • use_nicks (bool, optional) – Use account-level nick replacement.

  • +
  • quiet (bool, optional) – If set, will not show any error to the user, +and will also lead to returning a list of matches.

  • Returns
    -

    match (Account, Object or None) – A single Account or Object match.

    +

    match (Account, Object or None) – A single Account or Object match. +list: If quiet=True this is a list of 0, 1 or more Account or Object matches.

    Notes

    diff --git a/docs/1.0-dev/api/evennia.accounts.admin.html b/docs/1.0-dev/api/evennia.accounts.admin.html index 4d398f7d7f..155644ab13 100644 --- a/docs/1.0-dev/api/evennia.accounts.admin.html +++ b/docs/1.0-dev/api/evennia.accounts.admin.html @@ -150,6 +150,11 @@ fields = '__all__'
    +
    +
    +app_label = 'accounts'
    +
    +
    @@ -297,6 +302,11 @@ add_fieldsets = ((None, {'fields': ('username', 'password1', 'password2', 'email'), 'description': '<i>These account details are shared by the admin system and the game.</i>'}),)
    +
    +
    +user_change_password(*args, **kwargs)[source]
    +
    +
    save_model(request, obj, form, change)[source]
    diff --git a/docs/1.0-dev/api/evennia.commands.cmdset.html b/docs/1.0-dev/api/evennia.commands.cmdset.html index e14d145ae4..4c8cfeb96a 100644 --- a/docs/1.0-dev/api/evennia.commands.cmdset.html +++ b/docs/1.0-dev/api/evennia.commands.cmdset.html @@ -230,15 +230,20 @@ helps if wanting to selectively remov cmdsets.

    -add(cmd)[source]
    -

    Add a new command or commands to this CmdSetcommand, a list of +add(cmd, allow_duplicates=False)[source] +

    Add a new command or commands to this CmdSet, a list of commands or a cmdset to this cmdset. Note that this is not a merge operation (that is handled by the + operator).

    Parameters
    -

    cmd (Command, list, Cmdset) – This allows for adding one or +

      +
    • cmd (Command, list, Cmdset) – This allows for adding one or more commands to this Cmdset in one go. If another Cmdset -is given, all its commands will be added.

      +is given, all its commands will be added.

    • +
    • allow_duplicates (bool, optional) – If set, will not try to remove +duplicate cmds in the set. This is needed during the merge process +to avoid wiping commands coming from cmdsets with duplicate=True.

    • +

    Notes

    diff --git a/docs/1.0-dev/api/evennia.commands.default.account.html b/docs/1.0-dev/api/evennia.commands.default.account.html index 9338aaea82..90d675eb01 100644 --- a/docs/1.0-dev/api/evennia.commands.default.account.html +++ b/docs/1.0-dev/api/evennia.commands.default.account.html @@ -69,7 +69,7 @@ method. Otherwise all text will be returned to all connected sessions.

    -aliases = ['l', 'ls']
    +aliases = ['ls', 'l']
    @@ -100,7 +100,7 @@ method. Otherwise all text will be returned to all connected sessions.

    -search_index_entry = {'aliases': 'l ls', 'category': 'general', 'key': 'look', 'tags': '', 'text': '\n look while out-of-character\n\n Usage:\n look\n\n Look in the ooc state.\n '}
    +search_index_entry = {'aliases': 'ls l', 'category': 'general', 'key': 'look', 'tags': '', 'text': '\n look while out-of-character\n\n Usage:\n look\n\n Look in the ooc state.\n '}
    diff --git a/docs/1.0-dev/api/evennia.commands.default.admin.html b/docs/1.0-dev/api/evennia.commands.default.admin.html index d4b009aa20..f0023857dc 100644 --- a/docs/1.0-dev/api/evennia.commands.default.admin.html +++ b/docs/1.0-dev/api/evennia.commands.default.admin.html @@ -253,7 +253,7 @@ to accounts respectively.

    -aliases = ['pemit', 'remit']
    +aliases = ['remit', 'pemit']
    @@ -284,7 +284,7 @@ to accounts respectively.

    -search_index_entry = {'aliases': 'pemit remit', 'category': 'admin', 'key': 'emit', 'tags': '', 'text': '\n admin command for emitting message to multiple objects\n\n Usage:\n emit[/switches] [<obj>, <obj>, ... =] <message>\n remit [<obj>, <obj>, ... =] <message>\n pemit [<obj>, <obj>, ... =] <message>\n\n Switches:\n room - limit emits to rooms only (default)\n accounts - limit emits to accounts only\n contents - send to the contents of matched objects too\n\n Emits a message to the selected objects or to\n your immediate surroundings. If the object is a room,\n send to its contents. remit and pemit are just\n limited forms of emit, for sending to rooms and\n to accounts respectively.\n '}
    +search_index_entry = {'aliases': 'remit pemit', 'category': 'admin', 'key': 'emit', 'tags': '', 'text': '\n admin command for emitting message to multiple objects\n\n Usage:\n emit[/switches] [<obj>, <obj>, ... =] <message>\n remit [<obj>, <obj>, ... =] <message>\n pemit [<obj>, <obj>, ... =] <message>\n\n Switches:\n room - limit emits to rooms only (default)\n accounts - limit emits to accounts only\n contents - send to the contents of matched objects too\n\n Emits a message to the selected objects or to\n your immediate surroundings. If the object is a room,\n send to its contents. remit and pemit are just\n limited forms of emit, for sending to rooms and\n to accounts respectively.\n '}
    diff --git a/docs/1.0-dev/api/evennia.commands.default.building.html b/docs/1.0-dev/api/evennia.commands.default.building.html index 3ed8729acd..85e2b29a2d 100644 --- a/docs/1.0-dev/api/evennia.commands.default.building.html +++ b/docs/1.0-dev/api/evennia.commands.default.building.html @@ -1018,6 +1018,11 @@ unique.

    help_category = 'building'
    +
    +
    +new_obj_lockstring = 'control:id({id}) or perm(Admin);delete:id({id}) or perm(Admin)'
    +
    +
    create_exit(exit_name, location, destination, exit_aliases=None, typeclass=None)[source]
    @@ -1262,7 +1267,7 @@ server settings.

    -aliases = ['parent', 'swap', 'update', 'type']
    +aliases = ['parent', 'swap', 'type', 'update']
    @@ -1293,7 +1298,7 @@ server settings.

    -search_index_entry = {'aliases': 'parent swap update type', 'category': 'building', 'key': 'typeclass', 'tags': '', 'text': "\n set or change an object's typeclass\n\n Usage:\n typeclass[/switch] <object> [= typeclass.path]\n typeclass/prototype <object> = prototype_key\n\n typeclass/list/show [typeclass.path]\n swap - this is a shorthand for using /force/reset flags.\n update - this is a shorthand for using the /force/reload flag.\n\n Switch:\n show, examine - display the current typeclass of object (default) or, if\n given a typeclass path, show the docstring of that typeclass.\n update - *only* re-run at_object_creation on this object\n meaning locks or other properties set later may remain.\n reset - clean out *all* the attributes and properties on the\n object - basically making this a new clean object.\n force - change to the typeclass also if the object\n already has a typeclass of the same name.\n list - show available typeclasses. Only typeclasses in modules actually\n imported or used from somewhere in the code will show up here\n (those typeclasses are still available if you know the path)\n prototype - clean and overwrite the object with the specified\n prototype key - effectively making a whole new object.\n\n Example:\n type button = examples.red_button.RedButton\n type/prototype button=a red button\n\n If the typeclass_path is not given, the current object's typeclass is\n assumed.\n\n View or set an object's typeclass. If setting, the creation hooks of the\n new typeclass will be run on the object. If you have clashing properties on\n the old class, use /reset. By default you are protected from changing to a\n typeclass of the same name as the one you already have - use /force to\n override this protection.\n\n The given typeclass must be identified by its location using python\n dot-notation pointing to the correct module and class. If no typeclass is\n given (or a wrong typeclass is given). Errors in the path or new typeclass\n will lead to the old typeclass being kept. The location of the typeclass\n module is searched from the default typeclass directory, as defined in the\n server settings.\n\n "}
    +search_index_entry = {'aliases': 'parent swap type update', 'category': 'building', 'key': 'typeclass', 'tags': '', 'text': "\n set or change an object's typeclass\n\n Usage:\n typeclass[/switch] <object> [= typeclass.path]\n typeclass/prototype <object> = prototype_key\n\n typeclass/list/show [typeclass.path]\n swap - this is a shorthand for using /force/reset flags.\n update - this is a shorthand for using the /force/reload flag.\n\n Switch:\n show, examine - display the current typeclass of object (default) or, if\n given a typeclass path, show the docstring of that typeclass.\n update - *only* re-run at_object_creation on this object\n meaning locks or other properties set later may remain.\n reset - clean out *all* the attributes and properties on the\n object - basically making this a new clean object.\n force - change to the typeclass also if the object\n already has a typeclass of the same name.\n list - show available typeclasses. Only typeclasses in modules actually\n imported or used from somewhere in the code will show up here\n (those typeclasses are still available if you know the path)\n prototype - clean and overwrite the object with the specified\n prototype key - effectively making a whole new object.\n\n Example:\n type button = examples.red_button.RedButton\n type/prototype button=a red button\n\n If the typeclass_path is not given, the current object's typeclass is\n assumed.\n\n View or set an object's typeclass. If setting, the creation hooks of the\n new typeclass will be run on the object. If you have clashing properties on\n the old class, use /reset. By default you are protected from changing to a\n typeclass of the same name as the one you already have - use /force to\n override this protection.\n\n The given typeclass must be identified by its location using python\n dot-notation pointing to the correct module and class. If no typeclass is\n given (or a wrong typeclass is given). Errors in the path or new typeclass\n will lead to the old typeclass being kept. The location of the typeclass\n module is searched from the default typeclass directory, as defined in the\n server settings.\n\n "}
    @@ -1446,7 +1451,7 @@ If object is not specified, the current location is examined.

    -aliases = ['exam', 'ex']
    +aliases = ['ex', 'exam']
    @@ -1469,10 +1474,41 @@ If object is not specified, the current location is examined.

    account_mode = False
    +
    +
    +detail_color = '|c'
    +
    + +
    +
    +header_color = '|w'
    +
    + +
    +
    +quell_color = '|r'
    +
    + +
    +
    +separator = '-'
    +
    +
    list_attribute(crop, attr, category, value)[source]

    Formats a single attribute line.

    +
    +
    Parameters
    +
      +
    • crop (bool) – If output should be cropped if too long.

    • +
    • attr (str) – Attribute key.

    • +
    • category (str) – Attribute category.

    • +
    • value (any) – Attribute value.

    • +
    +
    +
    +

    Returns:

    @@ -1486,7 +1522,17 @@ non-persistent data stored on object

    format_output(obj, avail_cmdset)[source]

    Helper function that creates a nice report about an object.

    -

    returns a string.

    +
    +
    Parameters
    +
      +
    • obj (any) – Object to analyze.

    • +
    • avail_cmdset (CmdSet) – Current cmdset for object.

    • +
    +
    +
    Returns
    +

    str – The formatted string.

    +
    +
    @@ -1502,7 +1548,7 @@ non-persistent data stored on object

    -search_index_entry = {'aliases': 'exam ex', 'category': 'building', 'key': 'examine', 'tags': '', 'text': '\n get detailed information about an object\n\n Usage:\n examine [<object>[/attrname]]\n examine [*<account>[/attrname]]\n\n Switch:\n account - examine an Account (same as adding *)\n object - examine an Object (useful when OOC)\n\n The examine command shows detailed game info about an\n object and optionally a specific attribute on it.\n If object is not specified, the current location is examined.\n\n Append a * before the search string to examine an account.\n\n '}
    +search_index_entry = {'aliases': 'ex exam', 'category': 'building', 'key': 'examine', 'tags': '', 'text': '\n get detailed information about an object\n\n Usage:\n examine [<object>[/attrname]]\n examine [*<account>[/attrname]]\n\n Switch:\n account - examine an Account (same as adding *)\n object - examine an Object (useful when OOC)\n\n The examine command shows detailed game info about an\n object and optionally a specific attribute on it.\n If object is not specified, the current location is examined.\n\n Append a * before the search string to examine an account.\n\n '}
    @@ -1536,7 +1582,7 @@ one is given.

    -aliases = ['locate', 'search']
    +aliases = ['search', 'locate']
    @@ -1567,7 +1613,7 @@ one is given.

    -search_index_entry = {'aliases': 'locate search', 'category': 'building', 'key': 'find', 'tags': '', 'text': '\n search the database for objects\n\n Usage:\n find[/switches] <name or dbref or *account> [= dbrefmin[-dbrefmax]]\n locate - this is a shorthand for using the /loc switch.\n\n Switches:\n room - only look for rooms (location=None)\n exit - only look for exits (destination!=None)\n char - only look for characters (BASE_CHARACTER_TYPECLASS)\n exact - only exact matches are returned.\n loc - display object location if exists and match has one result\n startswith - search for names starting with the string, rather than containing\n\n Searches the database for an object of a particular name or exact #dbref.\n Use *accountname to search for an account. The switches allows for\n limiting object matches to certain game entities. Dbrefmin and dbrefmax\n limits matches to within the given dbrefs range, or above/below if only\n one is given.\n '}
    +search_index_entry = {'aliases': 'search locate', 'category': 'building', 'key': 'find', 'tags': '', 'text': '\n search the database for objects\n\n Usage:\n find[/switches] <name or dbref or *account> [= dbrefmin[-dbrefmax]]\n locate - this is a shorthand for using the /loc switch.\n\n Switches:\n room - only look for rooms (location=None)\n exit - only look for exits (destination!=None)\n char - only look for characters (BASE_CHARACTER_TYPECLASS)\n exact - only exact matches are returned.\n loc - display object location if exists and match has one result\n startswith - search for names starting with the string, rather than containing\n\n Searches the database for an object of a particular name or exact #dbref.\n Use *accountname to search for an account. The switches allows for\n limiting object matches to certain game entities. Dbrefmin and dbrefmax\n limits matches to within the given dbrefs range, or above/below if only\n one is given.\n '}
    diff --git a/docs/1.0-dev/api/evennia.commands.default.comms.html b/docs/1.0-dev/api/evennia.commands.default.comms.html index 467c4ec474..3bfff3739b 100644 --- a/docs/1.0-dev/api/evennia.commands.default.comms.html +++ b/docs/1.0-dev/api/evennia.commands.default.comms.html @@ -233,7 +233,7 @@ Use addcom/delcom to join and leave channels

    -aliases = ['comlist', 'clist', 'chanlist', 'all channels', 'channellist']
    +aliases = ['clist', 'all channels', 'channellist', 'chanlist', 'comlist']
    @@ -264,7 +264,7 @@ Use addcom/delcom to join and leave channels

    -search_index_entry = {'aliases': 'comlist clist chanlist all channels channellist', 'category': 'comms', 'key': 'channels', 'tags': '', 'text': "\n list all channels available to you\n\n Usage:\n channels\n clist\n comlist\n\n Lists all channels available to you, whether you listen to them or not.\n Use 'comlist' to only view your current channel subscriptions.\n Use addcom/delcom to join and leave channels\n "}
    +search_index_entry = {'aliases': 'clist all channels channellist chanlist comlist', 'category': 'comms', 'key': 'channels', 'tags': '', 'text': "\n list all channels available to you\n\n Usage:\n channels\n clist\n comlist\n\n Lists all channels available to you, whether you listen to them or not.\n Use 'comlist' to only view your current channel subscriptions.\n Use addcom/delcom to join and leave channels\n "}
    diff --git a/docs/1.0-dev/api/evennia.commands.default.general.html b/docs/1.0-dev/api/evennia.commands.default.general.html index c81b0e64c0..3168fba2f5 100644 --- a/docs/1.0-dev/api/evennia.commands.default.general.html +++ b/docs/1.0-dev/api/evennia.commands.default.general.html @@ -111,7 +111,7 @@ look *<account&g
    -aliases = ['l', 'ls']
    +aliases = ['ls', 'l']
    @@ -142,7 +142,7 @@ look *<account&g
    -search_index_entry = {'aliases': 'l ls', 'category': 'general', 'key': 'look', 'tags': '', 'text': '\n look at location or object\n\n Usage:\n look\n look <obj>\n look *<account>\n\n Observes your location or objects in your vicinity.\n '}
    +search_index_entry = {'aliases': 'ls l', 'category': 'general', 'key': 'look', 'tags': '', 'text': '\n look at location or object\n\n Usage:\n look\n look <obj>\n look *<account>\n\n Observes your location or objects in your vicinity.\n '}
    @@ -259,7 +259,7 @@ inv

    -aliases = ['inv', 'i']
    +aliases = ['i', 'inv']
    @@ -290,7 +290,7 @@ inv

    -search_index_entry = {'aliases': 'inv i', 'category': 'general', 'key': 'inventory', 'tags': '', 'text': '\n view inventory\n\n Usage:\n inventory\n inv\n\n Shows your inventory.\n '}
    +search_index_entry = {'aliases': 'i inv', 'category': 'general', 'key': 'inventory', 'tags': '', 'text': '\n view inventory\n\n Usage:\n inventory\n inv\n\n Shows your inventory.\n '}
    @@ -534,7 +534,7 @@ placing it in their inventory.

    -aliases = ["'", '"']
    +aliases = ['"', "'"]
    @@ -560,7 +560,7 @@ placing it in their inventory.

    -search_index_entry = {'aliases': '\' "', 'category': 'general', 'key': 'say', 'tags': '', 'text': '\n speak as your character\n\n Usage:\n say <message>\n\n Talk to those in your current location.\n '}
    +search_index_entry = {'aliases': '" \'', 'category': 'general', 'key': 'say', 'tags': '', 'text': '\n speak as your character\n\n Usage:\n say <message>\n\n Talk to those in your current location.\n '}
    @@ -699,7 +699,7 @@ which permission groups you are a member of.

    -aliases = ['hierarchy', 'groups']
    +aliases = ['groups', 'hierarchy']
    @@ -730,7 +730,7 @@ which permission groups you are a member of.

    -search_index_entry = {'aliases': 'hierarchy groups', 'category': 'general', 'key': 'access', 'tags': '', 'text': '\n show your current game access\n\n Usage:\n access\n\n This command shows you the permission hierarchy and\n which permission groups you are a member of.\n '}
    +search_index_entry = {'aliases': 'groups hierarchy', 'category': 'general', 'key': 'access', 'tags': '', 'text': '\n show your current game access\n\n Usage:\n access\n\n This command shows you the permission hierarchy and\n which permission groups you are a member of.\n '}
    diff --git a/docs/1.0-dev/api/evennia.commands.default.system.html b/docs/1.0-dev/api/evennia.commands.default.system.html index b4dd29226b..287644dd2d 100644 --- a/docs/1.0-dev/api/evennia.commands.default.system.html +++ b/docs/1.0-dev/api/evennia.commands.default.system.html @@ -373,7 +373,7 @@ given, <nr> defaults to 10.

    -aliases = ['db', 'listobjs', 'stats', 'listobjects']
    +aliases = ['db', 'stats', 'listobjs', 'listobjects']
    @@ -399,7 +399,7 @@ given, <nr> defaults to 10.

    -search_index_entry = {'aliases': 'db listobjs stats listobjects', 'category': 'system', 'key': 'objects', 'tags': '', 'text': '\n statistics on objects in the database\n\n Usage:\n objects [<nr>]\n\n Gives statictics on objects in database as well as\n a list of <nr> latest objects in database. If not\n given, <nr> defaults to 10.\n '}
    +search_index_entry = {'aliases': 'db stats listobjs listobjects', 'category': 'system', 'key': 'objects', 'tags': '', 'text': '\n statistics on objects in the database\n\n Usage:\n objects [<nr>]\n\n Gives statictics on objects in database as well as\n a list of <nr> latest objects in database. If not\n given, <nr> defaults to 10.\n '}
    diff --git a/docs/1.0-dev/api/evennia.commands.default.tests.html b/docs/1.0-dev/api/evennia.commands.default.tests.html index c3d6eb229e..5386cdcfc4 100644 --- a/docs/1.0-dev/api/evennia.commands.default.tests.html +++ b/docs/1.0-dev/api/evennia.commands.default.tests.html @@ -243,6 +243,16 @@ output sent to caller.msg in the game

    test_ic()[source]
    +
    +
    +test_ic__other_object()[source]
    +
    + +
    +
    +test_ic__nonaccess()[source]
    +
    +
    test_password()[source]
    diff --git a/docs/1.0-dev/api/evennia.commands.default.unloggedin.html b/docs/1.0-dev/api/evennia.commands.default.unloggedin.html index 2384ab0d5f..205b85db5c 100644 --- a/docs/1.0-dev/api/evennia.commands.default.unloggedin.html +++ b/docs/1.0-dev/api/evennia.commands.default.unloggedin.html @@ -58,7 +58,7 @@ connect “account name” “pass word”

    -aliases = ['con', 'conn', 'co']
    +aliases = ['conn', 'co', 'con']
    @@ -93,7 +93,7 @@ there is no object yet before the account has logged in)

    -search_index_entry = {'aliases': 'con conn co', 'category': 'general', 'key': 'connect', 'tags': '', 'text': '\n connect to the game\n\n Usage (at login screen):\n connect accountname password\n connect "account name" "pass word"\n\n Use the create command to first create an account before logging in.\n\n If you have spaces in your name, enclose it in double quotes.\n '}
    +search_index_entry = {'aliases': 'conn co con', 'category': 'general', 'key': 'connect', 'tags': '', 'text': '\n connect to the game\n\n Usage (at login screen):\n connect accountname password\n connect "account name" "pass word"\n\n Use the create command to first create an account before logging in.\n\n If you have spaces in your name, enclose it in double quotes.\n '}
    @@ -222,7 +222,7 @@ All it does is display the connect screen.

    -aliases = ['l', 'look']
    +aliases = ['look', 'l']
    @@ -248,7 +248,7 @@ All it does is display the connect screen.

    -search_index_entry = {'aliases': 'l look', 'category': 'general', 'key': '__unloggedin_look_command', 'tags': '', 'text': '\n look when in unlogged-in state\n\n Usage:\n look\n\n This is an unconnected version of the look command for simplicity.\n\n This is called by the server and kicks everything in gear.\n All it does is display the connect screen.\n '}
    +search_index_entry = {'aliases': 'look l', 'category': 'general', 'key': '__unloggedin_look_command', 'tags': '', 'text': '\n look when in unlogged-in state\n\n Usage:\n look\n\n This is an unconnected version of the look command for simplicity.\n\n This is called by the server and kicks everything in gear.\n All it does is display the connect screen.\n '}
    @@ -271,7 +271,7 @@ for simplicity. It shows a pane of info.

    -aliases = ['?', 'h']
    +aliases = ['h', '?']
    @@ -297,7 +297,7 @@ for simplicity. It shows a pane of info.

    -search_index_entry = {'aliases': '? h', 'category': 'general', 'key': 'help', 'tags': '', 'text': '\n get help when in unconnected-in state\n\n Usage:\n help\n\n This is an unconnected version of the help command,\n for simplicity. It shows a pane of info.\n '}
    +search_index_entry = {'aliases': 'h ?', 'category': 'general', 'key': 'help', 'tags': '', 'text': '\n get help when in unconnected-in state\n\n Usage:\n help\n\n This is an unconnected version of the help command,\n for simplicity. It shows a pane of info.\n '}
    diff --git a/docs/1.0-dev/api/evennia.comms.comms.html b/docs/1.0-dev/api/evennia.comms.comms.html index d6fd5282fd..c8c3686c5c 100644 --- a/docs/1.0-dev/api/evennia.comms.comms.html +++ b/docs/1.0-dev/api/evennia.comms.comms.html @@ -304,7 +304,8 @@ and senders keywords to create a Msg instance on the fly.

  • sender_strings (list, optional) – Name strings of senders. Used for external connections where the sender is not an account or object. -When this is defined, external will be assumed.

  • +When this is defined, external will be assumed. The list will be +filtered so each sender-string only occurs once.

  • keep_log (bool or None, optional) – This allows to temporarily change the logging status of this channel message. If None, the Channel’s keep_log Attribute will be used. If True or False, that logging status will be used for this diff --git a/docs/1.0-dev/api/evennia.contrib.barter.html b/docs/1.0-dev/api/evennia.contrib.barter.html index 00567e903e..22e526d726 100644 --- a/docs/1.0-dev/api/evennia.contrib.barter.html +++ b/docs/1.0-dev/api/evennia.contrib.barter.html @@ -680,7 +680,7 @@ try to influence the other part in the deal.

    -aliases = ['offers', 'deal']
    +aliases = ['deal', 'offers']
    @@ -706,7 +706,7 @@ try to influence the other part in the deal.

    -search_index_entry = {'aliases': 'offers deal', 'category': 'trading', 'key': 'status', 'tags': '', 'text': "\n show a list of the current deal\n\n Usage:\n status\n deal\n offers\n\n Shows the currently suggested offers on each sides of the deal. To\n accept the current deal, use the 'accept' command. Use 'offer' to\n change your deal. You might also want to use 'say', 'emote' etc to\n try to influence the other part in the deal.\n "}
    +search_index_entry = {'aliases': 'deal offers', 'category': 'trading', 'key': 'status', 'tags': '', 'text': "\n show a list of the current deal\n\n Usage:\n status\n deal\n offers\n\n Shows the currently suggested offers on each sides of the deal. To\n accept the current deal, use the 'accept' command. Use 'offer' to\n change your deal. You might also want to use 'say', 'emote' etc to\n try to influence the other part in the deal.\n "}
    diff --git a/docs/1.0-dev/api/evennia.contrib.chargen.html b/docs/1.0-dev/api/evennia.contrib.chargen.html index 391d73e823..8cd2b04cb4 100644 --- a/docs/1.0-dev/api/evennia.contrib.chargen.html +++ b/docs/1.0-dev/api/evennia.contrib.chargen.html @@ -76,7 +76,7 @@ at them with this command.

    -aliases = ['l', 'ls']
    +aliases = ['ls', 'l']
    @@ -108,7 +108,7 @@ that is checked by the @ic command directly.

    -search_index_entry = {'aliases': 'l ls', 'category': 'general', 'key': 'look', 'tags': '', 'text': '\n ooc look\n\n Usage:\n look\n look <character>\n\n This is an OOC version of the look command. Since an Account doesn\'t\n have an in-game existence, there is no concept of location or\n "self".\n\n If any characters are available for you to control, you may look\n at them with this command.\n '}
    +search_index_entry = {'aliases': 'ls l', 'category': 'general', 'key': 'look', 'tags': '', 'text': '\n ooc look\n\n Usage:\n look\n look <character>\n\n This is an OOC version of the look command. Since an Account doesn\'t\n have an in-game existence, there is no concept of location or\n "self".\n\n If any characters are available for you to control, you may look\n at them with this command.\n '}
    diff --git a/docs/1.0-dev/api/evennia.contrib.clothing.html b/docs/1.0-dev/api/evennia.contrib.clothing.html index f369d8279e..1b931ac304 100644 --- a/docs/1.0-dev/api/evennia.contrib.clothing.html +++ b/docs/1.0-dev/api/evennia.contrib.clothing.html @@ -627,7 +627,7 @@ inv

    -aliases = ['inv', 'i']
    +aliases = ['i', 'inv']
    @@ -658,7 +658,7 @@ inv

    -search_index_entry = {'aliases': 'inv i', 'category': 'general', 'key': 'inventory', 'tags': '', 'text': '\n view inventory\n\n Usage:\n inventory\n inv\n\n Shows your inventory.\n '}
    +search_index_entry = {'aliases': 'i inv', 'category': 'general', 'key': 'inventory', 'tags': '', 'text': '\n view inventory\n\n Usage:\n inventory\n inv\n\n Shows your inventory.\n '}
    diff --git a/docs/1.0-dev/api/evennia.contrib.dice.html b/docs/1.0-dev/api/evennia.contrib.dice.html index 7dfaa75c8d..5efa7026e9 100644 --- a/docs/1.0-dev/api/evennia.contrib.dice.html +++ b/docs/1.0-dev/api/evennia.contrib.dice.html @@ -148,7 +148,7 @@ everyone but the person rolling.

    -aliases = ['@dice', 'roll']
    +aliases = ['roll', '@dice']
    @@ -174,7 +174,7 @@ everyone but the person rolling.

    -search_index_entry = {'aliases': '@dice roll', 'category': 'general', 'key': 'dice', 'tags': '', 'text': "\n roll dice\n\n Usage:\n dice[/switch] <nr>d<sides> [modifier] [success condition]\n\n Switch:\n hidden - tell the room the roll is being done, but don't show the result\n secret - don't inform the room about neither roll nor result\n\n Examples:\n dice 3d6 + 4\n dice 1d100 - 2 < 50\n\n This will roll the given number of dice with given sides and modifiers.\n So e.g. 2d6 + 3 means to 'roll a 6-sided die 2 times and add the result,\n then add 3 to the total'.\n Accepted modifiers are +, -, * and /.\n A success condition is given as normal Python conditionals\n (<,>,<=,>=,==,!=). So e.g. 2d6 + 3 > 10 means that the roll will succeed\n only if the final result is above 8. If a success condition is given, the\n outcome (pass/fail) will be echoed along with how much it succeeded/failed\n with. The hidden/secret switches will hide all or parts of the roll from\n everyone but the person rolling.\n "}
    +search_index_entry = {'aliases': 'roll @dice', 'category': 'general', 'key': 'dice', 'tags': '', 'text': "\n roll dice\n\n Usage:\n dice[/switch] <nr>d<sides> [modifier] [success condition]\n\n Switch:\n hidden - tell the room the roll is being done, but don't show the result\n secret - don't inform the room about neither roll nor result\n\n Examples:\n dice 3d6 + 4\n dice 1d100 - 2 < 50\n\n This will roll the given number of dice with given sides and modifiers.\n So e.g. 2d6 + 3 means to 'roll a 6-sided die 2 times and add the result,\n then add 3 to the total'.\n Accepted modifiers are +, -, * and /.\n A success condition is given as normal Python conditionals\n (<,>,<=,>=,==,!=). So e.g. 2d6 + 3 > 10 means that the roll will succeed\n only if the final result is above 8. If a success condition is given, the\n outcome (pass/fail) will be echoed along with how much it succeeded/failed\n with. The hidden/secret switches will hide all or parts of the roll from\n everyone but the person rolling.\n "}
    diff --git a/docs/1.0-dev/api/evennia.contrib.email_login.html b/docs/1.0-dev/api/evennia.contrib.email_login.html index 2a49355590..f88cb9a66d 100644 --- a/docs/1.0-dev/api/evennia.contrib.email_login.html +++ b/docs/1.0-dev/api/evennia.contrib.email_login.html @@ -73,7 +73,7 @@ the module given by settings.CONNECTION_SCREEN_MODULE.

    -aliases = ['con', 'conn', 'co']
    +aliases = ['conn', 'co', 'con']
    @@ -103,7 +103,7 @@ there is no object yet before the account has logged in)

    -search_index_entry = {'aliases': 'con conn co', 'category': 'general', 'key': 'connect', 'tags': '', 'text': '\n Connect to the game.\n\n Usage (at login screen):\n connect <email> <password>\n\n Use the create command to first create an account before logging in.\n '}
    +search_index_entry = {'aliases': 'conn co con', 'category': 'general', 'key': 'connect', 'tags': '', 'text': '\n Connect to the game.\n\n Usage (at login screen):\n connect <email> <password>\n\n Use the create command to first create an account before logging in.\n '}
    @@ -225,7 +225,7 @@ All it does is display the connect screen.

    -aliases = ['l', 'look']
    +aliases = ['look', 'l']
    @@ -251,7 +251,7 @@ All it does is display the connect screen.

    -search_index_entry = {'aliases': 'l look', 'category': 'general', 'key': '__unloggedin_look_command', 'tags': '', 'text': '\n This is an unconnected version of the `look` command for simplicity.\n\n This is called by the server and kicks everything in gear.\n All it does is display the connect screen.\n '}
    +search_index_entry = {'aliases': 'look l', 'category': 'general', 'key': '__unloggedin_look_command', 'tags': '', 'text': '\n This is an unconnected version of the `look` command for simplicity.\n\n This is called by the server and kicks everything in gear.\n All it does is display the connect screen.\n '}
    @@ -269,7 +269,7 @@ for simplicity. It shows a pane of info.

    -aliases = ['?', 'h']
    +aliases = ['h', '?']
    @@ -295,7 +295,7 @@ for simplicity. It shows a pane of info.

    -search_index_entry = {'aliases': '? h', 'category': 'general', 'key': 'help', 'tags': '', 'text': '\n This is an unconnected version of the help command,\n for simplicity. It shows a pane of info.\n '}
    +search_index_entry = {'aliases': 'h ?', 'category': 'general', 'key': 'help', 'tags': '', 'text': '\n This is an unconnected version of the help command,\n for simplicity. It shows a pane of info.\n '}
    diff --git a/docs/1.0-dev/api/evennia.contrib.extended_room.html b/docs/1.0-dev/api/evennia.contrib.extended_room.html index dd35afee13..a8913ccfcd 100644 --- a/docs/1.0-dev/api/evennia.contrib.extended_room.html +++ b/docs/1.0-dev/api/evennia.contrib.extended_room.html @@ -275,7 +275,7 @@ look *<account&g
    -aliases = ['l', 'ls']
    +aliases = ['ls', 'l']
    @@ -295,7 +295,7 @@ look *<account&g
    -search_index_entry = {'aliases': 'l ls', 'category': 'general', 'key': 'look', 'tags': '', 'text': '\n look\n\n Usage:\n look\n look <obj>\n look <room detail>\n look *<account>\n\n Observes your location, details at your location or objects in your vicinity.\n '}
    +search_index_entry = {'aliases': 'ls l', 'category': 'general', 'key': 'look', 'tags': '', 'text': '\n look\n\n Usage:\n look\n look <obj>\n look <room detail>\n look *<account>\n\n Observes your location, details at your location or objects in your vicinity.\n '}
    diff --git a/docs/1.0-dev/api/evennia.contrib.html b/docs/1.0-dev/api/evennia.contrib.html index 4794541afd..d23ae91d3d 100644 --- a/docs/1.0-dev/api/evennia.contrib.html +++ b/docs/1.0-dev/api/evennia.contrib.html @@ -73,12 +73,16 @@ useful but are deemed too game-specific to go into the core library.

  • Adding Traits to a typeclass
  • Using traits
  • Trait types
  • -
  • Static trait
  • -
  • # Counter
  • -
  • ## .rate
  • -
  • ## .percentage()
  • -
  • # Gauge
  • -
  • # Trait
  • +
  • Static trait +
  • Expanding with your own Traits
  • diff --git a/docs/1.0-dev/api/evennia.contrib.ingame_python.commands.html b/docs/1.0-dev/api/evennia.contrib.ingame_python.commands.html index 954b0eceb7..dea2bf67fb 100644 --- a/docs/1.0-dev/api/evennia.contrib.ingame_python.commands.html +++ b/docs/1.0-dev/api/evennia.contrib.ingame_python.commands.html @@ -51,7 +51,7 @@
    -aliases = ['@callback', '@calls', '@callbacks']
    +aliases = ['@calls', '@callback', '@callbacks']
    @@ -132,7 +132,7 @@ on user permission.

    -search_index_entry = {'aliases': '@callback @calls @callbacks', 'category': 'building', 'key': '@call', 'tags': '', 'text': '\n Command to edit callbacks.\n '}
    +search_index_entry = {'aliases': '@calls @callback @callbacks', 'category': 'building', 'key': '@call', 'tags': '', 'text': '\n Command to edit callbacks.\n '}
    diff --git a/docs/1.0-dev/api/evennia.contrib.rpsystem.html b/docs/1.0-dev/api/evennia.contrib.rpsystem.html index 0ef3a20511..6a5135b0b2 100644 --- a/docs/1.0-dev/api/evennia.contrib.rpsystem.html +++ b/docs/1.0-dev/api/evennia.contrib.rpsystem.html @@ -635,7 +635,7 @@ a different language.

    -aliases = ["'", '"']
    +aliases = ['"', "'"]
    @@ -661,7 +661,7 @@ a different language.

    -search_index_entry = {'aliases': '\' "', 'category': 'general', 'key': 'say', 'tags': '', 'text': '\n speak as your character\n\n Usage:\n say <message>\n\n Talk to those in your current location.\n '}
    +search_index_entry = {'aliases': '" \'', 'category': 'general', 'key': 'say', 'tags': '', 'text': '\n speak as your character\n\n Usage:\n say <message>\n\n Talk to those in your current location.\n '}
    diff --git a/docs/1.0-dev/api/evennia.contrib.traits.html b/docs/1.0-dev/api/evennia.contrib.traits.html index 8012bc29e3..3a101ac213 100644 --- a/docs/1.0-dev/api/evennia.contrib.traits.html +++ b/docs/1.0-dev/api/evennia.contrib.traits.html @@ -147,9 +147,8 @@ that varies slowly or not at all, and which may be modified in-place.

    12
    -
    -

    # Counter

    +

    Counter

    min/unset base base+mod max/unset
    @@ -206,9 +205,8 @@ value.

    "expert"
    -
    -

    ## .rate

    +

    .rate

    The rate property defaults to 0. If set to a value different from 0, it allows the trait to change value dynamically. This could be used for example for an attribute that was temporarily lowered but will gradually (or abruptly) @@ -243,7 +241,7 @@ reaches the boundary) will likely also come out a float. If you expect an integer, you must run run int() on the result yourself.

    -

    ## .percentage()

    +

    .percentage()

    If both min and max are defined, the .percentage() method of the trait will return the value as a percentage.

    >>> obj.traits.hunting.percentage()
    @@ -251,8 +249,9 @@ return the value as a percentage.

    +
    -

    # Gauge

    +

    Gauge

    This emulates a [fuel-] gauge that empties from a base+mod value.

    @@ -289,7 +288,7 @@ increasing it. You can also use the .percentage() function to s as a percentage.

    -

    # Trait

    +

    Trait

    A single value of any type.

    This is the ‘base’ Trait, meant to inherit from if you want to make your own trait-types (see below). Its .value can be anything (that can be stored in an Attribute) @@ -304,6 +303,7 @@ acts just like a glorified Attribute.

    +

    Expanding with your own Traits

    A Trait is a class inhering from evennia.contrib.traits.Trait (or @@ -336,6 +336,7 @@ just add rage property get/setters/deleters on the class.

    30
    +
    exception evennia.contrib.traits.TraitException(msg)[source]
    @@ -871,12 +872,16 @@ returned.

  • Adding Traits to a typeclass
  • Using traits
  • Trait types
  • -
  • Static trait
  • -
  • # Counter
  • -
  • ## .rate
  • -
  • ## .percentage()
  • -
  • # Gauge
  • -
  • # Trait
  • +
  • Static trait +
  • Expanding with your own Traits
  • diff --git a/docs/1.0-dev/api/evennia.contrib.turnbattle.tb_range.html b/docs/1.0-dev/api/evennia.contrib.turnbattle.tb_range.html index e4dd28135c..9ed5f82fe0 100644 --- a/docs/1.0-dev/api/evennia.contrib.turnbattle.tb_range.html +++ b/docs/1.0-dev/api/evennia.contrib.turnbattle.tb_range.html @@ -437,7 +437,8 @@ to its roster and then sorts them into a turn order. There can only be one fight going on in a single room at a time, so the script is assigned to a room as its object.

    Fights persist until only one participant is left with any HP or all -remaining participants choose to end the combat with the ‘disengage’ command.

    +remaining participants choose to end the combat with the ‘disengage’ +command.

    at_script_creation()[source]
    diff --git a/docs/1.0-dev/api/evennia.contrib.tutorial_examples.cmdset_red_button.html b/docs/1.0-dev/api/evennia.contrib.tutorial_examples.cmdset_red_button.html index 0c5407606b..9793cbcafa 100644 --- a/docs/1.0-dev/api/evennia.contrib.tutorial_examples.cmdset_red_button.html +++ b/docs/1.0-dev/api/evennia.contrib.tutorial_examples.cmdset_red_button.html @@ -109,7 +109,7 @@ push the lid of the button away.

    -aliases = ['push', 'press', 'press button']
    +aliases = ['press button', 'push', 'press']
    @@ -140,7 +140,7 @@ lid-state respectively.

    -search_index_entry = {'aliases': 'push press press button', 'category': 'general', 'key': 'push button', 'tags': '', 'text': '\n Push the red button\n\n Usage:\n push button\n\n '}
    +search_index_entry = {'aliases': 'press button push press', 'category': 'general', 'key': 'push button', 'tags': '', 'text': '\n Push the red button\n\n Usage:\n push button\n\n '}
    @@ -210,7 +210,7 @@ of causing the lamp to break.

    -aliases = ['open button', 'open']
    +aliases = ['open', 'open button']
    @@ -236,7 +236,7 @@ of causing the lamp to break.

    -search_index_entry = {'aliases': 'open button open', 'category': 'general', 'key': 'open lid', 'tags': '', 'text': '\n open lid\n\n Usage:\n open lid\n\n '}
    +search_index_entry = {'aliases': 'open open button', 'category': 'general', 'key': 'open lid', 'tags': '', 'text': '\n open lid\n\n Usage:\n open lid\n\n '}
    @@ -306,7 +306,7 @@ of causing the lamp to break.

    -aliases = ['examine', 'l', 'get', 'listen', 'feel', 'ex']
    +aliases = ['feel', 'examine', 'ex', 'l', 'listen', 'get']
    @@ -332,7 +332,7 @@ of causing the lamp to break.

    -search_index_entry = {'aliases': 'examine l get listen feel ex', 'category': 'general', 'key': 'look', 'tags': '', 'text': "\n Looking around in darkness\n\n Usage:\n look <obj>\n\n ... not that there's much to see in the dark.\n\n "}
    +search_index_entry = {'aliases': 'feel examine ex l listen get', 'category': 'general', 'key': 'look', 'tags': '', 'text': "\n Looking around in darkness\n\n Usage:\n look <obj>\n\n ... not that there's much to see in the dark.\n\n "}
    diff --git a/docs/1.0-dev/api/evennia.contrib.tutorial_world.objects.html b/docs/1.0-dev/api/evennia.contrib.tutorial_world.objects.html index 885946e904..8af43851cd 100644 --- a/docs/1.0-dev/api/evennia.contrib.tutorial_world.objects.html +++ b/docs/1.0-dev/api/evennia.contrib.tutorial_world.objects.html @@ -360,7 +360,7 @@ of the object. We overload it with our own version.

    -aliases = ['burn', 'light']
    +aliases = ['light', 'burn']
    @@ -387,7 +387,7 @@ to sit on a “lightable” object, we operate only on self.obj.

    -search_index_entry = {'aliases': 'burn light', 'category': 'tutorialworld', 'key': 'on', 'tags': '', 'text': '\n Creates light where there was none. Something to burn.\n '}
    +search_index_entry = {'aliases': 'light burn', 'category': 'tutorialworld', 'key': 'on', 'tags': '', 'text': '\n Creates light where there was none. Something to burn.\n '}
    @@ -491,7 +491,7 @@ shift green root up/down

    -aliases = ['shiftroot', 'push', 'pull', 'move']
    +aliases = ['shiftroot', 'push', 'move', 'pull']
    @@ -527,7 +527,7 @@ yellow/green - horizontal roots

    -search_index_entry = {'aliases': 'shiftroot push pull move', 'category': 'tutorialworld', 'key': 'shift', 'tags': '', 'text': '\n Shifts roots around.\n\n Usage:\n shift blue root left/right\n shift red root left/right\n shift yellow root up/down\n shift green root up/down\n\n '}
    +search_index_entry = {'aliases': 'shiftroot push move pull', 'category': 'tutorialworld', 'key': 'shift', 'tags': '', 'text': '\n Shifts roots around.\n\n Usage:\n shift blue root left/right\n shift red root left/right\n shift yellow root up/down\n shift green root up/down\n\n '}
    @@ -544,7 +544,7 @@ yellow/green - horizontal roots

    -aliases = ['push button', 'button', 'press button']
    +aliases = ['button', 'press button', 'push button']
    @@ -570,7 +570,7 @@ yellow/green - horizontal roots

    -search_index_entry = {'aliases': 'push button button press button', 'category': 'tutorialworld', 'key': 'press', 'tags': '', 'text': '\n Presses a button.\n '}
    +search_index_entry = {'aliases': 'button press button push button', 'category': 'tutorialworld', 'key': 'press', 'tags': '', 'text': '\n Presses a button.\n '}
    @@ -714,7 +714,7 @@ parry - forgoes your attack but will make you harder to hit on next

    -aliases = ['thrust', 'defend', 'parry', 'pierce', 'slash', 'fight', 'kill', 'hit', 'stab', 'chop']
    +aliases = ['pierce', 'kill', 'hit', 'slash', 'fight', 'thrust', 'stab', 'parry', 'chop', 'defend']
    @@ -740,7 +740,7 @@ parry - forgoes your attack but will make you harder to hit on next

    -search_index_entry = {'aliases': 'thrust defend parry pierce slash fight kill hit stab chop', 'category': 'tutorialworld', 'key': 'attack', 'tags': '', 'text': '\n Attack the enemy. Commands:\n\n stab <enemy>\n slash <enemy>\n parry\n\n stab - (thrust) makes a lot of damage but is harder to hit with.\n slash - is easier to land, but does not make as much damage.\n parry - forgoes your attack but will make you harder to hit on next\n enemy attack.\n\n '}
    +search_index_entry = {'aliases': 'pierce kill hit slash fight thrust stab parry chop defend', 'category': 'tutorialworld', 'key': 'attack', 'tags': '', 'text': '\n Attack the enemy. Commands:\n\n stab <enemy>\n slash <enemy>\n parry\n\n stab - (thrust) makes a lot of damage but is harder to hit with.\n slash - is easier to land, but does not make as much damage.\n parry - forgoes your attack but will make you harder to hit on next\n enemy attack.\n\n '}
    diff --git a/docs/1.0-dev/api/evennia.contrib.tutorial_world.rooms.html b/docs/1.0-dev/api/evennia.contrib.tutorial_world.rooms.html index 9c378c71e3..c48aea231d 100644 --- a/docs/1.0-dev/api/evennia.contrib.tutorial_world.rooms.html +++ b/docs/1.0-dev/api/evennia.contrib.tutorial_world.rooms.html @@ -183,7 +183,7 @@ code except for adding in the details.

    -aliases = ['l', 'ls']
    +aliases = ['ls', 'l']
    @@ -198,7 +198,7 @@ code except for adding in the details.

    -search_index_entry = {'aliases': 'l ls', 'category': 'tutorialworld', 'key': 'look', 'tags': '', 'text': '\n looks at the room and on details\n\n Usage:\n look <obj>\n look <room detail>\n look *<account>\n\n Observes your location, details at your location or objects\n in your vicinity.\n\n Tutorial: This is a child of the default Look command, that also\n allows us to look at "details" in the room. These details are\n things to examine and offers some extra description without\n actually having to be actual database objects. It uses the\n return_detail() hook on TutorialRooms for this.\n '}
    +search_index_entry = {'aliases': 'ls l', 'category': 'tutorialworld', 'key': 'look', 'tags': '', 'text': '\n looks at the room and on details\n\n Usage:\n look <obj>\n look <room detail>\n look *<account>\n\n Observes your location, details at your location or objects\n in your vicinity.\n\n Tutorial: This is a child of the default Look command, that also\n allows us to look at "details" in the room. These details are\n things to examine and offers some extra description without\n actually having to be actual database objects. It uses the\n return_detail() hook on TutorialRooms for this.\n '}
    @@ -602,7 +602,7 @@ if they fall off the bridge.

    -aliases = ['?', 'h']
    +aliases = ['h', '?']
    @@ -628,7 +628,7 @@ if they fall off the bridge.

    -search_index_entry = {'aliases': '? h', 'category': 'tutorial world', 'key': 'help', 'tags': '', 'text': '\n Overwritten help command while on the bridge.\n '}
    +search_index_entry = {'aliases': 'h ?', 'category': 'tutorial world', 'key': 'help', 'tags': '', 'text': '\n Overwritten help command while on the bridge.\n '}
    @@ -754,7 +754,7 @@ to find something.

    -aliases = ['fiddle', 'search', 'l', 'feel around', 'feel']
    +aliases = ['feel', 'search', 'feel around', 'l', 'fiddle']
    @@ -782,7 +782,7 @@ random chance of eventually finding a light source.

    -search_index_entry = {'aliases': 'fiddle search l feel around feel', 'category': 'tutorialworld', 'key': 'look', 'tags': '', 'text': '\n Look around in darkness\n\n Usage:\n look\n\n Look around in the darkness, trying\n to find something.\n '}
    +search_index_entry = {'aliases': 'feel search feel around l fiddle', 'category': 'tutorialworld', 'key': 'look', 'tags': '', 'text': '\n Look around in darkness\n\n Usage:\n look\n\n Look around in the darkness, trying\n to find something.\n '}
    diff --git a/docs/1.0-dev/api/evennia.html b/docs/1.0-dev/api/evennia.html index 92893f6f24..cb465c7716 100644 --- a/docs/1.0-dev/api/evennia.html +++ b/docs/1.0-dev/api/evennia.html @@ -240,12 +240,16 @@ with ‘q’, remove the break line and restart server when finished.

  • Adding Traits to a typeclass
  • Using traits
  • Trait types
  • -
  • Static trait
  • -
  • # Counter
  • -
  • ## .rate
  • -
  • ## .percentage()
  • -
  • # Gauge
  • -
  • # Trait
  • +
  • Static trait +
  • Expanding with your own Traits
  • diff --git a/docs/1.0-dev/api/evennia.objects.objects.html b/docs/1.0-dev/api/evennia.objects.objects.html index 5d5a324463..19649348da 100644 --- a/docs/1.0-dev/api/evennia.objects.objects.html +++ b/docs/1.0-dev/api/evennia.objects.objects.html @@ -335,8 +335,7 @@ the keyword attribute_name specifies otherwise.

    -
  • global_search (bool) – Search all objects globally. This is overruled -by location keyword.

  • +
  • global_search (bool) – Search all objects globally. This overrules ‘location’ data.

  • use_nicks (bool) – Use nickname-replace (nicktype “object”) on searchdata.

  • typeclass (str or Typeclass, or list of either) – Limit search only to Objects with this typeclass. May be a list of typeclasses @@ -1477,7 +1476,7 @@ a character avatar controlled by an account.

    -classmethod create(key, account, **kwargs)[source]
    +classmethod create(key, account=None, **kwargs)[source]

    Creates a basic Character with default parameters, unless otherwise specified or extended.

    Provides a friendlier interface to the utils.create_character() function.

    @@ -1485,8 +1484,8 @@ specified or extended.

    Parameters
    • key (str) – Name of the new Character.

    • -
    • account (obj) – Account to associate this Character with. Required as -an argument, but one can fake it out by supplying None– it will +

    • account (obj, optional) – Account to associate this Character with. +If unset supplying None– it will change the default lockset and skip creator attribution.

    @@ -1651,7 +1650,7 @@ location is always None.

    -classmethod create(key, account, **kwargs)[source]
    +classmethod create(key, account=None, **kwargs)[source]

    Creates a basic Room with default parameters, unless otherwise specified or extended.

    Provides a friendlier interface to the utils.create_object() function.

    @@ -1659,7 +1658,9 @@ specified or extended.

    Parameters
    • key (str) – Name of the new Room.

    • -
    • account (obj) – Account to associate this Room with.

    • +
    • account (obj, optional) – Account to associate this Room with. If +given, it will be given specific control/edit permissions to this +object (along with normal Admin perms). If not given, default

    Keyword Arguments
    @@ -1811,7 +1812,7 @@ exit’s name, triggering the movement between rooms.

    -classmethod create(key, account, source, dest, **kwargs)[source]
    +classmethod create(key, source, dest, account=None, **kwargs)[source]

    Creates a basic Exit with default parameters, unless otherwise specified or extended.

    Provides a friendlier interface to the utils.create_object() function.

    diff --git a/docs/1.0-dev/api/evennia.typeclasses.attributes.html b/docs/1.0-dev/api/evennia.typeclasses.attributes.html index 2c8ebec963..6f2ae5df6b 100644 --- a/docs/1.0-dev/api/evennia.typeclasses.attributes.html +++ b/docs/1.0-dev/api/evennia.typeclasses.attributes.html @@ -1041,14 +1041,17 @@ will be exited.

  • repeat-calling add when having many Attributes to add.

    Parameters
    -

    *args (tuple) –

    Tuples of varying length representing the -Attribute to add to this object. Supported tuples are

    -
      -
    • (key, value)

    • -
    • (key, value, category)

    • -
    • (key, value, category, lockstring)

    • -
    • (key, value, category, lockstring, default_access)

    • +

      *args (tuple) –

      Each argument should be a tuples (can be of varying +length) representing the Attribute to add to this object. +Supported tuples are

      +
      +
        +
      • (key, value)

      • +
      • (key, value, category)

      • +
      • (key, value, category, lockstring)

      • +
      • (key, value, category, lockstring, default_access)

      +

      Keyword Arguments
      diff --git a/docs/1.0-dev/api/evennia.typeclasses.tags.html b/docs/1.0-dev/api/evennia.typeclasses.tags.html index 1cc059cade..456cd6ab3e 100644 --- a/docs/1.0-dev/api/evennia.typeclasses.tags.html +++ b/docs/1.0-dev/api/evennia.typeclasses.tags.html @@ -58,7 +58,7 @@ limited in what data it can hold, and the tag key+category is indexed for efficient lookup in the database. Tags are shared between objects - a new tag is only created if the key+category combination did not previously exist, making them unsuitable for -storing object-related data (for this a full tag should be +storing object-related data (for this a regular Attribute should be used).

      The ‘db_data’ field is intended as a documentation field for the tag itself, such as to document what this tag+category stands for @@ -363,8 +363,8 @@ tuples [(key, category), …].

      Batch-add tags from a list of tuples.

      Parameters
      -

      tuples (tuple or str) – Any number of tagstr keys, (keystr, category) or -(keystr, category, data) tuples.

      +

      *args (tuple or str) – Each argument should be a tagstr keys or tuple (keystr, category) or +(keystr, category, data). It’s possible to mix input types.

      Notes

      diff --git a/docs/1.0-dev/api/evennia.utils.create.html b/docs/1.0-dev/api/evennia.utils.create.html index 8a3c2b5f8b..b83ff20a01 100644 --- a/docs/1.0-dev/api/evennia.utils.create.html +++ b/docs/1.0-dev/api/evennia.utils.create.html @@ -132,7 +132,7 @@ scripts in the database.

      -evennia.utils.create.create_help_entry(key, entrytext, category='General', locks=None, aliases=None)[source]
      +evennia.utils.create.create_help_entry(key, entrytext, category='General', locks=None, aliases=None, tags=None)[source]

      Create a static help entry in the help database. Note that Command help entries are dynamic and directly taken from the __doc__ entries of the command. The database-stored help entries are @@ -145,7 +145,8 @@ in-game setting information and so on.

    • entrytext (str) – The body of te help entry

    • category (str, optional) – The help category of the entry.

    • locks (str, optional) – A lockstring to restrict access.

    • -
    • aliases (list of str) – List of alternative (likely shorter) keynames.

    • +
    • aliases (list of str, optional) – List of alternative (likely shorter) keynames.

    • +
    • tags (lst, optional) – List of tags or tuples (tag, category).

    Returns
    @@ -156,7 +157,7 @@ in-game setting information and so on.

    -evennia.utils.create.create_message(senderobj, message, channels=None, receivers=None, locks=None, header=None)[source]
    +evennia.utils.create.create_message(senderobj, message, channels=None, receivers=None, locks=None, tags=None, header=None)[source]

    Create a new communication Msg. Msgs represent a unit of database-persistent communication between entites.

    @@ -172,6 +173,7 @@ unique key strings.

  • receivers (Object, Account, str or list) – An Account/Object to send to, or a list of them. May be Account objects or accountnames.

  • locks (str) – Lock definition string.

  • +
  • tags (list) – A list of tags or tuples (tag, category).

  • header (str) – Mime-type or other optional information for the message

  • @@ -185,7 +187,7 @@ limit this as desired.

    -evennia.utils.create.create_channel(key, aliases=None, desc=None, locks=None, keep_log=True, typeclass=None)[source]
    +evennia.utils.create.create_channel(key, aliases=None, desc=None, locks=None, keep_log=True, typeclass=None, tags=None)[source]

    Create A communication Channel. A Channel serves as a central hub for distributing Msgs to groups of people without specifying the receivers explicitly. Instead accounts may ‘connect’ to the channel @@ -204,6 +206,7 @@ keep_log switch.

  • keep_log (bool) – Log channel throughput.

  • typeclass (str or class) – The typeclass of the Channel (not often used).

  • +
  • tags (list) – A list of tags or tuples (tag, category).

  • Returns
    diff --git a/docs/1.0-dev/api/evennia.utils.eveditor.html b/docs/1.0-dev/api/evennia.utils.eveditor.html index 8585bc3565..48f579b9b5 100644 --- a/docs/1.0-dev/api/evennia.utils.eveditor.html +++ b/docs/1.0-dev/api/evennia.utils.eveditor.html @@ -273,7 +273,7 @@ indentation.

    -aliases = [':q', ':UU', ':x', ':', ':j', ':A', ':u', ':y', ':s', ':>', ':DD', ':!', ':<', ':wq', ':dw', ':r', ':fd', ':f', ':h', ':p', ':I', '::', ':uu', ':q!', ':fi', ':S', ':i', ':::', ':=', ':w', ':dd', ':echo']
    +aliases = [':', ':::', ':>', ':echo', ':<', ':r', ':s', ':fi', ':UU', ':x', ':y', ':uu', ':dd', ':p', ':!', ':u', ':I', ':h', ':S', ':w', ':q', ':wq', ':j', ':A', ':fd', ':f', ':DD', ':dw', '::', ':i', ':q!', ':=']
    @@ -301,7 +301,7 @@ efficient presentation.

    -search_index_entry = {'aliases': ':q :UU :x : :j :A :u :y :s :> :DD :! :< :wq :dw :r :fd :f :h :p :I :: :uu :q! :fi :S :i ::: := :w :dd :echo', 'category': 'general', 'key': ':editor_command_group', 'tags': '', 'text': '\n Commands for the editor\n '}
    +search_index_entry = {'aliases': ': ::: :> :echo :< :r :s :fi :UU :x :y :uu :dd :p :! :u :I :h :S :w :q :wq :j :A :fd :f :DD :dw :: :i :q! :=', 'category': 'general', 'key': ':editor_command_group', 'tags': '', 'text': '\n Commands for the editor\n '}
    diff --git a/docs/1.0-dev/api/evennia.utils.evmore.html b/docs/1.0-dev/api/evennia.utils.evmore.html index 6e2644e951..902d952a33 100644 --- a/docs/1.0-dev/api/evennia.utils.evmore.html +++ b/docs/1.0-dev/api/evennia.utils.evmore.html @@ -74,7 +74,7 @@ the caller.msg() construct every time the page is updated.

    -aliases = ['t', 'quit', 'e', 'top', 'next', 'back', 'a', 'b', 'end', 'abort', 'n', 'q']
    +aliases = ['abort', 'top', 'n', 'q', 't', 'a', 'back', 'e', 'next', 'b', 'quit', 'end']
    @@ -100,7 +100,7 @@ the caller.msg() construct every time the page is updated.

    -search_index_entry = {'aliases': 't quit e top next back a b end abort n q', 'category': 'general', 'key': '__noinput_command', 'tags': '', 'text': '\n Manipulate the text paging\n '}
    +search_index_entry = {'aliases': 'abort top n q t a back e next b quit end', 'category': 'general', 'key': '__noinput_command', 'tags': '', 'text': '\n Manipulate the text paging\n '}
    diff --git a/docs/1.0-dev/api/evennia.utils.inlinefuncs.html b/docs/1.0-dev/api/evennia.utils.inlinefuncs.html index ff93e58939..9de360c27e 100644 --- a/docs/1.0-dev/api/evennia.utils.inlinefuncs.html +++ b/docs/1.0-dev/api/evennia.utils.inlinefuncs.html @@ -89,6 +89,33 @@ error message.

    blocks, will lead to the entire string remaining unparsed. Inlineparsing should never traceback.


    +
    +
    +evennia.utils.inlinefuncs.random(*args, **kwargs)[source]
    +

    Inlinefunc. Returns a random number between +0 and 1, from 0 to a maximum value, or within a given range (inclusive).

    +
    +
    Parameters
    +
      +
    • minval (str, optional) – Minimum value. If not given, assumed 0.

    • +
    • maxval (str, optional) – Maximum value.

    • +
    +
    +
    +
    +
    Keyword argumuents:

    session (Session): Session getting the string.

    +
    +
    +

    Notes

    +

    If either of the min/maxvalue has a ‘.’ in it, a floating-point random +value will be returned. Otherwise it will be an integer value in the +given range.

    +

    Example

    +

    $random() +$random(5) +$random(5, 10)

    +
    +
    evennia.utils.inlinefuncs.pad(*args, **kwargs)[source]
    @@ -100,7 +127,8 @@ never traceback.

  • width (str, optional) – Will be converted to integer. Width of padding.

  • align (str, optional) – Alignment of padding; one of ‘c’, ‘l’ or ‘r’.

  • -
  • fillchar (str, optional) – Character used for padding. Defaults to a space.

  • +
  • fillchar (str, optional) – Character used for padding. Defaults to a +space.

  • Keyword Arguments
    @@ -242,6 +270,17 @@ it. It is passed to the inlinefunc.

    +
    +
    +evennia.utils.inlinefuncs.raw(string)[source]
    +

    Escape all inlinefuncs in a string so they won’t get parsed.

    +
    +
    Parameters
    +

    string (str) – String with inlinefuncs to escape.

    +
    +
    +
    +
    exception evennia.utils.inlinefuncs.NickTemplateInvalid[source]
    diff --git a/docs/1.0-dev/api/evennia.utils.utils.html b/docs/1.0-dev/api/evennia.utils.utils.html index dfb36ef4ca..1d8ea8143e 100644 --- a/docs/1.0-dev/api/evennia.utils.utils.html +++ b/docs/1.0-dev/api/evennia.utils.utils.html @@ -230,15 +230,50 @@ Defaults to client’s default width.

    -
    -evennia.utils.utils.list_to_string(inlist, endsep='and', addquote=False)[source]
    -

    This pretty-formats a list as string output, adding an optional +

    +evennia.utils.utils.iter_to_string(initer, endsep='and', addquote=False)[source]
    +

    This pretty-formats an iterable list as string output, adding an optional alternative separator to the second to last entry. If addquote is True, the outgoing strings will be surrounded by quotes.

    Parameters
      -
    • inlist (list) – The list to print.

    • +
    • initer (any) – Usually an iterable to print. Each element must be possible to +present with a string. Note that if this is a generator, it will be +consumed by this operation.

    • +
    • endsep (str, optional) – If set, the last item separator will +be replaced with this value.

    • +
    • addquote (bool, optional) – This will surround all outgoing +values with double quotes.

    • +
    +
    +
    Returns
    +

    str – The list represented as a string.

    +
    +
    +

    Examples

    +
    >>> list_to_string([1,2,3], endsep='')
    +'1, 2, 3'
    +>>> list_to_string([1,2,3], ensdep='and')
    +'1, 2 and 3'
    +>>> list_to_string([1,2,3], endsep='and', addquote=True)
    +'"1", "2" and "3"'
    +
    +
    +
    + +
    +
    +evennia.utils.utils.list_to_string(initer, endsep='and', addquote=False)
    +

    This pretty-formats an iterable list as string output, adding an optional +alternative separator to the second to last entry. If addquote +is True, the outgoing strings will be surrounded by quotes.

    +
    +
    Parameters
    +
      +
    • initer (any) – Usually an iterable to print. Each element must be possible to +present with a string. Note that if this is a generator, it will be +consumed by this operation.

    • endsep (str, optional) – If set, the last item separator will be replaced with this value.

    • addquote (bool, optional) – This will surround all outgoing @@ -543,18 +578,14 @@ falling back to settings.ENCODINGS.

    • evennia.utils.utils.validate_email_address(emailaddress)[source]
      -

      Checks if an email address is syntactically correct.

      +

      Checks if an email address is syntactically correct. Makes use +of the django email-validator for consistency.

      Parameters

      emailaddress (str) – Email address to validate.

      Returns
      -

      is_valid (bool) – If this is a valid email or not.

      -
      -
      -
      -
      Notes.

      (This snippet was adapted from -http://commandline.org.uk/python/email-syntax-check.)

      +

      bool – If this is a valid email or not.

      @@ -1254,7 +1285,7 @@ print the caller of the caller etc.

      back to normal len for other objects.

      Parameters
      -

      target (string) – A string with potential MXP components +

      target (str) – A string with potential MXP components to search.

      Returns
      @@ -1263,6 +1294,23 @@ to search.

    +
    +
    +evennia.utils.utils.display_len(target)[source]
    +

    Calculate the ‘visible width’ of text. This is not necessarily the same as the +number of characters in the case of certain asian characters. This will also +strip MXP patterns.

    +
    +
    Parameters
    +

    target (any) – Something to measure the length of. If a string, it will be +measured keeping asian-character and MXP links in mind.

    +
    +
    Returns
    +

    int – The visible width of the target.

    +
    +
    +
    +
    evennia.utils.utils.at_search_result(matches, caller, query='', quiet=False, **kwargs)[source]
    diff --git a/docs/1.0-dev/genindex.html b/docs/1.0-dev/genindex.html index e52aa297be..3125d295eb 100644 --- a/docs/1.0-dev/genindex.html +++ b/docs/1.0-dev/genindex.html @@ -1203,6 +1203,8 @@
  • ANSIString (class in evennia.utils.ansi)
  • ANSITextWrapper (class in evennia.utils.evtable) +
  • +
  • app_label (evennia.accounts.admin.AccountForm.Meta attribute)
  • append() (evennia.locks.lockhandler.LockHandler method) @@ -3397,6 +3399,8 @@
  • create_channel() (in module evennia.utils.create)
  • create_channels() (in module evennia.server.initial_setup) +
  • +
  • create_character() (evennia.accounts.accounts.DefaultAccount method)
  • create_delays() (evennia.scripts.taskhandler.TaskHandler method)
  • @@ -3838,8 +3842,6 @@
  • DEF_DOWN_MOD (in module evennia.contrib.turnbattle.tb_items)
  • -
    +
  • detail_color (evennia.commands.default.building.CmdExamine attribute) +
  • DiceCmdSet (class in evennia.contrib.dice)
  • directions (evennia.commands.default.building.CmdTunnel attribute) @@ -4104,6 +4110,8 @@
  • (evennia.utils.evmenu.EvMenu method)
  • +
  • display_len() (in module evennia.utils.utils) +
  • display_meter() (in module evennia.contrib.health_bar)
  • display_nodetext() (evennia.utils.evmenu.EvMenu method) @@ -7372,6 +7380,8 @@
  • has_permission() (evennia.web.api.permissions.EvenniaPermission method)
  • header() (evennia.comms.models.Msg property) +
  • +
  • header_color (evennia.commands.default.building.CmdExamine attribute)
  • hello() (in module evennia.server.inputfuncs)
  • @@ -8210,6 +8220,8 @@
  • itemfunc_heal() (in module evennia.contrib.turnbattle.tb_items)
  • ITEMFUNCS (in module evennia.contrib.turnbattle.tb_items) +
  • +
  • iter_to_string() (in module evennia.utils.utils)
  • @@ -10867,7 +10879,11 @@
  • nested_re (evennia.commands.default.building.CmdSetAttribute attribute)
  • new_obj_lockstring (evennia.commands.default.building.CmdCreate attribute) + +
  • new_room_lockstring (evennia.commands.default.building.CmdDig attribute)
  • next_turn() (evennia.contrib.turnbattle.tb_basic.TBBasicTurnHandler method) @@ -10923,11 +10939,11 @@
  • no_mssp() (evennia.server.portal.mssp.Mssp method)
  • no_mxp() (evennia.server.portal.mxp.Mxp method) -
  • -
  • no_naws() (evennia.server.portal.naws.Naws method)
    • +
    • no_naws() (evennia.server.portal.naws.Naws method) +
    • no_objs (evennia.commands.cmdset.CmdSet attribute)
        @@ -11900,6 +11916,8 @@

        Q

          +
        • test_set_attribute() (evennia.web.api.tests.TestEvenniaRESTApi method) +
        • test_set_game_name_and_slogan() (evennia.web.utils.tests.TestGeneralContext method)
        • test_set_help() (evennia.commands.default.tests.TestHelp method) @@ -15209,6 +15239,8 @@
        • use_item() (in module evennia.contrib.turnbattle.tb_items)
        • use_ssl (evennia.contrib.awsstorage.aws_s3_cdn.S3Boto3Storage attribute) +
        • +
        • user_change_password() (evennia.accounts.admin.AccountDBAdmin method)
        • user_permissions (evennia.accounts.models.AccountDB attribute)
        • diff --git a/docs/1.0-dev/objects.inv b/docs/1.0-dev/objects.inv index 847ae17e08..516679df1b 100644 Binary files a/docs/1.0-dev/objects.inv and b/docs/1.0-dev/objects.inv differ diff --git a/docs/1.0-dev/searchindex.js b/docs/1.0-dev/searchindex.js index 2a3a956535..c28bff2424 100644 --- a/docs/1.0-dev/searchindex.js +++ b/docs/1.0-dev/searchindex.js @@ -1 +1 @@ -Search.setIndex({docnames:["Coding/Coding-Introduction","Coding/Coding-Overview","Coding/Continuous-Integration","Coding/Debugging","Coding/Flat-API","Coding/Profiling","Coding/Quirks","Coding/Setting-up-PyCharm","Coding/Unit-Testing","Coding/Updating-Your-Game","Coding/Using-Travis","Coding/Version-Control","Components/Accounts","Components/Attributes","Components/Batch-Code-Processor","Components/Batch-Command-Processor","Components/Batch-Processors","Components/Bootstrap-Components-and-Utilities","Components/Channels","Components/Coding-Utils","Components/Command-Sets","Components/Command-System","Components/Commands","Components/Communications","Components/Components-Overview","Components/Connection-Screen","Components/EvEditor","Components/EvMenu","Components/EvMore","Components/Help-System","Components/Inputfuncs","Components/Locks","Components/MonitorHandler","Components/Nicks","Components/Objects","Components/Outputfuncs","Components/Portal-And-Server","Components/Scripts","Components/Server","Components/Server-Conf","Components/Sessions","Components/Signals","Components/Spawner-and-Prototypes","Components/Tags","Components/TickerHandler","Components/Typeclasses","Components/Webclient","Components/Webserver","Concepts/Async-Process","Concepts/Banning","Concepts/Bootstrap-&-Evennia","Concepts/Building-Permissions","Concepts/Concepts-Overview","Concepts/Custom-Protocols","Concepts/Guest-Logins","Concepts/Internationalization","Concepts/Messagepath","Concepts/Multisession-modes","Concepts/New-Models","Concepts/OOB","Concepts/Soft-Code","Concepts/Text-Encodings","Concepts/TextTags","Concepts/Using-MUX-as-a-Standard","Concepts/Web-Features","Concepts/Zones","Contribs/A-voice-operated-elevator-using-events","Contribs/Arxcode-installing-help","Contribs/Building-menus","Contribs/Contrib-Overview","Contribs/Dialogues-in-events","Contribs/Dynamic-In-Game-Map","Contribs/Static-In-Game-Map","Contributing","Contributing-Docs","Evennia-API","Evennia-Introduction","Glossary","How-To-Get-And-Give-Help","Howto/Add-a-wiki-on-your-website","Howto/Building-a-mech-tutorial","Howto/Coding-FAQ","Howto/Command-Cooldown","Howto/Command-Duration","Howto/Command-Prompt","Howto/Coordinates","Howto/Customize-channels","Howto/Default-Exit-Errors","Howto/Evennia-for-Diku-Users","Howto/Evennia-for-MUSH-Users","Howto/Evennia-for-roleplaying-sessions","Howto/Gametime-Tutorial","Howto/Help-System-Tutorial","Howto/Howto-Overview","Howto/Manually-Configuring-Color","Howto/Mass-and-weight-for-objects","Howto/NPC-shop-Tutorial","Howto/Parsing-commands-tutorial","Howto/Starting/Part1/Adding-Commands","Howto/Starting/Part1/Building-Quickstart","Howto/Starting/Part1/Creating-Things","Howto/Starting/Part1/Django-queries","Howto/Starting/Part1/Evennia-Library-Overview","Howto/Starting/Part1/Gamedir-Overview","Howto/Starting/Part1/Learning-Typeclasses","Howto/Starting/Part1/More-on-Commands","Howto/Starting/Part1/Python-basic-introduction","Howto/Starting/Part1/Python-classes-and-objects","Howto/Starting/Part1/Searching-Things","Howto/Starting/Part1/Tutorial-World-Introduction","Howto/Starting/Part2/Game-Planning","Howto/Starting/Part2/Some-Useful-Contribs","Howto/Starting/Part3/Implementing-a-game-rule-system","Howto/Starting/Part3/Turn-based-Combat-System","Howto/Starting/Part3/Tutorial-for-basic-MUSH-like-game","Howto/Starting/Part5/Add-a-simple-new-web-page","Howto/Starting/Part5/Web-Tutorial","Howto/Starting/Starting-Part1","Howto/Starting/Starting-Part2","Howto/Starting/Starting-Part3","Howto/Starting/Starting-Part4","Howto/Starting/Starting-Part5","Howto/Tutorial-Aggressive-NPCs","Howto/Tutorial-NPCs-listening","Howto/Tutorial-Tweeting-Game-Stats","Howto/Tutorial-Vehicles","Howto/Understanding-Color-Tags","Howto/Weather-Tutorial","Howto/Web-Character-Generation","Howto/Web-Character-View-Tutorial","Licensing","Links","Setup/Apache-Config","Setup/Choosing-An-SQL-Server","Setup/Client-Support-Grid","Setup/Evennia-Game-Index","Setup/Extended-Installation","Setup/Grapevine","Setup/HAProxy-Config","Setup/How-to-connect-Evennia-to-Twitter","Setup/IRC","Setup/Installing-on-Android","Setup/Online-Setup","Setup/RSS","Setup/Running-Evennia-in-Docker","Setup/Security","Setup/Settings-File","Setup/Setup-Overview","Setup/Setup-Quickstart","Setup/Start-Stop-Reload","Unimplemented","api/evennia","api/evennia-api","api/evennia.accounts","api/evennia.accounts.accounts","api/evennia.accounts.admin","api/evennia.accounts.bots","api/evennia.accounts.manager","api/evennia.accounts.models","api/evennia.commands","api/evennia.commands.cmdhandler","api/evennia.commands.cmdparser","api/evennia.commands.cmdset","api/evennia.commands.cmdsethandler","api/evennia.commands.command","api/evennia.commands.default","api/evennia.commands.default.account","api/evennia.commands.default.admin","api/evennia.commands.default.batchprocess","api/evennia.commands.default.building","api/evennia.commands.default.cmdset_account","api/evennia.commands.default.cmdset_character","api/evennia.commands.default.cmdset_session","api/evennia.commands.default.cmdset_unloggedin","api/evennia.commands.default.comms","api/evennia.commands.default.general","api/evennia.commands.default.help","api/evennia.commands.default.muxcommand","api/evennia.commands.default.syscommands","api/evennia.commands.default.system","api/evennia.commands.default.tests","api/evennia.commands.default.unloggedin","api/evennia.comms","api/evennia.comms.admin","api/evennia.comms.channelhandler","api/evennia.comms.comms","api/evennia.comms.managers","api/evennia.comms.models","api/evennia.contrib","api/evennia.contrib.awsstorage","api/evennia.contrib.awsstorage.aws_s3_cdn","api/evennia.contrib.awsstorage.tests","api/evennia.contrib.barter","api/evennia.contrib.building_menu","api/evennia.contrib.chargen","api/evennia.contrib.clothing","api/evennia.contrib.color_markups","api/evennia.contrib.custom_gametime","api/evennia.contrib.dice","api/evennia.contrib.email_login","api/evennia.contrib.extended_room","api/evennia.contrib.fieldfill","api/evennia.contrib.gendersub","api/evennia.contrib.health_bar","api/evennia.contrib.ingame_python","api/evennia.contrib.ingame_python.callbackhandler","api/evennia.contrib.ingame_python.commands","api/evennia.contrib.ingame_python.eventfuncs","api/evennia.contrib.ingame_python.scripts","api/evennia.contrib.ingame_python.tests","api/evennia.contrib.ingame_python.typeclasses","api/evennia.contrib.ingame_python.utils","api/evennia.contrib.mail","api/evennia.contrib.mapbuilder","api/evennia.contrib.menu_login","api/evennia.contrib.multidescer","api/evennia.contrib.puzzles","api/evennia.contrib.random_string_generator","api/evennia.contrib.rplanguage","api/evennia.contrib.rpsystem","api/evennia.contrib.security","api/evennia.contrib.security.auditing","api/evennia.contrib.security.auditing.outputs","api/evennia.contrib.security.auditing.server","api/evennia.contrib.security.auditing.tests","api/evennia.contrib.simpledoor","api/evennia.contrib.slow_exit","api/evennia.contrib.talking_npc","api/evennia.contrib.test_traits","api/evennia.contrib.traits","api/evennia.contrib.tree_select","api/evennia.contrib.turnbattle","api/evennia.contrib.turnbattle.tb_basic","api/evennia.contrib.turnbattle.tb_equip","api/evennia.contrib.turnbattle.tb_items","api/evennia.contrib.turnbattle.tb_magic","api/evennia.contrib.turnbattle.tb_range","api/evennia.contrib.tutorial_examples","api/evennia.contrib.tutorial_examples.bodyfunctions","api/evennia.contrib.tutorial_examples.cmdset_red_button","api/evennia.contrib.tutorial_examples.example_batch_code","api/evennia.contrib.tutorial_examples.mirror","api/evennia.contrib.tutorial_examples.red_button","api/evennia.contrib.tutorial_examples.red_button_scripts","api/evennia.contrib.tutorial_examples.tests","api/evennia.contrib.tutorial_world","api/evennia.contrib.tutorial_world.mob","api/evennia.contrib.tutorial_world.objects","api/evennia.contrib.tutorial_world.rooms","api/evennia.contrib.unixcommand","api/evennia.contrib.wilderness","api/evennia.help","api/evennia.help.admin","api/evennia.help.manager","api/evennia.help.models","api/evennia.locks","api/evennia.locks.lockfuncs","api/evennia.locks.lockhandler","api/evennia.objects","api/evennia.objects.admin","api/evennia.objects.manager","api/evennia.objects.models","api/evennia.objects.objects","api/evennia.prototypes","api/evennia.prototypes.menus","api/evennia.prototypes.protfuncs","api/evennia.prototypes.prototypes","api/evennia.prototypes.spawner","api/evennia.scripts","api/evennia.scripts.admin","api/evennia.scripts.manager","api/evennia.scripts.models","api/evennia.scripts.monitorhandler","api/evennia.scripts.scripthandler","api/evennia.scripts.scripts","api/evennia.scripts.taskhandler","api/evennia.scripts.tickerhandler","api/evennia.server","api/evennia.server.admin","api/evennia.server.amp_client","api/evennia.server.connection_wizard","api/evennia.server.deprecations","api/evennia.server.evennia_launcher","api/evennia.server.game_index_client","api/evennia.server.game_index_client.client","api/evennia.server.game_index_client.service","api/evennia.server.initial_setup","api/evennia.server.inputfuncs","api/evennia.server.manager","api/evennia.server.models","api/evennia.server.portal","api/evennia.server.portal.amp","api/evennia.server.portal.amp_server","api/evennia.server.portal.grapevine","api/evennia.server.portal.irc","api/evennia.server.portal.mccp","api/evennia.server.portal.mssp","api/evennia.server.portal.mxp","api/evennia.server.portal.naws","api/evennia.server.portal.portal","api/evennia.server.portal.portalsessionhandler","api/evennia.server.portal.rss","api/evennia.server.portal.ssh","api/evennia.server.portal.ssl","api/evennia.server.portal.suppress_ga","api/evennia.server.portal.telnet","api/evennia.server.portal.telnet_oob","api/evennia.server.portal.telnet_ssl","api/evennia.server.portal.tests","api/evennia.server.portal.ttype","api/evennia.server.portal.webclient","api/evennia.server.portal.webclient_ajax","api/evennia.server.profiling","api/evennia.server.profiling.dummyrunner","api/evennia.server.profiling.dummyrunner_settings","api/evennia.server.profiling.memplot","api/evennia.server.profiling.settings_mixin","api/evennia.server.profiling.test_queries","api/evennia.server.profiling.tests","api/evennia.server.profiling.timetrace","api/evennia.server.server","api/evennia.server.serversession","api/evennia.server.session","api/evennia.server.sessionhandler","api/evennia.server.signals","api/evennia.server.throttle","api/evennia.server.validators","api/evennia.server.webserver","api/evennia.settings_default","api/evennia.typeclasses","api/evennia.typeclasses.admin","api/evennia.typeclasses.attributes","api/evennia.typeclasses.managers","api/evennia.typeclasses.models","api/evennia.typeclasses.tags","api/evennia.utils","api/evennia.utils.ansi","api/evennia.utils.batchprocessors","api/evennia.utils.containers","api/evennia.utils.create","api/evennia.utils.dbserialize","api/evennia.utils.eveditor","api/evennia.utils.evform","api/evennia.utils.evmenu","api/evennia.utils.evmore","api/evennia.utils.evtable","api/evennia.utils.gametime","api/evennia.utils.idmapper","api/evennia.utils.idmapper.manager","api/evennia.utils.idmapper.models","api/evennia.utils.idmapper.tests","api/evennia.utils.inlinefuncs","api/evennia.utils.logger","api/evennia.utils.optionclasses","api/evennia.utils.optionhandler","api/evennia.utils.picklefield","api/evennia.utils.search","api/evennia.utils.test_resources","api/evennia.utils.text2html","api/evennia.utils.utils","api/evennia.utils.validatorfuncs","api/evennia.web","api/evennia.web.api","api/evennia.web.api.filters","api/evennia.web.api.permissions","api/evennia.web.api.serializers","api/evennia.web.api.tests","api/evennia.web.api.urls","api/evennia.web.api.views","api/evennia.web.urls","api/evennia.web.utils","api/evennia.web.utils.backends","api/evennia.web.utils.general_context","api/evennia.web.utils.middleware","api/evennia.web.utils.tests","api/evennia.web.webclient","api/evennia.web.webclient.urls","api/evennia.web.webclient.views","api/evennia.web.website","api/evennia.web.website.forms","api/evennia.web.website.templatetags","api/evennia.web.website.templatetags.addclass","api/evennia.web.website.tests","api/evennia.web.website.urls","api/evennia.web.website.views","index","toc"],envversion:{"sphinx.domains.c":2,"sphinx.domains.changeset":1,"sphinx.domains.citation":1,"sphinx.domains.cpp":3,"sphinx.domains.index":1,"sphinx.domains.javascript":2,"sphinx.domains.math":2,"sphinx.domains.python":2,"sphinx.domains.rst":2,"sphinx.domains.std":1,"sphinx.ext.todo":2,"sphinx.ext.viewcode":1,sphinx:56},filenames:["Coding/Coding-Introduction.md","Coding/Coding-Overview.md","Coding/Continuous-Integration.md","Coding/Debugging.md","Coding/Flat-API.md","Coding/Profiling.md","Coding/Quirks.md","Coding/Setting-up-PyCharm.md","Coding/Unit-Testing.md","Coding/Updating-Your-Game.md","Coding/Using-Travis.md","Coding/Version-Control.md","Components/Accounts.md","Components/Attributes.md","Components/Batch-Code-Processor.md","Components/Batch-Command-Processor.md","Components/Batch-Processors.md","Components/Bootstrap-Components-and-Utilities.md","Components/Channels.md","Components/Coding-Utils.md","Components/Command-Sets.md","Components/Command-System.md","Components/Commands.md","Components/Communications.md","Components/Components-Overview.md","Components/Connection-Screen.md","Components/EvEditor.md","Components/EvMenu.md","Components/EvMore.md","Components/Help-System.md","Components/Inputfuncs.md","Components/Locks.md","Components/MonitorHandler.md","Components/Nicks.md","Components/Objects.md","Components/Outputfuncs.md","Components/Portal-And-Server.md","Components/Scripts.md","Components/Server.md","Components/Server-Conf.md","Components/Sessions.md","Components/Signals.md","Components/Spawner-and-Prototypes.md","Components/Tags.md","Components/TickerHandler.md","Components/Typeclasses.md","Components/Webclient.md","Components/Webserver.md","Concepts/Async-Process.md","Concepts/Banning.md","Concepts/Bootstrap-&-Evennia.md","Concepts/Building-Permissions.md","Concepts/Concepts-Overview.md","Concepts/Custom-Protocols.md","Concepts/Guest-Logins.md","Concepts/Internationalization.md","Concepts/Messagepath.md","Concepts/Multisession-modes.md","Concepts/New-Models.md","Concepts/OOB.md","Concepts/Soft-Code.md","Concepts/Text-Encodings.md","Concepts/TextTags.md","Concepts/Using-MUX-as-a-Standard.md","Concepts/Web-Features.md","Concepts/Zones.md","Contribs/A-voice-operated-elevator-using-events.md","Contribs/Arxcode-installing-help.md","Contribs/Building-menus.md","Contribs/Contrib-Overview.md","Contribs/Dialogues-in-events.md","Contribs/Dynamic-In-Game-Map.md","Contribs/Static-In-Game-Map.md","Contributing.md","Contributing-Docs.md","Evennia-API.md","Evennia-Introduction.md","Glossary.md","How-To-Get-And-Give-Help.md","Howto/Add-a-wiki-on-your-website.md","Howto/Building-a-mech-tutorial.md","Howto/Coding-FAQ.md","Howto/Command-Cooldown.md","Howto/Command-Duration.md","Howto/Command-Prompt.md","Howto/Coordinates.md","Howto/Customize-channels.md","Howto/Default-Exit-Errors.md","Howto/Evennia-for-Diku-Users.md","Howto/Evennia-for-MUSH-Users.md","Howto/Evennia-for-roleplaying-sessions.md","Howto/Gametime-Tutorial.md","Howto/Help-System-Tutorial.md","Howto/Howto-Overview.md","Howto/Manually-Configuring-Color.md","Howto/Mass-and-weight-for-objects.md","Howto/NPC-shop-Tutorial.md","Howto/Parsing-commands-tutorial.md","Howto/Starting/Part1/Adding-Commands.md","Howto/Starting/Part1/Building-Quickstart.md","Howto/Starting/Part1/Creating-Things.md","Howto/Starting/Part1/Django-queries.md","Howto/Starting/Part1/Evennia-Library-Overview.md","Howto/Starting/Part1/Gamedir-Overview.md","Howto/Starting/Part1/Learning-Typeclasses.md","Howto/Starting/Part1/More-on-Commands.md","Howto/Starting/Part1/Python-basic-introduction.md","Howto/Starting/Part1/Python-classes-and-objects.md","Howto/Starting/Part1/Searching-Things.md","Howto/Starting/Part1/Tutorial-World-Introduction.md","Howto/Starting/Part2/Game-Planning.md","Howto/Starting/Part2/Some-Useful-Contribs.md","Howto/Starting/Part3/Implementing-a-game-rule-system.md","Howto/Starting/Part3/Turn-based-Combat-System.md","Howto/Starting/Part3/Tutorial-for-basic-MUSH-like-game.md","Howto/Starting/Part5/Add-a-simple-new-web-page.md","Howto/Starting/Part5/Web-Tutorial.md","Howto/Starting/Starting-Part1.md","Howto/Starting/Starting-Part2.md","Howto/Starting/Starting-Part3.md","Howto/Starting/Starting-Part4.md","Howto/Starting/Starting-Part5.md","Howto/Tutorial-Aggressive-NPCs.md","Howto/Tutorial-NPCs-listening.md","Howto/Tutorial-Tweeting-Game-Stats.md","Howto/Tutorial-Vehicles.md","Howto/Understanding-Color-Tags.md","Howto/Weather-Tutorial.md","Howto/Web-Character-Generation.md","Howto/Web-Character-View-Tutorial.md","Licensing.md","Links.md","Setup/Apache-Config.md","Setup/Choosing-An-SQL-Server.md","Setup/Client-Support-Grid.md","Setup/Evennia-Game-Index.md","Setup/Extended-Installation.md","Setup/Grapevine.md","Setup/HAProxy-Config.md","Setup/How-to-connect-Evennia-to-Twitter.md","Setup/IRC.md","Setup/Installing-on-Android.md","Setup/Online-Setup.md","Setup/RSS.md","Setup/Running-Evennia-in-Docker.md","Setup/Security.md","Setup/Settings-File.md","Setup/Setup-Overview.md","Setup/Setup-Quickstart.md","Setup/Start-Stop-Reload.md","Unimplemented.md","api/evennia.rst","api/evennia-api.rst","api/evennia.accounts.rst","api/evennia.accounts.accounts.rst","api/evennia.accounts.admin.rst","api/evennia.accounts.bots.rst","api/evennia.accounts.manager.rst","api/evennia.accounts.models.rst","api/evennia.commands.rst","api/evennia.commands.cmdhandler.rst","api/evennia.commands.cmdparser.rst","api/evennia.commands.cmdset.rst","api/evennia.commands.cmdsethandler.rst","api/evennia.commands.command.rst","api/evennia.commands.default.rst","api/evennia.commands.default.account.rst","api/evennia.commands.default.admin.rst","api/evennia.commands.default.batchprocess.rst","api/evennia.commands.default.building.rst","api/evennia.commands.default.cmdset_account.rst","api/evennia.commands.default.cmdset_character.rst","api/evennia.commands.default.cmdset_session.rst","api/evennia.commands.default.cmdset_unloggedin.rst","api/evennia.commands.default.comms.rst","api/evennia.commands.default.general.rst","api/evennia.commands.default.help.rst","api/evennia.commands.default.muxcommand.rst","api/evennia.commands.default.syscommands.rst","api/evennia.commands.default.system.rst","api/evennia.commands.default.tests.rst","api/evennia.commands.default.unloggedin.rst","api/evennia.comms.rst","api/evennia.comms.admin.rst","api/evennia.comms.channelhandler.rst","api/evennia.comms.comms.rst","api/evennia.comms.managers.rst","api/evennia.comms.models.rst","api/evennia.contrib.rst","api/evennia.contrib.awsstorage.rst","api/evennia.contrib.awsstorage.aws_s3_cdn.rst","api/evennia.contrib.awsstorage.tests.rst","api/evennia.contrib.barter.rst","api/evennia.contrib.building_menu.rst","api/evennia.contrib.chargen.rst","api/evennia.contrib.clothing.rst","api/evennia.contrib.color_markups.rst","api/evennia.contrib.custom_gametime.rst","api/evennia.contrib.dice.rst","api/evennia.contrib.email_login.rst","api/evennia.contrib.extended_room.rst","api/evennia.contrib.fieldfill.rst","api/evennia.contrib.gendersub.rst","api/evennia.contrib.health_bar.rst","api/evennia.contrib.ingame_python.rst","api/evennia.contrib.ingame_python.callbackhandler.rst","api/evennia.contrib.ingame_python.commands.rst","api/evennia.contrib.ingame_python.eventfuncs.rst","api/evennia.contrib.ingame_python.scripts.rst","api/evennia.contrib.ingame_python.tests.rst","api/evennia.contrib.ingame_python.typeclasses.rst","api/evennia.contrib.ingame_python.utils.rst","api/evennia.contrib.mail.rst","api/evennia.contrib.mapbuilder.rst","api/evennia.contrib.menu_login.rst","api/evennia.contrib.multidescer.rst","api/evennia.contrib.puzzles.rst","api/evennia.contrib.random_string_generator.rst","api/evennia.contrib.rplanguage.rst","api/evennia.contrib.rpsystem.rst","api/evennia.contrib.security.rst","api/evennia.contrib.security.auditing.rst","api/evennia.contrib.security.auditing.outputs.rst","api/evennia.contrib.security.auditing.server.rst","api/evennia.contrib.security.auditing.tests.rst","api/evennia.contrib.simpledoor.rst","api/evennia.contrib.slow_exit.rst","api/evennia.contrib.talking_npc.rst","api/evennia.contrib.test_traits.rst","api/evennia.contrib.traits.rst","api/evennia.contrib.tree_select.rst","api/evennia.contrib.turnbattle.rst","api/evennia.contrib.turnbattle.tb_basic.rst","api/evennia.contrib.turnbattle.tb_equip.rst","api/evennia.contrib.turnbattle.tb_items.rst","api/evennia.contrib.turnbattle.tb_magic.rst","api/evennia.contrib.turnbattle.tb_range.rst","api/evennia.contrib.tutorial_examples.rst","api/evennia.contrib.tutorial_examples.bodyfunctions.rst","api/evennia.contrib.tutorial_examples.cmdset_red_button.rst","api/evennia.contrib.tutorial_examples.example_batch_code.rst","api/evennia.contrib.tutorial_examples.mirror.rst","api/evennia.contrib.tutorial_examples.red_button.rst","api/evennia.contrib.tutorial_examples.red_button_scripts.rst","api/evennia.contrib.tutorial_examples.tests.rst","api/evennia.contrib.tutorial_world.rst","api/evennia.contrib.tutorial_world.mob.rst","api/evennia.contrib.tutorial_world.objects.rst","api/evennia.contrib.tutorial_world.rooms.rst","api/evennia.contrib.unixcommand.rst","api/evennia.contrib.wilderness.rst","api/evennia.help.rst","api/evennia.help.admin.rst","api/evennia.help.manager.rst","api/evennia.help.models.rst","api/evennia.locks.rst","api/evennia.locks.lockfuncs.rst","api/evennia.locks.lockhandler.rst","api/evennia.objects.rst","api/evennia.objects.admin.rst","api/evennia.objects.manager.rst","api/evennia.objects.models.rst","api/evennia.objects.objects.rst","api/evennia.prototypes.rst","api/evennia.prototypes.menus.rst","api/evennia.prototypes.protfuncs.rst","api/evennia.prototypes.prototypes.rst","api/evennia.prototypes.spawner.rst","api/evennia.scripts.rst","api/evennia.scripts.admin.rst","api/evennia.scripts.manager.rst","api/evennia.scripts.models.rst","api/evennia.scripts.monitorhandler.rst","api/evennia.scripts.scripthandler.rst","api/evennia.scripts.scripts.rst","api/evennia.scripts.taskhandler.rst","api/evennia.scripts.tickerhandler.rst","api/evennia.server.rst","api/evennia.server.admin.rst","api/evennia.server.amp_client.rst","api/evennia.server.connection_wizard.rst","api/evennia.server.deprecations.rst","api/evennia.server.evennia_launcher.rst","api/evennia.server.game_index_client.rst","api/evennia.server.game_index_client.client.rst","api/evennia.server.game_index_client.service.rst","api/evennia.server.initial_setup.rst","api/evennia.server.inputfuncs.rst","api/evennia.server.manager.rst","api/evennia.server.models.rst","api/evennia.server.portal.rst","api/evennia.server.portal.amp.rst","api/evennia.server.portal.amp_server.rst","api/evennia.server.portal.grapevine.rst","api/evennia.server.portal.irc.rst","api/evennia.server.portal.mccp.rst","api/evennia.server.portal.mssp.rst","api/evennia.server.portal.mxp.rst","api/evennia.server.portal.naws.rst","api/evennia.server.portal.portal.rst","api/evennia.server.portal.portalsessionhandler.rst","api/evennia.server.portal.rss.rst","api/evennia.server.portal.ssh.rst","api/evennia.server.portal.ssl.rst","api/evennia.server.portal.suppress_ga.rst","api/evennia.server.portal.telnet.rst","api/evennia.server.portal.telnet_oob.rst","api/evennia.server.portal.telnet_ssl.rst","api/evennia.server.portal.tests.rst","api/evennia.server.portal.ttype.rst","api/evennia.server.portal.webclient.rst","api/evennia.server.portal.webclient_ajax.rst","api/evennia.server.profiling.rst","api/evennia.server.profiling.dummyrunner.rst","api/evennia.server.profiling.dummyrunner_settings.rst","api/evennia.server.profiling.memplot.rst","api/evennia.server.profiling.settings_mixin.rst","api/evennia.server.profiling.test_queries.rst","api/evennia.server.profiling.tests.rst","api/evennia.server.profiling.timetrace.rst","api/evennia.server.server.rst","api/evennia.server.serversession.rst","api/evennia.server.session.rst","api/evennia.server.sessionhandler.rst","api/evennia.server.signals.rst","api/evennia.server.throttle.rst","api/evennia.server.validators.rst","api/evennia.server.webserver.rst","api/evennia.settings_default.rst","api/evennia.typeclasses.rst","api/evennia.typeclasses.admin.rst","api/evennia.typeclasses.attributes.rst","api/evennia.typeclasses.managers.rst","api/evennia.typeclasses.models.rst","api/evennia.typeclasses.tags.rst","api/evennia.utils.rst","api/evennia.utils.ansi.rst","api/evennia.utils.batchprocessors.rst","api/evennia.utils.containers.rst","api/evennia.utils.create.rst","api/evennia.utils.dbserialize.rst","api/evennia.utils.eveditor.rst","api/evennia.utils.evform.rst","api/evennia.utils.evmenu.rst","api/evennia.utils.evmore.rst","api/evennia.utils.evtable.rst","api/evennia.utils.gametime.rst","api/evennia.utils.idmapper.rst","api/evennia.utils.idmapper.manager.rst","api/evennia.utils.idmapper.models.rst","api/evennia.utils.idmapper.tests.rst","api/evennia.utils.inlinefuncs.rst","api/evennia.utils.logger.rst","api/evennia.utils.optionclasses.rst","api/evennia.utils.optionhandler.rst","api/evennia.utils.picklefield.rst","api/evennia.utils.search.rst","api/evennia.utils.test_resources.rst","api/evennia.utils.text2html.rst","api/evennia.utils.utils.rst","api/evennia.utils.validatorfuncs.rst","api/evennia.web.rst","api/evennia.web.api.rst","api/evennia.web.api.filters.rst","api/evennia.web.api.permissions.rst","api/evennia.web.api.serializers.rst","api/evennia.web.api.tests.rst","api/evennia.web.api.urls.rst","api/evennia.web.api.views.rst","api/evennia.web.urls.rst","api/evennia.web.utils.rst","api/evennia.web.utils.backends.rst","api/evennia.web.utils.general_context.rst","api/evennia.web.utils.middleware.rst","api/evennia.web.utils.tests.rst","api/evennia.web.webclient.rst","api/evennia.web.webclient.urls.rst","api/evennia.web.webclient.views.rst","api/evennia.web.website.rst","api/evennia.web.website.forms.rst","api/evennia.web.website.templatetags.rst","api/evennia.web.website.templatetags.addclass.rst","api/evennia.web.website.tests.rst","api/evennia.web.website.urls.rst","api/evennia.web.website.views.rst","index.md","toc.md"],objects:{"":{evennia:[151,0,0,"-"]},"evennia.accounts":{accounts:[154,0,0,"-"],admin:[155,0,0,"-"],bots:[156,0,0,"-"],manager:[157,0,0,"-"],models:[158,0,0,"-"]},"evennia.accounts.accounts":{DefaultAccount:[154,1,1,""],DefaultGuest:[154,1,1,""]},"evennia.accounts.accounts.DefaultAccount":{"delete":[154,3,1,""],DoesNotExist:[154,2,1,""],MultipleObjectsReturned:[154,2,1,""],access:[154,3,1,""],at_access:[154,3,1,""],at_account_creation:[154,3,1,""],at_cmdset_get:[154,3,1,""],at_disconnect:[154,3,1,""],at_failed_login:[154,3,1,""],at_first_login:[154,3,1,""],at_first_save:[154,3,1,""],at_init:[154,3,1,""],at_look:[154,3,1,""],at_msg_receive:[154,3,1,""],at_msg_send:[154,3,1,""],at_password_change:[154,3,1,""],at_post_disconnect:[154,3,1,""],at_post_login:[154,3,1,""],at_pre_login:[154,3,1,""],at_server_reload:[154,3,1,""],at_server_shutdown:[154,3,1,""],authenticate:[154,3,1,""],basetype_setup:[154,3,1,""],character:[154,3,1,""],characters:[154,3,1,""],cmdset:[154,4,1,""],connection_time:[154,3,1,""],create:[154,3,1,""],disconnect_session_from_account:[154,3,1,""],execute_cmd:[154,3,1,""],get_all_puppets:[154,3,1,""],get_puppet:[154,3,1,""],get_username_validators:[154,3,1,""],idle_time:[154,3,1,""],is_banned:[154,3,1,""],msg:[154,3,1,""],nicks:[154,4,1,""],normalize_username:[154,3,1,""],objects:[154,4,1,""],options:[154,4,1,""],path:[154,4,1,""],puppet:[154,3,1,""],puppet_object:[154,3,1,""],scripts:[154,4,1,""],search:[154,3,1,""],sessions:[154,4,1,""],set_password:[154,3,1,""],typename:[154,4,1,""],unpuppet_all:[154,3,1,""],unpuppet_object:[154,3,1,""],validate_password:[154,3,1,""],validate_username:[154,3,1,""]},"evennia.accounts.accounts.DefaultGuest":{DoesNotExist:[154,2,1,""],MultipleObjectsReturned:[154,2,1,""],at_post_disconnect:[154,3,1,""],at_post_login:[154,3,1,""],at_server_shutdown:[154,3,1,""],authenticate:[154,3,1,""],create:[154,3,1,""],path:[154,4,1,""],typename:[154,4,1,""]},"evennia.accounts.admin":{AccountAttributeInline:[155,1,1,""],AccountDBAdmin:[155,1,1,""],AccountDBChangeForm:[155,1,1,""],AccountDBCreationForm:[155,1,1,""],AccountForm:[155,1,1,""],AccountInline:[155,1,1,""],AccountTagInline:[155,1,1,""]},"evennia.accounts.admin.AccountAttributeInline":{media:[155,3,1,""],model:[155,4,1,""],related_field:[155,4,1,""]},"evennia.accounts.admin.AccountDBAdmin":{add_fieldsets:[155,4,1,""],add_form:[155,4,1,""],fieldsets:[155,4,1,""],form:[155,4,1,""],inlines:[155,4,1,""],list_display:[155,4,1,""],media:[155,3,1,""],response_add:[155,3,1,""],save_model:[155,3,1,""]},"evennia.accounts.admin.AccountDBChangeForm":{Meta:[155,1,1,""],base_fields:[155,4,1,""],clean_username:[155,3,1,""],declared_fields:[155,4,1,""],media:[155,3,1,""]},"evennia.accounts.admin.AccountDBChangeForm.Meta":{fields:[155,4,1,""],model:[155,4,1,""]},"evennia.accounts.admin.AccountDBCreationForm":{Meta:[155,1,1,""],base_fields:[155,4,1,""],clean_username:[155,3,1,""],declared_fields:[155,4,1,""],media:[155,3,1,""]},"evennia.accounts.admin.AccountDBCreationForm.Meta":{fields:[155,4,1,""],model:[155,4,1,""]},"evennia.accounts.admin.AccountForm":{Meta:[155,1,1,""],base_fields:[155,4,1,""],declared_fields:[155,4,1,""],media:[155,3,1,""]},"evennia.accounts.admin.AccountForm.Meta":{fields:[155,4,1,""],model:[155,4,1,""]},"evennia.accounts.admin.AccountInline":{extra:[155,4,1,""],fieldsets:[155,4,1,""],form:[155,4,1,""],max_num:[155,4,1,""],media:[155,3,1,""],model:[155,4,1,""],template:[155,4,1,""]},"evennia.accounts.admin.AccountTagInline":{media:[155,3,1,""],model:[155,4,1,""],related_field:[155,4,1,""]},"evennia.accounts.bots":{Bot:[156,1,1,""],BotStarter:[156,1,1,""],GrapevineBot:[156,1,1,""],IRCBot:[156,1,1,""],RSSBot:[156,1,1,""]},"evennia.accounts.bots.Bot":{DoesNotExist:[156,2,1,""],MultipleObjectsReturned:[156,2,1,""],at_server_shutdown:[156,3,1,""],basetype_setup:[156,3,1,""],execute_cmd:[156,3,1,""],msg:[156,3,1,""],path:[156,4,1,""],start:[156,3,1,""],typename:[156,4,1,""]},"evennia.accounts.bots.BotStarter":{DoesNotExist:[156,2,1,""],MultipleObjectsReturned:[156,2,1,""],at_repeat:[156,3,1,""],at_script_creation:[156,3,1,""],at_server_reload:[156,3,1,""],at_server_shutdown:[156,3,1,""],at_start:[156,3,1,""],path:[156,4,1,""],typename:[156,4,1,""]},"evennia.accounts.bots.GrapevineBot":{DoesNotExist:[156,2,1,""],MultipleObjectsReturned:[156,2,1,""],at_msg_send:[156,3,1,""],execute_cmd:[156,3,1,""],factory_path:[156,4,1,""],msg:[156,3,1,""],path:[156,4,1,""],start:[156,3,1,""],typename:[156,4,1,""]},"evennia.accounts.bots.IRCBot":{DoesNotExist:[156,2,1,""],MultipleObjectsReturned:[156,2,1,""],at_msg_send:[156,3,1,""],execute_cmd:[156,3,1,""],factory_path:[156,4,1,""],get_nicklist:[156,3,1,""],msg:[156,3,1,""],path:[156,4,1,""],ping:[156,3,1,""],reconnect:[156,3,1,""],start:[156,3,1,""],typename:[156,4,1,""]},"evennia.accounts.bots.RSSBot":{DoesNotExist:[156,2,1,""],MultipleObjectsReturned:[156,2,1,""],execute_cmd:[156,3,1,""],path:[156,4,1,""],start:[156,3,1,""],typename:[156,4,1,""]},"evennia.accounts.manager":{AccountManager:[157,1,1,""]},"evennia.accounts.models":{AccountDB:[158,1,1,""]},"evennia.accounts.models.AccountDB":{DoesNotExist:[158,2,1,""],MultipleObjectsReturned:[158,2,1,""],account_subscription_set:[158,4,1,""],cmdset_storage:[158,3,1,""],db_attributes:[158,4,1,""],db_cmdset_storage:[158,4,1,""],db_is_bot:[158,4,1,""],db_is_connected:[158,4,1,""],db_tags:[158,4,1,""],get_next_by_date_joined:[158,3,1,""],get_next_by_db_date_created:[158,3,1,""],get_previous_by_date_joined:[158,3,1,""],get_previous_by_db_date_created:[158,3,1,""],groups:[158,4,1,""],hide_from_accounts_set:[158,4,1,""],id:[158,4,1,""],is_bot:[158,3,1,""],is_connected:[158,3,1,""],key:[158,3,1,""],logentry_set:[158,4,1,""],name:[158,3,1,""],objectdb_set:[158,4,1,""],objects:[158,4,1,""],path:[158,4,1,""],receiver_account_set:[158,4,1,""],scriptdb_set:[158,4,1,""],sender_account_set:[158,4,1,""],typename:[158,4,1,""],uid:[158,3,1,""],user_permissions:[158,4,1,""]},"evennia.commands":{"default":[165,0,0,"-"],cmdhandler:[160,0,0,"-"],cmdparser:[161,0,0,"-"],cmdset:[162,0,0,"-"],cmdsethandler:[163,0,0,"-"],command:[164,0,0,"-"]},"evennia.commands.cmdhandler":{InterruptCommand:[160,2,1,""],cmdhandler:[160,5,1,""]},"evennia.commands.cmdparser":{build_matches:[161,5,1,""],cmdparser:[161,5,1,""],create_match:[161,5,1,""],try_num_prefixes:[161,5,1,""]},"evennia.commands.cmdset":{CmdSet:[162,1,1,""]},"evennia.commands.cmdset.CmdSet":{__init__:[162,3,1,""],add:[162,3,1,""],at_cmdset_creation:[162,3,1,""],count:[162,3,1,""],duplicates:[162,4,1,""],errmessage:[162,4,1,""],get:[162,3,1,""],get_all_cmd_keys_and_aliases:[162,3,1,""],get_system_cmds:[162,3,1,""],key:[162,4,1,""],key_mergetypes:[162,4,1,""],make_unique:[162,3,1,""],mergetype:[162,4,1,""],no_channels:[162,4,1,""],no_exits:[162,4,1,""],no_objs:[162,4,1,""],path:[162,4,1,""],permanent:[162,4,1,""],priority:[162,4,1,""],remove:[162,3,1,""],to_duplicate:[162,4,1,""]},"evennia.commands.cmdsethandler":{CmdSetHandler:[163,1,1,""],import_cmdset:[163,5,1,""]},"evennia.commands.cmdsethandler.CmdSetHandler":{"delete":[163,3,1,""],__init__:[163,3,1,""],add:[163,3,1,""],add_default:[163,3,1,""],all:[163,3,1,""],clear:[163,3,1,""],delete_default:[163,3,1,""],get:[163,3,1,""],has:[163,3,1,""],has_cmdset:[163,3,1,""],remove:[163,3,1,""],remove_default:[163,3,1,""],reset:[163,3,1,""],update:[163,3,1,""]},"evennia.commands.command":{Command:[164,1,1,""],CommandMeta:[164,1,1,""],InterruptCommand:[164,2,1,""]},"evennia.commands.command.Command":{__init__:[164,3,1,""],access:[164,3,1,""],aliases:[164,4,1,""],arg_regex:[164,4,1,""],at_post_cmd:[164,3,1,""],at_pre_cmd:[164,3,1,""],auto_help:[164,4,1,""],client_width:[164,3,1,""],execute_cmd:[164,3,1,""],func:[164,3,1,""],get_command_info:[164,3,1,""],get_extra_info:[164,3,1,""],get_help:[164,3,1,""],help_category:[164,4,1,""],is_exit:[164,4,1,""],key:[164,4,1,""],lock_storage:[164,4,1,""],lockhandler:[164,4,1,""],locks:[164,4,1,""],match:[164,3,1,""],msg:[164,3,1,""],msg_all_sessions:[164,4,1,""],parse:[164,3,1,""],save_for_next:[164,4,1,""],search_index_entry:[164,4,1,""],set_aliases:[164,3,1,""],set_key:[164,3,1,""],styled_footer:[164,3,1,""],styled_header:[164,3,1,""],styled_separator:[164,3,1,""],styled_table:[164,3,1,""]},"evennia.commands.command.CommandMeta":{__init__:[164,3,1,""]},"evennia.commands.default":{account:[166,0,0,"-"],admin:[167,0,0,"-"],batchprocess:[168,0,0,"-"],building:[169,0,0,"-"],cmdset_account:[170,0,0,"-"],cmdset_character:[171,0,0,"-"],cmdset_session:[172,0,0,"-"],cmdset_unloggedin:[173,0,0,"-"],comms:[174,0,0,"-"],general:[175,0,0,"-"],help:[176,0,0,"-"],muxcommand:[177,0,0,"-"],syscommands:[178,0,0,"-"],system:[179,0,0,"-"],unloggedin:[181,0,0,"-"]},"evennia.commands.default.account":{CmdCharCreate:[166,1,1,""],CmdCharDelete:[166,1,1,""],CmdColorTest:[166,1,1,""],CmdIC:[166,1,1,""],CmdOOC:[166,1,1,""],CmdOOCLook:[166,1,1,""],CmdOption:[166,1,1,""],CmdPassword:[166,1,1,""],CmdQuell:[166,1,1,""],CmdQuit:[166,1,1,""],CmdSessions:[166,1,1,""],CmdStyle:[166,1,1,""],CmdWho:[166,1,1,""]},"evennia.commands.default.account.CmdCharCreate":{account_caller:[166,4,1,""],aliases:[166,4,1,""],func:[166,3,1,""],help_category:[166,4,1,""],key:[166,4,1,""],lock_storage:[166,4,1,""],locks:[166,4,1,""],search_index_entry:[166,4,1,""]},"evennia.commands.default.account.CmdCharDelete":{aliases:[166,4,1,""],func:[166,3,1,""],help_category:[166,4,1,""],key:[166,4,1,""],lock_storage:[166,4,1,""],locks:[166,4,1,""],search_index_entry:[166,4,1,""]},"evennia.commands.default.account.CmdColorTest":{account_caller:[166,4,1,""],aliases:[166,4,1,""],func:[166,3,1,""],help_category:[166,4,1,""],key:[166,4,1,""],lock_storage:[166,4,1,""],locks:[166,4,1,""],search_index_entry:[166,4,1,""],slice_bright_bg:[166,4,1,""],slice_bright_fg:[166,4,1,""],slice_dark_bg:[166,4,1,""],slice_dark_fg:[166,4,1,""],table_format:[166,3,1,""]},"evennia.commands.default.account.CmdIC":{account_caller:[166,4,1,""],aliases:[166,4,1,""],func:[166,3,1,""],help_category:[166,4,1,""],key:[166,4,1,""],lock_storage:[166,4,1,""],locks:[166,4,1,""],search_index_entry:[166,4,1,""]},"evennia.commands.default.account.CmdOOC":{account_caller:[166,4,1,""],aliases:[166,4,1,""],func:[166,3,1,""],help_category:[166,4,1,""],key:[166,4,1,""],lock_storage:[166,4,1,""],locks:[166,4,1,""],search_index_entry:[166,4,1,""]},"evennia.commands.default.account.CmdOOCLook":{account_caller:[166,4,1,""],aliases:[166,4,1,""],func:[166,3,1,""],help_category:[166,4,1,""],key:[166,4,1,""],lock_storage:[166,4,1,""],locks:[166,4,1,""],search_index_entry:[166,4,1,""]},"evennia.commands.default.account.CmdOption":{account_caller:[166,4,1,""],aliases:[166,4,1,""],func:[166,3,1,""],help_category:[166,4,1,""],key:[166,4,1,""],lock_storage:[166,4,1,""],locks:[166,4,1,""],search_index_entry:[166,4,1,""],switch_options:[166,4,1,""]},"evennia.commands.default.account.CmdPassword":{account_caller:[166,4,1,""],aliases:[166,4,1,""],func:[166,3,1,""],help_category:[166,4,1,""],key:[166,4,1,""],lock_storage:[166,4,1,""],locks:[166,4,1,""],search_index_entry:[166,4,1,""]},"evennia.commands.default.account.CmdQuell":{account_caller:[166,4,1,""],aliases:[166,4,1,""],func:[166,3,1,""],help_category:[166,4,1,""],key:[166,4,1,""],lock_storage:[166,4,1,""],locks:[166,4,1,""],search_index_entry:[166,4,1,""]},"evennia.commands.default.account.CmdQuit":{account_caller:[166,4,1,""],aliases:[166,4,1,""],func:[166,3,1,""],help_category:[166,4,1,""],key:[166,4,1,""],lock_storage:[166,4,1,""],locks:[166,4,1,""],search_index_entry:[166,4,1,""],switch_options:[166,4,1,""]},"evennia.commands.default.account.CmdSessions":{account_caller:[166,4,1,""],aliases:[166,4,1,""],func:[166,3,1,""],help_category:[166,4,1,""],key:[166,4,1,""],lock_storage:[166,4,1,""],locks:[166,4,1,""],search_index_entry:[166,4,1,""]},"evennia.commands.default.account.CmdStyle":{aliases:[166,4,1,""],func:[166,3,1,""],help_category:[166,4,1,""],key:[166,4,1,""],list_styles:[166,3,1,""],lock_storage:[166,4,1,""],search_index_entry:[166,4,1,""],set:[166,3,1,""],switch_options:[166,4,1,""]},"evennia.commands.default.account.CmdWho":{account_caller:[166,4,1,""],aliases:[166,4,1,""],func:[166,3,1,""],help_category:[166,4,1,""],key:[166,4,1,""],lock_storage:[166,4,1,""],locks:[166,4,1,""],search_index_entry:[166,4,1,""]},"evennia.commands.default.admin":{CmdBan:[167,1,1,""],CmdBoot:[167,1,1,""],CmdEmit:[167,1,1,""],CmdForce:[167,1,1,""],CmdNewPassword:[167,1,1,""],CmdPerm:[167,1,1,""],CmdUnban:[167,1,1,""],CmdWall:[167,1,1,""]},"evennia.commands.default.admin.CmdBan":{aliases:[167,4,1,""],func:[167,3,1,""],help_category:[167,4,1,""],key:[167,4,1,""],lock_storage:[167,4,1,""],locks:[167,4,1,""],search_index_entry:[167,4,1,""]},"evennia.commands.default.admin.CmdBoot":{aliases:[167,4,1,""],func:[167,3,1,""],help_category:[167,4,1,""],key:[167,4,1,""],lock_storage:[167,4,1,""],locks:[167,4,1,""],search_index_entry:[167,4,1,""],switch_options:[167,4,1,""]},"evennia.commands.default.admin.CmdEmit":{aliases:[167,4,1,""],func:[167,3,1,""],help_category:[167,4,1,""],key:[167,4,1,""],lock_storage:[167,4,1,""],locks:[167,4,1,""],search_index_entry:[167,4,1,""],switch_options:[167,4,1,""]},"evennia.commands.default.admin.CmdForce":{aliases:[167,4,1,""],func:[167,3,1,""],help_category:[167,4,1,""],key:[167,4,1,""],lock_storage:[167,4,1,""],locks:[167,4,1,""],perm_used:[167,4,1,""],search_index_entry:[167,4,1,""]},"evennia.commands.default.admin.CmdNewPassword":{aliases:[167,4,1,""],func:[167,3,1,""],help_category:[167,4,1,""],key:[167,4,1,""],lock_storage:[167,4,1,""],locks:[167,4,1,""],search_index_entry:[167,4,1,""]},"evennia.commands.default.admin.CmdPerm":{aliases:[167,4,1,""],func:[167,3,1,""],help_category:[167,4,1,""],key:[167,4,1,""],lock_storage:[167,4,1,""],locks:[167,4,1,""],search_index_entry:[167,4,1,""],switch_options:[167,4,1,""]},"evennia.commands.default.admin.CmdUnban":{aliases:[167,4,1,""],func:[167,3,1,""],help_category:[167,4,1,""],key:[167,4,1,""],lock_storage:[167,4,1,""],locks:[167,4,1,""],search_index_entry:[167,4,1,""]},"evennia.commands.default.admin.CmdWall":{aliases:[167,4,1,""],func:[167,3,1,""],help_category:[167,4,1,""],key:[167,4,1,""],lock_storage:[167,4,1,""],locks:[167,4,1,""],search_index_entry:[167,4,1,""]},"evennia.commands.default.batchprocess":{CmdBatchCode:[168,1,1,""],CmdBatchCommands:[168,1,1,""]},"evennia.commands.default.batchprocess.CmdBatchCode":{aliases:[168,4,1,""],func:[168,3,1,""],help_category:[168,4,1,""],key:[168,4,1,""],lock_storage:[168,4,1,""],locks:[168,4,1,""],search_index_entry:[168,4,1,""],switch_options:[168,4,1,""]},"evennia.commands.default.batchprocess.CmdBatchCommands":{aliases:[168,4,1,""],func:[168,3,1,""],help_category:[168,4,1,""],key:[168,4,1,""],lock_storage:[168,4,1,""],locks:[168,4,1,""],search_index_entry:[168,4,1,""],switch_options:[168,4,1,""]},"evennia.commands.default.building":{CmdCopy:[169,1,1,""],CmdCpAttr:[169,1,1,""],CmdCreate:[169,1,1,""],CmdDesc:[169,1,1,""],CmdDestroy:[169,1,1,""],CmdDig:[169,1,1,""],CmdExamine:[169,1,1,""],CmdFind:[169,1,1,""],CmdLink:[169,1,1,""],CmdListCmdSets:[169,1,1,""],CmdLock:[169,1,1,""],CmdMvAttr:[169,1,1,""],CmdName:[169,1,1,""],CmdOpen:[169,1,1,""],CmdScript:[169,1,1,""],CmdSetAttribute:[169,1,1,""],CmdSetHome:[169,1,1,""],CmdSetObjAlias:[169,1,1,""],CmdSpawn:[169,1,1,""],CmdTag:[169,1,1,""],CmdTeleport:[169,1,1,""],CmdTunnel:[169,1,1,""],CmdTypeclass:[169,1,1,""],CmdUnLink:[169,1,1,""],CmdWipe:[169,1,1,""],ObjManipCommand:[169,1,1,""]},"evennia.commands.default.building.CmdCopy":{aliases:[169,4,1,""],func:[169,3,1,""],help_category:[169,4,1,""],key:[169,4,1,""],lock_storage:[169,4,1,""],locks:[169,4,1,""],search_index_entry:[169,4,1,""]},"evennia.commands.default.building.CmdCpAttr":{aliases:[169,4,1,""],check_from_attr:[169,3,1,""],check_has_attr:[169,3,1,""],check_to_attr:[169,3,1,""],func:[169,3,1,""],get_attr:[169,3,1,""],help_category:[169,4,1,""],key:[169,4,1,""],lock_storage:[169,4,1,""],locks:[169,4,1,""],search_index_entry:[169,4,1,""],switch_options:[169,4,1,""]},"evennia.commands.default.building.CmdCreate":{aliases:[169,4,1,""],func:[169,3,1,""],help_category:[169,4,1,""],key:[169,4,1,""],lock_storage:[169,4,1,""],locks:[169,4,1,""],new_obj_lockstring:[169,4,1,""],search_index_entry:[169,4,1,""],switch_options:[169,4,1,""]},"evennia.commands.default.building.CmdDesc":{aliases:[169,4,1,""],edit_handler:[169,3,1,""],func:[169,3,1,""],help_category:[169,4,1,""],key:[169,4,1,""],lock_storage:[169,4,1,""],locks:[169,4,1,""],search_index_entry:[169,4,1,""],switch_options:[169,4,1,""]},"evennia.commands.default.building.CmdDestroy":{aliases:[169,4,1,""],confirm:[169,4,1,""],default_confirm:[169,4,1,""],func:[169,3,1,""],help_category:[169,4,1,""],key:[169,4,1,""],lock_storage:[169,4,1,""],locks:[169,4,1,""],search_index_entry:[169,4,1,""],switch_options:[169,4,1,""]},"evennia.commands.default.building.CmdDig":{aliases:[169,4,1,""],func:[169,3,1,""],help_category:[169,4,1,""],key:[169,4,1,""],lock_storage:[169,4,1,""],locks:[169,4,1,""],new_room_lockstring:[169,4,1,""],search_index_entry:[169,4,1,""],switch_options:[169,4,1,""]},"evennia.commands.default.building.CmdExamine":{account_mode:[169,4,1,""],aliases:[169,4,1,""],arg_regex:[169,4,1,""],format_attributes:[169,3,1,""],format_output:[169,3,1,""],func:[169,3,1,""],help_category:[169,4,1,""],key:[169,4,1,""],list_attribute:[169,3,1,""],lock_storage:[169,4,1,""],locks:[169,4,1,""],search_index_entry:[169,4,1,""]},"evennia.commands.default.building.CmdFind":{aliases:[169,4,1,""],func:[169,3,1,""],help_category:[169,4,1,""],key:[169,4,1,""],lock_storage:[169,4,1,""],locks:[169,4,1,""],search_index_entry:[169,4,1,""],switch_options:[169,4,1,""]},"evennia.commands.default.building.CmdLink":{aliases:[169,4,1,""],func:[169,3,1,""],help_category:[169,4,1,""],key:[169,4,1,""],lock_storage:[169,4,1,""],locks:[169,4,1,""],search_index_entry:[169,4,1,""]},"evennia.commands.default.building.CmdListCmdSets":{aliases:[169,4,1,""],func:[169,3,1,""],help_category:[169,4,1,""],key:[169,4,1,""],lock_storage:[169,4,1,""],locks:[169,4,1,""],search_index_entry:[169,4,1,""]},"evennia.commands.default.building.CmdLock":{aliases:[169,4,1,""],func:[169,3,1,""],help_category:[169,4,1,""],key:[169,4,1,""],lock_storage:[169,4,1,""],locks:[169,4,1,""],search_index_entry:[169,4,1,""]},"evennia.commands.default.building.CmdMvAttr":{aliases:[169,4,1,""],func:[169,3,1,""],help_category:[169,4,1,""],key:[169,4,1,""],lock_storage:[169,4,1,""],locks:[169,4,1,""],search_index_entry:[169,4,1,""],switch_options:[169,4,1,""]},"evennia.commands.default.building.CmdName":{aliases:[169,4,1,""],func:[169,3,1,""],help_category:[169,4,1,""],key:[169,4,1,""],lock_storage:[169,4,1,""],locks:[169,4,1,""],search_index_entry:[169,4,1,""]},"evennia.commands.default.building.CmdOpen":{aliases:[169,4,1,""],create_exit:[169,3,1,""],func:[169,3,1,""],help_category:[169,4,1,""],key:[169,4,1,""],lock_storage:[169,4,1,""],locks:[169,4,1,""],search_index_entry:[169,4,1,""]},"evennia.commands.default.building.CmdScript":{aliases:[169,4,1,""],func:[169,3,1,""],help_category:[169,4,1,""],key:[169,4,1,""],lock_storage:[169,4,1,""],locks:[169,4,1,""],search_index_entry:[169,4,1,""],switch_options:[169,4,1,""]},"evennia.commands.default.building.CmdSetAttribute":{aliases:[169,4,1,""],check_attr:[169,3,1,""],check_obj:[169,3,1,""],do_nested_lookup:[169,3,1,""],edit_handler:[169,3,1,""],func:[169,3,1,""],help_category:[169,4,1,""],key:[169,4,1,""],lock_storage:[169,4,1,""],locks:[169,4,1,""],nested_re:[169,4,1,""],not_found:[169,4,1,""],rm_attr:[169,3,1,""],search_for_obj:[169,3,1,""],search_index_entry:[169,4,1,""],set_attr:[169,3,1,""],split_nested_attr:[169,3,1,""],view_attr:[169,3,1,""]},"evennia.commands.default.building.CmdSetHome":{aliases:[169,4,1,""],func:[169,3,1,""],help_category:[169,4,1,""],key:[169,4,1,""],lock_storage:[169,4,1,""],locks:[169,4,1,""],search_index_entry:[169,4,1,""]},"evennia.commands.default.building.CmdSetObjAlias":{aliases:[169,4,1,""],func:[169,3,1,""],help_category:[169,4,1,""],key:[169,4,1,""],lock_storage:[169,4,1,""],locks:[169,4,1,""],search_index_entry:[169,4,1,""],switch_options:[169,4,1,""]},"evennia.commands.default.building.CmdSpawn":{aliases:[169,4,1,""],func:[169,3,1,""],help_category:[169,4,1,""],key:[169,4,1,""],lock_storage:[169,4,1,""],locks:[169,4,1,""],search_index_entry:[169,4,1,""],switch_options:[169,4,1,""]},"evennia.commands.default.building.CmdTag":{aliases:[169,4,1,""],arg_regex:[169,4,1,""],func:[169,3,1,""],help_category:[169,4,1,""],key:[169,4,1,""],lock_storage:[169,4,1,""],locks:[169,4,1,""],options:[169,4,1,""],search_index_entry:[169,4,1,""]},"evennia.commands.default.building.CmdTeleport":{aliases:[169,4,1,""],func:[169,3,1,""],help_category:[169,4,1,""],key:[169,4,1,""],lock_storage:[169,4,1,""],locks:[169,4,1,""],rhs_split:[169,4,1,""],search_index_entry:[169,4,1,""],switch_options:[169,4,1,""]},"evennia.commands.default.building.CmdTunnel":{aliases:[169,4,1,""],directions:[169,4,1,""],func:[169,3,1,""],help_category:[169,4,1,""],key:[169,4,1,""],lock_storage:[169,4,1,""],locks:[169,4,1,""],search_index_entry:[169,4,1,""],switch_options:[169,4,1,""]},"evennia.commands.default.building.CmdTypeclass":{aliases:[169,4,1,""],func:[169,3,1,""],help_category:[169,4,1,""],key:[169,4,1,""],lock_storage:[169,4,1,""],locks:[169,4,1,""],search_index_entry:[169,4,1,""],switch_options:[169,4,1,""]},"evennia.commands.default.building.CmdUnLink":{aliases:[169,4,1,""],func:[169,3,1,""],help_category:[169,4,1,""],help_key:[169,4,1,""],key:[169,4,1,""],lock_storage:[169,4,1,""],locks:[169,4,1,""],search_index_entry:[169,4,1,""]},"evennia.commands.default.building.CmdWipe":{aliases:[169,4,1,""],func:[169,3,1,""],help_category:[169,4,1,""],key:[169,4,1,""],lock_storage:[169,4,1,""],locks:[169,4,1,""],search_index_entry:[169,4,1,""]},"evennia.commands.default.building.ObjManipCommand":{aliases:[169,4,1,""],help_category:[169,4,1,""],key:[169,4,1,""],lock_storage:[169,4,1,""],parse:[169,3,1,""],search_index_entry:[169,4,1,""]},"evennia.commands.default.cmdset_account":{AccountCmdSet:[170,1,1,""]},"evennia.commands.default.cmdset_account.AccountCmdSet":{at_cmdset_creation:[170,3,1,""],key:[170,4,1,""],path:[170,4,1,""],priority:[170,4,1,""]},"evennia.commands.default.cmdset_character":{CharacterCmdSet:[171,1,1,""]},"evennia.commands.default.cmdset_character.CharacterCmdSet":{at_cmdset_creation:[171,3,1,""],key:[171,4,1,""],path:[171,4,1,""],priority:[171,4,1,""]},"evennia.commands.default.cmdset_session":{SessionCmdSet:[172,1,1,""]},"evennia.commands.default.cmdset_session.SessionCmdSet":{at_cmdset_creation:[172,3,1,""],key:[172,4,1,""],path:[172,4,1,""],priority:[172,4,1,""]},"evennia.commands.default.cmdset_unloggedin":{UnloggedinCmdSet:[173,1,1,""]},"evennia.commands.default.cmdset_unloggedin.UnloggedinCmdSet":{at_cmdset_creation:[173,3,1,""],key:[173,4,1,""],path:[173,4,1,""],priority:[173,4,1,""]},"evennia.commands.default.comms":{CmdAddCom:[174,1,1,""],CmdAllCom:[174,1,1,""],CmdCBoot:[174,1,1,""],CmdCWho:[174,1,1,""],CmdCdesc:[174,1,1,""],CmdCdestroy:[174,1,1,""],CmdCemit:[174,1,1,""],CmdChannelCreate:[174,1,1,""],CmdChannels:[174,1,1,""],CmdClock:[174,1,1,""],CmdDelCom:[174,1,1,""],CmdIRC2Chan:[174,1,1,""],CmdPage:[174,1,1,""],CmdRSS2Chan:[174,1,1,""]},"evennia.commands.default.comms.CmdAddCom":{account_caller:[174,4,1,""],aliases:[174,4,1,""],func:[174,3,1,""],help_category:[174,4,1,""],key:[174,4,1,""],lock_storage:[174,4,1,""],locks:[174,4,1,""],search_index_entry:[174,4,1,""]},"evennia.commands.default.comms.CmdAllCom":{account_caller:[174,4,1,""],aliases:[174,4,1,""],func:[174,3,1,""],help_category:[174,4,1,""],key:[174,4,1,""],lock_storage:[174,4,1,""],locks:[174,4,1,""],search_index_entry:[174,4,1,""]},"evennia.commands.default.comms.CmdCBoot":{account_caller:[174,4,1,""],aliases:[174,4,1,""],func:[174,3,1,""],help_category:[174,4,1,""],key:[174,4,1,""],lock_storage:[174,4,1,""],locks:[174,4,1,""],search_index_entry:[174,4,1,""],switch_options:[174,4,1,""]},"evennia.commands.default.comms.CmdCWho":{account_caller:[174,4,1,""],aliases:[174,4,1,""],func:[174,3,1,""],help_category:[174,4,1,""],key:[174,4,1,""],lock_storage:[174,4,1,""],locks:[174,4,1,""],search_index_entry:[174,4,1,""]},"evennia.commands.default.comms.CmdCdesc":{account_caller:[174,4,1,""],aliases:[174,4,1,""],func:[174,3,1,""],help_category:[174,4,1,""],key:[174,4,1,""],lock_storage:[174,4,1,""],locks:[174,4,1,""],search_index_entry:[174,4,1,""]},"evennia.commands.default.comms.CmdCdestroy":{account_caller:[174,4,1,""],aliases:[174,4,1,""],func:[174,3,1,""],help_category:[174,4,1,""],key:[174,4,1,""],lock_storage:[174,4,1,""],locks:[174,4,1,""],search_index_entry:[174,4,1,""]},"evennia.commands.default.comms.CmdCemit":{account_caller:[174,4,1,""],aliases:[174,4,1,""],func:[174,3,1,""],help_category:[174,4,1,""],key:[174,4,1,""],lock_storage:[174,4,1,""],locks:[174,4,1,""],search_index_entry:[174,4,1,""],switch_options:[174,4,1,""]},"evennia.commands.default.comms.CmdChannelCreate":{account_caller:[174,4,1,""],aliases:[174,4,1,""],func:[174,3,1,""],help_category:[174,4,1,""],key:[174,4,1,""],lock_storage:[174,4,1,""],locks:[174,4,1,""],search_index_entry:[174,4,1,""]},"evennia.commands.default.comms.CmdChannels":{account_caller:[174,4,1,""],aliases:[174,4,1,""],func:[174,3,1,""],help_category:[174,4,1,""],key:[174,4,1,""],lock_storage:[174,4,1,""],locks:[174,4,1,""],search_index_entry:[174,4,1,""]},"evennia.commands.default.comms.CmdClock":{account_caller:[174,4,1,""],aliases:[174,4,1,""],func:[174,3,1,""],help_category:[174,4,1,""],key:[174,4,1,""],lock_storage:[174,4,1,""],locks:[174,4,1,""],search_index_entry:[174,4,1,""]},"evennia.commands.default.comms.CmdDelCom":{account_caller:[174,4,1,""],aliases:[174,4,1,""],func:[174,3,1,""],help_category:[174,4,1,""],key:[174,4,1,""],lock_storage:[174,4,1,""],locks:[174,4,1,""],search_index_entry:[174,4,1,""]},"evennia.commands.default.comms.CmdIRC2Chan":{aliases:[174,4,1,""],func:[174,3,1,""],help_category:[174,4,1,""],key:[174,4,1,""],lock_storage:[174,4,1,""],locks:[174,4,1,""],search_index_entry:[174,4,1,""],switch_options:[174,4,1,""]},"evennia.commands.default.comms.CmdPage":{account_caller:[174,4,1,""],aliases:[174,4,1,""],func:[174,3,1,""],help_category:[174,4,1,""],key:[174,4,1,""],lock_storage:[174,4,1,""],locks:[174,4,1,""],search_index_entry:[174,4,1,""],switch_options:[174,4,1,""]},"evennia.commands.default.comms.CmdRSS2Chan":{aliases:[174,4,1,""],func:[174,3,1,""],help_category:[174,4,1,""],key:[174,4,1,""],lock_storage:[174,4,1,""],locks:[174,4,1,""],search_index_entry:[174,4,1,""],switch_options:[174,4,1,""]},"evennia.commands.default.general":{CmdAccess:[175,1,1,""],CmdDrop:[175,1,1,""],CmdGet:[175,1,1,""],CmdGive:[175,1,1,""],CmdHome:[175,1,1,""],CmdInventory:[175,1,1,""],CmdLook:[175,1,1,""],CmdNick:[175,1,1,""],CmdPose:[175,1,1,""],CmdSay:[175,1,1,""],CmdSetDesc:[175,1,1,""],CmdWhisper:[175,1,1,""]},"evennia.commands.default.general.CmdAccess":{aliases:[175,4,1,""],arg_regex:[175,4,1,""],func:[175,3,1,""],help_category:[175,4,1,""],key:[175,4,1,""],lock_storage:[175,4,1,""],locks:[175,4,1,""],search_index_entry:[175,4,1,""]},"evennia.commands.default.general.CmdDrop":{aliases:[175,4,1,""],arg_regex:[175,4,1,""],func:[175,3,1,""],help_category:[175,4,1,""],key:[175,4,1,""],lock_storage:[175,4,1,""],locks:[175,4,1,""],search_index_entry:[175,4,1,""]},"evennia.commands.default.general.CmdGet":{aliases:[175,4,1,""],arg_regex:[175,4,1,""],func:[175,3,1,""],help_category:[175,4,1,""],key:[175,4,1,""],lock_storage:[175,4,1,""],locks:[175,4,1,""],search_index_entry:[175,4,1,""]},"evennia.commands.default.general.CmdGive":{aliases:[175,4,1,""],arg_regex:[175,4,1,""],func:[175,3,1,""],help_category:[175,4,1,""],key:[175,4,1,""],lock_storage:[175,4,1,""],locks:[175,4,1,""],rhs_split:[175,4,1,""],search_index_entry:[175,4,1,""]},"evennia.commands.default.general.CmdHome":{aliases:[175,4,1,""],arg_regex:[175,4,1,""],func:[175,3,1,""],help_category:[175,4,1,""],key:[175,4,1,""],lock_storage:[175,4,1,""],locks:[175,4,1,""],search_index_entry:[175,4,1,""]},"evennia.commands.default.general.CmdInventory":{aliases:[175,4,1,""],arg_regex:[175,4,1,""],func:[175,3,1,""],help_category:[175,4,1,""],key:[175,4,1,""],lock_storage:[175,4,1,""],locks:[175,4,1,""],search_index_entry:[175,4,1,""]},"evennia.commands.default.general.CmdLook":{aliases:[175,4,1,""],arg_regex:[175,4,1,""],func:[175,3,1,""],help_category:[175,4,1,""],key:[175,4,1,""],lock_storage:[175,4,1,""],locks:[175,4,1,""],search_index_entry:[175,4,1,""]},"evennia.commands.default.general.CmdNick":{aliases:[175,4,1,""],func:[175,3,1,""],help_category:[175,4,1,""],key:[175,4,1,""],lock_storage:[175,4,1,""],locks:[175,4,1,""],parse:[175,3,1,""],search_index_entry:[175,4,1,""],switch_options:[175,4,1,""]},"evennia.commands.default.general.CmdPose":{aliases:[175,4,1,""],func:[175,3,1,""],help_category:[175,4,1,""],key:[175,4,1,""],lock_storage:[175,4,1,""],locks:[175,4,1,""],parse:[175,3,1,""],search_index_entry:[175,4,1,""]},"evennia.commands.default.general.CmdSay":{aliases:[175,4,1,""],func:[175,3,1,""],help_category:[175,4,1,""],key:[175,4,1,""],lock_storage:[175,4,1,""],locks:[175,4,1,""],search_index_entry:[175,4,1,""]},"evennia.commands.default.general.CmdSetDesc":{aliases:[175,4,1,""],arg_regex:[175,4,1,""],func:[175,3,1,""],help_category:[175,4,1,""],key:[175,4,1,""],lock_storage:[175,4,1,""],locks:[175,4,1,""],search_index_entry:[175,4,1,""]},"evennia.commands.default.general.CmdWhisper":{aliases:[175,4,1,""],func:[175,3,1,""],help_category:[175,4,1,""],key:[175,4,1,""],lock_storage:[175,4,1,""],locks:[175,4,1,""],search_index_entry:[175,4,1,""]},"evennia.commands.default.help":{CmdHelp:[176,1,1,""],CmdSetHelp:[176,1,1,""]},"evennia.commands.default.help.CmdHelp":{aliases:[176,4,1,""],arg_regex:[176,4,1,""],check_show_help:[176,3,1,""],format_help_entry:[176,3,1,""],format_help_list:[176,3,1,""],func:[176,3,1,""],help_category:[176,4,1,""],help_more:[176,4,1,""],key:[176,4,1,""],lock_storage:[176,4,1,""],locks:[176,4,1,""],msg_help:[176,3,1,""],parse:[176,3,1,""],return_cmdset:[176,4,1,""],search_index_entry:[176,4,1,""],should_list_cmd:[176,3,1,""],suggestion_cutoff:[176,4,1,""],suggestion_maxnum:[176,4,1,""]},"evennia.commands.default.help.CmdSetHelp":{aliases:[176,4,1,""],func:[176,3,1,""],help_category:[176,4,1,""],key:[176,4,1,""],lock_storage:[176,4,1,""],locks:[176,4,1,""],search_index_entry:[176,4,1,""],switch_options:[176,4,1,""]},"evennia.commands.default.muxcommand":{MuxAccountCommand:[177,1,1,""],MuxCommand:[177,1,1,""]},"evennia.commands.default.muxcommand.MuxAccountCommand":{account_caller:[177,4,1,""],aliases:[177,4,1,""],help_category:[177,4,1,""],key:[177,4,1,""],lock_storage:[177,4,1,""],search_index_entry:[177,4,1,""]},"evennia.commands.default.muxcommand.MuxCommand":{aliases:[177,4,1,""],at_post_cmd:[177,3,1,""],at_pre_cmd:[177,3,1,""],func:[177,3,1,""],get_command_info:[177,3,1,""],has_perm:[177,3,1,""],help_category:[177,4,1,""],key:[177,4,1,""],lock_storage:[177,4,1,""],parse:[177,3,1,""],search_index_entry:[177,4,1,""]},"evennia.commands.default.syscommands":{SystemMultimatch:[178,1,1,""],SystemNoInput:[178,1,1,""],SystemNoMatch:[178,1,1,""],SystemSendToChannel:[178,1,1,""]},"evennia.commands.default.syscommands.SystemMultimatch":{aliases:[178,4,1,""],func:[178,3,1,""],help_category:[178,4,1,""],key:[178,4,1,""],lock_storage:[178,4,1,""],locks:[178,4,1,""],search_index_entry:[178,4,1,""]},"evennia.commands.default.syscommands.SystemNoInput":{aliases:[178,4,1,""],func:[178,3,1,""],help_category:[178,4,1,""],key:[178,4,1,""],lock_storage:[178,4,1,""],locks:[178,4,1,""],search_index_entry:[178,4,1,""]},"evennia.commands.default.syscommands.SystemNoMatch":{aliases:[178,4,1,""],func:[178,3,1,""],help_category:[178,4,1,""],key:[178,4,1,""],lock_storage:[178,4,1,""],locks:[178,4,1,""],search_index_entry:[178,4,1,""]},"evennia.commands.default.syscommands.SystemSendToChannel":{aliases:[178,4,1,""],func:[178,3,1,""],help_category:[178,4,1,""],key:[178,4,1,""],lock_storage:[178,4,1,""],locks:[178,4,1,""],parse:[178,3,1,""],search_index_entry:[178,4,1,""]},"evennia.commands.default.system":{CmdAbout:[179,1,1,""],CmdObjects:[179,1,1,""],CmdPy:[179,1,1,""],CmdReload:[179,1,1,""],CmdReset:[179,1,1,""],CmdScripts:[179,1,1,""],CmdServerLoad:[179,1,1,""],CmdService:[179,1,1,""],CmdShutdown:[179,1,1,""],CmdTime:[179,1,1,""]},"evennia.commands.default.system.CmdAbout":{aliases:[179,4,1,""],func:[179,3,1,""],help_category:[179,4,1,""],key:[179,4,1,""],lock_storage:[179,4,1,""],locks:[179,4,1,""],search_index_entry:[179,4,1,""]},"evennia.commands.default.system.CmdObjects":{aliases:[179,4,1,""],func:[179,3,1,""],help_category:[179,4,1,""],key:[179,4,1,""],lock_storage:[179,4,1,""],locks:[179,4,1,""],search_index_entry:[179,4,1,""]},"evennia.commands.default.system.CmdPy":{aliases:[179,4,1,""],func:[179,3,1,""],help_category:[179,4,1,""],key:[179,4,1,""],lock_storage:[179,4,1,""],locks:[179,4,1,""],search_index_entry:[179,4,1,""],switch_options:[179,4,1,""]},"evennia.commands.default.system.CmdReload":{aliases:[179,4,1,""],func:[179,3,1,""],help_category:[179,4,1,""],key:[179,4,1,""],lock_storage:[179,4,1,""],locks:[179,4,1,""],search_index_entry:[179,4,1,""]},"evennia.commands.default.system.CmdReset":{aliases:[179,4,1,""],func:[179,3,1,""],help_category:[179,4,1,""],key:[179,4,1,""],lock_storage:[179,4,1,""],locks:[179,4,1,""],search_index_entry:[179,4,1,""]},"evennia.commands.default.system.CmdScripts":{aliases:[179,4,1,""],excluded_typeclass_paths:[179,4,1,""],func:[179,3,1,""],help_category:[179,4,1,""],key:[179,4,1,""],lock_storage:[179,4,1,""],locks:[179,4,1,""],search_index_entry:[179,4,1,""],switch_options:[179,4,1,""]},"evennia.commands.default.system.CmdServerLoad":{aliases:[179,4,1,""],func:[179,3,1,""],help_category:[179,4,1,""],key:[179,4,1,""],lock_storage:[179,4,1,""],locks:[179,4,1,""],search_index_entry:[179,4,1,""],switch_options:[179,4,1,""]},"evennia.commands.default.system.CmdService":{aliases:[179,4,1,""],func:[179,3,1,""],help_category:[179,4,1,""],key:[179,4,1,""],lock_storage:[179,4,1,""],locks:[179,4,1,""],search_index_entry:[179,4,1,""],switch_options:[179,4,1,""]},"evennia.commands.default.system.CmdShutdown":{aliases:[179,4,1,""],func:[179,3,1,""],help_category:[179,4,1,""],key:[179,4,1,""],lock_storage:[179,4,1,""],locks:[179,4,1,""],search_index_entry:[179,4,1,""]},"evennia.commands.default.system.CmdTime":{aliases:[179,4,1,""],func:[179,3,1,""],help_category:[179,4,1,""],key:[179,4,1,""],lock_storage:[179,4,1,""],locks:[179,4,1,""],search_index_entry:[179,4,1,""]},"evennia.commands.default.tests":{CmdInterrupt:[180,1,1,""],CommandTest:[180,1,1,""],TestAccount:[180,1,1,""],TestAdmin:[180,1,1,""],TestBatchProcess:[180,1,1,""],TestBuilding:[180,1,1,""],TestComms:[180,1,1,""],TestGeneral:[180,1,1,""],TestHelp:[180,1,1,""],TestInterruptCommand:[180,1,1,""],TestSystem:[180,1,1,""],TestSystemCommands:[180,1,1,""],TestUnconnectedCommand:[180,1,1,""]},"evennia.commands.default.tests.CmdInterrupt":{aliases:[180,4,1,""],func:[180,3,1,""],help_category:[180,4,1,""],key:[180,4,1,""],lock_storage:[180,4,1,""],parse:[180,3,1,""],search_index_entry:[180,4,1,""]},"evennia.commands.default.tests.CommandTest":{call:[180,3,1,""]},"evennia.commands.default.tests.TestAccount":{test_char_create:[180,3,1,""],test_char_delete:[180,3,1,""],test_color_test:[180,3,1,""],test_ic:[180,3,1,""],test_ooc:[180,3,1,""],test_ooc_look:[180,3,1,""],test_option:[180,3,1,""],test_password:[180,3,1,""],test_quell:[180,3,1,""],test_quit:[180,3,1,""],test_sessions:[180,3,1,""],test_who:[180,3,1,""]},"evennia.commands.default.tests.TestAdmin":{test_ban:[180,3,1,""],test_emit:[180,3,1,""],test_force:[180,3,1,""],test_perm:[180,3,1,""],test_wall:[180,3,1,""]},"evennia.commands.default.tests.TestBatchProcess":{test_batch_commands:[180,3,1,""]},"evennia.commands.default.tests.TestBuilding":{test_attribute_commands:[180,3,1,""],test_copy:[180,3,1,""],test_create:[180,3,1,""],test_desc:[180,3,1,""],test_desc_default_to_room:[180,3,1,""],test_destroy:[180,3,1,""],test_destroy_sequence:[180,3,1,""],test_dig:[180,3,1,""],test_do_nested_lookup:[180,3,1,""],test_empty_desc:[180,3,1,""],test_examine:[180,3,1,""],test_exit_commands:[180,3,1,""],test_find:[180,3,1,""],test_list_cmdsets:[180,3,1,""],test_lock:[180,3,1,""],test_name:[180,3,1,""],test_nested_attribute_commands:[180,3,1,""],test_script:[180,3,1,""],test_set_home:[180,3,1,""],test_set_obj_alias:[180,3,1,""],test_spawn:[180,3,1,""],test_split_nested_attr:[180,3,1,""],test_tag:[180,3,1,""],test_teleport:[180,3,1,""],test_tunnel:[180,3,1,""],test_tunnel_exit_typeclass:[180,3,1,""],test_typeclass:[180,3,1,""]},"evennia.commands.default.tests.TestComms":{setUp:[180,3,1,""],test_all_com:[180,3,1,""],test_cboot:[180,3,1,""],test_cdesc:[180,3,1,""],test_cdestroy:[180,3,1,""],test_cemit:[180,3,1,""],test_channels:[180,3,1,""],test_clock:[180,3,1,""],test_cwho:[180,3,1,""],test_page:[180,3,1,""],test_toggle_com:[180,3,1,""]},"evennia.commands.default.tests.TestGeneral":{test_access:[180,3,1,""],test_get_and_drop:[180,3,1,""],test_give:[180,3,1,""],test_home:[180,3,1,""],test_inventory:[180,3,1,""],test_look:[180,3,1,""],test_mux_command:[180,3,1,""],test_nick:[180,3,1,""],test_pose:[180,3,1,""],test_say:[180,3,1,""],test_whisper:[180,3,1,""]},"evennia.commands.default.tests.TestHelp":{setUp:[180,3,1,""],tearDown:[180,3,1,""],test_help:[180,3,1,""],test_set_help:[180,3,1,""]},"evennia.commands.default.tests.TestInterruptCommand":{test_interrupt_command:[180,3,1,""]},"evennia.commands.default.tests.TestSystem":{test_about:[180,3,1,""],test_objects:[180,3,1,""],test_py:[180,3,1,""],test_scripts:[180,3,1,""],test_server_load:[180,3,1,""]},"evennia.commands.default.tests.TestSystemCommands":{test_channelcommand:[180,3,1,""],test_multimatch:[180,3,1,""],test_simple_defaults:[180,3,1,""]},"evennia.commands.default.tests.TestUnconnectedCommand":{test_info_command:[180,3,1,""]},"evennia.commands.default.unloggedin":{CmdUnconnectedConnect:[181,1,1,""],CmdUnconnectedCreate:[181,1,1,""],CmdUnconnectedHelp:[181,1,1,""],CmdUnconnectedLook:[181,1,1,""],CmdUnconnectedQuit:[181,1,1,""]},"evennia.commands.default.unloggedin.CmdUnconnectedConnect":{aliases:[181,4,1,""],arg_regex:[181,4,1,""],func:[181,3,1,""],help_category:[181,4,1,""],key:[181,4,1,""],lock_storage:[181,4,1,""],locks:[181,4,1,""],search_index_entry:[181,4,1,""]},"evennia.commands.default.unloggedin.CmdUnconnectedCreate":{aliases:[181,4,1,""],arg_regex:[181,4,1,""],func:[181,3,1,""],help_category:[181,4,1,""],key:[181,4,1,""],lock_storage:[181,4,1,""],locks:[181,4,1,""],search_index_entry:[181,4,1,""]},"evennia.commands.default.unloggedin.CmdUnconnectedHelp":{aliases:[181,4,1,""],func:[181,3,1,""],help_category:[181,4,1,""],key:[181,4,1,""],lock_storage:[181,4,1,""],locks:[181,4,1,""],search_index_entry:[181,4,1,""]},"evennia.commands.default.unloggedin.CmdUnconnectedLook":{aliases:[181,4,1,""],func:[181,3,1,""],help_category:[181,4,1,""],key:[181,4,1,""],lock_storage:[181,4,1,""],locks:[181,4,1,""],search_index_entry:[181,4,1,""]},"evennia.commands.default.unloggedin.CmdUnconnectedQuit":{aliases:[181,4,1,""],func:[181,3,1,""],help_category:[181,4,1,""],key:[181,4,1,""],lock_storage:[181,4,1,""],locks:[181,4,1,""],search_index_entry:[181,4,1,""]},"evennia.comms":{admin:[183,0,0,"-"],channelhandler:[184,0,0,"-"],comms:[185,0,0,"-"],managers:[186,0,0,"-"],models:[187,0,0,"-"]},"evennia.comms.admin":{ChannelAdmin:[183,1,1,""],ChannelAttributeInline:[183,1,1,""],ChannelTagInline:[183,1,1,""],MsgAdmin:[183,1,1,""]},"evennia.comms.admin.ChannelAdmin":{fieldsets:[183,4,1,""],inlines:[183,4,1,""],list_display:[183,4,1,""],list_display_links:[183,4,1,""],list_select_related:[183,4,1,""],media:[183,3,1,""],ordering:[183,4,1,""],raw_id_fields:[183,4,1,""],response_add:[183,3,1,""],save_as:[183,4,1,""],save_model:[183,3,1,""],save_on_top:[183,4,1,""],search_fields:[183,4,1,""],subscriptions:[183,3,1,""]},"evennia.comms.admin.ChannelAttributeInline":{media:[183,3,1,""],model:[183,4,1,""],related_field:[183,4,1,""]},"evennia.comms.admin.ChannelTagInline":{media:[183,3,1,""],model:[183,4,1,""],related_field:[183,4,1,""]},"evennia.comms.admin.MsgAdmin":{list_display:[183,4,1,""],list_display_links:[183,4,1,""],list_select_related:[183,4,1,""],media:[183,3,1,""],ordering:[183,4,1,""],save_as:[183,4,1,""],save_on_top:[183,4,1,""],search_fields:[183,4,1,""]},"evennia.comms.channelhandler":{ChannelCommand:[184,1,1,""],ChannelHandler:[184,1,1,""]},"evennia.comms.channelhandler.ChannelCommand":{aliases:[184,4,1,""],arg_regex:[184,4,1,""],func:[184,3,1,""],get_extra_info:[184,3,1,""],help_category:[184,4,1,""],is_channel:[184,4,1,""],key:[184,4,1,""],lock_storage:[184,4,1,""],obj:[184,4,1,""],parse:[184,3,1,""],search_index_entry:[184,4,1,""]},"evennia.comms.channelhandler.ChannelHandler":{__init__:[184,3,1,""],add:[184,3,1,""],add_channel:[184,3,1,""],clear:[184,3,1,""],get:[184,3,1,""],get_cmdset:[184,3,1,""],remove:[184,3,1,""],update:[184,3,1,""]},"evennia.comms.comms":{DefaultChannel:[185,1,1,""]},"evennia.comms.comms.DefaultChannel":{"delete":[185,3,1,""],DoesNotExist:[185,2,1,""],MultipleObjectsReturned:[185,2,1,""],access:[185,3,1,""],at_channel_creation:[185,3,1,""],at_first_save:[185,3,1,""],at_init:[185,3,1,""],basetype_setup:[185,3,1,""],channel_prefix:[185,3,1,""],connect:[185,3,1,""],create:[185,3,1,""],disconnect:[185,3,1,""],distribute_message:[185,3,1,""],format_external:[185,3,1,""],format_message:[185,3,1,""],format_senders:[185,3,1,""],get_absolute_url:[185,3,1,""],has_connection:[185,3,1,""],message_transform:[185,3,1,""],msg:[185,3,1,""],mute:[185,3,1,""],mutelist:[185,3,1,""],objects:[185,4,1,""],path:[185,4,1,""],pose_transform:[185,3,1,""],post_join_channel:[185,3,1,""],post_leave_channel:[185,3,1,""],post_send_message:[185,3,1,""],pre_join_channel:[185,3,1,""],pre_leave_channel:[185,3,1,""],pre_send_message:[185,3,1,""],tempmsg:[185,3,1,""],typename:[185,4,1,""],unmute:[185,3,1,""],web_get_admin_url:[185,3,1,""],web_get_create_url:[185,3,1,""],web_get_delete_url:[185,3,1,""],web_get_detail_url:[185,3,1,""],web_get_update_url:[185,3,1,""],wholist:[185,3,1,""]},"evennia.comms.managers":{ChannelDBManager:[186,1,1,""],ChannelManager:[186,1,1,""],CommError:[186,2,1,""],MsgManager:[186,1,1,""],identify_object:[186,5,1,""],to_object:[186,5,1,""]},"evennia.comms.managers.ChannelDBManager":{channel_search:[186,3,1,""],get_all_channels:[186,3,1,""],get_channel:[186,3,1,""],get_subscriptions:[186,3,1,""],search_channel:[186,3,1,""]},"evennia.comms.managers.MsgManager":{get_message_by_id:[186,3,1,""],get_messages_by_channel:[186,3,1,""],get_messages_by_receiver:[186,3,1,""],get_messages_by_sender:[186,3,1,""],identify_object:[186,3,1,""],message_search:[186,3,1,""],search_message:[186,3,1,""]},"evennia.comms.models":{ChannelDB:[187,1,1,""],Msg:[187,1,1,""],TempMsg:[187,1,1,""]},"evennia.comms.models.ChannelDB":{DoesNotExist:[187,2,1,""],MultipleObjectsReturned:[187,2,1,""],channel_set:[187,4,1,""],db_account_subscriptions:[187,4,1,""],db_attributes:[187,4,1,""],db_object_subscriptions:[187,4,1,""],db_tags:[187,4,1,""],get_next_by_db_date_created:[187,3,1,""],get_previous_by_db_date_created:[187,3,1,""],hide_from_channels_set:[187,4,1,""],id:[187,4,1,""],objects:[187,4,1,""],path:[187,4,1,""],subscriptions:[187,4,1,""],typename:[187,4,1,""]},"evennia.comms.models.Msg":{DoesNotExist:[187,2,1,""],MultipleObjectsReturned:[187,2,1,""],__init__:[187,3,1,""],access:[187,3,1,""],channels:[187,3,1,""],date_created:[187,3,1,""],db_date_created:[187,4,1,""],db_header:[187,4,1,""],db_hide_from_accounts:[187,4,1,""],db_hide_from_channels:[187,4,1,""],db_hide_from_objects:[187,4,1,""],db_lock_storage:[187,4,1,""],db_message:[187,4,1,""],db_receivers_accounts:[187,4,1,""],db_receivers_channels:[187,4,1,""],db_receivers_objects:[187,4,1,""],db_receivers_scripts:[187,4,1,""],db_sender_accounts:[187,4,1,""],db_sender_external:[187,4,1,""],db_sender_objects:[187,4,1,""],db_sender_scripts:[187,4,1,""],db_tags:[187,4,1,""],get_next_by_db_date_created:[187,3,1,""],get_previous_by_db_date_created:[187,3,1,""],header:[187,3,1,""],hide_from:[187,3,1,""],id:[187,4,1,""],lock_storage:[187,3,1,""],locks:[187,4,1,""],message:[187,3,1,""],objects:[187,4,1,""],path:[187,4,1,""],receivers:[187,3,1,""],remove_receiver:[187,3,1,""],remove_sender:[187,3,1,""],sender_external:[187,3,1,""],senders:[187,3,1,""],tags:[187,4,1,""],typename:[187,4,1,""]},"evennia.comms.models.TempMsg":{__init__:[187,3,1,""],access:[187,3,1,""],locks:[187,4,1,""],remove_receiver:[187,3,1,""],remove_sender:[187,3,1,""]},"evennia.contrib":{awsstorage:[189,0,0,"-"],barter:[192,0,0,"-"],building_menu:[193,0,0,"-"],chargen:[194,0,0,"-"],clothing:[195,0,0,"-"],color_markups:[196,0,0,"-"],custom_gametime:[197,0,0,"-"],dice:[198,0,0,"-"],email_login:[199,0,0,"-"],extended_room:[200,0,0,"-"],fieldfill:[201,0,0,"-"],gendersub:[202,0,0,"-"],health_bar:[203,0,0,"-"],ingame_python:[204,0,0,"-"],mail:[212,0,0,"-"],mapbuilder:[213,0,0,"-"],menu_login:[214,0,0,"-"],multidescer:[215,0,0,"-"],puzzles:[216,0,0,"-"],random_string_generator:[217,0,0,"-"],rplanguage:[218,0,0,"-"],rpsystem:[219,0,0,"-"],security:[220,0,0,"-"],simpledoor:[225,0,0,"-"],slow_exit:[226,0,0,"-"],talking_npc:[227,0,0,"-"],test_traits:[228,0,0,"-"],traits:[229,0,0,"-"],tree_select:[230,0,0,"-"],turnbattle:[231,0,0,"-"],tutorial_examples:[237,0,0,"-"],tutorial_world:[245,0,0,"-"],unixcommand:[249,0,0,"-"],wilderness:[250,0,0,"-"]},"evennia.contrib.awsstorage":{aws_s3_cdn:[190,0,0,"-"],tests:[191,0,0,"-"]},"evennia.contrib.awsstorage.aws_s3_cdn":{S3Boto3Storage:[190,1,1,""],S3Boto3StorageFile:[190,1,1,""],check_location:[190,5,1,""],get_available_overwrite_name:[190,5,1,""],lookup_env:[190,5,1,""],safe_join:[190,5,1,""],setting:[190,5,1,""]},"evennia.contrib.awsstorage.aws_s3_cdn.S3Boto3Storage":{"delete":[190,3,1,""],__init__:[190,3,1,""],access_key:[190,4,1,""],access_key_names:[190,4,1,""],addressing_style:[190,4,1,""],auto_create_bucket:[190,4,1,""],bucket:[190,3,1,""],bucket_acl:[190,4,1,""],bucket_name:[190,4,1,""],config:[190,4,1,""],connection:[190,3,1,""],custom_domain:[190,4,1,""],deconstruct:[190,3,1,""],default_acl:[190,4,1,""],default_content_type:[190,4,1,""],encryption:[190,4,1,""],endpoint_url:[190,4,1,""],entries:[190,3,1,""],exists:[190,3,1,""],file_name_charset:[190,4,1,""],file_overwrite:[190,4,1,""],get_available_name:[190,3,1,""],get_modified_time:[190,3,1,""],get_object_parameters:[190,3,1,""],gzip:[190,4,1,""],gzip_content_types:[190,4,1,""],listdir:[190,3,1,""],location:[190,4,1,""],max_memory_size:[190,4,1,""],modified_time:[190,3,1,""],object_parameters:[190,4,1,""],preload_metadata:[190,4,1,""],proxies:[190,4,1,""],querystring_auth:[190,4,1,""],querystring_expire:[190,4,1,""],reduced_redundancy:[190,4,1,""],region_name:[190,4,1,""],secret_key:[190,4,1,""],secret_key_names:[190,4,1,""],secure_urls:[190,4,1,""],security_token:[190,4,1,""],security_token_names:[190,4,1,""],signature_version:[190,4,1,""],size:[190,3,1,""],url:[190,3,1,""],url_protocol:[190,4,1,""],use_ssl:[190,4,1,""],verify:[190,4,1,""]},"evennia.contrib.awsstorage.aws_s3_cdn.S3Boto3StorageFile":{__init__:[190,3,1,""],buffer_size:[190,4,1,""],close:[190,3,1,""],deconstruct:[190,3,1,""],file:[190,3,1,""],read:[190,3,1,""],readline:[190,3,1,""],size:[190,3,1,""],write:[190,3,1,""]},"evennia.contrib.awsstorage.tests":{S3Boto3StorageTests:[191,1,1,""],S3Boto3TestCase:[191,1,1,""]},"evennia.contrib.awsstorage.tests.S3Boto3StorageTests":{test_auto_creating_bucket:[191,3,1,""],test_auto_creating_bucket_with_acl:[191,3,1,""],test_clean_name:[191,3,1,""],test_clean_name_normalize:[191,3,1,""],test_clean_name_trailing_slash:[191,3,1,""],test_clean_name_windows:[191,3,1,""],test_compress_content_len:[191,3,1,""],test_connection_threading:[191,3,1,""],test_content_type:[191,3,1,""],test_generated_url_is_encoded:[191,3,1,""],test_location_leading_slash:[191,3,1,""],test_override_class_variable:[191,3,1,""],test_override_init_argument:[191,3,1,""],test_pickle_with_bucket:[191,3,1,""],test_pickle_without_bucket:[191,3,1,""],test_special_characters:[191,3,1,""],test_storage_delete:[191,3,1,""],test_storage_exists:[191,3,1,""],test_storage_exists_doesnt_create_bucket:[191,3,1,""],test_storage_exists_false:[191,3,1,""],test_storage_listdir_base:[191,3,1,""],test_storage_listdir_subdir:[191,3,1,""],test_storage_mtime:[191,3,1,""],test_storage_open_no_overwrite_existing:[191,3,1,""],test_storage_open_no_write:[191,3,1,""],test_storage_open_write:[191,3,1,""],test_storage_save:[191,3,1,""],test_storage_save_gzip:[191,3,1,""],test_storage_save_gzip_twice:[191,3,1,""],test_storage_save_gzipped:[191,3,1,""],test_storage_save_with_acl:[191,3,1,""],test_storage_size:[191,3,1,""],test_storage_url:[191,3,1,""],test_storage_url_slashes:[191,3,1,""],test_storage_write_beyond_buffer_size:[191,3,1,""],test_strip_signing_parameters:[191,3,1,""]},"evennia.contrib.awsstorage.tests.S3Boto3TestCase":{setUp:[191,3,1,""]},"evennia.contrib.barter":{CmdAccept:[192,1,1,""],CmdDecline:[192,1,1,""],CmdEvaluate:[192,1,1,""],CmdFinish:[192,1,1,""],CmdOffer:[192,1,1,""],CmdStatus:[192,1,1,""],CmdTrade:[192,1,1,""],CmdTradeBase:[192,1,1,""],CmdTradeHelp:[192,1,1,""],CmdsetTrade:[192,1,1,""],TradeHandler:[192,1,1,""],TradeTimeout:[192,1,1,""]},"evennia.contrib.barter.CmdAccept":{aliases:[192,4,1,""],func:[192,3,1,""],help_category:[192,4,1,""],key:[192,4,1,""],lock_storage:[192,4,1,""],locks:[192,4,1,""],search_index_entry:[192,4,1,""]},"evennia.contrib.barter.CmdDecline":{aliases:[192,4,1,""],func:[192,3,1,""],help_category:[192,4,1,""],key:[192,4,1,""],lock_storage:[192,4,1,""],locks:[192,4,1,""],search_index_entry:[192,4,1,""]},"evennia.contrib.barter.CmdEvaluate":{aliases:[192,4,1,""],func:[192,3,1,""],help_category:[192,4,1,""],key:[192,4,1,""],lock_storage:[192,4,1,""],locks:[192,4,1,""],search_index_entry:[192,4,1,""]},"evennia.contrib.barter.CmdFinish":{aliases:[192,4,1,""],func:[192,3,1,""],help_category:[192,4,1,""],key:[192,4,1,""],lock_storage:[192,4,1,""],locks:[192,4,1,""],search_index_entry:[192,4,1,""]},"evennia.contrib.barter.CmdOffer":{aliases:[192,4,1,""],func:[192,3,1,""],help_category:[192,4,1,""],key:[192,4,1,""],lock_storage:[192,4,1,""],locks:[192,4,1,""],search_index_entry:[192,4,1,""]},"evennia.contrib.barter.CmdStatus":{aliases:[192,4,1,""],func:[192,3,1,""],help_category:[192,4,1,""],key:[192,4,1,""],lock_storage:[192,4,1,""],locks:[192,4,1,""],search_index_entry:[192,4,1,""]},"evennia.contrib.barter.CmdTrade":{aliases:[192,4,1,""],func:[192,3,1,""],help_category:[192,4,1,""],key:[192,4,1,""],lock_storage:[192,4,1,""],locks:[192,4,1,""],search_index_entry:[192,4,1,""]},"evennia.contrib.barter.CmdTradeBase":{aliases:[192,4,1,""],help_category:[192,4,1,""],key:[192,4,1,""],lock_storage:[192,4,1,""],parse:[192,3,1,""],search_index_entry:[192,4,1,""]},"evennia.contrib.barter.CmdTradeHelp":{aliases:[192,4,1,""],func:[192,3,1,""],help_category:[192,4,1,""],key:[192,4,1,""],lock_storage:[192,4,1,""],locks:[192,4,1,""],search_index_entry:[192,4,1,""]},"evennia.contrib.barter.CmdsetTrade":{at_cmdset_creation:[192,3,1,""],key:[192,4,1,""],path:[192,4,1,""]},"evennia.contrib.barter.TradeHandler":{__init__:[192,3,1,""],accept:[192,3,1,""],decline:[192,3,1,""],finish:[192,3,1,""],get_other:[192,3,1,""],join:[192,3,1,""],list:[192,3,1,""],msg_other:[192,3,1,""],offer:[192,3,1,""],search:[192,3,1,""],unjoin:[192,3,1,""]},"evennia.contrib.barter.TradeTimeout":{DoesNotExist:[192,2,1,""],MultipleObjectsReturned:[192,2,1,""],at_repeat:[192,3,1,""],at_script_creation:[192,3,1,""],is_valid:[192,3,1,""],path:[192,4,1,""],typename:[192,4,1,""]},"evennia.contrib.building_menu":{BuildingMenu:[193,1,1,""],BuildingMenuCmdSet:[193,1,1,""],Choice:[193,1,1,""],CmdNoInput:[193,1,1,""],CmdNoMatch:[193,1,1,""],GenericBuildingCmd:[193,1,1,""],GenericBuildingMenu:[193,1,1,""],menu_edit:[193,5,1,""],menu_quit:[193,5,1,""],menu_setattr:[193,5,1,""]},"evennia.contrib.building_menu.BuildingMenu":{__init__:[193,3,1,""],add_choice:[193,3,1,""],add_choice_edit:[193,3,1,""],add_choice_quit:[193,3,1,""],close:[193,3,1,""],current_choice:[193,3,1,""],display:[193,3,1,""],display_choice:[193,3,1,""],display_title:[193,3,1,""],init:[193,3,1,""],joker_key:[193,4,1,""],keys_go_back:[193,4,1,""],min_shortcut:[193,4,1,""],move:[193,3,1,""],open:[193,3,1,""],open_parent_menu:[193,3,1,""],open_submenu:[193,3,1,""],relevant_choices:[193,3,1,""],restore:[193,3,1,""],sep_keys:[193,4,1,""]},"evennia.contrib.building_menu.BuildingMenuCmdSet":{at_cmdset_creation:[193,3,1,""],key:[193,4,1,""],path:[193,4,1,""],priority:[193,4,1,""]},"evennia.contrib.building_menu.Choice":{__init__:[193,3,1,""],enter:[193,3,1,""],format_text:[193,3,1,""],keys:[193,3,1,""],leave:[193,3,1,""],nomatch:[193,3,1,""]},"evennia.contrib.building_menu.CmdNoInput":{__init__:[193,3,1,""],aliases:[193,4,1,""],func:[193,3,1,""],help_category:[193,4,1,""],key:[193,4,1,""],lock_storage:[193,4,1,""],locks:[193,4,1,""],search_index_entry:[193,4,1,""]},"evennia.contrib.building_menu.CmdNoMatch":{__init__:[193,3,1,""],aliases:[193,4,1,""],func:[193,3,1,""],help_category:[193,4,1,""],key:[193,4,1,""],lock_storage:[193,4,1,""],locks:[193,4,1,""],search_index_entry:[193,4,1,""]},"evennia.contrib.building_menu.GenericBuildingCmd":{aliases:[193,4,1,""],func:[193,3,1,""],help_category:[193,4,1,""],key:[193,4,1,""],lock_storage:[193,4,1,""],search_index_entry:[193,4,1,""]},"evennia.contrib.building_menu.GenericBuildingMenu":{init:[193,3,1,""]},"evennia.contrib.chargen":{CmdOOCCharacterCreate:[194,1,1,""],CmdOOCLook:[194,1,1,""],OOCCmdSetCharGen:[194,1,1,""]},"evennia.contrib.chargen.CmdOOCCharacterCreate":{aliases:[194,4,1,""],func:[194,3,1,""],help_category:[194,4,1,""],key:[194,4,1,""],lock_storage:[194,4,1,""],locks:[194,4,1,""],search_index_entry:[194,4,1,""]},"evennia.contrib.chargen.CmdOOCLook":{aliases:[194,4,1,""],func:[194,3,1,""],help_category:[194,4,1,""],key:[194,4,1,""],lock_storage:[194,4,1,""],locks:[194,4,1,""],search_index_entry:[194,4,1,""]},"evennia.contrib.chargen.OOCCmdSetCharGen":{at_cmdset_creation:[194,3,1,""],path:[194,4,1,""]},"evennia.contrib.clothing":{ClothedCharacter:[195,1,1,""],ClothedCharacterCmdSet:[195,1,1,""],Clothing:[195,1,1,""],CmdCover:[195,1,1,""],CmdDrop:[195,1,1,""],CmdGive:[195,1,1,""],CmdInventory:[195,1,1,""],CmdRemove:[195,1,1,""],CmdUncover:[195,1,1,""],CmdWear:[195,1,1,""],clothing_type_count:[195,5,1,""],get_worn_clothes:[195,5,1,""],order_clothes_list:[195,5,1,""],single_type_count:[195,5,1,""]},"evennia.contrib.clothing.ClothedCharacter":{DoesNotExist:[195,2,1,""],MultipleObjectsReturned:[195,2,1,""],path:[195,4,1,""],return_appearance:[195,3,1,""],typename:[195,4,1,""]},"evennia.contrib.clothing.ClothedCharacterCmdSet":{at_cmdset_creation:[195,3,1,""],key:[195,4,1,""],path:[195,4,1,""]},"evennia.contrib.clothing.Clothing":{DoesNotExist:[195,2,1,""],MultipleObjectsReturned:[195,2,1,""],at_get:[195,3,1,""],path:[195,4,1,""],remove:[195,3,1,""],typename:[195,4,1,""],wear:[195,3,1,""]},"evennia.contrib.clothing.CmdCover":{aliases:[195,4,1,""],func:[195,3,1,""],help_category:[195,4,1,""],key:[195,4,1,""],lock_storage:[195,4,1,""],search_index_entry:[195,4,1,""]},"evennia.contrib.clothing.CmdDrop":{aliases:[195,4,1,""],arg_regex:[195,4,1,""],func:[195,3,1,""],help_category:[195,4,1,""],key:[195,4,1,""],lock_storage:[195,4,1,""],locks:[195,4,1,""],search_index_entry:[195,4,1,""]},"evennia.contrib.clothing.CmdGive":{aliases:[195,4,1,""],arg_regex:[195,4,1,""],func:[195,3,1,""],help_category:[195,4,1,""],key:[195,4,1,""],lock_storage:[195,4,1,""],locks:[195,4,1,""],search_index_entry:[195,4,1,""]},"evennia.contrib.clothing.CmdInventory":{aliases:[195,4,1,""],arg_regex:[195,4,1,""],func:[195,3,1,""],help_category:[195,4,1,""],key:[195,4,1,""],lock_storage:[195,4,1,""],locks:[195,4,1,""],search_index_entry:[195,4,1,""]},"evennia.contrib.clothing.CmdRemove":{aliases:[195,4,1,""],func:[195,3,1,""],help_category:[195,4,1,""],key:[195,4,1,""],lock_storage:[195,4,1,""],search_index_entry:[195,4,1,""]},"evennia.contrib.clothing.CmdUncover":{aliases:[195,4,1,""],func:[195,3,1,""],help_category:[195,4,1,""],key:[195,4,1,""],lock_storage:[195,4,1,""],search_index_entry:[195,4,1,""]},"evennia.contrib.clothing.CmdWear":{aliases:[195,4,1,""],func:[195,3,1,""],help_category:[195,4,1,""],key:[195,4,1,""],lock_storage:[195,4,1,""],search_index_entry:[195,4,1,""]},"evennia.contrib.custom_gametime":{GametimeScript:[197,1,1,""],custom_gametime:[197,5,1,""],gametime_to_realtime:[197,5,1,""],real_seconds_until:[197,5,1,""],realtime_to_gametime:[197,5,1,""],schedule:[197,5,1,""],time_to_tuple:[197,5,1,""]},"evennia.contrib.custom_gametime.GametimeScript":{DoesNotExist:[197,2,1,""],MultipleObjectsReturned:[197,2,1,""],at_repeat:[197,3,1,""],at_script_creation:[197,3,1,""],path:[197,4,1,""],typename:[197,4,1,""]},"evennia.contrib.dice":{CmdDice:[198,1,1,""],DiceCmdSet:[198,1,1,""],roll_dice:[198,5,1,""]},"evennia.contrib.dice.CmdDice":{aliases:[198,4,1,""],func:[198,3,1,""],help_category:[198,4,1,""],key:[198,4,1,""],lock_storage:[198,4,1,""],locks:[198,4,1,""],search_index_entry:[198,4,1,""]},"evennia.contrib.dice.DiceCmdSet":{at_cmdset_creation:[198,3,1,""],path:[198,4,1,""]},"evennia.contrib.email_login":{CmdUnconnectedConnect:[199,1,1,""],CmdUnconnectedCreate:[199,1,1,""],CmdUnconnectedHelp:[199,1,1,""],CmdUnconnectedLook:[199,1,1,""],CmdUnconnectedQuit:[199,1,1,""]},"evennia.contrib.email_login.CmdUnconnectedConnect":{aliases:[199,4,1,""],func:[199,3,1,""],help_category:[199,4,1,""],key:[199,4,1,""],lock_storage:[199,4,1,""],locks:[199,4,1,""],search_index_entry:[199,4,1,""]},"evennia.contrib.email_login.CmdUnconnectedCreate":{aliases:[199,4,1,""],func:[199,3,1,""],help_category:[199,4,1,""],key:[199,4,1,""],lock_storage:[199,4,1,""],locks:[199,4,1,""],parse:[199,3,1,""],search_index_entry:[199,4,1,""]},"evennia.contrib.email_login.CmdUnconnectedHelp":{aliases:[199,4,1,""],func:[199,3,1,""],help_category:[199,4,1,""],key:[199,4,1,""],lock_storage:[199,4,1,""],locks:[199,4,1,""],search_index_entry:[199,4,1,""]},"evennia.contrib.email_login.CmdUnconnectedLook":{aliases:[199,4,1,""],func:[199,3,1,""],help_category:[199,4,1,""],key:[199,4,1,""],lock_storage:[199,4,1,""],locks:[199,4,1,""],search_index_entry:[199,4,1,""]},"evennia.contrib.email_login.CmdUnconnectedQuit":{aliases:[199,4,1,""],func:[199,3,1,""],help_category:[199,4,1,""],key:[199,4,1,""],lock_storage:[199,4,1,""],locks:[199,4,1,""],search_index_entry:[199,4,1,""]},"evennia.contrib.extended_room":{CmdExtendedRoomDesc:[200,1,1,""],CmdExtendedRoomDetail:[200,1,1,""],CmdExtendedRoomGameTime:[200,1,1,""],CmdExtendedRoomLook:[200,1,1,""],ExtendedRoom:[200,1,1,""],ExtendedRoomCmdSet:[200,1,1,""]},"evennia.contrib.extended_room.CmdExtendedRoomDesc":{aliases:[200,4,1,""],func:[200,3,1,""],help_category:[200,4,1,""],key:[200,4,1,""],lock_storage:[200,4,1,""],reset_times:[200,3,1,""],search_index_entry:[200,4,1,""],switch_options:[200,4,1,""]},"evennia.contrib.extended_room.CmdExtendedRoomDetail":{aliases:[200,4,1,""],func:[200,3,1,""],help_category:[200,4,1,""],key:[200,4,1,""],lock_storage:[200,4,1,""],locks:[200,4,1,""],search_index_entry:[200,4,1,""]},"evennia.contrib.extended_room.CmdExtendedRoomGameTime":{aliases:[200,4,1,""],func:[200,3,1,""],help_category:[200,4,1,""],key:[200,4,1,""],lock_storage:[200,4,1,""],locks:[200,4,1,""],search_index_entry:[200,4,1,""]},"evennia.contrib.extended_room.CmdExtendedRoomLook":{aliases:[200,4,1,""],func:[200,3,1,""],help_category:[200,4,1,""],key:[200,4,1,""],lock_storage:[200,4,1,""],search_index_entry:[200,4,1,""]},"evennia.contrib.extended_room.ExtendedRoom":{DoesNotExist:[200,2,1,""],MultipleObjectsReturned:[200,2,1,""],at_object_creation:[200,3,1,""],del_detail:[200,3,1,""],get_time_and_season:[200,3,1,""],path:[200,4,1,""],replace_timeslots:[200,3,1,""],return_appearance:[200,3,1,""],return_detail:[200,3,1,""],set_detail:[200,3,1,""],typename:[200,4,1,""],update_current_description:[200,3,1,""]},"evennia.contrib.extended_room.ExtendedRoomCmdSet":{at_cmdset_creation:[200,3,1,""],path:[200,4,1,""]},"evennia.contrib.fieldfill":{CmdTestMenu:[201,1,1,""],FieldEvMenu:[201,1,1,""],display_formdata:[201,5,1,""],form_template_to_dict:[201,5,1,""],init_delayed_message:[201,5,1,""],init_fill_field:[201,5,1,""],menunode_fieldfill:[201,5,1,""],sendmessage:[201,5,1,""],verify_online_player:[201,5,1,""]},"evennia.contrib.fieldfill.CmdTestMenu":{aliases:[201,4,1,""],func:[201,3,1,""],help_category:[201,4,1,""],key:[201,4,1,""],lock_storage:[201,4,1,""],search_index_entry:[201,4,1,""]},"evennia.contrib.fieldfill.FieldEvMenu":{node_formatter:[201,3,1,""]},"evennia.contrib.gendersub":{GenderCharacter:[202,1,1,""],SetGender:[202,1,1,""]},"evennia.contrib.gendersub.GenderCharacter":{DoesNotExist:[202,2,1,""],MultipleObjectsReturned:[202,2,1,""],at_object_creation:[202,3,1,""],msg:[202,3,1,""],path:[202,4,1,""],typename:[202,4,1,""]},"evennia.contrib.gendersub.SetGender":{aliases:[202,4,1,""],func:[202,3,1,""],help_category:[202,4,1,""],key:[202,4,1,""],lock_storage:[202,4,1,""],locks:[202,4,1,""],search_index_entry:[202,4,1,""]},"evennia.contrib.health_bar":{display_meter:[203,5,1,""]},"evennia.contrib.ingame_python":{callbackhandler:[205,0,0,"-"],commands:[206,0,0,"-"],eventfuncs:[207,0,0,"-"],scripts:[208,0,0,"-"],tests:[209,0,0,"-"],typeclasses:[210,0,0,"-"],utils:[211,0,0,"-"]},"evennia.contrib.ingame_python.callbackhandler":{Callback:[205,1,1,""],CallbackHandler:[205,1,1,""]},"evennia.contrib.ingame_python.callbackhandler.Callback":{author:[205,3,1,""],code:[205,3,1,""],created_on:[205,3,1,""],name:[205,3,1,""],number:[205,3,1,""],obj:[205,3,1,""],parameters:[205,3,1,""],updated_by:[205,3,1,""],updated_on:[205,3,1,""],valid:[205,3,1,""]},"evennia.contrib.ingame_python.callbackhandler.CallbackHandler":{__init__:[205,3,1,""],add:[205,3,1,""],all:[205,3,1,""],call:[205,3,1,""],edit:[205,3,1,""],format_callback:[205,3,1,""],get:[205,3,1,""],get_variable:[205,3,1,""],remove:[205,3,1,""],script:[205,4,1,""]},"evennia.contrib.ingame_python.commands":{CmdCallback:[206,1,1,""]},"evennia.contrib.ingame_python.commands.CmdCallback":{accept_callback:[206,3,1,""],add_callback:[206,3,1,""],aliases:[206,4,1,""],del_callback:[206,3,1,""],edit_callback:[206,3,1,""],func:[206,3,1,""],get_help:[206,3,1,""],help_category:[206,4,1,""],key:[206,4,1,""],list_callbacks:[206,3,1,""],list_tasks:[206,3,1,""],lock_storage:[206,4,1,""],locks:[206,4,1,""],search_index_entry:[206,4,1,""]},"evennia.contrib.ingame_python.eventfuncs":{call_event:[207,5,1,""],deny:[207,5,1,""],get:[207,5,1,""]},"evennia.contrib.ingame_python.scripts":{EventHandler:[208,1,1,""],TimeEventScript:[208,1,1,""],complete_task:[208,5,1,""]},"evennia.contrib.ingame_python.scripts.EventHandler":{DoesNotExist:[208,2,1,""],MultipleObjectsReturned:[208,2,1,""],accept_callback:[208,3,1,""],add_callback:[208,3,1,""],add_event:[208,3,1,""],at_script_creation:[208,3,1,""],at_start:[208,3,1,""],call:[208,3,1,""],del_callback:[208,3,1,""],edit_callback:[208,3,1,""],get_callbacks:[208,3,1,""],get_events:[208,3,1,""],get_variable:[208,3,1,""],handle_error:[208,3,1,""],path:[208,4,1,""],set_task:[208,3,1,""],typename:[208,4,1,""]},"evennia.contrib.ingame_python.scripts.TimeEventScript":{DoesNotExist:[208,2,1,""],MultipleObjectsReturned:[208,2,1,""],at_repeat:[208,3,1,""],at_script_creation:[208,3,1,""],path:[208,4,1,""],typename:[208,4,1,""]},"evennia.contrib.ingame_python.tests":{TestCmdCallback:[209,1,1,""],TestDefaultCallbacks:[209,1,1,""],TestEventHandler:[209,1,1,""]},"evennia.contrib.ingame_python.tests.TestCmdCallback":{setUp:[209,3,1,""],tearDown:[209,3,1,""],test_accept:[209,3,1,""],test_add:[209,3,1,""],test_del:[209,3,1,""],test_list:[209,3,1,""],test_lock:[209,3,1,""]},"evennia.contrib.ingame_python.tests.TestDefaultCallbacks":{setUp:[209,3,1,""],tearDown:[209,3,1,""],test_exit:[209,3,1,""]},"evennia.contrib.ingame_python.tests.TestEventHandler":{setUp:[209,3,1,""],tearDown:[209,3,1,""],test_accept:[209,3,1,""],test_add_validation:[209,3,1,""],test_call:[209,3,1,""],test_del:[209,3,1,""],test_edit:[209,3,1,""],test_edit_validation:[209,3,1,""],test_handler:[209,3,1,""],test_start:[209,3,1,""]},"evennia.contrib.ingame_python.typeclasses":{EventCharacter:[210,1,1,""],EventExit:[210,1,1,""],EventObject:[210,1,1,""],EventRoom:[210,1,1,""]},"evennia.contrib.ingame_python.typeclasses.EventCharacter":{DoesNotExist:[210,2,1,""],MultipleObjectsReturned:[210,2,1,""],announce_move_from:[210,3,1,""],announce_move_to:[210,3,1,""],at_after_move:[210,3,1,""],at_before_move:[210,3,1,""],at_before_say:[210,3,1,""],at_object_delete:[210,3,1,""],at_post_puppet:[210,3,1,""],at_pre_unpuppet:[210,3,1,""],at_say:[210,3,1,""],callbacks:[210,4,1,""],path:[210,4,1,""],typename:[210,4,1,""]},"evennia.contrib.ingame_python.typeclasses.EventExit":{DoesNotExist:[210,2,1,""],MultipleObjectsReturned:[210,2,1,""],at_traverse:[210,3,1,""],callbacks:[210,4,1,""],path:[210,4,1,""],typename:[210,4,1,""]},"evennia.contrib.ingame_python.typeclasses.EventObject":{DoesNotExist:[210,2,1,""],MultipleObjectsReturned:[210,2,1,""],at_drop:[210,3,1,""],at_get:[210,3,1,""],callbacks:[210,4,1,""],path:[210,4,1,""],typename:[210,4,1,""]},"evennia.contrib.ingame_python.typeclasses.EventRoom":{DoesNotExist:[210,2,1,""],MultipleObjectsReturned:[210,2,1,""],at_object_delete:[210,3,1,""],callbacks:[210,4,1,""],path:[210,4,1,""],typename:[210,4,1,""]},"evennia.contrib.ingame_python.utils":{InterruptEvent:[211,2,1,""],get_event_handler:[211,5,1,""],get_next_wait:[211,5,1,""],keyword_event:[211,5,1,""],phrase_event:[211,5,1,""],register_events:[211,5,1,""],time_event:[211,5,1,""]},"evennia.contrib.mail":{CmdMail:[212,1,1,""],CmdMailCharacter:[212,1,1,""]},"evennia.contrib.mail.CmdMail":{aliases:[212,4,1,""],func:[212,3,1,""],get_all_mail:[212,3,1,""],help_category:[212,4,1,""],key:[212,4,1,""],lock:[212,4,1,""],lock_storage:[212,4,1,""],parse:[212,3,1,""],search_index_entry:[212,4,1,""],search_targets:[212,3,1,""],send_mail:[212,3,1,""]},"evennia.contrib.mail.CmdMailCharacter":{account_caller:[212,4,1,""],aliases:[212,4,1,""],help_category:[212,4,1,""],key:[212,4,1,""],lock_storage:[212,4,1,""],search_index_entry:[212,4,1,""]},"evennia.contrib.mapbuilder":{CmdMapBuilder:[213,1,1,""],build_map:[213,5,1,""],example1_build_forest:[213,5,1,""],example1_build_mountains:[213,5,1,""],example1_build_temple:[213,5,1,""],example2_build_forest:[213,5,1,""],example2_build_horizontal_exit:[213,5,1,""],example2_build_verticle_exit:[213,5,1,""]},"evennia.contrib.mapbuilder.CmdMapBuilder":{aliases:[213,4,1,""],func:[213,3,1,""],help_category:[213,4,1,""],key:[213,4,1,""],lock_storage:[213,4,1,""],locks:[213,4,1,""],search_index_entry:[213,4,1,""]},"evennia.contrib.menu_login":{CmdUnloggedinLook:[214,1,1,""],UnloggedinCmdSet:[214,1,1,""],node_enter_password:[214,5,1,""],node_enter_username:[214,5,1,""],node_quit_or_login:[214,5,1,""]},"evennia.contrib.menu_login.CmdUnloggedinLook":{aliases:[214,4,1,""],arg_regex:[214,4,1,""],func:[214,3,1,""],help_category:[214,4,1,""],key:[214,4,1,""],lock_storage:[214,4,1,""],locks:[214,4,1,""],search_index_entry:[214,4,1,""]},"evennia.contrib.menu_login.UnloggedinCmdSet":{at_cmdset_creation:[214,3,1,""],key:[214,4,1,""],path:[214,4,1,""],priority:[214,4,1,""]},"evennia.contrib.multidescer":{CmdMultiDesc:[215,1,1,""],DescValidateError:[215,2,1,""]},"evennia.contrib.multidescer.CmdMultiDesc":{aliases:[215,4,1,""],func:[215,3,1,""],help_category:[215,4,1,""],key:[215,4,1,""],lock_storage:[215,4,1,""],locks:[215,4,1,""],search_index_entry:[215,4,1,""]},"evennia.contrib.puzzles":{CmdArmPuzzle:[216,1,1,""],CmdCreatePuzzleRecipe:[216,1,1,""],CmdEditPuzzle:[216,1,1,""],CmdListArmedPuzzles:[216,1,1,""],CmdListPuzzleRecipes:[216,1,1,""],CmdUsePuzzleParts:[216,1,1,""],PuzzleRecipe:[216,1,1,""],PuzzleSystemCmdSet:[216,1,1,""],maskout_protodef:[216,5,1,""],proto_def:[216,5,1,""]},"evennia.contrib.puzzles.CmdArmPuzzle":{aliases:[216,4,1,""],func:[216,3,1,""],help_category:[216,4,1,""],key:[216,4,1,""],lock_storage:[216,4,1,""],locks:[216,4,1,""],search_index_entry:[216,4,1,""]},"evennia.contrib.puzzles.CmdCreatePuzzleRecipe":{aliases:[216,4,1,""],confirm:[216,4,1,""],default_confirm:[216,4,1,""],func:[216,3,1,""],help_category:[216,4,1,""],key:[216,4,1,""],lock_storage:[216,4,1,""],locks:[216,4,1,""],search_index_entry:[216,4,1,""]},"evennia.contrib.puzzles.CmdEditPuzzle":{aliases:[216,4,1,""],func:[216,3,1,""],help_category:[216,4,1,""],key:[216,4,1,""],lock_storage:[216,4,1,""],locks:[216,4,1,""],search_index_entry:[216,4,1,""]},"evennia.contrib.puzzles.CmdListArmedPuzzles":{aliases:[216,4,1,""],func:[216,3,1,""],help_category:[216,4,1,""],key:[216,4,1,""],lock_storage:[216,4,1,""],locks:[216,4,1,""],search_index_entry:[216,4,1,""]},"evennia.contrib.puzzles.CmdListPuzzleRecipes":{aliases:[216,4,1,""],func:[216,3,1,""],help_category:[216,4,1,""],key:[216,4,1,""],lock_storage:[216,4,1,""],locks:[216,4,1,""],search_index_entry:[216,4,1,""]},"evennia.contrib.puzzles.CmdUsePuzzleParts":{aliases:[216,4,1,""],func:[216,3,1,""],help_category:[216,4,1,""],key:[216,4,1,""],lock_storage:[216,4,1,""],locks:[216,4,1,""],search_index_entry:[216,4,1,""]},"evennia.contrib.puzzles.PuzzleRecipe":{DoesNotExist:[216,2,1,""],MultipleObjectsReturned:[216,2,1,""],path:[216,4,1,""],save_recipe:[216,3,1,""],typename:[216,4,1,""]},"evennia.contrib.puzzles.PuzzleSystemCmdSet":{at_cmdset_creation:[216,3,1,""],path:[216,4,1,""]},"evennia.contrib.random_string_generator":{ExhaustedGenerator:[217,2,1,""],RandomStringGenerator:[217,1,1,""],RandomStringGeneratorScript:[217,1,1,""],RejectedRegex:[217,2,1,""]},"evennia.contrib.random_string_generator.RandomStringGenerator":{__init__:[217,3,1,""],all:[217,3,1,""],clear:[217,3,1,""],get:[217,3,1,""],remove:[217,3,1,""],script:[217,4,1,""]},"evennia.contrib.random_string_generator.RandomStringGeneratorScript":{DoesNotExist:[217,2,1,""],MultipleObjectsReturned:[217,2,1,""],at_script_creation:[217,3,1,""],path:[217,4,1,""],typename:[217,4,1,""]},"evennia.contrib.rplanguage":{LanguageError:[218,2,1,""],LanguageExistsError:[218,2,1,""],LanguageHandler:[218,1,1,""],add_language:[218,5,1,""],available_languages:[218,5,1,""],obfuscate_language:[218,5,1,""],obfuscate_whisper:[218,5,1,""]},"evennia.contrib.rplanguage.LanguageHandler":{DoesNotExist:[218,2,1,""],MultipleObjectsReturned:[218,2,1,""],add:[218,3,1,""],at_script_creation:[218,3,1,""],path:[218,4,1,""],translate:[218,3,1,""],typename:[218,4,1,""]},"evennia.contrib.rpsystem":{CmdEmote:[219,1,1,""],CmdMask:[219,1,1,""],CmdPose:[219,1,1,""],CmdRecog:[219,1,1,""],CmdSay:[219,1,1,""],CmdSdesc:[219,1,1,""],ContribRPCharacter:[219,1,1,""],ContribRPObject:[219,1,1,""],ContribRPRoom:[219,1,1,""],EmoteError:[219,2,1,""],LanguageError:[219,2,1,""],RPCommand:[219,1,1,""],RPSystemCmdSet:[219,1,1,""],RecogError:[219,2,1,""],RecogHandler:[219,1,1,""],SdescError:[219,2,1,""],SdescHandler:[219,1,1,""],ordered_permutation_regex:[219,5,1,""],parse_language:[219,5,1,""],parse_sdescs_and_recogs:[219,5,1,""],regex_tuple_from_key_alias:[219,5,1,""],send_emote:[219,5,1,""]},"evennia.contrib.rpsystem.CmdEmote":{aliases:[219,4,1,""],func:[219,3,1,""],help_category:[219,4,1,""],key:[219,4,1,""],lock_storage:[219,4,1,""],locks:[219,4,1,""],search_index_entry:[219,4,1,""]},"evennia.contrib.rpsystem.CmdMask":{aliases:[219,4,1,""],func:[219,3,1,""],help_category:[219,4,1,""],key:[219,4,1,""],lock_storage:[219,4,1,""],search_index_entry:[219,4,1,""]},"evennia.contrib.rpsystem.CmdPose":{aliases:[219,4,1,""],func:[219,3,1,""],help_category:[219,4,1,""],key:[219,4,1,""],lock_storage:[219,4,1,""],parse:[219,3,1,""],search_index_entry:[219,4,1,""]},"evennia.contrib.rpsystem.CmdRecog":{aliases:[219,4,1,""],func:[219,3,1,""],help_category:[219,4,1,""],key:[219,4,1,""],lock_storage:[219,4,1,""],parse:[219,3,1,""],search_index_entry:[219,4,1,""]},"evennia.contrib.rpsystem.CmdSay":{aliases:[219,4,1,""],func:[219,3,1,""],help_category:[219,4,1,""],key:[219,4,1,""],lock_storage:[219,4,1,""],locks:[219,4,1,""],search_index_entry:[219,4,1,""]},"evennia.contrib.rpsystem.CmdSdesc":{aliases:[219,4,1,""],func:[219,3,1,""],help_category:[219,4,1,""],key:[219,4,1,""],lock_storage:[219,4,1,""],locks:[219,4,1,""],search_index_entry:[219,4,1,""]},"evennia.contrib.rpsystem.ContribRPCharacter":{DoesNotExist:[219,2,1,""],MultipleObjectsReturned:[219,2,1,""],at_before_say:[219,3,1,""],at_object_creation:[219,3,1,""],get_display_name:[219,3,1,""],path:[219,4,1,""],process_language:[219,3,1,""],process_recog:[219,3,1,""],process_sdesc:[219,3,1,""],recog:[219,4,1,""],sdesc:[219,4,1,""],typename:[219,4,1,""]},"evennia.contrib.rpsystem.ContribRPObject":{DoesNotExist:[219,2,1,""],MultipleObjectsReturned:[219,2,1,""],at_object_creation:[219,3,1,""],get_display_name:[219,3,1,""],path:[219,4,1,""],return_appearance:[219,3,1,""],search:[219,3,1,""],typename:[219,4,1,""]},"evennia.contrib.rpsystem.ContribRPRoom":{DoesNotExist:[219,2,1,""],MultipleObjectsReturned:[219,2,1,""],path:[219,4,1,""],typename:[219,4,1,""]},"evennia.contrib.rpsystem.RPCommand":{aliases:[219,4,1,""],help_category:[219,4,1,""],key:[219,4,1,""],lock_storage:[219,4,1,""],parse:[219,3,1,""],search_index_entry:[219,4,1,""]},"evennia.contrib.rpsystem.RPSystemCmdSet":{at_cmdset_creation:[219,3,1,""],path:[219,4,1,""]},"evennia.contrib.rpsystem.RecogHandler":{__init__:[219,3,1,""],add:[219,3,1,""],all:[219,3,1,""],get:[219,3,1,""],get_regex_tuple:[219,3,1,""],remove:[219,3,1,""]},"evennia.contrib.rpsystem.SdescHandler":{__init__:[219,3,1,""],add:[219,3,1,""],get:[219,3,1,""],get_regex_tuple:[219,3,1,""]},"evennia.contrib.security":{auditing:[221,0,0,"-"]},"evennia.contrib.security.auditing":{outputs:[222,0,0,"-"],server:[223,0,0,"-"],tests:[224,0,0,"-"]},"evennia.contrib.security.auditing.outputs":{to_file:[222,5,1,""],to_syslog:[222,5,1,""]},"evennia.contrib.security.auditing.server":{AuditedServerSession:[223,1,1,""]},"evennia.contrib.security.auditing.server.AuditedServerSession":{audit:[223,3,1,""],data_in:[223,3,1,""],data_out:[223,3,1,""],mask:[223,3,1,""]},"evennia.contrib.security.auditing.tests":{AuditingTest:[224,1,1,""]},"evennia.contrib.security.auditing.tests.AuditingTest":{test_audit:[224,3,1,""],test_mask:[224,3,1,""]},"evennia.contrib.simpledoor":{CmdOpen:[225,1,1,""],CmdOpenCloseDoor:[225,1,1,""],SimpleDoor:[225,1,1,""]},"evennia.contrib.simpledoor.CmdOpen":{aliases:[225,4,1,""],create_exit:[225,3,1,""],help_category:[225,4,1,""],key:[225,4,1,""],lock_storage:[225,4,1,""],search_index_entry:[225,4,1,""]},"evennia.contrib.simpledoor.CmdOpenCloseDoor":{aliases:[225,4,1,""],func:[225,3,1,""],help_category:[225,4,1,""],key:[225,4,1,""],lock_storage:[225,4,1,""],locks:[225,4,1,""],search_index_entry:[225,4,1,""]},"evennia.contrib.simpledoor.SimpleDoor":{"delete":[225,3,1,""],DoesNotExist:[225,2,1,""],MultipleObjectsReturned:[225,2,1,""],at_failed_traverse:[225,3,1,""],at_object_creation:[225,3,1,""],path:[225,4,1,""],setdesc:[225,3,1,""],setlock:[225,3,1,""],typename:[225,4,1,""]},"evennia.contrib.slow_exit":{CmdSetSpeed:[226,1,1,""],CmdStop:[226,1,1,""],SlowExit:[226,1,1,""]},"evennia.contrib.slow_exit.CmdSetSpeed":{aliases:[226,4,1,""],func:[226,3,1,""],help_category:[226,4,1,""],key:[226,4,1,""],lock_storage:[226,4,1,""],search_index_entry:[226,4,1,""]},"evennia.contrib.slow_exit.CmdStop":{aliases:[226,4,1,""],func:[226,3,1,""],help_category:[226,4,1,""],key:[226,4,1,""],lock_storage:[226,4,1,""],search_index_entry:[226,4,1,""]},"evennia.contrib.slow_exit.SlowExit":{DoesNotExist:[226,2,1,""],MultipleObjectsReturned:[226,2,1,""],at_traverse:[226,3,1,""],path:[226,4,1,""],typename:[226,4,1,""]},"evennia.contrib.talking_npc":{CmdTalk:[227,1,1,""],END:[227,5,1,""],TalkingCmdSet:[227,1,1,""],TalkingNPC:[227,1,1,""],info1:[227,5,1,""],info2:[227,5,1,""],info3:[227,5,1,""],menu_start_node:[227,5,1,""]},"evennia.contrib.talking_npc.CmdTalk":{aliases:[227,4,1,""],func:[227,3,1,""],help_category:[227,4,1,""],key:[227,4,1,""],lock_storage:[227,4,1,""],locks:[227,4,1,""],search_index_entry:[227,4,1,""]},"evennia.contrib.talking_npc.TalkingCmdSet":{at_cmdset_creation:[227,3,1,""],key:[227,4,1,""],path:[227,4,1,""]},"evennia.contrib.talking_npc.TalkingNPC":{DoesNotExist:[227,2,1,""],MultipleObjectsReturned:[227,2,1,""],at_object_creation:[227,3,1,""],path:[227,4,1,""],typename:[227,4,1,""]},"evennia.contrib.test_traits":{TestNumericTraitOperators:[228,1,1,""],TestTrait:[228,1,1,""],TestTraitCounter:[228,1,1,""],TestTraitCounterTimed:[228,1,1,""],TestTraitGauge:[228,1,1,""],TestTraitGaugeTimed:[228,1,1,""],TestTraitStatic:[228,1,1,""],TraitHandlerTest:[228,1,1,""]},"evennia.contrib.test_traits.TestNumericTraitOperators":{setUp:[228,3,1,""],tearDown:[228,3,1,""],test_add_traits:[228,3,1,""],test_comparisons_numeric:[228,3,1,""],test_comparisons_traits:[228,3,1,""],test_floordiv:[228,3,1,""],test_mul_traits:[228,3,1,""],test_pos_shortcut:[228,3,1,""],test_sub_traits:[228,3,1,""]},"evennia.contrib.test_traits.TestTrait":{setUp:[228,3,1,""],test_init:[228,3,1,""],test_repr:[228,3,1,""],test_trait_getset:[228,3,1,""],test_validate_input__fail:[228,3,1,""],test_validate_input__valid:[228,3,1,""]},"evennia.contrib.test_traits.TestTraitCounter":{setUp:[228,3,1,""],test_boundaries__bigmod:[228,3,1,""],test_boundaries__change_boundaries:[228,3,1,""],test_boundaries__disable:[228,3,1,""],test_boundaries__inverse:[228,3,1,""],test_boundaries__minmax:[228,3,1,""],test_current:[228,3,1,""],test_delete:[228,3,1,""],test_descs:[228,3,1,""],test_init:[228,3,1,""],test_percentage:[228,3,1,""],test_value:[228,3,1,""]},"evennia.contrib.test_traits.TestTraitCounterTimed":{setUp:[228,3,1,""],test_timer_rate:[228,3,1,""],test_timer_ratetarget:[228,3,1,""]},"evennia.contrib.test_traits.TestTraitGauge":{setUp:[228,3,1,""],test_boundaries__bigmod:[228,3,1,""],test_boundaries__change_boundaries:[228,3,1,""],test_boundaries__disable:[228,3,1,""],test_boundaries__inverse:[228,3,1,""],test_boundaries__minmax:[228,3,1,""],test_current:[228,3,1,""],test_delete:[228,3,1,""],test_descs:[228,3,1,""],test_init:[228,3,1,""],test_percentage:[228,3,1,""],test_value:[228,3,1,""]},"evennia.contrib.test_traits.TestTraitGaugeTimed":{setUp:[228,3,1,""],test_timer_rate:[228,3,1,""],test_timer_ratetarget:[228,3,1,""]},"evennia.contrib.test_traits.TestTraitStatic":{setUp:[228,3,1,""],test_delete:[228,3,1,""],test_init:[228,3,1,""],test_value:[228,3,1,""]},"evennia.contrib.test_traits.TraitHandlerTest":{setUp:[228,3,1,""],test_add_trait:[228,3,1,""],test_all:[228,3,1,""],test_cache:[228,3,1,""],test_clear:[228,3,1,""],test_getting:[228,3,1,""],test_remove:[228,3,1,""],test_setting:[228,3,1,""],test_trait_db_connection:[228,3,1,""]},"evennia.contrib.traits":{CounterTrait:[229,1,1,""],GaugeTrait:[229,1,1,""],MandatoryTraitKey:[229,1,1,""],StaticTrait:[229,1,1,""],Trait:[229,1,1,""],TraitException:[229,2,1,""],TraitHandler:[229,1,1,""],UpdatingTrait:[229,1,1,""]},"evennia.contrib.traits.CounterTrait":{base:[229,3,1,""],current:[229,3,1,""],default_keys:[229,4,1,""],desc:[229,3,1,""],max:[229,3,1,""],min:[229,3,1,""],mod:[229,3,1,""],percent:[229,3,1,""],ratetarget:[229,3,1,""],reset:[229,3,1,""],trait_type:[229,4,1,""],validate_input:[229,3,1,""],value:[229,3,1,""]},"evennia.contrib.traits.GaugeTrait":{base:[229,3,1,""],current:[229,3,1,""],default_keys:[229,4,1,""],max:[229,3,1,""],min:[229,3,1,""],mod:[229,3,1,""],percent:[229,3,1,""],reset:[229,3,1,""],trait_type:[229,4,1,""],value:[229,3,1,""]},"evennia.contrib.traits.StaticTrait":{default_keys:[229,4,1,""],mod:[229,3,1,""],trait_type:[229,4,1,""],value:[229,3,1,""]},"evennia.contrib.traits.Trait":{__init__:[229,3,1,""],allow_extra_properties:[229,4,1,""],default_keys:[229,4,1,""],key:[229,3,1,""],name:[229,3,1,""],trait_type:[229,4,1,""],validate_input:[229,3,1,""],value:[229,3,1,""]},"evennia.contrib.traits.TraitException":{__init__:[229,3,1,""]},"evennia.contrib.traits.TraitHandler":{__init__:[229,3,1,""],add:[229,3,1,""],all:[229,3,1,""],clear:[229,3,1,""],get:[229,3,1,""],remove:[229,3,1,""]},"evennia.contrib.tree_select":{CmdNameColor:[230,1,1,""],change_name_color:[230,5,1,""],dashcount:[230,5,1,""],go_up_one_category:[230,5,1,""],index_to_selection:[230,5,1,""],init_tree_selection:[230,5,1,""],is_category:[230,5,1,""],menunode_treeselect:[230,5,1,""],optlist_to_menuoptions:[230,5,1,""],parse_opts:[230,5,1,""]},"evennia.contrib.tree_select.CmdNameColor":{aliases:[230,4,1,""],func:[230,3,1,""],help_category:[230,4,1,""],key:[230,4,1,""],lock_storage:[230,4,1,""],search_index_entry:[230,4,1,""]},"evennia.contrib.turnbattle":{tb_basic:[232,0,0,"-"],tb_equip:[233,0,0,"-"],tb_items:[234,0,0,"-"],tb_magic:[235,0,0,"-"],tb_range:[236,0,0,"-"]},"evennia.contrib.turnbattle.tb_basic":{ACTIONS_PER_TURN:[232,6,1,""],BattleCmdSet:[232,1,1,""],CmdAttack:[232,1,1,""],CmdCombatHelp:[232,1,1,""],CmdDisengage:[232,1,1,""],CmdFight:[232,1,1,""],CmdPass:[232,1,1,""],CmdRest:[232,1,1,""],TBBasicCharacter:[232,1,1,""],TBBasicTurnHandler:[232,1,1,""],apply_damage:[232,5,1,""],at_defeat:[232,5,1,""],combat_cleanup:[232,5,1,""],get_attack:[232,5,1,""],get_damage:[232,5,1,""],get_defense:[232,5,1,""],is_in_combat:[232,5,1,""],is_turn:[232,5,1,""],resolve_attack:[232,5,1,""],roll_init:[232,5,1,""],spend_action:[232,5,1,""]},"evennia.contrib.turnbattle.tb_basic.BattleCmdSet":{at_cmdset_creation:[232,3,1,""],key:[232,4,1,""],path:[232,4,1,""]},"evennia.contrib.turnbattle.tb_basic.CmdAttack":{aliases:[232,4,1,""],func:[232,3,1,""],help_category:[232,4,1,""],key:[232,4,1,""],lock_storage:[232,4,1,""],search_index_entry:[232,4,1,""]},"evennia.contrib.turnbattle.tb_basic.CmdCombatHelp":{aliases:[232,4,1,""],func:[232,3,1,""],help_category:[232,4,1,""],key:[232,4,1,""],lock_storage:[232,4,1,""],search_index_entry:[232,4,1,""]},"evennia.contrib.turnbattle.tb_basic.CmdDisengage":{aliases:[232,4,1,""],func:[232,3,1,""],help_category:[232,4,1,""],key:[232,4,1,""],lock_storage:[232,4,1,""],search_index_entry:[232,4,1,""]},"evennia.contrib.turnbattle.tb_basic.CmdFight":{aliases:[232,4,1,""],func:[232,3,1,""],help_category:[232,4,1,""],key:[232,4,1,""],lock_storage:[232,4,1,""],search_index_entry:[232,4,1,""]},"evennia.contrib.turnbattle.tb_basic.CmdPass":{aliases:[232,4,1,""],func:[232,3,1,""],help_category:[232,4,1,""],key:[232,4,1,""],lock_storage:[232,4,1,""],search_index_entry:[232,4,1,""]},"evennia.contrib.turnbattle.tb_basic.CmdRest":{aliases:[232,4,1,""],func:[232,3,1,""],help_category:[232,4,1,""],key:[232,4,1,""],lock_storage:[232,4,1,""],search_index_entry:[232,4,1,""]},"evennia.contrib.turnbattle.tb_basic.TBBasicCharacter":{DoesNotExist:[232,2,1,""],MultipleObjectsReturned:[232,2,1,""],at_before_move:[232,3,1,""],at_object_creation:[232,3,1,""],path:[232,4,1,""],typename:[232,4,1,""]},"evennia.contrib.turnbattle.tb_basic.TBBasicTurnHandler":{DoesNotExist:[232,2,1,""],MultipleObjectsReturned:[232,2,1,""],at_repeat:[232,3,1,""],at_script_creation:[232,3,1,""],at_stop:[232,3,1,""],initialize_for_combat:[232,3,1,""],join_fight:[232,3,1,""],next_turn:[232,3,1,""],path:[232,4,1,""],start_turn:[232,3,1,""],turn_end_check:[232,3,1,""],typename:[232,4,1,""]},"evennia.contrib.turnbattle.tb_equip":{ACTIONS_PER_TURN:[233,6,1,""],BattleCmdSet:[233,1,1,""],CmdAttack:[233,1,1,""],CmdCombatHelp:[233,1,1,""],CmdDisengage:[233,1,1,""],CmdDoff:[233,1,1,""],CmdDon:[233,1,1,""],CmdFight:[233,1,1,""],CmdPass:[233,1,1,""],CmdRest:[233,1,1,""],CmdUnwield:[233,1,1,""],CmdWield:[233,1,1,""],TBEArmor:[233,1,1,""],TBEWeapon:[233,1,1,""],TBEquipCharacter:[233,1,1,""],TBEquipTurnHandler:[233,1,1,""],apply_damage:[233,5,1,""],at_defeat:[233,5,1,""],combat_cleanup:[233,5,1,""],get_attack:[233,5,1,""],get_damage:[233,5,1,""],get_defense:[233,5,1,""],is_in_combat:[233,5,1,""],is_turn:[233,5,1,""],resolve_attack:[233,5,1,""],roll_init:[233,5,1,""],spend_action:[233,5,1,""]},"evennia.contrib.turnbattle.tb_equip.BattleCmdSet":{at_cmdset_creation:[233,3,1,""],key:[233,4,1,""],path:[233,4,1,""]},"evennia.contrib.turnbattle.tb_equip.CmdAttack":{aliases:[233,4,1,""],func:[233,3,1,""],help_category:[233,4,1,""],key:[233,4,1,""],lock_storage:[233,4,1,""],search_index_entry:[233,4,1,""]},"evennia.contrib.turnbattle.tb_equip.CmdCombatHelp":{aliases:[233,4,1,""],func:[233,3,1,""],help_category:[233,4,1,""],key:[233,4,1,""],lock_storage:[233,4,1,""],search_index_entry:[233,4,1,""]},"evennia.contrib.turnbattle.tb_equip.CmdDisengage":{aliases:[233,4,1,""],func:[233,3,1,""],help_category:[233,4,1,""],key:[233,4,1,""],lock_storage:[233,4,1,""],search_index_entry:[233,4,1,""]},"evennia.contrib.turnbattle.tb_equip.CmdDoff":{aliases:[233,4,1,""],func:[233,3,1,""],help_category:[233,4,1,""],key:[233,4,1,""],lock_storage:[233,4,1,""],search_index_entry:[233,4,1,""]},"evennia.contrib.turnbattle.tb_equip.CmdDon":{aliases:[233,4,1,""],func:[233,3,1,""],help_category:[233,4,1,""],key:[233,4,1,""],lock_storage:[233,4,1,""],search_index_entry:[233,4,1,""]},"evennia.contrib.turnbattle.tb_equip.CmdFight":{aliases:[233,4,1,""],func:[233,3,1,""],help_category:[233,4,1,""],key:[233,4,1,""],lock_storage:[233,4,1,""],search_index_entry:[233,4,1,""]},"evennia.contrib.turnbattle.tb_equip.CmdPass":{aliases:[233,4,1,""],func:[233,3,1,""],help_category:[233,4,1,""],key:[233,4,1,""],lock_storage:[233,4,1,""],search_index_entry:[233,4,1,""]},"evennia.contrib.turnbattle.tb_equip.CmdRest":{aliases:[233,4,1,""],func:[233,3,1,""],help_category:[233,4,1,""],key:[233,4,1,""],lock_storage:[233,4,1,""],search_index_entry:[233,4,1,""]},"evennia.contrib.turnbattle.tb_equip.CmdUnwield":{aliases:[233,4,1,""],func:[233,3,1,""],help_category:[233,4,1,""],key:[233,4,1,""],lock_storage:[233,4,1,""],search_index_entry:[233,4,1,""]},"evennia.contrib.turnbattle.tb_equip.CmdWield":{aliases:[233,4,1,""],func:[233,3,1,""],help_category:[233,4,1,""],key:[233,4,1,""],lock_storage:[233,4,1,""],search_index_entry:[233,4,1,""]},"evennia.contrib.turnbattle.tb_equip.TBEArmor":{DoesNotExist:[233,2,1,""],MultipleObjectsReturned:[233,2,1,""],at_before_drop:[233,3,1,""],at_before_give:[233,3,1,""],at_drop:[233,3,1,""],at_give:[233,3,1,""],at_object_creation:[233,3,1,""],path:[233,4,1,""],typename:[233,4,1,""]},"evennia.contrib.turnbattle.tb_equip.TBEWeapon":{DoesNotExist:[233,2,1,""],MultipleObjectsReturned:[233,2,1,""],at_drop:[233,3,1,""],at_give:[233,3,1,""],at_object_creation:[233,3,1,""],path:[233,4,1,""],typename:[233,4,1,""]},"evennia.contrib.turnbattle.tb_equip.TBEquipCharacter":{DoesNotExist:[233,2,1,""],MultipleObjectsReturned:[233,2,1,""],at_before_move:[233,3,1,""],at_object_creation:[233,3,1,""],path:[233,4,1,""],typename:[233,4,1,""]},"evennia.contrib.turnbattle.tb_equip.TBEquipTurnHandler":{DoesNotExist:[233,2,1,""],MultipleObjectsReturned:[233,2,1,""],at_repeat:[233,3,1,""],at_script_creation:[233,3,1,""],at_stop:[233,3,1,""],initialize_for_combat:[233,3,1,""],join_fight:[233,3,1,""],next_turn:[233,3,1,""],path:[233,4,1,""],start_turn:[233,3,1,""],turn_end_check:[233,3,1,""],typename:[233,4,1,""]},"evennia.contrib.turnbattle.tb_items":{BattleCmdSet:[234,1,1,""],CmdAttack:[234,1,1,""],CmdCombatHelp:[234,1,1,""],CmdDisengage:[234,1,1,""],CmdFight:[234,1,1,""],CmdPass:[234,1,1,""],CmdRest:[234,1,1,""],CmdUse:[234,1,1,""],DEF_DOWN_MOD:[234,6,1,""],ITEMFUNCS:[234,6,1,""],TBItemsCharacter:[234,1,1,""],TBItemsCharacterTest:[234,1,1,""],TBItemsTurnHandler:[234,1,1,""],add_condition:[234,5,1,""],apply_damage:[234,5,1,""],at_defeat:[234,5,1,""],combat_cleanup:[234,5,1,""],condition_tickdown:[234,5,1,""],get_attack:[234,5,1,""],get_damage:[234,5,1,""],get_defense:[234,5,1,""],is_in_combat:[234,5,1,""],is_turn:[234,5,1,""],itemfunc_add_condition:[234,5,1,""],itemfunc_attack:[234,5,1,""],itemfunc_cure_condition:[234,5,1,""],itemfunc_heal:[234,5,1,""],resolve_attack:[234,5,1,""],roll_init:[234,5,1,""],spend_action:[234,5,1,""],spend_item_use:[234,5,1,""],use_item:[234,5,1,""]},"evennia.contrib.turnbattle.tb_items.BattleCmdSet":{at_cmdset_creation:[234,3,1,""],key:[234,4,1,""],path:[234,4,1,""]},"evennia.contrib.turnbattle.tb_items.CmdAttack":{aliases:[234,4,1,""],func:[234,3,1,""],help_category:[234,4,1,""],key:[234,4,1,""],lock_storage:[234,4,1,""],search_index_entry:[234,4,1,""]},"evennia.contrib.turnbattle.tb_items.CmdCombatHelp":{aliases:[234,4,1,""],func:[234,3,1,""],help_category:[234,4,1,""],key:[234,4,1,""],lock_storage:[234,4,1,""],search_index_entry:[234,4,1,""]},"evennia.contrib.turnbattle.tb_items.CmdDisengage":{aliases:[234,4,1,""],func:[234,3,1,""],help_category:[234,4,1,""],key:[234,4,1,""],lock_storage:[234,4,1,""],search_index_entry:[234,4,1,""]},"evennia.contrib.turnbattle.tb_items.CmdFight":{aliases:[234,4,1,""],func:[234,3,1,""],help_category:[234,4,1,""],key:[234,4,1,""],lock_storage:[234,4,1,""],search_index_entry:[234,4,1,""]},"evennia.contrib.turnbattle.tb_items.CmdPass":{aliases:[234,4,1,""],func:[234,3,1,""],help_category:[234,4,1,""],key:[234,4,1,""],lock_storage:[234,4,1,""],search_index_entry:[234,4,1,""]},"evennia.contrib.turnbattle.tb_items.CmdRest":{aliases:[234,4,1,""],func:[234,3,1,""],help_category:[234,4,1,""],key:[234,4,1,""],lock_storage:[234,4,1,""],search_index_entry:[234,4,1,""]},"evennia.contrib.turnbattle.tb_items.CmdUse":{aliases:[234,4,1,""],func:[234,3,1,""],help_category:[234,4,1,""],key:[234,4,1,""],lock_storage:[234,4,1,""],search_index_entry:[234,4,1,""]},"evennia.contrib.turnbattle.tb_items.TBItemsCharacter":{DoesNotExist:[234,2,1,""],MultipleObjectsReturned:[234,2,1,""],apply_turn_conditions:[234,3,1,""],at_before_move:[234,3,1,""],at_object_creation:[234,3,1,""],at_turn_start:[234,3,1,""],at_update:[234,3,1,""],path:[234,4,1,""],typename:[234,4,1,""]},"evennia.contrib.turnbattle.tb_items.TBItemsCharacterTest":{DoesNotExist:[234,2,1,""],MultipleObjectsReturned:[234,2,1,""],at_object_creation:[234,3,1,""],path:[234,4,1,""],typename:[234,4,1,""]},"evennia.contrib.turnbattle.tb_items.TBItemsTurnHandler":{DoesNotExist:[234,2,1,""],MultipleObjectsReturned:[234,2,1,""],at_repeat:[234,3,1,""],at_script_creation:[234,3,1,""],at_stop:[234,3,1,""],initialize_for_combat:[234,3,1,""],join_fight:[234,3,1,""],next_turn:[234,3,1,""],path:[234,4,1,""],start_turn:[234,3,1,""],turn_end_check:[234,3,1,""],typename:[234,4,1,""]},"evennia.contrib.turnbattle.tb_magic":{ACTIONS_PER_TURN:[235,6,1,""],BattleCmdSet:[235,1,1,""],CmdAttack:[235,1,1,""],CmdCast:[235,1,1,""],CmdCombatHelp:[235,1,1,""],CmdDisengage:[235,1,1,""],CmdFight:[235,1,1,""],CmdLearnSpell:[235,1,1,""],CmdPass:[235,1,1,""],CmdRest:[235,1,1,""],CmdStatus:[235,1,1,""],TBMagicCharacter:[235,1,1,""],TBMagicTurnHandler:[235,1,1,""],apply_damage:[235,5,1,""],at_defeat:[235,5,1,""],combat_cleanup:[235,5,1,""],get_attack:[235,5,1,""],get_damage:[235,5,1,""],get_defense:[235,5,1,""],is_in_combat:[235,5,1,""],is_turn:[235,5,1,""],resolve_attack:[235,5,1,""],roll_init:[235,5,1,""],spell_attack:[235,5,1,""],spell_conjure:[235,5,1,""],spell_healing:[235,5,1,""],spend_action:[235,5,1,""]},"evennia.contrib.turnbattle.tb_magic.BattleCmdSet":{at_cmdset_creation:[235,3,1,""],key:[235,4,1,""],path:[235,4,1,""]},"evennia.contrib.turnbattle.tb_magic.CmdAttack":{aliases:[235,4,1,""],func:[235,3,1,""],help_category:[235,4,1,""],key:[235,4,1,""],lock_storage:[235,4,1,""],search_index_entry:[235,4,1,""]},"evennia.contrib.turnbattle.tb_magic.CmdCast":{aliases:[235,4,1,""],func:[235,3,1,""],help_category:[235,4,1,""],key:[235,4,1,""],lock_storage:[235,4,1,""],search_index_entry:[235,4,1,""]},"evennia.contrib.turnbattle.tb_magic.CmdCombatHelp":{aliases:[235,4,1,""],func:[235,3,1,""],help_category:[235,4,1,""],key:[235,4,1,""],lock_storage:[235,4,1,""],search_index_entry:[235,4,1,""]},"evennia.contrib.turnbattle.tb_magic.CmdDisengage":{aliases:[235,4,1,""],func:[235,3,1,""],help_category:[235,4,1,""],key:[235,4,1,""],lock_storage:[235,4,1,""],search_index_entry:[235,4,1,""]},"evennia.contrib.turnbattle.tb_magic.CmdFight":{aliases:[235,4,1,""],func:[235,3,1,""],help_category:[235,4,1,""],key:[235,4,1,""],lock_storage:[235,4,1,""],search_index_entry:[235,4,1,""]},"evennia.contrib.turnbattle.tb_magic.CmdLearnSpell":{aliases:[235,4,1,""],func:[235,3,1,""],help_category:[235,4,1,""],key:[235,4,1,""],lock_storage:[235,4,1,""],search_index_entry:[235,4,1,""]},"evennia.contrib.turnbattle.tb_magic.CmdPass":{aliases:[235,4,1,""],func:[235,3,1,""],help_category:[235,4,1,""],key:[235,4,1,""],lock_storage:[235,4,1,""],search_index_entry:[235,4,1,""]},"evennia.contrib.turnbattle.tb_magic.CmdRest":{aliases:[235,4,1,""],func:[235,3,1,""],help_category:[235,4,1,""],key:[235,4,1,""],lock_storage:[235,4,1,""],search_index_entry:[235,4,1,""]},"evennia.contrib.turnbattle.tb_magic.CmdStatus":{aliases:[235,4,1,""],func:[235,3,1,""],help_category:[235,4,1,""],key:[235,4,1,""],lock_storage:[235,4,1,""],search_index_entry:[235,4,1,""]},"evennia.contrib.turnbattle.tb_magic.TBMagicCharacter":{DoesNotExist:[235,2,1,""],MultipleObjectsReturned:[235,2,1,""],at_before_move:[235,3,1,""],at_object_creation:[235,3,1,""],path:[235,4,1,""],typename:[235,4,1,""]},"evennia.contrib.turnbattle.tb_magic.TBMagicTurnHandler":{DoesNotExist:[235,2,1,""],MultipleObjectsReturned:[235,2,1,""],at_repeat:[235,3,1,""],at_script_creation:[235,3,1,""],at_stop:[235,3,1,""],initialize_for_combat:[235,3,1,""],join_fight:[235,3,1,""],next_turn:[235,3,1,""],path:[235,4,1,""],start_turn:[235,3,1,""],turn_end_check:[235,3,1,""],typename:[235,4,1,""]},"evennia.contrib.turnbattle.tb_range":{ACTIONS_PER_TURN:[236,6,1,""],BattleCmdSet:[236,1,1,""],CmdApproach:[236,1,1,""],CmdAttack:[236,1,1,""],CmdCombatHelp:[236,1,1,""],CmdDisengage:[236,1,1,""],CmdFight:[236,1,1,""],CmdPass:[236,1,1,""],CmdRest:[236,1,1,""],CmdShoot:[236,1,1,""],CmdStatus:[236,1,1,""],CmdWithdraw:[236,1,1,""],TBRangeCharacter:[236,1,1,""],TBRangeObject:[236,1,1,""],TBRangeTurnHandler:[236,1,1,""],apply_damage:[236,5,1,""],approach:[236,5,1,""],at_defeat:[236,5,1,""],combat_cleanup:[236,5,1,""],combat_status_message:[236,5,1,""],distance_inc:[236,5,1,""],get_attack:[236,5,1,""],get_damage:[236,5,1,""],get_defense:[236,5,1,""],get_range:[236,5,1,""],is_in_combat:[236,5,1,""],is_turn:[236,5,1,""],resolve_attack:[236,5,1,""],roll_init:[236,5,1,""],spend_action:[236,5,1,""],withdraw:[236,5,1,""]},"evennia.contrib.turnbattle.tb_range.BattleCmdSet":{at_cmdset_creation:[236,3,1,""],key:[236,4,1,""],path:[236,4,1,""]},"evennia.contrib.turnbattle.tb_range.CmdApproach":{aliases:[236,4,1,""],func:[236,3,1,""],help_category:[236,4,1,""],key:[236,4,1,""],lock_storage:[236,4,1,""],search_index_entry:[236,4,1,""]},"evennia.contrib.turnbattle.tb_range.CmdAttack":{aliases:[236,4,1,""],func:[236,3,1,""],help_category:[236,4,1,""],key:[236,4,1,""],lock_storage:[236,4,1,""],search_index_entry:[236,4,1,""]},"evennia.contrib.turnbattle.tb_range.CmdCombatHelp":{aliases:[236,4,1,""],func:[236,3,1,""],help_category:[236,4,1,""],key:[236,4,1,""],lock_storage:[236,4,1,""],search_index_entry:[236,4,1,""]},"evennia.contrib.turnbattle.tb_range.CmdDisengage":{aliases:[236,4,1,""],func:[236,3,1,""],help_category:[236,4,1,""],key:[236,4,1,""],lock_storage:[236,4,1,""],search_index_entry:[236,4,1,""]},"evennia.contrib.turnbattle.tb_range.CmdFight":{aliases:[236,4,1,""],func:[236,3,1,""],help_category:[236,4,1,""],key:[236,4,1,""],lock_storage:[236,4,1,""],search_index_entry:[236,4,1,""]},"evennia.contrib.turnbattle.tb_range.CmdPass":{aliases:[236,4,1,""],func:[236,3,1,""],help_category:[236,4,1,""],key:[236,4,1,""],lock_storage:[236,4,1,""],search_index_entry:[236,4,1,""]},"evennia.contrib.turnbattle.tb_range.CmdRest":{aliases:[236,4,1,""],func:[236,3,1,""],help_category:[236,4,1,""],key:[236,4,1,""],lock_storage:[236,4,1,""],search_index_entry:[236,4,1,""]},"evennia.contrib.turnbattle.tb_range.CmdShoot":{aliases:[236,4,1,""],func:[236,3,1,""],help_category:[236,4,1,""],key:[236,4,1,""],lock_storage:[236,4,1,""],search_index_entry:[236,4,1,""]},"evennia.contrib.turnbattle.tb_range.CmdStatus":{aliases:[236,4,1,""],func:[236,3,1,""],help_category:[236,4,1,""],key:[236,4,1,""],lock_storage:[236,4,1,""],search_index_entry:[236,4,1,""]},"evennia.contrib.turnbattle.tb_range.CmdWithdraw":{aliases:[236,4,1,""],func:[236,3,1,""],help_category:[236,4,1,""],key:[236,4,1,""],lock_storage:[236,4,1,""],search_index_entry:[236,4,1,""]},"evennia.contrib.turnbattle.tb_range.TBRangeCharacter":{DoesNotExist:[236,2,1,""],MultipleObjectsReturned:[236,2,1,""],at_before_move:[236,3,1,""],at_object_creation:[236,3,1,""],path:[236,4,1,""],typename:[236,4,1,""]},"evennia.contrib.turnbattle.tb_range.TBRangeObject":{DoesNotExist:[236,2,1,""],MultipleObjectsReturned:[236,2,1,""],at_before_drop:[236,3,1,""],at_before_get:[236,3,1,""],at_before_give:[236,3,1,""],at_drop:[236,3,1,""],at_get:[236,3,1,""],at_give:[236,3,1,""],path:[236,4,1,""],typename:[236,4,1,""]},"evennia.contrib.turnbattle.tb_range.TBRangeTurnHandler":{DoesNotExist:[236,2,1,""],MultipleObjectsReturned:[236,2,1,""],at_repeat:[236,3,1,""],at_script_creation:[236,3,1,""],at_stop:[236,3,1,""],init_range:[236,3,1,""],initialize_for_combat:[236,3,1,""],join_fight:[236,3,1,""],join_rangefield:[236,3,1,""],next_turn:[236,3,1,""],path:[236,4,1,""],start_turn:[236,3,1,""],turn_end_check:[236,3,1,""],typename:[236,4,1,""]},"evennia.contrib.tutorial_examples":{bodyfunctions:[238,0,0,"-"],cmdset_red_button:[239,0,0,"-"],mirror:[241,0,0,"-"],red_button:[242,0,0,"-"],red_button_scripts:[243,0,0,"-"],tests:[244,0,0,"-"]},"evennia.contrib.tutorial_examples.bodyfunctions":{BodyFunctions:[238,1,1,""]},"evennia.contrib.tutorial_examples.bodyfunctions.BodyFunctions":{DoesNotExist:[238,2,1,""],MultipleObjectsReturned:[238,2,1,""],at_repeat:[238,3,1,""],at_script_creation:[238,3,1,""],path:[238,4,1,""],send_random_message:[238,3,1,""],typename:[238,4,1,""]},"evennia.contrib.tutorial_examples.cmdset_red_button":{BlindCmdSet:[239,1,1,""],CmdBlindHelp:[239,1,1,""],CmdBlindLook:[239,1,1,""],CmdCloseLid:[239,1,1,""],CmdNudge:[239,1,1,""],CmdOpenLid:[239,1,1,""],CmdPush:[239,1,1,""],CmdSmashGlass:[239,1,1,""],DefaultCmdSet:[239,1,1,""],LidClosedCmdSet:[239,1,1,""],LidOpenCmdSet:[239,1,1,""]},"evennia.contrib.tutorial_examples.cmdset_red_button.BlindCmdSet":{at_cmdset_creation:[239,3,1,""],key:[239,4,1,""],mergetype:[239,4,1,""],no_exits:[239,4,1,""],no_objs:[239,4,1,""],path:[239,4,1,""]},"evennia.contrib.tutorial_examples.cmdset_red_button.CmdBlindHelp":{aliases:[239,4,1,""],func:[239,3,1,""],help_category:[239,4,1,""],key:[239,4,1,""],lock_storage:[239,4,1,""],locks:[239,4,1,""],search_index_entry:[239,4,1,""]},"evennia.contrib.tutorial_examples.cmdset_red_button.CmdBlindLook":{aliases:[239,4,1,""],func:[239,3,1,""],help_category:[239,4,1,""],key:[239,4,1,""],lock_storage:[239,4,1,""],locks:[239,4,1,""],search_index_entry:[239,4,1,""]},"evennia.contrib.tutorial_examples.cmdset_red_button.CmdCloseLid":{aliases:[239,4,1,""],func:[239,3,1,""],help_category:[239,4,1,""],key:[239,4,1,""],lock_storage:[239,4,1,""],locks:[239,4,1,""],search_index_entry:[239,4,1,""]},"evennia.contrib.tutorial_examples.cmdset_red_button.CmdNudge":{aliases:[239,4,1,""],func:[239,3,1,""],help_category:[239,4,1,""],key:[239,4,1,""],lock_storage:[239,4,1,""],locks:[239,4,1,""],search_index_entry:[239,4,1,""]},"evennia.contrib.tutorial_examples.cmdset_red_button.CmdOpenLid":{aliases:[239,4,1,""],func:[239,3,1,""],help_category:[239,4,1,""],key:[239,4,1,""],lock_storage:[239,4,1,""],locks:[239,4,1,""],search_index_entry:[239,4,1,""]},"evennia.contrib.tutorial_examples.cmdset_red_button.CmdPush":{aliases:[239,4,1,""],func:[239,3,1,""],help_category:[239,4,1,""],key:[239,4,1,""],lock_storage:[239,4,1,""],locks:[239,4,1,""],search_index_entry:[239,4,1,""]},"evennia.contrib.tutorial_examples.cmdset_red_button.CmdSmashGlass":{aliases:[239,4,1,""],func:[239,3,1,""],help_category:[239,4,1,""],key:[239,4,1,""],lock_storage:[239,4,1,""],locks:[239,4,1,""],search_index_entry:[239,4,1,""]},"evennia.contrib.tutorial_examples.cmdset_red_button.DefaultCmdSet":{at_cmdset_creation:[239,3,1,""],key:[239,4,1,""],mergetype:[239,4,1,""],path:[239,4,1,""]},"evennia.contrib.tutorial_examples.cmdset_red_button.LidClosedCmdSet":{at_cmdset_creation:[239,3,1,""],key:[239,4,1,""],key_mergetype:[239,4,1,""],path:[239,4,1,""]},"evennia.contrib.tutorial_examples.cmdset_red_button.LidOpenCmdSet":{at_cmdset_creation:[239,3,1,""],key:[239,4,1,""],key_mergetype:[239,4,1,""],path:[239,4,1,""]},"evennia.contrib.tutorial_examples.mirror":{TutorialMirror:[241,1,1,""]},"evennia.contrib.tutorial_examples.mirror.TutorialMirror":{DoesNotExist:[241,2,1,""],MultipleObjectsReturned:[241,2,1,""],msg:[241,3,1,""],path:[241,4,1,""],return_appearance:[241,3,1,""],typename:[241,4,1,""]},"evennia.contrib.tutorial_examples.red_button":{RedButton:[242,1,1,""]},"evennia.contrib.tutorial_examples.red_button.RedButton":{DoesNotExist:[242,2,1,""],MultipleObjectsReturned:[242,2,1,""],at_object_creation:[242,3,1,""],blink:[242,3,1,""],break_lamp:[242,3,1,""],close_lid:[242,3,1,""],open_lid:[242,3,1,""],path:[242,4,1,""],press_button:[242,3,1,""],typename:[242,4,1,""]},"evennia.contrib.tutorial_examples.red_button_scripts":{BlindedState:[243,1,1,""],BlinkButtonEvent:[243,1,1,""],CloseLidEvent:[243,1,1,""],ClosedLidState:[243,1,1,""],DeactivateButtonEvent:[243,1,1,""],OpenLidState:[243,1,1,""]},"evennia.contrib.tutorial_examples.red_button_scripts.BlindedState":{DoesNotExist:[243,2,1,""],MultipleObjectsReturned:[243,2,1,""],at_script_creation:[243,3,1,""],at_start:[243,3,1,""],at_stop:[243,3,1,""],path:[243,4,1,""],typename:[243,4,1,""]},"evennia.contrib.tutorial_examples.red_button_scripts.BlinkButtonEvent":{DoesNotExist:[243,2,1,""],MultipleObjectsReturned:[243,2,1,""],at_repeat:[243,3,1,""],at_script_creation:[243,3,1,""],is_valid:[243,3,1,""],path:[243,4,1,""],typename:[243,4,1,""]},"evennia.contrib.tutorial_examples.red_button_scripts.CloseLidEvent":{DoesNotExist:[243,2,1,""],MultipleObjectsReturned:[243,2,1,""],at_repeat:[243,3,1,""],at_script_creation:[243,3,1,""],is_valid:[243,3,1,""],path:[243,4,1,""],typename:[243,4,1,""]},"evennia.contrib.tutorial_examples.red_button_scripts.ClosedLidState":{DoesNotExist:[243,2,1,""],MultipleObjectsReturned:[243,2,1,""],at_script_creation:[243,3,1,""],at_start:[243,3,1,""],at_stop:[243,3,1,""],is_valid:[243,3,1,""],path:[243,4,1,""],typename:[243,4,1,""]},"evennia.contrib.tutorial_examples.red_button_scripts.DeactivateButtonEvent":{DoesNotExist:[243,2,1,""],MultipleObjectsReturned:[243,2,1,""],at_repeat:[243,3,1,""],at_script_creation:[243,3,1,""],at_start:[243,3,1,""],path:[243,4,1,""],typename:[243,4,1,""]},"evennia.contrib.tutorial_examples.red_button_scripts.OpenLidState":{DoesNotExist:[243,2,1,""],MultipleObjectsReturned:[243,2,1,""],at_script_creation:[243,3,1,""],at_start:[243,3,1,""],at_stop:[243,3,1,""],is_valid:[243,3,1,""],path:[243,4,1,""],typename:[243,4,1,""]},"evennia.contrib.tutorial_examples.tests":{TestBodyFunctions:[244,1,1,""]},"evennia.contrib.tutorial_examples.tests.TestBodyFunctions":{script_typeclass:[244,4,1,""],setUp:[244,3,1,""],tearDown:[244,3,1,""],test_at_repeat:[244,3,1,""],test_send_random_message:[244,3,1,""]},"evennia.contrib.tutorial_world":{mob:[246,0,0,"-"],objects:[247,0,0,"-"],rooms:[248,0,0,"-"]},"evennia.contrib.tutorial_world.mob":{CmdMobOnOff:[246,1,1,""],Mob:[246,1,1,""],MobCmdSet:[246,1,1,""]},"evennia.contrib.tutorial_world.mob.CmdMobOnOff":{aliases:[246,4,1,""],func:[246,3,1,""],help_category:[246,4,1,""],key:[246,4,1,""],lock_storage:[246,4,1,""],locks:[246,4,1,""],search_index_entry:[246,4,1,""]},"evennia.contrib.tutorial_world.mob.Mob":{DoesNotExist:[246,2,1,""],MultipleObjectsReturned:[246,2,1,""],at_hit:[246,3,1,""],at_init:[246,3,1,""],at_new_arrival:[246,3,1,""],at_object_creation:[246,3,1,""],do_attack:[246,3,1,""],do_hunting:[246,3,1,""],do_patrol:[246,3,1,""],path:[246,4,1,""],set_alive:[246,3,1,""],set_dead:[246,3,1,""],start_attacking:[246,3,1,""],start_hunting:[246,3,1,""],start_idle:[246,3,1,""],start_patrolling:[246,3,1,""],typename:[246,4,1,""]},"evennia.contrib.tutorial_world.mob.MobCmdSet":{at_cmdset_creation:[246,3,1,""],path:[246,4,1,""]},"evennia.contrib.tutorial_world.objects":{CmdAttack:[247,1,1,""],CmdClimb:[247,1,1,""],CmdGetWeapon:[247,1,1,""],CmdLight:[247,1,1,""],CmdPressButton:[247,1,1,""],CmdRead:[247,1,1,""],CmdSetClimbable:[247,1,1,""],CmdSetCrumblingWall:[247,1,1,""],CmdSetLight:[247,1,1,""],CmdSetReadable:[247,1,1,""],CmdSetWeapon:[247,1,1,""],CmdSetWeaponRack:[247,1,1,""],CmdShiftRoot:[247,1,1,""],CrumblingWall:[247,1,1,""],LightSource:[247,1,1,""],Obelisk:[247,1,1,""],TutorialClimbable:[247,1,1,""],TutorialObject:[247,1,1,""],TutorialReadable:[247,1,1,""],TutorialWeapon:[247,1,1,""],TutorialWeaponRack:[247,1,1,""]},"evennia.contrib.tutorial_world.objects.CmdAttack":{aliases:[247,4,1,""],func:[247,3,1,""],help_category:[247,4,1,""],key:[247,4,1,""],lock_storage:[247,4,1,""],locks:[247,4,1,""],search_index_entry:[247,4,1,""]},"evennia.contrib.tutorial_world.objects.CmdClimb":{aliases:[247,4,1,""],func:[247,3,1,""],help_category:[247,4,1,""],key:[247,4,1,""],lock_storage:[247,4,1,""],locks:[247,4,1,""],search_index_entry:[247,4,1,""]},"evennia.contrib.tutorial_world.objects.CmdGetWeapon":{aliases:[247,4,1,""],func:[247,3,1,""],help_category:[247,4,1,""],key:[247,4,1,""],lock_storage:[247,4,1,""],locks:[247,4,1,""],search_index_entry:[247,4,1,""]},"evennia.contrib.tutorial_world.objects.CmdLight":{aliases:[247,4,1,""],func:[247,3,1,""],help_category:[247,4,1,""],key:[247,4,1,""],lock_storage:[247,4,1,""],locks:[247,4,1,""],search_index_entry:[247,4,1,""]},"evennia.contrib.tutorial_world.objects.CmdPressButton":{aliases:[247,4,1,""],func:[247,3,1,""],help_category:[247,4,1,""],key:[247,4,1,""],lock_storage:[247,4,1,""],locks:[247,4,1,""],search_index_entry:[247,4,1,""]},"evennia.contrib.tutorial_world.objects.CmdRead":{aliases:[247,4,1,""],func:[247,3,1,""],help_category:[247,4,1,""],key:[247,4,1,""],lock_storage:[247,4,1,""],locks:[247,4,1,""],search_index_entry:[247,4,1,""]},"evennia.contrib.tutorial_world.objects.CmdSetClimbable":{at_cmdset_creation:[247,3,1,""],path:[247,4,1,""]},"evennia.contrib.tutorial_world.objects.CmdSetCrumblingWall":{at_cmdset_creation:[247,3,1,""],key:[247,4,1,""],path:[247,4,1,""],priority:[247,4,1,""]},"evennia.contrib.tutorial_world.objects.CmdSetLight":{at_cmdset_creation:[247,3,1,""],key:[247,4,1,""],path:[247,4,1,""],priority:[247,4,1,""]},"evennia.contrib.tutorial_world.objects.CmdSetReadable":{at_cmdset_creation:[247,3,1,""],path:[247,4,1,""]},"evennia.contrib.tutorial_world.objects.CmdSetWeapon":{at_cmdset_creation:[247,3,1,""],path:[247,4,1,""]},"evennia.contrib.tutorial_world.objects.CmdSetWeaponRack":{at_cmdset_creation:[247,3,1,""],key:[247,4,1,""],path:[247,4,1,""]},"evennia.contrib.tutorial_world.objects.CmdShiftRoot":{aliases:[247,4,1,""],func:[247,3,1,""],help_category:[247,4,1,""],key:[247,4,1,""],lock_storage:[247,4,1,""],locks:[247,4,1,""],parse:[247,3,1,""],search_index_entry:[247,4,1,""]},"evennia.contrib.tutorial_world.objects.CrumblingWall":{DoesNotExist:[247,2,1,""],MultipleObjectsReturned:[247,2,1,""],at_after_traverse:[247,3,1,""],at_failed_traverse:[247,3,1,""],at_init:[247,3,1,""],at_object_creation:[247,3,1,""],open_wall:[247,3,1,""],path:[247,4,1,""],reset:[247,3,1,""],return_appearance:[247,3,1,""],typename:[247,4,1,""]},"evennia.contrib.tutorial_world.objects.LightSource":{DoesNotExist:[247,2,1,""],MultipleObjectsReturned:[247,2,1,""],at_init:[247,3,1,""],at_object_creation:[247,3,1,""],light:[247,3,1,""],path:[247,4,1,""],typename:[247,4,1,""]},"evennia.contrib.tutorial_world.objects.Obelisk":{DoesNotExist:[247,2,1,""],MultipleObjectsReturned:[247,2,1,""],at_object_creation:[247,3,1,""],path:[247,4,1,""],return_appearance:[247,3,1,""],typename:[247,4,1,""]},"evennia.contrib.tutorial_world.objects.TutorialClimbable":{DoesNotExist:[247,2,1,""],MultipleObjectsReturned:[247,2,1,""],at_object_creation:[247,3,1,""],path:[247,4,1,""],typename:[247,4,1,""]},"evennia.contrib.tutorial_world.objects.TutorialObject":{DoesNotExist:[247,2,1,""],MultipleObjectsReturned:[247,2,1,""],at_object_creation:[247,3,1,""],path:[247,4,1,""],reset:[247,3,1,""],typename:[247,4,1,""]},"evennia.contrib.tutorial_world.objects.TutorialReadable":{DoesNotExist:[247,2,1,""],MultipleObjectsReturned:[247,2,1,""],at_object_creation:[247,3,1,""],path:[247,4,1,""],typename:[247,4,1,""]},"evennia.contrib.tutorial_world.objects.TutorialWeapon":{DoesNotExist:[247,2,1,""],MultipleObjectsReturned:[247,2,1,""],at_object_creation:[247,3,1,""],path:[247,4,1,""],reset:[247,3,1,""],typename:[247,4,1,""]},"evennia.contrib.tutorial_world.objects.TutorialWeaponRack":{DoesNotExist:[247,2,1,""],MultipleObjectsReturned:[247,2,1,""],at_object_creation:[247,3,1,""],path:[247,4,1,""],produce_weapon:[247,3,1,""],typename:[247,4,1,""]},"evennia.contrib.tutorial_world.rooms":{BridgeCmdSet:[248,1,1,""],BridgeRoom:[248,1,1,""],CmdBridgeHelp:[248,1,1,""],CmdDarkHelp:[248,1,1,""],CmdDarkNoMatch:[248,1,1,""],CmdEast:[248,1,1,""],CmdLookBridge:[248,1,1,""],CmdLookDark:[248,1,1,""],CmdTutorial:[248,1,1,""],CmdTutorialLook:[248,1,1,""],CmdTutorialSetDetail:[248,1,1,""],CmdWest:[248,1,1,""],DarkCmdSet:[248,1,1,""],DarkRoom:[248,1,1,""],IntroRoom:[248,1,1,""],OutroRoom:[248,1,1,""],TeleportRoom:[248,1,1,""],TutorialRoom:[248,1,1,""],TutorialRoomCmdSet:[248,1,1,""],WeatherRoom:[248,1,1,""]},"evennia.contrib.tutorial_world.rooms.BridgeCmdSet":{at_cmdset_creation:[248,3,1,""],key:[248,4,1,""],path:[248,4,1,""],priority:[248,4,1,""]},"evennia.contrib.tutorial_world.rooms.BridgeRoom":{DoesNotExist:[248,2,1,""],MultipleObjectsReturned:[248,2,1,""],at_object_creation:[248,3,1,""],at_object_leave:[248,3,1,""],at_object_receive:[248,3,1,""],path:[248,4,1,""],typename:[248,4,1,""],update_weather:[248,3,1,""]},"evennia.contrib.tutorial_world.rooms.CmdBridgeHelp":{aliases:[248,4,1,""],func:[248,3,1,""],help_category:[248,4,1,""],key:[248,4,1,""],lock_storage:[248,4,1,""],locks:[248,4,1,""],search_index_entry:[248,4,1,""]},"evennia.contrib.tutorial_world.rooms.CmdDarkHelp":{aliases:[248,4,1,""],func:[248,3,1,""],help_category:[248,4,1,""],key:[248,4,1,""],lock_storage:[248,4,1,""],locks:[248,4,1,""],search_index_entry:[248,4,1,""]},"evennia.contrib.tutorial_world.rooms.CmdDarkNoMatch":{aliases:[248,4,1,""],func:[248,3,1,""],help_category:[248,4,1,""],key:[248,4,1,""],lock_storage:[248,4,1,""],locks:[248,4,1,""],search_index_entry:[248,4,1,""]},"evennia.contrib.tutorial_world.rooms.CmdEast":{aliases:[248,4,1,""],func:[248,3,1,""],help_category:[248,4,1,""],key:[248,4,1,""],lock_storage:[248,4,1,""],locks:[248,4,1,""],search_index_entry:[248,4,1,""]},"evennia.contrib.tutorial_world.rooms.CmdLookBridge":{aliases:[248,4,1,""],func:[248,3,1,""],help_category:[248,4,1,""],key:[248,4,1,""],lock_storage:[248,4,1,""],locks:[248,4,1,""],search_index_entry:[248,4,1,""]},"evennia.contrib.tutorial_world.rooms.CmdLookDark":{aliases:[248,4,1,""],func:[248,3,1,""],help_category:[248,4,1,""],key:[248,4,1,""],lock_storage:[248,4,1,""],locks:[248,4,1,""],search_index_entry:[248,4,1,""]},"evennia.contrib.tutorial_world.rooms.CmdTutorial":{aliases:[248,4,1,""],func:[248,3,1,""],help_category:[248,4,1,""],key:[248,4,1,""],lock_storage:[248,4,1,""],locks:[248,4,1,""],search_index_entry:[248,4,1,""]},"evennia.contrib.tutorial_world.rooms.CmdTutorialLook":{aliases:[248,4,1,""],func:[248,3,1,""],help_category:[248,4,1,""],key:[248,4,1,""],lock_storage:[248,4,1,""],search_index_entry:[248,4,1,""]},"evennia.contrib.tutorial_world.rooms.CmdTutorialSetDetail":{aliases:[248,4,1,""],func:[248,3,1,""],help_category:[248,4,1,""],key:[248,4,1,""],lock_storage:[248,4,1,""],locks:[248,4,1,""],search_index_entry:[248,4,1,""]},"evennia.contrib.tutorial_world.rooms.CmdWest":{aliases:[248,4,1,""],func:[248,3,1,""],help_category:[248,4,1,""],key:[248,4,1,""],lock_storage:[248,4,1,""],locks:[248,4,1,""],search_index_entry:[248,4,1,""]},"evennia.contrib.tutorial_world.rooms.DarkCmdSet":{at_cmdset_creation:[248,3,1,""],key:[248,4,1,""],mergetype:[248,4,1,""],path:[248,4,1,""],priority:[248,4,1,""]},"evennia.contrib.tutorial_world.rooms.DarkRoom":{DoesNotExist:[248,2,1,""],MultipleObjectsReturned:[248,2,1,""],at_init:[248,3,1,""],at_object_creation:[248,3,1,""],at_object_leave:[248,3,1,""],at_object_receive:[248,3,1,""],check_light_state:[248,3,1,""],path:[248,4,1,""],typename:[248,4,1,""]},"evennia.contrib.tutorial_world.rooms.IntroRoom":{DoesNotExist:[248,2,1,""],MultipleObjectsReturned:[248,2,1,""],at_object_creation:[248,3,1,""],at_object_receive:[248,3,1,""],path:[248,4,1,""],typename:[248,4,1,""]},"evennia.contrib.tutorial_world.rooms.OutroRoom":{DoesNotExist:[248,2,1,""],MultipleObjectsReturned:[248,2,1,""],at_object_creation:[248,3,1,""],at_object_receive:[248,3,1,""],path:[248,4,1,""],typename:[248,4,1,""]},"evennia.contrib.tutorial_world.rooms.TeleportRoom":{DoesNotExist:[248,2,1,""],MultipleObjectsReturned:[248,2,1,""],at_object_creation:[248,3,1,""],at_object_receive:[248,3,1,""],path:[248,4,1,""],typename:[248,4,1,""]},"evennia.contrib.tutorial_world.rooms.TutorialRoom":{DoesNotExist:[248,2,1,""],MultipleObjectsReturned:[248,2,1,""],at_object_creation:[248,3,1,""],at_object_receive:[248,3,1,""],path:[248,4,1,""],return_detail:[248,3,1,""],set_detail:[248,3,1,""],typename:[248,4,1,""]},"evennia.contrib.tutorial_world.rooms.TutorialRoomCmdSet":{at_cmdset_creation:[248,3,1,""],key:[248,4,1,""],path:[248,4,1,""],priority:[248,4,1,""]},"evennia.contrib.tutorial_world.rooms.WeatherRoom":{DoesNotExist:[248,2,1,""],MultipleObjectsReturned:[248,2,1,""],at_object_creation:[248,3,1,""],path:[248,4,1,""],typename:[248,4,1,""],update_weather:[248,3,1,""]},"evennia.contrib.unixcommand":{HelpAction:[249,1,1,""],ParseError:[249,2,1,""],UnixCommand:[249,1,1,""],UnixCommandParser:[249,1,1,""]},"evennia.contrib.unixcommand.UnixCommand":{__init__:[249,3,1,""],aliases:[249,4,1,""],func:[249,3,1,""],get_help:[249,3,1,""],help_category:[249,4,1,""],init_parser:[249,3,1,""],key:[249,4,1,""],lock_storage:[249,4,1,""],parse:[249,3,1,""],search_index_entry:[249,4,1,""]},"evennia.contrib.unixcommand.UnixCommandParser":{__init__:[249,3,1,""],format_help:[249,3,1,""],format_usage:[249,3,1,""],print_help:[249,3,1,""],print_usage:[249,3,1,""]},"evennia.contrib.wilderness":{WildernessExit:[250,1,1,""],WildernessMapProvider:[250,1,1,""],WildernessRoom:[250,1,1,""],WildernessScript:[250,1,1,""],create_wilderness:[250,5,1,""],enter_wilderness:[250,5,1,""],get_new_coordinates:[250,5,1,""]},"evennia.contrib.wilderness.WildernessExit":{DoesNotExist:[250,2,1,""],MultipleObjectsReturned:[250,2,1,""],at_traverse:[250,3,1,""],at_traverse_coordinates:[250,3,1,""],mapprovider:[250,3,1,""],path:[250,4,1,""],typename:[250,4,1,""],wilderness:[250,3,1,""]},"evennia.contrib.wilderness.WildernessMapProvider":{at_prepare_room:[250,3,1,""],exit_typeclass:[250,4,1,""],get_location_name:[250,3,1,""],is_valid_coordinates:[250,3,1,""],room_typeclass:[250,4,1,""]},"evennia.contrib.wilderness.WildernessRoom":{DoesNotExist:[250,2,1,""],MultipleObjectsReturned:[250,2,1,""],at_object_leave:[250,3,1,""],at_object_receive:[250,3,1,""],coordinates:[250,3,1,""],get_display_name:[250,3,1,""],location_name:[250,3,1,""],path:[250,4,1,""],set_active_coordinates:[250,3,1,""],typename:[250,4,1,""],wilderness:[250,3,1,""]},"evennia.contrib.wilderness.WildernessScript":{DoesNotExist:[250,2,1,""],MultipleObjectsReturned:[250,2,1,""],at_after_object_leave:[250,3,1,""],at_script_creation:[250,3,1,""],at_start:[250,3,1,""],get_obj_coordinates:[250,3,1,""],get_objs_at_coordinates:[250,3,1,""],is_valid_coordinates:[250,3,1,""],itemcoordinates:[250,3,1,""],mapprovider:[250,3,1,""],move_obj:[250,3,1,""],path:[250,4,1,""],typename:[250,4,1,""]},"evennia.help":{admin:[252,0,0,"-"],manager:[253,0,0,"-"],models:[254,0,0,"-"]},"evennia.help.admin":{HelpEntryAdmin:[252,1,1,""],HelpEntryForm:[252,1,1,""],HelpTagInline:[252,1,1,""]},"evennia.help.admin.HelpEntryAdmin":{fieldsets:[252,4,1,""],form:[252,4,1,""],inlines:[252,4,1,""],list_display:[252,4,1,""],list_display_links:[252,4,1,""],list_select_related:[252,4,1,""],media:[252,3,1,""],ordering:[252,4,1,""],save_as:[252,4,1,""],save_on_top:[252,4,1,""],search_fields:[252,4,1,""]},"evennia.help.admin.HelpEntryForm":{Meta:[252,1,1,""],base_fields:[252,4,1,""],declared_fields:[252,4,1,""],media:[252,3,1,""]},"evennia.help.admin.HelpEntryForm.Meta":{fields:[252,4,1,""],model:[252,4,1,""]},"evennia.help.admin.HelpTagInline":{media:[252,3,1,""],model:[252,4,1,""],related_field:[252,4,1,""]},"evennia.help.manager":{HelpEntryManager:[253,1,1,""]},"evennia.help.manager.HelpEntryManager":{all_to_category:[253,3,1,""],find_apropos:[253,3,1,""],find_topicmatch:[253,3,1,""],find_topics_with_category:[253,3,1,""],find_topicsuggestions:[253,3,1,""],get_all_categories:[253,3,1,""],get_all_topics:[253,3,1,""],search_help:[253,3,1,""]},"evennia.help.models":{HelpEntry:[254,1,1,""]},"evennia.help.models.HelpEntry":{DoesNotExist:[254,2,1,""],MultipleObjectsReturned:[254,2,1,""],access:[254,3,1,""],aliases:[254,4,1,""],db_entrytext:[254,4,1,""],db_help_category:[254,4,1,""],db_key:[254,4,1,""],db_lock_storage:[254,4,1,""],db_staff_only:[254,4,1,""],db_tags:[254,4,1,""],entrytext:[254,3,1,""],get_absolute_url:[254,3,1,""],help_category:[254,3,1,""],id:[254,4,1,""],key:[254,3,1,""],lock_storage:[254,3,1,""],locks:[254,4,1,""],objects:[254,4,1,""],path:[254,4,1,""],search_index_entry:[254,3,1,""],staff_only:[254,3,1,""],tags:[254,4,1,""],typename:[254,4,1,""],web_get_admin_url:[254,3,1,""],web_get_create_url:[254,3,1,""],web_get_delete_url:[254,3,1,""],web_get_detail_url:[254,3,1,""],web_get_update_url:[254,3,1,""]},"evennia.locks":{lockfuncs:[256,0,0,"-"],lockhandler:[257,0,0,"-"]},"evennia.locks.lockfuncs":{"false":[256,5,1,""],"true":[256,5,1,""],all:[256,5,1,""],attr:[256,5,1,""],attr_eq:[256,5,1,""],attr_ge:[256,5,1,""],attr_gt:[256,5,1,""],attr_le:[256,5,1,""],attr_lt:[256,5,1,""],attr_ne:[256,5,1,""],dbref:[256,5,1,""],has_account:[256,5,1,""],holds:[256,5,1,""],id:[256,5,1,""],inside:[256,5,1,""],inside_rec:[256,5,1,""],locattr:[256,5,1,""],none:[256,5,1,""],objattr:[256,5,1,""],objlocattr:[256,5,1,""],objtag:[256,5,1,""],pdbref:[256,5,1,""],perm:[256,5,1,""],perm_above:[256,5,1,""],pid:[256,5,1,""],pperm:[256,5,1,""],pperm_above:[256,5,1,""],self:[256,5,1,""],serversetting:[256,5,1,""],superuser:[256,5,1,""],tag:[256,5,1,""]},"evennia.locks.lockhandler":{LockException:[257,2,1,""],LockHandler:[257,1,1,""]},"evennia.locks.lockhandler.LockHandler":{"delete":[257,3,1,""],__init__:[257,3,1,""],add:[257,3,1,""],all:[257,3,1,""],append:[257,3,1,""],cache_lock_bypass:[257,3,1,""],check:[257,3,1,""],check_lockstring:[257,3,1,""],clear:[257,3,1,""],get:[257,3,1,""],remove:[257,3,1,""],replace:[257,3,1,""],reset:[257,3,1,""],validate:[257,3,1,""]},"evennia.objects":{admin:[259,0,0,"-"],manager:[260,0,0,"-"],models:[261,0,0,"-"],objects:[262,0,0,"-"]},"evennia.objects.admin":{ObjectAttributeInline:[259,1,1,""],ObjectCreateForm:[259,1,1,""],ObjectDBAdmin:[259,1,1,""],ObjectEditForm:[259,1,1,""],ObjectTagInline:[259,1,1,""]},"evennia.objects.admin.ObjectAttributeInline":{media:[259,3,1,""],model:[259,4,1,""],related_field:[259,4,1,""]},"evennia.objects.admin.ObjectCreateForm":{Meta:[259,1,1,""],base_fields:[259,4,1,""],declared_fields:[259,4,1,""],media:[259,3,1,""],raw_id_fields:[259,4,1,""]},"evennia.objects.admin.ObjectCreateForm.Meta":{fields:[259,4,1,""],model:[259,4,1,""]},"evennia.objects.admin.ObjectDBAdmin":{add_fieldsets:[259,4,1,""],add_form:[259,4,1,""],fieldsets:[259,4,1,""],form:[259,4,1,""],get_fieldsets:[259,3,1,""],get_form:[259,3,1,""],inlines:[259,4,1,""],list_display:[259,4,1,""],list_display_links:[259,4,1,""],list_filter:[259,4,1,""],list_select_related:[259,4,1,""],media:[259,3,1,""],ordering:[259,4,1,""],raw_id_fields:[259,4,1,""],response_add:[259,3,1,""],save_as:[259,4,1,""],save_model:[259,3,1,""],save_on_top:[259,4,1,""],search_fields:[259,4,1,""]},"evennia.objects.admin.ObjectEditForm":{Meta:[259,1,1,""],base_fields:[259,4,1,""],declared_fields:[259,4,1,""],media:[259,3,1,""]},"evennia.objects.admin.ObjectEditForm.Meta":{fields:[259,4,1,""]},"evennia.objects.admin.ObjectTagInline":{media:[259,3,1,""],model:[259,4,1,""],related_field:[259,4,1,""]},"evennia.objects.manager":{ObjectManager:[260,1,1,""]},"evennia.objects.models":{ContentsHandler:[261,1,1,""],ObjectDB:[261,1,1,""]},"evennia.objects.models.ContentsHandler":{__init__:[261,3,1,""],add:[261,3,1,""],clear:[261,3,1,""],get:[261,3,1,""],init:[261,3,1,""],load:[261,3,1,""],remove:[261,3,1,""]},"evennia.objects.models.ObjectDB":{DoesNotExist:[261,2,1,""],MultipleObjectsReturned:[261,2,1,""],account:[261,3,1,""],at_db_location_postsave:[261,3,1,""],cmdset_storage:[261,3,1,""],contents_cache:[261,4,1,""],db_account:[261,4,1,""],db_account_id:[261,4,1,""],db_attributes:[261,4,1,""],db_cmdset_storage:[261,4,1,""],db_destination:[261,4,1,""],db_destination_id:[261,4,1,""],db_home:[261,4,1,""],db_home_id:[261,4,1,""],db_location:[261,4,1,""],db_location_id:[261,4,1,""],db_sessid:[261,4,1,""],db_tags:[261,4,1,""],destination:[261,3,1,""],destinations_set:[261,4,1,""],get_next_by_db_date_created:[261,3,1,""],get_previous_by_db_date_created:[261,3,1,""],hide_from_objects_set:[261,4,1,""],home:[261,3,1,""],homes_set:[261,4,1,""],id:[261,4,1,""],location:[261,3,1,""],locations_set:[261,4,1,""],object_subscription_set:[261,4,1,""],objects:[261,4,1,""],path:[261,4,1,""],receiver_object_set:[261,4,1,""],scriptdb_set:[261,4,1,""],sender_object_set:[261,4,1,""],sessid:[261,3,1,""],typename:[261,4,1,""]},"evennia.objects.objects":{DefaultCharacter:[262,1,1,""],DefaultExit:[262,1,1,""],DefaultObject:[262,1,1,""],DefaultRoom:[262,1,1,""],ExitCommand:[262,1,1,""],ObjectSessionHandler:[262,1,1,""]},"evennia.objects.objects.DefaultCharacter":{DoesNotExist:[262,2,1,""],MultipleObjectsReturned:[262,2,1,""],at_after_move:[262,3,1,""],at_post_puppet:[262,3,1,""],at_post_unpuppet:[262,3,1,""],at_pre_puppet:[262,3,1,""],basetype_setup:[262,3,1,""],connection_time:[262,3,1,""],create:[262,3,1,""],idle_time:[262,3,1,""],lockstring:[262,4,1,""],normalize_name:[262,3,1,""],path:[262,4,1,""],typename:[262,4,1,""],validate_name:[262,3,1,""]},"evennia.objects.objects.DefaultExit":{DoesNotExist:[262,2,1,""],MultipleObjectsReturned:[262,2,1,""],at_cmdset_get:[262,3,1,""],at_failed_traverse:[262,3,1,""],at_init:[262,3,1,""],at_traverse:[262,3,1,""],basetype_setup:[262,3,1,""],create:[262,3,1,""],create_exit_cmdset:[262,3,1,""],exit_command:[262,4,1,""],lockstring:[262,4,1,""],path:[262,4,1,""],priority:[262,4,1,""],typename:[262,4,1,""]},"evennia.objects.objects.DefaultObject":{"delete":[262,3,1,""],DoesNotExist:[262,2,1,""],MultipleObjectsReturned:[262,2,1,""],access:[262,3,1,""],announce_move_from:[262,3,1,""],announce_move_to:[262,3,1,""],at_access:[262,3,1,""],at_after_move:[262,3,1,""],at_after_traverse:[262,3,1,""],at_before_drop:[262,3,1,""],at_before_get:[262,3,1,""],at_before_give:[262,3,1,""],at_before_move:[262,3,1,""],at_before_say:[262,3,1,""],at_cmdset_get:[262,3,1,""],at_desc:[262,3,1,""],at_drop:[262,3,1,""],at_failed_traverse:[262,3,1,""],at_first_save:[262,3,1,""],at_get:[262,3,1,""],at_give:[262,3,1,""],at_init:[262,3,1,""],at_look:[262,3,1,""],at_msg_receive:[262,3,1,""],at_msg_send:[262,3,1,""],at_object_creation:[262,3,1,""],at_object_delete:[262,3,1,""],at_object_leave:[262,3,1,""],at_object_post_copy:[262,3,1,""],at_object_receive:[262,3,1,""],at_post_puppet:[262,3,1,""],at_post_unpuppet:[262,3,1,""],at_pre_puppet:[262,3,1,""],at_pre_unpuppet:[262,3,1,""],at_say:[262,3,1,""],at_server_reload:[262,3,1,""],at_server_shutdown:[262,3,1,""],at_traverse:[262,3,1,""],basetype_posthook_setup:[262,3,1,""],basetype_setup:[262,3,1,""],clear_contents:[262,3,1,""],clear_exits:[262,3,1,""],cmdset:[262,4,1,""],contents:[262,3,1,""],contents_get:[262,3,1,""],contents_set:[262,3,1,""],copy:[262,3,1,""],create:[262,3,1,""],execute_cmd:[262,3,1,""],exits:[262,3,1,""],for_contents:[262,3,1,""],get_display_name:[262,3,1,""],get_numbered_name:[262,3,1,""],has_account:[262,3,1,""],is_connected:[262,3,1,""],is_superuser:[262,3,1,""],lockstring:[262,4,1,""],move_to:[262,3,1,""],msg:[262,3,1,""],msg_contents:[262,3,1,""],nicks:[262,4,1,""],objects:[262,4,1,""],path:[262,4,1,""],return_appearance:[262,3,1,""],scripts:[262,4,1,""],search:[262,3,1,""],search_account:[262,3,1,""],sessions:[262,4,1,""],typename:[262,4,1,""]},"evennia.objects.objects.DefaultRoom":{DoesNotExist:[262,2,1,""],MultipleObjectsReturned:[262,2,1,""],basetype_setup:[262,3,1,""],create:[262,3,1,""],lockstring:[262,4,1,""],path:[262,4,1,""],typename:[262,4,1,""]},"evennia.objects.objects.ExitCommand":{aliases:[262,4,1,""],func:[262,3,1,""],get_extra_info:[262,3,1,""],help_category:[262,4,1,""],key:[262,4,1,""],lock_storage:[262,4,1,""],obj:[262,4,1,""],search_index_entry:[262,4,1,""]},"evennia.objects.objects.ObjectSessionHandler":{__init__:[262,3,1,""],add:[262,3,1,""],all:[262,3,1,""],clear:[262,3,1,""],count:[262,3,1,""],get:[262,3,1,""],remove:[262,3,1,""]},"evennia.prototypes":{menus:[264,0,0,"-"],protfuncs:[265,0,0,"-"],prototypes:[266,0,0,"-"],spawner:[267,0,0,"-"]},"evennia.prototypes.menus":{OLCMenu:[264,1,1,""],node_apply_diff:[264,5,1,""],node_destination:[264,5,1,""],node_examine_entity:[264,5,1,""],node_home:[264,5,1,""],node_index:[264,5,1,""],node_key:[264,5,1,""],node_location:[264,5,1,""],node_prototype_desc:[264,5,1,""],node_prototype_key:[264,5,1,""],node_prototype_save:[264,5,1,""],node_prototype_spawn:[264,5,1,""],node_validate_prototype:[264,5,1,""],start_olc:[264,5,1,""]},"evennia.prototypes.menus.OLCMenu":{display_helptext:[264,3,1,""],helptext_formatter:[264,3,1,""],nodetext_formatter:[264,3,1,""],options_formatter:[264,3,1,""]},"evennia.prototypes.protfuncs":{add:[265,5,1,""],base_random:[265,5,1,""],center_justify:[265,5,1,""],choice:[265,5,1,""],dbref:[265,5,1,""],div:[265,5,1,""],eval:[265,5,1,""],full_justify:[265,5,1,""],left_justify:[265,5,1,""],mult:[265,5,1,""],obj:[265,5,1,""],objlist:[265,5,1,""],protkey:[265,5,1,""],randint:[265,5,1,""],random:[265,5,1,""],right_justify:[265,5,1,""],sub:[265,5,1,""],toint:[265,5,1,""]},"evennia.prototypes.prototypes":{DbPrototype:[266,1,1,""],PermissionError:[266,2,1,""],ValidationError:[266,2,1,""],check_permission:[266,5,1,""],create_prototype:[266,5,1,""],delete_prototype:[266,5,1,""],format_available_protfuncs:[266,5,1,""],homogenize_prototype:[266,5,1,""],init_spawn_value:[266,5,1,""],list_prototypes:[266,5,1,""],protfunc_parser:[266,5,1,""],prototype_to_str:[266,5,1,""],save_prototype:[266,5,1,""],search_objects_with_prototype:[266,5,1,""],search_prototype:[266,5,1,""],validate_prototype:[266,5,1,""],value_to_obj:[266,5,1,""],value_to_obj_or_any:[266,5,1,""]},"evennia.prototypes.prototypes.DbPrototype":{DoesNotExist:[266,2,1,""],MultipleObjectsReturned:[266,2,1,""],at_script_creation:[266,3,1,""],path:[266,4,1,""],prototype:[266,3,1,""],typename:[266,4,1,""]},"evennia.prototypes.spawner":{Unset:[267,1,1,""],batch_create_object:[267,5,1,""],batch_update_objects_with_prototype:[267,5,1,""],flatten_diff:[267,5,1,""],flatten_prototype:[267,5,1,""],format_diff:[267,5,1,""],prototype_diff:[267,5,1,""],prototype_diff_from_object:[267,5,1,""],prototype_from_object:[267,5,1,""],spawn:[267,5,1,""]},"evennia.scripts":{admin:[269,0,0,"-"],manager:[270,0,0,"-"],models:[271,0,0,"-"],monitorhandler:[272,0,0,"-"],scripthandler:[273,0,0,"-"],scripts:[274,0,0,"-"],taskhandler:[275,0,0,"-"],tickerhandler:[276,0,0,"-"]},"evennia.scripts.admin":{ScriptAttributeInline:[269,1,1,""],ScriptDBAdmin:[269,1,1,""],ScriptTagInline:[269,1,1,""]},"evennia.scripts.admin.ScriptAttributeInline":{media:[269,3,1,""],model:[269,4,1,""],related_field:[269,4,1,""]},"evennia.scripts.admin.ScriptDBAdmin":{fieldsets:[269,4,1,""],inlines:[269,4,1,""],list_display:[269,4,1,""],list_display_links:[269,4,1,""],list_select_related:[269,4,1,""],media:[269,3,1,""],ordering:[269,4,1,""],raw_id_fields:[269,4,1,""],save_as:[269,4,1,""],save_model:[269,3,1,""],save_on_top:[269,4,1,""],search_fields:[269,4,1,""]},"evennia.scripts.admin.ScriptTagInline":{media:[269,3,1,""],model:[269,4,1,""],related_field:[269,4,1,""]},"evennia.scripts.manager":{ScriptManager:[270,1,1,""]},"evennia.scripts.models":{ScriptDB:[271,1,1,""]},"evennia.scripts.models.ScriptDB":{DoesNotExist:[271,2,1,""],MultipleObjectsReturned:[271,2,1,""],account:[271,3,1,""],db_account:[271,4,1,""],db_account_id:[271,4,1,""],db_attributes:[271,4,1,""],db_desc:[271,4,1,""],db_interval:[271,4,1,""],db_is_active:[271,4,1,""],db_obj:[271,4,1,""],db_obj_id:[271,4,1,""],db_persistent:[271,4,1,""],db_repeats:[271,4,1,""],db_start_delay:[271,4,1,""],db_tags:[271,4,1,""],desc:[271,3,1,""],get_next_by_db_date_created:[271,3,1,""],get_previous_by_db_date_created:[271,3,1,""],id:[271,4,1,""],interval:[271,3,1,""],is_active:[271,3,1,""],obj:[271,3,1,""],object:[271,3,1,""],objects:[271,4,1,""],path:[271,4,1,""],persistent:[271,3,1,""],receiver_script_set:[271,4,1,""],repeats:[271,3,1,""],sender_script_set:[271,4,1,""],start_delay:[271,3,1,""],typename:[271,4,1,""]},"evennia.scripts.monitorhandler":{MonitorHandler:[272,1,1,""]},"evennia.scripts.monitorhandler.MonitorHandler":{__init__:[272,3,1,""],add:[272,3,1,""],all:[272,3,1,""],at_update:[272,3,1,""],clear:[272,3,1,""],remove:[272,3,1,""],restore:[272,3,1,""],save:[272,3,1,""]},"evennia.scripts.scripthandler":{ScriptHandler:[273,1,1,""]},"evennia.scripts.scripthandler.ScriptHandler":{"delete":[273,3,1,""],__init__:[273,3,1,""],add:[273,3,1,""],all:[273,3,1,""],get:[273,3,1,""],start:[273,3,1,""],stop:[273,3,1,""],validate:[273,3,1,""]},"evennia.scripts.scripts":{DefaultScript:[274,1,1,""],DoNothing:[274,1,1,""],Store:[274,1,1,""]},"evennia.scripts.scripts.DefaultScript":{DoesNotExist:[274,2,1,""],MultipleObjectsReturned:[274,2,1,""],at_idmapper_flush:[274,3,1,""],at_repeat:[274,3,1,""],at_script_creation:[274,3,1,""],at_server_reload:[274,3,1,""],at_server_shutdown:[274,3,1,""],at_start:[274,3,1,""],at_stop:[274,3,1,""],create:[274,3,1,""],force_repeat:[274,3,1,""],is_valid:[274,3,1,""],path:[274,4,1,""],pause:[274,3,1,""],remaining_repeats:[274,3,1,""],reset_callcount:[274,3,1,""],restart:[274,3,1,""],start:[274,3,1,""],stop:[274,3,1,""],time_until_next_repeat:[274,3,1,""],typename:[274,4,1,""],unpause:[274,3,1,""]},"evennia.scripts.scripts.DoNothing":{DoesNotExist:[274,2,1,""],MultipleObjectsReturned:[274,2,1,""],at_script_creation:[274,3,1,""],path:[274,4,1,""],typename:[274,4,1,""]},"evennia.scripts.scripts.Store":{DoesNotExist:[274,2,1,""],MultipleObjectsReturned:[274,2,1,""],at_script_creation:[274,3,1,""],path:[274,4,1,""],typename:[274,4,1,""]},"evennia.scripts.taskhandler":{TaskHandler:[275,1,1,""]},"evennia.scripts.taskhandler.TaskHandler":{__init__:[275,3,1,""],add:[275,3,1,""],create_delays:[275,3,1,""],do_task:[275,3,1,""],load:[275,3,1,""],remove:[275,3,1,""],save:[275,3,1,""]},"evennia.scripts.tickerhandler":{Ticker:[276,1,1,""],TickerHandler:[276,1,1,""],TickerPool:[276,1,1,""]},"evennia.scripts.tickerhandler.Ticker":{__init__:[276,3,1,""],add:[276,3,1,""],remove:[276,3,1,""],stop:[276,3,1,""],validate:[276,3,1,""]},"evennia.scripts.tickerhandler.TickerHandler":{__init__:[276,3,1,""],add:[276,3,1,""],all:[276,3,1,""],all_display:[276,3,1,""],clear:[276,3,1,""],remove:[276,3,1,""],restore:[276,3,1,""],save:[276,3,1,""],ticker_pool_class:[276,4,1,""]},"evennia.scripts.tickerhandler.TickerPool":{__init__:[276,3,1,""],add:[276,3,1,""],remove:[276,3,1,""],stop:[276,3,1,""],ticker_class:[276,4,1,""]},"evennia.server":{admin:[278,0,0,"-"],amp_client:[279,0,0,"-"],connection_wizard:[280,0,0,"-"],deprecations:[281,0,0,"-"],evennia_launcher:[282,0,0,"-"],game_index_client:[283,0,0,"-"],initial_setup:[286,0,0,"-"],inputfuncs:[287,0,0,"-"],manager:[288,0,0,"-"],models:[289,0,0,"-"],portal:[290,0,0,"-"],profiling:[312,0,0,"-"],server:[320,0,0,"-"],serversession:[321,0,0,"-"],session:[322,0,0,"-"],sessionhandler:[323,0,0,"-"],signals:[324,0,0,"-"],throttle:[325,0,0,"-"],validators:[326,0,0,"-"],webserver:[327,0,0,"-"]},"evennia.server.admin":{ServerConfigAdmin:[278,1,1,""]},"evennia.server.admin.ServerConfigAdmin":{list_display:[278,4,1,""],list_display_links:[278,4,1,""],list_select_related:[278,4,1,""],media:[278,3,1,""],ordering:[278,4,1,""],save_as:[278,4,1,""],save_on_top:[278,4,1,""],search_fields:[278,4,1,""]},"evennia.server.amp_client":{AMPClientFactory:[279,1,1,""],AMPServerClientProtocol:[279,1,1,""]},"evennia.server.amp_client.AMPClientFactory":{__init__:[279,3,1,""],buildProtocol:[279,3,1,""],clientConnectionFailed:[279,3,1,""],clientConnectionLost:[279,3,1,""],factor:[279,4,1,""],initialDelay:[279,4,1,""],maxDelay:[279,4,1,""],noisy:[279,4,1,""],startedConnecting:[279,3,1,""]},"evennia.server.amp_client.AMPServerClientProtocol":{connectionMade:[279,3,1,""],data_to_portal:[279,3,1,""],send_AdminServer2Portal:[279,3,1,""],send_MsgServer2Portal:[279,3,1,""],server_receive_adminportal2server:[279,3,1,""],server_receive_msgportal2server:[279,3,1,""],server_receive_status:[279,3,1,""]},"evennia.server.connection_wizard":{ConnectionWizard:[280,1,1,""],node_game_index_fields:[280,5,1,""],node_game_index_start:[280,5,1,""],node_mssp_start:[280,5,1,""],node_start:[280,5,1,""],node_view_and_apply_settings:[280,5,1,""]},"evennia.server.connection_wizard.ConnectionWizard":{__init__:[280,3,1,""],ask_choice:[280,3,1,""],ask_continue:[280,3,1,""],ask_input:[280,3,1,""],ask_node:[280,3,1,""],ask_yesno:[280,3,1,""],display:[280,3,1,""]},"evennia.server.deprecations":{check_errors:[281,5,1,""],check_warnings:[281,5,1,""]},"evennia.server.evennia_launcher":{AMPLauncherProtocol:[282,1,1,""],MsgLauncher2Portal:[282,1,1,""],MsgStatus:[282,1,1,""],check_database:[282,5,1,""],check_main_evennia_dependencies:[282,5,1,""],collectstatic:[282,5,1,""],create_game_directory:[282,5,1,""],create_secret_key:[282,5,1,""],create_settings_file:[282,5,1,""],create_superuser:[282,5,1,""],del_pid:[282,5,1,""],error_check_python_modules:[282,5,1,""],evennia_version:[282,5,1,""],get_pid:[282,5,1,""],getenv:[282,5,1,""],init_game_directory:[282,5,1,""],kill:[282,5,1,""],list_settings:[282,5,1,""],main:[282,5,1,""],query_info:[282,5,1,""],query_status:[282,5,1,""],reboot_evennia:[282,5,1,""],reload_evennia:[282,5,1,""],run_connect_wizard:[282,5,1,""],run_dummyrunner:[282,5,1,""],run_menu:[282,5,1,""],send_instruction:[282,5,1,""],set_gamedir:[282,5,1,""],show_version_info:[282,5,1,""],start_evennia:[282,5,1,""],start_only_server:[282,5,1,""],start_portal_interactive:[282,5,1,""],start_server_interactive:[282,5,1,""],stop_evennia:[282,5,1,""],stop_server_only:[282,5,1,""],tail_log_files:[282,5,1,""],wait_for_status:[282,5,1,""],wait_for_status_reply:[282,5,1,""]},"evennia.server.evennia_launcher.AMPLauncherProtocol":{__init__:[282,3,1,""],receive_status_from_portal:[282,3,1,""],wait_for_status:[282,3,1,""]},"evennia.server.evennia_launcher.MsgLauncher2Portal":{allErrors:[282,4,1,""],arguments:[282,4,1,""],commandName:[282,4,1,""],errors:[282,4,1,""],key:[282,4,1,""],response:[282,4,1,""],reverseErrors:[282,4,1,""]},"evennia.server.evennia_launcher.MsgStatus":{allErrors:[282,4,1,""],arguments:[282,4,1,""],commandName:[282,4,1,""],errors:[282,4,1,""],key:[282,4,1,""],response:[282,4,1,""],reverseErrors:[282,4,1,""]},"evennia.server.game_index_client":{client:[284,0,0,"-"],service:[285,0,0,"-"]},"evennia.server.game_index_client.client":{EvenniaGameIndexClient:[284,1,1,""],QuietHTTP11ClientFactory:[284,1,1,""],SimpleResponseReceiver:[284,1,1,""],StringProducer:[284,1,1,""]},"evennia.server.game_index_client.client.EvenniaGameIndexClient":{__init__:[284,3,1,""],handle_egd_response:[284,3,1,""],send_game_details:[284,3,1,""]},"evennia.server.game_index_client.client.QuietHTTP11ClientFactory":{noisy:[284,4,1,""]},"evennia.server.game_index_client.client.SimpleResponseReceiver":{__init__:[284,3,1,""],connectionLost:[284,3,1,""],dataReceived:[284,3,1,""]},"evennia.server.game_index_client.client.StringProducer":{__init__:[284,3,1,""],pauseProducing:[284,3,1,""],startProducing:[284,3,1,""],stopProducing:[284,3,1,""]},"evennia.server.game_index_client.service":{EvenniaGameIndexService:[285,1,1,""]},"evennia.server.game_index_client.service.EvenniaGameIndexService":{__init__:[285,3,1,""],name:[285,4,1,""],startService:[285,3,1,""],stopService:[285,3,1,""]},"evennia.server.initial_setup":{at_initial_setup:[286,5,1,""],collectstatic:[286,5,1,""],create_channels:[286,5,1,""],create_objects:[286,5,1,""],get_god_account:[286,5,1,""],handle_setup:[286,5,1,""],reset_server:[286,5,1,""]},"evennia.server.inputfuncs":{"default":[287,5,1,""],bot_data_in:[287,5,1,""],client_options:[287,5,1,""],echo:[287,5,1,""],external_discord_hello:[287,5,1,""],get_client_options:[287,5,1,""],get_inputfuncs:[287,5,1,""],get_value:[287,5,1,""],hello:[287,5,1,""],login:[287,5,1,""],monitor:[287,5,1,""],monitored:[287,5,1,""],msdp_list:[287,5,1,""],msdp_report:[287,5,1,""],msdp_send:[287,5,1,""],msdp_unreport:[287,5,1,""],repeat:[287,5,1,""],supports_set:[287,5,1,""],text:[287,5,1,""],unmonitor:[287,5,1,""],unrepeat:[287,5,1,""],webclient_options:[287,5,1,""]},"evennia.server.manager":{ServerConfigManager:[288,1,1,""]},"evennia.server.manager.ServerConfigManager":{conf:[288,3,1,""]},"evennia.server.models":{ServerConfig:[289,1,1,""]},"evennia.server.models.ServerConfig":{DoesNotExist:[289,2,1,""],MultipleObjectsReturned:[289,2,1,""],db_key:[289,4,1,""],db_value:[289,4,1,""],id:[289,4,1,""],key:[289,3,1,""],objects:[289,4,1,""],path:[289,4,1,""],store:[289,3,1,""],typename:[289,4,1,""],value:[289,3,1,""]},"evennia.server.portal":{amp:[291,0,0,"-"],amp_server:[292,0,0,"-"],grapevine:[293,0,0,"-"],irc:[294,0,0,"-"],mccp:[295,0,0,"-"],mssp:[296,0,0,"-"],mxp:[297,0,0,"-"],naws:[298,0,0,"-"],portal:[299,0,0,"-"],portalsessionhandler:[300,0,0,"-"],rss:[301,0,0,"-"],ssh:[302,0,0,"-"],ssl:[303,0,0,"-"],suppress_ga:[304,0,0,"-"],telnet:[305,0,0,"-"],telnet_oob:[306,0,0,"-"],telnet_ssl:[307,0,0,"-"],tests:[308,0,0,"-"],ttype:[309,0,0,"-"],webclient:[310,0,0,"-"],webclient_ajax:[311,0,0,"-"]},"evennia.server.portal.amp":{AMPMultiConnectionProtocol:[291,1,1,""],AdminPortal2Server:[291,1,1,""],AdminServer2Portal:[291,1,1,""],Compressed:[291,1,1,""],FunctionCall:[291,1,1,""],MsgLauncher2Portal:[291,1,1,""],MsgPortal2Server:[291,1,1,""],MsgServer2Portal:[291,1,1,""],MsgStatus:[291,1,1,""],dumps:[291,5,1,""],loads:[291,5,1,""]},"evennia.server.portal.amp.AMPMultiConnectionProtocol":{__init__:[291,3,1,""],broadcast:[291,3,1,""],connectionLost:[291,3,1,""],connectionMade:[291,3,1,""],dataReceived:[291,3,1,""],data_in:[291,3,1,""],errback:[291,3,1,""],makeConnection:[291,3,1,""],receive_functioncall:[291,3,1,""],send_FunctionCall:[291,3,1,""]},"evennia.server.portal.amp.AdminPortal2Server":{allErrors:[291,4,1,""],arguments:[291,4,1,""],commandName:[291,4,1,""],errors:[291,4,1,""],key:[291,4,1,""],response:[291,4,1,""],reverseErrors:[291,4,1,""]},"evennia.server.portal.amp.AdminServer2Portal":{allErrors:[291,4,1,""],arguments:[291,4,1,""],commandName:[291,4,1,""],errors:[291,4,1,""],key:[291,4,1,""],response:[291,4,1,""],reverseErrors:[291,4,1,""]},"evennia.server.portal.amp.Compressed":{fromBox:[291,3,1,""],fromString:[291,3,1,""],toBox:[291,3,1,""],toString:[291,3,1,""]},"evennia.server.portal.amp.FunctionCall":{allErrors:[291,4,1,""],arguments:[291,4,1,""],commandName:[291,4,1,""],errors:[291,4,1,""],key:[291,4,1,""],response:[291,4,1,""],reverseErrors:[291,4,1,""]},"evennia.server.portal.amp.MsgLauncher2Portal":{allErrors:[291,4,1,""],arguments:[291,4,1,""],commandName:[291,4,1,""],errors:[291,4,1,""],key:[291,4,1,""],response:[291,4,1,""],reverseErrors:[291,4,1,""]},"evennia.server.portal.amp.MsgPortal2Server":{allErrors:[291,4,1,""],arguments:[291,4,1,""],commandName:[291,4,1,""],errors:[291,4,1,""],key:[291,4,1,""],response:[291,4,1,""],reverseErrors:[291,4,1,""]},"evennia.server.portal.amp.MsgServer2Portal":{allErrors:[291,4,1,""],arguments:[291,4,1,""],commandName:[291,4,1,""],errors:[291,4,1,""],key:[291,4,1,""],response:[291,4,1,""],reverseErrors:[291,4,1,""]},"evennia.server.portal.amp.MsgStatus":{allErrors:[291,4,1,""],arguments:[291,4,1,""],commandName:[291,4,1,""],errors:[291,4,1,""],key:[291,4,1,""],response:[291,4,1,""],reverseErrors:[291,4,1,""]},"evennia.server.portal.amp_server":{AMPServerFactory:[292,1,1,""],AMPServerProtocol:[292,1,1,""],getenv:[292,5,1,""]},"evennia.server.portal.amp_server.AMPServerFactory":{__init__:[292,3,1,""],buildProtocol:[292,3,1,""],logPrefix:[292,3,1,""],noisy:[292,4,1,""]},"evennia.server.portal.amp_server.AMPServerProtocol":{connectionLost:[292,3,1,""],data_to_server:[292,3,1,""],get_status:[292,3,1,""],portal_receive_adminserver2portal:[292,3,1,""],portal_receive_launcher2portal:[292,3,1,""],portal_receive_server2portal:[292,3,1,""],portal_receive_status:[292,3,1,""],send_AdminPortal2Server:[292,3,1,""],send_MsgPortal2Server:[292,3,1,""],send_Status2Launcher:[292,3,1,""],start_server:[292,3,1,""],stop_server:[292,3,1,""],wait_for_disconnect:[292,3,1,""],wait_for_server_connect:[292,3,1,""]},"evennia.server.portal.grapevine":{GrapevineClient:[293,1,1,""],RestartingWebsocketServerFactory:[293,1,1,""]},"evennia.server.portal.grapevine.GrapevineClient":{__init__:[293,3,1,""],at_login:[293,3,1,""],data_in:[293,3,1,""],disconnect:[293,3,1,""],onClose:[293,3,1,""],onMessage:[293,3,1,""],onOpen:[293,3,1,""],send_authenticate:[293,3,1,""],send_channel:[293,3,1,""],send_default:[293,3,1,""],send_heartbeat:[293,3,1,""],send_subscribe:[293,3,1,""],send_unsubscribe:[293,3,1,""]},"evennia.server.portal.grapevine.RestartingWebsocketServerFactory":{__init__:[293,3,1,""],buildProtocol:[293,3,1,""],clientConnectionFailed:[293,3,1,""],clientConnectionLost:[293,3,1,""],factor:[293,4,1,""],initialDelay:[293,4,1,""],maxDelay:[293,4,1,""],reconnect:[293,3,1,""],start:[293,3,1,""],startedConnecting:[293,3,1,""]},"evennia.server.portal.irc":{IRCBot:[294,1,1,""],IRCBotFactory:[294,1,1,""],parse_ansi_to_irc:[294,5,1,""],parse_irc_to_ansi:[294,5,1,""]},"evennia.server.portal.irc.IRCBot":{action:[294,3,1,""],at_login:[294,3,1,""],channel:[294,4,1,""],data_in:[294,3,1,""],disconnect:[294,3,1,""],factory:[294,4,1,""],get_nicklist:[294,3,1,""],irc_RPL_ENDOFNAMES:[294,3,1,""],irc_RPL_NAMREPLY:[294,3,1,""],lineRate:[294,4,1,""],logger:[294,4,1,""],nickname:[294,4,1,""],pong:[294,3,1,""],privmsg:[294,3,1,""],send_channel:[294,3,1,""],send_default:[294,3,1,""],send_ping:[294,3,1,""],send_privmsg:[294,3,1,""],send_reconnect:[294,3,1,""],send_request_nicklist:[294,3,1,""],signedOn:[294,3,1,""],sourceURL:[294,4,1,""]},"evennia.server.portal.irc.IRCBotFactory":{__init__:[294,3,1,""],buildProtocol:[294,3,1,""],clientConnectionFailed:[294,3,1,""],clientConnectionLost:[294,3,1,""],factor:[294,4,1,""],initialDelay:[294,4,1,""],maxDelay:[294,4,1,""],reconnect:[294,3,1,""],start:[294,3,1,""],startedConnecting:[294,3,1,""]},"evennia.server.portal.mccp":{Mccp:[295,1,1,""],mccp_compress:[295,5,1,""]},"evennia.server.portal.mccp.Mccp":{__init__:[295,3,1,""],do_mccp:[295,3,1,""],no_mccp:[295,3,1,""]},"evennia.server.portal.mssp":{Mssp:[296,1,1,""]},"evennia.server.portal.mssp.Mssp":{__init__:[296,3,1,""],do_mssp:[296,3,1,""],get_player_count:[296,3,1,""],get_uptime:[296,3,1,""],no_mssp:[296,3,1,""]},"evennia.server.portal.mxp":{Mxp:[297,1,1,""],mxp_parse:[297,5,1,""]},"evennia.server.portal.mxp.Mxp":{__init__:[297,3,1,""],do_mxp:[297,3,1,""],no_mxp:[297,3,1,""]},"evennia.server.portal.naws":{Naws:[298,1,1,""]},"evennia.server.portal.naws.Naws":{__init__:[298,3,1,""],do_naws:[298,3,1,""],negotiate_sizes:[298,3,1,""],no_naws:[298,3,1,""]},"evennia.server.portal.portal":{Portal:[299,1,1,""],Websocket:[299,1,1,""]},"evennia.server.portal.portal.Portal":{__init__:[299,3,1,""],get_info_dict:[299,3,1,""],shutdown:[299,3,1,""]},"evennia.server.portal.portalsessionhandler":{PortalSessionHandler:[300,1,1,""]},"evennia.server.portal.portalsessionhandler.PortalSessionHandler":{__init__:[300,3,1,""],announce_all:[300,3,1,""],at_server_connection:[300,3,1,""],connect:[300,3,1,""],count_loggedin:[300,3,1,""],data_in:[300,3,1,""],data_out:[300,3,1,""],disconnect:[300,3,1,""],disconnect_all:[300,3,1,""],generate_sessid:[300,3,1,""],server_connect:[300,3,1,""],server_disconnect:[300,3,1,""],server_disconnect_all:[300,3,1,""],server_logged_in:[300,3,1,""],server_session_sync:[300,3,1,""],sessions_from_csessid:[300,3,1,""],sync:[300,3,1,""]},"evennia.server.portal.rss":{RSSBotFactory:[301,1,1,""],RSSReader:[301,1,1,""]},"evennia.server.portal.rss.RSSBotFactory":{__init__:[301,3,1,""],start:[301,3,1,""]},"evennia.server.portal.rss.RSSReader":{__init__:[301,3,1,""],data_in:[301,3,1,""],disconnect:[301,3,1,""],get_new:[301,3,1,""],update:[301,3,1,""]},"evennia.server.portal.ssh":{AccountDBPasswordChecker:[302,1,1,""],ExtraInfoAuthServer:[302,1,1,""],PassAvatarIdTerminalRealm:[302,1,1,""],SSHServerFactory:[302,1,1,""],SshProtocol:[302,1,1,""],TerminalSessionTransport_getPeer:[302,1,1,""],getKeyPair:[302,5,1,""],makeFactory:[302,5,1,""]},"evennia.server.portal.ssh.AccountDBPasswordChecker":{__init__:[302,3,1,""],credentialInterfaces:[302,4,1,""],noisy:[302,4,1,""],requestAvatarId:[302,3,1,""]},"evennia.server.portal.ssh.ExtraInfoAuthServer":{auth_password:[302,3,1,""],noisy:[302,4,1,""]},"evennia.server.portal.ssh.PassAvatarIdTerminalRealm":{noisy:[302,4,1,""]},"evennia.server.portal.ssh.SSHServerFactory":{logPrefix:[302,3,1,""],noisy:[302,4,1,""]},"evennia.server.portal.ssh.SshProtocol":{__init__:[302,3,1,""],at_login:[302,3,1,""],connectionLost:[302,3,1,""],connectionMade:[302,3,1,""],data_out:[302,3,1,""],disconnect:[302,3,1,""],getClientAddress:[302,3,1,""],handle_EOF:[302,3,1,""],handle_FF:[302,3,1,""],handle_INT:[302,3,1,""],handle_QUIT:[302,3,1,""],lineReceived:[302,3,1,""],noisy:[302,4,1,""],sendLine:[302,3,1,""],send_default:[302,3,1,""],send_prompt:[302,3,1,""],send_text:[302,3,1,""],terminalSize:[302,3,1,""]},"evennia.server.portal.ssh.TerminalSessionTransport_getPeer":{__init__:[302,3,1,""],noisy:[302,4,1,""]},"evennia.server.portal.ssl":{SSLProtocol:[303,1,1,""],getSSLContext:[303,5,1,""],verify_SSL_key_and_cert:[303,5,1,""]},"evennia.server.portal.ssl.SSLProtocol":{__init__:[303,3,1,""]},"evennia.server.portal.suppress_ga":{SuppressGA:[304,1,1,""]},"evennia.server.portal.suppress_ga.SuppressGA":{__init__:[304,3,1,""],will_suppress_ga:[304,3,1,""],wont_suppress_ga:[304,3,1,""]},"evennia.server.portal.telnet":{TelnetProtocol:[305,1,1,""],TelnetServerFactory:[305,1,1,""]},"evennia.server.portal.telnet.TelnetProtocol":{__init__:[305,3,1,""],applicationDataReceived:[305,3,1,""],at_login:[305,3,1,""],connectionLost:[305,3,1,""],connectionMade:[305,3,1,""],dataReceived:[305,3,1,""],data_in:[305,3,1,""],data_out:[305,3,1,""],disableLocal:[305,3,1,""],disableRemote:[305,3,1,""],disconnect:[305,3,1,""],enableLocal:[305,3,1,""],enableRemote:[305,3,1,""],handshake_done:[305,3,1,""],sendLine:[305,3,1,""],send_default:[305,3,1,""],send_prompt:[305,3,1,""],send_text:[305,3,1,""],toggle_nop_keepalive:[305,3,1,""]},"evennia.server.portal.telnet.TelnetServerFactory":{logPrefix:[305,3,1,""],noisy:[305,4,1,""]},"evennia.server.portal.telnet_oob":{TelnetOOB:[306,1,1,""]},"evennia.server.portal.telnet_oob.TelnetOOB":{__init__:[306,3,1,""],data_out:[306,3,1,""],decode_gmcp:[306,3,1,""],decode_msdp:[306,3,1,""],do_gmcp:[306,3,1,""],do_msdp:[306,3,1,""],encode_gmcp:[306,3,1,""],encode_msdp:[306,3,1,""],no_gmcp:[306,3,1,""],no_msdp:[306,3,1,""]},"evennia.server.portal.telnet_ssl":{SSLProtocol:[307,1,1,""],getSSLContext:[307,5,1,""],verify_or_create_SSL_key_and_cert:[307,5,1,""]},"evennia.server.portal.telnet_ssl.SSLProtocol":{__init__:[307,3,1,""]},"evennia.server.portal.tests":{TestAMPServer:[308,1,1,""],TestIRC:[308,1,1,""],TestTelnet:[308,1,1,""],TestWebSocket:[308,1,1,""]},"evennia.server.portal.tests.TestAMPServer":{setUp:[308,3,1,""],test_amp_in:[308,3,1,""],test_amp_out:[308,3,1,""],test_large_msg:[308,3,1,""]},"evennia.server.portal.tests.TestIRC":{test_bold:[308,3,1,""],test_colors:[308,3,1,""],test_identity:[308,3,1,""],test_italic:[308,3,1,""],test_plain_ansi:[308,3,1,""]},"evennia.server.portal.tests.TestTelnet":{setUp:[308,3,1,""],test_mudlet_ttype:[308,3,1,""]},"evennia.server.portal.tests.TestWebSocket":{setUp:[308,3,1,""],tearDown:[308,3,1,""],test_data_in:[308,3,1,""],test_data_out:[308,3,1,""]},"evennia.server.portal.ttype":{Ttype:[309,1,1,""]},"evennia.server.portal.ttype.Ttype":{__init__:[309,3,1,""],will_ttype:[309,3,1,""],wont_ttype:[309,3,1,""]},"evennia.server.portal.webclient":{WebSocketClient:[310,1,1,""]},"evennia.server.portal.webclient.WebSocketClient":{__init__:[310,3,1,""],at_login:[310,3,1,""],data_in:[310,3,1,""],disconnect:[310,3,1,""],get_client_session:[310,3,1,""],nonce:[310,4,1,""],onClose:[310,3,1,""],onMessage:[310,3,1,""],onOpen:[310,3,1,""],sendLine:[310,3,1,""],send_default:[310,3,1,""],send_prompt:[310,3,1,""],send_text:[310,3,1,""]},"evennia.server.portal.webclient_ajax":{AjaxWebClient:[311,1,1,""],AjaxWebClientSession:[311,1,1,""],LazyEncoder:[311,1,1,""],jsonify:[311,5,1,""]},"evennia.server.portal.webclient_ajax.AjaxWebClient":{__init__:[311,3,1,""],allowedMethods:[311,4,1,""],at_login:[311,3,1,""],client_disconnect:[311,3,1,""],get_client_sessid:[311,3,1,""],isLeaf:[311,4,1,""],lineSend:[311,3,1,""],mode_close:[311,3,1,""],mode_init:[311,3,1,""],mode_input:[311,3,1,""],mode_keepalive:[311,3,1,""],mode_receive:[311,3,1,""],render_POST:[311,3,1,""]},"evennia.server.portal.webclient_ajax.AjaxWebClientSession":{__init__:[311,3,1,""],at_login:[311,3,1,""],data_in:[311,3,1,""],data_out:[311,3,1,""],disconnect:[311,3,1,""],get_client_session:[311,3,1,""],send_default:[311,3,1,""],send_prompt:[311,3,1,""],send_text:[311,3,1,""]},"evennia.server.portal.webclient_ajax.LazyEncoder":{"default":[311,3,1,""]},"evennia.server.profiling":{dummyrunner:[313,0,0,"-"],dummyrunner_settings:[314,0,0,"-"],memplot:[315,0,0,"-"],settings_mixin:[316,0,0,"-"],test_queries:[317,0,0,"-"],tests:[318,0,0,"-"],timetrace:[319,0,0,"-"]},"evennia.server.profiling.dummyrunner":{DummyClient:[313,1,1,""],DummyFactory:[313,1,1,""],gidcounter:[313,5,1,""],idcounter:[313,5,1,""],makeiter:[313,5,1,""],start_all_dummy_clients:[313,5,1,""]},"evennia.server.profiling.dummyrunner.DummyClient":{connectionLost:[313,3,1,""],connectionMade:[313,3,1,""],counter:[313,3,1,""],dataReceived:[313,3,1,""],error:[313,3,1,""],logout:[313,3,1,""],step:[313,3,1,""]},"evennia.server.profiling.dummyrunner.DummyFactory":{__init__:[313,3,1,""],protocol:[313,4,1,""]},"evennia.server.profiling.dummyrunner_settings":{c_creates_button:[314,5,1,""],c_creates_obj:[314,5,1,""],c_digs:[314,5,1,""],c_examines:[314,5,1,""],c_help:[314,5,1,""],c_idles:[314,5,1,""],c_login:[314,5,1,""],c_login_nodig:[314,5,1,""],c_logout:[314,5,1,""],c_looks:[314,5,1,""],c_moves:[314,5,1,""],c_moves_n:[314,5,1,""],c_moves_s:[314,5,1,""],c_socialize:[314,5,1,""]},"evennia.server.profiling.memplot":{Memplot:[315,1,1,""]},"evennia.server.profiling.memplot.Memplot":{DoesNotExist:[315,2,1,""],MultipleObjectsReturned:[315,2,1,""],at_repeat:[315,3,1,""],at_script_creation:[315,3,1,""],path:[315,4,1,""],typename:[315,4,1,""]},"evennia.server.profiling.test_queries":{count_queries:[317,5,1,""]},"evennia.server.profiling.tests":{TestDummyrunnerSettings:[318,1,1,""],TestMemPlot:[318,1,1,""]},"evennia.server.profiling.tests.TestDummyrunnerSettings":{clear_client_lists:[318,3,1,""],perception_method_tests:[318,3,1,""],setUp:[318,3,1,""],test_c_creates_button:[318,3,1,""],test_c_creates_obj:[318,3,1,""],test_c_digs:[318,3,1,""],test_c_examines:[318,3,1,""],test_c_help:[318,3,1,""],test_c_login:[318,3,1,""],test_c_login_no_dig:[318,3,1,""],test_c_logout:[318,3,1,""],test_c_looks:[318,3,1,""],test_c_move_n:[318,3,1,""],test_c_move_s:[318,3,1,""],test_c_moves:[318,3,1,""],test_c_socialize:[318,3,1,""],test_idles:[318,3,1,""]},"evennia.server.profiling.tests.TestMemPlot":{test_memplot:[318,3,1,""]},"evennia.server.profiling.timetrace":{timetrace:[319,5,1,""]},"evennia.server.server":{Evennia:[320,1,1,""]},"evennia.server.server.Evennia":{__init__:[320,3,1,""],at_post_portal_sync:[320,3,1,""],at_server_cold_start:[320,3,1,""],at_server_cold_stop:[320,3,1,""],at_server_reload_start:[320,3,1,""],at_server_reload_stop:[320,3,1,""],at_server_start:[320,3,1,""],at_server_stop:[320,3,1,""],get_info_dict:[320,3,1,""],run_init_hooks:[320,3,1,""],run_initial_setup:[320,3,1,""],shutdown:[320,3,1,""],sqlite3_prep:[320,3,1,""],update_defaults:[320,3,1,""]},"evennia.server.serversession":{ServerSession:[321,1,1,""]},"evennia.server.serversession.ServerSession":{__init__:[321,3,1,""],access:[321,3,1,""],at_cmdset_get:[321,3,1,""],at_disconnect:[321,3,1,""],at_login:[321,3,1,""],at_sync:[321,3,1,""],attributes:[321,4,1,""],cmdset_storage:[321,3,1,""],data_in:[321,3,1,""],data_out:[321,3,1,""],db:[321,3,1,""],execute_cmd:[321,3,1,""],get_account:[321,3,1,""],get_character:[321,3,1,""],get_client_size:[321,3,1,""],get_puppet:[321,3,1,""],get_puppet_or_account:[321,3,1,""],id:[321,3,1,""],log:[321,3,1,""],msg:[321,3,1,""],nattributes:[321,4,1,""],ndb:[321,3,1,""],ndb_del:[321,3,1,""],ndb_get:[321,3,1,""],ndb_set:[321,3,1,""],update_flags:[321,3,1,""],update_session_counters:[321,3,1,""]},"evennia.server.session":{Session:[322,1,1,""]},"evennia.server.session.Session":{at_sync:[322,3,1,""],data_in:[322,3,1,""],data_out:[322,3,1,""],disconnect:[322,3,1,""],get_sync_data:[322,3,1,""],init_session:[322,3,1,""],load_sync_data:[322,3,1,""]},"evennia.server.sessionhandler":{DummySession:[323,1,1,""],ServerSessionHandler:[323,1,1,""],SessionHandler:[323,1,1,""],delayed_import:[323,5,1,""]},"evennia.server.sessionhandler.DummySession":{sessid:[323,4,1,""]},"evennia.server.sessionhandler.ServerSessionHandler":{__init__:[323,3,1,""],account_count:[323,3,1,""],all_connected_accounts:[323,3,1,""],all_sessions_portal_sync:[323,3,1,""],announce_all:[323,3,1,""],call_inputfuncs:[323,3,1,""],data_in:[323,3,1,""],data_out:[323,3,1,""],disconnect:[323,3,1,""],disconnect_all_sessions:[323,3,1,""],disconnect_duplicate_sessions:[323,3,1,""],get_inputfuncs:[323,3,1,""],login:[323,3,1,""],portal_connect:[323,3,1,""],portal_disconnect:[323,3,1,""],portal_disconnect_all:[323,3,1,""],portal_reset_server:[323,3,1,""],portal_restart_server:[323,3,1,""],portal_session_sync:[323,3,1,""],portal_sessions_sync:[323,3,1,""],portal_shutdown:[323,3,1,""],session_from_account:[323,3,1,""],session_from_sessid:[323,3,1,""],session_portal_partial_sync:[323,3,1,""],session_portal_sync:[323,3,1,""],sessions_from_account:[323,3,1,""],sessions_from_character:[323,3,1,""],sessions_from_csessid:[323,3,1,""],sessions_from_puppet:[323,3,1,""],start_bot_session:[323,3,1,""],validate_sessions:[323,3,1,""]},"evennia.server.sessionhandler.SessionHandler":{clean_senddata:[323,3,1,""],get:[323,3,1,""],get_all_sync_data:[323,3,1,""],get_sessions:[323,3,1,""]},"evennia.server.throttle":{Throttle:[325,1,1,""]},"evennia.server.throttle.Throttle":{__init__:[325,3,1,""],check:[325,3,1,""],error_msg:[325,4,1,""],get:[325,3,1,""],update:[325,3,1,""]},"evennia.server.validators":{EvenniaPasswordValidator:[326,1,1,""],EvenniaUsernameAvailabilityValidator:[326,1,1,""]},"evennia.server.validators.EvenniaPasswordValidator":{__init__:[326,3,1,""],get_help_text:[326,3,1,""],validate:[326,3,1,""]},"evennia.server.webserver":{DjangoWebRoot:[327,1,1,""],EvenniaReverseProxyResource:[327,1,1,""],HTTPChannelWithXForwardedFor:[327,1,1,""],LockableThreadPool:[327,1,1,""],PrivateStaticRoot:[327,1,1,""],WSGIWebServer:[327,1,1,""],Website:[327,1,1,""]},"evennia.server.webserver.DjangoWebRoot":{__init__:[327,3,1,""],empty_threadpool:[327,3,1,""],getChild:[327,3,1,""]},"evennia.server.webserver.EvenniaReverseProxyResource":{getChild:[327,3,1,""],render:[327,3,1,""]},"evennia.server.webserver.HTTPChannelWithXForwardedFor":{allHeadersReceived:[327,3,1,""]},"evennia.server.webserver.LockableThreadPool":{__init__:[327,3,1,""],callInThread:[327,3,1,""],lock:[327,3,1,""]},"evennia.server.webserver.PrivateStaticRoot":{directoryListing:[327,3,1,""]},"evennia.server.webserver.WSGIWebServer":{__init__:[327,3,1,""],startService:[327,3,1,""],stopService:[327,3,1,""]},"evennia.server.webserver.Website":{log:[327,3,1,""],logPrefix:[327,3,1,""],noisy:[327,4,1,""]},"evennia.typeclasses":{admin:[330,0,0,"-"],attributes:[331,0,0,"-"],managers:[332,0,0,"-"],models:[333,0,0,"-"],tags:[334,0,0,"-"]},"evennia.typeclasses.admin":{AttributeForm:[330,1,1,""],AttributeFormSet:[330,1,1,""],AttributeInline:[330,1,1,""],TagAdmin:[330,1,1,""],TagForm:[330,1,1,""],TagFormSet:[330,1,1,""],TagInline:[330,1,1,""]},"evennia.typeclasses.admin.AttributeForm":{Meta:[330,1,1,""],__init__:[330,3,1,""],base_fields:[330,4,1,""],clean_attr_value:[330,3,1,""],declared_fields:[330,4,1,""],media:[330,3,1,""],save:[330,3,1,""]},"evennia.typeclasses.admin.AttributeForm.Meta":{fields:[330,4,1,""]},"evennia.typeclasses.admin.AttributeFormSet":{save:[330,3,1,""]},"evennia.typeclasses.admin.AttributeInline":{extra:[330,4,1,""],form:[330,4,1,""],formset:[330,4,1,""],get_formset:[330,3,1,""],media:[330,3,1,""],model:[330,4,1,""],related_field:[330,4,1,""]},"evennia.typeclasses.admin.TagAdmin":{fields:[330,4,1,""],list_display:[330,4,1,""],list_filter:[330,4,1,""],media:[330,3,1,""],search_fields:[330,4,1,""]},"evennia.typeclasses.admin.TagForm":{Meta:[330,1,1,""],__init__:[330,3,1,""],base_fields:[330,4,1,""],declared_fields:[330,4,1,""],media:[330,3,1,""],save:[330,3,1,""]},"evennia.typeclasses.admin.TagForm.Meta":{fields:[330,4,1,""]},"evennia.typeclasses.admin.TagFormSet":{save:[330,3,1,""]},"evennia.typeclasses.admin.TagInline":{extra:[330,4,1,""],form:[330,4,1,""],formset:[330,4,1,""],get_formset:[330,3,1,""],media:[330,3,1,""],model:[330,4,1,""],related_field:[330,4,1,""]},"evennia.typeclasses.attributes":{Attribute:[331,1,1,""],AttributeHandler:[331,1,1,""],DbHolder:[331,1,1,""],IAttribute:[331,1,1,""],IAttributeBackend:[331,1,1,""],InMemoryAttribute:[331,1,1,""],InMemoryAttributeBackend:[331,1,1,""],ModelAttributeBackend:[331,1,1,""],NickHandler:[331,1,1,""],NickTemplateInvalid:[331,2,1,""],initialize_nick_templates:[331,5,1,""],parse_nick_template:[331,5,1,""]},"evennia.typeclasses.attributes.Attribute":{DoesNotExist:[331,2,1,""],MultipleObjectsReturned:[331,2,1,""],accountdb_set:[331,4,1,""],attrtype:[331,3,1,""],category:[331,3,1,""],channeldb_set:[331,4,1,""],date_created:[331,3,1,""],db_attrtype:[331,4,1,""],db_category:[331,4,1,""],db_date_created:[331,4,1,""],db_key:[331,4,1,""],db_lock_storage:[331,4,1,""],db_model:[331,4,1,""],db_strvalue:[331,4,1,""],db_value:[331,4,1,""],get_next_by_db_date_created:[331,3,1,""],get_previous_by_db_date_created:[331,3,1,""],id:[331,4,1,""],key:[331,3,1,""],lock_storage:[331,3,1,""],model:[331,3,1,""],objectdb_set:[331,4,1,""],path:[331,4,1,""],scriptdb_set:[331,4,1,""],strvalue:[331,3,1,""],typename:[331,4,1,""],value:[331,3,1,""]},"evennia.typeclasses.attributes.AttributeHandler":{__init__:[331,3,1,""],add:[331,3,1,""],all:[331,3,1,""],batch_add:[331,3,1,""],clear:[331,3,1,""],get:[331,3,1,""],has:[331,3,1,""],remove:[331,3,1,""],reset_cache:[331,3,1,""]},"evennia.typeclasses.attributes.DbHolder":{__init__:[331,3,1,""],all:[331,3,1,""],get_all:[331,3,1,""]},"evennia.typeclasses.attributes.IAttribute":{access:[331,3,1,""],attrtype:[331,3,1,""],category:[331,3,1,""],date_created:[331,3,1,""],key:[331,3,1,""],lock_storage:[331,3,1,""],locks:[331,4,1,""],model:[331,3,1,""],strvalue:[331,3,1,""]},"evennia.typeclasses.attributes.IAttributeBackend":{__init__:[331,3,1,""],batch_add:[331,3,1,""],clear_attributes:[331,3,1,""],create_attribute:[331,3,1,""],delete_attribute:[331,3,1,""],do_batch_delete:[331,3,1,""],do_batch_finish:[331,3,1,""],do_batch_update_attribute:[331,3,1,""],do_create_attribute:[331,3,1,""],do_delete_attribute:[331,3,1,""],do_update_attribute:[331,3,1,""],get:[331,3,1,""],get_all_attributes:[331,3,1,""],query_all:[331,3,1,""],query_category:[331,3,1,""],query_key:[331,3,1,""],reset_cache:[331,3,1,""],update_attribute:[331,3,1,""]},"evennia.typeclasses.attributes.InMemoryAttribute":{__init__:[331,3,1,""],value:[331,3,1,""]},"evennia.typeclasses.attributes.InMemoryAttributeBackend":{__init__:[331,3,1,""],do_batch_finish:[331,3,1,""],do_batch_update_attribute:[331,3,1,""],do_create_attribute:[331,3,1,""],do_delete_attribute:[331,3,1,""],do_update_attribute:[331,3,1,""],query_all:[331,3,1,""],query_category:[331,3,1,""],query_key:[331,3,1,""]},"evennia.typeclasses.attributes.ModelAttributeBackend":{__init__:[331,3,1,""],do_batch_finish:[331,3,1,""],do_batch_update_attribute:[331,3,1,""],do_create_attribute:[331,3,1,""],do_delete_attribute:[331,3,1,""],do_update_attribute:[331,3,1,""],query_all:[331,3,1,""],query_category:[331,3,1,""],query_key:[331,3,1,""]},"evennia.typeclasses.attributes.NickHandler":{__init__:[331,3,1,""],add:[331,3,1,""],get:[331,3,1,""],has:[331,3,1,""],nickreplace:[331,3,1,""],remove:[331,3,1,""]},"evennia.typeclasses.managers":{TypedObjectManager:[332,1,1,""]},"evennia.typeclasses.managers.TypedObjectManager":{create_tag:[332,3,1,""],dbref:[332,3,1,""],dbref_search:[332,3,1,""],get_alias:[332,3,1,""],get_attribute:[332,3,1,""],get_by_alias:[332,3,1,""],get_by_attribute:[332,3,1,""],get_by_nick:[332,3,1,""],get_by_permission:[332,3,1,""],get_by_tag:[332,3,1,""],get_dbref_range:[332,3,1,""],get_id:[332,3,1,""],get_nick:[332,3,1,""],get_permission:[332,3,1,""],get_tag:[332,3,1,""],get_typeclass_totals:[332,3,1,""],object_totals:[332,3,1,""],typeclass_search:[332,3,1,""]},"evennia.typeclasses.models":{TypedObject:[333,1,1,""]},"evennia.typeclasses.models.TypedObject":{"delete":[333,3,1,""],Meta:[333,1,1,""],__init__:[333,3,1,""],access:[333,3,1,""],aliases:[333,4,1,""],at_idmapper_flush:[333,3,1,""],at_rename:[333,3,1,""],attributes:[333,4,1,""],check_permstring:[333,3,1,""],date_created:[333,3,1,""],db:[333,3,1,""],db_attributes:[333,4,1,""],db_date_created:[333,4,1,""],db_key:[333,4,1,""],db_lock_storage:[333,4,1,""],db_tags:[333,4,1,""],db_typeclass_path:[333,4,1,""],dbid:[333,3,1,""],dbref:[333,3,1,""],get_absolute_url:[333,3,1,""],get_display_name:[333,3,1,""],get_extra_info:[333,3,1,""],get_next_by_db_date_created:[333,3,1,""],get_previous_by_db_date_created:[333,3,1,""],is_typeclass:[333,3,1,""],key:[333,3,1,""],lock_storage:[333,3,1,""],locks:[333,4,1,""],name:[333,3,1,""],nattributes:[333,4,1,""],ndb:[333,3,1,""],objects:[333,4,1,""],path:[333,4,1,""],permissions:[333,4,1,""],set_class_from_typeclass:[333,3,1,""],swap_typeclass:[333,3,1,""],tags:[333,4,1,""],typeclass_path:[333,3,1,""],typename:[333,4,1,""],web_get_admin_url:[333,3,1,""],web_get_create_url:[333,3,1,""],web_get_delete_url:[333,3,1,""],web_get_detail_url:[333,3,1,""],web_get_puppet_url:[333,3,1,""],web_get_update_url:[333,3,1,""]},"evennia.typeclasses.models.TypedObject.Meta":{"abstract":[333,4,1,""],ordering:[333,4,1,""],verbose_name:[333,4,1,""]},"evennia.typeclasses.tags":{AliasHandler:[334,1,1,""],PermissionHandler:[334,1,1,""],Tag:[334,1,1,""],TagHandler:[334,1,1,""]},"evennia.typeclasses.tags.Tag":{DoesNotExist:[334,2,1,""],MultipleObjectsReturned:[334,2,1,""],accountdb_set:[334,4,1,""],channeldb_set:[334,4,1,""],db_category:[334,4,1,""],db_data:[334,4,1,""],db_key:[334,4,1,""],db_model:[334,4,1,""],db_tagtype:[334,4,1,""],helpentry_set:[334,4,1,""],id:[334,4,1,""],msg_set:[334,4,1,""],objectdb_set:[334,4,1,""],objects:[334,4,1,""],scriptdb_set:[334,4,1,""]},"evennia.typeclasses.tags.TagHandler":{__init__:[334,3,1,""],add:[334,3,1,""],all:[334,3,1,""],batch_add:[334,3,1,""],clear:[334,3,1,""],get:[334,3,1,""],remove:[334,3,1,""],reset_cache:[334,3,1,""]},"evennia.utils":{ansi:[336,0,0,"-"],batchprocessors:[337,0,0,"-"],containers:[338,0,0,"-"],create:[339,0,0,"-"],dbserialize:[340,0,0,"-"],eveditor:[341,0,0,"-"],evform:[342,0,0,"-"],evmenu:[343,0,0,"-"],evmore:[344,0,0,"-"],evtable:[345,0,0,"-"],gametime:[346,0,0,"-"],idmapper:[347,0,0,"-"],inlinefuncs:[351,0,0,"-"],logger:[352,0,0,"-"],optionclasses:[353,0,0,"-"],optionhandler:[354,0,0,"-"],picklefield:[355,0,0,"-"],search:[356,0,0,"-"],test_resources:[357,0,0,"-"],text2html:[358,0,0,"-"],utils:[359,0,0,"-"],validatorfuncs:[360,0,0,"-"]},"evennia.utils.ansi":{ANSIMeta:[336,1,1,""],ANSIParser:[336,1,1,""],ANSIString:[336,1,1,""],parse_ansi:[336,5,1,""],raw:[336,5,1,""],strip_ansi:[336,5,1,""],strip_raw_ansi:[336,5,1,""]},"evennia.utils.ansi.ANSIMeta":{__init__:[336,3,1,""]},"evennia.utils.ansi.ANSIParser":{ansi_escapes:[336,4,1,""],ansi_map:[336,4,1,""],ansi_map_dict:[336,4,1,""],ansi_re:[336,4,1,""],ansi_regex:[336,4,1,""],ansi_sub:[336,4,1,""],ansi_xterm256_bright_bg_map:[336,4,1,""],ansi_xterm256_bright_bg_map_dict:[336,4,1,""],brightbg_sub:[336,4,1,""],mxp_re:[336,4,1,""],mxp_sub:[336,4,1,""],parse_ansi:[336,3,1,""],strip_mxp:[336,3,1,""],strip_raw_codes:[336,3,1,""],sub_ansi:[336,3,1,""],sub_brightbg:[336,3,1,""],sub_xterm256:[336,3,1,""],xterm256_bg:[336,4,1,""],xterm256_bg_sub:[336,4,1,""],xterm256_fg:[336,4,1,""],xterm256_fg_sub:[336,4,1,""],xterm256_gbg:[336,4,1,""],xterm256_gbg_sub:[336,4,1,""],xterm256_gfg:[336,4,1,""],xterm256_gfg_sub:[336,4,1,""]},"evennia.utils.ansi.ANSIString":{__init__:[336,3,1,""],capitalize:[336,3,1,""],center:[336,3,1,""],clean:[336,3,1,""],count:[336,3,1,""],decode:[336,3,1,""],encode:[336,3,1,""],endswith:[336,3,1,""],expandtabs:[336,3,1,""],find:[336,3,1,""],format:[336,3,1,""],index:[336,3,1,""],isalnum:[336,3,1,""],isalpha:[336,3,1,""],isdigit:[336,3,1,""],islower:[336,3,1,""],isspace:[336,3,1,""],istitle:[336,3,1,""],isupper:[336,3,1,""],join:[336,3,1,""],ljust:[336,3,1,""],lower:[336,3,1,""],lstrip:[336,3,1,""],partition:[336,3,1,""],raw:[336,3,1,""],re_format:[336,4,1,""],replace:[336,3,1,""],rfind:[336,3,1,""],rindex:[336,3,1,""],rjust:[336,3,1,""],rsplit:[336,3,1,""],rstrip:[336,3,1,""],split:[336,3,1,""],startswith:[336,3,1,""],strip:[336,3,1,""],swapcase:[336,3,1,""],translate:[336,3,1,""],upper:[336,3,1,""]},"evennia.utils.batchprocessors":{BatchCodeProcessor:[337,1,1,""],BatchCommandProcessor:[337,1,1,""],read_batchfile:[337,5,1,""],tb_filename:[337,5,1,""],tb_iter:[337,5,1,""]},"evennia.utils.batchprocessors.BatchCodeProcessor":{code_exec:[337,3,1,""],parse_file:[337,3,1,""]},"evennia.utils.batchprocessors.BatchCommandProcessor":{parse_file:[337,3,1,""]},"evennia.utils.containers":{Container:[338,1,1,""],GlobalScriptContainer:[338,1,1,""],OptionContainer:[338,1,1,""]},"evennia.utils.containers.Container":{__init__:[338,3,1,""],all:[338,3,1,""],get:[338,3,1,""],load_data:[338,3,1,""],storage_modules:[338,4,1,""]},"evennia.utils.containers.GlobalScriptContainer":{__init__:[338,3,1,""],all:[338,3,1,""],get:[338,3,1,""],load_data:[338,3,1,""],start:[338,3,1,""]},"evennia.utils.containers.OptionContainer":{storage_modules:[338,4,1,""]},"evennia.utils.create":{create_account:[339,5,1,""],create_channel:[339,5,1,""],create_help_entry:[339,5,1,""],create_message:[339,5,1,""],create_object:[339,5,1,""],create_script:[339,5,1,""]},"evennia.utils.dbserialize":{dbserialize:[340,5,1,""],dbunserialize:[340,5,1,""],do_pickle:[340,5,1,""],do_unpickle:[340,5,1,""],from_pickle:[340,5,1,""],to_pickle:[340,5,1,""]},"evennia.utils.eveditor":{CmdEditorBase:[341,1,1,""],CmdEditorGroup:[341,1,1,""],CmdLineInput:[341,1,1,""],CmdSaveYesNo:[341,1,1,""],EvEditor:[341,1,1,""],EvEditorCmdSet:[341,1,1,""],SaveYesNoCmdSet:[341,1,1,""]},"evennia.utils.eveditor.CmdEditorBase":{aliases:[341,4,1,""],editor:[341,4,1,""],help_category:[341,4,1,""],help_entry:[341,4,1,""],key:[341,4,1,""],lock_storage:[341,4,1,""],locks:[341,4,1,""],parse:[341,3,1,""],search_index_entry:[341,4,1,""]},"evennia.utils.eveditor.CmdEditorGroup":{aliases:[341,4,1,""],arg_regex:[341,4,1,""],func:[341,3,1,""],help_category:[341,4,1,""],key:[341,4,1,""],lock_storage:[341,4,1,""],search_index_entry:[341,4,1,""]},"evennia.utils.eveditor.CmdLineInput":{aliases:[341,4,1,""],func:[341,3,1,""],help_category:[341,4,1,""],key:[341,4,1,""],lock_storage:[341,4,1,""],search_index_entry:[341,4,1,""]},"evennia.utils.eveditor.CmdSaveYesNo":{aliases:[341,4,1,""],func:[341,3,1,""],help_category:[341,4,1,""],help_cateogory:[341,4,1,""],key:[341,4,1,""],lock_storage:[341,4,1,""],locks:[341,4,1,""],search_index_entry:[341,4,1,""]},"evennia.utils.eveditor.EvEditor":{__init__:[341,3,1,""],decrease_indent:[341,3,1,""],deduce_indent:[341,3,1,""],display_buffer:[341,3,1,""],display_help:[341,3,1,""],get_buffer:[341,3,1,""],increase_indent:[341,3,1,""],load_buffer:[341,3,1,""],quit:[341,3,1,""],save_buffer:[341,3,1,""],swap_autoindent:[341,3,1,""],update_buffer:[341,3,1,""],update_undo:[341,3,1,""]},"evennia.utils.eveditor.EvEditorCmdSet":{at_cmdset_creation:[341,3,1,""],key:[341,4,1,""],mergetype:[341,4,1,""],path:[341,4,1,""]},"evennia.utils.eveditor.SaveYesNoCmdSet":{at_cmdset_creation:[341,3,1,""],key:[341,4,1,""],mergetype:[341,4,1,""],path:[341,4,1,""],priority:[341,4,1,""]},"evennia.utils.evform":{EvForm:[342,1,1,""]},"evennia.utils.evform.EvForm":{__init__:[342,3,1,""],map:[342,3,1,""],reload:[342,3,1,""]},"evennia.utils.evmenu":{CmdEvMenuNode:[343,1,1,""],CmdGetInput:[343,1,1,""],CmdTestMenu:[343,1,1,""],EvMenu:[343,1,1,""],EvMenuCmdSet:[343,1,1,""],EvMenuError:[343,2,1,""],InputCmdSet:[343,1,1,""],get_input:[343,5,1,""],list_node:[343,5,1,""],test_displayinput_node:[343,5,1,""],test_dynamic_node:[343,5,1,""],test_end_node:[343,5,1,""],test_look_node:[343,5,1,""],test_set_node:[343,5,1,""],test_start_node:[343,5,1,""],test_view_node:[343,5,1,""]},"evennia.utils.evmenu.CmdEvMenuNode":{aliases:[343,4,1,""],func:[343,3,1,""],help_category:[343,4,1,""],key:[343,4,1,""],lock_storage:[343,4,1,""],locks:[343,4,1,""],search_index_entry:[343,4,1,""]},"evennia.utils.evmenu.CmdGetInput":{aliases:[343,4,1,""],func:[343,3,1,""],help_category:[343,4,1,""],key:[343,4,1,""],lock_storage:[343,4,1,""],search_index_entry:[343,4,1,""]},"evennia.utils.evmenu.CmdTestMenu":{aliases:[343,4,1,""],func:[343,3,1,""],help_category:[343,4,1,""],key:[343,4,1,""],lock_storage:[343,4,1,""],search_index_entry:[343,4,1,""]},"evennia.utils.evmenu.EvMenu":{"goto":[343,3,1,""],__init__:[343,3,1,""],close_menu:[343,3,1,""],display_helptext:[343,3,1,""],display_nodetext:[343,3,1,""],extract_goto_exec:[343,3,1,""],helptext_formatter:[343,3,1,""],node_border_char:[343,4,1,""],node_formatter:[343,3,1,""],nodetext_formatter:[343,3,1,""],options_formatter:[343,3,1,""],parse_input:[343,3,1,""],print_debug_info:[343,3,1,""],run_exec:[343,3,1,""],run_exec_then_goto:[343,3,1,""]},"evennia.utils.evmenu.EvMenuCmdSet":{at_cmdset_creation:[343,3,1,""],key:[343,4,1,""],mergetype:[343,4,1,""],no_channels:[343,4,1,""],no_exits:[343,4,1,""],no_objs:[343,4,1,""],path:[343,4,1,""],priority:[343,4,1,""]},"evennia.utils.evmenu.InputCmdSet":{at_cmdset_creation:[343,3,1,""],key:[343,4,1,""],mergetype:[343,4,1,""],no_channels:[343,4,1,""],no_exits:[343,4,1,""],no_objs:[343,4,1,""],path:[343,4,1,""],priority:[343,4,1,""]},"evennia.utils.evmore":{CmdMore:[344,1,1,""],CmdMoreLook:[344,1,1,""],CmdSetMore:[344,1,1,""],EvMore:[344,1,1,""],msg:[344,5,1,""],queryset_maxsize:[344,5,1,""]},"evennia.utils.evmore.CmdMore":{aliases:[344,4,1,""],auto_help:[344,4,1,""],func:[344,3,1,""],help_category:[344,4,1,""],key:[344,4,1,""],lock_storage:[344,4,1,""],search_index_entry:[344,4,1,""]},"evennia.utils.evmore.CmdMoreLook":{aliases:[344,4,1,""],auto_help:[344,4,1,""],func:[344,3,1,""],help_category:[344,4,1,""],key:[344,4,1,""],lock_storage:[344,4,1,""],search_index_entry:[344,4,1,""]},"evennia.utils.evmore.CmdSetMore":{at_cmdset_creation:[344,3,1,""],key:[344,4,1,""],path:[344,4,1,""],priority:[344,4,1,""]},"evennia.utils.evmore.EvMore":{__init__:[344,3,1,""],display:[344,3,1,""],format_page:[344,3,1,""],init_evtable:[344,3,1,""],init_f_str:[344,3,1,""],init_iterable:[344,3,1,""],init_queryset:[344,3,1,""],init_str:[344,3,1,""],page_back:[344,3,1,""],page_end:[344,3,1,""],page_next:[344,3,1,""],page_quit:[344,3,1,""],page_top:[344,3,1,""],paginator_index:[344,3,1,""],paginator_slice:[344,3,1,""],start:[344,3,1,""]},"evennia.utils.evtable":{ANSITextWrapper:[345,1,1,""],EvCell:[345,1,1,""],EvColumn:[345,1,1,""],EvTable:[345,1,1,""],fill:[345,5,1,""],wrap:[345,5,1,""]},"evennia.utils.evtable.EvCell":{__init__:[345,3,1,""],get:[345,3,1,""],get_height:[345,3,1,""],get_min_height:[345,3,1,""],get_min_width:[345,3,1,""],get_width:[345,3,1,""],reformat:[345,3,1,""],replace_data:[345,3,1,""]},"evennia.utils.evtable.EvColumn":{__init__:[345,3,1,""],add_rows:[345,3,1,""],reformat:[345,3,1,""],reformat_cell:[345,3,1,""]},"evennia.utils.evtable.EvTable":{__init__:[345,3,1,""],add_column:[345,3,1,""],add_header:[345,3,1,""],add_row:[345,3,1,""],get:[345,3,1,""],reformat:[345,3,1,""],reformat_column:[345,3,1,""]},"evennia.utils.gametime":{TimeScript:[346,1,1,""],game_epoch:[346,5,1,""],gametime:[346,5,1,""],portal_uptime:[346,5,1,""],real_seconds_until:[346,5,1,""],reset_gametime:[346,5,1,""],runtime:[346,5,1,""],schedule:[346,5,1,""],server_epoch:[346,5,1,""],uptime:[346,5,1,""]},"evennia.utils.gametime.TimeScript":{DoesNotExist:[346,2,1,""],MultipleObjectsReturned:[346,2,1,""],at_repeat:[346,3,1,""],at_script_creation:[346,3,1,""],path:[346,4,1,""],typename:[346,4,1,""]},"evennia.utils.idmapper":{manager:[348,0,0,"-"],models:[349,0,0,"-"],tests:[350,0,0,"-"]},"evennia.utils.idmapper.manager":{SharedMemoryManager:[348,1,1,""]},"evennia.utils.idmapper.manager.SharedMemoryManager":{get:[348,3,1,""]},"evennia.utils.idmapper.models":{SharedMemoryModel:[349,1,1,""],SharedMemoryModelBase:[349,1,1,""],WeakSharedMemoryModel:[349,1,1,""],WeakSharedMemoryModelBase:[349,1,1,""],cache_size:[349,5,1,""],conditional_flush:[349,5,1,""],flush_cache:[349,5,1,""],flush_cached_instance:[349,5,1,""],update_cached_instance:[349,5,1,""]},"evennia.utils.idmapper.models.SharedMemoryModel":{"delete":[349,3,1,""],Meta:[349,1,1,""],at_idmapper_flush:[349,3,1,""],cache_instance:[349,3,1,""],flush_cached_instance:[349,3,1,""],flush_from_cache:[349,3,1,""],flush_instance_cache:[349,3,1,""],get_all_cached_instances:[349,3,1,""],get_cached_instance:[349,3,1,""],objects:[349,4,1,""],path:[349,4,1,""],save:[349,3,1,""],typename:[349,4,1,""]},"evennia.utils.idmapper.models.SharedMemoryModel.Meta":{"abstract":[349,4,1,""]},"evennia.utils.idmapper.models.WeakSharedMemoryModel":{Meta:[349,1,1,""],path:[349,4,1,""],typename:[349,4,1,""]},"evennia.utils.idmapper.models.WeakSharedMemoryModel.Meta":{"abstract":[349,4,1,""]},"evennia.utils.idmapper.tests":{Article:[350,1,1,""],Category:[350,1,1,""],RegularArticle:[350,1,1,""],RegularCategory:[350,1,1,""],SharedMemorysTest:[350,1,1,""]},"evennia.utils.idmapper.tests.Article":{DoesNotExist:[350,2,1,""],MultipleObjectsReturned:[350,2,1,""],category2:[350,4,1,""],category2_id:[350,4,1,""],category:[350,4,1,""],category_id:[350,4,1,""],id:[350,4,1,""],name:[350,4,1,""],path:[350,4,1,""],typename:[350,4,1,""]},"evennia.utils.idmapper.tests.Category":{DoesNotExist:[350,2,1,""],MultipleObjectsReturned:[350,2,1,""],article_set:[350,4,1,""],id:[350,4,1,""],name:[350,4,1,""],path:[350,4,1,""],regulararticle_set:[350,4,1,""],typename:[350,4,1,""]},"evennia.utils.idmapper.tests.RegularArticle":{DoesNotExist:[350,2,1,""],MultipleObjectsReturned:[350,2,1,""],category2:[350,4,1,""],category2_id:[350,4,1,""],category:[350,4,1,""],category_id:[350,4,1,""],id:[350,4,1,""],name:[350,4,1,""],objects:[350,4,1,""]},"evennia.utils.idmapper.tests.RegularCategory":{DoesNotExist:[350,2,1,""],MultipleObjectsReturned:[350,2,1,""],article_set:[350,4,1,""],id:[350,4,1,""],name:[350,4,1,""],objects:[350,4,1,""],regulararticle_set:[350,4,1,""]},"evennia.utils.idmapper.tests.SharedMemorysTest":{setUp:[350,3,1,""],testMixedReferences:[350,3,1,""],testObjectDeletion:[350,3,1,""],testRegularReferences:[350,3,1,""],testSharedMemoryReferences:[350,3,1,""]},"evennia.utils.inlinefuncs":{"null":[351,5,1,""],InlinefuncError:[351,2,1,""],NickTemplateInvalid:[351,2,1,""],ParseStack:[351,1,1,""],clr:[351,5,1,""],crop:[351,5,1,""],initialize_nick_templates:[351,5,1,""],nomatch:[351,5,1,""],pad:[351,5,1,""],parse_inlinefunc:[351,5,1,""],parse_nick_template:[351,5,1,""],space:[351,5,1,""]},"evennia.utils.inlinefuncs.ParseStack":{__init__:[351,3,1,""],append:[351,3,1,""]},"evennia.utils.logger":{EvenniaLogFile:[352,1,1,""],PortalLogObserver:[352,1,1,""],ServerLogObserver:[352,1,1,""],WeeklyLogFile:[352,1,1,""],log_dep:[352,5,1,""],log_depmsg:[352,5,1,""],log_err:[352,5,1,""],log_errmsg:[352,5,1,""],log_file:[352,5,1,""],log_info:[352,5,1,""],log_infomsg:[352,5,1,""],log_msg:[352,5,1,""],log_sec:[352,5,1,""],log_secmsg:[352,5,1,""],log_server:[352,5,1,""],log_trace:[352,5,1,""],log_tracemsg:[352,5,1,""],log_warn:[352,5,1,""],log_warnmsg:[352,5,1,""],tail_log_file:[352,5,1,""],timeformat:[352,5,1,""]},"evennia.utils.logger.EvenniaLogFile":{num_lines_to_append:[352,4,1,""],readlines:[352,3,1,""],rotate:[352,3,1,""],seek:[352,3,1,""],settings:[352,4,1,""]},"evennia.utils.logger.PortalLogObserver":{emit:[352,3,1,""],prefix:[352,4,1,""],timeFormat:[352,4,1,""]},"evennia.utils.logger.ServerLogObserver":{prefix:[352,4,1,""]},"evennia.utils.logger.WeeklyLogFile":{__init__:[352,3,1,""],shouldRotate:[352,3,1,""],suffix:[352,3,1,""],write:[352,3,1,""]},"evennia.utils.optionclasses":{BaseOption:[353,1,1,""],Boolean:[353,1,1,""],Color:[353,1,1,""],Datetime:[353,1,1,""],Duration:[353,1,1,""],Email:[353,1,1,""],Future:[353,1,1,""],Lock:[353,1,1,""],PositiveInteger:[353,1,1,""],SignedInteger:[353,1,1,""],Text:[353,1,1,""],Timezone:[353,1,1,""],UnsignedInteger:[353,1,1,""]},"evennia.utils.optionclasses.BaseOption":{"default":[353,3,1,""],__init__:[353,3,1,""],changed:[353,3,1,""],deserialize:[353,3,1,""],display:[353,3,1,""],load:[353,3,1,""],save:[353,3,1,""],serialize:[353,3,1,""],set:[353,3,1,""],validate:[353,3,1,""],value:[353,3,1,""]},"evennia.utils.optionclasses.Boolean":{deserialize:[353,3,1,""],display:[353,3,1,""],serialize:[353,3,1,""],validate:[353,3,1,""]},"evennia.utils.optionclasses.Color":{deserialize:[353,3,1,""],display:[353,3,1,""],validate:[353,3,1,""]},"evennia.utils.optionclasses.Datetime":{deserialize:[353,3,1,""],serialize:[353,3,1,""],validate:[353,3,1,""]},"evennia.utils.optionclasses.Duration":{deserialize:[353,3,1,""],serialize:[353,3,1,""],validate:[353,3,1,""]},"evennia.utils.optionclasses.Email":{deserialize:[353,3,1,""],validate:[353,3,1,""]},"evennia.utils.optionclasses.Future":{validate:[353,3,1,""]},"evennia.utils.optionclasses.Lock":{validate:[353,3,1,""]},"evennia.utils.optionclasses.PositiveInteger":{deserialize:[353,3,1,""],validate:[353,3,1,""]},"evennia.utils.optionclasses.SignedInteger":{deserialize:[353,3,1,""],validate:[353,3,1,""]},"evennia.utils.optionclasses.Text":{deserialize:[353,3,1,""]},"evennia.utils.optionclasses.Timezone":{"default":[353,3,1,""],deserialize:[353,3,1,""],serialize:[353,3,1,""],validate:[353,3,1,""]},"evennia.utils.optionclasses.UnsignedInteger":{deserialize:[353,3,1,""],validate:[353,3,1,""],validator_key:[353,4,1,""]},"evennia.utils.optionhandler":{InMemorySaveHandler:[354,1,1,""],OptionHandler:[354,1,1,""]},"evennia.utils.optionhandler.InMemorySaveHandler":{__init__:[354,3,1,""],add:[354,3,1,""],get:[354,3,1,""]},"evennia.utils.optionhandler.OptionHandler":{__init__:[354,3,1,""],all:[354,3,1,""],get:[354,3,1,""],set:[354,3,1,""]},"evennia.utils.picklefield":{PickledFormField:[355,1,1,""],PickledObject:[355,1,1,""],PickledObjectField:[355,1,1,""],PickledWidget:[355,1,1,""],dbsafe_decode:[355,5,1,""],dbsafe_encode:[355,5,1,""],wrap_conflictual_object:[355,5,1,""]},"evennia.utils.picklefield.PickledFormField":{__init__:[355,3,1,""],clean:[355,3,1,""],default_error_messages:[355,4,1,""],widget:[355,4,1,""]},"evennia.utils.picklefield.PickledObjectField":{__init__:[355,3,1,""],formfield:[355,3,1,""],from_db_value:[355,3,1,""],get_db_prep_lookup:[355,3,1,""],get_db_prep_value:[355,3,1,""],get_default:[355,3,1,""],get_internal_type:[355,3,1,""],pre_save:[355,3,1,""],value_to_string:[355,3,1,""]},"evennia.utils.picklefield.PickledWidget":{media:[355,3,1,""],render:[355,3,1,""],value_from_datadict:[355,3,1,""]},"evennia.utils.search":{search_account:[356,5,1,""],search_account_tag:[356,5,1,""],search_channel:[356,5,1,""],search_channel_tag:[356,5,1,""],search_help_entry:[356,5,1,""],search_message:[356,5,1,""],search_object:[356,5,1,""],search_script:[356,5,1,""],search_script_tag:[356,5,1,""],search_tag:[356,5,1,""]},"evennia.utils.test_resources":{EvenniaTest:[357,1,1,""],LocalEvenniaTest:[357,1,1,""],mockdeferLater:[357,5,1,""],mockdelay:[357,5,1,""],unload_module:[357,5,1,""]},"evennia.utils.test_resources.EvenniaTest":{account_typeclass:[357,4,1,""],character_typeclass:[357,4,1,""],exit_typeclass:[357,4,1,""],object_typeclass:[357,4,1,""],room_typeclass:[357,4,1,""],script_typeclass:[357,4,1,""],setUp:[357,3,1,""],tearDown:[357,3,1,""]},"evennia.utils.test_resources.LocalEvenniaTest":{account_typeclass:[357,4,1,""],character_typeclass:[357,4,1,""],exit_typeclass:[357,4,1,""],object_typeclass:[357,4,1,""],room_typeclass:[357,4,1,""],script_typeclass:[357,4,1,""]},"evennia.utils.text2html":{TextToHTMLparser:[358,1,1,""],parse_html:[358,5,1,""]},"evennia.utils.text2html.TextToHTMLparser":{bg_colormap:[358,4,1,""],bgfgstart:[358,4,1,""],bgfgstop:[358,4,1,""],bgstart:[358,4,1,""],bgstop:[358,4,1,""],blink:[358,4,1,""],colorback:[358,4,1,""],colorcodes:[358,4,1,""],convert_linebreaks:[358,3,1,""],convert_urls:[358,3,1,""],fg_colormap:[358,4,1,""],fgstart:[358,4,1,""],fgstop:[358,4,1,""],hilite:[358,4,1,""],inverse:[358,4,1,""],normal:[358,4,1,""],parse:[358,3,1,""],re_bgfg:[358,4,1,""],re_bgs:[358,4,1,""],re_blink:[358,4,1,""],re_blinking:[358,3,1,""],re_bold:[358,3,1,""],re_color:[358,3,1,""],re_dblspace:[358,4,1,""],re_double_space:[358,3,1,""],re_fgs:[358,4,1,""],re_hilite:[358,4,1,""],re_inverse:[358,4,1,""],re_inversing:[358,3,1,""],re_mxplink:[358,4,1,""],re_normal:[358,4,1,""],re_string:[358,4,1,""],re_uline:[358,4,1,""],re_underline:[358,3,1,""],re_unhilite:[358,4,1,""],re_url:[358,4,1,""],remove_backspaces:[358,3,1,""],remove_bells:[358,3,1,""],sub_dblspace:[358,3,1,""],sub_mxp_links:[358,3,1,""],sub_text:[358,3,1,""],tabstop:[358,4,1,""],underline:[358,4,1,""],unhilite:[358,4,1,""]},"evennia.utils.utils":{LimitedSizeOrderedDict:[359,1,1,""],all_from_module:[359,5,1,""],at_search_result:[359,5,1,""],callables_from_module:[359,5,1,""],calledby:[359,5,1,""],check_evennia_dependencies:[359,5,1,""],class_from_module:[359,5,1,""],columnize:[359,5,1,""],crop:[359,5,1,""],datetime_format:[359,5,1,""],dbid_to_obj:[359,5,1,""],dbref:[359,5,1,""],dbref_to_obj:[359,5,1,""],dedent:[359,5,1,""],deepsize:[359,5,1,""],delay:[359,5,1,""],fill:[359,5,1,""],format_grid:[359,5,1,""],format_table:[359,5,1,""],fuzzy_import_from_module:[359,5,1,""],get_all_typeclasses:[359,5,1,""],get_evennia_pids:[359,5,1,""],get_evennia_version:[359,5,1,""],get_game_dir_path:[359,5,1,""],has_parent:[359,5,1,""],host_os_is:[359,5,1,""],inherits_from:[359,5,1,""],init_new_account:[359,5,1,""],interactive:[359,5,1,""],is_iter:[359,5,1,""],justify:[359,5,1,""],latinify:[359,5,1,""],lazy_property:[359,1,1,""],list_to_string:[359,5,1,""],m_len:[359,5,1,""],make_iter:[359,5,1,""],mod_import:[359,5,1,""],mod_import_from_path:[359,5,1,""],object_from_module:[359,5,1,""],pad:[359,5,1,""],percent:[359,5,1,""],percentile:[359,5,1,""],pypath_to_realpath:[359,5,1,""],random_string_from_module:[359,5,1,""],run_async:[359,5,1,""],server_services:[359,5,1,""],string_from_module:[359,5,1,""],string_partial_matching:[359,5,1,""],string_similarity:[359,5,1,""],string_suggestions:[359,5,1,""],strip_control_sequences:[359,5,1,""],time_format:[359,5,1,""],to_bytes:[359,5,1,""],to_str:[359,5,1,""],uses_database:[359,5,1,""],validate_email_address:[359,5,1,""],variable_from_module:[359,5,1,""],wildcard_to_regexp:[359,5,1,""],wrap:[359,5,1,""]},"evennia.utils.utils.LimitedSizeOrderedDict":{__init__:[359,3,1,""],update:[359,3,1,""]},"evennia.utils.utils.lazy_property":{__init__:[359,3,1,""]},"evennia.utils.validatorfuncs":{"boolean":[360,5,1,""],color:[360,5,1,""],datetime:[360,5,1,""],duration:[360,5,1,""],email:[360,5,1,""],future:[360,5,1,""],lock:[360,5,1,""],positive_integer:[360,5,1,""],signed_integer:[360,5,1,""],text:[360,5,1,""],timezone:[360,5,1,""],unsigned_integer:[360,5,1,""]},"evennia.web":{api:[362,0,0,"-"],urls:[369,0,0,"-"],utils:[370,0,0,"-"],webclient:[375,0,0,"-"],website:[378,0,0,"-"]},"evennia.web.api":{filters:[363,0,0,"-"],permissions:[364,0,0,"-"],serializers:[365,0,0,"-"],tests:[366,0,0,"-"],urls:[367,0,0,"-"],views:[368,0,0,"-"]},"evennia.web.api.filters":{AccountDBFilterSet:[363,1,1,""],AliasFilter:[363,1,1,""],BaseTypeclassFilterSet:[363,1,1,""],ObjectDBFilterSet:[363,1,1,""],PermissionFilter:[363,1,1,""],ScriptDBFilterSet:[363,1,1,""],TagTypeFilter:[363,1,1,""],get_tag_query:[363,5,1,""]},"evennia.web.api.filters.AccountDBFilterSet":{Meta:[363,1,1,""],base_filters:[363,4,1,""],declared_filters:[363,4,1,""]},"evennia.web.api.filters.AccountDBFilterSet.Meta":{fields:[363,4,1,""],model:[363,4,1,""]},"evennia.web.api.filters.AliasFilter":{tag_type:[363,4,1,""]},"evennia.web.api.filters.BaseTypeclassFilterSet":{base_filters:[363,4,1,""],declared_filters:[363,4,1,""],filter_name:[363,3,1,""]},"evennia.web.api.filters.ObjectDBFilterSet":{Meta:[363,1,1,""],base_filters:[363,4,1,""],declared_filters:[363,4,1,""]},"evennia.web.api.filters.ObjectDBFilterSet.Meta":{fields:[363,4,1,""],model:[363,4,1,""]},"evennia.web.api.filters.PermissionFilter":{tag_type:[363,4,1,""]},"evennia.web.api.filters.ScriptDBFilterSet":{Meta:[363,1,1,""],base_filters:[363,4,1,""],declared_filters:[363,4,1,""]},"evennia.web.api.filters.ScriptDBFilterSet.Meta":{fields:[363,4,1,""],model:[363,4,1,""]},"evennia.web.api.filters.TagTypeFilter":{filter:[363,3,1,""],tag_type:[363,4,1,""]},"evennia.web.api.permissions":{EvenniaPermission:[364,1,1,""]},"evennia.web.api.permissions.EvenniaPermission":{MINIMUM_CREATE_PERMISSION:[364,4,1,""],MINIMUM_LIST_PERMISSION:[364,4,1,""],check_locks:[364,3,1,""],destroy_locks:[364,4,1,""],has_object_permission:[364,3,1,""],has_permission:[364,3,1,""],update_locks:[364,4,1,""],view_locks:[364,4,1,""]},"evennia.web.api.serializers":{AccountSerializer:[365,1,1,""],AttributeSerializer:[365,1,1,""],ObjectDBSerializer:[365,1,1,""],ScriptDBSerializer:[365,1,1,""],SimpleObjectDBSerializer:[365,1,1,""],TagSerializer:[365,1,1,""],TypeclassSerializerMixin:[365,1,1,""]},"evennia.web.api.serializers.AccountSerializer":{Meta:[365,1,1,""],get_session_ids:[365,3,1,""]},"evennia.web.api.serializers.AccountSerializer.Meta":{fields:[365,4,1,""],model:[365,4,1,""],read_only_fields:[365,4,1,""]},"evennia.web.api.serializers.AttributeSerializer":{Meta:[365,1,1,""],get_value_display:[365,3,1,""]},"evennia.web.api.serializers.AttributeSerializer.Meta":{fields:[365,4,1,""],model:[365,4,1,""]},"evennia.web.api.serializers.ObjectDBSerializer":{Meta:[365,1,1,""],get_contents:[365,3,1,""],get_exits:[365,3,1,""]},"evennia.web.api.serializers.ObjectDBSerializer.Meta":{fields:[365,4,1,""],model:[365,4,1,""],read_only_fields:[365,4,1,""]},"evennia.web.api.serializers.ScriptDBSerializer":{Meta:[365,1,1,""]},"evennia.web.api.serializers.ScriptDBSerializer.Meta":{fields:[365,4,1,""],model:[365,4,1,""],read_only_fields:[365,4,1,""]},"evennia.web.api.serializers.SimpleObjectDBSerializer":{Meta:[365,1,1,""]},"evennia.web.api.serializers.SimpleObjectDBSerializer.Meta":{fields:[365,4,1,""],model:[365,4,1,""]},"evennia.web.api.serializers.TagSerializer":{Meta:[365,1,1,""]},"evennia.web.api.serializers.TagSerializer.Meta":{fields:[365,4,1,""],model:[365,4,1,""]},"evennia.web.api.serializers.TypeclassSerializerMixin":{get_aliases:[365,3,1,""],get_attributes:[365,3,1,""],get_nicks:[365,3,1,""],get_permissions:[365,3,1,""],get_tags:[365,3,1,""],shared_fields:[365,4,1,""]},"evennia.web.api.tests":{TestEvenniaRESTApi:[366,1,1,""]},"evennia.web.api.tests.TestEvenniaRESTApi":{client_class:[366,4,1,""],get_view_details:[366,3,1,""],maxDiff:[366,4,1,""],setUp:[366,3,1,""],tearDown:[366,3,1,""],test_create:[366,3,1,""],test_delete:[366,3,1,""],test_list:[366,3,1,""],test_retrieve:[366,3,1,""],test_set_attribute:[366,3,1,""],test_update:[366,3,1,""]},"evennia.web.api.views":{AccountDBViewSet:[368,1,1,""],CharacterViewSet:[368,1,1,""],ExitViewSet:[368,1,1,""],ObjectDBViewSet:[368,1,1,""],RoomViewSet:[368,1,1,""],ScriptDBViewSet:[368,1,1,""],TypeclassViewSetMixin:[368,1,1,""]},"evennia.web.api.views.AccountDBViewSet":{basename:[368,4,1,""],description:[368,4,1,""],detail:[368,4,1,""],filterset_class:[368,4,1,""],name:[368,4,1,""],queryset:[368,4,1,""],serializer_class:[368,4,1,""],suffix:[368,4,1,""]},"evennia.web.api.views.CharacterViewSet":{basename:[368,4,1,""],description:[368,4,1,""],detail:[368,4,1,""],name:[368,4,1,""],queryset:[368,4,1,""],suffix:[368,4,1,""]},"evennia.web.api.views.ExitViewSet":{basename:[368,4,1,""],description:[368,4,1,""],detail:[368,4,1,""],name:[368,4,1,""],queryset:[368,4,1,""],suffix:[368,4,1,""]},"evennia.web.api.views.ObjectDBViewSet":{basename:[368,4,1,""],description:[368,4,1,""],detail:[368,4,1,""],filterset_class:[368,4,1,""],name:[368,4,1,""],queryset:[368,4,1,""],serializer_class:[368,4,1,""],suffix:[368,4,1,""]},"evennia.web.api.views.RoomViewSet":{basename:[368,4,1,""],description:[368,4,1,""],detail:[368,4,1,""],name:[368,4,1,""],queryset:[368,4,1,""],suffix:[368,4,1,""]},"evennia.web.api.views.ScriptDBViewSet":{basename:[368,4,1,""],description:[368,4,1,""],detail:[368,4,1,""],filterset_class:[368,4,1,""],name:[368,4,1,""],queryset:[368,4,1,""],serializer_class:[368,4,1,""],suffix:[368,4,1,""]},"evennia.web.api.views.TypeclassViewSetMixin":{filter_backends:[368,4,1,""],permission_classes:[368,4,1,""],set_attribute:[368,3,1,""]},"evennia.web.utils":{backends:[371,0,0,"-"],general_context:[372,0,0,"-"],middleware:[373,0,0,"-"],tests:[374,0,0,"-"]},"evennia.web.utils.backends":{CaseInsensitiveModelBackend:[371,1,1,""]},"evennia.web.utils.backends.CaseInsensitiveModelBackend":{authenticate:[371,3,1,""]},"evennia.web.utils.general_context":{general_context:[372,5,1,""],set_game_name_and_slogan:[372,5,1,""],set_webclient_settings:[372,5,1,""]},"evennia.web.utils.middleware":{SharedLoginMiddleware:[373,1,1,""]},"evennia.web.utils.middleware.SharedLoginMiddleware":{__init__:[373,3,1,""],make_shared_login:[373,3,1,""]},"evennia.web.utils.tests":{TestGeneralContext:[374,1,1,""]},"evennia.web.utils.tests.TestGeneralContext":{maxDiff:[374,4,1,""],test_general_context:[374,3,1,""],test_set_game_name_and_slogan:[374,3,1,""],test_set_webclient_settings:[374,3,1,""]},"evennia.web.webclient":{urls:[376,0,0,"-"],views:[377,0,0,"-"]},"evennia.web.webclient.views":{webclient:[377,5,1,""]},"evennia.web.website":{forms:[379,0,0,"-"],templatetags:[380,0,0,"-"],tests:[382,0,0,"-"],urls:[383,0,0,"-"],views:[384,0,0,"-"]},"evennia.web.website.forms":{AccountForm:[379,1,1,""],CharacterForm:[379,1,1,""],CharacterUpdateForm:[379,1,1,""],EvenniaForm:[379,1,1,""],ObjectForm:[379,1,1,""]},"evennia.web.website.forms.AccountForm":{Meta:[379,1,1,""],base_fields:[379,4,1,""],declared_fields:[379,4,1,""],media:[379,3,1,""]},"evennia.web.website.forms.AccountForm.Meta":{field_classes:[379,4,1,""],fields:[379,4,1,""],model:[379,4,1,""]},"evennia.web.website.forms.CharacterForm":{Meta:[379,1,1,""],base_fields:[379,4,1,""],declared_fields:[379,4,1,""],media:[379,3,1,""]},"evennia.web.website.forms.CharacterForm.Meta":{fields:[379,4,1,""],labels:[379,4,1,""],model:[379,4,1,""]},"evennia.web.website.forms.CharacterUpdateForm":{base_fields:[379,4,1,""],declared_fields:[379,4,1,""],media:[379,3,1,""]},"evennia.web.website.forms.EvenniaForm":{base_fields:[379,4,1,""],clean:[379,3,1,""],declared_fields:[379,4,1,""],media:[379,3,1,""]},"evennia.web.website.forms.ObjectForm":{Meta:[379,1,1,""],base_fields:[379,4,1,""],declared_fields:[379,4,1,""],media:[379,3,1,""]},"evennia.web.website.forms.ObjectForm.Meta":{fields:[379,4,1,""],labels:[379,4,1,""],model:[379,4,1,""]},"evennia.web.website.templatetags":{addclass:[381,0,0,"-"]},"evennia.web.website.templatetags.addclass":{addclass:[381,5,1,""]},"evennia.web.website.tests":{AdminTest:[382,1,1,""],ChannelDetailTest:[382,1,1,""],ChannelListTest:[382,1,1,""],CharacterCreateView:[382,1,1,""],CharacterDeleteView:[382,1,1,""],CharacterListView:[382,1,1,""],CharacterManageView:[382,1,1,""],CharacterPuppetView:[382,1,1,""],CharacterUpdateView:[382,1,1,""],EvenniaWebTest:[382,1,1,""],IndexTest:[382,1,1,""],LoginTest:[382,1,1,""],LogoutTest:[382,1,1,""],PasswordResetTest:[382,1,1,""],RegisterTest:[382,1,1,""],WebclientTest:[382,1,1,""]},"evennia.web.website.tests.AdminTest":{unauthenticated_response:[382,4,1,""],url_name:[382,4,1,""]},"evennia.web.website.tests.ChannelDetailTest":{get_kwargs:[382,3,1,""],setUp:[382,3,1,""],url_name:[382,4,1,""]},"evennia.web.website.tests.ChannelListTest":{url_name:[382,4,1,""]},"evennia.web.website.tests.CharacterCreateView":{test_valid_access_multisession_0:[382,3,1,""],test_valid_access_multisession_2:[382,3,1,""],unauthenticated_response:[382,4,1,""],url_name:[382,4,1,""]},"evennia.web.website.tests.CharacterDeleteView":{get_kwargs:[382,3,1,""],test_invalid_access:[382,3,1,""],test_valid_access:[382,3,1,""],unauthenticated_response:[382,4,1,""],url_name:[382,4,1,""]},"evennia.web.website.tests.CharacterListView":{unauthenticated_response:[382,4,1,""],url_name:[382,4,1,""]},"evennia.web.website.tests.CharacterManageView":{unauthenticated_response:[382,4,1,""],url_name:[382,4,1,""]},"evennia.web.website.tests.CharacterPuppetView":{get_kwargs:[382,3,1,""],test_invalid_access:[382,3,1,""],unauthenticated_response:[382,4,1,""],url_name:[382,4,1,""]},"evennia.web.website.tests.CharacterUpdateView":{get_kwargs:[382,3,1,""],test_invalid_access:[382,3,1,""],test_valid_access:[382,3,1,""],unauthenticated_response:[382,4,1,""],url_name:[382,4,1,""]},"evennia.web.website.tests.EvenniaWebTest":{account_typeclass:[382,4,1,""],authenticated_response:[382,4,1,""],channel_typeclass:[382,4,1,""],character_typeclass:[382,4,1,""],exit_typeclass:[382,4,1,""],get_kwargs:[382,3,1,""],login:[382,3,1,""],object_typeclass:[382,4,1,""],room_typeclass:[382,4,1,""],script_typeclass:[382,4,1,""],setUp:[382,3,1,""],test_get:[382,3,1,""],test_get_authenticated:[382,3,1,""],test_valid_chars:[382,3,1,""],unauthenticated_response:[382,4,1,""],url_name:[382,4,1,""]},"evennia.web.website.tests.IndexTest":{url_name:[382,4,1,""]},"evennia.web.website.tests.LoginTest":{url_name:[382,4,1,""]},"evennia.web.website.tests.LogoutTest":{url_name:[382,4,1,""]},"evennia.web.website.tests.PasswordResetTest":{unauthenticated_response:[382,4,1,""],url_name:[382,4,1,""]},"evennia.web.website.tests.RegisterTest":{url_name:[382,4,1,""]},"evennia.web.website.tests.WebclientTest":{test_get:[382,3,1,""],test_get_disabled:[382,3,1,""],url_name:[382,4,1,""]},"evennia.web.website.views":{AccountCreateView:[384,1,1,""],AccountMixin:[384,1,1,""],ChannelDetailView:[384,1,1,""],ChannelListView:[384,1,1,""],ChannelMixin:[384,1,1,""],CharacterCreateView:[384,1,1,""],CharacterDeleteView:[384,1,1,""],CharacterDetailView:[384,1,1,""],CharacterListView:[384,1,1,""],CharacterManageView:[384,1,1,""],CharacterMixin:[384,1,1,""],CharacterPuppetView:[384,1,1,""],CharacterUpdateView:[384,1,1,""],EvenniaCreateView:[384,1,1,""],EvenniaDeleteView:[384,1,1,""],EvenniaDetailView:[384,1,1,""],EvenniaIndexView:[384,1,1,""],EvenniaUpdateView:[384,1,1,""],HelpDetailView:[384,1,1,""],HelpListView:[384,1,1,""],HelpMixin:[384,1,1,""],ObjectCreateView:[384,1,1,""],ObjectDeleteView:[384,1,1,""],ObjectDetailView:[384,1,1,""],ObjectUpdateView:[384,1,1,""],TypeclassMixin:[384,1,1,""],admin_wrapper:[384,5,1,""],evennia_admin:[384,5,1,""],to_be_implemented:[384,5,1,""]},"evennia.web.website.views.AccountCreateView":{form_valid:[384,3,1,""],success_url:[384,4,1,""],template_name:[384,4,1,""]},"evennia.web.website.views.AccountMixin":{form_class:[384,4,1,""],model:[384,4,1,""]},"evennia.web.website.views.ChannelDetailView":{attributes:[384,4,1,""],get_context_data:[384,3,1,""],get_object:[384,3,1,""],max_num_lines:[384,4,1,""],template_name:[384,4,1,""]},"evennia.web.website.views.ChannelListView":{get_context_data:[384,3,1,""],max_popular:[384,4,1,""],page_title:[384,4,1,""],paginate_by:[384,4,1,""],template_name:[384,4,1,""]},"evennia.web.website.views.ChannelMixin":{access_type:[384,4,1,""],get_queryset:[384,3,1,""],model:[384,4,1,""],page_title:[384,4,1,""]},"evennia.web.website.views.CharacterCreateView":{form_valid:[384,3,1,""],template_name:[384,4,1,""]},"evennia.web.website.views.CharacterDetailView":{access_type:[384,4,1,""],attributes:[384,4,1,""],get_queryset:[384,3,1,""],template_name:[384,4,1,""]},"evennia.web.website.views.CharacterListView":{access_type:[384,4,1,""],get_queryset:[384,3,1,""],page_title:[384,4,1,""],paginate_by:[384,4,1,""],template_name:[384,4,1,""]},"evennia.web.website.views.CharacterManageView":{page_title:[384,4,1,""],paginate_by:[384,4,1,""],template_name:[384,4,1,""]},"evennia.web.website.views.CharacterMixin":{form_class:[384,4,1,""],get_queryset:[384,3,1,""],model:[384,4,1,""],success_url:[384,4,1,""]},"evennia.web.website.views.CharacterPuppetView":{get_redirect_url:[384,3,1,""]},"evennia.web.website.views.CharacterUpdateView":{form_class:[384,4,1,""],template_name:[384,4,1,""]},"evennia.web.website.views.EvenniaCreateView":{page_title:[384,3,1,""]},"evennia.web.website.views.EvenniaDeleteView":{page_title:[384,3,1,""]},"evennia.web.website.views.EvenniaDetailView":{page_title:[384,3,1,""]},"evennia.web.website.views.EvenniaIndexView":{get_context_data:[384,3,1,""],template_name:[384,4,1,""]},"evennia.web.website.views.EvenniaUpdateView":{page_title:[384,3,1,""]},"evennia.web.website.views.HelpDetailView":{get_context_data:[384,3,1,""],get_object:[384,3,1,""],template_name:[384,4,1,""]},"evennia.web.website.views.HelpListView":{page_title:[384,4,1,""],paginate_by:[384,4,1,""],template_name:[384,4,1,""]},"evennia.web.website.views.HelpMixin":{get_queryset:[384,3,1,""],model:[384,4,1,""],page_title:[384,4,1,""]},"evennia.web.website.views.ObjectCreateView":{model:[384,4,1,""]},"evennia.web.website.views.ObjectDeleteView":{"delete":[384,3,1,""],access_type:[384,4,1,""],model:[384,4,1,""],template_name:[384,4,1,""]},"evennia.web.website.views.ObjectDetailView":{access_type:[384,4,1,""],attributes:[384,4,1,""],get_context_data:[384,3,1,""],get_object:[384,3,1,""],model:[384,4,1,""],template_name:[384,4,1,""]},"evennia.web.website.views.ObjectUpdateView":{access_type:[384,4,1,""],form_valid:[384,3,1,""],get_initial:[384,3,1,""],get_success_url:[384,3,1,""],model:[384,4,1,""]},"evennia.web.website.views.TypeclassMixin":{typeclass:[384,3,1,""]},evennia:{accounts:[153,0,0,"-"],commands:[159,0,0,"-"],comms:[182,0,0,"-"],contrib:[188,0,0,"-"],help:[251,0,0,"-"],locks:[255,0,0,"-"],objects:[258,0,0,"-"],prototypes:[263,0,0,"-"],scripts:[268,0,0,"-"],server:[277,0,0,"-"],set_trace:[151,5,1,""],settings_default:[328,0,0,"-"],typeclasses:[329,0,0,"-"],utils:[335,0,0,"-"],web:[361,0,0,"-"]}},objnames:{"0":["py","module","Python module"],"1":["py","class","Python class"],"2":["py","exception","Python exception"],"3":["py","method","Python method"],"4":["py","attribute","Python attribute"],"5":["py","function","Python function"],"6":["py","data","Python data"]},objtypes:{"0":"py:module","1":"py:class","2":"py:exception","3":"py:method","4":"py:attribute","5":"py:function","6":"py:data"},terms:{"001s":8,"010S":81,"015public":81,"020t":81,"030a":81,"040f":81,"043thi":106,"050f":81,"0b16":134,"0d0":88,"0x045a0990":3,"100m":358,"100mb":142,"100s":229,"101m":358,"102m":358,"103m":358,"104m":358,"105m":358,"106m":358,"107m":358,"108m":358,"109m":358,"10m":138,"110m":358,"111m":358,"112m":358,"113m":358,"114m":358,"115m":358,"116m":358,"117m":358,"118m":358,"119m":358,"120m":358,"121m":358,"122m":358,"123dark":94,"123m":358,"124m":358,"125m":358,"126m":358,"127m":358,"128m":358,"129m":358,"12s":19,"130m":358,"131m":358,"132m":358,"133m":358,"134m":358,"135m":358,"136m":358,"137m":358,"138m":358,"139m":358,"140m":358,"141m":358,"142m":358,"143m":358,"144m":358,"145m":358,"146m":358,"147m":358,"148m":358,"149m":358,"150m":358,"151m":358,"152m":358,"153m":358,"154m":358,"155m":358,"156m":358,"156s":8,"157m":358,"158m":358,"159m":358,"160m":358,"161m":358,"162m":358,"163m":358,"164m":358,"165m":358,"166m":358,"167m":358,"168m":358,"169m":358,"16m":358,"170m":358,"171m":358,"172m":358,"173m":358,"174m":358,"175m":358,"176m":358,"177m":358,"178m":358,"179m":358,"17m":358,"180m":358,"181m":358,"182m":358,"183m":358,"184m":358,"185m":358,"186m":358,"187m":358,"188m":358,"189m":358,"18m":358,"190m":358,"191m":358,"192m":358,"193m":358,"194m":358,"195m":358,"196m":358,"197m":358,"198m":358,"199m":358,"19m":358,"1_7":8,"1d100":[112,198],"1d2":88,"1d6":112,"1gb":142,"1st":91,"200m":358,"201m":358,"2020_01_29":352,"2020_01_29__1":352,"2020_01_29__2":352,"202m":358,"203m":358,"204m":358,"205m":358,"206m":358,"207m":358,"208m":358,"209m":358,"20m":358,"210m":358,"211m":358,"212m":358,"213m":358,"214m":358,"215m":358,"216m":358,"217m":358,"218m":358,"219m":358,"21m":358,"220m":358,"221m":358,"222m":358,"223m":358,"224m":358,"225m":358,"226m":358,"227m":358,"228m":358,"229m":358,"22m":[336,358],"22nd":359,"230m":358,"231m":358,"232m":358,"233m":358,"234m":358,"235m":358,"236m":358,"237m":358,"238m":358,"239m":358,"23m":358,"240m":358,"241m":358,"242m":358,"243m":358,"244m":358,"245m":358,"246m":358,"247m":358,"248m":358,"249m":358,"24m":358,"250m":358,"251m":358,"252m":358,"253m":358,"254m":358,"255m":358,"25m":358,"26m":358,"27m":358,"28gmcp":306,"28m":358,"29m":358,"2d6":[90,198],"2gb":142,"2pm6ywo":73,"30m":[336,358],"31m":[336,358],"31st":91,"32bit":[134,136],"32m":[336,358],"32nd":90,"33m":[336,358],"34m":[336,358],"35m":[336,358],"36m":[336,358],"37m":[336,358],"38m":358,"39m":358,"3c3ccec30f037be174d3":359,"3d6":198,"3rd":91,"40m":[336,358],"41m":[336,358],"42m":[336,358],"43m":[336,358],"44m":[336,358],"45m":[19,336,358],"46m":[336,358],"474a3b9f":36,"47m":[336,358],"48m":358,"49m":358,"4er43233fwefwfw":67,"4th":131,"50m":358,"50mb":142,"51m":358,"52m":358,"53m":358,"54m":358,"550n":81,"551e":81,"552w":81,"553b":81,"554i":81,"555e":81,"55m":358,"56m":358,"57m":358,"5885d80a13c0db1f8e263663d3faee8d66f31424b43e9a70645c907a6cbd8fb4":73,"58m":358,"59m":358,"5d5":88,"5mb":190,"5x5":72,"60m":358,"61m":358,"62cb3a1a":36,"62m":358,"63m":358,"64m":358,"65m":358,"66m":358,"67m":358,"68m":358,"69m":358,"6d6":88,"70m":358,"71m":358,"72m":358,"73m":358,"74m":358,"75m":358,"76m":358,"77m":358,"78m":358,"79m":358,"80m":358,"81m":358,"82m":358,"83m":358,"84m":358,"85m":358,"86m":358,"87m":358,"88m":358,"89m":358,"8f64fec2670c":142,"90m":358,"90s":360,"91m":358,"92m":358,"93m":358,"94m":358,"95m":358,"96m":358,"97m":358,"98m":358,"99m":358,"\u6d4b\u8bd5":81,"abstract":[58,77,102,236,331,332,333,349,353,359],"boolean":[14,22,46,98,128,164,198,201,257,262,265,274,302,331,336,337,353,360],"break":[3,15,45,46,48,49,60,62,72,73,84,89,90,97,105,106,107,110,135,145,151,177,178,215,239,242,291,344,359],"byte":[16,19,61,284,291,293,302,310,359],"case":[3,8,9,11,13,14,15,16,19,20,22,23,27,30,31,34,37,40,41,42,45,46,48,49,53,56,58,59,60,61,62,68,70,71,72,73,74,76,77,80,81,82,83,86,87,90,91,92,94,95,97,98,99,100,101,102,103,104,105,106,107,108,109,110,113,114,124,125,128,131,132,144,145,148,149,154,156,161,163,166,169,175,177,178,184,185,186,190,191,192,193,195,198,200,201,209,217,219,224,228,248,253,254,256,257,262,271,273,287,291,295,299,313,320,323,331,332,333,334,336,338,349,356,359,371],"catch":[0,6,16,19,33,37,44,84,90,97,123,156,175,248,272,282,287,294,320,321,341,349,352,355,384],"char":[40,59,72,88,90,96,101,104,112,113,122,124,128,139,154,169,175,202,248,262,279,292,305,306,327,336,342,345],"class":[0,3,6,12,13,17,20,26,27,28,29,34,37,40,42,48,49,50,53,58,64,71,74,75,76,77,80,81,82,83,84,85,87,88,89,90,91,93,94,95,96,97,98,99,100,101,102,105,108,110,112,113,114,115,117,122,123,124,125,127,128,129,139,154,155,156,157,158,159,162,163,164,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,183,184,185,186,187,190,191,192,193,194,195,197,198,199,200,201,202,205,206,208,209,210,211,212,213,214,215,216,217,218,219,223,224,225,226,227,228,229,230,232,233,234,235,236,238,239,241,242,243,244,246,247,248,249,250,252,253,254,257,258,259,260,261,262,264,266,267,269,270,271,272,273,274,275,276,278,279,280,282,284,285,288,289,291,292,293,294,295,296,297,298,299,300,301,302,303,304,305,306,307,308,309,310,311,313,315,318,320,321,322,323,325,326,327,329,330,331,332,333,334,336,337,338,339,340,341,342,343,344,345,346,348,349,350,351,352,353,354,355,356,357,358,359,363,364,365,366,368,371,373,374,379,382,384],"const":249,"default":[2,3,5,6,7,8,9,11,12,13,14,15,16,17,19,20,21,22,23,24,25,26,27,29,33,34,37,39,40,41,42,43,45,48,49,50,51,52,53,54,55,56,58,59,61,62,63,64,65,66,67,68,70,71,72,74,75,77,79,80,83,85,86,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,106,107,108,113,114,115,116,117,122,123,125,126,128,129,132,133,136,137,138,139,140,141,142,144,145,148,151,152,154,155,156,158,159,160,161,162,163,164,185,187,190,192,193,194,195,196,197,198,199,200,201,202,203,206,208,209,210,212,213,215,216,218,219,222,223,225,226,227,228,229,230,232,233,234,235,236,239,241,246,248,249,250,251,253,254,255,257,262,266,267,271,272,274,276,280,282,284,286,287,288,292,304,305,306,311,313,314,320,321,322,323,327,328,331,332,333,334,336,338,339,341,343,344,345,348,349,351,352,353,354,355,356,359,360,363,368,371,379,384,386],"export":141,"final":[0,2,8,19,22,29,31,37,40,42,45,46,48,55,56,58,62,74,78,83,85,86,90,92,96,98,100,101,102,104,105,109,112,113,114,116,126,128,129,133,136,145,160,161,169,178,190,198,230,257,267,319,323,336,338,343,344,351],"float":[71,74,105,156,197,207,208,211,229,265,275,282,294,332,346,355,359],"function":[0,5,7,8,9,13,14,15,19,22,23,26,27,28,29,30,39,41,42,44,45,46,48,51,53,56,58,59,60,64,65,67,70,72,73,74,76,77,79,80,81,83,86,87,89,90,91,92,94,95,96,97,98,99,101,103,104,105,107,109,110,112,114,115,123,125,128,129,133,136,141,149,151,154,158,161,163,164,166,167,168,169,170,174,175,176,177,179,180,185,186,190,192,193,194,197,198,200,201,203,207,208,211,212,213,216,218,219,224,225,229,230,232,233,234,235,236,239,242,243,247,249,250,254,255,256,257,262,265,266,267,272,274,275,276,282,287,291,302,303,308,311,314,321,323,325,333,334,335,336,337,339,340,341,343,344,346,351,352,353,354,358,359,360,366,368,372,384],"g\u00e9n\u00e9ral":131,"goto":[96,343],"import":[1,3,5,6,7,8,10,12,13,14,15,16,19,20,22,26,27,28,29,30,31,32,34,37,39,40,41,43,44,45,46,48,50,51,53,55,56,58,61,62,64,65,66,67,68,70,71,72,75,76,77,79,80,81,82,83,84,85,87,88,89,90,91,92,94,96,97,98,100,101,103,104,105,108,110,112,113,114,115,116,122,123,124,125,126,127,128,129,135,136,139,140,142,145,149,151,163,169,179,184,190,192,193,194,195,196,197,198,200,201,211,212,213,215,217,218,219,225,226,229,230,232,233,234,235,236,243,247,248,250,253,257,267,276,282,286,294,295,316,320,323,324,331,333,337,338,341,342,343,344,345,356,357,359,384],"int":[13,20,27,30,45,62,71,81,85,88,90,96,97,104,106,114,129,154,156,161,162,164,186,190,192,195,197,198,201,203,205,207,208,211,213,219,229,230,232,233,234,235,236,249,262,267,273,274,275,276,279,280,282,286,287,291,292,293,294,296,300,301,302,310,311,313,323,325,327,331,332,336,339,341,342,343,345,346,349,351,352,356,359],"long":[0,8,11,16,19,22,27,28,29,31,33,40,44,45,48,53,58,60,61,63,64,67,68,70,71,72,73,74,76,77,81,83,87,90,91,94,96,98,99,101,104,106,107,112,123,125,126,128,130,131,133,139,140,142,166,174,192,199,208,216,226,235,243,249,291,296,311,336,337,344,345,359],"new":[0,2,5,7,9,11,12,13,14,15,19,20,22,23,25,26,27,29,31,32,34,36,39,40,41,42,43,46,49,50,51,52,53,55,56,59,60,63,64,66,67,68,71,72,73,74,76,77,78,80,81,83,85,86,87,89,91,94,95,96,97,98,99,101,105,106,107,108,109,110,112,113,114,116,117,118,119,120,121,122,123,125,127,129,130,131,133,135,136,137,139,140,141,142,143,144,154,155,156,162,163,164,166,167,169,174,177,178,180,181,183,184,185,193,194,195,199,200,201,205,208,210,212,213,214,215,216,217,218,219,225,226,229,230,232,233,234,235,236,246,247,248,250,254,257,259,261,262,264,266,267,269,271,274,275,276,279,282,291,292,293,294,300,301,302,307,314,322,323,327,331,332,333,334,336,337,339,342,343,345,349,351,352,353,382,384,386],"null":[58,98,132,330,351],"public":[5,11,23,81,86,90,98,103,129,137,138,140,142,144,145,174,190,262,327,345],"return":[2,3,5,6,8,13,16,19,22,26,28,29,30,31,34,37,41,42,43,45,46,48,53,55,60,62,63,68,71,72,74,77,79,80,81,82,83,84,85,86,87,90,91,92,94,95,96,97,98,99,104,105,108,109,112,113,114,115,122,123,125,128,129,139,144,145,149,150,154,155,156,158,160,161,162,163,164,166,169,176,179,180,184,185,186,187,190,191,192,193,195,197,198,200,201,203,205,206,207,208,210,211,212,213,216,217,218,219,223,224,225,228,229,230,232,233,234,235,236,238,246,247,248,249,250,252,253,254,256,257,259,261,262,264,265,266,267,272,273,274,276,279,280,282,287,288,291,292,294,295,296,297,299,300,301,302,303,305,306,307,309,310,311,313,314,320,321,323,325,326,327,330,331,332,333,334,336,337,338,339,340,341,343,344,345,346,349,351,352,353,354,355,356,358,359,360,363,364,365,372,379,384],"short":[3,27,33,34,43,46,56,62,63,65,68,70,74,83,85,89,90,91,99,102,104,106,110,114,135,139,145,149,193,195,208,215,218,219,243,249,267,337,359],"static":[46,64,69,71,74,90,103,116,151,152,176,188,193,205,219,227,228,327,339,363,364,365,377,384,386],"super":[20,34,45,53,68,71,81,86,89,90,91,94,104,107,114,123,125,193,195,219],"switch":[11,12,14,15,20,22,23,26,29,31,45,48,50,51,55,59,62,63,66,67,70,81,90,94,95,99,113,114,125,126,133,137,140,142,143,166,167,168,169,174,175,176,177,178,179,184,185,198,200,212,213,215,216,233,271,333,339,360],"th\u00ed":99,"throw":[11,13,42,54,68,128,141,163,176,359],"true":[0,8,12,13,14,19,20,22,23,26,27,29,30,31,32,33,37,40,44,45,46,48,53,54,55,58,62,64,68,71,74,79,80,81,83,86,88,90,91,92,94,96,97,98,99,103,104,105,108,109,113,114,122,124,125,126,128,135,137,138,140,142,143,144,154,158,160,162,163,164,166,169,174,176,177,180,183,184,185,186,187,190,192,193,195,196,197,198,201,203,205,208,210,213,216,217,218,219,225,229,230,232,233,234,235,236,239,242,246,250,252,256,257,259,261,262,264,266,267,269,271,272,273,274,275,276,278,280,282,287,288,291,293,300,305,310,311,321,323,325,327,330,331,332,333,336,339,341,343,344,345,346,349,351,354,355,356,359,360,364],"try":[0,3,5,6,8,13,14,16,19,26,27,29,30,31,37,42,46,48,49,50,54,58,60,61,64,65,66,67,68,70,71,72,74,76,77,79,80,81,83,84,85,87,88,89,90,92,94,97,98,99,100,101,102,104,105,106,107,110,112,114,116,117,118,119,120,121,123,124,125,126,128,129,132,133,135,136,137,141,142,145,149,154,158,164,169,185,187,192,193,199,209,217,218,219,225,226,228,229,232,233,234,235,236,239,243,246,247,248,250,254,262,266,274,279,282,291,306,307,311,325,330,331,333,336,338,339,341,342,355,359],"var":[46,59,138,190,213,222,306,337],"void":88,"while":[5,8,13,14,15,20,22,25,26,27,42,46,48,56,58,60,62,63,66,67,68,71,72,73,74,76,78,81,82,83,86,88,89,90,91,97,99,100,102,103,104,106,107,109,113,116,123,125,128,129,133,136,141,142,145,149,154,166,169,177,185,190,192,201,209,210,216,217,233,236,239,243,246,248,250,262,267,274,306,329,330,333,343,345,359,360,384],AIs:131,AND:[31,101,112,169,201,257,331],AWS:[142,144,190],Adding:[1,21,22,60,89,93,95,96,103,106,113,139,151,152,188,200,386],Age:[201,379],And:[0,2,3,13,22,27,31,40,46,48,58,66,67,68,70,72,79,80,81,83,86,89,91,92,97,104,106,107,110,112,126,128,163,195,230,232,233,234,235,236,386],Are:[22,95,99,110,131],Aye:70,BGs:126,Being:[90,94,106,109,114],But:[0,3,8,13,14,16,19,20,22,27,31,37,39,41,42,45,48,56,58,62,66,68,72,73,74,76,77,80,81,82,83,85,86,87,89,91,92,95,96,97,98,99,101,103,104,105,106,107,108,110,112,120,126,128,129,135,140,144,162,163,192,243,334,384],DNS:142,DOING:201,DoS:300,Doing:[22,76,83,98,112,129,163,166],For:[2,3,4,5,8,10,11,12,14,15,17,19,20,22,27,31,35,37,40,42,49,50,51,55,56,58,59,61,62,63,64,65,66,67,68,70,71,72,73,74,76,77,80,81,83,85,86,88,89,90,91,92,94,96,97,99,101,103,104,105,106,107,108,112,113,114,116,125,126,127,128,129,131,132,133,136,140,142,143,144,145,149,163,169,179,184,185,186,187,193,195,198,200,201,202,210,211,213,219,225,227,229,230,233,246,254,257,267,302,311,331,333,336,340,343,353,355,359,367,379,384,385],GMs:90,Going:249,Has:[134,232,233,234,235,236],His:[89,202],IDE:[7,74],IDEs:89,IDs:[66,128,129,144,207,331,359,365],INTO:[169,201],IOS:134,IPs:[49,145,222,325],IRE:[59,306],Its:[4,31,34,40,56,58,86,91,92,202,229,267,341,343,359],LTS:6,NOT:[13,22,31,46,81,101,142,145,169,257,267,274,325],Near:102,Not:[8,11,30,43,44,46,60,84,86,89,98,101,106,107,110,127,128,132,134,135,142,156,163,177,178,262,279,292,293,294,296,297,298,304,306,309,331,332,353],OBS:51,ONE:145,Obs:8,One:[2,9,10,11,23,27,31,33,37,40,44,49,55,66,68,70,71,74,77,81,83,89,90,92,97,98,99,101,104,106,107,108,114,122,125,126,127,131,132,136,149,151,158,160,192,198,218,229,230,246,247,266,267,292,320,330,331,332,336,337,344,359],PRs:11,Such:[8,14,22,27,73,77,82,89,112,169,267,336,343],THAT:97,THE:[201,243],THEN:[163,201],THERE:201,TLS:145,That:[0,3,4,5,11,16,20,22,29,30,37,40,43,44,45,48,65,66,67,68,70,71,72,76,77,79,80,81,85,86,89,91,92,97,98,99,101,102,104,105,106,109,112,115,116,129,143,192,193,199,229,230,257,267,323,367],The:[2,3,4,6,7,8,9,10,11,12,16,17,19,20,22,23,24,28,29,30,31,32,33,34,36,37,39,40,41,43,44,45,46,49,53,54,55,58,59,60,61,62,63,65,66,67,72,73,74,75,76,77,79,80,81,82,84,85,87,88,89,91,94,95,97,98,99,100,101,102,103,104,105,106,107,108,110,112,116,117,123,124,125,126,127,128,129,130,131,132,133,134,135,136,140,141,142,143,144,145,147,149,154,156,157,158,160,161,162,163,164,166,169,173,174,175,176,177,178,179,180,181,183,184,185,186,187,190,192,193,195,197,198,199,200,201,202,203,205,206,207,208,210,211,212,213,216,217,218,219,225,226,229,230,232,233,234,235,236,238,239,241,242,243,246,247,248,249,250,251,253,254,256,257,261,262,264,265,266,267,270,271,272,273,274,276,279,280,281,282,284,286,287,289,291,292,293,294,295,296,297,298,299,300,301,302,304,305,306,307,309,310,311,313,314,319,320,321,322,323,327,330,331,332,333,334,336,337,338,339,340,341,342,343,344,345,346,347,349,351,352,353,354,355,356,357,359,360,363,364,365,367,368,379,384,386],Their:[27,42,62,112,145,202],Theirs:202,Then:[3,5,8,11,16,41,46,66,67,68,70,74,85,86,88,92,97,104,110,136,138,144,200],There:[0,5,6,8,9,13,14,15,16,19,20,22,23,27,29,31,34,37,39,40,41,43,45,46,47,48,51,58,59,60,61,62,66,68,70,71,72,74,76,77,78,80,81,86,89,90,91,92,94,96,97,98,99,100,101,103,105,106,108,110,112,113,114,116,122,123,125,128,131,132,133,140,142,143,145,177,200,201,230,232,233,234,235,236,250,267,276,287,306,323,336,337,343,351,385],These:[8,11,13,14,17,22,23,24,25,27,29,30,37,40,41,42,43,45,46,53,56,58,59,62,66,67,68,71,72,74,79,81,85,92,97,98,99,100,101,103,104,106,107,108,110,112,125,128,137,142,144,145,149,153,154,155,160,162,164,166,168,170,178,186,193,197,211,212,216,218,219,223,229,243,248,253,257,262,266,267,276,281,288,307,310,311,313,322,323,324,331,333,336,340,343,344,345,352,353,354,359],USE:256,Use:[5,8,11,12,14,15,20,27,34,40,42,45,46,49,62,67,68,74,79,81,90,92,99,105,106,107,109,113,114,132,133,135,136,137,142,144,148,154,161,166,167,169,174,175,179,181,192,193,197,199,210,212,213,215,216,217,219,233,234,235,236,242,249,259,261,262,284,288,293,310,311,313,314,317,331,333,336,342,343,345,349,356,359],Used:[22,125,160,163,169,185,201,215,230,250,261,274,284,302,331,333,344,345,372],Useful:[27,142,386],Uses:[62,134,169,181,199,222,246,282,331,344,345,349],Using:[1,4,19,27,29,31,44,52,68,70,76,90,91,97,101,104,105,106,107,114,117,118,119,120,121,125,147,151,152,169,188,219,233,249,262,302,329,343,386],VCS:2,VHS:201,VPS:142,WILL:[97,134,274],WIS:90,WITH:[133,201],Will:[20,30,62,74,99,149,154,197,217,219,262,265,267,280,282,291,292,333,343,345,346,351,354,359],With:[13,16,33,51,72,76,89,98,101,108,109,114,132,133,144,151,154,190,193,219,267,336],Yes:[22,201,341],__1:352,__2:352,_________________:45,_________________________:27,______________________________:27,________________________________:27,_________________________________:45,______________________________________:343,______________________________________________:27,_______________________________________________:27,____________________________________________________:27,_________________________________________________________:96,__________________________________________________________:96,__all__:[155,252,259],__defaultclasspath__:333,__doc__:[22,29,164,177,179,180,254,339],__example__:6,__ge:101,__ge__:6,__getitem__:336,__gt:101,__iendswith:101,__in:101,__init_:345,__init__:[4,6,13,41,45,53,71,75,103,107,115,162,163,164,184,187,190,192,193,205,217,219,229,242,249,257,261,262,272,273,275,276,279,280,282,284,285,291,292,293,294,295,296,297,298,299,300,301,302,303,304,305,306,307,309,310,311,313,320,321,323,325,326,327,330,331,333,334,336,338,341,342,343,344,345,351,352,353,354,355,359,373],__istartswith:101,__iter__:13,__le:101,__lt:101,__multimatch_command:178,__noinput_command:[162,178,193,341,343,344],__nomatch_command:[178,193,248,341,343],__pycache__:103,__send_to_channel_command:178,__settingsclasspath__:333,__unloggedin_look_command:[181,199,214],_action_thre:27,_action_two:27,_asynctest:308,_attrs_to_sync:322,_attrtyp:331,_cach:333,_cached_cmdset:163,_call_or_get:193,_callback:[19,276],_char_index:336,_character_dbref:194,_check_password:27,_check_usernam:27,_clean_nam:191,_clean_str:336,_cleanup_charact:113,_code_index:336,_compress_cont:191,_copi:[169,262],_creation:45,_default:[27,343],_defend:27,_errorcmdset:163,_event:211,_file:352,_flag:266,_footer:22,_format_diff_text_and_opt:267,_get_a_random_goblin_nam:42,_get_db_hold:[321,333],_get_top:92,_getinput:343,_gettabl:287,_http11clientfactori:284,_init_charact:113,_is_fight:83,_is_in_mage_guild:27,_ital:74,_italic_:135,_loadfunc:341,_menutre:[27,81,343],_monitor:287,_monitor_callback:32,_nicklist_cal:156,_oob_at_:349,_option:27,_os:190,_pending_request:327,_permission_hierarchi:256,_ping_cal:156,_playable_charact:[92,128],_postsav:349,_prefix:219,_quell:256,_quitfunc:341,_raw_str:336,_reactor_stop:[299,320],_recog_obj2recog:219,_recog_obj2regex:219,_recog_ref2recog:219,_regex:219,_repeat:287,_safe_contents_upd:261,_savefunc:341,_saver:[13,340],_saverdict:[13,229,340],_saverlist:[13,340],_saverset:340,_sdesc:219,_select:27,_sensitive_:371,_session:343,_set:101,_set_attribut:27,_set_nam:27,_some_other_monitor_callback:32,_start_delai:276,_static:74,_stop_serv:299,_templat:74,_test:160,_traithandlerbas:228,_validate_fieldnam:90,a2enmod:132,a8oc3d5b:144,a_off:192,a_python_func:74,aaaaaargh:106,aardwolf:59,abbrevi:[55,62,169,215,351],abcd:175,abid:126,abil:[8,20,22,28,31,37,42,46,48,60,76,88,89,90,99,103,106,109,112,114,129,142,144,218,219,226,232,233,234,235,236,262,274,282,331],abl:[0,2,3,5,7,10,11,13,14,15,19,20,22,27,28,33,34,39,42,43,51,55,58,62,65,66,68,71,72,76,77,79,80,82,83,86,89,90,92,94,96,97,99,105,106,109,110,112,113,114,115,125,128,129,132,133,136,139,141,142,144,145,163,166,167,169,170,184,187,193,197,203,212,219,225,229,232,233,234,235,236,243,274,331,333,340,355,359,382],abod:256,abort:[19,22,27,28,34,81,108,154,164,169,185,210,226,262,265,344],about:[0,2,3,5,6,8,11,13,14,15,16,17,20,22,27,29,35,39,42,43,48,49,50,55,56,58,60,61,62,64,66,67,68,70,73,74,76,77,78,80,81,84,85,86,87,89,92,93,94,96,97,98,99,100,101,102,103,104,106,109,110,112,113,114,115,116,117,118,119,120,121,123,124,126,129,130,131,133,134,135,136,139,141,142,144,145,147,149,154,169,179,184,190,192,193,195,198,227,234,235,236,242,243,247,248,254,262,282,284,287,296,298,300,309,311,321,323,330,332,334,336,349,351,359,365],abov:[2,5,7,8,11,12,13,14,15,19,20,22,26,27,29,30,31,32,37,40,42,43,45,46,48,49,53,58,62,64,65,67,70,71,72,73,77,79,80,82,83,84,87,88,89,90,91,92,94,96,97,99,101,103,104,105,106,107,108,113,114,117,123,125,127,128,132,133,134,136,142,144,149,162,163,169,193,198,201,203,212,213,217,219,226,227,229,230,232,234,235,236,257,262,287,330,343,354,372],abridg:86,abruptli:229,absolut:[19,74,88,91,93,97,129,131,195,197,198,202,342,346,359],absorb:30,abspath:359,abstractus:158,abus:145,academi:131,acccount:24,accept:[11,13,15,19,20,27,30,31,42,44,45,59,62,68,73,90,105,106,128,129,133,135,142,154,160,161,179,192,198,201,206,209,217,218,219,226,246,248,256,262,282,287,300,326,327,332,337,343,351,355,359],accept_callback:[206,208],accesing_obj:256,access:[8,9,11,13,14,15,19,20,22,23,27,28,29,30,31,32,33,34,37,39,40,41,42,43,45,46,49,51,53,54,56,58,60,62,64,66,68,71,72,74,75,77,79,80,81,83,85,86,88,89,90,92,93,96,97,98,100,101,102,103,104,105,106,109,112,113,114,117,125,126,128,129,132,133,136,139,142,144,145,148,154,155,158,162,163,164,166,167,169,174,175,176,177,178,179,184,185,186,187,190,193,200,203,205,207,216,218,219,229,232,233,234,235,236,248,249,254,255,256,257,261,262,265,266,267,271,273,275,276,279,282,291,292,321,323,329,330,331,333,334,337,338,339,352,358,359,364,365,379,384],access_kei:190,access_key_nam:190,access_obj:[256,331],access_opt:360,access_token_kei:[124,139],access_token_secret:[124,139],access_typ:[29,154,164,169,185,187,254,256,257,262,331,333,384],accessed_obj:[31,81,125,256,257],accessing_obj:[13,31,81,125,154,185,187,254,256,257,262,331,333],accessing_object:[13,256],accessor:[158,187,254,261,271,331,333,334,350],accessori:136,accident:[16,20,74,114,167,169,321],accommod:79,accomod:345,accompani:114,accomplish:[49,71,76,81,86],accord:[20,22,72,101,113,126,193,195,213,217,218,233,275,336,337],accordingli:[7,71,90,142,185,249],account1:382,account2:382,account:[8,11,13,15,17,19,20,22,23,25,26,27,28,30,31,33,34,36,39,40,41,42,43,45,49,51,54,56,60,62,63,64,66,67,68,71,72,73,74,75,76,79,80,81,86,88,89,91,92,94,97,98,99,102,103,104,105,108,110,114,124,126,128,129,134,137,139,142,144,149,151,152,159,160,161,162,163,164,165,167,169,170,171,174,175,176,177,181,184,185,186,187,193,194,195,197,199,200,201,203,205,206,208,210,212,213,214,219,222,225,232,234,235,236,239,243,246,247,248,250,254,256,257,261,262,264,266,268,271,282,286,287,302,313,314,321,322,323,331,333,336,339,343,344,353,354,356,357,359,360,363,364,365,368,371,379,382,384,386],account_cal:[166,174,177,212],account_count:323,account_id:[128,262],account_mod:169,account_nam:88,account_search:[219,262],account_subscription_set:158,account_typeclass:[357,382],accountattributeinlin:155,accountcmdset:[12,20,68,86,89,90,91,105,166,170,174,194,212],accountcreateview:384,accountdb:[45,75,128,151,154,155,158,185,254,329,330,333,353,360,363],accountdb_db_attribut:155,accountdb_db_tag:155,accountdb_set:[331,334],accountdbadmin:155,accountdbchangeform:155,accountdbcreationform:155,accountdbfilterset:[363,368],accountdbmanag:[157,158],accountdbpasswordcheck:302,accountdbviewset:368,accountform:[155,379,384],accountid:128,accountinlin:155,accountlist:90,accountmanag:[154,157],accountmixin:384,accountnam:[90,169,181,186,199,339],accountseri:[365,368],accounttaginlin:155,accru:154,acct:108,accur:[68,164,187,205,229,233,236,267,275,280,282,284,285,293,302,303,305,307,310,311,331,336,351,354,355,373],accuraci:[70,97,233,234,235],accus:112,accustom:33,acept:201,achiev:[19,22,62,66,68,74,89,101,109,126,235,282],ack:28,acl:[190,191],acquaint:89,acquir:338,across:[27,37,40,42,45,50,53,58,60,88,97,106,110,154,162,163,195,201,248,253,262,265,274,276,279,291,292,306,323,345],act:[12,14,20,23,27,37,40,52,71,72,73,78,83,88,90,101,106,110,114,132,133,149,151,169,187,201,229,230,256,279,291,292,311,331,334,338,343],action1:113,action2:113,action:[3,5,13,37,59,62,66,68,70,76,77,83,85,86,89,91,97,103,104,106,110,112,113,114,122,123,128,142,155,156,175,185,192,201,219,232,233,234,235,236,249,253,254,265,266,271,272,294,313,314,315,325,333,349,364,366,367,368],action_count:113,action_nam:[232,233,234,235,236],actiondict:113,actions_per_turn:[232,233,235,236],activ:[0,2,5,9,11,14,19,20,22,31,34,37,40,49,54,55,56,62,64,67,74,77,79,82,91,94,98,110,116,131,136,137,140,141,142,143,148,149,154,160,163,167,169,179,184,185,206,214,223,243,246,250,261,262,265,274,287,294,295,296,297,298,302,304,305,306,313,323,325,331,332,343,344,345,351,359],activest:358,actor:236,actual:[0,2,3,5,6,7,8,9,12,13,14,15,19,23,27,29,31,33,34,39,40,42,43,44,46,48,51,53,56,58,59,61,62,68,70,71,72,74,77,80,83,86,87,90,92,94,96,97,98,99,100,101,102,103,105,106,107,108,109,110,112,113,114,116,119,120,125,126,128,129,131,132,136,139,142,144,154,160,164,166,169,175,177,178,180,185,187,190,192,193,195,200,201,210,211,215,216,218,219,226,227,228,230,232,233,234,235,236,243,247,248,250,254,256,257,261,262,266,267,302,305,311,313,319,321,322,323,327,328,331,333,336,338,339,341,343,349,353,354,355,359,384],actual_return:8,adapt:[53,66,79,80,92,112,128,359],add:[0,2,3,5,7,8,9,10,11,12,13,14,15,16,17,20,22,23,25,26,27,29,30,31,32,33,34,37,39,40,42,43,44,45,46,48,50,51,53,54,55,58,59,61,62,64,65,66,67,68,70,71,72,73,74,76,77,80,83,84,85,86,87,89,90,91,92,93,94,95,96,97,98,99,101,103,104,105,106,107,108,110,112,113,114,117,122,123,124,125,127,128,129,130,131,132,135,137,138,139,142,143,144,151,154,158,162,163,169,174,175,176,178,184,185,192,193,194,195,196,198,199,200,205,206,208,209,210,211,212,213,214,215,216,218,219,222,225,226,228,229,230,232,233,234,235,236,238,239,242,243,246,247,248,249,256,257,261,262,265,267,271,272,273,275,276,282,287,288,292,295,296,298,300,304,311,313,314,316,324,331,334,337,341,342,343,344,345,349,351,352,354,355,363,368,384,386],add_:345,add_act:113,add_argu:249,add_callback:[206,208],add_channel:184,add_charact:113,add_choic:193,add_choice_:193,add_choice_edit:[68,193],add_choice_quit:[68,193],add_collumn:164,add_column:[90,345],add_condit:234,add_default:[20,80,96,125,163,239],add_dist:236,add_ev:208,add_fieldset:[155,259],add_form:[155,259],add_head:345,add_languag:218,add_row:[90,95,164,345],add_view:[155,183,259],add_xp:112,addblindedcmdset:243,addcallback:[22,262],addclass:[46,361,378,380],addcom:[90,98,174],added:[2,3,7,9,11,17,19,20,22,23,31,37,42,43,53,58,59,60,62,66,68,72,74,76,79,80,81,86,89,90,92,97,98,101,103,104,105,106,107,112,113,114,122,125,127,128,130,134,137,141,144,149,154,160,162,163,164,178,179,192,193,195,196,198,202,205,208,211,219,229,232,233,234,235,236,239,250,257,262,267,273,287,321,331,334,337,343,345,351,352,359,368,372,385],addendum:73,adding:[2,6,7,9,11,15,17,19,20,25,27,31,37,39,42,43,44,45,46,53,55,58,60,62,66,67,68,70,74,80,83,89,90,91,92,93,94,96,97,101,105,106,107,113,114,115,125,126,128,162,163,167,169,176,193,197,201,203,205,208,212,218,219,229,230,232,233,234,235,243,248,249,265,266,267,273,282,313,330,331,339,345,359],addingservermxp:297,addit:[2,20,26,39,55,59,62,68,70,71,73,79,81,90,91,92,95,97,129,132,142,145,154,156,163,164,185,193,196,205,206,208,210,213,218,222,228,230,236,249,257,262,275,293,321,331,333,379],addition:[72,81,236],additionalcmdset:20,addpart:216,addquot:359,addr:[279,292,293,294,339],address:[11,22,33,40,49,53,64,67,71,97,115,133,138,142,145,154,167,185,199,202,262,279,292,294,302,322,325,359,360],address_and_port:302,addressing_styl:190,addresult:216,addscript:169,addservic:53,adjac:[213,236,246],adject:6,adjoin:219,adjust:[22,66,73,126,128,136,190,203,343,345],admin:[12,13,16,22,23,29,31,49,51,58,67,71,80,86,90,92,96,103,104,110,114,125,128,129,140,143,149,151,152,153,158,159,165,169,174,176,179,181,182,185,199,246,251,254,257,258,261,262,268,277,291,292,329,333,339,355,384],admin_sit:[155,183,252,259,269,278,330],admin_wrapp:384,administr:[2,22,29,31,48,63,74,76,77,86,90,133,136,145,279,291,292],adminportal2serv:291,adminserver2port:291,adminstr:279,admintest:382,admit:85,admittedli:109,adopt:[0,68,77,80,89,187,306],advanc:[5,14,20,22,27,39,40,42,45,48,49,53,58,60,68,72,76,77,82,85,87,90,93,101,106,114,117,131,169,177,200,213,217,219,232,233,234,235,236,242,297,337,341,342,345,386],advantag:[2,15,16,27,29,39,42,70,76,82,85,88,90,91,92,112,113,114,115,123,128,142,145,192,193,222,230,232,233,234,235,236,334,337],advent:194,adventur:[72,86,103,109],advic:131,advis:[66,68,81],aesthet:26,affair:338,affect:[8,9,11,13,14,15,20,22,31,40,43,51,62,81,91,94,106,110,112,113,126,148,151,152,154,162,179,196,211,218,225,234,255,262,266,333,337,345,353],afford:[40,96],afraid:142,after:[2,8,9,10,11,13,15,16,19,20,22,26,27,29,31,37,41,46,48,55,56,58,62,66,67,68,70,71,74,76,80,81,82,83,84,85,86,87,90,96,97,98,99,103,104,105,106,107,109,113,114,116,122,125,126,128,131,132,136,142,144,145,154,162,163,164,165,166,169,177,179,180,184,185,190,192,193,195,197,198,199,200,201,203,208,210,216,218,219,228,229,230,232,233,234,235,236,243,244,246,247,248,249,250,261,262,265,267,272,274,282,304,305,308,320,321,322,323,325,327,331,336,337,338,341,343,344,349,351,354,357,358,359,364,366,384],after_mov:262,afternoon:200,afterward:[11,58,83,92,97,104,108,109,193],again:[3,5,7,9,11,14,15,22,27,31,37,40,49,55,58,62,66,68,71,72,77,80,82,83,85,86,88,89,90,91,92,94,96,97,98,99,102,104,105,106,107,110,112,113,114,117,125,126,128,133,134,135,136,142,143,144,148,149,156,163,174,197,208,217,232,235,236,242,243,250,274,282,299,302,305,325,336,337,340,355,357],against:[8,13,20,22,45,56,73,80,89,90,101,109,113,142,145,154,161,162,184,219,232,233,234,235,236,257,262,266,267,300,325,331,333,351,356,359],age:[201,249,379],agenc:145,agent:2,agenta:62,ages:201,aggreg:131,aggress:[13,15,109,141,246,333,386],aggressive_pac:246,agi:[8,13,229],agil:13,agnost:[73,77,185],ago:[81,104,144,359],agre:[61,112,192],agree:192,ahead:[2,15,60,68,71,105,110,125,134,142,304],aid:[61,117,176,177,178,192,327],aim:[1,58,60,76,90,93,96,106,110,112,126,142,186,266],ain:70,ainnev:[101,112,229],air:[72,80,99,107],airport:108,ajax:[46,53,76,134,142,311,322],ajaxwebcli:311,ajaxwebclientsess:311,aka:[5,13,67,216,359],akin:104,alarm:[95,99],alert:[46,210,262],alexandrian:131,algebra:71,algorith:218,algorithm:359,alia:[8,11,12,20,22,33,34,40,43,45,63,67,68,72,80,86,87,89,90,98,99,106,108,136,142,155,158,161,164,166,169,174,175,176,177,178,180,183,184,200,205,219,225,229,244,246,248,250,252,256,259,261,262,265,267,269,271,276,287,313,330,332,333,334,339,355,356,357,363,365,366,368,379,384],alias1:[169,200],alias2:[169,200],alias3:200,alias:[11,12,14,19,20,22,23,27,30,33,34,42,63,65,68,72,80,81,83,86,87,90,94,95,96,98,99,113,114,154,162,164,166,167,168,169,174,175,176,177,178,179,180,181,184,185,186,192,193,194,195,198,199,200,201,202,206,212,213,214,215,216,219,225,226,227,230,232,233,234,235,236,239,246,247,248,249,250,253,254,261,262,267,332,333,334,339,341,343,344,352,356,363,365],aliaschan:174,aliasdb:154,aliasfilt:363,aliashandl:[330,334,365],aliasnam:267,aliasstr:339,align:[42,62,86,90,203,336,344,345,351,359],alik:29,alist:6,aliv:[76,246],alkarouri:358,all:[0,2,5,6,7,8,9,11,12,13,14,15,16,17,19,20,22,23,25,26,27,29,30,31,33,34,37,39,40,41,42,43,44,45,46,48,49,50,51,53,55,56,58,59,60,61,62,63,64,65,66,67,68,70,71,72,73,74,75,76,77,78,80,82,83,84,85,86,87,88,89,90,91,94,95,96,97,98,99,100,101,102,103,105,106,107,108,109,110,112,113,114,115,116,117,119,120,122,123,125,126,127,128,129,130,131,132,133,135,136,140,141,142,143,144,145,148,149,154,155,156,159,160,161,162,163,164,165,166,167,168,169,170,171,174,175,176,177,178,179,180,181,184,185,186,187,192,193,194,195,198,199,200,201,202,205,208,210,212,214,215,216,217,218,219,223,225,226,227,228,229,230,232,233,234,235,236,239,241,242,243,246,247,248,249,250,252,253,254,255,256,257,258,259,261,262,266,267,272,273,274,276,277,281,282,286,287,288,291,293,294,296,298,299,300,301,302,305,306,309,310,311,313,314,320,321,322,323,325,327,328,329,330,331,332,333,334,336,337,338,339,340,341,342,343,344,345,349,351,352,354,356,358,359,360,368,372,379,384,385],all_alias:43,all_attr:333,all_book:108,all_cannon:101,all_connected_account:323,all_displai:276,all_famili:101,all_fantasy_book:108,all_flow:108,all_from_modul:359,all_opt:354,all_receiv:262,all_room:[14,101],all_ros:108,all_script:37,all_sessions_portal_sync:323,all_to_categori:253,all_weapon:101,allcom:[98,174],allerror:[282,291],allevi:[8,13,60,327],allheadersreceiv:327,alli:236,alloc:142,allow:[0,2,3,6,7,11,12,13,14,15,16,19,20,22,23,27,29,30,31,33,34,36,37,39,42,43,45,46,48,49,50,51,55,58,60,61,62,63,64,66,67,68,70,71,72,74,75,76,77,79,80,83,84,85,86,87,89,90,93,94,96,97,99,101,103,104,105,106,107,108,110,112,113,114,115,125,126,128,129,130,132,133,135,136,137,139,140,141,142,143,144,145,154,156,158,160,162,163,164,166,167,168,169,174,177,178,179,180,185,186,187,192,193,195,197,198,200,201,202,208,210,213,215,217,218,219,228,229,230,232,233,234,235,236,246,247,248,249,250,254,256,257,262,265,266,267,272,274,275,276,282,286,287,289,293,295,296,297,298,305,306,307,309,314,320,321,323,325,326,331,333,334,336,337,339,341,343,344,345,346,349,353,354,355,357,359,363,364,379,384],allow_dupl:162,allow_extra_properti:229,allow_nan:311,allow_quit:343,allowed_attr:90,allowed_fieldnam:90,allowed_host:142,allowed_propnam:114,allowedmethod:311,allowext:327,almost:[22,44,45,51,86,106,107,193,195,284,291,329],alon:[8,14,27,31,33,58,71,83,88,90,106,112,113,276,287,313,337,339,345],alone_suffix:318,along:[5,22,27,30,39,41,49,59,62,77,78,97,101,102,106,109,125,130,154,166,192,198,218,222,229,230,235,257,262,311,329,368],alongsid:[74,201],alonw:271,alpha:[135,142,336],alphabet:[16,61,72,336,385],alreadi:[7,8,9,11,12,13,14,16,19,20,22,23,26,27,29,31,34,37,40,43,45,46,53,59,64,66,67,68,70,71,74,77,80,81,83,86,88,89,90,92,94,95,96,97,98,99,100,103,104,105,106,107,108,110,112,113,114,116,117,122,123,124,125,128,129,135,136,140,144,145,149,162,163,166,169,174,177,178,179,184,185,186,192,194,195,217,218,219,229,232,233,234,235,236,243,246,247,250,257,262,267,274,282,291,299,300,302,307,310,315,320,321,323,334,336,339,344,359,364,371],alredi:53,alright:192,also:[0,1,2,3,5,6,7,8,9,10,11,12,13,14,15,16,17,19,20,21,22,23,25,26,27,29,30,31,32,33,34,37,39,40,41,42,43,44,45,46,48,49,50,51,53,54,56,58,59,60,61,62,63,64,65,66,67,68,70,71,72,73,74,75,76,77,78,80,81,82,83,84,85,86,87,88,89,90,91,92,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,112,113,114,115,116,117,118,120,121,122,123,125,126,127,128,129,131,132,133,134,135,136,137,140,141,142,143,144,145,148,149,154,158,161,162,163,164,166,167,168,169,171,175,177,179,180,184,185,186,187,192,193,194,195,198,200,201,203,208,212,213,215,217,218,219,226,229,230,234,235,236,242,246,247,248,250,255,256,257,261,262,265,266,267,268,271,274,275,276,277,282,286,287,291,293,300,302,305,306,309,310,313,314,323,327,329,331,332,333,334,335,336,337,338,339,340,341,342,343,344,345,346,349,351,356,359,361,363,384],alt:336,alter:[46,66,72,77,79,86,133,331],altern:[11,22,23,27,29,33,43,46,55,62,65,72,74,76,77,83,89,94,98,117,123,128,133,136,140,142,147,177,178,185,216,219,236,239,256,257,300,339,351,359],although:[3,68,83,85,107,136,166,193,194,198,327,355,359],althougn:70,altogeth:[26,62,145],alwai:[4,8,9,11,12,13,14,15,19,20,22,23,27,30,31,34,37,40,41,42,43,44,45,46,49,58,59,62,64,66,71,73,74,77,79,80,81,84,85,89,90,91,92,96,97,98,99,104,105,106,107,108,110,112,114,117,125,126,129,132,133,136,140,142,154,162,163,164,166,168,169,174,177,180,185,186,187,212,218,219,225,229,239,243,256,257,261,262,265,266,267,274,276,282,284,287,291,299,302,305,306,310,311,314,321,323,328,331,332,333,334,336,339,344,349,351,355,356,359,360,364,384],always_pag:344,always_return:282,amaz:141,amazon:[131,142,190],ambianc:60,ambigu:[86,164,184,202,262,333],ambiti:[60,63],amend:11,amfl:15,ammo:80,among:[2,8,12,25,34,39,72,77,91,108,114,131,175,195,239,247,257,345,356],amongst:213,amor:209,amount:[13,29,37,50,62,73,110,112,114,145,179,232,233,234,235,236,262,323,341],amp:[36,40,53,56,151,277,279,282,290,292,300,308,320,323],amp_client:[151,152,277],amp_maxlen:308,amp_port:142,amp_serv:[151,277,290],ampclientfactori:279,ampersand:60,amphack:291,ampl:106,amplauncherprotocol:282,ampmulticonnectionprotocol:[279,291,292],ampprotocol:279,ampserverclientprotocol:279,ampserverfactori:292,ampserverprotocol:292,amsterdam:142,amus:98,anaconda:67,analog:[56,71],analys:27,analysi:223,analyz:[16,22,27,31,86,123,160,185,219,266,267,272,282,359],anchor:[185,236,254,333],anchor_obj:236,ancient:62,andr:134,android:[147,386],anew:[72,105,106,136,282],angl:63,angri:86,angular:179,ani:[2,3,6,8,9,11,12,13,15,16,19,20,22,23,26,27,29,30,31,32,33,34,37,39,40,41,42,43,44,45,46,48,49,50,51,53,55,56,58,59,62,63,64,65,66,68,71,73,74,77,78,80,81,84,85,86,87,88,89,90,94,95,96,97,98,99,100,101,103,104,105,106,107,108,109,110,112,113,114,116,122,123,125,126,128,129,131,132,133,134,135,136,137,140,142,143,144,145,148,154,158,160,161,162,163,164,166,167,169,175,179,180,185,186,187,192,193,194,195,199,200,201,202,203,207,212,215,217,218,219,222,223,226,229,232,233,234,235,236,238,239,241,246,248,249,250,256,257,262,265,266,267,271,272,274,275,276,279,280,282,284,286,287,291,292,294,300,301,302,305,310,311,313,321,322,323,331,332,333,334,336,337,338,340,341,342,343,344,345,351,352,353,354,355,356,358,359,367,368,384],anim:[19,28],anna:[90,114,122,123,136,140,169],annoi:[49,96,97,98,107],annot:131,announc:[9,73,81,113,114,131,167,179,210,232,233,234,235,236,262],announce_al:[300,323],announce_move_from:[34,81,210,262],announce_move_to:[34,81,210,262],annoy:154,anonym:[54,79,92,219],anonymous_add:219,anoth:[2,3,6,7,8,11,13,14,15,20,22,27,31,34,37,40,42,43,46,48,50,60,61,62,65,66,68,70,71,72,77,80,83,85,88,89,90,91,92,97,98,99,101,103,106,107,113,114,116,117,125,127,130,132,136,142,143,154,162,163,166,169,174,175,185,192,193,195,201,207,212,217,219,230,232,233,234,235,236,247,250,254,262,265,323,331,333,337,341,343,344,351,359],another_batch_fil:337,another_nod:343,another_script:37,ansi:[30,46,75,76,94,106,134,151,152,166,196,203,215,287,294,302,305,310,311,335,345,351,358,386],ansi_escap:336,ansi_map:336,ansi_map_dict:336,ansi_pars:336,ansi_r:336,ansi_regex:336,ansi_sub:336,ansi_xterm256_bright_bg_map:336,ansi_xterm256_bright_bg_map_dict:336,ansimatch:336,ansimeta:336,ansipars:336,ansistr:[151,336,345],ansitextwrapp:345,answer:[0,8,13,22,27,66,70,80,81,92,106,110,112,136,145,280,286],anul:132,anwer:87,anybodi:145,anymor:[8,79,194,208,216,217,250,343,355],anyon:[3,31,49,55,79,80,81,83,86,90,96,113,114,123,135,142],anyth:[0,3,7,8,9,11,13,14,20,22,23,27,31,33,34,37,39,45,46,50,51,53,56,64,66,68,70,71,72,77,83,86,88,92,95,96,97,98,99,103,104,106,107,108,110,113,114,116,123,125,128,133,136,142,144,148,162,164,178,193,219,229,230,232,233,234,235,236,257,294,328,331,337,343],anywai:[15,27,55,60,62,65,66,76,79,97,99,141,192,194,199],anywher:[22,27,45,77,104,106,117,129,341],apach:[133,142,145,147,327,386],apache2:132,apache_wsgi:132,apart:[8,12,13,19,23,31,39,45,76,94,126,129,136,144,236],api:[0,3,14,16,19,22,23,24,28,34,40,42,45,72,104,108,112,124,128,139,151,152,154,168,179,181,187,199,321,331,333,337,338,361,385,386],api_kei:139,api_secret:139,apicli:366,apostroph:16,app:[31,53,58,64,79,116,129,139],app_id:128,app_nam:92,appar:[90,126],apparit:248,appeal:[27,62,110],appear:[0,7,11,19,27,29,31,37,39,46,48,54,62,67,68,72,74,80,81,84,95,98,101,106,109,114,126,136,137,140,142,144,151,166,176,195,208,219,225,250,262,306,307,330,333,345,351,352],append:[5,6,8,19,20,26,29,31,34,53,59,68,71,81,85,92,96,97,101,113,114,128,142,164,169,176,195,212,219,257,315,337,351,352,359],appendix:256,appendto:46,appform:128,appl:[192,262],appli:[2,7,9,14,20,22,31,37,44,45,50,66,67,68,72,73,94,105,125,126,128,132,133,154,160,162,177,196,229,232,233,234,235,236,250,257,262,266,267,271,276,323,331,332,333,336,337,342,345,346,356,359],applic:[9,31,43,53,58,64,102,116,128,129,131,132,136,144,145,154,190,200,201,236,282,285,295,299,306,320,321,327,376,384],applicationdatareceiv:305,applied_d:128,apply_damag:[232,233,234,235,236],apply_turn_condit:234,appnam:[13,31],appreci:[68,73,78,130,349],approach:[7,44,68,81,85,88,97,128,193,236],appropri:[2,7,20,22,63,67,76,97,125,128,132,133,139,154,167,185,203,282,321,353,355,359],approrpri:53,approv:[128,129],approxim:[179,359],april:91,apt:[11,132,136,138,141,142,145],arbitr:110,arbitrari:[6,13,14,19,31,45,46,51,65,70,72,77,104,144,154,185,200,229,230,236,241,262,267,274,280,291,311,331,340,351,352,355],arcan:63,arch:52,archer:267,architectur:[31,267],archiv:[103,131,145],archwizard:267,area:[8,12,68,71,90,109,110,122,131,134,246,250,256,342,345,359],aren:[8,11,66,79,83,85,92,116,128,145,154,195,201,208,216,234,352,355],arg1:[31,164,177,178,180,265,331,351],arg2:[164,177,178,180,265,331,351],arg:[3,22,27,29,30,31,42,44,46,48,53,56,59,62,63,68,74,80,81,83,84,85,86,90,94,96,98,103,105,112,113,114,125,127,139,154,155,156,157,158,160,161,164,169,177,178,180,185,186,187,190,192,195,197,200,202,205,208,210,216,217,218,219,225,226,227,230,232,233,234,235,236,238,241,242,243,246,247,248,249,250,253,254,256,257,260,261,262,265,266,267,270,271,274,275,276,279,287,288,289,291,292,293,294,299,300,302,303,305,306,307,310,311,315,321,323,327,330,331,332,333,334,336,343,345,346,348,349,351,352,355,357,359,360,365,379,384],arg_regex:[86,87,164,169,175,176,180,181,184,195,214,341],arglist:[177,178],argpars:249,argu:13,arguabl:106,argument:[3,5,8,15,19,20,22,23,26,28,30,31,33,34,37,42,44,45,48,49,53,56,59,62,63,68,70,72,79,80,81,83,86,89,90,91,92,94,96,98,99,100,101,107,114,115,129,133,138,154,156,160,161,163,164,166,167,169,174,175,176,177,178,179,180,185,186,190,193,195,197,200,201,202,205,207,208,210,213,217,218,219,223,225,232,233,234,235,236,241,248,249,257,262,265,266,267,272,274,275,276,280,282,287,291,292,293,294,300,301,302,305,306,310,311,313,314,321,322,323,325,326,331,332,333,336,337,339,341,342,343,344,345,349,351,353,355,356,359,368,384],argumentpars:249,argumnet:345,aribtrarili:359,aris:145,arithmet:229,arm:[0,22,216],armi:96,armor:[83,95,195,233],armour:83,armpuzzl:216,armscii:[16,61],arnold:33,around:[3,14,15,16,20,23,31,34,42,48,61,62,63,66,71,72,74,76,77,78,79,80,83,85,90,92,96,97,98,101,103,104,105,106,107,108,110,112,113,114,116,122,125,131,133,136,139,142,169,177,178,195,197,207,216,219,236,239,246,247,248,250,262,336,337,345,352],arrai:[59,97,306,359],arrang:68,array_of_known_message_types_to_assign:46,array_of_split_percentag:46,arrayclos:[59,306],arrayopen:[59,306],arriv:[40,56,66,81,83,112,169,294],arrow:[3,46,106],art:[62,342],articl:[8,11,16,61,79,80,85,86,89,110,131,350],article_set:350,artifact:345,artifici:112,arx:[131,147],arxcod:[131,147,386],as_view:[185,254,333],ascii:[16,61,67,72,154,213,342,345,359],asciiusernamevalid:154,asdf:169,ashlei:[195,201,203,230,232,233,234,235,236],asid:[67,243],ask:[0,3,5,6,11,23,26,29,32,48,70,73,78,80,90,92,97,99,104,105,112,128,133,135,136,142,162,164,169,192,197,206,214,217,249,280,282,309,343,346,359],ask_choic:280,ask_continu:280,ask_input:280,ask_nod:280,ask_yesno:280,asn:222,aspect:[8,27,29,42,58,77,89,103,106,112,203],assert:[8,113],assertequ:8,asserttru:8,asset:[116,145,190,286],assetown:67,assign:[2,6,11,12,13,14,27,31,33,34,37,42,43,44,46,49,88,90,99,103,104,105,106,108,113,114,125,154,160,161,163,169,176,177,178,180,196,200,201,219,229,232,233,234,235,236,248,257,261,262,266,267,287,294,300,302,305,321,340],assist:142,associ:[13,27,40,56,64,69,79,83,98,104,108,131,142,154,159,169,185,205,208,219,262,321,323,332,384],assort:384,assum:[6,7,9,14,15,16,19,20,22,23,27,29,30,31,32,34,37,40,42,44,49,51,53,60,61,66,67,68,70,71,72,73,76,80,81,82,83,85,86,87,88,90,91,94,95,96,99,101,103,108,112,113,114,115,122,123,124,125,127,128,129,141,142,144,145,149,160,163,164,166,169,180,185,193,194,219,226,229,247,248,256,262,267,272,274,306,323,336,337,343,344,359,364,371,384],assumpt:161,assur:[45,71],asterisk:[12,49,74,105,167],astronom:91,async:[128,359,386],asynccommand:48,asynchron:[5,19,22,36,52,76,77,82,83,156,262,291,292,306,352,359],at_:[45,349],at_access:[154,262],at_account_cr:[12,154],at_after_mov:[34,122,210,262],at_after_object_leav:250,at_after_travers:[34,210,247,262],at_befor:262,at_before_drop:[233,236,262],at_before_g:[233,236,262],at_before_get:[236,262],at_before_leav:34,at_before_mov:[34,81,210,232,233,234,235,236,262],at_before_sai:[210,219,262],at_channel_cr:185,at_char_ent:122,at_cmdset_cr:[20,22,68,80,81,84,86,87,89,90,91,94,96,98,105,113,114,125,162,170,171,172,173,192,193,194,195,198,200,212,214,215,216,219,227,232,233,234,235,236,239,246,247,248,341,343,344],at_cmdset_get:[154,262,321],at_db_location_postsav:261,at_defeat:[232,233,234,235,236],at_desc:262,at_disconnect:[154,321],at_drop:[210,233,236,262],at_end:271,at_err:[48,359],at_err_funct:48,at_err_kwarg:[48,359],at_failed_login:154,at_failed_travers:[34,210,225,247,262],at_first_login:154,at_first_sav:[154,185,262],at_first_start:333,at_get:[195,210,236,262],at_giv:[233,236,262],at_heard_sai:123,at_hit:246,at_idmapper_flush:[274,333,349],at_init:[41,45,154,185,246,247,248,262],at_initial_setup:[39,103,286],at_initial_setup_hook_modul:286,at_login:[45,53,293,294,302,305,310,311,321],at_look:[154,262],at_message_rec:154,at_message_send:154,at_msg_rec:[154,202,262],at_msg_send:[154,156,202,241,262],at_new_arriv:246,at_now_add:58,at_object_cr:[20,31,34,45,80,81,85,90,94,96,112,114,125,127,169,200,202,219,225,227,232,233,234,235,236,242,246,247,248,262,333],at_object_delet:[210,262],at_object_leav:[248,250,262],at_object_post_copi:262,at_object_rec:[34,122,248,250,262],at_password_chang:154,at_post_cmd:[22,84,160,164,177,180],at_post_command:22,at_post_disconnect:154,at_post_login:[81,154],at_post_portal_sync:320,at_post_puppet:[210,262],at_post_unpuppet:262,at_pre_cmd:[22,160,164,177,180],at_pre_command:22,at_pre_login:154,at_pre_puppet:262,at_pre_unpuppet:[210,262],at_prepare_room:250,at_reload:[179,320],at_renam:333,at_repeat:[37,45,113,124,125,156,192,197,208,232,233,234,235,236,238,243,274,315,346],at_return:[48,359],at_return_funct:48,at_return_kwarg:[48,359],at_sai:[123,210,262],at_script_cr:[37,113,124,125,156,192,197,208,217,218,232,233,234,235,236,238,243,250,266,274,315,346],at_search:103,at_search_result:[178,359],at_server_cold_start:320,at_server_cold_stop:320,at_server_connect:300,at_server_reload:[37,149,154,156,262,274],at_server_reload_start:320,at_server_reload_stop:[81,320],at_server_shutdown:[37,149,154,156,262,274],at_server_start:320,at_server_startstop:[39,81,103],at_server_stop:320,at_shutdown:320,at_start:[37,113,156,208,243,250,271,274],at_startstop_modul:276,at_stop:[37,113,125,232,233,234,235,236,243,274],at_sunris:91,at_sync:[321,322],at_tick:[44,276],at_travers:[34,210,226,250,262],at_traverse_coordin:250,at_turn_start:234,at_upd:[234,272],at_weather_upd:127,atlanti:134,atom:[117,143],atop:250,atribut:340,att:27,attach:[13,34,37,40,43,65,77,79,80,86,88,90,98,105,106,108,149,164,169,174,177,191,202,212,230,250,257,262,273,319,330,334],attachmentsconfig:79,attack:[15,27,70,82,83,84,93,105,109,112,113,129,142,145,163,219,230,232,233,234,235,236,246,247,262,267,300],attack_count:235,attack_nam:235,attack_skil:267,attack_typ:236,attack_valu:[232,233,234,235,236],attempt:[7,12,20,27,33,64,66,68,83,97,110,124,134,145,166,169,200,223,225,232,233,234,235,236,279,282,287,320,325,333,359,384],attent:[34,72,74,88,90,145],attitud:89,attr1:[169,216],attr2:[169,216],attr3:169,attr:[13,27,31,42,46,68,71,90,101,169,176,193,248,256,266,267,321,331,333,349,355],attr_categori:330,attr_eq:256,attr_g:[31,256],attr_gt:[31,256],attr_kei:330,attr_l:[31,256],attr_lockstr:330,attr_lt:[31,256],attr_n:[31,256],attr_nam:169,attr_obj:[331,333],attr_object:333,attr_typ:330,attr_valu:330,attract:73,attrcreat:[31,331],attread:13,attredit:[13,31,331],attrib:257,attribiut:331,attribut:[3,8,12,19,24,26,27,30,31,32,33,34,37,40,42,43,44,45,49,58,60,66,68,70,71,81,82,84,85,86,88,89,90,92,94,95,96,97,99,101,106,110,112,113,114,128,129,151,152,154,155,158,163,169,178,179,183,185,190,193,194,200,207,208,215,216,219,226,229,232,233,234,235,236,242,246,247,248,256,259,261,262,265,266,267,269,271,272,287,321,329,330,332,333,334,339,340,341,352,353,356,359,365,367,368,379,384,386],attribute1:114,attribute2:114,attribute_list:331,attribute_nam:[154,219,262,356],attributeerror:[3,58,104,321,331],attributeform:330,attributeformset:330,attributehandl:[45,331,354,359,365],attributeinlin:[155,183,259,269,330],attributeobject:13,attributeseri:365,attrkei:267,attrlist:331,attrnam:[13,27,31,42,45,169,229,256,333],attrread:[13,31,331],attrtyp:[13,331,332],attrvalu:27,attryp:332,atttribut:71,atyp:257,audibl:218,audio:46,audit:[151,185,188,220,262],audit_callback:222,auditedserversess:[222,223],auditingtest:224,aug:67,august:[67,359],aut:28,auth:[154,155,158,302,371,379,384],auth_password:302,auth_profile_modul:158,authent:[40,41,53,128,145,154,293,300,302,305,311,321,323,371,384],authenticated_respons:382,author:[86,126,142,154,205,208],auto:[3,4,11,15,20,21,22,23,27,34,40,49,66,74,80,102,109,128,136,139,151,154,158,160,164,168,169,176,179,180,218,219,229,243,251,254,257,262,267,271,274,276,279,282,293,303,310,311,320,323,333,338,344,345,371],auto_create_bucket:190,auto_help:[22,27,29,86,87,92,164,180,201,264,343,344],auto_id:[155,252,259,379],auto_look:[27,201,264,343],auto_now_add:58,auto_quit:[27,201,264,343],auto_transl:218,autobahn:[293,299,310],autodoc:74,autofield:128,autologin:371,autom:[2,15,58,89,90,131,144,145,149,384],automat:[6,9,11,15,19,20,23,26,27,29,31,32,37,39,40,42,45,46,48,51,54,58,64,65,66,68,70,72,73,74,76,77,84,86,90,91,94,96,98,101,103,104,105,106,107,108,113,114,116,122,123,125,126,133,137,139,140,142,144,154,162,163,164,169,174,175,177,184,190,192,193,194,195,207,208,209,213,214,216,217,218,219,227,236,242,243,249,257,261,262,273,274,275,276,287,296,299,302,307,320,323,337,341,343,344,345,359,367,368,372],automatical:276,autostart:[273,339],autumn:[6,200],avail:[0,2,3,7,8,9,11,13,14,20,22,24,27,30,31,34,37,39,40,42,45,46,48,50,53,55,59,60,61,62,66,68,70,71,72,74,75,77,80,81,85,86,87,89,90,91,94,95,96,97,98,99,100,103,104,105,106,107,108,109,113,114,125,128,129,130,131,132,133,134,136,137,140,141,142,143,144,149,151,154,160,161,162,163,164,166,169,171,174,175,176,177,178,179,180,181,192,193,194,198,200,202,208,212,215,217,218,219,227,229,230,232,233,234,235,236,239,247,248,256,257,262,265,266,267,271,287,311,314,325,336,337,338,343,344,345,351,359,384],avail_cmdset:169,available_choic:[27,343],available_func:351,available_funct:266,available_languag:218,available_weapon:247,avatar:[59,77,103,104,106,262,302],avatarid:302,avenew:86,avenu:195,averag:[5,14,142,179,208,218,249],avoid:[0,3,6,8,11,13,19,20,22,27,31,42,45,53,62,63,72,73,74,94,96,104,106,107,126,132,133,144,169,217,218,249,250,256,261,287,291,301,311,321,331,333,336,337,338,341,344,349,365],awai:[0,3,11,13,15,16,27,29,31,37,40,42,48,54,58,66,67,70,71,72,76,80,83,92,104,107,109,112,114,125,142,175,195,230,233,236,239,242,246,248,250,262,271,322,336,359],await:48,awar:[0,13,15,20,22,27,45,59,87,117,126,127,128,149,190,202,217,219,246,249,250,262,333,336],awesom:[64,106,136],awesome_func:107,aws:142,aws_access_key_id:190,aws_s3_access_key_id:190,aws_s3_cdn:[151,188,189],aws_s3_object_paramet:190,aws_s3_secret_access_kei:190,aws_secret_access_kei:190,aws_security_token:190,aws_session_token:190,awsstorag:[151,152,188],axhear:256,axi:213,azur:144,b64decod:355,b64encod:355,b_offer:192,baaaad:8,back:[0,2,6,7,11,13,14,15,19,20,22,23,26,27,30,33,37,40,45,46,48,49,56,58,61,64,66,68,70,71,72,74,77,80,83,88,90,92,94,96,97,99,101,103,104,105,106,107,108,109,110,112,113,114,115,117,118,123,125,126,128,133,136,142,144,149,151,154,163,166,169,174,178,192,193,219,225,229,230,235,239,241,264,274,282,287,291,294,300,302,305,320,333,340,343,344,352,359],back_exit:66,backbon:[128,337],backend:[2,8,42,64,133,151,190,331,359,361,363,368,370],backend_class:331,background:[17,27,48,62,83,106,126,128,142,145,149,196,203,336,351,384],backpack:20,backslash:62,backtick:[11,74],backtrack:11,backup:[11,34,40,48,103,142,178,337],backward:[26,27,90,125,352],bad:[8,55,66,68,73,77,86,90,96,106,108,134,223,284],bad_back:257,baddi:109,badg:10,badli:229,bag:[98,359],balanc:[83,88,110,113,131,345],ball:[20,39,161,162,267],ballon:216,balloon:216,ban:[31,52,81,98,154,167,257,386],band:[46,59,302,305,306],bandit:70,bandwidth:[190,295],banid:167,bank:110,bar:[27,32,43,46,56,59,64,95,98,103,108,203,219,230,306,343,359],bare:[22,39,76,90,105,112,203,233],barehandattack:88,bargain:58,barkeep:[3,219],barrel:109,barter:[37,110,122,136,151,152,188],bartl:131,base:[2,3,8,14,17,22,23,27,31,34,37,40,44,45,46,50,56,58,60,61,63,67,68,71,72,74,75,76,77,79,80,84,85,86,88,89,90,92,93,96,99,101,103,104,107,108,109,110,112,114,115,116,117,124,126,128,129,131,133,136,140,141,142,144,145,147,151,154,155,156,157,158,160,162,163,164,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,183,184,185,186,187,190,191,192,193,194,195,197,198,199,200,201,202,205,206,208,209,210,211,212,213,214,215,216,217,218,219,223,224,225,226,227,228,229,230,232,233,234,235,236,238,239,241,242,243,244,246,247,248,249,250,252,253,254,257,259,260,261,262,264,266,267,269,270,271,272,273,274,275,276,278,279,280,282,284,285,288,289,291,292,293,294,295,296,297,298,299,300,301,302,303,304,305,306,307,308,309,310,311,313,314,315,318,320,321,322,323,325,326,327,330,331,332,333,334,336,337,338,341,342,343,344,345,346,348,349,350,351,352,353,354,355,356,357,358,359,363,364,365,366,367,368,371,373,374,379,382,384,385,386],base_account_typeclass:[12,151],base_channel_typeclass:151,base_char_typeclass:124,base_character_typeclass:[94,124,128,129,151,169],base_exit_typeclass:151,base_field:[155,252,259,330,379],base_filt:363,base_guest_typeclass:[54,151],base_object_typeclass:[42,100,104,151,267,333],base_random:265,base_room_typeclass:151,base_script_path:256,base_script_typeclass:[37,151],base_set:67,baseclass:247,basecommand:98,basecontain:338,baseinlineformset:330,baseline_index:359,basenam:368,baseobject:45,baseopt:353,basepath:359,basepermiss:364,basetyp:[262,337],basetype_posthook_setup:262,basetype_setup:[31,85,154,156,185,262],basetypeclassfilterset:363,bash:[2,136],basi:[22,73,79,91,103,116,142,177,187,190,219,256,311,333,342],basic:[0,2,9,12,16,17,20,22,23,31,33,46,50,51,53,56,58,61,64,66,67,68,70,72,83,85,88,89,90,91,92,93,94,98,99,103,104,105,106,107,109,110,112,113,115,117,122,123,125,126,128,129,131,149,154,156,169,174,176,185,187,201,207,213,216,233,235,247,256,258,262,313,357,361,368,379,384,386],bat:[67,136],batch:[24,72,103,131,136,151,152,168,267,291,331,334,335,386],batch_add:[267,331,334],batch_cmd:15,batch_cod:[14,337],batch_code_insert:14,batch_create_object:267,batch_exampl:337,batch_import_path:[14,15],batch_insert_fil:15,batch_update_objects_with_prototyp:267,batchcmd:168,batchcmdfil:[15,337],batchcod:[15,72,98,120,131,168],batchcode_map:72,batchcode_world:72,batchcodefil:14,batchcodeprocessor:337,batchcommand:[15,68,98,109,120,136,168,337],batchcommandprocessor:337,batchfil:[15,16,72,337],batchprocess:[151,159,165],batchprocessor:[14,151,152,168,335],batchscript:[14,337],batteri:154,battl:[109,113,131,145,232,233,234,235,236],battlecmdset:[232,233,234,235,236],baz:230,bazaar:60,beach:72,bear:[217,246],beat:[110,113],beaten:[113,248],beauti:[68,71,128],beazlei:131,becam:[83,126],becasu:4,becaus:[2,3,12,13,14,16,20,29,31,34,41,42,44,45,48,49,50,53,55,60,66,67,68,70,72,74,77,80,81,83,86,87,88,97,98,101,104,105,106,107,112,113,116,122,126,128,129,132,135,155,163,181,185,199,207,210,218,235,239,250,262,274,294,300,313,323,330,336,353,355,368],becom:[3,9,27,31,33,37,39,42,48,58,59,66,68,71,72,73,74,77,78,86,88,94,98,102,103,104,105,106,110,112,130,166,202,216,218,230,233,267,321,337,343],bed:110,been:[2,3,5,9,11,14,15,27,40,46,51,55,64,66,68,70,71,74,79,80,86,90,92,96,97,101,106,108,113,114,122,126,128,129,131,133,145,150,162,163,168,169,177,178,185,193,208,210,213,216,217,219,232,233,234,235,236,248,250,254,257,261,262,267,276,284,296,300,302,310,320,321,322,323,325,330,331,333,337,341,342,359,384,385],befit:45,befor:[1,3,5,6,7,8,10,11,13,14,15,16,19,20,22,27,31,32,37,39,41,42,43,44,45,46,48,49,57,58,60,61,62,64,68,70,71,72,73,74,79,80,81,82,83,86,88,89,90,92,94,96,97,98,99,101,104,105,106,107,110,113,114,117,122,123,125,126,127,128,129,131,139,141,142,144,145,154,160,161,164,169,174,177,181,185,191,197,199,200,201,202,203,207,210,211,214,218,219,222,223,228,229,230,232,233,234,235,236,242,243,247,250,256,257,261,262,265,267,274,275,276,282,291,300,302,308,316,318,320,321,325,327,331,336,337,338,339,343,344,345,346,350,352,355,359,384],beforehand:[11,13,338],beg:15,beggar:66,begin:[0,3,7,8,14,15,22,26,31,41,48,66,68,70,72,74,76,79,81,86,90,92,97,99,101,106,110,113,122,127,129,140,175,207,210,219,230,232,233,234,235,236,262,274,336,337,356],beginn:[76,93,97,104,117,131],behav:[8,13,14,41,68,83,92,97,99,105,106,107,149,266,359],behavior:[5,13,20,22,26,29,37,42,46,62,64,66,86,92,103,126,154,164,180,195,201,234,236,248,249,282,330],behaviour:[13,20,22,31,126,213,328,339,345,359],behind:[6,11,13,22,30,42,43,49,62,71,74,76,80,107,109,110,126,136,168,217,248,271,276,349],being:[2,3,5,8,11,13,14,20,22,23,27,37,41,42,44,45,48,56,59,63,66,68,72,73,77,80,81,82,88,92,97,100,102,103,104,106,109,110,123,126,128,135,136,142,145,154,161,169,175,179,185,190,197,198,202,212,218,219,229,232,233,234,235,236,241,242,243,248,254,262,284,287,294,323,325,330,331,333,336,337,339,343,344,345,359,363,365],beipmu:134,belong:[15,43,56,65,77,79,101,106,128,145,163,219,230,250,254,265],below:[2,3,7,8,11,13,14,15,16,19,20,22,23,26,27,30,31,33,37,40,42,45,48,49,51,59,62,65,66,67,68,71,72,74,77,81,83,85,89,90,91,92,94,105,106,107,110,112,114,116,122,123,128,129,132,133,136,142,144,149,158,169,177,178,187,193,195,198,203,210,213,218,219,229,230,232,233,234,235,236,244,249,254,256,261,262,271,294,314,331,333,334,345,350,351,367],beneath:19,benefici:[71,234],benefit:[8,60,130,142,144,145,163,331,337],besid:[7,15,20,66,72,105,203],best:[0,26,37,39,55,60,64,67,68,73,89,90,100,103,110,128,134,140,145,176,193,218,230,249,267,282,302,345,353,385],bet:[20,40,333],beta:[25,135,142],betray:27,better:[3,5,16,23,27,29,42,43,58,60,62,66,67,76,77,78,81,86,87,90,94,96,97,103,104,110,112,128,129,133,194,226,233,239,248,262,267,299,302,305,313,331,337],bettween:112,between:[2,11,12,15,20,22,33,37,40,42,43,46,48,53,55,59,61,62,65,66,68,70,71,77,81,82,85,86,88,89,90,92,96,97,98,103,104,106,107,109,112,113,114,124,125,126,142,144,161,164,169,176,179,180,187,192,195,196,207,208,210,211,212,213,215,217,218,219,228,229,230,232,233,234,235,236,262,267,276,282,291,294,301,302,305,306,313,314,321,334,336,337,339,343,345,346,351,359,373],bew:200,bewar:85,beyond:[8,12,22,28,34,59,67,68,73,77,81,89,129,142,164,169,180,187,193,219,230,266,331,333,343,345],bg_colormap:358,bgcolor:358,bgfgstart:358,bgfgstop:358,bgstart:358,bgstop:358,bias:169,bidirect:291,big:[13,14,15,22,31,65,67,73,82,83,89,98,99,107,109,112,161,178,228,229,337,344,356,359],bigger:[46,53,73,80,92,101,114,229],biggest:[140,229,359],biggui:22,bigmech:80,bigsw:83,bikesh:101,bill:[142,145],bin:[2,67,77,79,102,136,141,144],binari:[5,133,136,293,295,310],bind:138,birth:379,bit:[0,3,7,8,11,17,25,37,42,46,49,55,66,67,68,70,79,83,85,86,91,92,94,98,101,102,103,106,107,110,117,125,129,136,141,181,199,257,262,337],bitbucket:89,bite:[72,110],bitten:101,black:[62,107,112,126],blackbird:131,blacklist:145,blade:247,blank:[27,58,122,129,154,201,336],blankmsg:201,blargh:42,blatant:49,blaufeuer:101,bleed:[11,62,103,229,345],blend:216,blender:216,blind:[62,123,239,243],blindcmdset:239,blindedst:243,blindli:257,blink:[99,242,243,358],blink_button:368,blinkbuttonev:[243,368],blist:6,blob:[70,74,86],block:[6,24,26,27,31,37,49,62,63,76,77,81,82,90,92,97,98,106,114,115,117,128,129,142,145,149,167,168,169,200,236,246,247,250,264,301,337,343,351,359,384,385],blocking_cmdset:81,blockingcmdset:81,blockingroom:81,blocktitl:92,blog:[73,76,78,117,131,142,143],blowtorch:134,blue:[14,62,89,94,105,106,126,247],blueprint:[46,72,89],blurb:135,board:[23,31,71,110,125,131],boat:[20,125,163],bob:[22,94,167],bodi:[8,17,19,22,27,42,63,68,70,74,86,90,106,115,128,185,206,212,284,339,359],bodyfunct:[37,99,151,188,237,244],bog:80,boi:43,boiler:45,bold:135,bolt:267,bone:[76,112],bonu:[86,112,142,233,234,271],bonus:[83,233],book:[42,64,71,91,97,108,112,115,131],bool:[12,20,22,23,27,30,32,37,154,155,156,158,160,161,163,164,183,185,186,187,192,193,195,197,198,201,203,205,208,210,213,217,218,219,229,230,232,233,234,235,236,242,250,253,257,259,261,262,265,266,267,269,271,272,273,274,275,276,282,287,288,293,294,299,300,301,305,310,311,319,321,323,325,331,332,333,334,336,337,339,341,343,344,345,346,349,351,354,356,358,359,364],booleanfield:[128,155,252],booleanfilt:363,boom:[80,104],boot:[31,98,104,144,149,167,276],bootstrap:[24,52,79,386],border:[72,90,95,166,201,342,344,345],border_bottom:345,border_bottom_char:345,border_char:345,border_left:345,border_left_char:345,border_right:345,border_right_char:345,border_top:345,border_top_char:345,border_width:345,borderless:90,borderstyl:201,bore:[49,76,145],borrow:[20,136,162,291],bort:28,boss:90,bot:[5,102,128,137,140,145,151,152,153,158,174,185,287,293,294,301,323,384],bot_data_in:[156,287],both:[0,2,6,7,8,9,11,13,16,19,20,22,23,30,32,33,39,40,45,51,53,58,59,66,68,71,72,73,74,81,87,88,89,90,91,92,96,97,101,103,105,106,107,113,116,125,128,129,131,133,137,139,142,145,149,160,162,169,174,179,187,192,196,203,210,212,213,214,216,225,229,230,235,236,248,257,262,266,267,268,271,274,276,291,300,310,311,320,322,325,331,332,336,339,343,345,354,359,365,368],bother:[9,83,145,184,331],botnam:[140,174,294,323],botnet:145,boto3:190,boto:190,botstart:156,bottom:[7,8,28,45,46,72,79,85,86,89,90,92,96,98,106,128,135,163,190,212,235,250,267,337,344,345],bought:96,bouncer:[19,145,342],bound:[19,60,74,89,103,104,205,229,359],boundari:[228,229,359],bounti:78,bow:267,box:[3,7,31,33,39,42,54,64,66,70,72,90,92,99,101,104,105,106,107,112,114,115,117,132,136,139,142,169,219,256,291,337,379],brace:[66,68,81,86,97,210,262,336],bracket:[63,74,179,196],branch:[2,67,73,74,86,98,136,144,217,230,385],branchnam:11,brandymail:212,bread:50,breadth:236,break_lamp:242,break_long_word:345,break_on_hyphen:345,breakdown:179,breakpoint:[7,50,151],breath:[104,107],breez:[37,127],breviti:[90,106],bribe:27,brick:95,bridg:[40,56,68,75,78,109,131,133,248],bridgecmdset:248,bridgeroom:248,brief:[11,50,51,58,70,80,81,90,96,99,102,115,117,149,201,249,262,326],briefer:[34,149],briefli:[50,104,142,149],bright:[62,94,106,126,196,336],brightbg_sub:336,brighten:62,brighter:62,brilliant:11,bring:[71,114,116,121,125,128,133,144,145,230,236,239,246,324],broad:85,broadcast:[174,291],broader:[85,219,262],broken:[60,62,74,110,218,242,243,351],brought:37,brows:[7,11,46,67,76,81,85,90,91,92,96,97,102,114,115,116,142,145,384],browser:[46,50,64,67,74,76,77,78,92,102,103,115,116,117,128,129,132,136,141,142,145,148,310,311,384],brutal:249,bsd:130,btest:62,btn:17,bucket:[190,191,222],bucket_acl:190,bucket_nam:190,buf:341,buffer:[22,26,46,68,178,190,191,284,311,341],buffer_s:190,bug:[0,3,8,11,14,48,73,78,89,106,110,114,130,135,149,243,262,333],buggi:[13,343],bui:[96,192],build:[2,7,10,13,14,15,16,19,20,24,27,29,31,33,34,40,42,43,45,46,48,58,60,61,63,65,67,69,76,77,89,92,93,94,98,100,101,103,104,105,106,109,114,116,117,118,119,121,124,131,136,141,144,151,159,161,165,167,168,175,176,185,193,200,206,213,218,219,225,246,249,257,262,266,267,282,293,294,337,345,379,385,386],build_exit:213,build_forest:213,build_map:213,build_match:161,build_mountain:213,build_templ:213,builder:[12,15,29,31,42,43,51,60,62,68,79,81,88,90,96,100,104,110,114,167,169,175,179,193,195,200,201,213,216,219,225,248,249,250,257,262,265,313,333,337,364],buildier:267,building_menu:[151,152,188],buildingmenu:[68,193],buildingmenucmdset:193,buildmap:213,buildprotocol:[279,292,293,294],buildshop:96,built:[14,19,24,27,50,53,64,74,76,77,89,90,103,106,110,112,114,125,135,136,141,144,145,158,187,216,218,254,261,271,276,331,333,334,337,341,343,350],builtin:295,bulk:145,bullet:[74,110],bulletin:[31,110,131],bulletpoint:74,bunch:[16,19,60,61,90,101,105,107],burden:95,buri:[60,109],burn:[109,110,112,142,247],busi:[77,78,142,192],butter:50,button:[7,11,14,15,20,22,31,33,46,56,59,64,67,103,105,106,128,129,169,239,242,243,247,314,368],button_expos:247,buy_ware_result:96,byngyri:218,bypass:[4,31,48,51,79,90,99,104,109,113,126,154,169,185,225,256,257,333,339,356,371],bypass_superus:31,bytecod:336,bytestr:[291,359],bytestream:359,c_creates_button:314,c_creates_obj:314,c_dig:314,c_examin:314,c_help:314,c_idl:314,c_login:314,c_login_nodig:314,c_logout:314,c_look:314,c_move:314,c_moves_:314,c_moves_n:314,c_social:314,cabinet:36,cabl:95,cach:[8,13,22,45,46,49,58,82,85,104,132,154,164,179,184,185,190,200,228,246,247,257,261,262,286,330,331,333,334,335,347,349,359],cache_inst:349,cache_lock_bypass:257,cache_s:[325,349],cached_properti:359,cactu:235,cake:20,calcul:[19,48,81,85,101,112,113,114,163,197,200,211,218,228,229,232,233,235,236,267,344,346,349,359,384],calculated_node_to_go_to:27,calculu:88,calendar:[197,211,346],call:[0,2,3,5,8,9,11,12,13,14,15,19,20,26,27,30,31,32,34,37,39,40,41,42,44,45,46,48,50,53,56,58,59,60,62,64,66,68,70,71,72,74,76,77,79,80,81,82,83,84,85,86,88,89,90,91,92,94,96,97,98,99,100,101,102,103,105,106,107,108,110,112,113,114,115,122,123,124,125,126,127,128,129,133,136,137,139,140,141,142,144,148,149,154,156,160,161,162,163,164,166,169,174,177,178,179,180,181,184,185,192,193,195,197,198,199,200,201,202,205,206,207,208,209,210,211,213,214,216,217,218,219,225,227,229,230,232,233,234,235,236,238,239,241,242,243,246,247,248,249,250,256,257,261,262,265,266,267,272,273,274,275,276,279,282,284,286,287,291,292,293,294,295,296,297,298,300,301,302,303,304,305,306,307,309,310,311,313,314,315,320,321,322,323,324,327,330,331,333,334,336,337,338,339,341,343,345,346,349,351,352,354,355,356,359,364,368,379,384],call_async:48,call_command:8,call_ev:[66,207],call_inputfunc:[56,321,323],callabl:[26,27,32,42,44,71,114,193,201,208,230,234,262,265,266,267,272,276,280,282,284,292,338,341,343,344,352,354,355,359],callables_from_modul:359,callbac:68,callback1:343,callback:[19,22,26,27,30,32,44,48,68,79,83,91,156,193,197,201,205,206,207,208,209,210,211,223,230,262,272,274,275,276,280,282,284,287,291,292,293,295,309,310,313,324,343,346,352,357,359,386],callback_nam:[205,208],callbackhandl:[151,188,204,210],called_bi:160,calledbi:359,caller:[3,13,14,19,22,26,31,33,34,44,45,48,56,58,59,63,68,71,72,74,80,81,82,83,84,86,87,88,90,94,95,96,97,98,104,105,108,112,113,114,125,139,156,160,161,162,164,166,169,170,174,175,176,177,178,179,180,184,193,201,206,212,213,214,216,219,227,230,247,248,249,250,257,262,264,266,337,341,343,344,351,353,359],callerdepth:359,callertyp:160,callinthread:327,calllback:207,callsign:[27,287],calm:72,came:[67,72,76,80,81,98,106,127,131,210,246,250,262],camp:72,campfir:72,campsit:72,can:[0,2,3,4,5,6,7,8,9,10,11,12,14,15,16,17,19,20,22,23,25,26,27,29,30,31,32,33,34,36,37,39,40,41,42,43,44,45,46,48,49,51,53,54,55,56,58,59,60,61,62,64,65,66,67,70,71,72,73,74,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,94,95,96,97,98,99,100,101,102,103,104,105,106,109,110,112,113,114,115,116,117,121,122,123,124,125,126,128,129,130,131,133,134,135,136,137,139,140,141,142,143,144,145,148,149,153,154,156,158,161,162,163,164,166,167,169,174,175,176,177,178,179,180,184,185,186,187,190,191,192,193,195,196,197,198,200,201,202,203,207,208,210,211,212,213,216,217,218,219,222,225,229,230,232,233,234,235,236,239,241,242,243,246,247,248,249,250,254,256,257,261,262,265,266,267,268,271,272,273,274,276,282,293,297,300,302,305,306,310,311,313,314,320,321,322,323,324,327,328,329,331,332,333,334,336,337,338,339,341,342,343,344,345,351,353,354,355,356,357,359,360,364,365,368,379,384],can_:207,cancel:[19,30,83,207,210,232,233,234,235,236,262],candid:[22,68,108,128,161,216,219,262,356],candl:163,cannon:101,cannot:[4,8,9,13,14,15,19,20,22,26,27,31,39,42,43,48,51,55,62,67,68,70,78,80,81,82,83,85,87,88,92,96,103,104,105,108,109,110,112,114,128,136,142,154,156,166,169,185,193,200,201,205,208,210,225,230,236,243,246,247,253,256,257,262,276,331,338,340,342,345,349,359],cantanker:353,cantclear:201,cantillon:131,cantmov:81,canva:71,capabl:[2,31,40,56,59,71,77,90,166,227,287,309,379],cape:89,capfirst:92,capit:[49,59,67,77,81,83,106,107,114,169,202,217,218,229,336],captcha:128,caption:74,captur:[81,97,352,384],car:[33,125],card:145,cardin:[71,87,90,169],care:[22,27,48,49,58,66,71,74,77,79,87,88,89,91,97,104,106,113,125,126,127,130,133,149,154,162,185,200,216,219,246,256,262,265,333,337,341,343,344,345,359],carefulli:[5,40,72,76,128],carri:[20,31,95,96,99,103,110,113,122,187,195,233,246,256,321,332],cascad:349,caseinsensitivemodelbackend:371,cast:[42,43,82,107,230,235],caster:[82,235],castl:[14,72,100,109,200,248],cat:141,catchi:79,categor:43,categori:[2,8,13,22,27,29,42,43,58,65,74,85,92,98,101,108,164,165,166,167,168,169,174,175,176,177,178,179,180,181,184,192,193,194,195,198,199,200,201,202,206,212,213,214,215,216,219,225,226,227,230,232,233,234,235,236,239,246,247,248,249,253,254,256,262,266,267,331,332,334,339,341,343,344,350,353,356,359,384],categoris:88,category2:350,category2_id:350,category_id:350,category_index:230,cater:83,caught:[3,6,27,186],caus:[3,8,13,20,31,46,49,62,65,77,83,84,98,104,110,113,114,122,142,163,199,239,242,250,262,313,345,359],caution:[46,91,343],cave:70,caveat:[48,190],caveman:88,cblue:11,cboot:[49,98,174],cc1:136,cccacccc:342,ccccc2ccccc:90,cccccccc:342,ccccccccccc:90,cccccccccccccccccbccccccccccccccccc:342,ccccccccccccccccccccccccccccccccccc:342,ccreat:[86,90,98,137,140,143,174],cdesc:[86,98,174],cdestroi:[98,174],cdmset:20,cdn:145,ceas:169,cel:342,celebr:110,cell:[72,90,92,109,201,342,345],celltext:342,cemit:[98,174],censu:332,center:[42,50,62,71,72,79,85,203,265,336,345,359],center_justifi:[42,265],centos7:138,centr:72,central:[8,30,47,72,77,127,144,154,187,262,267,291,339,349],centre_east:72,centre_north:72,centre_south:72,centre_west:72,centric:[31,40,67,114,219],cert:[132,138,303,307],certain:[6,14,15,20,22,31,37,40,41,44,50,51,59,60,62,73,74,77,81,83,103,125,141,142,169,186,192,218,222,229,243,247,250,256,274,282,288,305,309,324,330,331,332,341,345,356,359,379],certainli:[16,87],certbot:[142,145],certfil:[303,307],certif:[132,142,303,307],cet:352,cflag:141,cgi:142,cha:[27,90],chain:[27,42,48,66,70,83,101,207,208,314,343,359],chain_1:66,chainedprotocol:302,chainsol:101,chair:[14,34,43,45,97,110],challeng:[93,107,109,112,131],chanalia:174,chanc:[11,20,44,54,68,80,82,104,109,110,112,113,135,162,232,233,234,235,236,239,247,248,314],chance_of_act:314,chance_of_login:314,chandler:113,chang:[0,2,3,8,10,12,13,14,15,16,20,22,23,25,26,27,29,30,31,32,33,34,37,39,40,41,42,43,44,45,46,49,50,51,52,54,56,58,62,64,67,68,71,72,73,75,77,79,80,83,84,85,86,89,91,94,96,97,98,99,101,103,105,106,107,110,112,113,114,115,117,123,125,126,127,128,129,130,132,133,135,136,139,141,142,144,147,149,154,155,163,164,166,167,169,174,175,180,183,185,192,193,195,199,200,202,203,205,208,210,214,215,218,219,225,226,228,229,230,232,233,234,235,236,246,247,248,249,250,254,259,262,267,269,271,272,274,276,282,287,298,313,320,321,328,330,331,333,337,340,341,344,345,352,353,354,355,368,384,385],change_name_color:230,changeabl:55,changelog:102,changepag:129,chanlist:174,channam:86,channel:[12,13,19,20,22,24,31,33,41,43,45,49,51,58,75,76,78,93,95,98,103,104,108,114,131,137,139,140,142,143,147,154,156,160,162,163,169,174,178,182,183,184,185,186,187,208,286,293,294,301,314,321,323,331,339,352,356,382,384,386],channel_:23,channel_ban:[86,174],channel_color:81,channel_command_class:[23,86],channel_connectinfo:321,channel_detail:384,channel_handl:[151,184],channel_list:384,channel_prefix:[81,185],channel_search:186,channel_set:187,channel_typeclass:382,channeladmin:183,channelam:184,channelattributeinlin:183,channelcmdset:[20,98],channelcommand:[23,86,184],channelconnect:187,channelcr:174,channelcreateview:185,channeldb:[45,75,86,151,183,185,187,329],channeldb_db_attribut:183,channeldb_db_tag:183,channeldb_set:[331,334],channeldbmanag:[186,187],channeldeleteview:185,channeldesc:[86,184],channeldetailtest:382,channeldetailview:[185,384],channelhandl:[23,86,151,152,160,182,185],channelkei:[86,184,186],channellist:174,channellisttest:382,channellistview:384,channelmanag:[185,186],channelmixin:384,channelnam:[23,86,140,156,184,293],channeltaginlin:183,channelupdateview:185,char1:[8,112,175,382],char2:[8,112,175,382],char_health:248,char_nam:128,charac:32,charact:[2,3,6,8,12,13,15,16,17,19,20,22,23,26,27,29,30,31,33,37,40,45,51,53,55,58,59,61,62,63,64,66,67,68,71,72,75,76,80,82,83,84,85,86,88,89,91,92,93,94,96,97,98,99,100,101,102,103,105,106,107,108,113,116,117,122,123,124,125,133,139,151,153,154,161,162,164,166,169,170,171,175,176,177,184,185,193,194,195,200,201,202,203,205,207,208,210,212,213,215,217,218,219,222,227,229,230,232,233,234,235,236,238,246,247,248,250,254,257,262,274,287,308,321,326,331,333,336,337,342,343,345,351,357,359,360,363,368,379,382,384,386],character1:112,character2:112,character_cmdset:200,character_form:384,character_id:262,character_list:384,character_manage_list:384,character_typeclass:[8,154,357,382],charactercmdset:[20,68,80,81,84,86,87,89,90,91,94,104,105,114,171,193,195,200,212,215,225,232,233,234,235,236,248],charactercreateview:[382,384],characterdeleteview:[382,384],characterdetailview:384,characterform:[379,384],characterlistview:[382,384],charactermanageview:[382,384],charactermixin:384,characternam:62,characterpuppetview:[382,384],charactersheet:27,characterupdateform:[379,384],characterupdateview:[382,384],characterviewset:368,charapp:128,charat:201,charcreat:[66,70,92,98,166,194],chardata:90,chardelet:[98,166],chardeleteview:[254,333],chardetailview:[254,333],charfield:[58,128,155,252,259,330,355,379],charfilt:363,charg:142,chargen:[128,151,152,185,188,254,333],chargencmdset:114,chargenroom:114,chargenview:[254,333],charnam:[90,166],charpuppetview:333,charset:359,charsheet:90,charsheetform:90,charupdateview:[254,333],chase:109,chat:[0,11,12,23,31,67,73,76,78,90,114,131,136,137,140,143,147,311,352],chatroom:89,chatzilla:140,cheap:11,cheaper:[44,110],cheapest:142,cheapli:248,cheat:[112,133],check:[0,2,3,6,7,8,9,10,11,14,15,19,20,22,27,29,33,34,37,42,43,44,45,46,49,51,53,58,62,66,68,70,71,72,73,74,78,79,81,82,83,85,86,87,88,90,92,94,95,96,97,103,104,105,112,113,114,116,117,122,123,125,128,135,136,137,139,142,143,144,145,148,149,154,155,160,161,162,163,164,166,168,169,175,176,177,179,181,185,187,190,192,194,195,199,200,201,208,212,229,232,233,234,235,236,238,239,243,246,248,249,250,256,257,261,262,266,267,271,273,274,281,282,286,291,297,302,306,321,323,325,326,327,330,331,333,334,336,337,339,353,354,359,360,364,384],check_attr:169,check_circular:311,check_databas:282,check_db:282,check_defeat:112,check_end_turn:113,check_error:281,check_evennia_depend:359,check_from_attr:169,check_grid:71,check_has_attr:169,check_light_st:248,check_loc:190,check_lock:364,check_lockstr:[31,79,257],check_main_evennia_depend:282,check_obj:169,check_permiss:266,check_permstr:[154,333],check_show_help:176,check_to_attr:169,check_warn:281,checkbox:128,checker:[16,71,256,302,360],checklockstr:98,checkout:[11,67,144],checkoutdir:2,chest:[31,97,107,108],child:[22,27,31,77,98,104,105,107,113,156,158,164,169,180,248,261,267,271,327,350,365],childhood:27,children:[22,43,45,77,80,101,122,158,261,262,271,282,332,350],chillout:169,chime:19,chines:[61,81,131],chip:90,chmod:2,choci:193,choic:[8,16,22,27,40,41,42,61,63,76,79,97,105,106,107,113,117,127,130,133,142,154,166,169,192,193,201,232,249,265,280,341,343],choice1:63,choice2:63,choice3:63,choos:[7,14,27,48,64,65,67,71,74,77,89,91,96,101,112,113,114,124,126,128,140,227,230,232,233,234,235,236,239,246,295,343,358,386],chop:[22,247],chore:29,chose:[58,90,106,128,135,145,148,230],chosen:[7,27,59,68,113,127,201,203,343],chown:144,chractercmdset:248,chrome:134,chronicl:201,chroot:138,chug:22,chunk:[14,72,92,190,284,337,351],church:19,church_clock:19,cid:314,cillum:28,circl:85,circuit:46,circular:[284,338],circumst:[27,70,89,96,103,105,106,162,235,379],circumv:167,clang:141,clank:66,clarifi:81,clariti:[58,97,107,114,141],clash:[20,117,133,142,169,184,333],class_from_modul:359,classic:[14,40,43,44,104,113,115,131],classmethod:[85,154,185,254,262,274,333,349,373],classnam:[13,107],classobj:333,claus:[123,130],clean:[11,17,27,55,62,72,79,81,82,104,105,109,113,149,155,162,164,169,185,192,219,232,233,234,235,236,243,247,248,250,262,271,282,286,300,310,323,330,333,336,341,343,349,355,358,359,379],clean_attr_valu:330,clean_attribut:[45,154,333],clean_cmdset:[45,333],clean_senddata:323,clean_str:336,clean_usernam:155,cleaned_data:128,cleaner:[97,107,114],cleanli:[37,40,77,149,160,164,174,184,201,284,293,299,310,323,341],cleanup:[8,13,22,26,27,37,53,68,155,179,192,248,343],clear:[9,11,13,16,22,26,39,43,44,45,46,49,53,61,63,68,72,73,74,77,78,79,83,92,94,110,112,127,149,163,166,167,169,175,184,201,217,219,228,229,243,248,257,261,262,272,276,284,321,331,333,334,343,349],clear_attribut:331,clear_client_list:318,clear_cont:[34,262],clear_exit:[34,262],clearal:[63,175],clearli:[9,49,73,104,243,349],cleartext:[223,339],clemesha:327,clever:[20,27,48,257],cleverli:40,click:[2,7,9,11,46,62,64,74,92,102,128,142,343],clickabl:74,client:[2,9,22,26,28,30,32,39,40,41,49,53,60,61,62,67,68,72,74,76,77,81,84,94,97,99,103,104,105,106,113,115,116,122,126,131,132,133,135,136,137,138,140,141,144,145,147,148,151,154,156,164,166,179,223,277,279,283,285,287,291,292,293,294,295,296,297,298,300,302,304,305,306,307,309,310,311,313,314,320,321,322,323,340,341,343,358,359,363,365,384,386],client_address:53,client_class:366,client_default_height:28,client_disconnect:311,client_encod:133,client_opt:[287,306],client_secret:137,client_width:[22,164],clientconnectionfail:[279,293,294],clientconnectionlost:[279,293,294],clientfactori:313,clienthelp:46,clientraw:179,clientsess:[310,311],clientwidth:98,cliff:[99,169],climat:43,climb:[5,22,76,169,247],climbabl:247,clist:174,clock:[19,22,49,98,112,174],clone:[9,10,55,77,102,136],close:[7,11,15,26,27,40,45,46,53,55,66,68,70,74,77,81,85,86,92,104,106,107,128,142,144,145,149,179,181,190,191,192,193,199,203,225,236,239,242,243,284,292,293,300,302,310,311,323,331,337,343,351],close_lid:242,close_menu:343,closed_lid_script:368,closedlidst:[243,368],closelidev:243,closer:[218,236],closest:[62,85,229,359],cloth:[151,152,188,337],clothedcharact:195,clothedcharactercmdset:195,clothes_list:195,clothing_typ:195,clothing_type_count:195,clothing_type_ord:195,cloud:[37,127,142,144,145,190],cloud_keep:213,cloudi:37,clr:[62,266,351],cls:[85,154,229],clue:247,clump:107,clunki:[11,236],clutter:[74,163],cma:11,cmd:[15,20,22,31,49,59,68,75,81,82,83,86,87,90,91,95,96,98,103,106,114,117,125,139,148,162,164,166,167,168,169,174,175,176,177,178,179,180,181,184,192,193,194,195,198,199,200,201,202,206,212,213,214,215,216,219,225,226,227,230,232,233,234,235,236,239,246,247,248,249,251,262,306,310,311,337,341,343,344],cmd_arg:97,cmd_channel:[22,160],cmd_ignore_prefix:161,cmd_kei:97,cmd_last:40,cmd_last_vis:40,cmd_loginstart:22,cmd_multimatch:[22,160],cmd_na_m:59,cmd_name:59,cmd_noinput:[22,160,343],cmd_nomatch:[22,160,248,343],cmd_noperm:22,cmd_on_exit:[27,201,230,264,343],cmd_total:40,cmdabil:8,cmdabout:179,cmdaccept:192,cmdaccess:175,cmdaddcom:174,cmdallcom:174,cmdapproach:236,cmdarmpuzzl:216,cmdasync:48,cmdattack:[83,112,113,114,232,233,234,235,236,247],cmdban:167,cmdbare:98,cmdbatchcod:168,cmdbatchcommand:168,cmdbigsw:83,cmdblindhelp:239,cmdblindlook:239,cmdblock:81,cmdboot:167,cmdbridgehelp:248,cmdbui:96,cmdbuildshop:96,cmdcallback:206,cmdcast:235,cmdcboot:174,cmdcdesc:174,cmdcdestroi:174,cmdcemit:174,cmdchannel:174,cmdchannelcr:174,cmdcharactercr:194,cmdcharcreat:166,cmdchardelet:166,cmdclimb:247,cmdclock:174,cmdcloselid:239,cmdcolortest:166,cmdcombathelp:[232,233,234,235,236],cmdconfigcolor:94,cmdconfirm:22,cmdconnect:86,cmdcopi:169,cmdcover:195,cmdcpattr:169,cmdcraftarmour:83,cmdcreat:169,cmdcreatenpc:114,cmdcreatepuzzlerecip:216,cmdcwho:174,cmddarkhelp:248,cmddarknomatch:248,cmddeclin:192,cmddefend:113,cmddelcom:174,cmddesc:[169,200],cmddestroi:169,cmddiagnos:84,cmddice:[90,198],cmddig:169,cmddisconnect:86,cmddisengag:[113,232,233,234,235,236],cmddoff:233,cmddon:233,cmddrop:[175,195],cmdeast:248,cmdecho:[22,74,83,98,105],cmdedit:193,cmdeditnpc:114,cmdeditorbas:341,cmdeditorgroup:341,cmdeditpuzzl:216,cmdemit:167,cmdemot:219,cmdentertrain:125,cmdevalu:192,cmdevmenunod:343,cmdexamin:169,cmdexiterror:87,cmdexiterroreast:87,cmdexiterrornorth:87,cmdexiterrorsouth:87,cmdexiterrorwest:87,cmdextendedroomdesc:200,cmdextendedroomdetail:200,cmdextendedroomgametim:200,cmdextendedroomlook:200,cmdfeint:113,cmdfight:[232,233,234,235,236],cmdfind:169,cmdfinish:192,cmdforc:167,cmdget:[81,105,175],cmdgetinput:343,cmdgetweapon:247,cmdgive:[175,195],cmdgmsheet:90,cmdhandler:[20,22,34,56,103,151,152,154,159,161,162,163,164,166,177,178,180,184,200,216,261,262,271,359],cmdhelp:[113,176,232,233,234,235,236],cmdhit:[98,105,113],cmdhome:175,cmdic:166,cmdid:287,cmdinsid:125,cmdinterrupt:180,cmdinventori:[95,175,195],cmdirc2chan:174,cmdlaunch:80,cmdlearnspel:235,cmdleavetrain:125,cmdlen:[161,178],cmdlight:247,cmdline:282,cmdlineinput:341,cmdlink:169,cmdlistarmedpuzzl:216,cmdlistcmdset:169,cmdlistpuzzlerecip:216,cmdlock:169,cmdlook:[4,8,84,175,194,200,248],cmdlookbridg:248,cmdlookdark:248,cmdmail:212,cmdmailcharact:212,cmdmakegm:90,cmdmapbuild:213,cmdmask:219,cmdmobonoff:246,cmdmore:344,cmdmorelook:344,cmdmultidesc:[89,215],cmdmvattr:169,cmdmycmd:[29,88],cmdname2:161,cmdname3:161,cmdname:[30,46,53,56,59,98,114,160,161,164,169,177,178,180,287,305,306,310,311,323],cmdnamecolor:230,cmdnewpassword:167,cmdnick:175,cmdnoinput:193,cmdnomatch:193,cmdnpc:114,cmdnudg:239,cmdobj:[160,161,178,180],cmdobj_kei:160,cmdobject:[160,161,179],cmdoffer:192,cmdooc:166,cmdooccharactercr:194,cmdooclook:[166,194],cmdopen:[169,225],cmdopenclosedoor:225,cmdopenlid:239,cmdoption:166,cmdpage:174,cmdparri:113,cmdparser:[39,151,152,159],cmdpass:[232,233,234,235,236],cmdpassword:166,cmdperm:167,cmdplant:249,cmdpose:[113,175,219],cmdpressbutton:247,cmdpush:239,cmdpy:179,cmdquell:166,cmdquit:166,cmdread:247,cmdrecog:219,cmdreload:179,cmdremov:195,cmdreset:179,cmdrest:[232,233,234,235,236],cmdroll:97,cmdrss2chan:174,cmdsai:[113,175,219],cmdsaveyesno:341,cmdscript:[169,179],cmdsdesc:219,cmdser:343,cmdserverload:179,cmdservic:179,cmdsession:166,cmdset:[3,6,12,15,20,22,23,27,29,34,40,53,68,75,80,81,86,87,89,91,92,94,96,102,103,104,113,114,125,151,152,154,159,160,161,163,164,169,170,171,172,173,176,177,178,179,180,184,192,193,194,195,198,200,202,206,212,214,216,219,226,227,232,233,234,235,236,239,243,246,247,248,249,256,261,262,271,313,320,321,333,341,343,344],cmdset_account:[12,151,159,165,194],cmdset_charact:[151,159,165,195,232,233,234,235,236],cmdset_mergetyp:[27,201,264,343],cmdset_prior:[27,201,264,343],cmdset_red_button:[151,188,237],cmdset_sess:[40,151,159,165],cmdset_stack:163,cmdset_storag:[158,261,321],cmdset_trad:192,cmdset_unloggedin:[22,151,159,165,199,214],cmdsetattribut:169,cmdsetclimb:247,cmdsetcommand:162,cmdsetcrumblingwal:247,cmdsetdesc:175,cmdsethandl:[40,151,152,159],cmdsethelp:176,cmdsethom:169,cmdsetkei:20,cmdsetkeystr:162,cmdsetlight:247,cmdsetmor:344,cmdsetobj:[162,163,170,171,172,173,192,193,194,195,198,200,214,216,219,227,232,233,234,235,236,239,246,247,248,341,343,344],cmdsetobjalia:169,cmdsetpow:114,cmdsetread:247,cmdsetspe:226,cmdsettestattr:26,cmdsettrad:192,cmdsettrain:125,cmdsetweapon:247,cmdsetweaponrack:247,cmdsheet:90,cmdshiftroot:247,cmdshoot:[80,236],cmdshutdown:179,cmdsmashglass:239,cmdsmile:22,cmdspawn:169,cmdspellfirestorm:82,cmdstatu:[192,235,236],cmdstop:226,cmdstring:[22,90,98,160,164,177,178,180],cmdstyle:166,cmdtag:169,cmdtalk:227,cmdteleport:169,cmdtest:[3,83,97],cmdtestid:22,cmdtestinput:27,cmdtestmenu:[27,201,343],cmdtime:[91,179],cmdtrade:192,cmdtradebas:192,cmdtradehelp:192,cmdtunnel:169,cmdtutori:248,cmdtutoriallook:248,cmdtutorialsetdetail:248,cmdtweet:139,cmdtypeclass:169,cmdunban:167,cmdunconnectedconnect:[181,199],cmdunconnectedcr:[181,199],cmdunconnectedhelp:[181,199],cmdunconnectedlook:[181,199],cmdunconnectedquit:[181,199],cmduncov:195,cmdunlink:169,cmdunloggedinlook:214,cmdunwield:233,cmduse:234,cmdusepuzzlepart:216,cmdwait:22,cmdwall:167,cmdwear:195,cmdwerewolf:81,cmdwest:248,cmdwhisper:175,cmdwho:166,cmdwield:233,cmdwipe:169,cmdwithdraw:236,cmset:163,cmsg:174,cmud:134,cnf:[2,133],coast:[72,109],coastal:72,cockpit:80,code:[2,5,6,7,8,12,13,15,16,20,22,23,24,27,29,31,32,34,37,39,40,42,43,44,45,48,49,50,51,52,53,55,58,59,62,63,64,66,67,70,71,72,73,75,76,77,78,79,83,85,88,89,90,91,92,93,97,99,101,102,103,104,105,107,108,109,113,114,116,117,118,119,120,121,122,123,125,126,127,129,131,136,143,144,145,147,149,151,152,154,159,160,163,166,168,169,174,179,182,188,192,193,197,198,203,205,208,213,217,234,248,249,257,267,271,293,294,310,321,324,333,335,336,341,343,345,356,357,358,359,384,385,386],code_exec:337,codebas:[8,11,63,65,74,76,88,108,180],codeblock:74,codec:336,codefunc:341,coder:[0,1,68,88,110,131,160,262],codestyl:73,coerc:354,coexist:126,coher:120,coin:[78,107,108,110,192],col:[50,115,345],cold:[49,149,179,267,272,276,320],cole:359,collabor:[11,77,79,110,142,176],collat:[56,266],collect:[0,13,20,107,116,160,162,189,216,229,274,331,359,368],collector:116,collectstat:[46,116,282,286],collid:[20,135,142,343],collis:[11,20],collist:107,colon:[19,31,86,99,106,257],color:[22,27,30,42,46,50,62,63,71,72,74,75,90,92,93,98,99,106,131,136,164,166,196,203,219,230,249,266,287,294,302,305,310,311,336,345,351,353,358,360,386],color_ansi_bright_bg_extra_map:196,color_ansi_bright_bgs_extra_map:196,color_ansi_extra_map:196,color_markup:[151,152,188],color_no_default:196,color_typ:336,color_xterm256_extra_bg:196,color_xterm256_extra_fg:196,color_xterm256_extra_gbg:196,color_xterm256_extra_gfg:196,colorablecharact:94,colorback:358,colorcod:358,colour:[19,76,169,309,336,345],column:[46,50,58,70,71,72,74,77,90,92,164,166,250,345,359],com:[8,9,10,11,36,48,50,60,64,67,68,70,72,74,76,85,86,108,128,131,132,133,135,136,138,141,142,143,144,145,151,174,193,199,294,297,306,310,327,345,358,359,379,385],combat:[11,13,15,20,37,42,45,60,70,72,76,77,81,82,93,98,103,104,109,112,122,131,136,163,232,233,234,235,236,246,271,386],combat_:[232,233,234,235,236],combat_cleanup:[232,233,234,235,236],combat_cmdset:113,combat_handl:113,combat_handler_:113,combat_movesleft:[232,233,234,235],combat_scor:114,combat_status_messag:236,combatcmdset:113,combathandl:113,combatscor:114,combatt:13,combin:[8,13,19,20,22,23,32,42,43,44,49,62,76,82,84,86,89,90,99,101,105,106,123,125,132,142,160,161,162,169,185,215,216,218,229,242,257,266,276,282,332,334,339,353,359],combo:40,come:[5,11,12,13,16,19,22,23,27,28,31,40,46,48,50,53,56,59,62,63,64,66,70,71,72,76,77,79,80,81,83,89,90,91,92,96,97,99,103,104,106,107,110,112,113,114,115,123,125,126,128,129,133,144,148,154,162,200,217,229,232,233,234,235,236,267,300,305,310,311,313,319,336,344,365,384],comet:[46,53,76,311],comfort:[11,16,76,92,97],comlist:174,comm:[22,23,29,75,77,86,102,139,151,152,159,165,339],comma:[58,62,70,99,106,107,129,169,177,178,211,212,257,262,351],comman:99,command:[0,2,5,7,9,11,12,13,14,16,19,23,26,27,28,30,31,33,34,36,37,39,40,42,43,45,46,48,49,51,52,53,54,55,56,58,60,61,62,63,65,66,67,70,71,72,74,76,77,79,80,88,89,92,93,99,100,102,108,109,110,112,116,122,123,124,126,131,132,133,134,136,137,138,140,141,142,143,145,148,149,151,152,154,156,184,185,188,192,193,194,195,198,199,200,201,202,204,207,209,210,212,213,214,215,216,219,223,225,226,227,230,232,233,234,235,236,239,241,242,243,246,247,248,249,250,251,254,256,257,262,266,267,271,279,282,287,291,292,300,302,305,306,310,311,313,314,320,321,333,335,336,339,341,343,344,353,356,359,384,386],command_default_arg_regex:22,command_default_class:81,command_pars:161,commandhandl:[30,163,178,359],commandlin:359,commandmeta:164,commandnam:[22,30,56,99,249,282,291,321,323],commandset:[31,34,98,163,194],commandtest:[8,180,209],comment:[14,15,45,67,73,81,86,98,123,132,134,142,337],commerc:131,commerci:[7,78,142],commerror:186,commit:[2,9,10,16,54,60,73,74,77,81,133,143,144,222,330],commmand:[225,232,233,234,235,236],common:[0,6,11,16,19,22,27,29,30,31,40,41,42,43,44,45,48,49,50,53,56,59,61,74,75,77,84,86,91,92,97,99,100,103,104,106,107,108,110,112,113,114,118,128,136,142,162,169,192,218,219,226,257,271,310,314,332,342,354,356,359,368,372,384],commonli:[9,33,39,40,41,44,56,58,77,101,105,133,136,262],commonmark:74,commun:[7,18,22,36,46,53,56,59,61,62,68,69,75,76,77,78,86,89,97,98,102,103,104,131,132,133,140,142,145,171,182,184,185,186,187,212,261,279,291,292,302,303,305,306,307,308,321,323,339,340,355,385,386],compact:[96,101,129],compani:[59,77],compar:[6,8,11,14,16,19,20,56,67,79,82,83,86,87,90,96,97,101,112,113,114,180,213,216,218,229,232,233,234,235,236,256,257,267,336,359],comparison:[5,14,101,102,228,256,267,343],compartment:90,compass:99,compat:[15,27,80,169,229,345,352],compet:[16,59],compil:[22,55,60,67,74,88,103,136,141,142,169,175,176,181,184,195,214,219,336,341,358],compilemessag:55,complain:[3,9,58,97,149],complement:[0,41,229],complementari:[24,61],complet:[2,8,9,11,12,13,14,15,16,19,20,22,26,27,34,37,39,40,41,48,59,68,71,72,73,77,81,87,90,91,94,96,101,105,106,109,110,114,133,142,148,149,154,162,163,164,177,179,184,196,200,201,203,208,210,213,233,248,262,282,284,292,293,310,337,342,343,344,351,356,359,364,379],complete_task:208,completli:243,complex:[5,8,13,15,16,20,22,39,44,55,58,60,72,77,91,99,103,105,106,107,108,110,112,113,114,144,163,209,217,227,267,314],complianc:[134,200],compliant:[85,306],complic:[48,66,68,71,72,83,86,92,97,101,128,129,142,181,199,201,230,331],compon:[0,5,8,22,37,46,47,52,53,62,64,71,74,76,83,90,93,102,110,113,114,120,121,142,149,169,179,185,186,187,190,197,216,218,228,267,268,271,274,282,311,339,342,356,359,385,386],componenta:4,componentid:46,componentnam:46,componentst:46,compos:[144,201],composit:[308,332],comprehens:[5,8,23,31,45,76,136,145],compress:[30,287,291,295,355],compress_object:355,compris:154,compromis:[145,222],comput:[11,44,48,49,61,71,77,88,101,102,112,127,136,140,144,148,167,179,219,359,360],computation:44,comsystem:[174,187],con:[90,131,181,199],concaten:[103,336,351],concept:[11,13,36,44,53,55,70,73,74,85,89,92,93,94,106,107,110,117,194,215,229,385,386],conceptu:[27,71],concern:[55,59,87,106,136,162,217,254],conch:[302,305,313],conclud:[101,192,343],concurr:133,conda:67,conder:337,condit:[5,70,71,76,96,97,98,101,105,110,112,114,132,160,198,219,234,257,262,274,281,282,327,359],condition:81,condition_result:198,condition_tickdown:234,conditional_flush:349,conduct:116,conductor:125,conect:323,conf:[2,5,8,11,24,25,30,31,42,53,55,58,62,64,67,74,79,81,86,91,92,94,104,124,125,128,129,132,133,135,137,138,142,145,154,196,214,282,288,289,328,337,352,386],confer:[131,359],confid:[3,73,85],config:[2,7,10,11,12,46,53,67,79,136,142,143,145,190,229,278,282,284,288,289,300,386],config_1:12,config_2:12,config_3:12,config_color:94,configcmd:94,configdict:[302,323],configur:[2,8,12,62,66,74,77,81,91,92,93,103,116,124,135,136,138,142,144,145,154,158,161,166,190,222,223,229,249,275,284,289,300,323,327,328,332,379,386],configut:7,confirm:[22,46,99,132,136,145,169,199,216,306,309,384],conflict:[3,86,126],confus:[0,5,6,11,20,31,33,46,48,62,65,68,77,87,90,97,101,104,107,116,126,142,199,384],conid:301,conjur:235,conn:[181,199],conn_tim:40,connect:[5,8,12,13,14,17,20,22,23,24,30,31,34,36,37,39,40,41,45,46,49,53,54,55,56,59,62,66,67,70,71,72,76,77,79,81,86,89,92,96,97,99,101,102,103,104,105,114,116,124,126,132,133,134,136,137,140,143,144,145,148,149,154,156,158,166,167,169,174,181,185,187,190,199,203,205,206,208,210,214,223,226,261,262,268,277,279,282,284,291,292,293,294,295,300,301,302,305,310,311,313,314,320,321,322,323,324,327,331,333,339,355,365,386],connection_cr:41,connection_screen:[25,39,103,214],connection_screen_modul:199,connection_set:135,connection_tim:[154,262],connection_wizard:[151,152,277],connectiondon:284,connectionlost:[284,291,292,302,305,313],connectionmad:[279,291,302,305,313],connectionwizard:280,connector:[279,293,294,300,323],conquer:109,consecut:27,consequ:[142,163],consid:[0,5,6,11,14,15,19,20,22,27,30,31,37,40,42,43,44,45,48,49,53,58,61,62,64,66,70,73,76,77,78,79,85,87,89,95,96,101,103,106,108,110,118,125,128,129,130,133,136,142,145,154,162,201,216,218,219,229,236,249,262,267,271,287,302,305,332,337,338,343,344],consider:[29,39,58,72,104,123,256,267,345],consist:[12,13,17,22,27,29,31,36,42,46,58,62,64,70,74,87,106,109,113,114,117,149,154,161,177,186,192,216,218,251,257,265,267,306,311,321,330,331,333,339,344,345,384],consitut:104,consol:[0,3,5,6,7,46,51,62,67,74,77,104,106,107,114,117,133,136,141,142,144,148,179,219,282],conson:218,constant:[59,66,291,357],constantli:[122,248],constitu:[163,177,178],constraint:[66,133],construct:[2,23,27,77,83,128,267,326,331,336,344,379],constructor:[22,68,193,293],consum:[48,284],consumer_kei:[124,139],consumer_secret:[124,139],consumpt:[133,325],contact:[34,46,142,144],contain:[0,6,8,9,13,14,15,17,20,22,23,27,29,31,34,37,39,40,46,48,50,53,58,62,63,66,67,68,70,73,74,75,76,77,80,81,85,86,88,89,91,92,97,98,99,101,102,103,104,105,106,114,116,123,126,128,129,131,136,141,148,151,152,154,156,159,160,161,162,163,165,168,169,176,182,190,193,201,202,205,206,207,208,209,210,211,213,216,217,218,219,223,224,226,229,230,234,239,247,249,250,253,255,262,264,265,266,267,275,277,281,285,287,313,326,327,331,332,333,334,335,336,337,340,342,343,344,345,356,358,359,360,365,377,384],container:144,contempl:88,content:[5,11,14,17,19,34,45,46,50,71,74,79,80,85,88,90,92,95,96,97,101,103,105,106,108,114,115,117,118,119,120,121,122,125,128,129,131,142,164,167,169,190,191,219,261,262,330,334,336,337,338,341,344,345,356,361,365,377,385],content_typ:[261,262],contentdisposit:190,contentencod:190,contentof:345,contents_cach:261,contents_get:[108,262],contents_set:262,contentshandl:261,context:[62,70,76,92,97,117,126,128,193,208,303,307,372,384],contextu:43,continu:[1,3,8,13,19,22,27,43,44,48,58,62,70,71,73,76,80,83,90,92,96,98,105,106,113,114,116,139,141,142,190,213,262,280,291,327,331,343,352,359,386],contrari:[66,74,86,91,103,179,229,334],contrast:[61,88,142,306],contrib:[14,15,37,69,70,74,75,77,79,89,90,91,93,99,102,103,106,109,112,113,118,130,136,151,152,154,155,158,183,252,259,269,278,324,330,337,371,379,384,386],contribrpcharact:219,contribrpobject:219,contribrproom:219,contribut:[0,8,11,68,76,78,79,95,102,116,130,147,148,188,192,194,195,196,198,200,212,213,214,216,217,219,222,223,225,226,227,249,385,386],contributor:[130,193,229],control:[1,2,3,4,5,9,12,13,14,15,20,22,23,26,27,28,29,30,31,34,36,37,40,42,49,51,56,58,60,62,64,67,73,74,75,76,77,80,89,90,94,99,101,102,103,104,105,110,112,114,117,123,125,134,136,142,145,147,149,154,156,166,168,169,174,192,194,207,219,243,246,248,250,256,262,271,282,321,323,333,343,364,379,386],convei:[210,219,262],convenei:41,conveni:[2,7,8,13,23,27,30,31,34,37,42,45,48,53,58,60,65,67,76,80,86,89,92,104,105,106,108,117,128,132,143,149,154,169,179,193,212,213,262,325,337,338,343,344,352,355,356],convent:[20,41,58,66,101,126],convention:[86,164,184,262,333],convers:[8,27,33,125,218,227,310,311,336,359,385],convert:[9,13,19,33,42,53,56,59,61,62,71,77,85,91,94,96,101,104,117,126,131,145,167,197,198,201,230,256,266,267,272,291,293,302,305,306,323,327,336,340,344,345,346,351,355,358,359,365,385],convert_linebreak:358,convert_url:358,convinc:[27,142],cool:[0,67,68,74,80,110,115,131,169],cool_gui:31,cooldown:[83,113,386],coord:85,coordi:85,coordin:[46,71,213,236,250,386],coordx:85,coordz:85,cope:235,copi:[0,2,5,9,11,14,15,22,26,27,39,40,42,46,64,66,72,77,79,81,91,94,98,99,102,103,114,116,128,142,144,168,169,195,208,232,233,234,235,236,248,262,282,291,328,336,352,384],copy_object:262,copyright:[130,142],core:[7,8,11,34,39,45,51,55,59,71,73,102,107,130,154,158,179,187,188,190,210,212,254,256,261,262,271,277,289,299,306,320,331,333,334,337,344,350,379,384,385],corner:[17,85,89,131,250,345],corner_bottom_left_char:345,corner_bottom_right_char:345,corner_char:345,corner_top_left_char:345,corner_top_right_char:345,corpu:218,correct:[8,13,15,19,20,22,26,31,46,48,61,62,73,80,84,97,104,107,114,125,126,133,160,166,169,186,200,216,244,257,297,300,302,308,322,336,359],correctli:[2,3,6,19,22,26,27,31,43,44,67,71,79,83,87,91,96,97,103,110,114,125,126,132,140,142,149,154,158,163,166,190,272,291,327,355,365],correl:267,correspond:[22,31,40,64,96,99,197,213,216,230,330,364,379],correspondingli:9,corrupt:88,cosi:72,cosin:359,cosmet:250,cost:[82,96,142,190,235,250],cottag:[62,72],could:[2,3,5,7,8,9,12,13,14,15,16,20,22,23,27,29,31,32,33,34,37,42,43,44,45,48,49,51,53,56,58,59,60,61,62,63,64,65,66,67,68,70,71,72,73,74,76,77,79,80,81,82,83,84,85,86,87,89,90,91,92,94,95,96,97,98,99,101,103,104,105,106,107,110,112,113,114,115,116,117,122,123,124,125,126,127,128,131,136,137,139,140,142,143,154,163,169,176,186,187,192,193,198,203,210,211,217,219,226,229,230,248,250,256,257,262,287,306,311,327,333,336,337,341,345,346,349,354,359],couldn:[13,51,55,65,77,85,87,97,98,106,126,129,217],count:[37,39,77,101,104,106,113,124,162,195,230,234,262,274,296,300,313,317,323,325,332,336,343,352],count_loggedin:300,count_queri:317,countdown:[83,99],counter:[9,40,68,83,92,96,113,151,152,156,188,228,248,300,313,314,321,343],counterpart:[14,62,287,323,340],countertrait:229,countri:167,coupl:[11,68,92,122,144,226],cours:[0,5,7,10,16,22,44,49,60,62,65,66,67,68,70,74,77,79,80,86,89,97,104,105,106,107,109,110,114,127,130,148,233,236],courtesi:49,cousin:[63,97],cover:[0,8,11,14,15,18,31,52,53,57,58,67,73,83,89,101,102,103,105,106,108,124,131,132,133,136,142,147,195,200,248,262,359],coverag:8,coveral:8,cpanel:142,cpattr:[98,169],cpu:[49,142,145,179],cpython:5,crack:[58,110],craft:[31,72,83,201],cram:109,crank:[44,273],crash:[0,72,106,110,131,145,286,331],crate:[33,99],crave:147,crawl:145,crawler:296,cre:[181,199],creat:[0,3,5,7,8,10,11,13,14,15,16,20,23,25,26,27,29,31,33,37,39,40,41,42,43,46,50,51,52,53,54,55,60,63,64,65,67,68,69,70,71,73,74,76,77,78,79,81,83,85,86,87,88,89,90,91,94,96,97,101,103,105,107,108,109,110,112,113,116,117,118,119,120,121,122,123,124,127,129,130,131,133,135,136,137,139,140,141,142,145,148,151,152,154,155,156,158,160,161,162,163,164,166,169,174,175,176,177,178,180,181,184,185,187,190,191,192,193,194,195,197,198,199,200,201,202,207,208,209,211,212,213,214,215,216,217,218,219,223,225,227,229,230,232,233,234,235,236,238,239,242,243,246,247,248,249,250,254,257,259,261,262,264,265,266,267,271,274,275,276,279,282,286,287,292,294,295,300,302,303,307,314,322,323,327,331,332,333,334,335,337,338,341,342,343,345,346,351,352,359,363,367,368,382,384],create_:[34,45],create_account:[41,45,151,339],create_attribut:331,create_channel:[23,151,184,185,286,339],create_charact:262,create_delai:275,create_exit:[169,225],create_exit_cmdset:262,create_forward_many_to_many_manag:[158,187,254,261,271,331,333,334,350],create_game_directori:282,create_grid:71,create_help_entri:[29,151,339],create_kwarg:267,create_match:161,create_messag:[23,151,339],create_object:[14,19,31,34,45,72,96,100,114,128,151,262,267,286,337,339],create_prototyp:[266,267],create_script:[37,45,88,113,151,274,337,339],create_secret_kei:282,create_settings_fil:282,create_superus:282,create_tag:332,create_wild:250,created_on:205,creater:75,createview:384,creation:[6,11,13,15,27,31,34,40,45,58,65,71,72,80,90,94,99,100,102,104,105,110,114,119,128,131,151,154,155,158,169,176,185,194,213,216,219,223,225,229,232,233,234,235,236,247,248,254,259,261,262,267,271,276,315,330,333,339,341,342,343,345,379,384,385],creation_:339,creativ:60,creator:[27,31,65,72,75,114,131,176,185,213,232,233,234,235,236,262,345],cred:[11,302],credenti:[11,142,145,154,302],credentialinterfac:302,credit:[11,106,108,142,145,358,359],creset:11,crew:101,criteria:[27,101,186,207,217,266,332,356],criterion:[11,101,104,105,109,154,192,219,253,262,273,356,359],critic:[0,6,9,20,37,40,51,62,136,257,281,282,352],critici:333,crop:[62,90,169,342,345,351,359],crop_str:345,cross:[72,248,345],crossbario:310,crossbow:83,crossroad:72,crowd:[110,145],crt:[132,138],crucial:[44,97],crud:[367,368],crude:66,crumblingwal:247,crumblingwall_cmdset:247,crush:80,crypt:109,cryptocurr:145,cscore:114,csessid:[300,310,311,323],csession:[310,311],csrf_token:128,css:[17,46,64,76,103,116,190,358],cssclass:46,ctrl:[5,106,117,136,142,144,148,149,313],cuddli:[104,107],culpa:28,cumbersom:[9,27,125,230],cumul:314,cup:78,cupidatat:28,cur_valu:203,cure:[234,235],cure_condit:234,curi:71,curiou:60,curli:[86,196],curly_color_ansi_bright_bg_extra_map:196,curly_color_ansi_bright_bgs_extra_map:196,curly_color_ansi_extra_map:196,curly_color_xterm256_extra_bg:196,curly_color_xterm256_extra_fg:196,curly_color_xterm256_extra_gbg:196,curly_color_xterm256_extra_gfg:196,curr_sess:323,curr_tim:200,currenc:[96,124],current:[6,7,8,9,11,12,13,14,15,19,20,22,26,27,29,30,31,34,37,38,39,40,43,44,46,49,51,55,58,62,66,67,68,70,71,74,77,80,81,82,83,86,90,96,98,99,101,102,103,104,105,107,113,114,124,125,128,131,134,144,148,154,158,160,161,163,164,166,167,169,174,175,176,178,179,185,190,192,193,195,200,201,203,208,211,213,215,217,219,225,226,228,229,230,232,233,234,235,236,241,247,248,250,253,261,262,267,271,275,276,282,287,292,298,299,302,303,314,321,323,325,332,333,341,343,345,346,352,353,356,359,365,384],current_choic:193,current_coordin:250,current_kei:[265,266],current_us:128,current_weath:37,currentroom:125,curriculum:131,curs:3,curv:[76,88],curx:71,custom:[0,6,12,13,15,16,17,19,20,22,23,25,29,30,33,34,37,39,42,43,45,49,50,52,54,56,58,62,65,66,71,75,76,77,80,81,84,88,90,92,93,96,99,101,103,105,109,110,112,113,114,116,122,123,125,126,127,128,130,131,137,139,142,144,149,154,155,156,157,158,160,162,163,164,169,174,175,176,184,185,192,194,195,197,198,200,201,202,208,210,211,213,216,218,219,222,223,229,247,248,250,253,256,260,262,264,265,266,267,270,276,278,282,286,288,291,313,322,333,338,341,345,349,351,353,354,358,359,367,368,371,384,386],custom_add:208,custom_cal:[208,211],custom_domain:190,custom_gametim:[91,151,152,188],custom_kei:266,custom_pattern:[79,92,115,128,129],customis:250,customiz:[17,86,193,201,203,219],customlog:132,cut:[26,46,53,71,72,76,97,99,114,267],cute:116,cutoff:359,cvcc:218,cvccv:218,cvccvcv:218,cvcvcc:218,cvcvccc:218,cvcvccvv:218,cvcvcvcvv:218,cvcvvcvvcc:218,cvv:218,cvvc:218,cwho:[98,174],cyan:[62,126],cyberpunk:108,cyberspac:131,cycl:[14,15,81,88,91,110,127,232,233,234,235,236],cyril:16,daemon:[5,132,144,145,149,299,327],daffodil:108,dai:[2,11,19,60,88,91,110,124,126,127,144,145,197,200,346,352,359,360],daili:33,dailylogfil:352,dali:218,dalnet:174,dalton:101,dam:88,damag:[15,80,82,96,109,110,112,113,145,232,233,234,235,236,246,247],damage_rang:235,damage_taken:88,damage_valu:[232,233,234,235,236],damn:131,dandi:65,danger:[6,14,20,40,74,95,162],dare:[22,98],dark:[14,15,17,20,62,72,106,109,112,126,131,163,200,229,239,248,256,271,337],darkcmdset:248,darker:[62,126],darkgrai:126,darkroom:248,darkroom_cmdset:248,darkstat:248,dash:[74,217,230],dashcount:230,data:[5,6,9,12,14,16,19,33,37,39,42,43,45,46,48,56,58,59,61,64,68,77,81,88,89,90,103,104,107,110,128,129,133,141,142,144,154,155,156,164,169,179,185,190,201,203,207,208,219,222,223,228,229,252,259,261,262,264,268,274,276,279,280,284,288,289,291,292,293,294,295,300,301,302,303,305,306,307,309,310,311,313,314,315,320,321,322,323,329,330,331,332,333,334,336,337,338,339,340,342,343,344,345,348,352,353,354,355,363,365,368,379,384],data_default_valu:229,data_in:[53,56,223,291,293,294,300,301,305,310,311,321,322,323],data_out:[53,223,300,302,305,306,311,321,322,323],data_to_port:279,data_to_serv:292,databa:282,databas:[2,5,8,10,11,13,14,16,17,19,20,23,30,31,32,33,34,37,39,40,41,43,44,45,49,51,64,65,66,72,74,76,77,79,80,82,83,85,88,89,90,97,98,100,102,103,105,106,108,110,113,114,116,128,129,133,136,144,147,148,149,154,158,162,163,169,176,179,183,184,185,186,187,200,207,208,210,219,235,248,251,253,254,256,259,261,262,265,266,268,269,271,272,276,282,286,288,299,313,320,329,330,331,332,333,334,337,339,340,347,349,355,356,359,361],datareceiv:[284,291,305,313],datastor:58,date:[9,11,13,23,29,49,55,58,71,91,126,128,133,141,155,163,167,222,346,352,360],date_appli:128,date_cr:[45,154,158,187,271,331,333],date_join:[155,158],date_s:23,datetim:[45,91,128,190,331,346,352,353,359,360],datetime_format:359,datetimefield:[58,128,155,158,187,261,271,331,333,359],david:131,dawn:99,day_rot:352,db3:[9,11,72,103,133,148],db_:[32,45,58,101,219,262,272,287,356],db_account:[195,259,261,271],db_account__db_kei:259,db_account__id:363,db_account__usernam:363,db_account_id:[261,271],db_account_subscript:[183,187],db_attribut:[41,155,158,187,259,261,271,333],db_attribute_categori:229,db_attribute_kei:229,db_attributes__db_kei:101,db_attributes__db_value__gt:101,db_attrtyp:[331,365],db_attryp:33,db_categori:[58,101,330,331,334,365],db_category__iequ:58,db_channel:183,db_cmdset_storag:[155,158,195,259,261],db_data:[330,334,365],db_date_cr:[58,158,183,187,195,261,271,331,333],db_desc:[271,363],db_destin:[195,259,261],db_destination__isnul:124,db_destination_id:261,db_entrytext:[252,254],db_header:187,db_help_categori:[252,254],db_hide_from_account:187,db_hide_from_channel:187,db_hide_from_object:187,db_hide_from_receiv:187,db_hide_from_send:187,db_home:[195,259,261,365],db_home__db_kei:363,db_home__id:363,db_home_id:261,db_index:58,db_interv:[269,271,363,365],db_is_act:[271,363,365],db_is_bot:[155,158,363],db_is_connect:[155,158,363],db_kei:[32,45,58,92,100,101,104,155,183,195,207,252,254,259,269,272,278,289,330,331,333,334,363,365,379],db_key__contain:45,db_key__exact:101,db_key__icontain:[58,101],db_key__iexact:101,db_key__in:101,db_key__startswith:45,db_locat:[32,101,104,195,259,261,365],db_location__db_kei:363,db_location__db_tags__db_key__iexact:101,db_location__id:363,db_location__isnul:124,db_location_id:261,db_lock_storag:[155,183,187,195,252,254,259,331,333],db_messag:[183,187],db_model:[331,334],db_obj:[269,271,340],db_obj__db_kei:363,db_obj__id:363,db_obj_id:271,db_object_subscript:[183,187],db_permiss:[58,155],db_persist:[269,271,363,365],db_properti:287,db_protototyp:266,db_receiv:183,db_receivers_account:187,db_receivers_channel:187,db_receivers_object:187,db_receivers_script:187,db_repeat:[269,271,365],db_sender:183,db_sender_account:187,db_sender_extern:187,db_sender_object:187,db_sender_script:187,db_sessid:[195,259,261],db_staff_onli:[252,254],db_start_delai:[269,271,365],db_strvalu:331,db_tag:[101,155,158,187,252,254,259,261,271,333,334],db_tags__db_categori:[85,101,363],db_tags__db_kei:[85,101,183,363],db_tags__db_key__iexact:101,db_tags__db_key__in:85,db_tagtyp:[330,334,363,365],db_text:58,db_typeclass_path:[58,124,155,195,259,261,269,333,359,363,365],db_valu:[32,101,278,289,331,365,368],dbef:356,dbhandler:379,dbholder:331,dbid:[45,156,174,333],dbid_to_obj:359,dbmodel:332,dbobj:[13,331],dbobject:[13,332,333],dbprototyp:[179,266],dbref:[9,14,31,42,45,49,54,72,90,99,104,109,113,125,154,158,167,169,179,186,201,216,219,225,248,250,256,261,262,265,266,267,271,273,332,333,339,356,359],dbref_search:332,dbref_to_obj:359,dbrefmax:169,dbrefmin:169,dbsafe_decod:355,dbsafe_encod:355,dbserial:[6,13,151,152,272,335],dbshell:[9,58,133,149],dbstore:228,dbunseri:340,ddesc:88,deactiv:[77,94,122,136,174,200,243,246,343],deactivatebuttonev:243,dead:[43,229,246,247,320,323,349],deadli:109,deal:[11,13,16,27,40,43,48,49,61,77,86,92,97,112,113,126,129,145,154,192,193,197,201,232,233,234,235,236,261,262,321,333,336,353,384],dealt:[177,178,234,235],dealth:234,death:[27,112,124],death_msg:246,death_pac:246,debat:97,debian:[11,132,133,136,138],debuff:229,debug:[1,7,15,19,27,30,37,64,97,105,106,140,160,164,168,179,201,264,282,287,293,294,305,327,337,343,352,359,386],debugg:[3,16,149,151],decemb:142,decend:160,decent:[5,218],decic:218,decid:[15,16,22,40,43,58,59,62,70,79,81,86,90,92,96,110,112,113,126,142,145,147,160,192,232,257,344],decis:[44,112,365],declar:[62,355,368],declared_field:[155,252,259,330,379],declared_filt:363,declin:[27,192],decod:[16,306,336,359],decode_gmcp:306,decode_msdp:306,decoded_text:359,decompos:128,decompress:[291,355],deconstruct:[109,180,190,228,244,308,357,366],decor:[11,22,41,66,70,83,158,261,271,279,291,292,333,339,343,344,359],decoupl:[67,266],decoupled_mut:13,decreas:[235,248,341],decrease_ind:341,dedent:[26,359],dedic:[8,106,107,112,142],deduc:341,deduce_ind:341,deduct:[96,112,232,233,234,235,236],deem:[11,63,73,89,188,384],deep:[102,131],deeper:[24,86,93,109,230],deepest:169,deepli:13,deepsiz:359,def:[3,8,13,19,20,22,26,27,30,31,32,34,37,41,42,45,48,53,62,68,71,72,74,79,80,81,82,83,84,85,86,87,88,89,90,91,92,94,95,96,97,98,104,105,106,107,108,112,113,114,115,122,123,124,125,127,128,129,131,139,193,200,229,249,250,265,311,324,341,343,351,359],def_down_mod:234,defafultobject:104,defalt_cmdset:139,default_access:[13,331,339],default_acl:190,default_categori:253,default_channel:23,default_charact:202,default_cmd:[4,68,75,80,81,82,83,84,86,87,89,90,91,94,98,105,113,151,193,195,200,212],default_cmdset:[25,40,68,81,84,86,87,89,90,91,94,104,105,114,163,193,194,195,200,201,213,215,225,230,232,233,234,235,236],default_command:[81,103],default_confirm:[169,216],default_content_typ:190,default_error_messag:355,default_hom:42,default_in:46,default_kei:229,default_out:46,default_pass:339,default_screen_width:22,default_set:[8,115],default_transaction_isol:133,default_unload:46,defaultaccount:[12,45,75,77,86,104,105,151,154,156,170,262,357,365],defaultchannel:[45,75,104,151,185],defaultcharact:[8,34,45,58,68,75,81,89,90,91,94,104,105,112,114,151,154,171,193,195,202,210,219,232,233,234,235,236,262,357,368],defaultcmdset:[198,239],defaultdict:272,defaultexit:[34,45,75,96,104,151,210,225,226,247,250,262,357],defaultguest:[75,151,154],defaultlock:256,defaultmod:352,defaultobject:[0,4,34,45,58,72,75,77,95,96,100,102,104,107,108,122,125,151,154,195,210,219,227,229,233,236,241,242,247,262,333,357,365],defaultpath:359,defaultroom:[34,45,71,75,85,88,96,104,127,151,200,210,219,248,250,262,357],defaultrout:367,defaultscript:[37,45,75,88,104,113,124,125,151,156,192,197,208,216,217,218,232,233,234,235,236,238,243,250,266,273,274,315,346,357],defaultsess:[105,172],defaulttyp:327,defaultunloggedin:[105,173,214],defeat:[109,112,113,232,233,234,235,236,246],defeat_msg:246,defeat_msg_room:246,defend:[27,109,113,232,233,234,235,236,247,262],defens:[113,232,233,234,235,236],defense_valu:[232,233,234,235,236],defer:[19,22,48,83,128,155,158,160,187,200,226,254,261,262,271,275,279,289,291,292,323,327,331,333,334,350,352,359],deferredlist:327,defin:[2,3,4,6,7,8,12,13,14,15,19,25,26,29,30,34,39,42,44,45,46,48,49,53,56,59,61,62,63,64,66,68,70,71,72,74,75,76,77,79,80,81,84,87,88,89,90,91,92,94,96,97,98,99,101,103,105,106,107,110,112,114,116,122,125,126,128,130,151,153,155,158,160,162,163,164,166,169,175,177,178,179,180,183,185,186,187,191,193,195,196,197,198,200,201,207,208,211,213,216,217,218,219,227,229,230,234,235,238,239,243,247,248,251,252,253,254,255,256,257,258,259,261,262,266,267,271,274,276,277,279,282,289,292,313,314,321,322,323,326,329,331,332,333,334,336,337,338,341,343,346,350,351,354,356,359,361,365,368,379,384],define_charact:27,definin:106,definit:[3,8,12,15,22,23,29,33,34,42,44,48,49,59,62,66,76,85,86,92,95,103,110,162,164,169,174,177,178,205,216,242,247,255,257,261,266,267,273,337,339,343,351,355],deflist:327,degrad:8,degre:[74,117],deindent:359,del:[13,31,49,83,90,109,113,167,169,200,215,216,228,229,265,333],del_callback:[206,208],del_detail:200,del_pid:282,delaccount:49,delai:[22,66,82,124,197,201,208,226,247,275,276,294,300,323,338,359],delaliaschan:174,delayed_import:323,delchanalia:174,delcom:[90,98,174],deleg:[158,187,254,261,271,331,333,334,350],delet:[8,9,11,12,13,14,20,26,27,29,31,33,34,37,40,41,43,49,54,68,72,79,103,104,105,109,113,133,136,143,144,148,154,163,166,167,168,169,174,175,176,179,184,185,187,190,200,205,206,208,209,210,212,215,216,225,228,229,243,247,254,257,262,266,272,273,274,276,288,300,321,330,331,333,336,337,343,349,364,367,368,382,384],delete_attribut:331,delete_default:[20,163],delete_prototyp:266,deletet:200,deleteview:384,deliber:[3,13,63],delic:195,delimit:[97,177,178,337],deliv:[142,212,219],delpart:216,delresult:216,deltatim:359,delux:142,demand:[44,84,90,110,112,122,142,154,185,200,229,262,324,338],demo:[68,76,93,109,117,118,119,120,121,131,245,343],demon:42,demonin:359,demonstr:[66,68,79,126,128,193,201,222,234],demowiki:79,deni:[132,145,207,211],denot:[62,88,129,337],denounc:342,depart:71,depend:[5,6,7,11,13,15,16,19,20,22,23,27,30,37,39,40,44,45,46,48,49,50,53,56,59,62,66,68,70,71,72,73,76,77,79,89,90,92,96,103,104,105,109,110,112,113,114,123,128,129,136,140,141,142,144,145,153,160,162,164,166,179,185,193,194,198,200,206,218,229,250,257,262,266,274,276,282,302,305,311,313,323,333,334,341,359],deplet:[229,234],deploi:[70,74,142,145],deploy:[2,7,74,131,142,144,147],depmsg:352,deprec:[19,27,42,151,152,267,277,352,359],deprecationwarn:281,depreci:336,depth:[2,17,50,62,109,230,267],dequ:[13,325],deriv:[8,45,60,88,133,136,138,144,249,336,360],desc:[15,23,30,31,32,34,37,42,68,72,80,86,89,90,92,95,96,98,99,104,113,124,129,163,166,169,180,193,195,200,215,216,225,229,230,235,250,271,280,337,339,341,342,343,379,384],desc_al:246,desc_dead:246,desc_lamp_broken:242,desc_lid_clos:242,desc_lid_open:242,descend:[101,379],describ:[8,10,11,13,14,15,20,22,27,29,31,36,37,42,45,46,55,58,59,61,62,64,67,68,70,72,73,74,76,77,80,84,90,91,92,96,98,99,103,104,106,107,113,128,131,136,139,141,142,149,162,169,173,174,175,187,195,197,200,217,219,229,235,242,259,267,274,279,300,302,305,315,343,358,359],descripion:246,descript:[11,15,16,23,27,29,30,37,42,43,63,64,66,68,70,71,72,74,76,80,85,86,89,90,96,99,102,110,126,128,129,135,142,155,166,169,174,175,185,192,193,195,200,215,217,219,225,228,229,230,241,242,246,247,248,249,250,252,256,259,262,271,337,339,343,353,354,368],description_str:72,descvalidateerror:215,deseri:[6,13,353,365],deserunt:28,design:[0,15,22,34,42,43,50,60,63,72,73,76,85,86,89,97,101,103,110,118,122,123,128,131,133,163,169,193,207,219,222,247,262,337,353,359],desir:[19,43,44,46,60,62,71,79,82,83,89,90,97,114,125,128,169,196,218,257,282,327,331,339,345,360],desired_perm:257,desktop:[16,50],despit:[13,14,40,77,89,94,131,136,248],dest:[249,262],destin:[22,30,34,42,66,68,71,72,81,96,97,108,125,169,210,213,222,225,226,232,233,234,235,236,247,256,261,262,267,339,384],destinations_set:261,destroi:[8,34,66,98,99,113,145,154,156,169,174,216,234,262],destroy:225,destroy_lock:364,destruct:[20,162],detach:7,detail:[0,5,9,11,12,16,22,23,27,31,34,40,42,45,49,51,59,62,63,64,67,68,70,72,73,74,77,84,86,90,97,99,103,104,105,106,109,110,113,116,123,129,136,142,155,163,164,169,185,190,193,200,216,217,219,229,233,248,250,254,259,266,267,284,285,321,323,333,336,341,351,359,367,368,382,384],detailkei:[200,248],detailview:384,detect:[2,20,22,34,40,59,94,110,123,145,161,164,178,185,294,367],determ:332,determin:[5,12,14,16,19,20,22,23,26,27,28,31,33,37,42,46,56,71,79,83,85,87,95,96,99,105,112,113,114,116,136,149,154,155,162,163,164,166,177,183,185,192,213,218,219,226,230,232,233,234,235,236,247,254,257,259,262,266,306,331,332,333,336,341,344,359,363,364],detour:[56,80,103,107,323],dev:[55,73,76,77,89,106,110,131,133,136,138,139,142,143,385],devel:103,develop:[0,2,3,5,6,7,11,16,19,22,29,31,39,42,46,50,51,55,58,59,60,62,64,67,72,73,74,76,77,78,81,88,90,97,99,100,102,103,104,105,106,107,110,115,116,126,128,135,136,139,140,142,148,167,168,174,179,185,205,206,211,222,243,254,262,267,328,333,337,343,385],devoid:336,dex:[13,27,90,104,106,342],dexter:[232,233,234,235,236],diagnos:[6,84],diagram:45,dialog:46,dialogu:[66,69,386],dice:[97,107,112,113,136,151,152,188],dicecmdset:198,dicenum:198,dicetyp:198,dict:[8,13,14,20,27,41,42,59,66,70,75,81,98,154,156,162,164,169,185,195,197,200,201,205,208,210,211,213,218,219,222,223,229,230,234,236,241,262,264,265,266,267,274,276,279,280,282,287,292,293,295,300,302,305,310,311,322,323,325,332,337,338,340,342,343,344,351,354,359,379,384],dictat:[20,91,122],dictionari:[6,13,14,20,31,42,48,66,71,76,81,88,91,92,112,113,129,167,169,190,195,197,200,201,205,208,211,213,218,219,222,223,224,230,234,235,248,250,257,267,287,300,309,321,322,323,325,332,336,338,342,343,349,353,354,355,359,379,384],did:[11,12,29,39,68,72,77,80,83,89,97,98,99,104,105,106,114,154,192,262,334,355,359],did_declin:192,didn:[3,8,27,31,39,65,68,71,74,86,87,90,97,98,99,100,104,105,106,107,109,110,116,125,126,128,140,144],die:[7,97,109,112,122,198,218,323],dies:246,diff:[11,141,198,267],differ:[3,5,7,8,11,12,13,14,15,16,19,20,22,26,27,29,31,32,33,37,40,41,42,43,44,46,50,51,53,54,56,59,61,62,63,65,66,67,68,70,71,72,73,74,76,77,78,80,81,85,86,87,89,90,91,92,93,95,97,98,99,100,101,103,104,105,106,107,110,112,113,116,117,123,124,125,126,128,131,132,135,136,144,145,148,149,151,154,155,160,162,163,166,169,178,179,181,185,193,197,198,199,208,209,212,217,219,226,229,230,232,233,234,235,236,239,249,250,262,264,266,267,271,274,276,280,284,306,311,313,330,331,333,337,339,343,352,355,359,363,367,368,384],differenti:[88,89,90,103,104,195,219,230,262,359],differet:110,difficult:[5,79,85,128,145,235,236],difficulti:128,dig:[5,20,22,34,42,53,65,66,89,90,98,99,103,105,109,114,125,169,225,314],digit:[49,62,142,217,326,336,352],digitalocean:142,diku:[76,77,93,386],dikumud:63,dime:60,dimens:[71,76],dimension:90,dimenst:107,diminish:62,dimli:72,dinner:70,dip:106,dir:[2,8,9,11,37,67,74,77,80,90,93,104,106,107,129,131,133,135,136,141,142,144,352,359],direct:[9,13,20,27,30,42,46,48,49,59,66,68,71,72,74,78,87,90,99,113,115,123,125,132,142,144,169,207,213,223,250,257,282,343,345,352,356,359,386],direction_of_split:46,directli:[3,4,5,9,11,12,14,15,19,22,26,27,31,34,37,39,42,45,46,53,59,62,70,72,73,76,77,80,83,84,87,88,90,91,98,99,100,101,102,103,104,106,107,108,110,113,114,123,132,133,140,142,144,149,164,180,185,186,190,192,193,194,198,211,219,230,235,236,243,249,253,257,261,262,266,271,288,293,302,305,310,315,321,331,333,337,339,343,357,359],director:219,directori:[1,2,7,8,9,10,11,14,19,45,46,55,64,67,73,77,79,81,90,91,92,102,103,114,116,128,129,132,136,141,144,169,190,222,282,302,303,327,337,352,359],directorylist:327,dirnam:282,dirti:76,disabl:[7,8,26,31,46,62,66,79,81,94,134,164,180,201,219,228,229,230,249,257,305,344,349,360],disableloc:305,disableremot:305,disadvantag:[90,113,142,236],disambigu:[86,140,164,184,262,333],disappear:145,discard:[185,336],disconcert:86,disconnect:[6,9,12,13,36,40,41,43,46,49,53,76,86,89,113,114,148,149,154,166,169,174,177,179,185,214,262,292,293,294,300,301,302,305,310,311,314,320,321,322,323],disconnect_al:300,disconnect_all_sess:323,disconnect_duplicate_sess:323,disconnect_session_from_account:154,discontinu:134,discord:[67,78,131,136,140],discordia:60,discourag:[77,141],discov:[97,109,331],discoveri:223,discret:103,discrimin:145,discuss:[0,22,73,76,78,79,81,92,108,113,136],discworld:59,disengag:[113,154,232,233,234,235,236],disk:[13,19,58,60,144,149,218,222,264],dislik:89,disonnect:13,dispatch:73,dispel:126,displai:[3,5,17,20,22,26,27,29,31,34,37,39,46,56,59,62,64,66,68,70,72,74,81,84,90,92,94,95,96,97,104,110,113,114,116,128,129,145,155,164,166,169,176,179,181,183,185,192,193,195,199,200,201,203,206,208,210,212,214,219,229,230,247,248,249,250,252,262,267,269,280,282,299,317,320,325,333,334,341,342,343,344,345,353,354,355,358,359,360,365,379,384],display:276,display_buff:341,display_choic:193,display_formdata:201,display_help:341,display_helptext:[264,343],display_met:203,display_nodetext:343,display_titl:193,dispos:[72,216],disput:113,disregard:22,dissect:98,dist:136,distanc:[19,45,70,71,77,85,100,218,235,236,262,359],distance_inc:236,distance_to_room:85,distant:[71,200,248],distinct:[40,65,76,77,101,236,363],distinguish:[68,164,230,236],distribut:[3,6,8,9,16,20,23,67,77,102,130,132,133,136,185,187,190,219,336,339,359],distribute_messag:185,distributor:23,distro:[132,133,136,138,140],disturb:[19,65],distutil:136,distutilserror:136,ditto:136,div:[17,42,46,50,74,115,265],dive:[68,86,107,108,117,136],diverg:56,divid:[14,77,92,197,248,359],dividend:197,divis:228,divisiblebi:92,divisor:197,django:[2,8,9,12,16,39,41,43,45,46,55,58,61,67,76,79,81,85,92,93,103,104,108,112,115,116,117,124,129,131,133,136,145,154,155,158,181,183,185,187,189,190,191,199,228,252,254,259,261,269,271,278,281,282,288,289,302,308,310,311,318,324,326,327,330,331,333,334,337,340,344,348,349,350,355,357,359,361,363,364,365,367,368,371,374,379,384],django_admin:382,django_filt:[363,368],django_nyt:79,djangofilterbackend:368,djangonytconfig:79,djangoproject:[133,379],djangowebroot:327,dmg:112,dnf:[132,136,138],do_attack:246,do_batch_delet:331,do_batch_finish:331,do_batch_update_attribut:331,do_create_attribut:331,do_delete_attribut:331,do_flush:[333,349],do_gmcp:306,do_hunt:246,do_mccp:295,do_msdp:306,do_mssp:296,do_mxp:297,do_naw:298,do_nested_lookup:169,do_not_exce:81,do_patrol:246,do_pickl:340,do_task:275,do_unpickl:340,do_update_attribut:331,do_xterm256:336,doabl:15,doc:[10,17,22,24,27,29,42,45,47,50,58,63,75,77,78,81,93,101,102,103,107,116,131,133,149,151,169,217,249,293,359,379,385,386],docker:[131,136,142,147,148,386],dockerfil:144,dockerhub:144,docstr:[29,30,74,81,86,98,104,105,164,169,180,193,206,218,219,229,230,249,343],document:[0,1,4,7,8,11,17,24,28,29,39,45,50,52,55,58,62,64,66,67,68,69,70,72,76,77,78,81,83,86,89,90,93,102,103,104,106,107,109,114,115,116,117,125,128,131,133,142,145,147,148,163,177,193,217,249,331,334,342,349,363,384],dodg:233,doe:[0,8,11,12,13,20,22,27,29,31,34,37,39,42,43,45,46,53,59,61,62,63,65,67,71,72,73,74,76,77,79,80,81,83,85,86,88,89,90,92,96,97,98,99,102,103,104,106,107,109,110,112,113,114,116,122,123,125,126,127,128,130,133,134,135,136,144,149,154,156,166,174,177,179,181,184,194,195,196,199,200,213,215,216,229,230,232,233,234,235,236,247,248,249,250,262,266,267,274,281,282,286,287,288,291,294,302,303,309,331,333,338,343,351,352,355,359,371,379,384],doesn:[0,2,8,9,13,14,16,22,27,34,45,46,55,58,59,66,67,68,70,71,72,73,79,83,85,87,89,92,97,98,104,106,107,110,112,114,116,125,126,128,130,136,139,140,141,142,145,148,149,187,190,194,200,207,208,219,234,257,275,282,295,302,306,331,336,343,354,359],doesnotexist:[154,156,158,185,187,192,195,197,200,202,208,210,216,217,218,219,225,226,227,232,233,234,235,236,238,241,242,243,246,247,248,250,254,261,262,266,271,274,289,315,331,334,339,346,350],doff:233,dog:19,doing:[2,6,8,12,13,19,20,22,27,31,34,40,44,45,46,48,62,70,71,74,77,78,79,83,85,89,90,92,98,101,104,106,107,110,126,128,129,131,142,149,154,166,192,195,207,219,230,232,233,234,235,236,241,242,246,247,250,256,262,276,313,343,349,355],dolor:28,dolphin:98,dom:46,domain:[76,132,142,145,339],domexcept:142,dominion:67,dompc:67,don:[0,3,5,6,7,8,9,11,13,19,20,22,23,26,27,29,31,37,39,40,45,46,48,56,58,59,62,64,65,66,67,68,70,72,73,74,77,78,79,80,81,83,84,85,86,87,90,91,92,93,94,96,97,98,99,101,103,104,105,106,107,109,110,112,113,114,115,116,117,126,127,128,129,133,135,136,140,141,142,145,154,156,162,163,169,174,175,176,177,178,184,185,193,198,207,211,218,219,228,233,234,235,239,243,248,249,250,257,261,262,266,267,276,286,287,294,299,300,305,307,314,321,328,333,336,337,343,349,352,355,359,364,379,384],donald:5,donat:[78,142],done:[2,5,9,11,13,20,22,23,27,31,33,41,44,46,48,55,60,67,68,71,73,74,76,77,78,79,80,81,83,84,85,86,87,88,89,90,91,92,95,96,97,99,103,104,106,107,110,112,113,114,116,122,123,124,125,126,128,136,142,144,149,154,164,166,184,185,192,198,218,236,243,250,257,261,262,274,276,282,295,299,301,303,307,311,317,320,321,323,328,331,336,337,344,349,359,384],donoth:274,dont:[131,304],doom:267,door:[19,31,34,66,68,71,96,99,108,110,145,169,225],doorwai:225,dot:[4,68,163,169,337,359],dotal:[336,358],dotpath:359,doubl:[6,68,74,89,106,128,162,181,358,359],doublet:[162,163],doubt:[68,249],down:[2,4,5,7,13,20,22,26,27,37,39,46,49,58,60,62,66,68,71,72,74,76,79,80,83,85,86,89,90,94,96,97,102,106,109,110,112,114,116,117,118,119,120,121,136,142,144,145,154,169,179,208,222,230,233,234,247,250,256,262,267,274,276,282,284,291,292,299,300,320,321,323,336,344,345,359],download:[0,9,10,11,67,77,102,131,133,136,140,141,142,144,148],downtim:[83,145,346],downward:166,dozen:[60,76,81],drag:46,dragon:[88,98,100,104,105,107],drain:229,dramat:[13,101,110],drape:195,draw:[15,71,74,85,112,345],draw_room_on_map:71,drawback:[15,27,58,82,83,90,100,112,133,194,337],drawn:[71,72,90],drawtext:112,dream:[0,63,76,110],dress:195,drf:[363,365],drink:[331,333],drive:[11,51,67,77,80,102,107,110,125,128,136,144],driven:[81,114,131,227,264],driver:133,drizzl:[37,127],drop:[9,15,22,31,33,34,46,53,58,59,67,73,76,78,80,81,89,90,92,96,98,99,100,103,104,105,106,122,123,125,133,142,169,175,195,210,216,227,233,236,242,256,262,291,333,337,359],drop_whitespac:345,dropdown:7,droplock:256,dropper:[210,233,236,262],drum:142,dtobj:359,duck:[19,106],duckclient:134,due:[5,20,22,39,41,45,49,53,55,65,68,77,83,90,91,97,106,126,136,142,163,179,210,261,262,284,320,323,330,336,352],duh:60,dull:[0,72,99],dumb:[99,323,336],dummi:[5,8,22,31,67,106,135,219,257,282,300,313,314,321,368],dummycli:313,dummyfactori:313,dummyrunn:[151,277,282,300,312,314,316],dummyrunner_act:313,dummyrunner_actions_modul:313,dummyrunner_set:[5,151,277,282,312],dummyrunner_settings_modul:5,dummysess:323,dump:[23,222,291],dungeon:[43,76,103,108],dupic:20,duplic:[20,73,74,162,169,276,333,352],durat:[48,82,127,234,353,360,386],dure:[6,13,20,29,31,37,40,41,46,53,54,64,65,67,74,76,83,107,110,113,114,116,127,131,136,144,154,180,190,200,213,216,243,246,248,249,257,259,273,291,301,337,339,343,352,379],duti:77,dwarf:72,dying:[232,233,234,235,236],dynam:[8,12,23,29,44,46,58,62,69,72,95,101,103,115,128,142,154,158,164,176,179,180,184,187,201,219,229,230,232,233,234,235,236,254,261,262,271,276,331,333,334,339,341,343,350,353,359,384,386],dynamic_split:46,dyndns_system:142,each:[2,3,6,8,12,13,14,19,20,22,23,24,27,31,37,39,40,42,43,44,45,46,48,51,53,56,58,60,62,65,66,68,71,72,74,76,77,79,83,85,88,89,90,91,92,95,96,98,101,102,104,105,106,107,110,112,113,114,116,117,119,125,126,127,128,144,154,161,162,163,167,169,178,185,192,194,195,196,200,201,213,216,218,219,229,230,232,234,235,236,244,250,254,257,261,262,267,273,276,284,287,300,302,305,309,314,321,322,323,331,333,336,337,339,341,342,343,344,345,349,351,359,365,368],eaoiui:218,earler:99,earli:[2,232,233,234,235,236,284],earlier:[2,7,11,14,20,27,30,67,77,90,91,96,98,105,106,107,110,114,115,125,129,135,287],earnest:108,earth:[95,145],eas:[20,22,58,85,104,126,142,144],easi:[0,7,8,9,11,14,17,22,27,29,34,37,45,48,55,59,60,61,65,66,68,70,72,74,76,83,85,88,91,92,94,95,96,98,105,106,107,110,112,113,114,123,126,128,129,131,133,140,142,144,163,167,174,195,201,230,343,349],easier:[13,27,37,42,48,49,58,68,73,74,76,79,81,85,88,89,90,91,92,97,98,101,104,105,106,107,109,110,112,116,117,126,142,218,230,232,233,234,235,236,247,275,324,334,344,359],easiest:[9,11,16,19,49,55,64,66,70,81,84,90,104,114,128,136,222,333],easili:[7,11,13,14,15,17,19,22,23,27,29,31,40,41,42,43,46,49,56,59,60,65,66,70,71,72,73,74,76,78,79,81,82,85,90,91,96,97,99,101,103,104,105,108,109,110,112,114,115,116,128,136,142,143,144,145,176,187,192,193,195,201,203,207,218,225,229,230,232,233,234,235,236,249,253,254,256,276,337,343,354],east:[71,72,81,87,169,213,248],east_exit:248,east_west:72,eastern:[72,91],eastward:248,eccel:345,echo1:83,echo2:83,echo3:83,echo:[0,2,19,22,26,39,42,48,49,65,71,74,76,82,83,87,98,99,105,106,113,114,123,127,137,139,142,143,144,149,154,156,167,169,174,179,195,198,210,219,241,242,246,247,248,262,280,287,302,305,341,359],echocmdset:98,echol:148,echowoo:98,econom:[58,76,103,104,107,131],economi:[37,60,110,112,124,192],ecosystem:144,edg:[11,19,50,345,359],edgi:71,edit:[0,6,7,9,13,14,15,22,25,29,31,39,42,46,53,55,58,62,64,66,67,70,72,73,79,81,84,86,88,90,91,92,94,104,110,116,117,128,129,131,133,135,138,141,144,167,169,176,179,193,199,201,205,206,208,209,214,215,216,252,257,259,262,264,266,267,331,341,364,379,384,386],edit_callback:[206,208],edit_handl:169,editcmd:68,editor:[6,11,16,22,42,55,60,66,67,68,70,72,74,75,80,89,106,107,131,136,169,176,178,179,193,215,271,337,341],editor_command_group:341,editorcmdset:341,editsheet:90,effect:[8,9,13,15,19,20,25,33,39,41,44,48,62,63,65,72,74,82,83,85,88,89,90,106,107,110,112,113,122,126,149,151,152,154,162,163,169,178,189,198,208,229,233,234,235,242,243,246,248,255,262,268,271,295,351,359,385],effici:[0,5,13,33,43,44,45,55,58,76,77,82,83,85,88,101,107,127,131,145,192,219,226,257,262,276,331,332,334,341,344],effort:[11,73,88,103,129,384],egg:141,egg_info:136,egi:284,eightbal:108,either:[5,6,9,11,14,17,19,20,22,23,27,31,37,40,42,43,45,46,49,56,62,66,67,70,71,72,73,74,79,83,85,86,87,88,89,90,92,97,98,100,101,103,104,106,107,109,112,113,114,125,126,133,142,145,149,154,156,162,163,164,179,184,185,186,193,205,211,212,214,218,219,225,229,230,232,235,236,257,262,266,267,271,273,274,276,280,291,303,307,314,332,333,334,343,345,352,354,356,359],elabor:[68,74,79,96,97,114],electr:142,eleg:73,element:[17,27,50,62,68,76,86,97,104,105,106,108,161,166,190,193,197,217,218,262,267,331,332,334,337,342,343,344,359,368],elev:[69,70,95,386],elif:[27,37,66,71,86,90,98,108,112,113,114,122],elig:190,elimin:[144,336],ellow:62,els:[3,8,11,12,19,22,27,29,31,32,37,44,46,48,49,51,62,66,67,68,70,71,72,74,80,81,83,84,85,86,90,92,94,95,96,97,98,99,105,106,108,112,113,114,122,124,125,128,129,133,142,145,190,192,195,201,217,232,233,234,235,236,250,261,311,333,359],elsewher:[12,20,43,83,90,102,104,128,163,248,282,323,331],elvish:218,emac:[15,131],email:[11,77,103,108,117,136,148,154,155,199,339,353,359,360,379],email_login:[151,152,188],emailaddress:359,emailfield:[155,379],emb:[42,62,74,90,200,267],embark:125,embed:[42,45,62,103,265,342,351,359],emerg:[31,55,145],emi:218,emit:[23,46,60,81,98,163,167,185,202,262,321,352],emit_to_obj:[163,262],emo:80,emoji:134,emot:[22,29,76,86,113,175,192,218,219],emoteerror:219,emoteexcept:219,emphas:[74,110],emphasi:74,emploi:360,empti:[3,6,8,9,11,12,15,20,22,27,32,34,44,45,46,48,58,59,62,66,67,71,74,77,86,90,92,97,98,101,103,104,105,106,107,108,112,114,115,122,129,135,136,144,148,160,161,167,169,180,193,203,205,219,229,266,267,280,287,291,313,314,330,337,339,343,345,356,359],emptor:190,empty_color:203,empty_permit:[155,252,259,379],empty_threadpool:327,emptyset:20,emul:[40,63,77,114,141,179,229],enabl:[7,46,62,126,129,132,134,139,144,145,154,185,191,201,228,305,360],enable_recog:219,enableloc:305,enableremot:305,encamp:70,encapsul:353,encarnia:131,encas:341,enclos:[25,26,106,181,199,351],encod:[19,52,72,90,293,306,310,311,336,355,359,386],encode_gmcp:306,encode_msdp:306,encoded_text:359,encompass:19,encount:[163,360],encourag:[68,78,85,97,115],encrypt:[56,132,145,174,190,302,303,307],end:[5,9,11,13,14,15,19,20,22,23,26,27,31,33,40,41,42,46,48,51,53,55,56,58,59,60,62,64,65,67,68,74,76,77,80,81,82,83,85,90,91,92,94,97,99,101,103,105,106,107,108,109,112,113,114,117,123,125,126,128,129,132,133,135,137,142,144,148,154,156,162,163,169,175,176,184,192,194,195,198,203,215,219,227,230,232,233,234,235,236,248,253,265,286,293,294,302,305,306,316,321,325,327,332,336,337,339,343,344,345,351,352,359,384],end_convers:27,end_turn:113,endblock:[92,115,128,129],endclr:[62,351],endfor:[92,128,129],endhour:81,endif:[92,128,129],endlessli:145,endpoint:[145,367,368],endpoint_url:190,endsep:359,endswith:336,enemi:[13,27,42,83,109,110,113,234,235,236,246,247,248],enemynam:27,enforc:[22,31,48,62,86,110,112,126,302,305,344,345,384],enforce_s:345,engag:[76,236,246],engin:[2,8,11,22,29,34,37,39,65,68,76,77,88,105,109,112,116,131,133,145,147,160,163,178,179,223,248,253,282,293,299,302,305,310,320,322,337,339],english:[6,16,55,61,131],enhanc:[46,62,94,106,222,336,384],enigmat:99,enjoi:[7,97,109,110,136],enough:[3,31,32,33,43,44,60,74,76,77,78,79,80,83,85,86,89,90,92,96,97,98,101,102,104,105,107,110,114,116,126,136,142,163,169,217,218,242,250,343,344,345],enpoint:365,ensdep:359,ensur:[7,8,71,92,122,126,144,230,357,384],ensure_ascii:311,enter:[0,2,3,9,11,14,15,16,19,20,22,25,27,31,33,34,42,54,56,62,63,64,66,67,68,70,72,77,80,81,83,86,87,90,91,92,96,97,105,106,109,113,114,115,117,122,128,133,136,141,144,148,151,154,161,163,168,177,178,179,184,192,193,195,200,201,211,214,230,232,233,234,235,236,246,248,250,256,262,267,271,280,321,343,379],enter_guild:27,enter_nam:27,enter_wild:250,enterlock:256,enterpris:2,entir:[8,13,14,15,19,22,26,27,31,44,45,48,51,58,60,62,68,70,71,72,83,92,97,102,103,106,110,114,116,142,193,218,219,230,249,256,257,262,267,333,337,345,349,351,359,384],entireti:[27,112,201,343],entit:339,entiti:[13,19,23,27,31,32,33,34,37,40,41,42,43,45,75,76,77,100,101,102,103,104,108,110,113,126,153,154,164,169,179,185,186,187,219,225,241,256,262,264,265,266,267,268,271,272,274,276,323,331,332,334,339,343,344,348,356,359],entitii:41,entitl:142,entranc:72,entri:[11,13,16,19,20,22,23,24,27,31,41,75,79,81,90,92,97,98,102,104,108,125,135,136,140,154,164,176,177,180,190,203,210,217,230,232,233,234,235,236,251,252,253,254,257,262,276,301,314,331,337,339,341,343,345,352,353,356,359,360,384],entriest:166,entrypoint:144,entrytext:[92,254,339],enul:132,enumar:359,enumer:129,env:[190,282,292],environ:[1,2,9,14,67,74,77,79,81,95,106,110,136,137,142,144,145,179,180,190,244,282,292,308,317,337,343,357,366,382],environment:282,eof:302,epic:131,epilog:249,epoch:[19,91,346],epollreactor:327,epub:131,equal:[5,6,20,22,50,51,62,66,70,81,85,97,99,101,104,105,125,162,200,219,228,229,232,233,234,235,236,262,359],equip:[15,62,89,103,195,232,233,235,236],equival:[9,13,14,33,39,48,53,59,62,102,106,108,136,145,149,153,169,253,300,306,331,359,364,384],eras:[67,236],err:[31,90,313,337],err_travers:[34,262],errback:[48,279,282,291,292,359],errmessag:162,errmsg:[114,352],erron:[61,114,291,345],error:[0,3,4,6,8,9,11,13,15,16,19,20,22,27,30,31,33,34,39,40,42,45,48,55,56,58,61,62,64,67,68,72,73,74,77,88,89,90,93,97,99,104,105,107,108,109,114,123,124,128,132,133,134,136,139,141,142,145,154,160,162,163,169,185,208,213,217,219,229,230,243,247,249,257,262,265,266,274,279,281,282,284,286,291,305,313,333,336,337,339,342,343,351,352,355,359,360,364,365,386],error_check_python_modul:282,error_class:[155,252,259,379],error_cmd:87,error_msg:325,errorlist:[155,252,259,379],errorlog:132,escal:[12,31,51,166,256],escap:[62,92,175,179,249,265,336,351,358,379],escript:[68,193],especi:[16,31,40,43,68,72,83,103,104,106,110,132,133,136,203,218,337,344],esqu:104,ess:28,essai:131,essenti:[7,61,71,82,88,103,131,141,186,282,339],est:28,establish:[22,40,110,112,154,210,232,262,279,291,293,300,302,305,310,313,320,322],estat:46,estim:[84,267,349],esult:262,etc:[8,11,12,13,19,22,25,27,31,32,33,34,37,40,41,42,45,46,49,53,56,58,59,60,68,71,74,75,76,77,81,83,84,86,88,89,90,91,98,99,101,102,103,110,112,113,124,126,127,131,132,133,134,136,144,145,149,154,158,160,161,162,163,166,168,169,177,178,179,185,190,192,196,197,201,203,216,218,219,225,229,233,235,239,243,249,262,265,266,267,300,302,305,309,310,311,321,322,330,331,333,336,337,339,340,341,342,343,351,352,359,363,384],etern:27,ev_channel:156,eval:[42,192,265],eval_rst:74,evalstr:257,evalu:[22,74,101,161,192,257,265],evbot:[174,323],evcast:131,evcel:[342,345],evcolor:131,evcolum:345,evcolumn:345,eve:359,eveditor:[24,68,75,151,152,193,335,386],eveditorcmdset:341,even:[0,3,5,6,7,11,13,15,19,20,26,27,31,37,40,44,45,49,51,58,60,62,63,64,67,68,70,71,73,76,77,78,79,80,81,83,85,86,88,89,90,91,92,93,96,97,101,102,104,105,106,107,109,110,112,113,114,123,126,135,136,142,145,149,162,164,167,195,197,200,201,210,218,229,232,233,234,235,236,248,249,262,267,305,345,349,359],evenia:102,evenli:[19,197,359],evenn:144,evenna:67,evenni:79,evennia:[1,2,5,6,10,12,13,14,15,16,17,19,20,22,23,24,25,26,27,28,29,30,31,32,33,34,36,37,39,40,41,43,44,45,48,51,52,53,54,56,58,59,60,61,62,63,64,66,68,69,70,71,72,73,75,77,78,80,82,83,84,85,87,91,92,93,94,96,98,99,100,101,103,104,105,107,108,109,110,112,113,114,115,116,117,122,123,124,125,127,128,129,130,134,136,137,140,143,145,147,148,386],evennia_access:132,evennia_admin:384,evennia_channel:[137,140,143,174],evennia_dir:359,evennia_error:132,evennia_gener:116,evennia_launch:[7,151,152,277,280],evennia_logo:116,evennia_vers:282,evennia_websocket_webcli:310,evennia_wsgi_apach:132,evenniacreateview:384,evenniadeleteview:384,evenniadetailview:384,evenniaform:379,evenniagameindexcli:284,evenniagameindexservic:285,evenniaindexview:384,evennialogfil:352,evennian:134,evenniapasswordvalid:326,evenniapermiss:[364,368],evenniareverseproxyresourc:327,evenniaserv:36,evenniatest:[180,209,224,244,308,357,366,382],evenniaupdateview:384,evenniausernameavailabilityvalid:[154,326],evenniawebtest:382,event:[27,41,46,69,77,112,145,151,156,192,197,207,208,209,210,211,219,222,243,271,274,324,386],event_nam:[207,211],eventcharact:210,eventdict:352,eventexit:210,eventfunc:[66,151,188,204,208],eventhandl:208,eventi:[164,193,249],eventobject:210,eventroom:210,eventu:[13,22,31,49,51,55,56,59,78,79,83,86,90,109,110,113,114,116,128,142,149,154,160,161,178,180,198,210,218,219,248,257,262,266,267,279,287,313,321,322,334,338,339,343,345,377],evenv:[2,6,7,77,79,136,141],evenwidth:345,ever:[9,11,13,14,15,16,22,37,40,43,45,49,58,61,68,72,77,86,89,97,101,104,112,123,133,148,149,256,276,293,294,300,331,343],everi:[0,2,8,9,10,11,13,14,19,20,22,27,30,37,39,42,43,44,45,46,58,60,61,62,64,66,70,71,72,73,77,79,80,82,85,86,89,91,92,96,97,98,99,101,103,104,106,107,112,113,114,116,124,125,127,128,129,136,141,142,144,154,169,174,190,195,201,208,218,219,230,232,233,234,235,236,238,243,250,262,267,274,276,287,304,314,320,329,330,331,333,343,344,345],everror:208,everybodi:86,everyon:[8,9,11,22,23,27,31,33,37,43,51,62,77,80,90,104,107,108,110,112,113,114,125,127,130,134,139,143,148,149,169,175,176,198,232,233,234,235,236,262,300],everyth:[0,2,3,6,8,9,11,13,20,31,33,39,42,44,46,51,56,61,64,67,71,72,74,76,77,80,82,90,92,94,96,97,98,103,104,105,106,107,108,109,110,112,113,116,117,120,131,136,140,141,142,144,145,148,149,159,164,174,175,177,178,179,180,181,194,199,229,248,256,261,271,286,313,321,331,333,337,351],everywher:[67,88,103],evform:[19,75,151,152,335],evgam:174,evgamedir:74,evid:140,evil:[5,15,242,267],evmenu:[19,22,24,68,75,90,96,151,152,193,201,214,227,230,264,335,344,386],evmenucmdset:343,evmenuerror:343,evmor:[24,151,152,335,386],evtabl:[19,22,71,72,75,151,152,164,201,266,335,342,344,359],evtable_arg:344,evtable_kwarg:344,exact:[5,22,27,31,63,86,101,104,108,154,161,169,178,186,219,236,253,262,266,267,332,333,355,356,359,363],exactli:[3,9,11,12,37,44,48,51,53,55,56,58,62,70,72,74,77,90,91,92,97,98,101,102,104,106,108,112,114,116,136,144,149,219,229,262,282,333,356],exam:169,examin:[7,11,12,13,22,31,44,46,49,56,65,68,90,96,97,98,99,101,112,114,154,169,192,239,247,248,314,364],exampl:[2,4,5,6,7,10,11,12,13,14,15,16,17,19,20,22,29,30,32,33,34,39,40,42,43,44,45,48,51,53,56,58,59,62,63,64,65,66,68,71,72,73,74,76,77,79,80,81,82,83,84,86,87,88,89,90,91,94,95,96,97,98,99,100,101,103,104,105,106,107,108,109,110,114,116,122,123,125,126,127,128,132,136,138,139,143,144,145,149,151,154,158,161,162,163,164,167,168,169,174,175,176,177,178,180,184,186,187,192,193,195,197,198,200,201,202,203,212,213,216,217,218,219,222,225,226,227,229,230,232,233,234,235,236,238,242,243,246,248,249,250,254,257,261,262,267,271,274,276,287,302,305,306,311,314,323,327,330,331,333,334,335,336,338,342,343,344,345,346,350,351,352,353,356,357,359,360,367,368,379,384,386],example1_build_forest:213,example1_build_mountain:213,example1_build_templ:213,example1_legend:213,example1_map:213,example2_build_forest:213,example2_build_horizontal_exit:213,example2_build_verticle_exit:213,example2_legend:213,example2_map:213,example_batch_cod:[14,151,188,237],excalibur:96,exce:[95,191,232,233,234,235,236,325,349],exceed:325,excel:[31,37,60,88,131],excempt:162,except:[6,13,15,19,20,22,26,31,34,37,42,48,51,56,62,67,68,70,72,74,77,79,80,82,83,85,86,90,97,99,101,103,105,106,107,108,113,114,123,124,125,126,128,129,136,141,142,154,156,158,160,163,164,177,178,185,186,187,192,195,197,200,202,207,208,210,211,215,216,217,218,219,225,226,227,229,232,233,234,235,236,238,241,242,243,246,247,248,249,250,254,256,257,261,262,266,271,274,282,287,289,291,303,305,307,311,315,327,331,334,336,339,342,343,345,346,350,351,352,354,359],excepteur:28,excerpt:26,excess:[31,42,68,177,178,261,337],exchang:[14,37,142,192,340],excit:[25,98,99,135],exclam:80,exclud:[77,101,108,114,124,195,216,248,261,262,341,343,363],exclude_channel_messag:186,exclude_cov:195,excluded_typeclass_path:179,exclus:[27,31,110,262,271,332,343],exclusiv:339,exe:[7,9,136],exec:[27,42,96,267,343],exec_kwarg:343,exec_str:317,execcgi:132,execut:[2,7,8,9,14,15,20,22,26,27,33,34,37,42,46,48,49,51,56,62,66,67,68,70,72,76,77,81,82,83,91,92,96,97,103,106,109,136,141,154,156,158,159,160,164,167,168,176,177,179,180,187,193,208,213,219,230,241,249,254,256,257,261,262,266,267,268,271,275,279,287,289,292,293,299,302,305,310,314,317,320,321,331,333,334,337,343,344,350,351,359],execute_cmd:[12,22,34,114,122,123,154,156,164,262,287,321],execute_command:22,executor:2,exemplifi:[53,82,107,109],exercis:[3,72,80,86,90,96,106,113,114,127,191,228,308,318,350],exhaust:68,exhaustedgener:217,exidbobj:262,exis:87,exist:[2,6,9,11,12,13,14,19,20,22,25,27,29,31,37,40,42,43,44,49,53,55,58,66,68,70,71,72,77,80,81,85,86,87,88,89,90,92,99,100,101,103,105,106,109,110,113,114,115,116,122,129,137,140,144,153,154,155,156,162,163,164,169,176,177,178,179,185,190,191,193,194,200,205,207,208,211,212,215,216,218,219,226,229,235,247,250,256,257,261,262,264,267,274,275,282,286,288,302,303,307,315,320,321,323,331,332,333,334,337,339,341,342,343,345,352,354,359],existen:321,exit:[7,9,20,26,27,31,42,45,58,68,71,72,75,76,80,85,86,90,93,96,97,98,99,100,103,104,106,107,108,109,114,125,133,136,144,148,151,160,162,163,169,179,192,193,209,210,213,214,225,226,230,236,246,247,248,249,250,256,261,262,267,302,314,331,339,341,343,344,357,363,365,368,382,386],exit_alias:[169,225],exit_back:90,exit_cmd:[27,344],exit_command:262,exit_nam:[71,169,225],exit_on_lastpag:344,exit_ther:90,exit_to_her:169,exit_to_ther:169,exit_typeclass:[250,357,382],exitbuildingmenu:68,exitcmdset:[20,262],exitcommand:262,exitnam:225,exitobject:87,exitviewset:368,exixt:300,exot:22,exp:342,expand:[11,30,34,39,62,64,65,66,71,72,76,77,78,79,80,89,90,94,96,98,99,101,103,104,105,106,107,110,114,120,122,124,127,133,142,151,152,169,188,199,225,232,233,234,235,236,262,336,345],expand_tab:345,expandtab:[336,345],expans:[87,110],expect:[6,8,9,22,23,31,33,34,41,44,48,56,59,61,62,66,67,73,74,88,90,97,103,104,106,108,109,110,114,126,129,141,142,169,177,178,190,193,205,207,217,229,243,250,256,262,266,267,280,330,333,343,344,349,368,371,384],expected_return:8,expens:[44,142,356],experi:[0,3,11,27,64,72,89,91,94,98,101,106,107,109,110,112,136,142,144,241],experienc:[1,27,77,106,110,117,131],experienced_betray:27,experienced_viol:27,experiment:[30,179,183,259,385],expert:229,expir:190,explain:[8,11,22,27,58,63,68,76,77,85,90,99,103,116,125,126,129,131,139],explan:[20,22,62,77,81,85,92,326],explicit:[20,39,53,59,63,66,68,74,92,97,116,139,217,282,304,331],explicitli:[6,20,29,31,32,33,42,43,44,45,56,58,62,67,74,79,80,84,90,96,104,105,107,136,163,164,169,217,262,267,276,333,336,339,355,365],explor:[3,12,39,45,48,56,66,72,92,99,104,106,109,113,136,179],expos:[129,145],express:[22,27,31,42,64,65,74,88,101,104,108,115,129,169,197,217,236,265,359],ext:27,extend:[19,23,45,58,60,72,74,76,85,88,92,96,98,102,103,105,106,112,115,117,118,119,120,121,122,123,128,129,131,147,148,158,164,176,180,185,190,194,196,200,208,211,250,259,261,262,333,336,353,379,384,386],extended_room:[151,152,188],extendedloopingcal:276,extendedroom:200,extendedroomcmdset:200,extens:[6,8,27,39,59,62,67,72,74,76,77,88,99,103,104,110,115,133,136,158,190,223,232,297,305,339,348,358],extent:[68,88,112],extern:[7,16,23,42,53,60,72,74,76,86,89,103,107,132,133,135,136,137,140,142,143,147,151,174,182,185,187,222,266,280,282,284],external_discord_hello:287,extra:[5,8,15,20,22,27,31,34,41,45,46,50,62,73,80,81,83,86,89,90,98,106,107,108,114,116,126,129,132,133,142,154,155,158,164,176,192,200,202,215,219,229,248,262,265,276,279,330,332,336,337,341,343,345,352,353,354,358,359],extra_environ:337,extra_spac:359,extract:[6,13,41,86,88,97,164,219,223,257,296,310,344,359],extract_goto_exec:343,extrainfoauthserv:302,extran:201,extrem:[0,9,88,97,107,149,232,233,235,236,295,353],eye:[6,62,72,267,344],eyed:116,eyes:[22,73,89],eyesight:[31,62,90],f6d4ca9b2b22:144,face:[98,109,142,145,202,326,343],facil:352,fact:[7,13,15,22,34,45,48,55,56,62,65,76,80,83,89,90,102,103,104,110,114,122,126,129,145,148,323,351],factor:[62,66,91,95,233,235,279,293,294],factori:[53,229,279,284,292,293,294,300,301,302,303,305,313],factory_path:156,fade:[60,218],fail:[8,13,14,15,19,20,27,34,41,42,48,49,61,67,79,86,97,105,109,110,113,122,125,134,136,145,149,163,178,185,198,219,225,228,229,247,256,257,262,266,274,279,280,282,286,293,294,304,325,330,331,333,351,353,355,359,384],failmsg:325,failtext:112,failur:[8,15,48,112,136,154,248,284,291,293,294,313,325,336,359],failure_teleport_msg:248,failure_teleport_to:248,faint:37,fair:[112,198],fairli:[85,92,141,195,201,230,233],fake:[196,262,313,323,331],fall:[0,6,20,37,61,72,74,77,91,104,112,151,154,178,202,219,248,359,379,384],fall_exit:248,fallback:[71,76,87,160,164,187,200,257,274,282,306,311,331,343,354,359],fals:[8,12,13,19,20,22,26,27,29,30,31,32,34,37,44,45,46,58,68,71,74,79,80,81,83,86,87,90,91,94,95,98,99,104,108,113,114,123,124,125,128,145,154,155,158,161,162,163,164,169,176,185,186,187,190,192,193,195,196,197,198,201,205,208,210,212,218,219,225,230,232,233,234,235,236,249,250,252,253,254,256,257,259,261,262,264,266,267,271,272,273,274,276,279,282,284,288,291,292,299,300,301,302,305,311,319,321,323,325,327,330,331,332,333,334,336,337,339,341,343,344,345,346,349,351,354,355,356,358,359,360,363,364,379],falsestr:201,falsi:[98,105],falter:110,fame:109,famili:[27,67,89],familiar:[1,20,22,45,67,72,83,85,90,96,97,101,104,105,106,115,128,136,142],famou:[28,341],fan:131,fanci:[2,16,17,112,195],fantasi:108,faq:[74,304,386],far:[7,11,14,20,22,59,62,66,68,70,71,72,76,80,85,86,87,89,97,99,101,103,104,106,107,110,135,141,142,144,162,236,250,256,284,309,331,341,349],fare:104,fashion:72,fast:[0,11,13,16,19,34,44,60,77,83,88,91,95,106,133,167],faster:[5,91,108,133,185,187,192,331],fastest:74,fatal:282,faulti:106,favor:19,favorit:[73,80],fear:19,featgmcp:306,featur:[0,2,3,9,11,16,17,19,20,22,23,26,41,42,45,62,63,66,68,70,71,72,73,77,78,79,81,88,89,91,93,94,96,97,98,99,109,110,114,130,136,140,145,154,163,164,200,208,219,230,249,276,299,320,324,333,341,359,384,385,386],februari:91,fed:[22,31,48,300,331,340,342],fedora:[11,132,136,138],feed:[9,16,27,42,71,76,112,143,156,174,284,301,302,333],feedback:[3,34,73,110,123,186,242,341],feedpars:[143,301],feedread:156,feel:[11,17,45,48,60,66,68,70,73,74,76,77,78,85,89,92,97,101,104,109,110,112,114,117,121,123,128,136,139,142,218,230,233,239,248],feend78:212,feint:113,felin:19,fellow:342,felt:[37,127],femal:202,fetch:[9,11,13,101,128,136,142,144,213,331,344,384],few:[2,3,8,11,13,16,17,20,22,23,26,30,31,34,48,54,58,59,62,66,67,71,74,76,77,79,86,97,99,102,104,106,110,112,113,114,125,126,131,133,145,149,179,197,218,243,261,297,306,325,336,345,359,384],fewer:[60,106,323,332],fg_colormap:358,fgstart:358,fgstop:358,fiction:[27,76,91,343],fictional_word:218,fictiv:218,fiddl:248,field:[7,9,13,23,30,32,33,34,37,41,43,45,58,64,88,90,100,104,115,128,133,135,155,158,183,187,201,205,219,236,246,252,254,256,259,261,262,266,267,269,271,272,276,289,330,331,332,333,334,342,350,355,356,363,365,379,381,384],field_class:379,field_nam:363,field_or_argnam:30,field_ord:379,fieldevmenu:201,fieldfil:[151,152,188],fieldnam:[32,90,201,272,333,349,379],fieldset:[155,183,252,259,269],fieldtyp:201,fifo:359,fifth:71,fight:[20,83,105,109,110,113,232,233,234,235,236,247],fighter:[232,233,234,235,236],figur:[0,3,5,6,11,22,31,49,56,71,73,97,102,104,115,125,128,142,192,194,197,219,282],file:[0,2,3,5,6,7,9,10,12,19,20,23,29,31,36,46,51,53,54,55,58,62,64,67,68,72,73,77,79,80,81,86,87,88,89,90,91,92,94,96,98,99,102,103,105,106,107,114,115,116,117,122,124,125,128,129,131,132,133,135,136,137,138,140,141,142,143,144,145,147,148,149,151,152,154,155,168,176,185,190,191,193,195,196,197,199,213,214,218,222,229,249,250,252,256,259,267,281,282,302,303,306,307,314,315,316,320,327,328,330,335,342,343,352,355,356,359,379,384,386],file_end:[337,359],file_name_charset:190,file_overwrit:190,filelogobserv:352,filenam:[11,19,102,190,337,342,352],filename1:282,filename2:282,filepath:190,files:190,filesystem:[136,144,145],fill:[2,7,26,62,64,71,72,86,90,106,110,128,137,201,229,265,330,331,336,342,344,345,359],fill_char:345,fill_color:203,fillabl:201,fillchar:[62,336,351,359],filo:359,filter:[7,20,23,45,58,62,85,92,101,124,128,151,162,167,193,200,219,261,262,359,361,362,368,384],filter_backend:368,filter_famili:[45,101],filter_nam:363,filterset:363,filterset_class:368,filthi:130,final_path:190,final_valu:48,find:[0,3,5,6,8,9,11,13,14,15,17,19,20,22,23,26,29,30,31,32,33,34,37,42,43,45,48,49,53,55,58,60,62,64,65,66,68,70,71,73,74,76,78,79,80,81,83,86,88,89,90,91,92,97,98,99,100,101,102,103,104,105,107,109,110,112,114,115,116,117,128,129,130,131,133,134,136,141,142,144,145,149,154,161,169,186,197,200,213,219,225,229,230,248,249,262,266,267,273,282,296,331,332,336,338,356,359],find_apropo:253,find_topicmatch:253,find_topics_with_categori:253,find_topicsuggest:253,findfoo:108,fine:[16,22,34,40,43,44,49,58,70,77,86,87,96,99,103,104,105,107,109,114,117,123,156,248,331,339,359],finer:49,finish:[9,15,22,41,48,74,83,90,109,110,114,116,128,144,151,154,164,166,177,192,200,216,247,262,282,286,294,305,320,327,338,343,359],finish_chargen:27,finit:97,fire:[7,12,19,22,27,37,41,44,70,72,80,82,83,90,99,104,107,110,123,124,127,156,160,208,234,235,262,265,267,274,282,291,293,310,343,344,349,359],firebreath:[90,104,107],firefox:140,firestorm:82,firestorm_lastcast:82,firewal:142,first:[0,3,5,6,7,8,9,11,12,13,14,15,16,19,20,22,25,26,27,29,31,34,37,39,40,41,42,45,46,48,49,50,51,53,55,56,58,60,61,62,64,67,71,74,76,79,80,83,85,86,88,90,91,92,93,94,96,97,98,99,100,101,102,103,105,107,108,109,110,112,113,114,115,116,117,121,123,124,125,126,127,128,129,133,134,136,137,139,141,142,143,144,145,147,149,154,156,158,161,162,169,177,178,181,185,187,190,192,193,195,196,197,199,200,213,214,217,218,219,225,227,228,232,233,234,235,236,238,243,246,247,248,249,250,254,256,261,262,266,267,271,274,282,286,287,289,300,302,305,306,310,311,313,314,320,323,331,333,334,336,337,339,341,342,343,345,346,349,350,351,358,359,364],first_lin:114,first_nam:155,firsthand:31,firstli:[6,34,67,100,101,142],firstspac:358,fish:[112,163,216],fist:[105,267],fit:[10,13,31,59,63,85,90,103,121,125,128,133,233,236,342,344,345,359],five:[22,72,82,101,117,121,142,163,230,359,360],fix:[0,3,6,8,14,15,19,22,27,42,45,50,56,73,77,78,89,96,104,106,107,110,114,125,130,136,141,142,149,218,282,342,344,345,355],fix_sentence_end:345,fixer:101,fixing_strange_bug:11,fixtur:[180,191,228,244,308,318,350,357,366],flag:[11,14,15,20,22,27,30,44,53,55,56,58,60,67,82,83,84,86,90,99,104,106,110,114,117,154,160,164,169,246,256,257,262,282,289,293,302,305,310,321,341,343,359],flame:[82,235],flash:[15,243],flat:[0,19,45,68,75,88,102,151,267,386],flatfil:88,flatten:267,flatten_diff:267,flatten_prototyp:267,flattened_diff:267,flatul:37,flavor:[99,142,235],flavour:[33,126],flaw:125,fled:[113,246],fledg:[16,60,114,120,128,142,168,198],flee:[113,122,236,246],fleevalu:113,flesh:[90,99],flexibl:[14,27,37,42,46,59,60,68,72,80,83,85,89,104,107,112,113,129,142,158,169,192,193,201,230,256,331,359,384],fli:107,flick:360,flip:[27,94],flood:[19,26],floor:[66,95,219,228],flow:[2,11,17,44,46,53,56,58,76,110,339,351],flower:[33,34,49,99,100,101,108,110,169],flowerpot:[49,89],fluent:131,fluffi:[104,105,107],fluid:[17,50],flurri:219,flush:[9,22,72,133,179,274,331,333,349],flush_cach:349,flush_cached_inst:349,flush_from_cach:349,flush_instance_cach:349,flusher:349,flushmem:179,fly:[19,20,22,23,27,37,42,49,76,77,80,96,101,103,104,108,115,154,175,177,178,185,187,254,262,276,289,300,303,307,331,337,346,359,384],focu:[79,110,113,117],focus:[7,88,89,110,114,131,236,365],foe:233,fold:230,folder:[7,8,9,14,15,19,46,55,58,64,69,71,72,74,76,77,80,84,89,90,92,99,102,103,104,106,112,113,114,115,116,122,123,128,129,132,136,141,144,145,148,149,152,189,213,232,233,234,235,236,282],folder_nam:77,follow:[3,5,6,7,9,11,12,13,14,15,17,20,22,23,26,27,29,30,31,34,37,43,45,46,48,50,51,53,55,58,59,62,64,66,67,68,70,71,73,74,79,81,85,86,90,91,92,95,96,97,98,99,101,103,104,105,106,107,110,112,113,114,117,122,124,125,128,129,131,132,133,135,136,137,139,141,142,144,145,149,154,156,158,160,161,164,169,177,178,180,185,187,193,195,196,198,202,208,210,212,213,219,229,230,234,235,242,248,254,256,257,261,262,265,267,271,272,286,287,297,306,310,311,314,324,331,333,336,337,339,342,343,345,351,352,359,367],follwo:257,fond:91,font:[46,72,74,81,103],foo:[8,22,27,32,41,43,53,56,59,98,101,102,103,104,106,108,230,343,357],foo_bar:59,foobarfoo:49,foolish:242,footer:[92,128,164],footnot:[16,74],footprint:179,footwear:89,for_cont:262,forai:103,forbid:86,forbidden:11,forc:[8,20,22,45,46,48,66,90,94,95,97,98,107,112,113,114,125,132,136,144,145,149,156,163,167,169,192,200,202,216,218,219,229,257,262,266,273,293,294,300,305,323,344,345,349],force_add:229,force_init:262,force_repeat:[37,113,274],force_restart:274,force_str:355,forcibl:[37,273],fore:320,forebod:200,foreground:[3,62,126,144,196,282,351],foreign:[45,101],foreignkei:[158,261,271,330,333,350],forens:223,forest:[14,43,65,72,103,200,213],forest_meadow:43,forest_room:43,forestobj:65,forev:[37,110],forget:[11,14,19,22,48,58,67,81,86,91,96,98,104,106,107,114,115,131,135,140,144,219,337],forgo:247,forgotten:[71,82,96,104],fork:[67,131],forloop:92,form:[5,6,8,13,14,19,20,22,23,27,29,30,31,34,42,43,44,45,55,56,59,61,62,63,64,69,74,75,76,77,90,98,103,105,107,108,110,113,114,117,123,151,154,155,156,161,163,164,167,169,177,178,180,183,185,186,187,192,201,202,218,219,223,229,252,254,256,257,259,262,266,267,269,272,274,276,280,300,302,306,310,321,323,330,331,332,333,336,337,339,340,341,342,345,351,352,355,356,359,360,361,365,368,378,384],form_char:342,form_class:384,form_template_to_dict:201,form_valid:384,formal:[31,110,262,306],format:[3,11,15,17,19,20,22,29,42,51,55,56,59,60,61,62,63,66,68,70,72,73,74,76,86,90,91,92,94,101,105,106,128,131,133,143,145,162,164,166,169,176,178,180,184,185,190,193,195,196,197,201,211,219,222,229,230,234,241,249,250,254,262,264,266,267,272,282,287,297,302,322,324,331,333,336,337,339,341,343,344,345,346,351,352,354,359,360,365,368],format_attribut:169,format_available_protfunc:266,format_callback:205,format_diff:267,format_extern:185,format_grid:359,format_help:249,format_help_entri:176,format_help_list:176,format_messag:185,format_output:169,format_pag:344,format_send:185,format_t:359,format_text:193,format_usag:249,formatt:[201,266,343,344],formatted_list:185,formcallback:201,formchar:[90,342],formdata:201,former:[17,77,126,133,343],formfield:355,formhelptext:201,formset:330,formstr:90,formtempl:201,formul:129,forth:[11,19,169,235],fortress:72,fortun:[9,22,79,85,92,104,109],forum:[9,67,73,76,78,89,136,142,143],forward:[3,14,15,26,27,91,92,99,117,125,126,142,154,158,187,212,222,254,261,271,327,331,333,334,342,344,350],forwardfor:138,forwardmanytoonedescriptor:[261,271,350],forwardonetoonedescriptor:[261,271,350],foul:42,found:[3,4,6,8,9,12,14,15,16,19,20,22,27,29,30,31,34,35,39,42,43,45,46,48,53,55,56,64,67,68,71,74,76,79,81,85,86,89,90,96,97,98,101,102,103,104,105,106,108,109,112,113,114,129,130,133,136,142,145,151,154,159,160,161,162,164,169,177,178,185,190,192,193,205,207,208,210,213,219,229,248,254,257,262,265,266,267,273,276,281,282,288,297,300,311,321,323,331,332,333,336,337,338,339,343,345,349,351,354,356,359,361],foundat:[71,76,101,131,232],four:[15,19,29,33,53,58,62,72,79,85,95,108,112,120,163,187,200,257],fourth:85,fqdn:142,fractal:88,fraction:8,frame:46,framework:[46,50,77,115,116,128,180,232,235,355,363,364,365,367,368],frankli:63,free:[7,10,43,55,66,68,73,76,77,83,89,101,110,113,114,126,128,131,142,190,192,219,230,233,266],freedn:142,freedom:[0,15,87,136],freeform:[112,113,195],freeli:[76,144,145,337],freenod:[67,78,131,136,140,142,156,174,323],freetext:[186,356],freez:[3,22,83,207],frequenc:218,frequent:[97,193],fresh:[9,13,20,90,104,148,282],freshli:72,fri:49,friend:[73,90,95,98,110,145],friendli:[68,74,106,128,130,158,229],friendlier:[185,262],frighten:234,from:[0,1,2,3,5,6,7,8,9,10,11,12,13,14,15,16,17,19,20,22,23,25,26,28,29,30,31,32,33,34,36,37,39,40,41,42,43,44,45,48,49,50,51,53,54,55,56,58,60,61,62,63,64,65,66,67,68,70,71,72,74,77,78,80,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,100,101,102,103,104,105,107,108,109,110,112,113,114,115,116,117,122,123,124,125,126,127,129,131,132,133,135,136,139,140,141,143,145,147,148,149,151,154,156,158,159,160,161,162,163,164,166,167,168,169,174,175,176,177,178,179,180,181,183,184,185,186,187,190,192,193,194,195,196,197,198,199,200,201,202,207,208,210,211,212,213,215,216,217,218,219,222,223,224,225,226,228,229,230,232,233,234,235,236,239,242,243,246,247,248,249,250,253,254,256,257,258,261,262,266,267,271,272,273,274,275,276,279,282,287,288,289,291,292,293,294,295,299,300,301,302,305,310,311,314,316,320,321,322,323,327,328,329,330,331,332,333,334,336,337,338,339,340,341,342,343,344,345,346,349,350,351,352,353,355,356,358,359,360,363,364,365,379,384,385,386],from_channel:156,from_db_valu:355,from_obj:[56,94,123,154,156,164,202,241,262],from_pickl:340,from_tz:360,frombox:291,fromstr:291,fromtimestamp:346,front:[11,14,31,42,46,96,98,101,106,112,132,138,145,147,150],frontend:[230,331],frontpag:[102,108],frozen:[22,83,208],fruit:216,ftabl:359,ftp:358,fuel:[80,229,235],fugiat:28,fulfil:[104,109,282],full:[0,4,6,8,9,11,14,15,16,17,19,22,27,31,32,34,37,40,42,44,45,50,59,60,64,67,72,73,74,76,77,79,80,81,89,90,93,98,99,101,102,106,107,110,112,113,114,116,120,122,125,128,129,133,134,141,142,144,148,149,156,161,163,164,168,169,174,178,179,180,192,193,198,200,203,215,218,219,229,230,235,249,257,267,272,294,300,313,323,324,331,333,334,337,341,343,345,359,385],full_justifi:[42,265],full_nam:33,full_result:198,fuller:90,fulli:[5,13,22,27,51,58,76,79,90,96,110,117,136,142,145,149,154,218,257,262,274,310,322,339,359],fun:[0,72,94,99,110,116,131],func1:[169,257,314],func2:[169,257,314],func:[3,22,26,27,31,48,56,68,74,80,81,82,83,84,87,88,90,91,94,95,96,97,98,103,105,108,112,113,114,125,139,160,164,166,167,168,169,174,175,176,177,178,179,180,181,184,192,193,194,195,197,198,199,200,201,202,206,212,213,214,215,216,219,225,226,227,230,232,233,234,235,236,239,246,247,248,249,256,257,262,293,314,318,327,341,343,344,346,359,384],func_arg:291,func_kwarg:291,funciton:235,funcnam:[30,62,103,257,265,276,351],funcool:131,functioncal:291,functionnam:[291,351],functool:136,fundament:[22,34,43,89,103,104,106,107,262],furnitur:[14,43,45],furst:229,further:[3,7,10,11,13,19,20,23,39,40,42,45,56,58,66,67,71,72,74,87,89,96,97,104,108,142,144,149,163,169,194,218,234,236,267,282,306,359],furthermor:[73,74,126],fuss:144,futur:[13,26,33,48,55,67,74,76,90,91,99,105,106,110,114,117,118,119,120,121,133,136,144,166,208,247,250,287,332,353,360],futurist:91,fuzzi:[55,253,356,359],fuzzy_import_from_modul:359,gag:134,gain:[5,13,83,101,110,164,187,219,257,262],galosch:218,gambl:198,game:[1,2,3,5,6,7,10,12,13,14,15,16,17,20,22,23,25,26,27,28,29,31,33,34,36,37,39,40,41,42,43,44,45,46,48,51,54,55,56,58,59,60,61,62,63,64,65,66,67,68,70,73,74,75,77,79,80,81,82,83,84,86,87,88,92,93,94,96,97,98,100,101,102,104,105,106,107,108,109,113,115,116,118,119,120,121,122,123,125,127,128,129,130,131,132,133,134,136,137,139,140,141,143,145,149,153,154,155,156,158,160,162,163,164,166,167,168,169,173,175,176,179,180,181,182,184,185,186,187,188,192,193,194,195,197,198,199,200,201,203,206,207,208,209,210,212,213,217,218,219,226,230,232,233,234,235,236,245,248,249,254,256,258,261,262,271,273,274,277,282,284,285,286,287,293,294,299,301,302,305,306,313,314,315,320,321,323,330,332,333,334,337,338,339,341,342,346,349,351,352,359,385,386],game_dir:[352,359],game_epoch:[19,346],game_index_cli:[151,152,277],game_index_en:135,game_index_list:135,game_map:213,game_nam:[135,372],game_slogan:[67,372],game_statu:135,game_templ:102,game_websit:135,gamedir:[27,42,117,147,282,328],gamedirnam:90,gameindexcli:285,gamemap:213,gameplai:[142,155,190],gamer:[137,140],gamesrc:19,gametim:[19,75,151,152,197,200,208,335,386],gametime_to_realtim:197,gametimescript:197,gameworld:105,gammon:[131,297],gandalf:27,garbag:331,garden:131,garment:195,gatewai:[149,311],gather:[8,22,56,69,116,127,134,160,161,248,280,284,339,356],gaug:[151,152,188],gaugetrait:229,gave:[37,77,80,97,104,126],gbg:336,gcc:[106,107,136],gear:[7,116,142,156,163,181,199],gemer:217,gen:17,gender:202,gendercharact:202,gendersub:[151,152,188],gener:[2,5,7,8,13,20,22,23,27,29,31,33,39,40,42,43,46,48,49,55,56,58,59,62,66,67,71,72,73,74,76,77,81,83,89,90,91,93,98,99,103,108,112,113,126,129,133,136,142,151,154,156,159,164,165,166,169,176,177,178,180,181,184,185,191,192,193,194,195,198,199,200,201,202,208,212,213,214,215,217,218,219,222,223,225,226,227,230,232,233,234,235,236,239,246,248,249,254,257,262,264,267,293,300,302,305,306,310,321,322,323,327,331,334,336,338,339,341,343,344,345,352,354,355,359,366,367,368,371,379,384,385,386],general_context:[151,361,370],generate_sessid:300,generic_mud_communication_protocol:306,genericbuildingcmd:193,genericbuildingmenu:193,genesi:142,geniu:216,genr:[73,77,296],geoff:249,geograph:65,geographi:85,geoip:222,geometr:72,geometri:72,get:[0,3,5,6,7,8,9,10,11,12,13,14,16,17,20,22,26,29,30,31,32,33,36,37,39,40,41,43,45,46,48,49,50,53,55,56,58,59,62,64,66,67,68,70,71,72,74,76,77,80,81,82,83,84,85,86,87,88,89,90,91,92,94,95,96,97,98,102,103,104,105,106,107,108,109,110,112,113,114,115,116,117,118,119,120,121,123,125,126,128,129,132,133,135,137,139,140,141,142,144,145,147,149,154,156,158,162,163,164,166,167,169,170,174,175,181,183,184,186,187,190,193,195,198,205,207,208,210,211,212,216,217,219,226,227,228,229,230,232,233,234,235,236,238,239,247,248,250,253,254,256,257,261,262,264,266,267,271,273,274,276,280,282,287,291,292,296,300,302,305,306,308,310,311,319,321,322,323,325,331,332,333,334,336,337,338,341,343,345,346,348,349,351,352,353,354,356,359,363,365,367,379,384,385,386],get_absolute_url:[129,185,254,333],get_account:[257,321],get_al:331,get_alia:332,get_alias:365,get_all_attribut:331,get_all_cached_inst:349,get_all_categori:253,get_all_channel:186,get_all_cmd_keys_and_alias:162,get_all_mail:212,get_all_puppet:154,get_all_sync_data:323,get_all_top:253,get_all_typeclass:359,get_attack:[232,233,234,235,236],get_attr:169,get_attribut:[332,365],get_available_nam:190,get_available_overwrite_nam:190,get_buff:341,get_by_alia:332,get_by_attribut:332,get_by_nick:332,get_by_permiss:332,get_by_tag:332,get_cach:331,get_cached_inst:349,get_callback:208,get_channel:[86,186],get_charact:321,get_client_opt:287,get_client_s:321,get_client_sess:[310,311],get_client_sessid:311,get_cmdset:184,get_command_info:[164,177],get_cont:365,get_context_data:384,get_damag:[232,233,234,235,236],get_db_prep_lookup:355,get_db_prep_valu:355,get_dbref_rang:332,get_default:355,get_defens:[232,233,234,235,236],get_display_nam:[3,68,70,90,95,219,250,262,333],get_err_msg:[31,99],get_ev:208,get_evennia_pid:359,get_evennia_vers:359,get_event_handl:211,get_exit:365,get_extra_info:[86,164,184,262,333],get_famili:[45,101],get_fieldset:259,get_form:259,get_formset:330,get_game_dir_path:359,get_god_account:286,get_height:345,get_help:[22,29,92,164,180,206,249],get_help_text:326,get_id:[128,332],get_info_dict:[299,320],get_initi:384,get_input:343,get_inputfunc:[287,306,323],get_internal_typ:355,get_kwarg:382,get_location_nam:250,get_mass:95,get_message_by_id:186,get_messages_by_channel:186,get_messages_by_receiv:186,get_messages_by_send:186,get_min_height:345,get_min_width:345,get_modified_tim:190,get_new:301,get_new_coordin:250,get_next_by_date_join:158,get_next_by_db_date_cr:[158,187,261,271,331,333],get_next_wait:211,get_nick:[332,365],get_nicklist:[156,294],get_numbered_nam:262,get_obj_coordin:250,get_object:[368,384],get_object_paramet:190,get_object_with_account:356,get_objs_at_coordin:250,get_oth:192,get_permiss:[332,365],get_pid:282,get_player_count:296,get_previous_by_date_join:158,get_previous_by_db_date_cr:[158,187,261,271,331,333],get_puppet:[12,154,321],get_puppet_or_account:321,get_queryset:384,get_rang:236,get_redirect_url:384,get_regex_tupl:219,get_respons:373,get_room_at:85,get_rooms_around:85,get_sess:323,get_session_id:365,get_stat:104,get_statu:292,get_subscript:186,get_success_url:384,get_sync_data:322,get_system_cmd:162,get_tag:[332,365],get_tag_queri:363,get_time_and_season:200,get_typeclass_tot:332,get_uptim:296,get_username_valid:154,get_valu:[287,306],get_value_displai:365,get_vari:[205,208],get_view_detail:366,get_width:345,get_worn_cloth:195,getattr:32,getbootstrap:50,getchild:327,getclientaddress:[53,302],getel:46,getenv:[282,292],getfromlock:256,getgl:46,getinput:343,getitem:229,getkeypair:302,getloadavg:141,getpeer:302,getpid:359,getsizof:349,getsslcontext:[303,307],getston:22,getter:[158,187,195,210,219,233,236,261,262,289,331],gettext:55,gfg:336,ghostli:248,giant:80,giantess:104,gid:[144,314],gidcount:313,gift:92,girl:117,gist:[218,359],git:[2,9,10,55,58,60,67,74,81,131,133,136,141,142,144],github:[10,11,55,67,70,73,78,81,86,89,102,131,136,141,143,193,310,327,359,385],gitignor:11,give:[0,4,5,8,9,12,13,14,16,19,22,27,28,29,31,34,37,40,41,42,43,44,45,48,49,51,59,61,65,66,67,68,70,72,74,76,77,79,80,81,84,85,86,89,90,91,92,93,95,96,97,98,99,101,102,103,104,105,106,107,108,110,112,113,114,115,116,117,122,123,128,129,131,133,136,141,142,143,144,145,149,160,162,163,166,175,177,178,179,184,186,193,194,195,200,217,218,227,230,232,233,234,235,236,239,248,250,256,262,271,308,321,327,333,336,345,356,357,359,365,385,386],givelock:256,given:[3,5,6,8,11,12,13,14,15,19,20,22,23,26,27,30,31,32,34,37,40,42,44,45,48,49,56,58,59,61,62,64,65,66,68,70,71,77,78,79,80,81,85,90,91,96,98,99,100,103,104,106,107,109,112,113,114,122,126,128,129,138,142,144,149,154,160,161,162,163,164,166,167,169,174,176,178,179,185,186,187,193,194,195,197,198,199,200,201,202,203,205,207,211,216,217,218,219,225,229,230,232,233,234,235,236,241,247,248,249,256,257,262,264,265,266,267,272,273,274,276,280,282,287,288,291,300,305,306,311,314,317,321,322,323,324,326,327,331,332,333,334,336,337,339,340,341,342,343,344,345,346,349,351,352,354,355,356,357,359,364,371,384],given_class:381,giver:[233,236,262],glad:97,glade:103,glanc:[19,20,22,68,85,90,97,110,193,219],glance_exit:68,glass:[216,239,242,243],glob:175,global:[11,14,22,23,25,27,30,34,39,40,42,44,45,46,60,62,65,68,77,88,96,108,110,124,127,138,144,169,190,200,208,217,219,225,256,262,265,267,268,271,279,282,287,289,292,313,314,337,338,339,343,346,351,356,357,359,372],global_script:[37,151,338],global_search:[14,19,68,90,97,154,219,262,332],globalscript:179,globalscriptcontain:338,globalth:357,globe:[116,142],glori:109,glorifi:229,gloriou:101,gloss:110,glossari:[136,386],glow:72,glu:36,glyph:291,gmcp:[30,56,76,306],gmsheet:90,gmt:103,gmud:134,gno:68,gnome:134,gnu:15,go_back:230,go_up_one_categori:230,goal:[37,55,74,97,109,110,131,145,218,385],goals_of_input_valid:379,goblin:[27,42,103,169,267],goblin_arch:267,goblin_archwizard:267,goblin_wizard:267,goblinwieldingclub:42,god:[31,99,148,286],godlik:219,goe:[0,3,22,24,53,58,66,67,68,71,73,77,83,92,107,109,112,114,123,125,141,142,162,163,236,250,262,302,305,320,321,358,359,384],goff:217,going:[0,8,27,46,53,59,66,70,71,72,78,81,90,91,92,95,97,99,101,104,106,108,110,113,115,125,128,137,142,144,147,193,210,219,232,233,234,235,236,250,262,279,284,336,343,365],goings:284,gold:[27,42,95,96,107,337],gold_valu:96,goldenlayout_config:46,goldenlayout_default_config:46,gone:[11,31,37,49,96,99,104,106,108,109,144,274],good:[0,5,6,7,8,11,12,13,15,19,20,22,27,31,33,37,39,42,45,49,53,62,66,67,68,70,71,72,73,74,76,79,80,81,85,86,88,89,92,93,96,97,98,99,101,102,106,110,112,114,117,119,125,126,128,129,131,135,136,140,142,144,145,149,154,162,163,164,180,192,207,219,305,343],goodby:302,goodgui:257,googl:[74,131,141,142,174,345],googlegroup:36,googli:116,gossip:[131,137],got:[9,14,48,98,104,105,106,107,113,230,247],goto_kwarg:343,goto_next_room:125,gotten:[11,76,236,247,262,309],graaah:122,grab:[22,98,99,112,128,175,185,247,365,384],gracefulli:[0,166,179,219,262,282,359],gradual:[14,15,83,110,131,218,229],grai:[62,126],grain:[44,339],gram:95,grammar:218,grammat:218,grand:13,grant:[11,31,51,133,187,232,233,234,235,236,256,257,266,331,364],granular:236,grapevin:[147,151,156,277,290,386],grapevine2chan:[98,137],grapevine_channel:[137,156],grapevine_client_id:137,grapevine_client_secret:137,grapevine_en:137,grapevinebot:156,grapevinecli:293,graph:[11,71],graphic:[3,5,9,31,32,56,64,72,90,151,199,203,306],grasp:[126,128],grayscal:196,great:[11,15,27,41,50,60,66,68,73,78,79,80,83,85,89,92,97,106,110,112,114,129,131,193,201,327],greater:[6,20,31,40,68,101,256,343],greatli:130,greek:16,green:[11,20,31,42,62,106,126,169,179,247],greenskin:267,greet:[25,39,40,67,70,122,287],greetjack:33,greg:131,grei:[42,126],grenad:34,grep:[11,141],greyscal:62,greyskinnedgoblin:42,griatch:[58,80,98,101,192,194,196,197,198,199,200,202,212,214,215,218,219,225,226,227,229,247,342,349,355,358],grid:[50,72,114,117,147,236,250,359,386],gridstr:359,grief:49,griefer:129,grin:[22,86],grip:74,gritti:22,ground:[72,76,80,99,101,105,117],group:[0,8,22,29,37,42,43,45,48,49,51,65,67,70,73,76,78,79,80,86,97,98,103,108,131,144,155,158,165,169,175,186,200,216,247,248,262,266,267,291,330,331,334,336,339],grow:[0,14,81,101,105,110,131,136,149,229,293,294,345,359],grown:[27,63,67,81],grudg:112,grungies1138:[212,227],grunt:[169,267],gthi:94,guarante:[13,31,37,58,73,110,142,198,208,266,300,321,333],guard:27,guess:[16,26,61,68,70,92,97,145,193,267],guest1:54,guest9:54,guest:[24,31,75,154,386],guest_en:[31,54],guest_hom:[54,128],guest_list:54,guest_start_loc:54,guestaccount:43,gui:[46,56,89,212,386],guid:[2,9,73,94,116,128,363],guidelin:[73,131],guild:[43,58,123,131],guild_memb:27,gun:80,guru:76,gzip:[190,191],gzip_content_typ:190,habit:88,habitu:44,hack:[76,112,113,291],hacker:[131,145],had:[9,15,16,20,37,51,64,67,73,76,80,83,99,101,104,105,106,107,110,114,132,142,144,168,195,247,266,267,271,274,282,333,337,344,379],hadn:[11,91,110],half:[60,254],hall:71,hallwai:71,halt:[37,72],hand:[16,27,33,34,40,53,60,73,74,76,78,88,89,90,101,105,107,110,112,129,164,175,177,178,179,192,214,365],hander:101,handi:[3,106,128,141,234],handl:[5,6,9,11,12,13,14,16,19,22,23,26,27,29,30,31,33,34,39,40,44,45,46,53,56,58,59,60,63,66,67,68,71,73,75,76,77,79,86,87,88,91,96,97,98,101,102,103,105,106,107,108,110,113,122,126,127,132,134,141,144,154,156,159,160,162,163,169,170,174,175,178,184,190,192,199,200,208,210,211,214,219,223,225,227,230,232,233,234,235,236,242,247,248,249,251,261,262,265,266,267,271,272,279,282,286,287,291,292,294,295,302,305,306,309,311,313,322,323,330,331,333,336,337,339,340,341,343,345,346,349,358,359,373],handle_egd_respons:284,handle_eof:302,handle_error:208,handle_ff:302,handle_int:302,handle_quit:302,handle_setup:286,handler:[12,13,20,22,31,32,33,34,37,39,40,43,44,45,56,58,77,86,102,103,104,112,154,160,163,178,182,184,187,192,205,208,209,211,219,229,246,250,256,257,261,262,267,272,273,275,276,287,299,300,320,323,329,330,331,333,334,338,339,342,343,353,354,359],handlertyp:334,handshak:[28,56,134,292,298,300,305],handshake_don:305,hang:[74,78,107,110,115],happen:[0,3,6,8,9,11,19,20,22,27,31,37,40,41,44,49,51,56,58,59,60,62,66,72,73,76,77,85,86,87,89,90,91,97,98,99,104,105,106,110,112,113,114,126,128,135,140,142,149,154,162,163,185,197,210,226,232,233,234,235,236,243,246,248,250,262,265,267,284,291,294,314,319,321,322,323,333,343,344,349,351,352,359,364],happend:267,happi:14,happier:97,happili:98,haproxi:[142,147,386],hard:[0,5,6,8,11,13,14,16,19,20,22,37,42,43,44,48,51,53,55,59,67,74,77,86,90,101,102,104,107,108,110,125,128,131,136,142,144,178,201,230,271,282,331,333,343],hardcod:[65,72,89,90,104,144,331],harden:136,harder:[5,8,49,88,101,104,110,247],hardwar:[142,295],hare:131,harm:[13,83,234],harvest:384,has:[2,3,5,6,8,9,11,12,13,14,15,16,19,20,22,23,26,27,29,30,31,33,34,37,39,40,41,42,43,44,45,46,48,49,50,51,53,55,56,58,59,61,62,63,64,66,67,68,70,71,73,74,75,77,79,80,81,82,83,85,86,87,88,89,90,91,92,96,97,98,99,100,101,103,104,105,106,107,108,109,110,113,114,116,120,122,123,125,126,127,128,129,130,131,132,133,135,136,137,139,141,142,144,145,148,149,150,153,154,155,156,161,162,163,164,166,168,169,177,178,179,180,181,184,185,186,191,192,193,197,198,199,200,201,208,210,212,213,216,217,219,229,230,232,233,234,235,236,238,246,247,248,249,250,254,256,257,261,262,266,267,271,274,276,282,284,286,287,291,294,296,300,304,309,310,314,320,321,322,323,325,330,331,332,333,339,341,342,343,345,349,352,353,356,359,363,364,368,379,382,384],has_account:[34,246,256,261,262],has_attribut:331,has_cmdset:163,has_connect:[86,185],has_drawn:71,has_nick:331,has_object_permiss:364,has_par:359,has_perm:[177,257],has_permiss:364,has_sub:185,has_thorn:[13,108],hasattr:[22,82],hash:[15,42,142,267,276,310,314,323,332],hasn:[68,71,217,247,330,331,384],hassl:91,hast:234,hat:[73,78,195],hau:[137,156,293],have:[0,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,19,20,22,23,25,26,27,29,30,31,32,33,34,36,37,39,40,42,43,44,45,46,48,49,50,51,53,54,55,56,58,59,60,61,62,63,64,65,66,67,68,70,71,72,73,74,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,94,95,96,97,98,99,100,101,103,104,105,106,108,109,110,112,113,115,116,118,119,120,121,122,123,124,125,126,127,128,129,130,133,135,136,137,139,140,141,142,143,144,145,147,148,149,154,156,160,162,163,164,166,169,171,174,177,178,179,180,181,185,186,187,189,190,192,193,194,195,197,199,200,201,202,207,208,210,211,215,217,218,219,222,223,229,230,232,233,234,235,236,239,243,248,249,253,254,256,261,262,265,266,267,268,271,273,274,275,276,287,292,295,296,300,302,305,306,320,321,322,323,325,328,329,330,331,332,333,334,336,337,338,339,340,342,343,344,345,351,352,355,356,357,359,360,364,365,379,384,385],haven:[3,8,9,42,68,72,79,83,91,98,122,123,124,128,129,325],hdict_cmd:176,hdict_db:176,head:[7,20,55,70,80,92,99,101,114,117,125,148],headach:110,header1:344,header2:344,header:[14,15,19,23,34,63,67,73,74,95,98,106,136,145,164,185,187,212,219,262,306,337,339,345],header_line_char:345,headi:345,heading1:345,heading2:345,headless:262,headlong:136,heal:[108,234,235,248],healing_rang:235,health:[32,42,59,84,103,110,112,113,142,203,229,267,306],health_bar:[151,152,188],healthi:229,hear:[70,83,110],heard:[72,109,256],heart:[104,126],heartbeat:[44,293],heavi:[13,19,22,31,77,95,99,112,113,114,133,190,192,219,233,295,359],heavier:233,heavili:[19,39,53,58,67,73,89,109,141,193,232,233,234,235,236,333],heed:[40,257],hei:[99,192,212],height:[28,30,46,151,287,302,321,342,345],held:[20,113,256],hello:[23,27,30,33,40,46,56,59,60,63,66,70,83,86,97,107,114,140,175,184,219,287,336],hello_valu:60,hello_world:[60,106,107],helmet:83,help:[3,5,8,11,14,15,16,19,21,22,24,25,26,27,31,40,41,42,43,46,49,51,55,58,60,61,66,68,70,71,72,74,75,77,79,83,85,86,87,89,90,93,97,98,100,102,104,105,106,108,109,110,113,114,117,126,128,131,133,136,139,140,142,148,149,151,152,159,160,162,164,165,166,177,178,180,181,187,192,197,199,201,205,206,208,212,218,222,229,232,233,234,235,236,239,248,249,256,264,275,280,282,284,285,293,300,302,303,305,307,310,311,313,314,331,332,336,339,340,341,343,351,354,355,356,357,373,379,384,385,386],help_categori:[22,29,68,86,90,92,96,98,113,114,139,164,166,167,168,169,174,175,176,177,178,179,180,181,184,192,193,194,195,198,199,200,201,202,206,212,213,214,215,216,219,225,226,227,230,232,233,234,235,236,239,246,247,248,249,253,254,262,341,343,344,356],help_cateogori:341,help_detail:384,help_entri:341,help_kei:169,help_list:384,help_mor:176,help_system:92,help_text:[176,208,379],helpact:249,helpdetailview:384,helpentri:[31,92,252,253,254,339,384],helpentry_db_tag:252,helpentry_set:334,helpentryadmin:252,helpentryform:252,helpentrymanag:[253,254],helper:[27,31,42,51,86,90,98,100,101,104,105,108,151,154,163,166,169,176,183,186,190,193,197,218,262,266,267,279,291,292,311,323,337,343,352,357,358,359,366],helpfil:176,helplistview:384,helpmixin:384,helptaginlin:252,helptext:[27,264,343],helptext_formatt:[27,264,343],henc:[4,7,55,66,68,70,106,107,248,249,256,337],henceforth:[6,11,14,31,37,40,54,65,72,87,114,127,142,323],henddher:216,her:[8,109,195,202],herbal:342,herd:133,here:[2,3,7,8,9,10,11,12,13,14,15,16,17,19,22,27,30,31,32,33,34,36,37,39,40,41,42,44,45,46,48,50,51,53,55,56,58,59,60,61,62,63,64,66,67,68,70,71,72,73,74,75,77,78,79,80,81,83,84,85,86,87,88,89,90,91,92,94,96,97,98,99,101,102,103,104,105,106,107,108,109,110,112,113,114,115,116,117,118,122,123,124,125,126,128,129,131,133,134,136,137,139,140,141,143,144,145,148,149,154,156,162,163,164,169,177,178,179,181,185,190,192,193,194,195,197,198,199,207,208,217,218,219,226,229,232,233,234,235,238,239,243,246,247,248,249,250,254,257,262,266,267,274,282,284,287,291,293,299,300,302,305,320,321,323,329,330,331,333,336,339,343,345,349,351,359,361,364,365,384],hesit:[68,85],hfill_char:345,hidden:[11,13,46,71,77,108,109,110,187,195,198,249],hide:[13,20,22,23,31,67,72,86,99,110,112,176,187,198,219,239,247],hide_from:[23,187],hide_from_accounts_set:158,hide_from_channels_set:187,hide_from_objects_set:261,hieararci:256,hierarch:[12,31,51,166],hierarchi:[31,51,54,68,79,92,110,175,195,256],high:[20,31,76,79,99,101,107,109,132,136,162,235,262,324],higher:[9,20,27,31,40,51,60,81,86,87,88,90,91,101,104,112,114,136,142,154,162,166,179,218,232,233,234,235,236,248,256,284,343,359],highest:[20,90,229,336,359],highest_protocol:355,highli:[0,17,27,31,41,44,58,67,76,77,88,106,122,203,337,349],highlight:[15,62,74,89,90,126],hijack:129,hilight:358,hilit:358,hill:33,him:[27,70,86,104,202,219],hint:[5,9,42,76,81,93,98,104,114,116,117,131,136,149,197,328,385],hire:[96,145],his:[8,27,42,70,90,195,202,219,358],histogram:359,histor:[63,91,117,281,352],histori:[11,23,26,46,77,79,86,90,99,106,133,144,163,184,201,352],hit:[11,28,67,80,83,105,109,110,112,113,156,232,233,234,235,236,246,247,280,321,352,355],hit_msg:246,hite:62,hitter:98,hnow:62,hobbi:[110,142],hobbit:91,hoc:76,hold:[0,2,6,7,11,12,14,15,20,23,27,31,34,37,39,40,42,43,45,50,54,62,65,67,69,71,72,74,77,80,86,90,96,98,103,104,110,112,113,114,116,128,136,144,162,163,188,193,195,198,217,227,230,232,233,234,235,236,245,246,247,251,256,257,266,267,268,272,277,289,291,300,310,311,313,323,333,334,335,339,342,343,345,347,352,359,361],holder:[67,92,142,331],home:[0,11,34,42,50,54,77,98,103,104,128,132,136,142,145,163,169,175,246,256,261,262,267,339,359],home_loc:169,homepag:[5,19,131,136,142],homes_set:261,homogen:[19,174,266,267,271],homogenize_prototyp:266,honor:219,honour:190,hood:[9,22,27,33,45,58,74,77,89,99,101,104,110,219,229,249],hook:[8,12,22,30,31,34,37,41,44,55,71,76,81,84,94,104,110,112,113,114,122,123,124,125,127,149,154,160,162,164,166,169,175,177,179,180,183,185,191,195,200,208,210,216,217,219,223,228,232,233,234,235,236,241,244,246,247,248,250,259,262,269,271,274,276,286,293,305,308,310,318,320,321,322,324,333,341,344,349,350,353,357,359,366,379,384],hooligan:49,hop:76,hope:[3,90,97,109],hopefulli:[0,46,71,72,86,106,109,128,132,142],horizon:91,horizont:[46,247,345,359],hors:19,host1plu:142,host:[0,11,19,34,37,49,64,77,110,121,133,143,144,145,147,190,218,327,359],host_os_i:359,hotbutton:46,hotel:142,hotspot:145,hour:[19,91,127,197,346,359],hous:[42,142,169],housecat:19,how:[0,3,5,6,7,8,9,10,11,13,14,15,16,17,19,20,25,27,29,31,32,33,37,39,40,42,43,46,48,49,51,53,54,56,58,59,60,64,65,66,68,70,71,72,73,74,76,77,79,80,81,82,83,84,85,86,87,88,89,91,92,94,95,96,97,98,99,101,102,103,104,105,106,107,108,109,110,112,113,114,115,116,117,118,119,120,121,122,123,124,126,127,128,129,132,136,140,141,142,145,147,148,149,155,156,161,163,164,178,179,180,183,184,185,193,195,197,198,202,213,217,218,219,226,229,230,234,235,236,242,246,250,252,256,261,262,267,271,276,282,287,292,296,301,306,309,313,320,321,322,323,327,330,333,337,341,343,345,352,353,358,359,379,385,386],howev:[9,11,12,13,14,15,16,17,20,22,26,31,42,44,45,48,49,53,59,60,61,62,63,64,66,68,70,72,73,74,76,79,83,84,86,87,90,91,96,97,99,104,106,108,109,112,114,124,127,133,142,149,163,164,169,176,179,180,190,193,201,203,208,217,230,235,243,256,336,344,365],howto:[74,385,386],hpad_char:345,href:[17,92,128],hrs:197,htm:297,html5:[76,103],html:[46,62,64,72,74,76,77,92,103,116,129,131,134,145,155,179,185,217,249,254,304,306,310,311,327,333,355,358,363,384],htmlchar:358,htop:149,http404:[92,129],http:[2,8,9,10,11,36,41,46,48,50,60,64,67,68,70,72,74,76,77,79,85,86,92,103,113,115,117,128,129,131,133,135,136,137,141,142,143,145,148,151,156,174,190,193,217,249,284,291,293,294,295,296,297,298,304,306,309,310,311,327,336,345,358,359,363,379,385],http_request:[64,145],httpchannel:327,httpchannelwithxforwardedfor:327,httpd:132,httprequest:154,httprespons:[155,183,259],httpresponseredirect:128,hub:[131,144,339],hue:62,huge:[8,50,58,80,83,85,91,107,110,115,250],huh:[22,68],human:[5,49,53,77,79,89,96,110,112,122,128,229,384],humanizeconfig:79,hundr:[61,128,140],hungri:58,hunt:[112,229,246],hunting_pac:246,hunting_skil:112,hurdl:71,hurri:105,hurt:[84,229],huzzah:67,hwejfpoiwjrpw09:67,hybrid:112,hype:147,i18n:[55,102,262],iac:59,iattribut:331,iattributebackend:331,ice_and_fir:108,icon:7,id_:[155,252,259,379],id_str:32,idcount:313,idea:[0,7,8,10,11,22,31,41,49,60,66,67,71,73,76,85,88,92,96,101,103,106,107,110,112,114,119,125,128,129,136,139,140,164,176,177,180,192,218,267,349,358,384],ideal:[22,63,70,73,142,158,257],idenfi:162,ident:[6,20,22,56,62,67,87,89,98,110,149,154,177,178,219,225,257,262,336,337],identif:[19,44,323],identifi:[3,5,6,20,22,26,27,30,32,37,42,44,45,56,59,66,71,74,82,84,85,86,90,92,101,104,105,110,113,129,132,133,161,164,169,174,177,178,180,184,186,193,200,218,219,230,248,257,262,266,273,276,279,282,287,289,292,306,310,319,321,323,331,332,336,342,343,351],identify_object:186,idl:[40,49,154,156,246,262,314,321,323],idle_command:22,idle_tim:[154,262],idle_timeout:156,idmap:349,idmapp:[45,58,151,152,179,187,254,289,315,331,332,333,335],idnum:186,ids:[49,90,125,200,313,323,342],idstr:[32,44,272,276,319],idtifi:186,idx:125,ietf:298,ifier:229,ifram:46,ignor:[3,11,15,19,20,22,23,27,30,31,40,45,56,58,62,74,83,90,97,98,99,103,107,112,122,125,133,142,154,161,162,163,164,169,185,200,219,256,261,262,276,282,287,293,294,309,310,311,331,333,336,337,342,343,351,354,359,360],ignore_error:154,ignorecas:[169,175,176,181,184,195,214,336,341,358],ignoredext:327,illumin:72,illus:48,imag:[7,17,46,64,79,92,103,116,128,136,142,190],imagesconfig:79,imagin:[15,20,27,70,83,98,105,109,110,113,122,127,337],imaginari:[72,80,110,131],imc2:23,imeplement:250,img:17,immedi:[16,19,22,27,30,37,42,56,66,71,77,78,83,98,101,104,106,113,124,128,129,142,144,148,160,167,179,246,293,337,339,343,344],immobil:81,immort:246,immut:[13,276],impact:126,impass:109,impati:136,imper:37,implement:[0,6,8,9,11,13,20,22,23,27,31,34,43,44,45,46,53,58,59,60,62,64,65,71,72,73,76,80,81,82,83,86,88,89,90,93,94,100,103,105,107,110,113,114,119,122,123,124,130,131,155,158,162,163,166,167,168,169,170,171,174,175,176,177,178,179,186,187,190,192,194,195,197,198,200,202,210,215,218,219,223,225,226,227,228,230,232,233,236,239,246,247,248,250,253,254,256,257,261,262,271,273,276,288,293,295,296,297,298,299,300,302,304,305,306,309,310,311,313,320,327,331,332,333,334,336,337,340,341,343,344,350,351,354,355,358,359,367,384,386],impli:[43,68],implicit:[62,97,126],implicit_keep:267,impmement:257,import_cmdset:163,importantli:[27,99,104,128,257],importerror:[4,67,79,359],impos:[76,131,325],imposs:[16,27,51,61,71,72,74,125,128,142,345],impract:[22,42,267],imprecis:349,impress:[3,72],improperlyconfigur:190,improv:[9,13,55,66,73,78,97,105,106,110,385],in_game_error:[0,145],in_templ:[331,351],inabl:145,inaccess:[31,66],inact:[37,246],inactiv:179,inadvert:236,inadyn:142,inarticul:60,inbuilt:[43,114],incant:141,incarn:379,incid:223,includ:[2,5,7,8,11,12,14,19,20,22,27,30,31,32,34,37,39,40,41,42,43,44,45,46,49,50,59,60,62,64,67,68,72,73,74,75,76,77,79,80,84,85,86,87,90,91,92,96,97,98,99,100,103,104,105,106,107,108,110,112,113,116,117,118,119,120,121,125,128,129,130,131,136,141,144,154,160,161,162,164,167,168,169,177,178,180,184,190,192,195,200,201,202,208,210,213,218,219,223,229,230,232,233,234,235,236,239,243,248,249,250,256,262,282,300,302,305,306,319,322,331,332,333,334,337,338,339,340,342,343,345,346,352,359,365],include_account:331,include_children:332,include_par:332,include_prefix:161,include_unloggedin:[300,323],inclus:332,incoher:126,incol:[90,342,345],incom:[22,39,53,59,142,155,156,161,178,183,223,233,259,269,291,295,298,301,305,306,310,311,313,321,322,323,327,343,351,364],incomplet:[164,226,345],inconsist:[6,48,217],incorpor:[166,345],incorrect:186,increas:[31,45,62,91,101,104,112,145,192,229,233,235,236,248,294,300,314,341],increase_ind:341,incred:[230,284],increment:[136,331],incur:19,indata:[53,331],inde:[67,76,97,142],indefinit:[37,234,247,339],indent:[14,15,19,26,46,63,66,67,74,89,98,106,107,311,337,341,343,359],independ:[37,66,77,88,126,148,192,214,222],indetermin:284,index:[29,58,60,64,71,72,74,88,96,104,110,116,125,131,142,147,161,175,192,230,247,254,280,284,285,327,334,336,344,345,359,379,382,384,386],index_to_select:230,indexerror:[129,250,332],indextest:382,indic:[66,68,71,72,74,91,96,97,99,106,107,132,156,169,176,177,178,190,202,223,230,271,293,294,302,309,310,323,325,327,337,343,344,359],individu:[13,14,15,22,23,42,59,66,68,70,71,72,76,80,86,89,90,96,104,107,112,127,130,139,142,163,167,184,198,205,208,235,243,256,264,265,267,321,334,336,345,351,353,354],ineffici:[44,122,336],infact:22,infinit:[66,110,136,156,250,266],inflict:[37,234],inflict_condit:234,influenc:[27,37,48,50,68,70,114,192,359],influenti:131,info1:227,info2:227,info3:227,info:[0,7,11,13,14,17,19,22,25,28,29,34,35,37,39,40,43,45,50,58,59,73,76,77,81,90,103,104,106,115,130,133,136,144,154,156,158,166,167,169,179,181,185,188,192,194,199,200,203,212,248,254,262,282,287,291,299,300,320,321,323,332,333,334,339,342,352,359],infomsg:352,inforamt:[219,250,262,333],inform:[2,8,11,12,19,22,23,27,29,32,37,39,40,42,43,46,54,56,58,62,64,66,67,68,70,74,76,81,82,86,92,96,97,98,99,103,106,112,113,114,115,116,122,124,127,128,129,132,133,137,144,145,154,156,164,167,169,175,179,184,187,193,198,210,217,219,223,224,229,234,235,236,254,262,274,282,287,296,297,298,300,309,322,323,332,333,336,339,341,352,359,379],infrastructur:[56,74,77,142,145,160,292],infrequ:70,ing:[15,67,90,105,198],ingam:70,ingame_python:[151,152,188],ingame_tim:91,ingo:[20,27,30,62,90,162,294,351],inher:[33,48,60,79,229],inherit:[2,3,8,12,19,20,22,34,37,42,45,53,58,62,68,77,84,89,92,94,98,100,102,104,105,108,114,122,158,162,164,169,177,179,180,185,187,192,193,195,200,202,210,216,219,226,229,232,233,234,235,236,246,248,249,258,261,262,267,271,273,322,329,332,333,341,344,345,349,357,359,365,368,384],inheritng:267,inherits_from:[122,129,179,359],inifinit:266,init:[7,11,39,46,53,67,68,71,74,90,102,117,136,141,148,192,193,201,239,261,273,282,300,301,311,323],init_delayed_messag:201,init_evt:344,init_f_str:344,init_fill_field:201,init_game_directori:282,init_iter:344,init_mod:[163,273],init_new_account:359,init_pars:249,init_queryset:344,init_rang:236,init_sess:[53,322],init_spawn_valu:266,init_str:344,init_tree_select:230,init_tru:163,initi:[6,8,10,11,13,22,26,27,29,40,41,46,67,71,74,77,80,83,90,96,98,102,110,112,114,124,128,149,154,155,156,163,164,180,184,185,187,190,192,199,201,205,209,211,218,219,229,230,232,233,234,235,236,246,247,252,259,261,262,272,275,276,279,280,282,284,285,286,291,292,293,295,296,297,298,300,301,302,303,304,305,306,307,309,310,311,313,321,322,323,330,331,336,338,341,342,343,351,354,355,359,373,379,384],initial_formdata:201,initial_ind:345,initial_setup:[151,152,277,320],initialdelai:[279,293,294],initialize_for_combat:[232,233,234,235,236],initialize_nick_templ:[331,351],initil:310,inject:[103,145,321,337,343],inlin:[39,46,89,96,155,183,252,259,269,280,330,351],inlinefunc:[39,42,56,103,151,152,265,323,335],inlinefunc_en:[62,351],inlinefunc_modul:[62,351],inlinefuncerror:351,inlinefunct:[62,351],inlinepars:351,inlist:359,inmemori:331,inmemoryattribut:331,inmemoryattributebackend:331,inmemorybackend:331,inmemorysavehandl:354,innoc:[49,167],innocu:145,inobject:291,inp:[27,169,186,280,344,359],inpect:27,input:[8,11,15,16,17,19,20,26,30,33,39,40,42,44,46,48,53,56,61,62,64,67,68,72,75,76,78,84,86,89,90,93,97,98,99,103,104,105,117,123,128,131,149,154,159,160,161,164,169,174,176,177,178,179,180,184,186,193,198,201,213,214,218,219,223,228,229,230,235,247,253,262,265,267,280,287,291,302,310,321,323,331,332,341,342,343,344,345,351,353,355,359,360,379],input_cmdset:343,input_func_modul:[30,287],input_str:343,input_validation_cheat_sheet:379,inputcmdset:343,inputcommand:[30,56,59],inputcompon:46,inputdebug:[30,287],inputfuc:103,inputfunc:[24,39,53,103,151,152,156,277,310,321,323,386],inputfunc_nam:310,inputfunct:30,inputhandl:151,inputlin:[33,175,331,332],insecur:142,insensit:[101,108,184,200,219,248,332,371],insert:[14,15,26,33,42,62,77,81,90,106,117,139,163,202,215,265,337,345,351,359],insid:[3,5,7,8,13,14,16,19,20,22,27,29,31,34,36,37,40,42,45,48,51,58,59,60,62,64,66,70,72,74,77,80,81,82,89,92,95,96,97,98,99,101,102,103,106,107,108,112,114,116,122,125,127,128,129,133,139,140,144,149,151,156,179,190,193,200,203,207,208,219,246,250,256,261,262,265,282,299,320,327,337,338,351,359],inside_rec:256,insiderecurs:256,insight:[3,86,99,109,116],insist:[97,142],inspect:[27,49,96,133,154,169,192,280,282,343],inspectdb:58,inspir:[8,22,63,86,112,113,194,202,345,359],instac:[164,262,321],instal:[0,3,6,7,8,9,10,15,55,60,66,70,73,74,76,77,86,89,90,99,102,106,109,115,117,129,131,135,137,138,143,145,149,151,190,192,194,195,196,198,199,200,212,214,215,216,219,223,225,226,232,233,234,235,236,385,386],installed_app:[8,58,79,92,128,129],instanc:[3,6,8,10,11,12,13,17,19,26,27,32,37,40,41,42,46,50,55,66,68,70,77,81,82,83,85,86,88,89,90,91,92,96,97,98,100,101,103,104,106,108,110,113,115,116,125,126,132,145,154,155,158,160,161,162,163,164,173,176,178,179,183,185,187,191,193,208,210,211,213,217,230,249,250,252,254,259,261,262,266,267,269,271,275,276,279,282,291,292,293,294,295,296,297,298,300,304,305,309,313,314,322,323,327,330,331,333,334,336,339,340,343,345,349,350,355,359,360,363,364,365,367,368,379],instanci:193,instant:116,instanti:[8,22,58,107,154,163,180,229,239,273,276,299,320,323,331,342],instantli:330,instead:[0,5,7,8,9,11,13,15,19,20,22,23,27,31,32,34,37,39,40,42,43,45,48,49,50,51,56,58,62,64,66,67,68,70,71,72,73,74,77,80,81,83,84,85,86,89,90,91,96,97,99,100,101,103,104,105,106,107,108,113,114,115,116,117,122,123,125,126,127,128,129,131,133,136,138,142,144,145,147,149,154,156,163,164,166,167,169,171,174,178,179,181,193,198,199,201,210,211,214,219,226,230,232,233,234,235,236,242,247,249,250,256,257,262,267,276,282,310,311,321,325,330,331,333,334,339,343,349,352,354,355,356,359,379,384],instig:167,instil:[65,234],instr:[291,359],instruct:[3,5,6,7,11,14,15,19,30,56,66,67,70,73,74,76,84,89,90,96,102,106,107,109,110,117,131,132,133,136,141,142,144,147,148,154,164,179,190,213,219,223,267,276,279,282,292,294,300,305,306,310,311,313,321,323,343,353],integ:[20,22,40,42,45,62,85,96,97,114,161,195,197,198,201,229,232,233,234,235,236,248,256,262,265,332,351,355,359,360],integerfield:[128,379],integr:[1,46,55,77,79,86,107,110,129,131,145,180,219,285,287,343,363,386],intellig:[56,97,112,129,145,163,190,313],intend:[3,11,14,17,19,20,22,23,42,43,46,60,62,68,72,73,76,99,110,116,126,142,145,154,174,189,190,192,193,219,243,254,262,267,300,332,334,339,340,342,345,351,356,357,360,384],intens:[5,62,101,131],intent:[55,145,218,359],inter:14,interact:[3,7,12,22,27,53,60,74,76,83,88,99,107,109,110,113,128,131,133,144,149,151,168,236,242,282,299,337,352,359],intercept:323,interchang:[113,117,343,384],interest:[0,3,5,13,15,22,42,53,58,62,66,68,70,71,73,76,78,79,80,89,97,99,107,109,110,114,116,117,124,125,131,142,145,163,178,192,197,248,250],interf:136,interfac:[2,3,6,31,39,46,53,64,67,68,72,77,78,80,81,92,102,106,128,131,133,136,142,166,169,183,185,262,274,293,322,327,331,334,336,384],interfaceclass:302,interfer:[6,133],interim:[44,83],interlink:[299,320],intermediari:[219,257,272,343],intern:[9,13,16,19,23,27,31,33,37,39,40,41,42,43,48,53,55,59,61,74,101,102,103,113,136,142,144,145,149,154,156,184,187,199,202,219,229,241,250,262,266,273,310,311,331,333,334,336,340,343,345,351,359],internal_port:142,internation:[61,386],internet:[22,48,49,50,53,136,140,142,145,148,167,279,284,292,293,294,302,305,313,327],interpret:[3,5,22,37,39,42,88,97,106,107,129,145,164,168,169,266,267,310,336,351,355],interrupt:[136,160,164,180,205,208,211,302],interruptcommand:[22,97,151,160,164],interruptev:211,intersect:[20,162],interv:[30,37,44,77,113,124,125,127,156,197,208,229,232,233,234,235,236,238,242,243,246,248,265,271,274,276,287,339,346,359],interval1:276,intim:[20,22],intimid:90,intoexit:169,intpropv:114,intricaci:91,intrigu:135,intro:[79,92,98,107,109,117,129,248],introduc:[0,6,8,11,20,83,89,112,114,219],introduct:[1,11,14,15,16,50,51,69,93,99,105,115,117,118,119,120,121,136,193,385,386],introductori:[76,136],introroom:248,introspect:216,intrus:126,intuit:[11,27,58,68,97,110],intxt:19,inv:[20,95,175,195],invalid:[13,42,86,97,154,201,219,229,243,266,345,355,359,360],invalid_formchar:342,inventori:[6,19,20,31,80,81,96,97,98,99,101,105,108,175,195,219,256,262,333],invers:[31,62,98,104,126,219,228,308,358],invert:[62,126],investig:104,invis:134,invit:[48,66,110,121],invitingli:99,invok:[13,14,15,37,222,256],involv:[29,31,34,40,41,52,53,88,105,110,113,114,141,201,236,333,334,336,364],ioerror:337,ipregex:167,ipstart:[136,144,149],iptabl:145,ipython:[0,90],irc2chan:[98,140,174],irc:[0,11,23,67,76,78,131,136,143,147,151,156,174,182,277,287,290,300,323,386],irc_botnam:156,irc_channel:156,irc_en:[140,174,256],irc_network:156,irc_port:156,irc_rpl_endofnam:294,irc_rpl_namrepli:294,irc_ssl:156,ircbot:[156,294],ircbotfactori:[156,294],ircclient:[294,323],ircclientfactori:300,irchannel:[140,174],ircnetwork:[140,174],ircstatu:98,iron:[192,385],ironrealm:306,irregular:[238,246,248],irregular_echo:246,irrelev:[145,291],irur:28,is_account_object:88,is_act:[155,271],is_aggress:122,is_anonym:[79,92],is_anyon:79,is_authent:128,is_ban:154,is_bot:158,is_build:79,is_categori:230,is_channel:[22,86,184],is_connect:[158,262],is_craft:83,is_dark:104,is_exit:[22,164],is_fight:83,is_full_moon:81,is_giving_light:247,is_gm:90,is_in_chargen:114,is_in_combat:[232,233,234,235,236],is_inst:19,is_it:359,is_iter:359,is_lit:[247,248],is_next:[158,187,261,271,331,333],is_o:359,is_ouch:[13,108],is_prototype_bas:266,is_sai:123,is_staff:155,is_subprocess:359,is_superus:[12,79,154,155,158,257,262,339],is_thief:176,is_turn:[232,233,234,235,236],is_typeclass:[154,333],is_valid:[37,125,128,192,243,271,274,359],is_valid_coordin:250,isalnum:336,isalpha:336,isbinari:[293,310],isclos:46,isconnect:46,isdigit:[62,90,336],isfiremag:82,isinst:[85,359],island:213,isleaf:311,islow:336,isn:[3,17,26,66,68,70,79,86,88,91,92,97,101,136,193,205,209,236,248,249,284,330,336,353,371],isnul:355,iso:[16,61],isol:[8,14,73,74,77,97,106,110,117,136,144,148],isp:[142,145],isspac:336,issu:[3,5,8,11,13,14,15,20,22,34,45,48,60,65,68,72,73,74,78,80,83,90,96,107,114,126,131,132,133,135,136,142,145,266,282,313,314,345,385],istart:[3,149,151],istep:314,istitl:336,isub:113,isupp:336,itch:[110,136],item:[27,29,46,58,92,95,96,99,102,103,113,122,136,175,190,192,195,201,219,234,239,250,262,301,331,351,359],item_consum:234,item_func:234,item_kwarg:234,item_selfonli:234,item_us:234,itemcoordin:250,itemfunc:234,itemfunc_add_condit:234,itemfunc_attack:234,itemfunc_cure_condit:234,itemfunc_h:234,iter:[6,13,27,43,71,98,104,154,213,219,241,250,262,267,274,311,313,331,333,336,337,340,344,359],iter_cal:344,itl:[68,193],its:[3,5,8,9,10,11,12,13,15,16,19,20,22,26,27,28,29,31,32,34,37,39,40,42,44,45,46,49,50,53,56,58,59,62,63,64,66,67,68,71,72,73,74,76,77,78,80,81,83,85,86,87,88,89,90,91,92,94,95,96,97,98,99,101,102,103,104,105,106,107,108,109,110,112,114,115,116,117,122,123,125,126,128,129,133,136,137,140,141,142,143,144,145,154,155,156,158,160,161,162,163,164,167,169,177,178,179,185,186,192,193,201,202,208,210,216,218,219,226,229,230,232,233,234,235,236,241,242,243,246,247,249,250,256,261,262,267,274,275,276,282,287,291,295,308,309,310,311,314,322,323,327,328,330,331,332,333,334,337,342,343,345,349,351,352,353,354,355,356,359,363,379,384],itself:[2,7,8,11,13,16,17,19,22,27,29,31,34,39,40,44,45,53,58,62,64,66,67,68,70,71,72,73,74,76,77,79,80,81,83,86,87,95,96,98,99,102,103,104,106,107,108,109,113,114,116,123,128,129,130,133,136,141,147,148,154,156,184,185,193,198,201,211,217,219,229,230,235,238,247,248,250,251,256,262,264,267,275,282,306,311,323,327,330,331,334,336,339,341,343,354,356,361,379,384],iusernamepassword:302,iwar:96,iweb:142,iwebsocketclientchannelfactori:293,iwth:276,jack:33,jail:[14,49],jamochamud:134,jan:[49,91],januari:91,jarin:142,java:106,javascript:[46,59,64,76,116,145,190,310,311],jenkin:[114,195,201,203,230,232,233,234,235,236],jet:235,jetbrain:[7,131],jinja:103,jnwidufhjw4545_oifej:67,job:[22,31,86,92,154],jobfusc:218,john:[90,227],johnni:[222,223],johnsson:33,join:[23,43,67,68,71,78,90,101,110,113,114,128,136,137,140,154,174,185,190,192,218,336,359],join_fight:[232,233,234,235,236],join_rangefield:236,joiner:185,jointli:[77,163],joker_kei:[68,193],journal:72,json:[46,56,59,222,293,306,310,311,340,365,368],jsondata:59,jsonencod:311,jsonifi:311,judgement:112,jump:[0,11,14,15,27,28,34,60,71,76,80,86,87,110,136,230,280],junk:291,just:[0,3,4,5,6,7,8,9,11,13,14,15,16,17,19,20,22,23,27,28,29,30,31,33,34,37,40,41,42,43,44,45,46,48,49,51,53,55,56,58,59,61,62,64,65,66,67,68,70,71,72,73,74,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,94,96,97,98,99,101,102,103,104,105,106,107,108,109,110,112,113,114,115,116,117,122,123,124,125,126,127,128,129,131,133,135,136,142,144,148,149,154,162,163,164,167,169,177,178,179,180,184,190,192,193,195,198,200,205,207,208,210,219,227,229,230,232,233,234,235,236,239,243,246,248,250,256,257,262,266,267,272,287,300,310,320,327,331,332,333,336,340,341,343,345,354,355,359,360,384],justif:[344,359],justifi:[42,265,336,344,359],justifii:344,justify_kwarg:344,kavir:306,kcachegrind:5,keen:73,keep:[0,3,6,9,11,13,14,15,16,22,23,27,29,36,40,42,50,55,66,67,77,79,81,83,84,88,89,90,91,92,94,95,96,97,98,101,105,106,107,109,110,112,113,123,125,126,127,128,129,130,136,141,144,148,156,200,203,208,217,222,243,247,248,266,267,273,284,325,343,345],keep_log:[23,185,339],keepal:[40,305,311],keeper:96,keepint:77,kei:[0,3,6,8,11,13,14,19,20,22,23,26,28,30,31,32,34,37,41,43,44,45,46,48,58,59,62,63,66,67,71,72,74,75,80,81,82,83,84,85,86,87,88,89,90,91,92,94,95,96,97,98,100,104,105,106,107,113,114,119,124,125,128,132,139,154,156,158,160,162,163,164,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,184,185,186,192,193,194,195,197,198,199,200,201,202,206,207,212,213,214,215,216,218,219,225,226,227,229,230,232,233,234,235,236,239,246,247,248,249,250,254,256,261,262,265,266,267,271,272,273,274,276,280,282,287,288,289,291,300,303,306,307,309,310,311,314,321,322,323,325,331,332,333,334,338,339,341,342,343,344,352,353,354,356,359,363,379,384],kept:[8,22,31,89,97,103,169,207,208,267,331],kept_opt:230,key1:215,key2:[27,215,262],key_mergetyp:[20,162,239],keydown:46,keyerror:[266,276,354],keyfil:[303,307],keynam:[185,267,339],keypair:302,keys_go_back:[68,193],keystr:334,keystrok:302,keywarg:[180,228,244,308,318,357,374],keywod:345,keyword:[5,8,13,19,22,23,26,27,28,30,31,37,41,42,44,45,48,56,58,62,66,68,81,83,84,90,91,94,97,100,101,106,114,129,154,156,160,164,169,175,185,190,195,197,200,205,207,208,210,211,218,219,223,232,233,234,235,236,248,249,257,262,265,266,267,272,275,276,280,282,287,291,293,294,300,301,302,305,310,311,321,322,323,325,331,332,333,339,342,343,344,345,349,351,353,355,356,359,384],keyword_ev:211,kick:[20,27,49,90,142,156,162,167,174,181,199,262,344],kildclient:134,kill:[5,19,27,37,40,99,103,110,113,141,144,179,192,246,247,272,273,274,276,282,320,327],killsign:282,kilogram:95,kind:[6,13,31,39,53,66,73,74,97,104,105,106,113,118,123,125,128,232,233,234,235,257,333,360],kindli:126,kitchen:[87,105,169],knew:[104,106],knock:[27,109],knot:195,know:[0,3,5,6,8,9,11,12,13,14,15,16,20,22,27,30,31,32,34,37,39,40,45,48,50,53,56,58,61,62,66,68,71,72,73,74,77,78,80,83,85,86,87,88,89,90,92,94,95,96,97,98,99,101,103,104,105,106,107,108,110,112,113,116,117,122,123,125,126,127,128,129,131,132,133,135,140,142,143,144,149,164,168,169,177,178,180,184,192,207,212,218,230,235,247,261,262,287,321,323,330,331,337,338,343,359,384],knowledg:[14,16,22,76,134,304,323],known:[22,26,31,33,36,44,45,46,62,78,99,112,129,131,134,147,153,178,235,344,385],knuth:5,kobold:110,koster:131,kovash:27,kwar:333,kwarg:[22,27,30,31,32,41,42,44,45,46,48,53,56,59,62,81,83,86,90,94,123,125,127,129,154,155,156,157,158,160,164,166,167,168,169,174,175,176,177,178,179,180,181,184,185,186,187,190,192,193,194,195,197,198,199,200,201,202,205,206,207,208,210,212,213,214,215,216,217,218,219,223,225,226,227,229,230,232,233,234,235,236,238,239,241,242,243,246,247,248,249,250,253,254,256,257,259,260,261,262,264,265,266,267,270,271,272,274,275,276,279,280,284,287,288,289,291,292,293,294,299,300,301,302,303,305,306,307,310,311,315,320,321,322,323,324,325,327,330,331,332,333,334,336,341,342,343,344,345,346,348,349,351,352,353,354,355,356,357,359,360,363,365,368,379,382,384],label:[43,58,65,99,108,117,128,363,379],label_suffix:[155,252,259,379],laborum:28,lack:[14,63,74,88,98,110,219,262,331,359],ladder:90,ladi:104,lag:[71,136],lair:15,lambda:[27,42,48,85,92,208,267,359],lamp:[72,239,242,243],land:[97,113,246,247],landscap:[72,145],lang:218,langcod:219,langnam:219,languag:[8,10,16,45,46,52,53,60,61,62,63,74,76,77,88,89,90,97,98,101,102,103,104,105,106,123,131,145,218,219],language_cod:55,languageerror:[218,219],languageexistserror:218,languagehandl:218,larg:[6,8,13,14,15,27,42,48,50,58,60,73,76,88,99,109,110,117,133,142,218,250,300,337,342,349],larger:[15,29,31,58,60,71,74,89,95,106,110,200,308,336,349,359,385],largest:229,largesword:58,last:[0,2,3,8,11,13,14,15,20,22,23,27,30,33,34,40,41,46,55,58,68,79,83,90,92,97,100,105,106,107,108,109,113,116,125,126,129,135,149,160,161,163,169,174,175,190,192,197,200,208,210,219,230,232,233,234,235,236,243,262,286,336,337,338,343,344,345,346,352,359],last_cmd:[22,104],last_initial_setup_step:320,last_login:155,last_nam:155,last_step:286,lastcast:82,lastli:[72,94,128,160],lastsit:81,late:338,later:[6,11,12,13,14,22,23,30,32,42,44,45,49,53,55,56,58,62,65,66,67,68,70,72,74,76,77,90,92,94,98,99,101,104,105,106,107,110,112,114,117,122,124,125,128,133,136,142,162,166,167,169,177,178,197,216,219,267,276,302,334,359],latest:[2,11,19,20,74,77,80,90,136,141,143,169,174,179,210,262,267,301,325,343,352,363],latin:[16,61,262,359],latin_nam:262,latinifi:[262,359],latter:[19,23,31,34,44,77,83,97,126,219,229,271,273,334],launch:[5,7,8,15,37,80,96,109,135,136,141,142,149,163,239,281,282,292,294,313,341,359],launcher:[5,7,281,282,291,292,313],law:131,layer:[20,68,102,107,261,333],layout:[9,19,36,45,46,71,88,90,93,104,108,118,250],lazi:359,lazy_properti:[229,359],lazyencod:311,lazyset:352,lc_messag:55,lcnorth:62,ldesc:88,ldflag:141,lead:[13,14,17,20,27,37,56,58,66,68,71,72,73,77,88,92,99,101,108,110,125,131,133,145,154,161,162,169,179,208,211,217,225,262,267,306,321,331,333,343,345,351,359],leak:64,lean:219,leap:[91,106,123],learn:[3,7,11,16,17,20,22,29,31,50,60,66,68,70,71,83,88,89,92,94,98,100,101,102,104,105,106,107,109,116,126,129,131,136,148,218,235],learnspel:235,least:[3,7,22,27,31,37,58,71,76,85,89,90,104,106,107,110,112,115,117,125,132,142,154,163,186,192,218,229,253,262,267,274,336,342,345,356,359],leasur:246,leather:96,leav:[5,12,30,37,46,66,68,80,81,90,96,99,112,113,114,117,145,166,168,169,174,185,192,193,248,250,256,262,310,311,343,349,365],leavelock:256,leaver:185,led:104,left:[2,19,22,30,31,37,42,46,58,62,68,72,85,86,89,92,96,97,101,105,109,154,169,175,177,178,203,232,233,234,235,236,247,250,257,265,267,333,336,345,359],left_justifi:[42,265],leg:319,legaci:[42,59,148,154,219],legal:[142,145],legend:[26,71,213],leisur:360,len:[42,62,71,81,90,96,101,108,113,124,125,139,161,178,197,359],lend:26,length:[29,54,58,68,71,81,91,97,106,109,133,139,142,161,190,197,201,203,211,218,219,284,325,331,336,345,359,384],lengthi:81,lenient:42,less:[7,23,27,46,58,60,68,77,87,88,97,104,105,110,112,113,127,128,142,197,233,235,331,385],lesson:[98,99,100,101,102,103,104,105,106,107,108,109],let:[5,7,8,11,13,15,16,20,22,27,30,31,34,44,46,49,53,56,62,65,66,67,68,70,71,72,73,77,80,81,82,85,86,87,88,89,90,91,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,112,114,115,116,117,118,119,120,121,122,123,125,126,128,129,132,136,137,140,141,143,145,154,164,169,175,176,180,184,192,195,198,201,203,229,230,243,250,257,262,292,311,323,339,343,353,358,363,379,384],letsencrypt:142,letter:[16,55,61,62,68,72,85,106,114,128,142,166,175,193,217,229,326,359],level:[0,2,4,12,13,14,19,26,27,31,39,40,43,45,51,53,54,60,65,68,72,74,76,84,86,89,90,92,96,99,101,106,110,112,128,131,139,142,154,166,171,172,193,194,197,212,218,230,256,262,266,267,284,321,331,333,339,341,346,351,359,364,384],lever:[22,45],leverag:[74,115],levi:58,lhs:[81,90,177,178],lhslist:[177,178],lib:[6,136,138,141],libapache2:132,libcrypt:141,libjpeg:141,librari:[0,4,8,9,14,42,45,46,55,60,75,77,88,89,93,97,104,107,116,117,128,130,131,136,141,144,145,148,188,217,249,266,267,295,333,345,359],licenc:336,licens:[7,73,217,336,386],lid:[239,242,243],lidclosedcmdset:239,lidopencmdset:239,lie:72,lies:[11,22,105],life:[13,33,73,91,117,126,197,246,385],lift:[31,99,112,114,236,257],lifter:31,light:[15,19,37,60,74,109,110,133,163,233,247,248,256,267,275,336],lightabl:247,lighter:[62,233],lightest:19,lightli:[50,233],lightsail:142,lightsourc:247,lightsource_cmdset:247,like:[0,2,3,5,6,7,8,9,11,12,13,15,16,17,19,20,22,23,25,27,28,29,30,31,32,34,37,39,40,41,42,43,44,45,46,48,49,50,51,53,55,56,58,59,60,62,63,64,65,66,67,68,70,71,72,73,74,75,76,77,78,80,81,82,83,84,85,86,87,89,90,91,92,94,96,97,98,99,100,101,103,104,105,106,107,108,109,110,112,113,115,116,117,122,124,125,126,127,128,129,131,132,133,134,135,136,137,139,140,141,142,144,145,148,154,156,158,159,161,162,163,166,168,169,174,177,178,181,182,185,186,192,193,195,199,200,201,202,203,211,213,217,218,219,225,226,229,230,232,233,234,235,236,239,241,243,248,249,250,254,256,257,261,262,265,266,267,287,295,311,316,320,322,323,331,332,333,336,337,339,342,343,344,345,346,349,353,355,356,359,367,379,384,386],limbo:[14,15,19,39,54,66,67,68,72,99,103,104,109,125,129,136,169,193,286,368],limbo_exit:72,limit:[0,8,12,13,19,20,22,23,27,29,31,37,39,42,43,45,50,51,58,65,66,70,73,75,76,77,81,82,90,97,99,101,103,105,106,108,110,113,114,126,139,142,147,154,166,167,168,169,185,186,195,208,219,228,229,230,232,234,235,243,253,254,257,262,267,271,274,276,287,300,325,331,332,333,334,337,339,341,352,356,359,384],limit_valu:154,limitedsizeordereddict:359,limp:109,line2:105,line:[0,2,5,6,8,9,14,15,16,19,20,22,23,27,30,33,34,36,39,42,45,46,48,51,55,56,58,60,62,66,67,68,70,72,74,75,79,81,83,84,85,86,88,89,90,91,92,94,97,98,99,102,104,105,107,108,110,114,125,128,129,133,135,136,138,142,143,144,149,151,154,160,163,169,176,178,179,190,193,198,199,201,213,214,215,218,219,230,249,250,266,282,287,302,305,310,321,333,337,341,342,343,344,345,352,359,379,384],linear:71,linebreak:[92,358],lineeditor:341,lineend:358,linefe:46,lineno:74,linenum:341,liner:294,linereceiv:[302,305],linesend:311,lingo:[40,58,64,89],linguist:359,link:[9,11,12,15,17,20,22,27,34,40,53,67,68,70,71,72,73,76,77,79,81,83,85,89,92,96,98,99,101,102,103,104,106,114,115,125,128,129,135,136,140,142,143,147,154,158,169,174,205,210,239,243,249,256,257,262,271,280,282,293,297,302,305,333,358,385,386],link_ok:256,linkdemo:74,linklock:256,linknam:135,linkref:74,linktext:74,linod:142,linux:[5,6,7,11,33,67,74,77,79,81,106,107,132,133,140,141,142,144,222,359],liquid:333,list:[5,6,7,9,11,12,13,14,15,16,19,20,22,23,27,29,30,31,34,37,40,42,43,45,46,49,53,54,55,58,59,61,62,63,64,66,68,70,71,72,73,76,78,79,81,85,86,89,90,92,95,96,97,98,99,101,102,103,106,108,109,110,112,113,114,115,125,128,129,131,133,135,136,140,142,143,145,149,154,156,158,161,162,163,164,166,167,168,169,174,175,176,177,178,179,180,184,185,186,187,190,192,193,194,195,196,200,201,202,203,205,206,208,209,210,211,212,213,215,216,217,218,219,222,223,229,230,232,233,234,235,236,246,247,250,253,256,257,261,262,265,266,267,272,273,274,275,276,280,282,287,288,292,294,296,298,300,301,306,311,314,323,325,327,330,331,332,333,334,336,337,338,339,340,343,344,345,351,352,353,356,359,364,365,366,367,384,385],list_attribut:169,list_callback:206,list_displai:[155,183,252,259,269,278,330],list_display_link:[183,252,259,269,278],list_filt:[259,330],list_nod:343,list_of_all_rose_attribut:13,list_of_all_rose_ndb_attr:13,list_of_myscript:37,list_prototyp:266,list_select_rel:[183,252,259,269,278],list_set:282,list_styl:166,list_task:206,list_to_str:359,listabl:169,listcmdset:169,listcmset:169,listdir:190,listen:[12,23,31,40,46,49,86,93,138,145,174,185,218,219,239,256,384,386],listing_contact:135,listobj:179,listobject:179,listscript:179,listview:384,lit:[247,248],liter:[14,42,54,74,89,99,175,265,336,355,359],literal_ev:[266,330],littl:[3,11,16,22,23,37,42,45,48,66,67,72,74,77,79,80,81,82,86,89,90,92,96,97,98,99,101,103,104,105,106,107,108,109,116,117,122,123,129,139,142,144,149,213,233,248,317,331,343,359,379],live:[7,74,78,104,131,132,133,136,142,144],ljust:336,lne:230,load:[0,6,7,8,13,14,16,20,22,26,27,42,46,49,72,83,87,88,89,90,92,95,104,105,106,107,110,112,114,116,125,145,158,163,175,176,179,187,200,208,218,254,257,261,262,271,275,286,289,291,322,331,333,334,337,338,341,350,353,354,357,359,377],load_buff:341,load_data:338,load_kwarg:354,load_sync_data:322,loader:[27,333,359],loadfunc:[26,341,354],loc:169,local0:138,local:[2,6,7,11,55,62,73,77,81,91,98,102,105,116,128,133,140,144,145,190,205,208,219,267,305,331],local_non_red_ros:101,local_ros:101,localecho:142,localevenniatest:357,localhost:[46,64,67,79,92,115,117,128,129,133,134,136,138,141,142,148,311],locat:[4,8,9,11,12,13,14,19,20,22,25,27,30,31,34,37,42,43,45,46,49,54,62,64,65,66,67,70,71,72,74,77,79,80,81,84,85,89,90,96,97,98,99,101,102,103,104,105,106,109,114,116,122,123,125,128,132,136,142,144,145,148,154,160,169,175,179,186,190,193,194,195,200,210,213,216,219,225,241,246,248,250,256,261,262,267,311,320,332,333,334,337,339,343,345,352,356],location_nam:250,location_set:101,locations_set:[101,261],locattr:[247,256],lock:[20,22,23,24,29,34,39,42,43,45,48,49,51,68,75,79,80,81,82,83,85,86,87,90,91,95,96,98,99,102,103,104,114,128,133,139,142,149,151,152,154,155,164,166,167,168,169,174,175,176,178,179,180,181,185,187,192,193,194,195,198,199,200,202,205,206,208,209,212,213,214,215,216,219,225,227,239,246,247,248,250,252,254,261,262,266,267,327,331,333,339,341,343,353,360,364,386],lock_definit:257,lock_func_modul:[31,257],lock_storag:[164,166,167,168,169,174,175,176,177,178,179,180,181,184,187,192,193,194,195,198,199,200,201,202,206,212,213,214,215,216,219,225,226,227,230,232,233,234,235,236,239,246,247,248,249,254,262,331,333,341,343,344],lockabl:[90,225],lockablethreadpool:327,lockdown:[31,331],lockdown_mod:[138,142],lockexcept:257,lockfunc1:31,lockfunc2:31,lockfunc:[22,31,39,75,81,103,105,125,151,152,169,255],lockhandl:[13,31,45,98,151,152,164,193,249,255,256],lockset:262,lockstr:[6,13,22,31,42,79,105,169,174,176,185,187,225,256,257,262,267,331,339,364],locktyp:[162,267],log:[2,5,7,9,10,11,12,13,22,23,25,27,30,34,37,40,41,46,48,49,54,55,58,62,64,72,75,76,77,79,80,81,85,87,89,90,98,99,105,112,114,117,125,128,129,132,133,134,136,137,138,139,140,141,142,144,149,154,163,167,181,185,194,199,201,214,222,223,262,271,282,287,291,292,296,299,300,302,305,313,314,315,321,323,325,327,333,339,351,352,359,384],log_dep:[19,352],log_depmsg:352,log_dir:222,log_err:[19,352],log_errmsg:352,log_fil:[19,352],log_info:[19,352],log_infomsg:352,log_msg:352,log_sec:352,log_secmsg:352,log_serv:352,log_trac:[19,37,123,124,352],log_tracemsg:352,log_typ:352,log_typemsg:352,log_warn:[19,352],log_warnmsg:352,logdir:2,logentry_set:158,logfil:[282,352,384],logged_in:40,loggedin:300,logger:[19,37,75,123,124,151,152,222,294,335],logic:[3,6,48,66,71,72,79,85,86,87,92,103,129,218,261,265,286,331,343,360,365],login:[6,11,12,22,25,27,31,40,41,67,76,79,81,92,128,142,154,166,181,199,214,257,286,287,302,305,310,311,314,323,359,371,373,382,384,386],login_func:314,loginrequiredmixin:384,logintest:382,logout:[313,314,382],logout_func:314,logouttest:382,logprefix:[292,302,305,327],lone:[72,110,169],long_descript:135,long_running_funct:48,long_text:28,longer:[22,26,28,37,44,45,58,63,66,69,80,81,83,86,90,92,97,98,104,106,107,126,131,135,162,167,185,195,218,219,226,232,233,234,235,236,272,341,345],longest:[19,219],longrun:22,loo:[164,180],look:[0,2,3,6,8,11,13,14,15,16,17,19,20,22,25,27,29,30,31,33,34,40,42,43,45,46,48,49,50,51,53,55,56,58,59,60,62,64,66,67,68,70,71,72,73,74,76,77,78,79,80,81,83,84,85,86,87,89,90,91,92,94,95,96,97,98,101,102,103,104,105,106,107,108,109,110,112,113,115,116,117,118,121,122,123,125,126,128,129,133,136,139,141,142,144,145,149,154,156,161,163,164,166,169,175,177,178,180,181,184,190,194,195,199,200,201,207,214,215,216,218,219,230,234,239,241,247,248,250,253,256,257,259,261,262,264,267,287,302,303,310,314,331,333,337,343,344,345,353,356,358,359,379],look_str:154,lookaccount:90,lookat:22,looker:[71,90,114,195,200,219,241,250,256,262,333],lookm:22,lookstr:262,lookup:[6,13,22,31,43,58,160,175,222,261,301,334,336,348,349,355,356,359,360],lookup_env:190,lookup_expr:363,lookup_typ:355,lookup_usernam:27,lookuperror:336,loom:72,loop:[5,13,45,66,70,71,76,77,80,92,96,101,113,123,151,156,232,267,300],loopingcal:[274,285],loos:[15,73,154,195,236,253,302,313,337],loot:110,lop:101,lore:90,lose:[13,40,88,110,113,114,144,149,222,234,293,294,302,305],lost:[45,64,66,72,74,85,88,97,131,149,226,279,292,293,294,302,305,310,331,336],lot:[0,3,5,8,11,14,16,19,23,31,42,43,45,48,58,60,62,64,66,68,70,72,73,75,76,78,79,82,85,86,89,90,91,92,97,98,101,103,104,105,106,107,108,109,110,112,114,117,125,128,131,136,142,193,197,199,201,219,227,233,247,250,327],loud:80,love:46,low:[20,53,54,70,142,162],lower:[5,12,20,22,27,31,46,48,51,58,62,71,81,83,86,90,91,96,109,142,161,162,166,177,179,219,229,287,336],lower_bound_inclus:229,lower_channelkei:[86,184],lowercas:[106,164,336],lowest:[54,142,229,256,336],lpmud:63,lsarmedpuzzl:216,lspuzzlerecip:216,lst:71,lstart:26,lstrip:[97,336],ltto:62,luc:342,luciano:131,luck:[27,97,104,132],luckili:[8,11,31,72],lue:62,lug:76,luggag:108,lunch:70,luxuri:[43,329],lycanthrophi:101,lycantrhopi:101,lycantrophi:101,lycantrroph:101,lying:72,m2m:334,m2m_chang:41,m_len:359,mac:[5,7,11,67,74,77,106,117,133,134,144,148,359],machin:[7,11,14,81,106,144,246],macport:[11,136],macro:[79,113],macrosconfig:79,mad:[11,229],made:[0,2,11,13,25,27,31,39,42,51,72,74,80,81,88,90,98,99,104,105,107,108,110,114,115,125,129,142,143,145,160,162,174,179,192,195,201,229,230,234,235,236,257,284,328,336,337,341,343,359],mag:[8,342],magazin:131,mage:[27,101],mage_guild_block:27,mage_guild_welcom:27,magenta:126,magic:[31,43,65,84,109,110,125,192,203,228,235,284],magic_meadow:43,magicalforest:65,magnific:27,mai:[1,3,5,6,7,8,9,10,11,13,14,19,20,22,23,27,31,32,33,34,37,39,40,42,44,45,48,51,53,54,56,58,59,60,62,64,66,67,72,73,74,77,78,79,80,81,82,83,86,88,89,91,92,94,99,101,103,104,106,108,109,112,113,114,116,117,123,124,128,129,131,132,133,135,136,139,141,142,144,145,149,154,156,160,161,162,164,166,167,169,179,185,186,188,190,192,194,195,197,201,203,210,218,219,229,232,233,234,235,236,239,247,248,256,257,262,265,266,267,268,284,314,321,323,324,328,330,331,333,334,336,338,339,340,341,343,345,346,351,353,356,359,384],mail:[5,9,23,27,67,73,76,78,89,98,110,113,131,151,152,186,187,188,256],mailbox:[23,212],maillock:256,main:[4,11,14,15,16,20,22,23,27,29,31,32,34,36,39,40,42,43,44,45,46,53,55,56,58,64,68,71,73,77,80,84,88,92,94,96,97,99,102,104,105,113,128,129,131,135,142,144,147,149,154,155,158,160,166,169,180,187,193,201,208,212,218,219,250,254,261,267,269,271,282,286,287,289,294,299,301,306,320,322,327,333,334,344,347,356,358,359],mainli:[5,22,23,27,34,40,48,49,56,89,105,106,131,166,251,331,337,351,359],maintain:[5,29,44,46,51,60,73,74,75,79,86,88,108,133,142,144,147,148,179,181,199,276,385],mainten:[142,145,385],major:[15,16,77,89,125,128,133,136],make:[0,1,2,3,5,6,7,9,10,12,13,14,15,16,20,22,26,27,29,30,31,33,34,37,39,40,41,42,43,44,45,46,48,49,50,51,53,56,58,60,61,62,65,66,67,68,70,71,72,73,74,76,77,78,79,81,82,83,84,85,86,87,88,91,93,94,96,97,100,101,102,103,105,107,108,109,110,112,113,116,117,118,119,120,121,122,123,126,127,128,129,130,131,132,133,134,135,136,139,140,141,142,144,145,148,149,154,156,158,161,162,163,164,166,167,169,174,177,180,184,185,186,190,192,193,195,200,201,203,209,212,213,218,219,224,225,226,229,230,232,233,234,235,238,239,242,243,246,247,248,253,256,257,262,266,267,273,274,276,282,286,294,299,313,314,320,321,323,324,326,327,330,331,332,333,334,336,337,338,339,340,341,343,345,346,349,351,356,358,359,382,384],make_it:359,make_shared_login:373,make_uniqu:162,makeconnect:291,makefactori:302,makefil:74,makeit:313,makemessag:55,makemigr:[2,58,128],male:202,malevol:15,malform:360,malici:145,malign:257,man2x1:60,man:[33,60,63,142,175,212,219],mana:[82,84],manaag:252,manag:[5,8,9,11,12,13,20,31,34,37,40,44,45,53,56,58,67,75,85,88,89,96,101,103,128,144,149,151,152,153,154,158,179,180,182,184,185,187,190,210,215,219,236,243,248,251,254,258,261,262,266,268,271,276,277,282,289,329,331,333,334,335,338,339,347,350,352,356,359,382,384,386],manager_nam:331,manchest:359,mandat:379,mandatori:[41,42,63,66,68],mandatorytraitkei:229,maneuv:230,mangl:308,mango:216,manhol:302,manhole_ssh:302,mani:[0,5,8,9,11,12,13,15,16,17,19,20,22,23,27,29,34,37,39,40,41,42,44,45,48,49,52,53,54,55,58,59,60,61,62,63,64,65,66,67,71,72,74,76,77,78,79,84,87,88,89,90,91,96,97,98,99,100,101,103,105,106,107,110,112,113,114,123,124,125,126,128,129,136,140,142,143,145,149,158,162,164,169,180,187,190,192,195,199,201,213,219,226,227,230,234,235,239,246,249,254,256,257,261,267,271,276,282,296,304,306,325,331,333,334,336,343,349,350,352,384],manifest:[6,103],manipul:[13,20,27,37,42,58,66,68,77,86,87,98,114,169,176,186,200,205,229,253,262,288,339,344],manner:[15,185,219,250,262,300,333],manpow:73,manual:[6,9,11,15,22,23,29,31,34,37,42,45,53,58,62,65,72,74,76,79,80,84,90,96,99,103,104,106,110,122,125,129,131,133,136,142,149,151,156,169,230,239,243,249,262,267,274,282,299,306,343,344,385,386],manual_paus:274,manual_transl:218,manual_unpaus:274,manytomanydescriptor:[158,187,254,261,271,331,333,334],manytomanyfield:[158,187,254,261,271,331,333,334],map:[6,16,27,33,59,64,66,70,77,81,85,89,90,110,144,166,174,190,196,197,210,213,218,219,229,250,262,266,267,306,331,333,336,342,343,351,359,386],map_legend:213,map_modul:72,map_str:[71,72,250],mapbuild:[151,152,188],maplegend:213,mapnam:213,mapper:349,mapprovid:250,march:[131,352],margin:17,mark:[11,14,15,22,31,46,55,62,64,65,71,74,80,90,98,101,106,136,140,142,161,168,200,208,217,230,323,333,337,342,343,351,355],mark_categori:230,markdown:[74,79,135],marker:[14,22,33,62,77,106,175,200,202,210,219,230,262,294,302,305,310,311,331,334,336,342,344,351],market:142,markup:[62,74,94,116,196,336,358],mask:[216,219,223,224],maskout_protodef:216,mass:[93,110,386],massiv:[76,82],master:[67,70,73,74,86,89,110,112,113,123,129,136,143,144,229,328],match:[9,11,13,19,20,22,27,29,30,31,33,34,37,39,40,42,43,45,46,55,56,58,59,62,64,67,68,71,72,85,86,87,89,90,91,97,99,101,103,108,116,123,128,129,154,160,161,162,164,167,169,175,176,178,180,184,186,193,196,197,200,201,211,212,213,214,215,216,219,229,235,250,253,256,257,262,266,267,273,276,287,288,300,313,323,331,332,333,334,336,341,343,345,351,354,356,358,359,360,384],match_index:161,matched_charact:201,matches2:58,matchobject:[336,358],mate:77,materi:106,math:85,mathemat:162,matplotlib:315,matrix:345,matt:37,matter:[2,8,13,20,27,32,40,41,55,60,66,67,79,81,86,89,91,92,97,106,107,110,112,113,116,122,136,145,162,236,246,261,287,331],matur:[9,60,63,106],maverick:77,max:[50,71,113,139,201,219,229,325,352,359],max_damag:234,max_dbref:332,max_depth:359,max_dist:71,max_heal:234,max_l:71,max_length:[58,71,128,190,219],max_lin:345,max_memory_s:190,max_num:155,max_num_lin:384,max_popular:384,max_rmem:349,max_siz:352,max_valu:[203,379],max_w:71,max_width:71,maxconn:138,maxdelai:[279,293,294],maxdepth:267,maxdiff:[366,374],maximum:[50,58,62,72,85,97,139,154,190,201,203,229,232,233,234,235,236,262,267,327,336,345,351,359],maxlengthvalid:154,maxnum:359,maxrotatedfil:352,maxsplit:336,maxthread:327,maxval:359,maxwidth:345,may_use_red_door:42,mayb:[13,14,15,19,20,22,29,42,58,65,67,68,71,74,80,81,87,92,95,96,101,103,104,105,108,110,112,113,135,136,142,163,192,211,300],mccp:[30,76,134,151,277,287,290],mccp_compress:295,meadow:[43,65,68],mean:[3,4,5,6,8,9,11,13,14,15,16,19,20,22,23,27,29,30,31,32,33,37,39,40,43,45,46,48,49,53,56,58,59,61,62,64,66,68,70,71,72,73,76,77,82,86,89,90,91,94,96,99,101,102,103,104,105,106,107,109,110,112,113,114,116,122,125,126,129,130,133,142,144,145,149,154,156,163,169,185,198,208,218,229,242,243,247,249,256,262,266,267,272,276,282,306,322,331,333,336,343,345,349,352,355,356],meaningless:114,meant:[20,23,29,37,45,46,50,55,56,65,68,87,91,99,103,105,126,135,162,193,202,219,227,229,232,233,234,235,236,243,248,250,262,287,337],measur:[5,114,142,161,178,359],meat:[117,118,119,120,121,128],mech:[93,386],mechan:[4,19,22,26,27,37,42,45,76,82,85,90,92,97,109,110,112,113,114,126,154,156,160,200,219,235,255,267,274,276,282,286,292,300,311,322,333,341,344,347,354,384],mechcmdset:80,mechcommand:80,mechcommandset:80,meck:80,media:[50,103,155,183,190,252,259,269,278,310,327,330,355,379],median:71,mediat:112,medium:50,mediumbox:291,meet:[2,81,103,109,110,207,250,326],mele:236,mem:179,member:[13,58,67,175,177,178,262,359],membership:[67,79,101],memori:[5,20,22,45,49,58,61,64,82,88,104,106,133,141,142,154,179,185,243,262,276,315,325,331,335,344,349,354,359],memoryerror:136,memoryusag:315,memplot:[151,277,312],meni:193,mental:126,mention:[8,13,14,15,16,22,30,31,37,44,48,53,60,61,67,71,80,83,86,88,89,99,101,106,110,126,136,142,163,199],menu:[7,9,13,20,40,42,70,75,76,81,92,102,114,135,136,137,149,151,152,169,193,201,214,227,230,263,267,280,282,343,353,386],menu_cmdset:343,menu_data:27,menu_edit:193,menu_login:[151,152,188],menu_modul:343,menu_module_path:343,menu_quit:193,menu_setattr:193,menu_start_nod:227,menuchoic:[27,343],menudata:[201,264,343],menudebug:[27,343],menufil:343,menumodul:343,menunode_fieldfil:201,menunode_inspect_and_bui:96,menunode_shopfront:96,menunode_treeselect:230,menunodename1:27,menunodename2:27,menunodename3:27,menuopt:230,menutest:98,merc:336,merchant:70,mercuri:60,mere:[122,203],merg:[6,11,22,27,68,73,77,87,89,91,101,104,105,115,160,161,162,163,176,239,248,250,267,271,306,343,351],merge_prior:343,merger:[20,72,73,162,163],mergetyp:[20,27,113,162,239,248,341,343],mess:[5,11,13,19,51,74,142,230],messag:[8,9,11,14,16,19,22,23,24,26,27,28,30,31,34,36,37,39,40,46,48,53,55,61,65,68,70,72,74,75,76,77,78,80,82,83,86,87,90,91,94,95,96,97,98,99,106,108,110,112,113,114,123,127,132,136,137,139,142,145,147,149,154,156,160,163,164,167,169,174,175,176,178,180,182,184,185,186,187,192,193,195,201,202,206,208,210,212,216,217,219,223,229,232,233,234,235,236,238,239,241,242,244,246,247,248,249,256,262,282,284,291,293,294,300,301,302,305,306,308,310,319,321,323,325,327,339,341,343,344,351,352,356,359],message_rout:46,message_search:186,message_transform:185,messagepath:386,messagewindow:46,messeng:241,meta:[39,45,103,155,252,259,330,333,349,363,365,379],metaclass:[45,58,164,333],metadata:[223,284],metavar:249,meteor:95,meter:[203,229],metho:184,method:[3,8,11,12,13,19,20,23,27,29,31,34,37,39,40,41,42,43,44,45,46,48,53,56,58,59,62,67,68,70,71,72,76,77,81,82,83,84,85,90,91,92,97,98,100,101,102,105,107,108,112,113,114,122,123,124,125,127,128,129,147,154,158,160,162,163,164,166,169,170,174,176,177,178,179,180,183,184,185,186,187,190,191,192,193,197,200,205,208,210,214,215,216,217,218,219,222,223,225,228,229,232,233,234,235,236,243,244,246,247,248,249,250,253,254,256,257,262,274,275,276,279,284,287,288,289,291,292,293,294,295,300,302,305,308,310,311,314,318,320,321,322,323,325,330,331,333,336,337,339,341,343,344,345,346,349,350,351,352,353,354,356,357,358,359,363,364,365,366,368,384],methodnam:[180,191,209,224,228,244,276,308,318,350,357,366,374,382],metric:95,microsecond:13,microsoft:[72,136],mid:[60,83,125],middl:[22,71,83,142,233,336],middlewar:[151,361,370],midnight:[81,91],midst:109,midwai:62,mighht:97,might:[0,3,6,8,11,13,15,16,17,19,20,22,23,27,28,31,34,37,39,40,44,48,49,53,55,62,66,68,70,72,76,78,79,81,82,83,84,85,86,90,91,92,94,95,96,97,98,99,110,112,113,114,116,117,124,126,127,128,132,133,136,141,142,143,144,145,149,163,167,169,192,217,223,226,232,233,234,235,249,262,311,333,336,341,352,353,359,365,379],mighti:[72,83,104],migrat:[2,8,10,11,41,58,67,72,74,103,117,128,133,136,141,148,149,190,267],mike:169,million:[128,133],mime:339,mimic:[5,23,26,76,112,133,187,321,341],mimick:[26,77,112,313,341,344],mimim:334,min:[37,71,91,197,201,229,346],min_damag:234,min_dbref:332,min_heal:234,min_height:345,min_shortcut:[68,193],min_valu:379,min_width:345,mind:[14,15,27,48,49,73,76,86,88,89,93,106,107,109,110,126,129,135,192,203,208,217,284],mindex:161,mine:[70,145],mini:[72,76,103,104,105],miniatur:[109,110],minim:[40,110,113,145,190,218,267],minimalist:[22,60,90],minimum:[40,46,68,77,90,112,201,229,232,233,234,235,236,287,327,333,345,354,359],minimum_create_permiss:364,minimum_list_permiss:364,mininum:345,minlengthvalid:154,minor:[86,163],mint:[11,136],minthread:327,minu:[58,101,262,346],minut:[19,37,82,91,97,113,131,144,174,192,197,325,346,359],minval:359,mirc:294,mirror:[40,106,131,140,151,188,237],mis:89,misanthrop:101,misc:[24,46],miscelan:335,miscellan:[102,103],mislead:86,mismatch:[30,359],miss:[6,71,78,89,98,136,142,232,233,234,235,236,266,287,385],missil:[80,235],mission:[86,92],mistak:74,misus:142,mit:[131,336],mitig:[89,145,384],mix:[13,22,23,27,62,75,84,101,126,128,154,192,219,266,267,326,337,345],mixin:[266,316,365,368,384],mixtur:94,mkdir:[2,67,136],mktime:91,mob0:88,mob:[15,31,40,76,88,109,110,151,163,169,188,245,248,267,337],mob_data:88,mob_db:88,mob_vnum_1:88,mobcmdset:246,mobdb:88,mobil:[15,42,93,109,139,147,246,256],moboff:246,mobon:246,mock:[8,357],mockdeferlat:357,mockdelai:357,mockval:357,mod:[132,145,228,229],mod_import:359,mod_import_from_path:359,mod_proxy_http:132,mod_proxy_wstunnel:132,mod_sslj:132,mode:[3,5,7,12,20,26,27,30,52,64,86,92,93,99,104,106,107,113,114,118,122,128,131,132,138,144,145,151,168,179,185,190,191,194,210,212,246,262,266,273,282,287,292,299,310,311,320,337,341,343,352,359,386],mode_clos:311,mode_init:311,mode_input:311,mode_keepal:311,mode_rec:311,model:[13,23,31,33,39,43,44,45,52,64,67,74,77,86,92,101,112,116,127,151,152,153,154,155,182,183,185,186,251,252,258,259,262,268,269,272,276,277,278,288,329,330,331,332,334,335,340,347,348,350,355,356,359,363,365,379,384,386],model_inst:355,modeladmin:[183,252,259,269,278,330],modelattributebackend:331,modelbackend:371,modelbas:349,modelchoicefield:259,modelclass:[13,43],modelform:[155,252,259,330,379],modelmultiplechoicefield:[155,252,259],modelnam:[185,254,333],modelseri:365,modelviewset:368,moder:[79,85,192],modern:[13,16,48,60,72,84,126,131,145,214,295],modif:[11,22,56,66,70,73,81,97,114,132,144,229,328,379],modifi:[0,5,9,11,12,13,20,22,23,27,29,34,39,40,42,45,46,53,62,64,65,66,68,70,72,74,75,76,79,81,85,87,88,89,90,96,98,99,103,105,106,107,108,109,112,114,121,123,130,144,149,154,155,163,185,190,193,198,200,202,208,210,216,219,226,228,229,232,233,234,235,236,247,249,254,262,267,276,333,337,343,349,355,358,379,384],modified_text:62,modified_tim:190,modul:[0,4,5,6,8,13,14,16,19,20,22,25,26,27,29,30,31,34,37,39,40,41,45,53,56,60,62,64,72,73,76,80,83,88,89,90,91,94,95,96,98,99,102,103,104,105,107,114,115,122,125,137,141,143,145,149,152,160,161,163,164,169,171,172,173,174,178,180,184,192,193,194,195,196,197,198,199,200,201,203,205,206,207,209,210,213,214,217,218,219,220,224,225,226,228,229,230,232,233,234,235,236,239,246,247,248,249,256,257,261,262,265,266,267,272,274,275,276,279,281,282,286,287,291,299,301,302,305,306,309,311,313,314,315,320,322,323,324,331,333,334,337,338,339,340,341,342,343,344,346,351,357,359],modular:76,modulepath:291,moifi:200,mold:107,mollit:28,moment:[20,44,55,64,70,80,89,96,97,104,154,265,271],mona_lisa_overdr:108,monei:[58,67,110,142,256],monetari:[73,78,192],monitor:[5,32,59,75,272,287,306,349],monitor_handl:[32,151,272],monitorhandl:[24,30,151,152,268,386],monlit:101,mono:81,monster:[34,42,77,83,89,104,107,110,169,267],monster_move_around:107,month:[73,91,142,197,346,352,359],monthli:91,montorhandl:32,moo:[60,63,76,89,117,131],mood:[70,109,229],moon:[81,91,95,101,110],moonlight:101,moonlit:101,moor:109,moral:6,more:[0,2,3,4,5,6,8,11,12,13,14,15,16,17,19,20,22,23,25,26,27,28,29,30,33,34,37,39,40,42,43,44,45,46,48,49,51,52,53,54,55,56,58,59,60,61,62,66,67,68,70,71,72,73,76,77,78,79,80,81,82,85,86,87,88,90,91,92,93,96,97,98,99,101,102,103,104,106,107,108,109,110,112,113,114,115,116,117,120,123,125,126,127,128,129,131,133,136,139,140,141,142,144,145,149,151,153,154,155,158,161,162,163,168,169,175,179,181,184,188,190,192,193,194,195,197,199,200,203,208,211,213,217,218,219,226,227,229,230,232,233,234,235,236,242,246,247,248,249,250,256,259,262,265,266,267,292,294,297,313,314,323,328,331,332,336,337,339,340,341,342,343,344,345,349,356,359,360,365,379,384],more_command:344,moreov:[37,142],morn:[200,201],mortal:109,most:[3,5,6,9,13,14,17,19,20,22,25,27,30,31,34,39,40,41,44,45,46,48,53,56,58,59,60,61,62,63,65,66,67,68,70,71,72,73,74,77,79,81,84,85,86,88,89,90,91,92,95,97,98,99,100,101,102,103,106,107,108,109,110,112,113,114,117,122,125,126,128,132,133,136,142,144,145,148,154,158,162,163,166,169,177,187,193,203,218,219,226,232,233,234,235,236,254,256,257,261,262,267,271,305,310,320,331,332,333,334,343,344,349,350,359,384],mostli:[27,45,46,53,62,89,92,97,112,114,142,155,162,198,218,234,250,302,336],motiv:[14,15,34,73,76,78,110,293,294,300,301,302,305,310,311,322,323],mount:144,mountain:[60,72,213],mous:[46,62,343],move:[15,16,22,23,26,27,28,34,66,67,68,70,71,72,79,80,83,86,87,90,92,95,96,97,103,104,106,107,109,110,113,119,122,126,128,129,131,133,135,136,163,169,175,192,193,201,207,210,226,229,232,233,234,235,236,246,247,248,250,253,256,262,314,333,337,344],move_around:[104,107],move_hook:262,move_obj:250,move_to:[34,66,96,125,210,226,262],movecommand:87,moved_obj:[250,262],moved_object:262,movement:[42,90,125,226,232,233,234,235,236,262],mover:236,mptt:79,mratio:[161,178],msdp:[56,76,287,306],msdp_list:287,msdp_report:287,msdp_send:287,msdp_unreport:287,msdp_var:306,msg:[3,8,12,13,14,19,22,26,27,28,31,32,34,40,46,48,53,58,59,62,63,66,68,70,72,74,75,81,82,83,84,86,87,88,90,91,95,96,97,98,104,105,106,107,112,113,114,123,125,139,151,154,156,164,166,170,174,180,183,185,186,187,202,210,212,223,229,241,249,257,262,293,294,321,330,337,339,341,343,344,352,356,359],msg_all:113,msg_all_sess:[22,164],msg_arriv:66,msg_content:[19,22,34,37,66,70,80,91,114,123,125,127,210,262],msg_help:176,msg_leav:66,msg_locat:[210,262],msg_other:192,msg_receiv:[210,262],msg_self:[210,262],msg_set:334,msgadmin:183,msglauncher2port:[282,291],msgmanag:[186,187],msgobj:[23,185],msgportal2serv:291,msgreturn:180,msgserver2port:291,msgstatu:[282,291],mssp:[39,76,103,151,277,290],mtt:309,much:[0,1,3,5,8,13,14,15,16,27,31,34,42,44,45,48,55,61,66,68,71,72,73,74,77,79,81,83,85,86,88,91,92,95,97,98,99,101,104,105,106,107,109,110,112,113,117,124,125,127,128,129,131,133,136,142,158,163,168,177,193,197,198,219,229,230,236,239,247,322,336,337,338,345,359],muck:[89,117],mud:[6,9,16,30,31,33,36,39,40,44,46,53,59,60,62,64,65,68,71,72,76,77,80,84,88,97,99,103,106,109,110,112,113,122,126,127,132,133,134,136,140,142,143,144,147,148,149,158,163,166,236,279,295,296,297,302,305,306,309,337,346],mudbyt:131,mudconnector:131,mudderi:131,muddev:136,mudform:342,mudinfo:[23,98],mudlab:131,mudlet:[134,287,297],mudmast:134,mudramm:134,muhammad:358,mukluk:134,mul:265,mult:[42,265],multi:[20,27,39,40,46,48,68,74,76,104,108,109,110,114,117,144,161,179,219,230,323,343,359],multi_page_t:344,multiaccount_mod:6,multidesc:[151,152,188],multilin:358,multimatch:[20,108,161,219,262,359],multimatch_str:[154,219,262,359],multimedia:[46,190],multipart:190,multipl:[11,15,19,20,22,32,34,39,40,41,42,44,45,49,53,59,60,62,68,76,77,84,90,91,101,103,104,106,109,110,112,114,131,133,142,154,160,162,167,168,169,174,178,179,196,198,199,200,202,203,209,215,219,228,230,232,233,234,235,241,248,257,262,265,266,267,276,280,284,287,291,306,314,330,331,332,337,345,356,359],multiplay:[76,89,117,118,131],multipleobjectsreturn:[154,156,158,185,187,192,195,197,200,202,208,210,216,217,218,219,225,226,227,232,233,234,235,236,238,241,242,243,246,247,248,250,254,261,262,266,271,274,289,315,331,334,346,350],multipli:[106,265],multisess:[12,52,86,92,93,118,343,386],multisession_mod:[22,40,77,114,128,134,154,166,170,194,202,262,323],multisession_modd:27,multitud:[62,72,89],multumatch:262,mundan:80,murri:359,muse:131,mush:[2,60,67,76,93,112,113,117,131,196,215,386],mushclient:[30,134,287,297],musher:131,mushman:60,musoapbox:[89,131],must:[5,6,8,9,11,12,13,16,20,22,26,27,30,31,32,33,34,39,42,43,44,45,46,48,53,55,56,61,62,64,65,66,71,73,74,77,79,81,83,88,90,91,94,96,98,100,103,104,105,106,107,108,110,113,114,116,122,128,132,134,136,137,139,140,142,144,145,149,156,161,164,169,179,180,184,185,186,190,192,195,196,197,199,210,214,216,218,219,223,229,230,232,233,234,235,236,242,243,247,248,254,256,262,265,272,276,282,287,300,302,305,322,324,325,330,331,332,333,336,337,338,339,340,341,342,343,344,346,351,353,354,355,356,358,359,360,365,384],must_be_default:163,mutabl:340,mute:[17,86,184,185],mutelist:[86,185],mutltidesc:215,mutual:332,mux2:63,mux:[22,23,52,60,76,80,86,90,99,117,145,151,152,159,177,178,196,255,386],mux_color_ansi_extra_map:196,mux_color_xterm256_extra_bg:196,mux_color_xterm256_extra_fg:196,mux_color_xterm256_extra_gbg:196,mux_color_xterm256_extra_gfg:196,muxaccountcommand:[177,212],muxaccountlookcommand:166,muxcommand:[22,75,81,82,83,84,87,90,95,98,114,151,159,165,166,167,168,169,174,175,176,178,179,181,195,198,199,200,206,212,213,215,216,225,227,234,235,248],mvattr:[98,169],mxp:[30,62,76,134,151,277,287,290,302,305,336,343,358,359],mxp_pars:297,mxp_re:336,mxp_sub:336,my_callback:324,my_datastor:58,my_func:107,my_funct:83,my_github_password:11,my_github_usernam:11,my_identsystem:33,my_object:83,my_plugin:46,my_port:53,my_portal_plugin:53,my_script:37,my_server_plugin:53,my_servic:53,my_word_fil:218,myaccount:43,myaccountnam:108,myapp:58,myarx:67,myattr:[13,154],mybot:174,mycar2:33,mychair:43,mychan:23,mychannel:[49,174],mycharact:94,mychargen:27,mycmd:[22,29],mycmdget:105,mycmdset:[20,22,98,105],mycommand1:20,mycommand2:20,mycommand3:20,mycommand:[20,22,56,84,98,105,108],mycompon:46,myconf:2,mycontrib:8,mycss:46,mycssdiv:46,mycustom_protocol:53,mycustomcli:53,mycustomview:64,mydatastor:58,mydhaccount:144,mydhaccountt:144,mydhacct:144,myevennia:140,myevilcmdset:[20,162],myevmenu:27,myfix:11,myfunc:[8,44,48,359],mygam:[0,3,5,7,8,9,11,12,14,15,19,20,25,27,30,31,34,37,39,42,45,46,53,55,58,62,64,67,71,72,75,80,81,84,87,88,89,90,91,92,94,95,96,98,102,103,104,105,106,107,112,113,114,115,116,117,123,124,125,128,129,133,135,136,137,138,139,141,142,144,148,149,193,194,196,200,212,213,214,215,225,226,229,307,357,359],mygamedir:74,mygamegam:94,myglobaleconomi:37,myhandl:41,myhousetypeclass:169,myinstanc:58,myircchan:174,mykwarg:27,mylayout:46,mylink:74,mylist2:13,mylist:[6,13,333],mylog:19,mymap:213,mymenu:27,mymethod:88,mymodul:44,mymud:[7,132],mymudgam:142,mynam:144,mynestedlist:340,mynod:27,mynoinputcommand:22,mynpc:114,myobj1:43,myobj2:43,myobj:[13,19,31,37,276],myobject:13,myobjectcommand:81,myothercmdset:20,myownfactori:53,myownprototyp:42,mypassw:199,mypath:8,myplugin:46,myproc:53,myproc_en:53,myprotfunc:42,myroom:[37,43,88,101,169],myros:34,myscript:[37,43,45],myscriptpath:37,myserv:199,myservic:53,mysess:40,mysql:[2,9,76,77,359],mysqlclient:133,mysteri:[33,141],myston:108,mytag:46,mythic:109,mytick:276,mytickerhandl:276,mytickerpool:276,mytrait:229,mytup1:13,mytup:13,myvar:22,myview:64,naccount:323,naiv:[185,190,250,254,333],nake:22,name1:169,name2:169,name:[2,3,4,5,7,8,9,10,11,12,13,14,15,16,20,22,23,27,28,29,30,31,32,33,34,37,39,40,41,42,43,45,46,48,51,53,54,55,56,58,61,62,64,65,66,67,68,70,71,72,74,76,77,79,81,83,86,87,88,89,90,91,92,94,95,96,97,98,99,100,101,102,103,105,106,107,108,109,110,113,114,115,116,117,122,125,126,127,128,129,131,133,134,135,137,139,140,141,142,144,145,148,149,151,152,154,156,158,160,161,162,163,164,166,167,169,174,175,176,177,178,179,180,181,184,185,186,187,190,193,194,195,197,199,201,205,207,208,211,214,216,217,218,219,225,229,230,234,235,246,248,249,250,253,254,255,261,262,266,267,271,272,274,276,282,285,287,288,289,291,292,294,299,302,305,306,309,310,311,314,327,330,331,332,333,334,336,337,338,339,341,342,343,344,349,350,351,352,353,355,356,358,359,360,363,366,367,368,371,379,384],namecolor:230,namedtupl:205,nameerror:[3,106],namelist:212,namesak:6,namespac:[45,46,92,208,249,267,337],napoleon:74,narg:[62,249],narr:236,narrow:[97,105],nativ:[3,23,37,59,101,222,327,384],nattempt:27,nattribut:[13,27,45,113,169,267,321,331,333,339,343],nattributehandl:331,natur:[13,16,19,43,59,76,131,156,345],natural_height:345,natural_kei:331,natural_width:345,navig:[7,9,27,67,71,72,74,128,129,236,384],naw:[28,134,151,277,290],nbsp:358,nchar:124,nclient:313,ncolumn:345,ncurs:151,ndb:[14,22,27,37,40,45,68,81,83,113,154,158,179,261,271,321,333,343],ndb_:[42,169,267],ndb_del:321,ndb_get:321,ndb_set:321,ndk:141,nearbi:[162,163,164,236],nearli:[103,336],neat:[66,115,379],neatli:[60,359],necess:53,necessari:[2,11,45,53,60,62,66,68,79,85,89,90,97,102,103,110,123,125,149,164,187,194,208,223,248,249,267,275,311,330,337,345,353,355,359],necessarili:[42,59,74,86,89,109,142,359],necessit:324,neck:[42,195],necklac:195,need:[0,2,3,5,6,7,8,9,10,11,12,13,14,15,16,19,20,22,23,25,26,27,29,30,31,32,33,34,37,39,40,42,43,44,45,46,48,51,53,54,55,56,58,59,61,62,64,65,67,68,70,71,72,73,74,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,94,95,96,97,98,99,101,102,103,104,106,107,108,109,110,112,113,114,115,116,119,120,122,123,125,126,128,129,131,132,133,135,136,137,139,140,141,142,143,144,145,148,149,154,156,158,164,166,169,174,175,177,180,184,185,190,192,193,199,200,202,206,207,208,209,213,216,217,218,219,229,230,232,233,234,235,236,243,246,247,248,249,250,256,257,261,262,266,267,274,282,284,286,287,291,299,306,311,313,321,322,323,327,330,331,333,336,337,339,343,344,345,346,351,353,354,356,359,384],need_gamedir:282,needl:216,needless:104,neg:[91,126,162,341,359],negat:[62,101,257],negoti:[76,192,296,298,300,309,323],negotiate_s:298,neighbor:85,neither:[6,13,110,112,135,149,198,266,306,331,334,360],nenter:27,neophyt:229,nest:[4,13,15,22,27,62,154,169,219,230,256,262,265,267,306,340,351],nested_mut:13,nested_r:169,nestl:72,net:[67,89,131,136,140,142,156,174,295,296,306,309,323],netrc:11,network:[53,61,75,76,77,78,131,137,139,140,142,145,147,156,174,293,294,299,320,323],neu:193,neutral:202,never:[0,1,8,11,15,19,20,22,27,31,39,44,45,49,58,59,62,77,88,91,97,103,104,106,107,108,110,123,125,128,135,154,207,218,219,235,236,246,257,262,321,340,351,359],nevertheless:[0,27,58,126,166,193],new_alias:164,new_arriv:248,new_attrobj:331,new_channel:90,new_charact:246,new_coordin:250,new_datastor:58,new_goto:343,new_kei:[41,164,262],new_loc:169,new_menu:193,new_nam:[41,169],new_name2:169,new_obj:[31,262,267],new_obj_lockstr:169,new_object:[42,267],new_pane_name1:46,new_pane_name2:46,new_raw_str:161,new_room_lockstr:169,new_ros:34,new_script:37,new_typeclass:[154,333],new_typeclass_path:45,new_valu:[32,331],newbi:[76,81,184],newcom:122,newer:67,newindex:230,newli:[11,54,70,90,101,106,128,169,185,193,212,217,249,262,267,274,339],newlin:[22,46,134,176,337,345],newnam:[22,169,333],newpassword:167,newstr:46,nexist:68,nexit:[8,124],next:[2,3,7,11,13,14,15,20,22,26,27,28,29,31,34,37,46,48,49,55,56,58,62,66,67,68,70,71,72,74,77,79,80,81,82,83,84,85,86,88,90,91,93,94,96,98,99,100,101,102,103,104,105,106,107,108,109,110,112,113,114,117,125,128,129,131,133,137,140,141,142,143,144,145,149,193,197,213,215,230,232,233,234,235,236,247,257,274,282,337,343,344,346,351,359,384],next_nod:27,next_turn:[232,233,234,235,236],nextrpi:131,nfkc:154,ng2:345,nginx:132,nice:[8,19,29,46,49,65,66,68,71,72,90,91,94,104,105,110,135,142,144,169,192,195,219,266],nicer:[99,106],niceti:169,nick:[12,13,24,30,34,63,89,98,131,154,156,169,175,219,256,261,262,294,331,332,351,365,386],nick_typ:33,nickhandl:[13,33,331],nicklist:[156,294],nicknam:[11,33,34,63,175,219,261,262,294,331,332],nickreplac:331,nickshandl:365,nicktemplateinvalid:[331,351],nicktyp:[219,262],nifti:[105,132],night:[90,110,127,200],nine:54,nineti:360,nit:91,nline:352,no_channel:[20,22,162,343],no_default:[45,154,333],no_exit:[20,22,113,162,239,343],no_gmcp:306,no_log:163,no_match:193,no_mccp:295,no_more_weapons_msg:247,no_msdp:306,no_mssp:296,no_mxp:297,no_naw:298,no_obj:[20,162,239,343],no_superuser_bypass:[154,185,257,262,333],no_tel:31,noansi:180,nobj:124,nocaptcha:128,nocaptcha_recaptcha:128,nocolor:[94,287,302,305,310,311],nodaemon:7,node1:[27,343],node2:[27,343],node3:[27,343],node:[14,42,96,201,214,230,264,280,343],node_abort:27,node_apply_diff:264,node_attack:27,node_background:27,node_betrayal_background:27,node_border_char:343,node_destin:264,node_enter_password:214,node_enter_usernam:214,node_examine_ent:264,node_exit:27,node_formatt:[27,201,343],node_four:27,node_game_index_field:280,node_game_index_start:280,node_hom:264,node_index:[264,343],node_kei:264,node_loc:264,node_login:27,node_mssp_start:280,node_mylist:27,node_on:27,node_parse_input:27,node_password:27,node_prototype_desc:264,node_prototype_kei:264,node_prototype_sav:264,node_prototype_spawn:264,node_quit_or_login:214,node_readus:27,node_select:27,node_set_nam:27,node_start:280,node_test:27,node_usernam:27,node_validate_prototyp:264,node_view_and_apply_set:280,node_view_sheet:27,node_violent_background:27,node_with_other_nam:343,nodekei:343,nodenam:[27,343],nodetext:[27,201,264,343],nodetext_formatt:[27,201,264,343],noecho:[106,179],noerror:262,nofound_str:[154,219,262,359],nogoahead:304,nohom:339,nois:80,noisi:[142,279,284,292,302,305,327],noloc:169,nomarkup:[30,94],nomatch:[68,178,193,341,351,359],nomatch_exit:68,nomatch_single_exit:68,nomigr:8,nomin:384,non:[11,15,16,19,20,22,26,28,29,30,37,40,42,45,46,58,59,62,65,68,71,74,76,77,78,79,83,87,90,91,95,99,101,104,105,108,110,126,136,137,149,154,156,158,160,162,169,179,185,187,198,208,217,225,227,229,230,247,253,261,262,266,267,271,272,273,274,275,276,282,291,305,306,320,321,323,331,333,336,339,340,341,343,345,351,356,359,365],nonc:310,nondatabas:[13,321,333],none:[3,12,13,14,15,16,20,22,23,26,27,30,31,32,33,37,40,43,48,53,56,58,59,62,66,68,71,72,77,81,84,85,86,87,88,90,91,92,94,96,97,98,100,101,104,105,108,113,114,123,125,154,155,156,161,162,163,164,166,169,170,171,172,173,176,177,178,180,183,184,185,186,187,190,191,192,193,194,195,198,200,201,202,205,207,208,210,211,214,216,217,218,219,225,227,229,230,232,233,234,235,236,239,241,246,247,248,249,250,252,253,256,257,259,261,262,264,265,266,267,269,272,273,274,276,279,280,282,284,288,291,292,293,294,301,302,310,311,321,322,323,325,326,327,330,331,332,333,334,336,337,338,339,340,341,342,343,344,345,346,349,351,352,354,355,356,359,360,363,366,368,371,374,379,384],nonpc:114,nonsens:218,noon:[31,55,99,112],nop:305,nopkeepal:[134,305],nor:[3,7,13,14,20,60,83,104,113,126,135,198,199,249,266,306,331,334],norecapcha:128,norecaptcha_secret_kei:128,norecaptcha_site_kei:128,norecaptchafield:128,normal:[4,5,6,8,9,12,13,14,15,16,19,20,22,23,27,29,30,31,33,37,39,40,42,43,45,46,48,51,54,55,56,58,59,61,62,64,65,67,70,71,72,74,76,77,80,81,83,84,87,88,89,90,91,92,94,95,96,98,99,101,104,105,106,107,109,113,114,115,125,126,129,133,140,141,142,144,149,154,156,158,160,161,163,164,166,169,176,179,184,185,190,191,192,197,198,210,232,233,234,235,236,246,249,250,261,262,264,267,274,276,282,291,294,295,296,298,300,314,321,323,329,331,332,333,336,337,340,343,344,349,351,356,358,359,361,365],normal_turn_end:113,normalize_nam:262,normalize_usernam:154,north:[34,62,66,68,70,71,72,87,99,125,169,193,213,226,314],north_south:72,northeast:[99,169,250],northern:[68,72],northwest:169,nose:331,not_don:327,not_error:282,not_found:169,notabl:[6,11,48,53,67,136,164,169,180,192,333,340,351,359],notat:[4,169,336,359],notdatabas:45,note:[3,5,7,9,10,11,12,13,14,19,30,31,34,37,40,41,42,44,45,46,49,51,55,56,58,59,61,62,64,66,67,71,77,79,80,81,83,86,89,90,91,92,96,98,99,101,104,105,106,107,108,109,110,112,113,114,116,117,122,125,126,128,129,133,134,136,141,142,144,145,147,149,151,154,156,161,162,163,164,166,169,170,171,175,176,177,179,180,181,184,185,186,190,192,194,195,196,197,198,199,200,202,207,208,210,211,213,214,215,216,217,218,219,225,226,229,230,232,233,234,235,236,239,242,243,248,249,250,256,257,261,262,266,267,274,276,279,282,287,291,292,294,295,299,300,301,302,305,306,307,309,310,313,315,316,321,323,327,328,331,332,333,334,336,337,338,339,340,341,342,343,344,345,346,349,352,354,355,356,359,364,365,372,386],notepad:[117,136],notfound:359,notgm:90,noth:[3,8,13,15,19,22,23,34,44,48,56,60,66,68,72,83,88,89,91,96,98,99,104,106,108,113,154,169,178,230,232,235,236,246,250,262,274,294,331,333,343],nother:124,notic:[2,3,11,14,22,48,49,66,68,70,73,78,83,85,86,91,92,97,99,103,104,122,125,126,133,193,238,295,384],notif:[11,46,79,141,212],notifi:[108,143,147,174,232,233,234,235,236,248],notificationsconfig:79,notimplementederror:305,notion:[44,91,113,229],noun:[218,219],noun_postfix:218,noun_prefix:218,noun_transl:218,now:[2,6,7,8,9,11,12,13,15,18,19,20,22,27,31,34,35,37,40,42,44,45,46,48,49,55,58,60,62,64,65,66,67,68,70,71,72,76,77,80,81,82,83,85,86,88,89,90,91,92,94,95,96,97,98,99,101,102,103,104,105,106,107,108,109,110,112,114,115,116,117,119,120,122,123,125,126,128,129,131,133,136,137,139,140,141,142,143,144,145,148,149,163,192,197,201,208,210,229,230,242,250,257,262,294,302,323,355,357,359,385],nowher:[72,106],noxterm256:305,npc:[22,27,67,70,72,77,110,112,192,227,256,262,386],npcname:123,npcshop:96,nprot:124,nr_start:273,nroom:[68,124],nroom_desc:8,nrow:345,ntf:136,nuanc:62,nudg:[130,239,243,327],nuisanc:145,nulla:28,num:[31,71,219,262],num_lines_to_append:352,num_object:101,num_objects__gt:101,num_tag:101,number:[0,2,5,6,8,11,13,14,19,20,22,23,26,27,33,37,39,40,41,43,44,45,48,49,62,64,65,66,71,72,74,77,80,86,89,90,91,94,96,98,101,104,105,106,107,108,109,110,112,113,114,124,129,133,139,142,143,144,151,154,156,161,162,163,167,169,174,175,184,186,187,190,195,197,198,201,203,205,207,208,211,213,217,218,219,230,232,233,234,235,236,262,265,267,273,274,280,282,287,293,294,296,300,313,323,325,327,331,332,334,336,337,339,341,343,345,346,349,351,352,356,359,367,368,379],number_of_dummi:282,number_tweet_output:124,numberfilt:363,numbertweetoutput:124,numer:[6,110,112,203,228,229,336],numpi:315,obelisk:[109,247],obfusc:[218,219],obfuscate_languag:[218,219],obfuscate_whisp:[218,219],obj1:[6,13,31,42,108,169,216,236],obj2:[6,8,13,31,42,108,169,216,236,337],obj3:[13,108,169],obj4:[13,108],obj5:13,obj:[3,8,12,13,19,20,22,31,32,33,34,37,42,43,44,45,48,58,68,81,86,88,90,95,97,98,100,101,105,108,122,125,154,155,162,163,164,167,169,175,177,178,179,180,183,184,186,191,193,195,200,201,202,205,207,208,211,212,216,219,229,230,232,233,234,235,236,239,241,243,247,248,250,256,257,259,261,262,265,267,269,271,272,273,274,311,313,314,321,330,331,332,333,334,337,339,340,344,354,355,356,359,364,365],obj_desc:235,obj_detail:248,obj_kei:235,obj_prototyp:267,obj_to_chang:45,obj_typeclass:235,objattr:[247,256],objclass:[349,359],object1:22,object2:[22,192,262],object:[0,2,3,4,5,8,12,14,15,16,20,22,23,24,26,27,28,30,32,33,37,39,41,42,44,45,46,48,49,51,53,56,58,59,60,62,63,64,65,66,67,68,70,71,74,75,76,80,83,84,85,86,87,88,89,90,91,92,93,94,96,97,98,102,103,109,112,113,114,117,122,123,124,127,128,129,131,133,145,149,151,152,153,154,155,156,157,158,160,161,162,163,164,166,167,168,169,170,171,174,175,177,178,179,180,181,183,184,185,186,187,188,190,192,193,194,195,199,200,201,202,205,206,207,208,209,210,211,212,213,216,217,219,222,223,224,225,226,227,228,229,230,232,233,234,235,236,238,239,241,242,243,245,246,248,249,250,252,253,254,256,257,264,265,266,267,268,269,271,272,273,274,275,276,280,282,284,286,287,288,289,291,292,295,296,297,298,299,300,301,302,304,306,309,311,313,314,320,321,322,323,325,326,327,330,331,332,333,334,336,337,338,339,340,341,342,343,344,345,349,350,351,353,354,355,356,357,358,359,360,363,364,365,367,368,371,373,379,382,384,386],object_confirm_delet:384,object_detail:384,object_from_modul:359,object_id:129,object_paramet:190,object_search:129,object_subscription_set:261,object_tot:332,object_typeclass:[357,382],objectattributeinlin:259,objectcr:379,objectcreateform:259,objectcreateview:384,objectdb:[13,43,45,75,124,128,151,259,261,262,267,329,330,331,339,344,356,363,367,368],objectdb_db_attribut:259,objectdb_db_tag:[259,330],objectdb_set:[158,331,334],objectdbadmin:259,objectdbfilterset:[363,368],objectdbmanag:[260,261],objectdbseri:[365,368],objectdbviewset:[367,368],objectdeleteview:384,objectdetailview:384,objectdoesnotexist:[158,187,254,261,271,289,331,334,350],objecteditform:259,objectform:379,objectmanag:[260,262,332],objectnam:90,objects_objectdb:58,objectsessionhandl:[12,262],objecttaginlin:259,objectupd:379,objectupdateview:384,objid:31,objlist:[42,265],objlocattr:[247,256],objmanip:169,objmanipcommand:169,objnam:[19,45,169],objparam:267,objs2:43,objsparam:267,objtag:256,objtyp:186,obnoxi:284,obs:333,obscur:[95,140,218,219],observ:[14,15,59,94,99,169,175,189,200,219,238,243,248,306,337,359],obtain:[5,22,66,85,97,136,142,144,193,247],obviou:[9,66,110,125,145,203,384],obvious:[15,40,60,66,71,76,79,125,334],occaecat:28,occas:9,occasion:[108,142],occat:106,occation:345,occur:[3,22,37,46,48,67,81,89,178,217,234,249,257,262,314,343,352],occurr:[70,97,114,336],ocean:[109,142],oct:[106,107],octet:190,odd:[68,71,110,126,145],odor:90,off:[2,13,15,20,22,26,27,30,31,41,44,53,54,58,59,60,62,64,66,71,76,77,83,86,94,99,100,106,108,110,114,117,119,126,133,134,142,144,145,149,154,164,174,179,180,184,185,195,201,213,214,219,243,246,248,257,262,287,295,302,305,321,333,336,337,339,341,343,344,345,351,352,360,385],off_bal:83,offend:49,offer:[0,7,8,9,11,13,15,20,22,23,26,27,30,33,34,37,42,44,46,53,55,56,58,60,62,63,68,72,73,76,77,79,82,85,87,88,89,91,97,98,102,103,104,106,112,113,114,127,140,142,162,163,168,169,179,190,192,193,200,218,248,264,272,323,343],offernam:192,offici:[8,11,74,140,144,145,352],officia:28,offlin:[16,42,67,131,142,168,185,337],offscreen:67,offset:[219,341,352],often:[0,3,5,6,9,11,12,13,16,20,22,24,27,37,39,40,43,44,48,52,53,55,58,59,62,68,70,71,74,77,82,86,89,91,93,97,103,104,106,107,108,110,113,117,142,145,156,162,167,177,178,179,185,193,230,232,233,234,235,236,239,242,257,261,271,273,282,287,301,321,331,333,337,339,345,352,365],ohloh:73,okai:[3,9,27,71,72,86,90,114,141,211],olc:[102,169,264,267],olcmenu:264,old:[7,9,19,20,26,27,31,40,45,59,62,66,67,72,74,76,80,81,85,88,90,94,96,109,114,126,136,142,154,162,163,166,169,184,192,210,219,257,262,267,291,332,333,336,339],old_default_set:8,old_kei:[41,262],old_nam:41,older:[12,40,67,76,77,131,134,136,169],oldnam:333,oliv:62,omit:[42,97,144],ommand:160,on_:193,on_bad_request:284,on_ent:[68,193],on_leav:[68,193],on_nomatch:[68,193],onbeforeunload:46,onbuild:144,onc:[3,5,6,9,11,12,14,22,23,27,31,34,37,40,45,46,48,50,53,56,60,62,66,67,68,70,71,73,74,76,77,80,81,85,86,89,90,91,96,99,101,102,103,104,105,106,107,110,113,125,126,128,131,133,136,140,142,144,148,154,156,161,164,169,174,177,178,180,185,192,193,201,202,208,212,213,214,216,218,225,230,232,233,234,235,236,238,243,246,247,248,249,250,262,266,271,274,287,292,305,309,320,331,336,343,352,357,359],onclos:[53,293,310],onconnectionclos:46,ond:334,one:[0,2,3,4,5,6,7,8,9,11,12,13,14,15,16,19,20,22,23,25,26,27,28,29,30,31,33,34,36,37,39,40,42,43,44,45,46,48,49,50,51,55,56,58,59,60,61,62,64,65,66,67,68,70,71,72,73,74,76,77,78,79,80,81,82,83,86,87,88,89,90,91,92,94,95,96,97,98,99,100,101,103,104,105,106,107,108,109,110,112,113,114,115,116,117,123,125,126,127,128,129,131,133,135,136,137,140,142,143,144,145,147,153,154,158,161,162,163,164,166,167,169,175,178,180,184,185,186,187,190,192,193,195,198,200,202,208,211,212,213,217,218,219,227,229,230,232,233,234,235,236,239,243,247,248,249,250,253,254,256,257,259,261,262,264,265,266,267,271,275,276,282,284,286,287,292,293,294,302,305,306,321,322,323,327,329,331,332,333,336,337,339,340,342,343,344,345,346,349,350,351,352,354,355,356,357,359,360,379,382,384],ones:[8,15,19,20,22,30,31,42,56,62,64,67,68,79,89,90,94,98,99,105,113,126,137,140,142,144,145,162,163,164,187,193,208,210,232,233,234,235,236,256,266,267,286,291,323,336,345,353],onewai:169,ongo:[82,97,113,192,226],ongotopt:46,onkeydown:46,onli:[0,3,5,7,8,11,12,13,14,15,16,19,20,22,23,26,27,28,29,30,31,33,34,37,39,40,41,42,43,45,46,48,49,51,53,56,58,59,62,64,65,66,67,68,70,71,72,73,75,76,77,79,80,81,82,83,85,86,87,88,89,90,91,92,94,95,96,97,98,99,100,103,104,105,106,107,108,109,110,112,113,114,116,117,122,123,125,126,127,128,129,131,134,135,136,137,139,140,142,144,145,151,154,155,156,160,161,162,163,164,166,167,168,169,174,175,176,177,178,179,180,185,186,187,190,192,193,194,195,198,200,201,203,208,210,212,218,219,227,229,230,232,233,234,235,236,238,242,243,247,248,249,250,254,256,257,262,265,266,267,271,273,274,276,282,286,287,294,297,299,300,302,305,314,320,321,323,325,326,327,330,331,332,333,334,336,337,338,339,341,343,344,345,349,351,352,354,355,356,357,359,368,379,384],onlin:[9,16,29,34,39,49,60,63,73,76,77,78,80,86,89,90,92,93,103,107,110,112,113,114,117,118,119,120,121,131,137,139,143,147,148,151,166,174,185,193,201,296,337,386],onloggedin:46,onlook:262,only_tim:356,only_valid:267,onmessag:[53,293,310],onopen:[53,293,310],onoptionsui:46,onprompt:46,onsend:46,onset:13,ontext:46,onto:[20,22,46,76,81,87,105,110,125,140,142,163,239,248,261,294,340,343],onunknowncmd:46,onward:41,oob:[22,35,39,46,56,84,134,154,156,176,202,241,262,287,305,306,310,311,323,386],oobfunc:39,oobhandl:349,oobobject:37,ooc:[12,37,40,62,75,90,98,100,104,114,154,158,166,169,170,174,177,187,194,212,262],ooccmdsetchargen:194,ooclook:[40,194,344],oop:105,opaqu:[16,145],open:[0,3,7,10,11,20,23,26,31,40,62,66,67,68,70,72,73,74,76,77,78,79,89,90,92,98,99,102,104,105,106,107,112,113,114,115,128,129,131,133,136,137,139,140,141,142,145,147,169,176,179,190,191,192,193,201,225,226,236,239,242,243,247,256,325,331,339,352,359,385],open_lid:242,open_parent_menu:193,open_submenu:[68,193],open_wal:247,openhatch:131,openlidst:243,openlock:256,opensourc:336,oper:[3,6,11,13,15,19,22,27,30,31,34,37,43,44,46,49,59,67,68,69,70,77,86,89,95,100,101,104,106,110,126,136,140,142,148,149,154,160,162,164,166,169,174,179,185,190,193,198,219,228,243,247,257,262,265,267,276,279,282,291,292,296,298,302,304,305,311,313,314,321,322,331,332,333,336,339,343,345,349,359,367,368,386],opnli:331,oppon:[13,112,233,235,246],opportun:[66,68,79,97,128,236],oppos:[19,34,62,145,149,321,334],opposit:[72,86,90,98,125,169,239],opt:[46,90,249],optim:[5,19,22,23,44,58,77,85,88,133,164,267,317,320,331],option100:27,option10:27,option11:27,option12:27,option13:27,option14:27,option1:27,option2:27,option3:27,option4:27,option5:27,option6:27,option7:27,option8:27,option9:27,option:[2,3,7,8,12,13,17,19,20,22,23,26,30,31,37,39,42,43,46,48,55,56,58,59,60,61,62,63,64,72,74,76,77,79,81,83,86,89,91,94,96,98,99,102,103,105,113,114,117,122,128,129,131,132,133,134,135,136,144,148,151,154,155,156,160,161,162,163,164,166,167,169,174,177,178,180,183,184,185,186,187,192,193,194,195,197,198,200,201,202,203,205,207,208,210,212,213,216,217,218,219,227,229,230,234,236,241,249,250,252,253,256,257,259,261,262,264,266,267,269,271,272,273,274,275,276,278,279,280,282,284,287,288,291,292,295,296,297,298,299,300,301,302,304,305,306,309,310,311,313,314,321,323,325,330,331,332,333,334,336,337,338,339,341,342,343,344,345,346,349,351,352,353,354,355,356,358,359,360,363,371],option_class:[151,338],option_dict:343,option_gener:343,option_kei:360,option_str:249,option_typ:354,option_valu:354,optiona:[279,333],optionclass:[151,152,335,338],optioncontain:338,optionhandl:[151,152,335,353],optionlist:[27,264,343],options2:46,options_dict:354,options_formatt:[27,201,264,343],optionsl:266,optionstext:[27,201,343],optlist:230,optlist_to_menuopt:230,optuon:218,oracl:[133,359],orang:[62,106,216,249],orc:[42,89,110,122],orc_shaman:42,orchestr:144,order:[2,5,8,9,10,11,12,13,14,15,19,20,22,26,27,29,31,32,33,34,37,39,42,46,48,61,62,66,67,68,71,72,73,77,78,85,87,90,91,92,101,103,104,105,106,109,110,113,114,116,125,126,128,129,136,139,148,154,160,164,170,175,176,179,180,183,190,192,193,194,195,196,198,201,216,217,219,229,232,233,234,235,236,243,246,247,248,249,252,256,257,259,262,267,269,278,293,305,310,314,321,331,333,336,337,343,344,345,352,356,359,384],order_bi:101,order_clothes_list:195,ordered_clothes_list:195,ordered_permutation_regex:219,ordereddict:[13,359],ordin:336,org:[77,113,142,217,249,298,304,310,336,359,379],organ:[11,31,34,37,43,60,63,67,68,72,74,92,101,107,112,127,164,180],orient:[76,77,89,107],origin:[7,11,27,34,37,40,55,66,67,71,76,79,80,81,83,86,89,94,97,101,104,105,116,131,141,145,156,162,169,193,210,212,218,219,249,262,266,267,291,333,336,343,351,355,358,385],oscar:[185,254,333],osnam:359,oss:7,ostr:[154,186,253,356],osx:[11,136],other:[2,6,8,9,11,12,13,14,15,16,17,19,20,23,26,27,29,30,31,33,34,37,40,41,42,43,44,45,46,48,49,50,51,53,55,56,58,59,60,61,62,64,65,66,67,68,70,71,72,73,74,75,76,77,78,79,80,81,82,83,85,86,87,89,90,91,92,94,95,96,97,98,99,100,101,103,104,105,107,110,112,113,114,116,117,122,123,124,125,126,128,129,132,134,136,137,139,144,145,147,148,149,154,160,161,162,163,164,169,175,176,177,180,181,186,190,192,195,197,199,201,207,210,212,218,219,223,225,230,232,233,234,235,236,239,243,248,249,250,254,257,261,262,266,267,272,274,276,280,286,287,291,293,294,300,302,305,314,321,322,324,331,333,335,336,337,339,341,342,343,344,345,351,353,354,356,359,360,384],other_modul:102,othercondit:98,otherroom:225,otherwis:[3,6,11,13,16,19,20,22,27,29,34,37,40,42,55,56,58,62,64,66,73,79,81,83,85,86,91,92,97,101,106,108,114,125,130,133,142,144,145,151,161,162,166,169,185,190,192,196,200,201,205,208,219,229,232,233,234,235,236,241,250,257,262,265,266,267,274,282,293,294,302,321,325,326,330,336,343,344,351,352,356,357,359,384],our:[0,2,3,8,9,11,12,13,15,20,22,31,44,46,50,53,56,59,63,64,65,67,70,71,72,73,74,76,77,78,79,80,81,84,85,86,87,89,90,91,93,94,95,96,97,99,101,103,105,107,108,110,112,113,114,115,116,117,118,119,120,121,122,127,129,130,131,132,133,136,140,141,142,143,144,145,148,158,163,177,178,200,213,230,246,247,250,257,272,327,330,352,365],ourself:[105,114],ourselv:[31,33,66,90,98,99,101,105,123,127,154,194,295,296,298,309],out:[0,3,5,6,8,11,14,15,16,17,22,23,24,27,31,34,37,39,40,42,46,48,49,50,51,54,58,59,60,62,63,64,66,67,68,70,71,72,73,74,75,76,77,78,80,81,82,83,85,86,87,88,89,91,92,97,99,100,101,102,103,104,105,106,107,108,109,110,113,114,115,117,118,119,120,121,122,125,126,128,131,132,133,135,136,139,142,144,148,153,154,161,162,166,168,169,192,194,197,199,201,212,218,219,222,223,225,226,229,232,233,234,235,236,243,247,256,262,266,267,274,282,284,306,310,311,313,322,323,330,331,340,342,343,345,351,358,359,379,385],out_templ:[331,351],outcom:[58,74,112,198,257,262,266],outdat:132,outdata:[53,323],outdoor:[43,109,127,248],outer:[101,102,345],outermost:[13,30,83,102,106],outerwear:195,outfunc_nam:53,outgo:[40,59,142,156,210,262,294,306,322,359],outgoing_port:142,outlet:142,outlin:[2,72,128,293],outmessag:262,output:[0,7,9,15,19,23,27,28,30,40,46,53,59,60,61,62,63,64,68,72,79,90,93,97,98,99,103,104,106,108,113,114,117,124,125,126,131,144,149,164,176,179,180,188,193,197,202,220,221,223,232,233,234,235,236,266,282,287,302,306,314,321,336,344,352,355,359],outputcmd:306,outputcommand:[30,56],outputfunc:[24,53,56,262,287,293,386],outputfunc_nam:[53,287],outputfunct:56,outrank:332,outright:[49,142],outro:[109,248],outroroom:248,outsid:[14,16,39,42,43,59,60,66,74,77,80,85,89,99,103,106,107,108,112,125,129,144,149,190,217,235,246,256,306,321,322,331,334,345],outtempl:[331,351],outtxt:19,outward:[71,142],over:[2,4,5,6,8,9,13,14,15,16,17,19,20,22,23,27,40,43,44,45,46,50,52,53,56,59,60,61,62,63,71,72,73,74,82,85,89,90,94,96,98,101,104,105,106,107,110,112,113,116,123,126,128,132,135,142,144,145,154,163,174,184,186,201,213,225,230,232,233,234,235,236,243,248,276,286,300,302,305,307,311,313,315,328,333,337,349,355,359,384],overal:[29,48,58,88,89,139,142,162,177,178,233],overcom:72,overdo:104,overhead:[19,23,61,127,133,219,250,331],overhear:218,overlap:[20,91,218,336,345],overload:[6,20,22,27,30,34,39,44,53,55,62,68,76,84,87,89,105,114,116,122,154,162,164,178,185,193,194,200,202,216,219,225,226,232,233,234,235,236,246,247,248,249,262,267,276,286,305,322,341,343,344,345,353],overrid:[2,20,27,29,31,37,40,41,42,46,56,64,67,68,75,79,80,81,92,97,98,99,103,105,107,115,116,122,123,125,135,154,164,169,176,180,185,186,190,193,200,208,210,218,234,236,241,248,249,257,262,267,274,305,323,327,330,331,344,349,352,353,356,368,384],overridden:[53,79,116,154,169,193,228,249,384],override_set:41,overriden:[154,176,219],overrod:50,overrul:[12,31,154,163,219,262,345],overseen:112,overshadow:110,overshoot:359,oversight:89,overview:[0,1,16,29,50,70,76,89,93,110,114,117,118,133,145,386],overwhelm:[70,101,110],overwrit:[55,105,116,169,176,190,300,332,384],overwritten:[22,129,190,248,334],owasp:379,own:[0,4,5,8,9,11,13,14,17,19,20,23,27,29,31,33,37,39,40,41,42,43,45,48,51,55,56,58,59,60,62,63,64,67,68,72,73,74,76,77,79,80,81,83,84,86,89,91,93,94,96,97,99,102,103,104,105,107,109,110,114,115,116,117,118,119,120,121,125,127,128,129,130,132,136,139,140,141,143,145,151,152,158,160,161,162,163,169,174,177,188,195,197,200,201,212,214,218,219,223,232,233,234,235,236,247,249,250,256,257,262,267,287,314,322,333,336,337,338,344,345,349,352,353,357,359,368,384,386],owner:[31,51,79,96,154,257,353],owner_object:31,ownership:[142,144,190],p_id:128,pace:246,pack:[56,291],packag:[4,5,6,8,9,59,60,64,67,74,77,86,102,103,130,132,133,136,140,141,142,144,148,152,153,165,182,245,251,255,258,268,282,291,306,310,329,363],package_nam:77,packagenam:77,packed_data:[279,291,292],packeddict:[6,333],packedlist:[6,333],packet:[56,302],pad:[17,62,336,345,351,359],pad_bottom:345,pad_char:345,pad_left:345,pad_right:345,pad_top:345,pad_width:345,page:[0,2,7,8,10,11,14,15,17,20,22,27,28,31,34,39,45,46,49,50,53,55,59,60,63,67,73,74,76,77,78,80,81,82,89,90,93,94,98,99,102,110,112,126,128,129,131,132,133,140,141,142,144,145,147,149,150,174,175,185,254,256,259,269,311,330,333,343,344,359,361,377,384,385,386],page_back:344,page_ban:174,page_end:344,page_formatt:344,page_next:344,page_quit:344,page_titl:384,page_top:344,pagelock:256,pageno:344,pager:[28,344],pages:[27,343],pagin:344,paginate_bi:384,paginator_index:344,paginator_slic:344,pai:[88,96,142,145,247,256],paid:142,pain:142,painstakingli:14,pair:[20,46,56,113,154,162,195,256,262,323,379,384],pal:33,palett:126,pallet:72,palm:201,pane:[46,59,181,199],pane_name_to_cut_apart:46,pane_to_set:46,panel:7,panic:[42,98],paper:[93,110,113,131],paperback:112,par:133,paradigm:[67,110,123,233],paragraph:[15,19,215,337,345,359],parallel:[89,91,92,117,332],paralyz:234,param:[169,262,274,276,284,294,327,352,360,363,364,365],paramat:[154,164,262,321],paramet:[2,3,7,8,20,66,68,70,71,85,91,97,101,108,134,144,151,154,155,156,160,161,162,163,164,176,183,184,185,186,187,190,192,193,195,197,198,200,201,202,203,205,206,207,208,210,211,212,213,217,218,219,222,223,225,229,230,232,233,234,235,236,241,242,248,249,250,253,257,259,261,262,264,266,267,269,272,273,274,275,276,279,280,281,282,284,286,287,288,289,291,292,293,294,295,296,297,298,299,300,301,302,304,305,306,307,309,310,311,313,319,320,321,322,323,325,326,327,331,332,333,334,336,337,338,339,340,341,342,343,344,345,346,349,351,352,353,354,356,357,358,359,360,363,364,365,371],paramount:8,paramt:360,paremt:267,parent1:42,parent2:42,parent:[12,19,20,22,34,42,45,53,62,65,68,77,81,87,94,98,100,104,105,107,114,123,125,158,166,169,177,179,193,210,219,229,230,249,256,261,262,266,267,271,331,332,333,341,350,352,359,363,384],parent_categori:230,parent_kei:[68,193],parent_model:[155,183,252,259,269,330],parentesi:351,parenthes:106,parenthesi:[106,107],parentlock:256,pari:[131,142],pariatur:28,paricular:22,park:193,parlanc:115,parri:[113,247],parrot:123,pars:[6,16,20,22,26,27,39,42,53,56,59,60,62,63,74,93,94,104,114,115,117,129,136,159,160,161,164,169,175,176,177,178,179,180,184,192,193,198,199,200,212,219,222,223,224,230,247,248,249,257,262,265,266,267,287,294,297,306,310,311,331,336,337,341,342,343,351,358,359,386],parse_ansi:336,parse_ansi_to_irc:294,parse_fil:337,parse_html:358,parse_inlinefunc:351,parse_input:343,parse_irc_to_ansi:294,parse_languag:219,parse_nick_templ:[331,351],parse_opt:230,parse_sdescs_and_recog:219,parseabl:266,parsed_str:294,parseerror:249,parser:[22,39,42,60,86,102,129,131,160,161,166,169,177,178,184,199,200,216,218,219,247,249,265,266,301,336,351,358],parsestack:351,part1:[216,386],part2:[216,386],part3:386,part4:386,part5:386,part:[0,2,3,4,7,8,11,13,14,15,16,22,27,29,31,36,37,40,45,46,50,53,55,58,59,62,64,65,67,68,70,71,72,73,74,78,79,83,85,86,87,89,90,92,96,97,99,101,103,104,105,106,107,109,110,112,113,114,116,122,133,142,161,162,164,177,178,180,185,190,192,193,198,216,219,230,235,253,256,257,265,266,282,286,311,322,325,327,331,332,336,337,341,343,351,359],part_a:192,part_b:192,parth:307,parti:[3,9,14,19,62,67,73,77,106,107,129,132,133,140,141,142,187,192,198],partial:[29,81,218,266,284,297,323,354,356,359,360],particip:[86,145,232,233,234,235,236],particular:[5,6,11,14,15,20,29,30,31,34,39,40,41,43,45,49,53,56,59,61,62,64,68,69,74,77,78,82,86,87,90,93,96,99,101,102,103,105,106,107,108,123,125,127,131,132,140,141,154,161,162,169,186,200,223,234,235,243,253,256,257,262,271,323,325,333,349,356,384,385],particularli:[8,27,49,66,74,76,79,85,177,219,229,267,286],partit:336,partli:[13,20,58,63,102,162],party_oth:192,pass:[2,8,10,19,22,27,28,30,31,40,41,42,44,45,48,53,56,59,71,72,79,80,81,82,83,84,91,92,95,96,97,98,100,104,105,107,108,122,125,129,133,142,144,149,154,156,162,181,190,195,197,198,201,202,207,213,222,223,225,229,230,232,233,234,235,236,241,247,256,257,262,266,272,276,280,292,300,302,305,310,311,321,327,331,333,342,343,344,345,351,352,353,354,355,358,359,363,368,384],passag:[56,113,195,247,248,346],passant:126,passavataridterminalrealm:302,passiv:[83,113,128],passthrough:[20,274],password1:[155,379],password2:[155,379],password:[2,11,25,27,30,31,49,67,77,79,98,103,104,117,133,145,148,154,155,166,167,181,199,214,217,223,287,302,305,326,339,371,379],password_chang:382,passwordresettest:382,past:[0,14,26,39,46,60,66,70,72,73,90,91,92,99,103,113,114,128,234,328,337,346,384],pastebin:73,patch:[45,357],path:[4,7,12,15,19,27,30,31,34,37,40,42,45,53,54,58,59,62,64,66,68,74,77,79,80,83,85,96,99,100,101,104,106,107,114,116,117,122,123,125,129,132,136,138,142,144,154,156,158,161,162,163,168,169,170,171,172,173,174,179,185,187,190,191,192,193,194,195,197,198,200,202,208,210,211,213,214,216,217,218,219,225,226,227,232,233,234,235,236,238,239,241,242,243,246,247,248,250,254,261,262,266,267,271,273,274,276,282,289,291,300,307,313,315,319,323,327,331,332,333,337,339,341,342,343,344,346,349,350,356,359,368,384],path_or_typeclass:211,pathnam:357,patient:78,patreon:78,patrol:246,patrolling_pac:246,patron:[73,78],pattern:[33,50,64,65,79,92,115,128,129,167,219,326,359],paul:45,paus:[27,37,48,70,85,113,144,149,207,274,359],pausabl:359,pauseproduc:284,paxboard:131,payload:[293,310],paypal:[73,78],pdb:151,pdbref:[31,256],pdf:131,peac:122,peek:[0,27,97,99,104],peer:[293,310],peform:287,peg:145,pem:138,pemit:[60,167],pen:93,penalti:[58,234],pend:327,pennmush:[60,63,89],pentagon:145,peopl:[0,6,12,29,31,60,62,73,76,77,80,90,94,96,99,101,103,110,112,113,131,135,139,140,142,145,147,175,199,219,247,248,330,339],pep8:0,per:[5,12,13,22,27,34,40,42,51,56,58,77,79,86,90,91,92,106,113,114,144,154,185,190,200,218,229,232,233,234,235,236,246,295,296,298,306,309,325,343,344,345,349,352,353],perceiv:91,percent:[22,229,359],percentag:[113,151,152,188,228,332,359],percentil:359,perception_method_test:318,perfect:[11,26,76,110,141,144,190],perfectli:[43,63,79,92,336],perform:[3,5,6,13,14,15,28,30,31,34,37,62,68,76,81,85,86,97,106,113,114,122,128,129,133,139,141,145,160,162,166,169,174,185,193,195,201,207,208,219,222,230,232,233,234,235,236,243,262,265,271,272,291,305,313,314,331,332,333,340,351,353,356,359,360,379],perhap:[3,6,50,60,68,70,91,92,97],period:[8,9,10,106,142,144,145,359],perist:[23,45],perm:[13,22,29,31,42,43,49,51,68,79,81,90,96,98,104,114,128,139,158,167,168,169,174,175,176,179,200,206,216,225,248,254,256,257,261,262,271,331,333],perm_abov:[31,256],perm_us:167,perman:[20,27,49,79,80,81,96,98,105,109,114,134,142,154,162,163,166,169,174,175,179,210,218,262,275,333],permiss:[5,12,13,20,29,42,49,52,54,60,67,79,80,81,86,99,104,114,128,132,133,139,141,151,154,155,157,158,162,164,166,167,168,169,175,177,178,185,206,210,219,236,254,256,257,261,262,266,267,271,331,332,333,334,337,339,352,356,361,362,363,365,368,384,386],permission_account_default:[31,313],permission_class:368,permission_func_modul:256,permission_guest_default:54,permission_hierarchi:[31,51,256,257],permissiondeni:364,permissionerror:266,permissionfilt:363,permissionhandl:[128,334],permissionshandl:[330,365],permit:[86,130,169,326],permstr:[31,154,333,339],permut:219,perpetu:5,persis:83,persist:[19,20,22,23,27,32,34,37,39,40,42,44,45,58,66,68,76,77,80,88,89,93,100,103,106,113,114,117,125,131,149,154,158,169,179,185,186,187,193,197,201,208,218,219,226,229,230,232,233,234,235,236,243,247,254,261,262,264,265,266,271,272,273,274,275,276,287,288,289,320,321,329,333,339,341,343,345,346,359],person:[37,40,49,63,78,80,98,110,112,123,136,142,154,169,175,190,192,198,219,242],perspect:[40,55,112],pertain:[116,126,145,372],pertin:[29,128],perus:46,peski:96,pester:[89,110],phase:[71,110],philosophi:[31,106],phone:[50,77,141,217],phone_gener:217,phonem:218,php:[60,77,379],phrase:[70,211],phrase_ev:211,physic:[12,71,235,246],pick:[7,14,16,20,22,25,27,29,31,37,39,67,72,73,76,80,85,91,96,99,105,106,112,117,127,140,142,144,161,166,169,175,177,178,184,195,203,210,219,236,239,247,248,262,314],pickl:[13,44,56,83,191,229,272,276,279,289,291,292,331,332,340,341,343,355],pickle_protocol:355,pickledfield:355,pickledformfield:[330,355],pickledobject:355,pickledobjectfield:355,pickledwidget:355,picklefield:[151,152,330,335],pickpocket:176,pickup:[210,236,262],pictur:[7,53,80,89],pid:[2,11,31,128,144,149,256,262,282,292,359],piddir:2,pidfil:282,piec:[5,14,48,77,105,106,110,216,309,337],pierc:247,piggyback:154,pile:[163,337],pillow:141,ping:[156,282,294],pip:[0,3,5,6,8,9,10,67,74,102,106,128,133,136,137,139,141,143,144,148,151],pipe:[40,294,340],pitfal:[0,15,62,126],pixel:134,pizza:[158,187,254,261,271,331,333,334],pkg:141,pki:132,place:[0,9,11,12,13,15,16,27,31,34,37,39,40,42,55,56,57,63,64,66,67,70,71,72,73,74,76,77,79,80,81,84,86,91,92,97,99,102,103,105,106,108,112,114,115,116,125,126,127,128,132,136,139,141,142,144,145,154,167,169,175,192,193,195,197,201,210,216,219,222,229,232,233,234,235,236,247,248,250,262,274,291,300,305,321,322,323,337,338,340,343,359],placehold:[129,257,262,345],plai:[12,13,15,29,40,51,56,62,66,68,70,72,76,77,83,85,90,93,94,97,106,109,110,112,113,114,117,125,127,128,141,142,148,154,232,236,306,323,339],plain:[14,15,58,59,74,90,99,114,192,193,215,267,287,313,340,384],plaintext:223,plan:[3,15,16,45,53,67,76,86,88,93,101,105,108,117,118,119,120,121,142,144,337,386],plane:[108,125],planet:[91,103,131],plant:249,plate:[45,95,217],platform:[7,11,37,50,67,88,136,142],playabl:[128,382],player:[5,6,13,20,23,27,29,31,40,43,46,48,49,51,53,56,60,61,67,68,72,75,76,77,80,81,83,86,90,94,96,97,99,100,103,104,105,106,107,109,110,112,113,114,117,118,119,120,121,122,123,124,125,128,135,137,139,142,143,148,149,163,166,169,174,179,186,189,190,192,193,201,203,211,212,213,216,218,219,223,227,230,235,236,248,249,250,253,271,296,305,322,337,342,359,379,384],playernam:139,playerornpc:67,pleas:[0,5,8,11,17,20,27,42,45,46,50,62,72,73,78,79,99,105,122,123,124,128,130,132,136,139,140,141,142,179,284,313,349,355,379],pleasur:50,plenti:[15,63,76],plot:315,plu:[7,19,68,77,179],pluck:22,plug:[41,116,145,250],plugin:[39,53,56,60,75,76,79,102,103,131,140,190,219,280,386],plugin_handl:46,plugin_manag:46,plural:[31,51,90,235,262],png:[36,116],po1x1jbkiv:73,pobject:242,pocoo:359,poet:101,point:[2,3,5,6,7,8,10,11,12,14,15,16,19,20,22,23,27,34,37,39,40,43,44,45,56,58,59,61,64,66,68,71,73,74,76,79,80,81,83,85,88,91,92,93,94,96,97,98,99,103,104,105,106,107,110,112,113,114,116,120,125,128,129,132,136,141,142,144,148,154,160,164,169,177,178,179,192,202,210,213,219,225,232,248,249,250,262,264,266,276,282,286,300,302,310,321,323,330,331,333,337,343,359,384],pointer:[0,71,88,97],pointless:[34,44,48],poison:[229,234,267],pole:216,polici:[107,142,145,223,254,326,331],polit:[107,145],poll:[53,116,166,246,282,311],pong:294,pool:[20,44,133,276,327,340],poor:90,poorli:145,pop:[7,48,74,81,90,96,133],popen:292,popul:[2,64,68,86,89,91,94,110,133,162,170,171,172,173,193,195,200,216,219,227,232,233,234,235,236,239,246,247,248,275,276,330,337,341,342,344,351],popular:[60,67,77,89,101,117,131,145,147,384],popup:46,port:[2,66,67,76,117,132,133,135,136,138,140,144,149,156,174,291,294,302,314,323,327],portal:[5,7,9,24,34,38,39,46,53,59,75,102,103,125,131,142,145,149,151,152,156,179,196,277,279,282,320,321,322,323,346,352,359,386],portal_connect:323,portal_disconnect:323,portal_disconnect_al:323,portal_l:292,portal_pid:[292,359],portal_receive_adminserver2port:292,portal_receive_launcher2port:292,portal_receive_server2port:292,portal_receive_statu:292,portal_reset_serv:323,portal_restart_serv:323,portal_run:282,portal_service_plugin_modul:53,portal_services_plugin:[39,53,103],portal_services_plugin_modul:53,portal_sess:53,portal_session_sync:323,portal_sessions_sync:323,portal_shutdown:323,portal_st:282,portal_uptim:346,portallogobserv:352,portalsess:[40,53,300],portalsessiondata:323,portalsessionhandl:[53,151,277,290,301,323],portalsessionsdata:323,portion:[190,193,203],pose:[83,90,98,113,175,185,208,219],pose_transform:185,poser:185,posgresql:133,posit:[14,27,46,68,71,72,85,97,99,107,113,126,163,181,190,193,199,213,215,236,247,248,249,250,275,336,337,340,341,345,359,360],positive_integ:360,positiveinteg:353,posix:[352,359],possess:202,possibl:[0,5,8,9,11,13,20,22,23,26,27,30,31,37,39,40,42,43,48,54,55,62,66,67,68,70,72,73,74,76,77,81,85,89,90,97,101,102,103,106,107,109,112,113,114,116,126,129,133,136,141,144,151,154,158,160,162,169,177,178,190,192,200,207,210,213,216,218,219,227,229,243,246,248,250,256,257,262,265,266,267,272,276,287,307,311,321,323,332,336,339,341,342,343,345,355,356,359],post:[20,23,31,41,72,73,76,78,89,90,92,110,116,117,124,128,136,139,143,223,311,367,384],post_delet:41,post_init:41,post_join_channel:185,post_leave_channel:185,post_migr:41,post_sav:41,post_send_messag:185,post_text:203,post_url_continu:[155,183,259],postfix:218,postgr:[77,133],postgresql:[76,359],postgresql_psycopg2:133,postinit:46,posttext:201,postupd:[124,139],pot:[49,100],potato:[134,249],potenti:[0,13,14,48,56,62,72,86,95,107,113,114,142,143,164,186,223,224,256,257,262,266,353,356,359],potion:[108,333],power:[3,16,20,22,26,27,31,34,42,46,51,70,72,76,77,83,84,88,90,99,101,105,106,107,108,109,110,113,114,162,163,168,169,230,235,249,337,343,359],powerfulli:66,pperm:[31,49,86,104,128,139,166,174,216,256,262],pperm_abov:256,pprofil:282,pprogram:282,practial:16,practic:[0,2,11,14,15,22,23,31,34,40,42,66,68,73,77,78,83,89,90,104,105,106,107,108,126,136,142,337],pre:[22,34,62,71,72,110,135,136,139,142,154,169,176,218,257,262,266,267,310,311,341,355],pre_delet:41,pre_init:41,pre_join_channel:185,pre_leave_channel:185,pre_migr:41,pre_sav:[41,355],pre_send_messag:185,pre_text:203,preced:[20,42,51,62,86,162,164,184,230,262,267,332,345],preceed:99,precend:160,precis:[13,126,336],predefin:[125,326],predict:[45,106,128],prefer:[7,11,20,31,42,46,68,72,73,76,78,80,89,97,103,105,114,117,133,139,142,162,164,167,185,193,219,233,246,253,262],prefix:[3,6,45,55,58,68,133,145,155,161,178,185,203,218,252,259,287,294,330,336,351,352,356,359,363,379],prefix_str:81,preload_metadata:190,prelogout_loc:104,prematur:[5,19,192,274],prepai:142,prepar:[8,33,42,71,89,115,154,219,232,233,234,235,236,246,271,340,355],prepend:[212,219,262,336,337,343,359],prepopul:[330,384],preprocess:169,prerequisit:[2,67],prescrib:[76,89],presenc:[17,67,76,88,103,104,116,126,133,142,154,262,327,361],present:[3,6,11,27,39,40,68,70,71,79,91,92,96,97,113,114,132,193,201,203,217,218,227,230,249,267,341,359,365],preserv:[126,177,178,333,336,337,352,359],press:[0,3,7,15,16,20,22,27,31,56,59,67,68,99,103,106,117,136,144,149,193,239,242,243,247,280,343],press_button:242,pressabl:243,pressur:95,presto:99,presum:[91,112,163,352,353],pretend:141,pretext:201,pretti:[0,11,34,59,66,68,73,77,81,85,86,96,104,106,107,109,113,114,125,126,128,140,142,164,195,217,229,251,257,266,342,344,353,359],prettier:[66,379],prettifi:[89,359],prettili:91,pretty_corn:345,prettyt:[19,95,345],prev:[27,98,99,100,101,102,103,104,105,106,107,108,109],prev_entri:27,prevent:[13,22,70,74,91,99,106,190,207,236,249,330,344,384],preview:74,previou:[3,13,15,20,22,27,28,31,33,39,41,48,50,58,62,66,68,83,86,90,91,92,96,97,98,101,102,104,105,106,109,114,126,144,184,229,230,248,264,274,343,352,384],previous:[8,20,23,26,30,37,39,62,71,97,99,105,116,128,140,164,167,169,192,213,287,303,307,314,323,334],prgmr:142,price:[142,190,247],primari:[17,45,104,128,144,219,262,331,356],primarili:[2,12,23,49,60,73,74,76,110,154,192,219,253,300,340,359],primarli:74,primary_kei:128,prime:[160,192],primer:48,primit:[110,169,266],princess:[72,109],principl:[0,12,22,27,31,34,51,53,67,73,74,76,84,89,96,101,103,104,107,114,127,142,143,163,166,192,248],print:[0,3,4,6,13,19,26,27,45,48,53,58,61,67,79,80,81,90,97,101,104,106,107,149,166,198,218,229,249,266,281,282,342,343,344,345,351,352,359],print_debug_info:343,print_help:249,print_usag:249,printabl:308,printout:[107,305],prio:[20,22,81,104,160,248],prior:[122,207,262],priorit:218,prioriti:[6,20,22,27,79,81,87,113,162,166,170,171,172,173,177,178,193,214,247,248,262,341,343,344],prison:101,privat:[11,79,89,92,110,132,142,174,175,186,294,307],private_set:67,privatestaticroot:327,priveleg:105,privileg:[80,114,133,136,137,140,143,175,219,250,262,333],privkeyfil:302,privmsg:294,prize:109,proactiv:44,probabl:[9,13,22,27,34,50,58,60,68,70,73,76,77,79,80,81,83,89,92,96,104,110,113,116,125,128,129,133,138,142,190,193,211,217,248,284,294,302,349,359,360],problem:[0,2,6,8,13,14,16,19,31,61,65,68,72,74,77,78,80,81,88,92,93,98,106,108,110,133,141,142,144,145,149,154,163,208,262,291,337],problemat:[81,359],proce:[15,16,125,126,144,309,384],procedur:[230,302,305],proceed:[11,359],process:[2,3,5,7,11,13,14,15,16,22,27,34,36,55,56,59,66,67,68,71,74,76,77,79,81,83,85,86,97,103,106,110,112,118,128,132,133,141,142,144,154,160,169,179,192,213,219,230,249,255,257,262,266,272,282,287,291,292,299,302,305,310,311,320,321,323,336,337,340,343,353,358,359,360,384,386],process_languag:219,process_recog:219,process_sdesc:219,processed_result:359,processj:[331,351],processor:[5,24,72,120,149,151,152,168,179,213,335,386],procpool:359,produc:[11,22,27,62,114,166,169,216,218,247,250,262,266,267,281,313,331,333,342,343,351,359],produce_weapon:247,producion:19,product:[0,2,5,7,9,11,64,133,142,145,147,313,316,343],production_set:67,prof:5,profess:101,profession:[60,77,89,106,115],profil:[1,137,151,152,155,158,201,277,386],profile_templ:201,profunc:42,prog:249,progmat:88,program:[5,7,8,9,12,16,36,48,58,60,62,75,77,85,88,89,102,103,106,107,109,131,133,136,141,142,144,145,149,179,249,277,282,305,311,313],programiz:85,programm:[97,117],programmat:62,progress:[11,78,96,112,131,232,233,234,235,236,341],proident:28,project:[8,11,16,60,64,71,72,73,77,79,81,97,116,131,140,353,385],projectil:235,promis:0,promisqu:126,prompt:[0,3,45,46,56,59,67,72,77,93,106,117,133,134,135,136,141,144,148,164,230,280,294,305,310,311,337,343,386],promptli:15,prone:[9,163,333],pronoun:202,prop:110,propag:[132,286,355],proper:[2,8,11,16,19,46,64,77,80,85,87,88,89,96,97,110,113,114,128,133,144,145,169,192,193,209,218,342],properli:[7,8,9,10,11,32,45,60,65,67,74,83,90,91,92,122,126,128,164,190,192,224,248,256,276,302,359,384],properti:[4,6,8,14,29,31,32,33,39,42,44,58,68,72,75,76,81,85,88,89,94,98,102,104,108,110,112,113,114,125,126,149,154,155,156,158,164,166,169,177,179,180,183,185,187,190,193,201,205,207,216,219,228,229,230,232,234,235,236,246,247,248,249,250,252,254,256,257,259,261,262,266,267,269,271,273,274,278,287,289,294,300,314,321,322,323,330,331,333,334,338,340,343,353,354,355,356,359,365,379,384],propnam:114,propos:26,proprietari:133,propval:114,propvalu:114,prosimii:[128,129],prospect:110,prot:267,prot_func_modul:[42,265],protect:[20,142,169],protfunc:[151,152,263,266],protfunc_modul:266,protfunc_pars:266,protfunct:266,protkei:[42,265,266],proto:[291,302],proto_def:216,protocol:[19,22,24,30,36,39,40,46,52,56,75,77,102,103,131,134,140,142,145,149,154,156,164,167,202,223,241,262,277,279,282,284,287,291,292,293,294,295,296,297,298,300,301,302,304,305,306,307,309,310,311,313,320,321,322,323,341,355,359,386],protocol_flag:[304,305,309,321],protocol_kei:322,protocol_path:[300,323],protodef:216,prototocol:179,protototyp:[264,266,267],protototype_tag:42,prototoyp:265,prototyp:[24,70,75,76,102,103,124,151,152,169,179,216,233,234,247,386],prototype1:267,prototype2:267,prototype_:42,prototype_desc:[42,267],prototype_dict:169,prototype_diff:267,prototype_diff_from_object:267,prototype_from_object:267,prototype_kei:[42,169,266,267],prototype_keykei:169,prototype_lock:[42,267],prototype_modul:[42,169,266,267],prototype_par:[42,169,267],prototype_tag:267,prototype_to_str:266,prototypefunc:267,protpar:[266,267],protpart:266,provid:[2,6,8,11,13,17,22,37,42,45,46,49,50,60,66,68,74,76,79,81,83,86,92,97,105,106,107,108,115,116,126,128,129,138,141,142,144,145,154,164,169,174,185,190,193,195,201,203,206,213,216,217,230,232,233,234,235,236,249,250,256,262,274,302,325,332,343,353,354,355,359,360,367,368,379,384],provok:[3,131],proxi:[45,102,145,147,190,327,330],proxypass:132,proxypassrevers:132,prudent:2,prune:20,pseudo:[53,60,71,97,217,218],psionic:235,psql:133,psycopg2:133,pty:67,pub:86,pubkeyfil:302,publicli:[110,131,135],publish:[2,80,131,144],pudb:151,puff:88,pull:[2,9,11,20,22,73,74,77,81,103,116,144,211,243,247,284],pullrequest:73,pummel:109,punch:[20,98],punish:236,puppet:[6,12,20,22,30,31,40,41,51,53,62,67,68,76,80,85,86,89,90,91,104,114,123,128,153,154,160,166,169,177,194,210,212,256,262,321,323,333,351,382,384],puppet_object:[12,154],purchas:96,pure:[45,59,62,70,88,126,271,282,331,336],pure_ascii:359,purg:[13,45,149,179],purpos:[13,36,43,56,79,101,107,114,126,128,142,156,160,164,198,207,302,331,340,343,359],pursu:[109,246],push:[55,68,74,105,126,144,145,211,239,242,243,247],pushd:136,put:[3,7,8,12,14,15,22,26,27,31,33,34,37,39,40,42,45,48,49,51,56,58,62,63,64,66,70,71,72,73,74,77,78,80,81,89,90,96,98,99,103,105,106,108,110,112,113,114,115,116,125,128,131,133,142,145,147,163,166,167,169,171,175,191,194,195,201,203,219,230,232,233,234,235,236,238,243,257,291,305,344,345,359],putti:142,puzzl:[109,131,151,152,188,247,248],puzzle_desc:247,puzzle_kei:248,puzzle_nam:216,puzzle_valu:248,puzzleedit:216,puzzlerecip:216,puzzlesystemcmdset:216,pwd:144,py3:291,pyc:103,pycharm:[1,74,117,386],pyflak:0,pylint:0,pyopenssl:137,pypath:359,pypath_prefix:359,pypath_to_realpath:359,pypi:[5,77,131,142,336],pypiwin32:[67,136],pyprof2calltre:5,pyramid:250,pyramidmapprovid:250,python2:[6,67,136],python37:136,python3:[77,136,141,148,229],python:[3,5,6,7,8,9,10,12,13,15,16,19,20,22,26,27,31,34,39,42,45,48,49,51,54,55,58,60,61,62,64,66,67,68,70,71,72,73,74,75,77,79,80,83,85,88,90,91,92,93,95,96,97,98,99,100,101,102,104,105,108,112,113,114,115,117,118,119,120,121,123,128,129,133,136,137,140,141,142,143,144,145,148,149,161,163,168,169,173,179,180,193,198,205,206,207,208,209,210,211,217,249,250,257,261,265,266,267,273,276,282,284,291,295,300,310,321,323,327,329,332,333,336,337,339,340,341,342,343,345,346,349,352,355,359,365,385],python_execut:77,python_path:[163,359],pythonista:131,pythonpath:[163,282,292,337],pytz:360,q_lycantrop:101,q_moonlit:101,q_recently_bitten:101,qualiti:[110,161],quell:[12,98,99,104,106,109,125,166,225],queri:[11,13,23,42,43,50,56,58,77,85,88,93,108,117,158,187,219,253,254,261,262,265,266,267,271,289,302,317,331,332,333,334,344,350,356,359,360],query_al:331,query_categori:331,query_info:282,query_kei:331,query_statu:282,query_util:363,queryset:[37,43,77,186,212,253,266,288,330,332,344,363,368,384],queryset_maxs:344,querystr:363,querystring_auth:190,querystring_expir:190,quest:[76,89,93,109,110,122,136],question:[0,8,11,22,23,26,27,48,64,68,89,110,112,118,132,136,142,169,261,279,280,331,341,343,359],queu:282,queue:[2,113,327],qui:28,quick:[6,20,22,43,60,65,68,74,76,85,97,106,107,110,113,131,142,147,156,169,193,218,267,287,331,334,345,367],quicker:[33,58,66,73],quickli:[9,13,16,22,23,27,34,43,48,58,62,81,85,116,124,147,169,193,218,334,337],quickstart:[6,39,55,58,74,90,141,142,144,149,385,386],quiescentcallback:284,quiet:[81,96,108,167,169,174,193,195,210,219,262,344,359],quiethttp11clientfactori:284,quietli:[56,59,83,331],quirk:[1,134,163,386],quit:[3,5,8,9,12,17,22,26,27,40,48,53,66,68,70,74,76,79,80,84,85,89,96,98,99,101,104,106,107,108,109,128,133,135,141,166,181,193,199,201,207,235,302,341,343,344],quitfunc:[26,341],quitfunc_arg:341,quitsave_yesno:341,quo:44,quot:[19,25,26,31,42,62,106,123,133,169,181,199,219,341,351,355,359],qux:230,ra4d24e8a3cab:25,race:[76,88,110,112,122,128,131,132,359],rack:247,radiu:[71,72,85],rage:[109,229],ragetrait:229,rail:[77,125],railroad:125,rain:[37,109,127],raini:248,rais:[16,19,22,42,48,56,92,97,101,112,129,154,156,186,190,193,198,200,205,207,208,217,218,219,229,257,265,266,274,276,281,282,300,305,311,326,331,332,336,337,339,342,343,345,351,352,353,354,355,359,360,364],raise_error:[354,359],raise_except:331,ram:[13,142],ramalho:131,ran:[2,3,8,14,106],rand:37,randint:[42,97,104,112,113,114,124,232,233,234,235,236,265,267],random:[25,37,39,42,67,70,97,99,104,109,112,113,114,124,127,142,217,218,232,233,234,235,236,238,239,242,244,247,248,250,265,267,313,314,359],random_string_from_modul:359,random_string_gener:[151,152,188],randomli:[5,37,58,124,127,232,233,234,235,236,246,247,265,282,314],randomstringgener:217,randomstringgeneratorscript:217,rang:[3,5,8,20,26,42,59,71,72,85,88,97,99,109,113,123,124,134,136,145,169,197,201,228,229,233,236,332,341,379,384],rank:[51,256],raph:131,raphkost:131,rapidli:163,rapier:101,raptur:306,rare:[7,9,22,23,39,44,48,58,68,74,136,257,339],rascal:43,rate:[22,73,77,142,151,152,174,188,276,282,301,359],ratetarget:[228,229],rather:[0,5,6,8,9,11,12,13,14,22,34,37,39,43,44,58,63,64,68,72,73,74,76,77,81,83,85,86,89,97,99,103,106,108,110,113,115,117,129,139,149,154,158,162,166,169,170,174,177,179,192,203,207,210,215,219,229,232,233,234,235,236,251,256,262,264,267,330,331,333,336,345,351,354,355,358,384],ration:192,raw:[22,30,42,49,56,58,62,74,77,86,88,99,106,107,115,117,154,161,164,169,177,178,180,219,223,229,249,262,287,302,305,310,311,321,336,341,343,353,359],raw_cmdnam:[98,161,178],raw_desc:200,raw_id_field:[183,259,269],raw_input:[96,343],raw_nick:33,raw_str:[22,27,96,98,154,156,160,161,164,180,201,214,230,262,264,321,331,343],raw_templ:33,raw_text:214,rawstr:[164,180],rcannot:68,re_bg:358,re_bgfg:358,re_blink:358,re_bold:358,re_color:358,re_dblspac:358,re_double_spac:358,re_fg:358,re_format:336,re_hilit:358,re_invers:358,re_mxplink:358,re_norm:358,re_str:358,re_ulin:358,re_underlin:358,re_unhilit:358,re_url:358,reach:[27,33,59,68,85,98,99,109,112,125,142,151,164,201,205,229,236,256,302,306,325,343,344,351,356,385],reachabl:[44,77],react:[27,44,122,123,246,262],reactiv:179,reactor:[293,320,327,357],read:[5,8,9,11,13,14,16,17,19,20,22,23,27,31,37,39,40,42,50,55,58,59,62,66,67,68,70,73,74,76,77,78,79,81,83,85,86,88,90,92,96,97,98,99,101,102,103,104,105,106,107,109,110,114,126,128,129,131,132,133,139,140,142,145,148,154,158,168,176,187,190,193,200,203,211,212,217,219,229,247,248,254,261,262,266,267,271,289,291,314,331,333,334,337,338,342,344,350,352,384],read_batchfil:337,read_default_fil:2,read_only_field:365,readabl:[5,19,44,45,60,62,71,74,191,247,336],readable_text:247,reader:[30,74,90,94,128,131,143,174,203,236,287,301],readi:[2,3,5,7,11,12,16,31,34,48,49,53,73,81,83,99,103,104,116,125,135,136,141,154,164,176,219,232,233,234,235,236,262,311,353,359],readili:[72,133],readin:342,readlin:[190,352],readm:[10,11,15,70,73,103,188,190,223],readonlypasswordhashfield:155,readthedoc:[131,363],real:[3,4,5,11,12,19,20,34,42,45,46,48,54,60,68,70,72,74,76,80,85,90,91,101,106,107,112,113,114,120,126,136,140,142,144,149,158,163,187,192,197,218,219,234,256,313,337,346],real_address:12,real_nam:12,real_seconds_until:[197,346],real_word:218,realist:[8,127],realiti:[72,76,80,88,110,126,131],realiz:[11,104,126],realli:[0,3,4,8,9,13,14,15,20,22,27,31,34,39,43,44,48,49,51,60,68,72,74,77,79,81,85,90,91,96,97,98,99,104,105,107,108,123,125,140,143,149,192,193,194,230,249,257,291,336,337,343,355],really_all_weapon:101,realm:302,realnam:34,realpython:48,realtim:[90,103,197],realtime_to_gametim:197,reason:[5,6,7,11,13,14,23,27,31,33,34,37,39,42,44,49,53,56,58,62,63,67,68,71,73,74,77,81,83,85,86,87,88,89,90,92,95,98,104,105,110,112,113,126,132,136,145,154,167,169,174,179,199,217,218,229,262,266,272,279,284,291,292,293,294,300,301,302,305,310,311,313,321,322,323,333,341,352,359,384],reasourc:42,reassign:71,reattach:[7,293,294],rebas:11,reboot:[9,13,19,26,32,37,40,44,58,76,82,103,113,142,144,148,154,163,179,196,201,229,246,247,262,271,272,273,274,276,282,322,323,341,343,359],reboot_evennia:282,rebuild:[9,90,136,144,294],rebuilt:22,rec:219,recach:248,recal:[247,384],recaptcha:128,receipt:[145,284],receiv:[3,8,20,22,23,27,28,33,40,46,56,61,62,73,86,90,97,103,122,128,154,162,163,180,181,185,186,187,199,210,212,213,219,223,229,262,284,287,291,293,294,300,310,311,320,321,339,344,356,359],receive_functioncal:291,receive_status_from_port:282,receivelock:256,receiver_account_set:158,receiver_object_set:261,receiver_script_set:271,recent:[17,79,81,101,114,138,325],recently_bitten:101,recev:311,recip:[44,66,82,216],recipi:[23,90,154,186,212,291],reckon:67,reclaim:37,recog:[33,219],recog_regex:219,recogerror:219,recoghandl:219,recogn:[8,30,34,50,98,99,107,129,136,142,149,219,229,327],recognit:[219,331,351],recommend:[0,2,5,8,11,27,34,42,45,49,58,59,60,64,67,73,74,76,81,90,92,93,100,106,110,112,131,133,134,136,142,148,179,203,207,222,249,257,262,284,337,343,356],recommonmark:74,reconfigur:142,reconnect:[154,156,279,282,291,293,294,320,323],reconnectingclientfactori:[279,293,294],record:[16,114,133,142,223,236,325,379],recours:49,recov:[19,82,83,88,229,232,233,234,235,236,257,359],recoveri:113,recreat:[9,37,72,103,133,136,156,163,337,338],rectangl:342,rectangular:[90,342],recur:77,recurs:[13,256,266],red:[14,15,20,31,33,42,62,99,103,105,106,107,126,169,179,239,242,243,247,351,360,368],red_button:[14,15,33,99,103,151,169,188,237,239,243],red_button_script:[151,188,237,242],red_kei:31,red_ros:101,redbutton:[14,15,33,99,103,169,239,242,243],redbuttonblind:243,redbuttonclos:243,redbuttondefault:239,redbuttonopen:243,redd:145,reddit:145,redefin:[22,34,68,76,262,379],redhat:[136,138],redirect:[40,53,64,68,92,103,128,132,193,343,384],redirectview:384,redistribut:23,redit:193,redo:[26,106,107,110,341],redon:286,redraw:302,reduc:[113,232,233,234,235,236,295],reduced_redund:190,reduct:190,redund:336,reel:163,reen:62,ref:[45,74,133,219,359,379],refactor:[89,262],refer:[7,8,10,11,14,20,22,23,27,31,33,34,39,40,42,45,51,53,58,59,63,66,67,68,70,71,72,73,77,88,89,91,92,93,98,101,103,104,105,106,107,112,113,117,126,128,129,131,132,142,144,149,154,163,169,174,178,192,201,210,213,217,219,232,233,234,235,236,256,262,273,276,284,294,314,322,330,332,349,355,356,384,385],referenc:[34,39,42,88,169,185,190,219,254,333,359],referenti:359,referr:142,refin:71,reflect:[106,109,384],reflow:50,reformat:[267,345,352],reformat_cel:345,reformat_column:[72,345],refresh:[0,129,302],refus:49,regain:83,regard:[8,126,217,363],regardless:[8,20,22,31,37,40,45,49,51,56,62,90,94,112,125,154,162,192,202,210,219,239,243,262,274,276,299,302,305,320,322,331,334,337,349,352],regener:234,regex:[22,26,33,46,164,167,180,196,217,219,326,331,351,359],regex_nick:33,regex_tupl:219,regex_tuple_from_key_alia:219,regexfield:155,region:[65,90,142,167],region_nam:190,regist:[11,39,46,56,64,113,124,128,137,139,145,147,154,211,246,247,272,282,293,294,300,323,327,336,351,367,382,384],register_error:336,register_ev:211,registercompon:46,registertest:382,registr:[137,384],registri:[217,327],regress:266,regul:257,regular:[17,22,40,44,64,74,92,99,100,101,103,106,107,115,127,129,131,142,156,162,195,216,217,242,243,248,257,276,349,359,385],regulararticl:350,regulararticle_set:350,regularcategori:350,regularli:[9,37,96,124,127,143,197,242,246,248,273,274,276,285,315,346],reilli:131,reinforc:131,reiniti:149,reinstal:136,reinvent:89,reject:[201,217],rejectedregex:217,rel:[11,14,15,20,27,39,48,51,68,71,95,114,128,197,213,236,337,343],relai:[19,22,40,140,154,174,192,202,262,300,323,343,344,359],relat:[20,22,23,27,37,39,45,46,82,88,89,101,103,104,107,127,131,140,145,149,155,158,159,162,176,177,182,186,187,197,211,223,232,233,234,235,236,248,254,261,262,271,274,276,287,323,330,331,333,334,336,343,350,352,361,365,372,379],related_field:[155,183,252,259,269,330],related_nam:[158,187,254,261,271,331,333,334,350],relationship:[23,45,71],relay:156,releas:[67,73,76,82,103,130,131,136,142,179,385],relev:[13,15,22,31,34,41,43,45,62,64,65,67,68,73,74,84,90,91,113,114,115,128,131,154,155,160,162,192,193,229,256,257,273,274,296,314,321,322,323,330,336,341,343,353],relevant_choic:193,reli:[8,23,27,44,58,59,62,64,67,78,86,91,94,96,97,108,126,202,219,229,243,248,282,333,343],reliabl:[14,45,81,83,133,349],reliant:213,reload:[0,2,3,7,9,12,14,15,19,20,22,25,26,27,29,30,36,37,39,40,44,45,46,49,51,53,54,64,66,68,76,80,82,83,85,86,87,89,90,91,92,94,98,103,104,105,106,112,113,114,115,116,122,123,125,128,129,136,137,139,143,154,156,163,168,169,179,185,193,194,198,199,200,208,214,215,219,225,226,229,247,248,250,257,262,272,273,274,276,282,291,292,294,296,320,323,327,331,337,339,341,342,343,346,359,386],reload_evennia:282,remain:[6,14,20,22,26,27,41,42,51,61,84,90,97,103,104,105,142,149,161,163,169,171,175,185,194,197,200,232,233,234,235,236,246,262,274,282,310,311,343,344,351,368],remaind:[22,80,197],remaining_repeat:[37,274],remap:[74,106,331,351],rememb:[1,5,6,9,11,13,14,20,22,27,31,43,44,46,49,58,59,62,66,68,71,72,79,80,82,83,85,86,88,90,91,92,97,104,106,108,109,110,114,126,135,136,142,167,169,194,207,262,272,337,356],remind:[26,66,74,79],remit:167,remnisc:89,remot:[81,144,145,147,190,291,293,305],remov:[2,5,8,9,11,13,19,20,26,27,31,32,33,34,37,44,49,66,67,68,76,79,80,85,86,90,92,94,96,97,98,103,104,109,113,116,128,143,151,162,163,167,169,174,175,176,179,184,185,187,193,195,200,201,205,209,216,217,218,219,228,229,230,232,233,234,235,236,239,257,261,262,267,272,275,276,282,300,311,323,325,331,334,336,340,343,349,355,357,358,359,368],remove_backspac:358,remove_bel:358,remove_charact:113,remove_default:[20,163],remove_receiv:187,remove_send:187,removeth:331,renam:[67,90,94,98,99,106,107,116,169,175,262,333],render:[37,41,68,74,92,94,115,116,128,129,155,176,203,252,259,327,330,353,355,365,377,379,384],render_post:311,renew:[83,90],repair:[80,110],repeat:[3,5,37,59,66,72,91,106,110,113,116,123,125,141,149,154,156,192,197,217,230,271,274,282,287,306,331,339,343,346],repeatedli:[3,15,30,37,91,103,246,271,274,276,282,287,313],repeatlist:30,repetit:[91,113,217],replac:[2,20,22,26,27,30,31,33,34,39,40,42,46,62,64,67,68,72,74,81,83,84,86,89,92,93,98,103,106,108,113,116,117,129,133,144,154,161,162,163,164,167,175,176,180,192,194,196,199,200,201,205,208,210,215,216,218,219,239,243,248,249,257,262,264,266,267,294,297,310,311,321,331,336,341,342,343,345,351,358,359],replace_data:345,replace_timeslot:200,replace_whitespac:345,replacement_str:175,replacement_templ:175,replenish:[232,233,234,235,236],repli:[22,27,137,156,192,212,280,304,305,311,323,343],replic:[68,116],replica:104,repo:[7,11,74,89,102,131],report:[0,5,6,8,11,22,32,37,39,44,68,73,78,97,108,110,112,113,116,134,136,141,145,169,205,208,219,249,262,282,287,294,297,298,305,306,310,321,323,336,339,343,359],report_to:339,repositori:[2,10,55,67,81,102,130,132,133,144,267],repositri:55,repr:[97,344,359],reprehenderit:28,repres:[8,12,20,22,34,40,41,45,53,58,61,66,67,68,70,71,75,77,80,81,88,91,92,98,99,101,102,103,104,105,107,110,113,116,117,126,128,154,160,184,186,195,201,203,205,210,211,213,217,219,223,225,229,230,234,247,248,249,262,267,276,279,293,294,310,311,321,322,323,327,331,332,336,338,339,343,345,355,359],represen:104,represent:[12,13,33,40,53,58,59,61,77,82,90,104,112,126,186,205,208,219,266,271,291,310,311,334,340,346],reprocess:145,reproduc:[48,262],reput:222,reqhash:[332,359],reqiur:201,request:[0,11,27,31,41,53,64,73,92,103,107,114,115,128,129,132,136,142,145,154,155,156,167,183,192,208,259,262,266,269,282,284,291,294,296,301,302,304,311,327,330,334,343,363,364,368,371,372,373,377,384],request_finish:41,request_start:41,requestavatarid:302,requestfactori:327,requestor:[154,325],requir:[2,5,8,13,15,16,22,26,29,31,32,34,37,42,44,45,46,48,58,62,63,67,68,70,71,72,73,74,79,90,92,96,98,110,113,116,123,126,127,128,129,130,131,132,133,135,138,139,141,142,147,148,149,155,168,169,174,179,186,187,190,198,199,200,201,213,214,215,217,219,229,230,234,235,248,249,252,253,256,259,262,266,282,293,294,307,315,326,330,332,337,342,343,344,345,349,354,355,356,359,379,384],require_singl:266,requr:42,rerout:[166,170,294],rerun:[14,15,27],resart:274,research:[131,207],resembl:[63,76,81],resend:22,reserv:[22,48,72,98,104,106,266,326,332,351,359],reset:[16,17,19,20,22,26,37,39,40,45,49,54,62,66,72,83,87,94,98,103,112,113,114,125,126,133,154,156,163,169,179,184,197,208,219,228,229,243,247,257,273,274,282,286,292,302,320,331,334,337,345,346,351,357,359],reset_cach:[331,334],reset_callcount:[37,274],reset_gametim:[19,346],reset_serv:286,reset_tim:200,resid:[60,102,243,257],residu:[179,234],resist:[267,359],resiz:[90,342,345],resolut:[62,113,229],resolv:[0,3,11,39,83,93,106,107,113,142,216,232,233,234,235,236,365],resolve_attack:[232,233,234,235,236],resolve_combat:113,resort:[22,90,135,219,359],resourc:[0,8,44,60,64,67,74,75,82,86,88,98,101,102,103,104,105,106,107,108,116,133,142,145,229,235,272,280,311,327,338,357,385],respect:[22,31,39,40,45,66,90,105,114,133,167,169,176,192,212,216,219,226,239,257,262,321,322,333,334,337,339,345,356,359,379],respond:[27,32,41,56,66,70,103,110,122,123,126,149,309,313],respons:[17,27,48,50,59,71,73,77,78,96,97,123,124,125,136,142,154,156,185,210,248,250,254,262,280,282,284,291,314,323,333,353,355,359,365],response_add:[155,183,259],rest:[7,17,22,27,33,39,58,72,83,88,95,96,103,104,106,107,109,112,114,136,148,161,177,178,229,232,233,234,235,236,331,336,345,363,364,365,366,367,368],rest_framework:[363,364,365,366,368],restart:[3,5,7,9,11,36,37,39,46,49,55,64,90,104,107,113,142,145,149,151,154,179,185,193,196,208,243,262,272,274,276,286,299,320,321,322,359],restartingwebsocketserverfactori:[156,293],restock:96,restor:[20,37,66,126,193,235,243,272,276],restrain:[169,229,256,342,359],restrict:[13,29,31,42,44,45,46,51,72,79,99,102,103,108,112,129,132,142,169,174,195,217,235,236,252,257,267,339,341,343,345,356],restructur:88,result1:216,result2:[27,216],result:[6,8,11,13,19,20,22,27,31,39,40,42,44,48,59,62,64,74,84,87,90,97,98,101,102,104,105,106,108,112,113,114,116,123,126,129,133,142,154,161,162,164,169,176,185,187,192,198,201,213,216,217,218,219,222,229,232,233,234,235,236,248,253,257,262,265,266,267,274,282,291,314,331,333,336,341,342,343,345,349,351,352,353,356,359,360],result_nam:216,resum:[22,37,83],resurrect:246,resync:[156,291,321],ret:22,ret_index:359,retain:[6,19,20,48,72,107,202,229,254,267,328,333,337,339,352,359],retext:74,retract:192,retreat:236,retri:282,retriev:[6,22,30,43,58,60,65,66,92,114,154,158,160,163,169,179,184,186,200,207,229,253,256,261,266,280,287,288,294,300,309,331,334,340,349,354,356,359,363,364,367,368,384],retriv:[156,338],retroact:[45,90],retur:28,return_appear:[71,114,195,200,219,241,247,262],return_cmdset:176,return_detail:[200,248],return_key_and_categori:334,return_list:[331,334],return_map:72,return_minimap:72,return_obj:[13,33,331,334,354],return_par:267,return_prototyp:124,return_puppet:154,return_tagobj:334,return_tupl:[33,198,331],returnvalu:[22,48],reus:[74,106,108,349],rev342453534:359,reveal:[109,195],reverend:190,revers:[20,22,62,72,83,85,125,126,129,158,187,228,250,254,261,271,327,331,333,334,336,350,368],reverseerror:[282,291],reversemanytoonedescriptor:[158,261,350],reverseproxyresourc:327,revert:[11,126,142,166,253],review:[9,20,64,66,73,77,86,98],revis:110,revisit:[2,343],reviu:27,revok:90,revolutionari:11,rework:[83,104,110,214],rfc1073:298,rfc858:304,rfc:[298,304],rfind:336,rgb:[62,106],rgbmatch:336,rgh:106,rhel:132,rhostmush:[60,63,89],rhs:[81,90,177,178,180],rhs_split:[169,175,177,178],rhslist:[177,178],ricardo:359,riccardomurri:359,rich:[68,89,130,131,340],richard:131,rick:42,rid:[88,105],riddanc:49,riddick:201,ride:125,right:[3,4,8,9,15,18,22,27,29,30,31,33,37,42,46,48,55,62,66,70,72,74,76,80,81,82,83,85,86,88,89,90,96,97,98,101,102,103,104,106,107,109,110,114,122,125,126,128,129,132,133,136,141,142,155,163,166,169,177,178,185,190,194,200,201,203,208,209,216,236,239,243,246,247,250,257,265,267,271,322,336,337,341,345,359,360],right_justifi:[42,265],rigid:89,rindex:336,ring:[108,218],rise:[20,91],risen:91,risk:[74,89,114,136,142,168,179],rival:72,rjust:336,rm_attr:169,rnormal:62,rnote:179,road:[20,70,72,125,162],roam:[109,163,246],roar:72,robot:128,robust:[96,97,145],rock:[58,113,163],rocki:109,rod:163,role:[17,76,89,97,105,110,112,133,232],roleplai:[13,29,67,89,110,112,113,114,131,198,219,386],roll1:112,roll2:112,roll:[13,90,97,107,110,112,113,114,136,198,232,233,234,235,236,325],roll_challeng:112,roll_dic:198,roll_dmg:112,roll_hit:112,roll_init:[232,233,234,235,236],roll_result:198,roll_skil:112,roller:[112,113,198],rom:131,roof:169,room1:8,room56:14,room:[3,8,14,15,16,19,20,22,31,37,39,42,43,45,49,60,63,65,67,68,70,72,75,76,77,80,87,88,89,91,96,97,99,100,101,103,104,105,106,107,108,109,112,113,114,122,123,124,125,127,128,136,151,160,161,162,163,167,169,175,180,188,193,195,198,200,207,210,213,219,225,226,227,232,233,234,235,236,245,246,247,249,250,256,262,271,286,314,337,357,363,368,382,386],room_dict:213,room_flag:88,room_lava:88,room_typeclass:[250,357,382],roombuildingmenu:[68,193],roomnam:[90,169],roomref:125,rooms_with_five_object:101,roomviewset:368,root:[2,4,5,6,7,9,10,14,31,34,58,64,67,68,74,75,77,92,94,102,116,129,130,133,136,141,142,144,247,262,267,282,327,340,386],rose:[13,33,34,45,100,101,108],roster:[67,232,233,234,235,236],rosterentri:67,rot:8,rotat:[103,352],rotatelength:352,rough:74,roughli:[90,110,359],round:[17,218,236,345],rounder:218,rout:[46,71,88,99,125,154],router:[142,367],routin:[219,317,356,359],row:[46,50,58,62,66,71,72,74,77,90,92,101,113,115,126,345,359],rpcharact:219,rpcommand:219,rpg:[90,93,103,104,112,198,236],rpi:131,rplanguag:[151,152,188,219],rpm:136,rpobject:219,rpsystem:[151,152,188,215,218],rpsystemcmdset:219,rred:336,rsa:[302,303],rspli8t:97,rsplit:[114,336],rss2chan:[98,143,174],rss:[9,76,131,147,151,156,174,182,277,287,290,300,386],rss_enabl:[143,174],rss_rate:156,rss_update_interv:174,rss_url:[143,156,174],rssbot:156,rssbotfactori:301,rsschan:174,rssfactori:301,rssreader:301,rst:74,rstrip:[97,336],rsyslog:222,rtest2:62,rtext:96,rthe:68,rthi:[62,106],rtype:327,rubbish:166,rubi:77,rudimentari:246,ruin:[109,200,248],rule:[4,8,11,14,15,22,29,31,49,62,76,80,90,103,107,110,126,131,193,217,218,229,232,233,236,254,337,386],rulebook:113,rumour:109,run:[0,2,5,6,9,10,11,12,13,14,15,16,19,20,25,27,29,31,36,37,39,42,44,45,46,48,53,55,58,66,67,70,72,74,75,77,80,81,82,83,88,89,91,92,94,96,97,98,99,101,103,104,105,106,107,109,110,112,114,115,116,117,125,126,127,128,129,131,132,133,134,135,136,140,142,145,148,149,151,154,156,160,161,164,168,169,174,175,176,179,180,184,185,208,209,214,219,222,226,229,230,232,233,234,235,236,243,250,256,257,262,266,267,271,273,274,276,282,286,288,292,299,300,307,311,313,316,320,321,325,327,333,336,337,341,343,344,346,352,356,357,359,384,385,386],run_async:[48,359],run_connect_wizard:282,run_dummyrunn:282,run_exec:343,run_exec_then_goto:343,run_init_hook:320,run_initial_setup:320,run_menu:282,run_start_hook:[45,333],rundown:117,runexec:343,runexec_kwarg:343,runnabl:42,runner:[2,7,247,313],runsnak:5,runtest:[180,191,209,224,228,244,308,318,350,357,366,374,382],runtim:[19,22,49,91,164,193,249,346,359],runtimeerror:[112,154,156,205,208,211,217,218,229,266,274,300,331,343,351,359],runtimewarn:266,rusernam:27,rush:83,rusti:96,ruv:2,ryou:68,s3boto3storag:190,s3boto3storagefil:190,s3boto3storagetest:191,s3boto3testcas:191,sad:[128,305],safe:[0,6,11,13,20,34,39,70,77,84,88,95,128,147,154,166,192,243,257,276,291,323,327,333,337,340,349,359],safe_join:190,safer:[14,49],safest:[40,66,142,333],safeti:[12,34,45,88,114,142,169,192,261,337],sai:[0,5,8,9,11,15,17,19,20,22,27,31,34,42,45,46,48,49,53,62,63,65,66,68,70,77,81,83,85,86,87,88,89,90,91,92,97,98,99,101,104,106,107,110,112,113,114,122,123,126,130,136,142,163,175,192,194,198,201,210,211,218,219,229,230,243,248,262,343],said:[0,8,27,43,48,56,66,68,70,71,72,79,87,89,97,104,106,123,129,161,174,178,210,219,250,262,294,333],sake:[14,64,89,106,126,181,199,384],sale:96,same:[0,3,6,7,8,9,11,12,13,14,15,16,19,20,22,23,26,30,31,32,34,37,39,40,42,43,44,45,48,49,50,51,53,54,56,58,59,60,61,62,66,67,68,72,73,74,76,77,80,82,83,86,87,89,90,91,92,94,96,97,98,99,101,102,103,104,105,106,107,108,110,112,113,114,116,125,126,128,129,130,133,136,142,143,144,148,149,154,160,161,162,163,164,167,169,177,178,179,180,185,190,191,193,195,197,200,203,207,208,212,217,218,219,225,227,229,230,232,233,234,235,236,239,246,248,249,250,256,262,267,271,272,276,286,291,303,306,307,321,322,323,325,327,330,331,332,333,334,336,337,339,343,344,345,346,352,353,359,368,379,384],sampl:[2,88,132,144,230],san:203,sand:91,sandi:72,sane:[1,74,110,131,384],sanit:[379,384],saniti:[8,67,71,72,106,353],sarah:[63,175],sat:[65,80],satisfi:[60,177,331],satur:145,sauc:106,save:[2,3,6,11,16,19,22,23,26,27,32,33,34,37,40,41,42,43,44,45,58,66,67,68,70,77,80,83,86,88,98,100,103,104,106,113,114,128,134,135,144,145,149,154,155,166,169,179,183,185,186,187,191,193,208,257,259,261,262,264,266,269,272,274,275,276,280,287,300,314,315,320,327,330,331,333,340,341,349,353,354,355,359],save_a:[183,252,259,269,278],save_as_new:330,save_buff:341,save_data:353,save_for_next:[22,164],save_handl:353,save_kwarg:354,save_model:[155,183,259,269],save_nam:276,save_on_top:[183,252,259,269,278],save_prototyp:266,save_recip:216,savefunc:[26,341,354],savehandl:354,saver:340,saverdict:340,saverlist:340,saverset:340,saveyesnocmdset:341,saw:[48,70,92,104,106],say_text:123,saytext:219,scale:[7,62,74,89,103,110,112,133,218,385],scalewai:142,scan:[132,160,246,248],scarf:195,scari:[104,106],scatter:[234,337],scedul:346,scenario:90,scene:[6,13,30,42,43,62,74,76,80,107,109,110,112,113,126,217,248,271,276,349],schedul:[19,91,197,208,346],schema:[11,45,58,77,79,359],scheme:[22,58,62,82,106,136,169,179,336],scienc:71,scientif:131,scissor:113,scm:67,scope:[30,76,77,83,129,217,339],score:[90,359],scraper:384,scratch:[9,10,53,70,89,90,110,114,116,136],scream:109,screen:[6,22,24,27,28,30,39,40,42,46,50,54,62,94,96,103,105,110,128,144,155,181,199,203,214,236,265,287,302,344,359,386],screenheight:[30,287],screenread:[30,287,310,311],screenshot:128,screenwidth:[30,164,287],script:[2,5,7,10,13,14,15,19,24,31,32,34,39,40,41,42,43,44,45,46,58,60,75,76,88,89,91,96,98,99,102,103,104,108,109,110,113,122,124,127,128,136,139,142,145,149,151,152,154,156,168,169,179,187,188,192,197,200,204,205,211,216,217,218,226,232,233,234,235,236,238,239,242,243,248,250,256,261,262,266,267,282,315,320,337,338,339,346,354,356,357,359,363,365,368,382,386],script_path:169,script_typeclass:[244,357,382],scriptattributeinlin:269,scriptbas:274,scriptclass:273,scriptdb:[45,75,151,269,271,329,363,365],scriptdb_db_attribut:269,scriptdb_db_tag:269,scriptdb_set:[158,261,331,334],scriptdbadmin:269,scriptdbfilterset:[363,368],scriptdbmanag:[270,271],scriptdbseri:[365,368],scriptdbviewset:368,scripthandl:[151,152,268],scriptkei:169,scriptmanag:270,scriptnam:338,scripttaginlin:269,scroll:[6,28,102,106,114,136,344],scrub:323,sdesc:[88,215,219],sdesc_regex:219,sdescerror:219,sdeschandl:219,sdk:136,sea:[72,109],seamless:219,seamlessli:[36,37],search:[3,8,11,12,14,22,26,29,33,34,37,39,42,45,55,65,66,67,68,76,77,80,84,86,90,93,98,101,102,103,104,105,106,112,113,114,116,117,129,151,152,154,160,162,164,169,176,179,186,192,207,212,216,219,232,233,234,235,236,248,250,253,254,256,262,265,266,273,288,331,332,333,334,335,336,339,341,359,363],search_:[19,101,108],search_account:[41,90,108,151,262,356],search_account_tag:356,search_at_multimatch_input:262,search_at_result:[219,262],search_channel:[86,151,186,356],search_channel_tag:356,search_field:[183,252,259,269,278,330],search_for_obj:169,search_help:[151,253],search_help_entri:356,search_helpentri:253,search_index_entri:[164,166,167,168,169,174,175,176,177,178,179,180,181,184,192,193,194,195,198,199,200,201,202,206,212,213,214,215,216,219,225,226,227,230,232,233,234,235,236,239,246,247,248,249,254,262,341,343,344],search_messag:[151,186,356],search_mod:219,search_object:[13,14,19,45,72,104,106,108,125,151,154,356],search_object_attribut:108,search_objects_with_prototyp:266,search_prototyp:266,search_script:[37,151,356],search_script_tag:356,search_tag:[43,65,101,108,151,356],search_tag_account:43,search_tag_script:43,search_target:212,searchabl:[102,207],searchdata:[154,219,262,356],searchstr:29,season:[110,200],sec:[30,48,83,91,197,294,346],secmsg:352,second:[8,13,15,19,20,22,27,31,37,39,42,44,48,50,58,59,62,66,68,74,80,81,83,85,86,91,92,95,96,97,98,104,106,108,113,114,124,125,126,127,129,136,142,145,149,154,156,161,169,197,207,208,211,213,219,226,229,232,233,234,235,236,238,243,246,256,262,267,274,276,282,287,296,301,314,325,336,339,343,346,352,359,360],secondari:[94,322],secondli:[34,100],secreci:11,secret:[67,103,133,137,139,198,282],secret_kei:[67,190],secret_key_nam:190,secret_set:[67,79,103,133,137,282],sect_insid:71,section:[0,2,5,8,13,16,20,22,25,27,29,31,34,45,46,53,58,61,67,68,72,74,79,80,81,83,85,90,91,92,93,99,101,102,104,105,106,108,117,128,133,136,141,142,144,148,200,218,267,336,337,360,363],sector:71,sector_typ:71,secur:[0,13,14,31,42,60,62,68,86,89,96,114,128,129,136,142,147,151,152,168,179,185,188,190,254,262,302,333,352,379,386],secure_attr:31,secure_url:190,security_token:190,security_token_nam:190,sed:2,sedcond:275,see:[0,3,4,5,7,8,9,10,11,12,13,14,15,19,20,21,22,23,25,26,27,28,29,30,31,33,34,37,39,40,42,44,45,46,48,49,51,53,55,58,59,60,61,62,64,66,67,68,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,94,95,97,98,99,101,102,103,104,105,106,107,109,110,113,114,115,116,117,122,123,124,125,126,127,128,129,132,133,136,137,139,140,141,142,143,144,145,149,154,164,166,168,169,175,176,177,178,180,185,187,188,190,192,193,199,203,205,212,216,217,218,219,223,226,227,229,230,232,233,234,235,236,238,239,242,246,249,250,256,261,262,275,280,282,284,285,293,294,295,296,298,302,303,305,307,309,310,311,313,314,322,323,327,331,336,339,340,341,342,343,345,351,354,355,359,373,379,384,385],seek:[109,257,352],seem:[20,42,46,68,79,85,86,88,110,114,117,125,134,136,141,149,331,337],seen:[8,11,20,23,27,37,40,53,66,68,70,71,72,83,89,90,92,94,97,98,101,104,105,107,117,124,125,126,193,266,294,345],sefsefiwwj3:67,segment:[125,327],seldomli:[164,180],select:[7,11,12,19,20,27,31,39,40,46,58,65,68,72,74,92,96,99,114,124,128,135,136,161,162,167,176,230,233,333,341,343,365],selet:343,self:[3,8,12,13,14,19,20,22,26,27,31,33,34,37,42,44,45,48,53,55,58,63,66,67,68,71,74,80,81,82,83,84,85,86,87,88,89,90,91,94,95,96,98,99,104,105,106,107,108,112,113,114,122,123,124,125,127,129,136,139,140,154,156,158,160,162,163,164,166,169,170,174,177,178,179,180,184,185,187,192,193,194,195,198,200,201,205,210,212,213,215,216,219,229,230,232,233,234,235,236,238,239,243,246,247,248,249,250,256,262,274,275,280,282,284,285,289,293,294,300,302,303,305,307,309,310,311,321,322,323,331,333,334,336,341,343,344,349,351,353,354,355,359,373],self_pid:359,selfaccount:90,sell:[96,130,192],semi:[5,99,106,127,218],semicolon:[31,257,339],send:[5,12,19,22,23,27,28,30,31,34,37,40,41,44,46,49,55,56,61,62,65,68,77,78,81,83,86,90,94,97,98,103,105,108,110,112,113,114,123,124,126,128,139,145,147,149,154,156,160,163,164,167,174,178,184,185,186,187,190,192,201,202,212,219,223,236,238,241,246,256,262,275,276,279,282,284,285,287,291,292,293,294,295,297,300,301,302,304,305,306,308,310,311,313,321,322,323,324,336,339,340,343,345,359],send_:[53,56,300],send_adminportal2serv:292,send_adminserver2port:279,send_authent:293,send_channel:[293,294],send_default:[53,56,293,294,300,302,305,310,311],send_defeated_to:246,send_emot:219,send_functioncal:291,send_game_detail:284,send_heartbeat:293,send_instruct:282,send_mail:212,send_msgportal2serv:292,send_msgserver2port:279,send_p:294,send_privmsg:294,send_prompt:[302,305,310,311],send_random_messag:238,send_reconnect:294,send_request_nicklist:294,send_status2launch:292,send_subscrib:293,send_text:[53,56,302,305,310,311],send_unsubscrib:293,sender:[23,41,86,154,156,174,185,186,187,192,219,241,262,293,324,349,356],sender_account_set:158,sender_extern:187,sender_object:324,sender_object_set:261,sender_script_set:271,sender_str:185,sendernam:174,senderobj:339,sendlin:[302,305,310],sendmessag:[53,201],sens:[20,31,34,37,48,58,68,73,88,90,107,125,162,239,339,340],sensibl:[142,286],sensit:[13,27,31,90,101,186,190,193,197,200,208,223,224,253,332,346,356],sensivit:217,sent:[23,27,30,40,41,46,56,59,61,62,81,90,92,97,103,106,154,156,160,176,180,185,186,187,193,199,201,208,210,212,223,241,244,249,262,279,282,284,287,291,292,293,294,302,306,310,321,323,331,343,351,356,365],sentenc:[70,97,211,218,219],sep:[336,359],sep_kei:[68,193],separ:[5,7,11,13,14,15,20,22,31,32,33,34,36,40,43,44,46,53,58,62,63,65,70,73,74,77,83,89,90,91,96,97,98,99,101,105,106,107,110,114,116,125,126,128,132,133,139,140,141,143,145,161,163,164,169,175,176,177,178,179,185,193,208,211,212,218,219,230,232,233,234,235,236,239,248,250,253,257,261,262,272,276,301,306,311,323,336,337,339,342,351,356,359],separatli:83,seq:33,sequenc:[14,15,16,22,31,33,34,48,61,74,77,94,103,109,126,164,168,197,214,219,257,280,286,336,337,343,345,358,359],seri:[4,11,27,62,106,110,116,131,242,345],serial:[13,56,151,265,276,300,340,353,355,361,362,368],serializ:311,serializer_class:368,seriou:[85,149],serious:136,serv:[39,56,64,71,72,76,77,98,103,107,108,145,162,190,234,311,327,337,339,377],server:[0,2,5,6,7,8,9,11,12,13,14,16,19,20,22,23,25,27,30,31,32,34,37,41,42,44,45,46,48,49,51,53,54,56,58,59,61,62,64,66,67,72,73,74,75,76,77,78,79,80,81,82,83,86,88,89,90,91,92,94,97,98,102,104,105,106,107,109,112,113,116,117,123,125,128,129,130,131,135,136,137,138,139,140,141,144,145,149,151,152,154,156,163,167,169,174,179,181,185,188,190,193,196,199,200,208,214,215,219,220,221,222,225,226,229,243,246,247,250,262,271,272,273,274,276,328,333,337,339,340,343,346,349,352,359,361,365,385,386],server_connect:300,server_disconnect:300,server_disconnect_al:300,server_epoch:[19,346],server_l:292,server_logged_in:300,server_nam:39,server_pid:[292,359],server_receive_adminportal2serv:279,server_receive_msgportal2serv:279,server_receive_statu:279,server_reload:[272,276],server_run:282,server_runn:320,server_servic:359,server_services_plugin:[39,53,103],server_services_plugin_modul:53,server_session_class:40,server_session_sync:300,server_st:282,server_twistd_cmd:292,server_twisted_cmd:292,serverconf:[167,276],serverconfig:[275,276,288,289],serverconfigadmin:278,serverconfigmanag:[288,289],serverfactori:[292,302,305],serverload:179,serverlogobserv:352,servermsg:352,servernam:[30,39,67,79,132,135,142],serverprocess:179,serversess:[40,53,62,98,151,152,223,257,277,300,323,331],serversessionhandl:[40,53,323],serverset:[31,174,256],servic:[11,39,49,53,98,103,128,133,139,142,144,145,149,151,179,190,277,279,282,283,291,292,299,320,327,359],sessdata:[322,323],sessid:[12,22,40,114,261,262,279,291,292,300,323],session:[8,12,16,20,22,24,27,30,32,34,41,49,53,59,62,75,89,94,95,97,98,102,104,105,114,134,144,151,152,154,156,158,160,161,162,164,166,167,170,172,176,177,181,199,201,202,210,222,223,224,261,262,264,265,266,272,277,279,287,291,292,293,294,300,301,302,305,310,311,320,321,323,325,341,343,344,351,359,360,365,386],session_data:323,session_from_account:323,session_from_sessid:323,session_handl:[40,151],session_id:365,session_portal_partial_sync:323,session_portal_sync:323,sessioncmdset:[20,105,172],sessionhandl:[53,56,151,152,154,262,277,287,293,294,300,301,321,322],sessionid:300,sessionobject:351,sessions_from_account:323,sessions_from_charact:323,sessions_from_csessid:[300,323],sessions_from_puppet:323,sessionsmain:75,sesslen:262,set:[0,2,3,5,6,9,10,12,13,14,15,16,17,19,21,22,23,24,25,26,28,29,30,33,34,37,40,41,42,43,45,46,48,49,50,51,53,54,55,56,58,60,61,62,63,64,66,68,70,72,73,74,75,76,77,80,81,83,84,85,86,87,88,89,90,92,95,96,97,98,99,100,101,102,103,105,106,107,110,113,115,116,118,122,124,125,126,128,129,132,133,134,136,138,139,141,144,147,148,149,151,153,154,156,158,160,161,162,163,164,166,167,169,170,171,172,173,174,176,177,178,180,182,184,190,191,193,194,195,196,197,198,199,200,201,202,206,208,210,211,214,215,216,218,219,222,225,226,228,229,230,232,233,234,235,236,239,242,243,244,246,247,248,249,250,252,256,257,261,262,265,266,267,273,274,276,279,281,282,286,287,288,289,292,293,295,296,298,299,302,304,305,307,308,313,314,316,318,320,321,322,323,325,327,328,330,331,332,333,334,336,337,338,339,340,341,342,343,344,345,346,349,350,351,352,353,354,355,356,357,358,359,360,366,367,368,372,379,382,386],set_active_coordin:250,set_al:246,set_alias:164,set_attr:169,set_attribut:368,set_cach:331,set_class_from_typeclass:333,set_dead:246,set_descript:27,set_detail:[200,248],set_game_name_and_slogan:372,set_gamedir:282,set_kei:164,set_nam:27,set_pane_typ:46,set_password:154,set_task:208,set_trac:[3,151],set_webclient_set:372,setcolor:94,setdesc:[89,98,175,225],setgend:202,sethelp:[29,98,99,176],sethom:[98,169],setlock:225,setnam:53,setobjalia:169,setperm:167,setspe:226,sett:143,settabl:[30,58,104,305],setter:[85,229],settestattr:26,settingnam:31,settings_chang:41,settings_default:[8,23,39,79,102,151,152,359],settings_ful:39,settings_mixin:[151,277,312],settl:[72,113],setup:[0,5,6,8,11,16,39,53,55,58,63,74,90,96,110,113,124,136,139,141,144,149,154,166,174,180,191,197,209,228,239,244,248,262,274,286,299,308,313,317,318,320,327,331,333,349,350,357,366,382,385,386],setup_str:317,setuptool:[136,141],sever:[2,3,13,15,20,22,26,28,31,37,39,42,45,46,51,61,66,68,74,76,83,86,88,89,91,92,101,106,113,117,119,131,168,169,177,178,179,200,207,208,246,248,262,308,309,334,339],sex:202,shall:[126,129],shaman:[42,89],shape:[68,72,85,90,99,110,250,345],sharabl:42,share:[2,3,20,31,37,40,43,45,58,64,67,70,73,77,81,89,103,113,117,128,136,137,142,145,155,207,208,267,276,313,331,332,334,345,359,365,368,373],shared_field:365,sharedloginmiddlewar:373,sharedmemorymanag:[332,348],sharedmemorymodel:[187,254,331,333,349,350],sharedmemorymodelbas:[158,187,254,261,271,331,333,349,350],sharedmemorystest:350,shaw:131,she:[22,66,68,88,97,126,193,202,218],sheer:169,sheet:[27,46,128,129,133,342],sheet_lock:90,shell:[0,2,9,33,45,58,60,81,89,90,106,133,136,141,142,144,145,149,302],shield:[58,83],shift:[15,16,19,60,208,247,253,359],shiftroot:247,shine:[80,248],shini:359,ship:[72,76,77,99,109,131,141],shire:91,shirt:195,shoe:195,shoot:[80,235,236,342],shop:[27,60,89,386],shop_exit:96,shopcmdset:96,shopkeep:93,shopnam:96,shopper:96,short_descript:135,shortcom:96,shortcut:[4,19,20,22,41,45,63,66,68,74,83,92,97,102,106,113,115,128,129,133,144,151,156,163,164,169,193,205,250,257,262,353,359],shorten:[3,45,70,267],shorter:[39,45,53,60,104,110,122,123,127,185,218,332,339,352],shortest:[85,219],shorthand:[34,126,169],shortli:[66,68],shortsword:101,shot:235,should:[0,3,5,6,7,8,9,10,11,12,13,14,15,16,19,20,22,23,27,29,30,31,34,37,39,40,41,42,43,44,45,46,48,49,50,51,53,54,55,56,58,59,60,61,62,63,64,65,66,67,68,70,72,73,74,76,77,79,81,83,85,86,89,90,91,92,94,95,96,97,98,99,101,103,104,105,106,107,108,109,110,112,113,114,115,116,117,125,126,128,129,132,133,134,136,137,140,141,142,143,144,145,148,149,154,156,158,160,162,163,164,166,168,169,170,173,176,177,179,180,184,185,187,190,191,193,195,197,200,205,208,210,211,212,213,215,216,217,218,219,222,228,229,232,233,234,235,236,239,243,246,248,249,256,257,261,262,264,265,266,267,271,273,274,275,276,280,281,282,286,289,293,299,302,305,306,308,310,311,314,320,321,322,323,326,328,330,331,333,334,336,337,339,340,341,343,344,345,346,351,352,353,354,355,357,359,360,379,382,384],should_join:185,should_leav:185,should_list_cmd:176,shoulddrop:[236,262],shoulder:[90,195],shouldget:[236,262],shouldgiv:[236,262],shouldmov:[210,232,233,234,235,236,262],shouldn:[5,14,66,68,80,83,86,90,126,176,193,208,211,235,313],shouldrot:352,shout:83,shove:80,show:[0,3,6,7,8,9,11,14,15,19,22,25,27,28,29,37,39,40,46,49,53,58,62,63,66,68,70,71,72,73,74,76,77,78,84,85,89,90,91,92,94,95,96,97,98,99,103,104,105,106,107,109,110,112,113,116,117,118,119,120,121,122,123,124,126,128,129,134,135,136,139,142,143,145,149,166,167,169,174,175,177,179,181,192,194,195,198,199,200,201,203,215,229,230,235,236,242,248,249,250,262,264,266,267,280,282,291,341,343,352,353,354,359,379],show_foot:344,show_map:71,show_non_edit:266,show_non_us:266,show_valu:203,show_version_info:282,show_warn:282,showcas:[20,72,103,109,213],shown:[25,27,29,42,62,66,67,68,71,79,81,83,86,89,91,104,125,128,135,167,174,176,178,193,195,217,219,247,262,282,343,344],showtim:91,shrink:[105,345],shrug:70,shuffl:19,shun:[0,60,142],shut:[5,37,39,46,66,79,83,106,144,154,179,262,274,276,282,284,291,292,299,300,320,323],shutdown:[5,20,37,40,49,51,90,98,149,154,156,179,276,282,291,292,299,320,321,333,339,343],shy:[0,63,110],sibl:[37,48,89,107],sid:167,side:[2,8,13,30,40,43,46,56,66,71,74,90,97,101,112,126,128,134,154,156,158,175,177,178,187,192,198,225,254,261,271,279,291,292,300,303,306,307,310,321,322,323,331,333,334,336,345,350],sidestep:51,sidewai:345,sigint:282,sign:[7,15,44,56,66,70,97,99,101,103,108,114,127,142,200,262,276,331,336,360],signal:[5,24,149,151,152,232,233,234,235,236,277,282,305,311,313,349,386],signal_acccount_post_first_login:41,signal_account_:41,signal_account_post_connect:41,signal_account_post_cr:41,signal_account_post_last_logout:41,signal_account_post_login:41,signal_account_post_login_fail:41,signal_account_post_logout:41,signal_account_post_renam:41,signal_channel_post_cr:41,signal_helpentry_post_cr:41,signal_object_:41,signal_object_post_cr:41,signal_object_post_puppet:41,signal_object_post_unpuppet:41,signal_script_post_cr:41,signal_typed_object_post_renam:41,signatur:[22,112,164,187,205,229,275,280,282,284,285,293,302,303,305,307,310,311,331,336,343,351,354,355,373],signature_vers:190,signed_integ:360,signedinteg:353,signedon:294,signifi:[15,256,331],signific:6,significantli:26,signup:79,silenc:284,silenced_system_check:8,silent:[48,91,123,167,286,294],silli:[34,42,101],silmarillion:108,silvren:[76,142],similar:[7,13,14,22,27,29,34,37,45,46,58,63,65,66,68,76,77,80,81,86,90,99,104,109,112,116,125,142,154,164,166,180,193,201,210,218,232,233,234,235,236,250,254,262,323,334,339,343,359,365,368,384],similarli:[43,90,91,142,229,233,249,330,365],simpl:[0,12,14,15,16,17,20,22,25,26,30,34,40,42,43,48,53,55,58,59,60,64,66,67,70,71,72,74,76,77,78,79,81,82,84,85,86,88,89,90,92,94,96,97,98,104,105,107,108,109,110,112,113,114,119,120,122,123,124,126,127,128,138,142,143,144,145,169,184,190,192,193,194,199,200,201,202,207,210,212,216,217,219,225,226,227,229,230,232,233,234,235,236,238,239,241,246,247,248,250,251,261,262,265,267,274,292,301,303,337,338,376,377,379,386],simpledoor:[151,152,188],simplemu:134,simpleobjectdbseri:365,simpler:[16,48,74,88,168,169,340,384],simpleresponsereceiv:284,simplest:[83,90,98,112,113,142,163,337,360],simpli:[8,9,11,13,14,17,20,27,31,37,39,42,43,45,49,53,56,62,65,68,71,73,74,76,80,81,83,85,86,90,94,96,99,102,105,110,112,114,123,125,127,132,133,136,139,140,145,154,162,163,164,180,181,184,185,193,199,200,209,210,213,219,226,230,232,233,234,235,236,239,241,247,254,262,300,331,333,337,338,342,344,359],simplic:[68,76,85,126,181,199,247],simplif:113,simplifi:[48,72,92,104,113,123,144,205],simplist:[46,113,114,127,218,227],simul:[5,22,107,112,226],simultan:[59,90,113,359],sinc:[0,3,6,8,11,13,14,15,19,20,22,23,25,26,27,30,31,32,34,37,39,44,45,46,48,51,53,55,56,58,59,62,64,66,67,68,71,72,74,76,77,79,80,81,82,83,85,86,87,88,89,90,91,92,96,97,98,100,101,102,103,104,105,106,107,108,109,110,113,114,115,117,123,125,126,128,129,133,135,142,144,149,154,156,158,162,163,164,169,177,178,179,185,186,192,193,194,197,200,212,219,230,232,233,234,235,236,243,247,248,256,262,267,272,276,282,284,287,299,304,306,314,320,321,323,330,331,332,333,337,338,339,341,343,346,349,352,355,356,357,359,379],singl:[8,9,15,20,22,27,33,40,43,45,48,50,56,59,60,62,63,66,68,72,73,74,76,77,87,89,90,101,105,106,107,109,110,112,133,134,138,142,154,160,167,169,175,186,187,193,217,222,229,230,232,233,234,235,236,248,249,250,262,266,267,276,314,321,323,331,332,334,336,337,342,343,344,345,351,356,359,379],single_type_count:195,singleton:[32,40,44,184,272,275,338],singular:[74,90,110,262],sink:0,sint:28,sir:70,sit:[13,15,22,31,45,56,76,83,98,103,105,106,107,114,125,136,142,177,211,212,219,239,247,248,257,273,276,295,339,354,357],sitabl:45,sitat:248,site:[6,17,31,36,50,72,73,92,128,129,131,132,133,139,142,143,144,145,155,327,384],situ:[13,333,340],situat:[3,11,13,22,37,40,45,55,56,58,66,68,70,73,91,105,108,163,164,169,207,349],six:[97,112,198,230],sixti:91,sizabl:190,size:[3,6,46,50,60,71,72,90,134,151,190,191,250,284,298,336,342,344,345,349,352,359],size_limit:359,skeleton:[46,114],sketch:113,skill:[8,76,78,82,83,84,93,101,103,106,110,112,113,125,128,129,131,149,218,219,229,342],skill_combat:112,skillnam:112,skim:101,skin:42,skip:[7,11,20,22,42,44,59,71,86,91,98,99,101,103,105,107,110,141,144,154,168,169,190,213,262,331,340],skipkei:311,skippabl:63,skull:42,sky:[37,127],slack:131,slam:201,slash:[76,86,99,109,112,113,117,191,247],slate:[72,105],sleep:[22,48,83,112],slew:[110,112,141,337],slice:[166,336,344],slice_bright_bg:166,slice_bright_fg:166,slice_dark_bg:166,slice_dark_fg:166,slight:[97,132,197,208],slightli:[3,91,113,114,131,136,155,187,200,233,249,384],slip:358,slogan:67,slot:[90,129,200,201,229,233,235,267,359],slow:[19,113,186,226,246,250,295,301,336,356,359],slow_exit:[151,152,188],slower:[5,91,142],slowexit:226,slowli:[131,229,385],slug:[185,254,333,384],slugifi:384,small:[5,6,8,9,15,16,22,50,60,72,73,76,78,79,81,84,89,90,92,93,94,96,97,109,110,114,120,131,136,142,143,198,229,235,239,250,305,341,342,345,359],smaller:[14,15,46,50,74,229,345],smallest:[31,90,91,142,197,229,342,359],smallshield:58,smart:[86,97,250],smarter:42,smash:[110,239,243],smaug:[98,104,105,107],smell:110,smelli:42,smile:[22,104,175],smith:342,smithi:83,smoothi:216,smoothli:129,snake:116,snap:95,snapshot:11,snazzi:130,sneak:257,snippet:[14,20,31,42,48,62,76,77,80,98,179,291,306,358,359],snoop:145,snuff:0,soak:105,social:[76,139],socializechat:314,societi:101,soft:[52,77,79,218,386],softcod:63,softli:130,softwar:[2,11,136,142],solar:91,soldier:[96,107],sole:[89,92,156],solid:[62,71,76],solo:[103,136],solut:[8,15,19,44,45,66,67,72,81,83,85,88,92,96,97,109,112,123,125,142,145,178,257],solv:[6,19,71,72,80,87,93,109,110,136,216,247],some:[0,1,2,3,6,7,8,9,11,13,14,15,16,19,20,22,26,27,30,31,33,34,37,39,40,41,42,43,44,45,46,49,50,53,56,58,60,61,62,66,67,68,70,71,72,73,74,76,77,78,79,80,81,82,83,89,90,91,92,93,95,96,97,98,99,100,101,103,104,105,107,108,109,110,112,113,114,115,116,117,118,122,123,125,126,128,129,130,131,132,133,134,136,140,141,142,145,147,148,149,154,163,164,169,171,175,178,179,185,186,190,192,193,194,199,208,210,211,217,218,225,229,230,233,234,235,236,242,243,247,248,249,250,257,262,266,267,271,284,286,291,294,320,331,333,336,337,342,343,346,349,352,353,359,368,379,384,386],some_long_text_output:344,some_modul:102,somebodi:66,someclass:102,somehow:[22,31,33,53,61,65,112,142,195,341],someon:[22,31,41,44,66,70,71,83,90,96,98,101,106,122,123,142,145,154,175,195,242,246,247,262],somepassword:133,someplac:246,someth:[5,8,9,13,15,19,22,27,28,29,31,34,37,39,41,42,44,45,46,48,49,53,56,58,60,62,63,64,66,67,68,70,71,72,74,77,78,79,81,83,84,85,86,87,88,89,90,91,92,95,96,97,98,99,101,104,106,107,108,109,110,112,114,115,128,129,132,133,137,139,140,141,142,147,154,162,164,169,175,176,177,192,193,195,202,210,211,213,217,219,226,229,232,233,234,235,236,247,248,249,250,257,262,321,333,337,343,344,353,359,384],sometim:[3,5,19,22,26,27,31,37,42,53,58,68,77,91,97,101,105,106,108,116,149,176],sometypeclass:100,somewhat:[8,68,79,86,89,193],somewher:[11,31,42,45,49,66,73,105,112,125,142,169,185,254,333,359],soon:[3,8,40,92,110,140,144,242,311,359],sophist:[19,48,60,76,113],sorl:79,sorri:[31,257],sort:[13,20,32,40,43,56,64,65,71,77,85,92,101,104,105,106,110,112,113,115,122,142,149,192,203,229,232,233,234,235,236,248,262,267,271,331,332,333,359,379,384],sort_kei:311,sought:[154,161,185,254,262,331,333],soul:72,sound:[11,31,37,39,44,56,68,72,73,83,90,95,101,110,218,306],sourc:[1,2,6,8,9,10,11,16,17,19,20,29,34,48,49,50,55,59,60,66,67,68,70,73,76,77,78,79,80,89,102,106,109,117,129,131,133,136,140,141,151,154,155,156,157,158,160,161,162,163,164,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,183,184,185,186,187,190,191,192,193,194,195,197,198,199,200,201,202,203,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,222,223,224,225,226,227,228,229,230,232,233,234,235,236,238,239,241,242,243,244,246,247,248,249,250,252,253,254,256,257,259,260,261,262,264,265,266,267,269,270,271,272,273,274,275,276,278,279,280,281,282,284,285,286,287,288,289,291,292,293,294,295,296,297,298,299,300,301,302,303,304,305,306,307,308,309,310,311,313,314,315,317,318,319,320,321,322,323,325,326,327,330,331,332,333,334,336,337,338,339,340,341,342,343,344,345,346,348,349,350,351,352,353,354,355,356,357,358,359,360,363,364,365,366,368,371,372,373,374,377,379,381,382,384,385],source_loc:[81,122,210,247,248,250,262],source_object:[181,184,199],sourceforg:[295,296,306,309],sourceurl:294,south:[66,68,71,72,87,125,169,213,314],south_north:72,southeast:169,southern:72,southwest:[99,169],space:[22,25,29,31,33,37,42,46,62,63,67,68,70,71,72,74,80,81,86,89,97,98,99,105,106,107,113,117,123,126,161,164,169,175,177,178,180,181,184,190,213,215,218,219,236,247,262,265,326,333,336,337,342,345,351,358,359],spaceship:125,spacestart:358,spaghetti:[14,343],spam:[49,82,93,113,145,325],spammi:[49,113],span:[17,50,60],spanish:55,spare:[232,233,234,235,236],sparkly_mag:101,spars:325,spatial:72,spawen:216,spawn:[5,46,75,76,98,102,109,124,151,167,169,216,233,234,264,265,266,267],spawner:[24,34,124,151,152,169,234,235,263,386],spd:129,speak:[16,51,61,66,70,86,122,123,126,128,175,210,219,256,262],speaker:[70,218,219],spear:42,special:[0,3,8,11,12,13,14,15,16,19,20,22,25,27,31,34,37,39,41,43,45,46,48,51,55,56,58,59,61,62,72,73,77,81,84,86,90,92,94,96,99,101,102,103,104,105,106,107,108,110,113,114,129,145,156,158,160,163,175,178,200,202,219,230,234,235,247,248,250,257,259,262,286,287,310,331,333,337,343,358],specif:[0,2,3,8,11,12,13,19,20,22,26,27,31,33,34,40,41,43,44,45,46,49,53,59,64,66,67,68,69,70,72,73,74,75,76,77,79,81,85,86,88,91,92,95,97,101,102,103,104,106,107,108,109,110,113,114,125,126,127,128,129,130,131,133,134,138,142,144,149,154,155,160,167,169,179,185,187,188,189,192,193,205,206,207,208,210,212,217,219,253,256,262,272,282,287,294,310,311,321,331,333,336,337,341,343,344,345,359,363,384,385],specifi:[8,13,19,20,27,29,32,37,40,42,43,44,49,50,51,56,58,59,62,68,70,71,72,74,80,83,85,90,91,97,99,100,104,105,107,108,114,115,116,129,135,136,142,143,144,145,160,161,169,176,185,193,195,196,198,200,201,205,207,208,212,216,217,219,229,230,233,234,235,250,256,257,262,265,266,267,272,293,319,331,334,336,337,339,342,343,344,346,353,354,355,359,363,365,379,384],spectacular:3,speech:[210,262],speechlock:256,speed:[5,13,33,58,91,95,113,129,226,267,300,334,356],spell:[16,42,43,51,82,89,230,235,267],spell_attack:235,spell_conjur:235,spell_heal:235,spell_nam:235,spellnam:235,spend:[34,85,97,108,232,233,234,235,236],spend_act:[232,233,234,235,236],spend_item_us:234,spent:235,sphinx:74,spin:[91,142],spit:[106,113,115],splashscreen:199,splinter:109,split:[11,20,22,39,40,46,67,72,81,86,90,97,105,106,114,116,123,125,161,177,178,197,247,250,264,308,323,336,337,346],split_nested_attr:169,spoken:[66,70,140,210,218,219,262],spoof:330,spool:136,sport:33,spot:[77,89,154],spread:[42,78,101,112],spring:[95,200],sprint:226,sprofil:282,spyrit:134,sql:[2,45,58,77,88,89,108,317,386],sqlite3:[8,9,11,58,76,77,103,114,147,148,359],sqlite3_prep:320,sqlite:[9,58,133,320],sqllite:2,sqrt:85,squar:[63,74,85],squeez:58,src:[17,31,34,37,46,48,99,128,141,144,223],srcobj:[164,177],srun:286,srv:2,ssessionhandl:56,ssh:[40,53,56,67,76,77,81,134,142,149,151,277,290,321,322],ssh_interfac:142,ssh_port:142,sshd:145,sshfactori:302,sshprotocol:302,sshserverfactori:302,sshuserauthserv:302,ssl:[56,59,76,77,132,138,151,156,174,277,290,294,307,322],ssl_context:[303,307],ssl_interfac:142,ssl_port:142,sslcertificatefil:132,sslcertificatekeyfil:132,sslciphersuit:132,sslengin:132,ssllab:132,sslprotocol:[132,303,307],ssltest:132,sslv3:138,sstem:92,sta:342,stab:[83,109,247],stabil:[110,180,218],stabl:[53,73,88,144],stabli:[6,276],stack:[14,20,46,110,125,155,163,243,266,323,343,351],stackedinlin:155,stackexchang:8,stackful:351,stackoverflow:8,stacktrac:[266,351],staf:60,staff:[29,31,42,51,60,67,72,81,89,110,112,114,128,162,267,337],staff_onli:254,staffer:67,staffernam:67,stage:[2,11,12,72,88,110,114,128,155,183,259],stagger:294,stai:[20,27,45,71,97,106,125,126,136,142,147,250],stale:[45,144],stalker:384,stamina:[84,203,229,235],stamp:[19,40,45,46,154,158,167,179,261,271,314,319,333],stanc:[113,219],stand:[8,11,14,17,31,58,68,71,72,74,80,81,83,88,99,102,106,108,109,110,112,113,114,125,128,136,140,142,175,192,210,219,246,262,271,276,313,334,337,339,345],standalon:145,standard:[11,16,19,26,52,56,59,61,62,66,67,77,80,84,86,89,90,97,101,104,106,113,116,124,126,131,132,136,145,151,154,166,198,199,219,249,256,262,302,304,309,326,331,336,345,346,351,360,367,386],stanza:292,star:169,stare:11,start:[3,5,6,7,8,9,10,11,12,14,15,16,19,20,22,23,26,27,30,31,32,33,37,39,40,41,42,45,46,49,50,53,54,55,56,58,60,62,66,71,72,74,76,77,78,79,80,81,83,85,86,87,89,91,92,97,99,101,102,103,104,107,110,112,113,114,115,116,124,125,127,128,131,133,135,137,140,141,142,143,145,147,154,156,161,162,168,169,174,175,177,178,179,180,184,192,193,198,200,201,202,203,208,210,213,214,218,219,229,230,232,233,234,235,236,242,243,246,248,250,262,264,265,271,273,274,275,276,279,282,284,286,287,292,293,294,295,299,300,301,306,307,313,319,320,323,327,332,336,337,338,339,341,343,344,345,346,351,352,359,385,386],start_all_dummy_cli:313,start_attack:246,start_bot_sess:323,start_delai:[37,113,124,125,243,271,274,276,339],start_driv:125,start_evennia:282,start_hunt:246,start_idl:246,start_lines1:282,start_lines2:282,start_loc_on_grid:71,start_olc:264,start_only_serv:282,start_ov:27,start_patrol:246,start_plugin_servic:53,start_portal_interact:282,start_serv:292,start_server_interact:282,start_sunrise_ev:91,start_text:230,start_turn:[232,233,234,235,236],startapp:[58,92,128,129],startclr:[62,351],startedconnect:[279,293,294],starter:[67,109,116,117],starthour:81,startingtutori:74,startnod:[27,96,201,264,343],startnode_input:[27,201,264,343],startproduc:284,startservic:[285,327],startswith:[32,86,169,336],starttupl:302,startup:[13,25,37,39,53,91,103,116,142,262,271,311,320,352],stat:[17,93,96,103,104,106,107,110,113,114,116,128,129,139,179,192,229,232,233,234,235,236,386],state:[3,11,13,14,15,20,22,26,27,31,37,40,46,62,76,77,88,103,104,107,109,113,125,126,144,149,154,160,162,166,173,181,184,214,225,232,233,234,235,236,239,243,246,248,267,271,273,274,276,282,302,331,341,343],state_unlog:173,statefultelnetprotocol:[305,313],statement:[3,14,15,19,20,27,48,58,71,76,90,101,106,123,262,337,358],static_overrid:[46,64,103,116],static_root:116,staticfil:190,statict:179,statictrait:229,station:125,stationari:246,statist:[39,40,49,64,115,124,179,203,315,332,349],statu:[11,27,39,40,44,59,83,90,99,103,110,142,185,192,234,235,236,246,276,280,282,291,292,293,296,310],status:110,status_cod:284,stderr:249,stdin_open:144,stdout:[144,249,282,352],steadi:77,steal:[96,176],steer:125,step1:83,step2:83,step3:83,step:[2,6,7,9,14,15,20,22,26,37,58,60,66,70,74,79,80,83,85,86,90,92,93,95,96,97,112,114,118,125,126,129,132,133,136,144,168,193,228,248,274,276,286,298,309,313,314,323,333,337,340,341,343,344],stick:[16,22,27,61,74,136,167],still:[0,1,7,9,11,13,14,15,16,20,22,37,40,41,45,51,53,56,60,62,66,67,68,71,73,74,76,77,79,81,83,85,86,89,90,91,97,98,99,103,104,105,106,114,125,126,129,130,131,136,145,149,162,169,176,199,210,229,230,232,233,234,235,236,248,250,262,266,273,314,343,345,346,355,359],sting:72,stock:[23,76,96,223,379],stolen:[145,336],stone:[22,99,108],stop:[3,5,7,9,15,19,23,27,30,31,34,37,39,40,44,46,48,49,60,67,71,81,83,86,89,90,91,95,99,102,103,106,113,114,117,124,125,136,142,144,147,166,169,174,179,192,197,207,209,210,219,225,226,229,233,236,242,243,262,273,274,276,281,282,284,287,299,300,320,321,327,336,337,339,359,386],stop_driv:125,stop_evennia:282,stop_serv:292,stop_server_onli:282,stopproduc:284,stopservic:[285,327],storag:[13,14,22,37,45,58,77,82,83,88,96,102,112,128,133,158,179,184,187,190,191,211,218,229,250,257,261,262,266,267,271,274,276,289,325,329,331,333,338,353,354],storage_modul:338,storagecontain:37,storagescript:37,store:[4,6,8,9,11,12,14,16,19,20,22,23,26,31,33,34,37,39,40,43,44,45,46,53,58,61,64,66,67,70,71,73,76,77,80,82,83,85,86,87,88,89,90,92,95,96,97,98,101,103,104,105,106,107,110,112,113,114,116,125,128,129,133,141,144,154,156,158,163,166,167,169,170,172,177,178,184,187,190,192,200,201,208,215,217,218,219,223,226,227,229,234,238,247,248,250,256,257,261,265,266,267,268,272,273,274,275,276,282,286,287,288,289,292,294,295,296,298,306,309,314,320,321,322,323,325,327,331,332,333,334,336,338,339,340,341,342,343,344,349,351,353,354,355,359,379,384],store_kei:276,store_tru:249,stored_obj:81,storekei:[96,276],storenam:96,storeroom:96,storeroom_exit:96,storeroom_kei:96,storeroom_key_nam:96,stori:[6,67,115,128],storm:82,storypag:115,storytel:114,stove:262,str:[8,13,19,26,27,30,32,45,48,53,61,62,66,68,81,85,90,97,98,104,105,106,112,128,129,151,154,156,160,161,162,163,164,176,180,184,185,186,187,190,192,193,195,197,200,201,202,203,205,206,207,208,210,211,212,213,217,218,219,223,225,229,230,232,233,234,235,236,241,248,249,250,253,254,257,261,262,265,266,267,272,273,274,276,279,280,282,287,288,289,291,292,293,294,295,297,300,301,302,305,306,307,310,311,313,319,320,321,322,323,325,326,327,330,331,332,333,334,336,337,338,339,341,342,343,344,345,351,352,353,354,355,356,357,358,359,360,363,365,371,384],straight:[29,71,126],straightforward:[81,86,96,97,114,125],strang:[11,15,83,86,88,104,132,163],strangl:142,strategi:[3,236],strattr:[13,331],strawberri:249,stream:[7,190,291,295,321],streamlin:[2,192],stren:106,strength:[13,31,89,90,103,104,110,112,113,129,229],stress:[5,313],stretch:72,stribg:359,strict:[48,266,336],stricter:266,strictli:[27,51,101,128,199,235,345],strike:[27,95,113,175,227,235,236],string1:359,string2:359,string:[3,5,6,8,13,14,16,19,20,22,23,24,25,26,27,29,32,33,34,39,42,43,44,45,46,49,51,55,56,58,59,61,62,63,67,68,71,72,74,76,81,83,86,89,90,91,95,98,99,101,103,104,105,106,107,108,113,128,129,133,135,139,142,154,156,158,160,161,164,167,169,175,176,177,178,179,180,184,185,186,187,190,192,193,195,199,201,210,211,212,213,216,217,218,219,223,224,229,230,232,233,234,235,236,246,250,253,254,255,256,257,261,262,265,266,267,271,274,276,282,284,287,291,294,302,305,306,308,314,319,321,323,326,330,331,332,333,334,336,337,339,340,341,342,343,344,345,351,352,353,355,356,357,358,359,360,365,384],string_from_modul:359,string_partial_match:359,string_similar:359,string_suggest:359,stringproduc:284,stringvalu:229,strip:[22,27,30,42,60,62,68,74,80,86,90,94,96,98,105,114,123,161,169,177,178,190,219,267,287,302,305,306,336,337,341,343,351,359],strip_ansi:[94,336,358],strip_control_sequ:359,strip_mxp:336,strip_raw_ansi:336,strip_raw_cod:336,stroll:226,strong:[31,62,114,358],strongest:31,strongli:[77,106,112,218],strr:217,struct:88,structur:[13,22,29,31,42,56,59,67,71,73,76,77,86,88,92,98,101,102,103,106,116,128,129,136,169,190,219,262,265,266,267,306,311,334,340,343,364,376,383,384],strvalu:[13,331,332],stuck:[27,98,109,136],stuff:[13,20,27,31,37,40,41,42,67,71,73,74,80,83,89,93,96,98,105,106,107,108,109,110,112,115,117,138,163,169,202,228,229,249,276,320,372],stumbl:6,stupid:108,stupidli:23,sturdi:342,stutter:60,style:[7,19,22,27,33,50,53,62,63,72,73,74,76,80,86,89,90,93,98,106,109,110,113,115,117,131,158,164,166,177,195,196,201,212,214,232,249,262,266,336,341,345,359],styled_foot:164,styled_head:[22,164],styled_separ:164,styled_t:[22,164],sub:[2,13,42,46,59,60,67,73,74,89,92,101,103,113,137,142,153,159,182,183,188,193,219,249,251,253,255,258,265,267,268,277,329,335,336,358,361],sub_ansi:336,sub_app:128,sub_brightbg:336,sub_dblspac:358,sub_mxp_link:358,sub_text:358,sub_xterm256:336,subclass:[19,40,42,45,77,101,103,123,169,193,250,261,271,292,305,311,330,333,350,355,359],subdir:8,subdirectori:[8,73],subdomain:[132,142,145],subfold:[58,64,103,106,129],subhead:74,subject:[2,58,85,94,101,142,202,212],sublim:117,submarin:125,submenu:[7,193,264],submenu_class:193,submenu_obj:193,submiss:[201,379],submit:[17,73,128,145,201,379,384],submitcmd:201,submodul:306,subnegoti:306,subnet:[49,167],subpackag:[8,59],subprocess:[81,359],subreddit:131,subscrib:[9,22,23,31,44,49,75,77,86,90,127,156,174,184,185,186,234,276,293,324],subscript:[22,44,90,127,131,174,183,186,187,276],subsequ:[13,22,48,106,113,174,337,359],subsequent_ind:345,subset:[8,43,88,103],subsid:45,substanti:190,substitut:[7,33,139,262,336,358],substr:[105,336],subsubhead:74,subsystem:[58,67,136,257],subtitl:17,subtract:[96,228,265],subturn:113,subword:359,succ:256,succe:[109,110,113,198],succeed:[198,249],success:[101,112,113,114,129,154,185,192,198,232,233,234,235,236,239,247,248,257,266,282,286,333,341,353,359,384],success_teleport_msg:248,success_teleport_to:248,success_url:384,successfuli:216,successfulli:[2,10,22,48,72,82,107,149,154,216,247,250,262,274,282,294,326,333,384],suddenli:[0,6,333],sudo:[136,144,145],suffic:[17,89,106,110],suffici:[58,142,190],suffix:[6,19,62,336,351,352,359,368],suggest:[6,27,28,29,45,65,73,74,76,81,110,133,142,161,176,192,210,219,248,262,359],suggestion_cutoff:176,suggestion_maxnum:176,suit:[10,23,76,77,83,122,180,359,384],suitabl:[11,22,31,33,43,56,59,73,76,77,80,81,98,101,106,117,136,142,162,257,316,323,339],sum:[73,95,97,102,117,163],summar:[66,98,131],summari:[66,70,114,131,149,193],summer:200,sun:91,sunris:91,sunt:28,super_long_text:344,superclass:155,superfici:218,superflu:358,supersus:257,superus:[12,14,15,51,67,72,79,80,81,86,90,94,99,103,104,105,106,109,117,129,133,136,148,154,158,168,179,185,195,213,225,246,256,257,262,267,282,333,337,339],supplement:27,suppli:[5,8,13,19,23,27,29,30,32,37,40,42,43,44,48,59,62,73,90,105,113,114,136,140,158,163,164,167,169,174,179,180,186,193,197,199,200,203,229,261,262,266,271,276,293,323,333,341,346,356,359],supporst:309,support:[0,3,12,13,22,26,27,30,33,42,53,54,55,56,58,61,62,67,71,73,74,77,78,79,87,88,89,90,94,97,102,105,106,108,110,114,117,126,132,133,136,137,141,142,143,144,145,147,149,166,175,190,196,197,198,200,211,249,256,262,265,266,267,276,287,295,296,297,298,302,304,305,306,307,309,311,322,331,336,340,343,344,345,351,356,359,371,386],supports_set:[30,287],suppos:[22,27,42,55,56,66,101,110,154,193],supposedli:[218,306],suppress:[134,304],suppress_ga:[151,277,290],suppressga:304,supress:304,sur:131,sure:[2,3,5,6,7,8,9,11,12,13,14,15,16,20,22,27,31,33,34,37,40,42,43,44,45,46,49,51,58,61,65,66,67,71,72,73,74,79,80,81,82,83,84,86,87,89,90,91,94,97,99,101,104,105,106,109,110,112,113,114,116,117,123,126,128,129,130,132,133,136,139,140,141,142,144,148,149,154,156,162,163,164,166,169,174,177,184,186,190,193,195,209,213,217,218,219,224,229,230,235,238,243,246,247,248,253,256,257,262,266,267,273,274,282,286,292,294,299,320,326,327,328,330,332,333,336,338,340,343,349,355,356,358,359,382,384],surfac:[90,95,145],surpris:[31,68,85,92,97,106],surround:[20,22,63,72,113,167,213,246,355,359],surviv:[13,19,20,26,27,32,37,40,44,82,104,113,126,156,163,179,193,229,271,272,276,339,341,343],suscept:[19,88,257],suspect:128,suspend:[7,144,145],suspens:37,suspici:27,suspicion:128,svg:190,svn:[2,60],swallow:[123,291,358],swap:[8,46,62,169,200,215,333,341],swap_autoind:341,swap_object:333,swap_typeclass:[45,154,333],swapcas:336,swapper:333,swedish:55,sweep:37,swiftli:48,swing:[22,82,83,95,105],switch1:63,switch2:63,switch_opt:[166,167,168,169,174,175,176,177,178,179,200],sword:[22,58,82,96,99,101,108,109,110,112,192,219,229,267,356,359],symbol:[7,15,16,22,60,71,101,141,213,230,250,344],symlink:[74,136],symmetr:345,sync:[11,40,56,77,184,300,305,320,321,322,323,331,340],sync_port:323,syncdata:[322,323],syncdb:8,synchron:352,syntact:[257,359],syntax:[6,14,15,16,22,31,55,62,63,68,70,76,80,83,86,90,91,97,99,104,114,129,133,151,152,164,168,169,177,178,180,193,198,200,201,249,257,262,282,294,321,333,335,336,351,359,386],syntaxerror:106,sys_cmd:162,syscmdkei:[22,75,151],syscommand:[151,159,165,262],syslog:222,sysroot:141,system:[0,2,5,6,8,9,11,12,13,19,20,23,24,30,32,33,37,39,40,41,42,43,44,45,48,51,53,55,56,58,60,62,63,65,66,67,68,69,70,71,72,73,74,75,76,77,79,80,82,83,85,86,87,88,91,94,96,102,103,104,106,109,116,117,125,126,127,129,131,133,136,141,142,145,148,149,151,155,156,158,159,160,162,164,165,166,168,176,178,180,182,185,186,187,190,192,193,195,199,206,207,208,209,210,211,212,214,215,216,218,219,222,223,224,230,232,233,234,235,236,242,248,250,251,254,256,257,261,262,264,267,268,274,282,305,311,319,329,333,337,339,342,343,352,385,386],system_command:22,systemat:85,systemctl:132,systemmultimatch:178,systemnoinput:178,systemnomatch:178,systemsendtochannel:178,tab:[0,2,7,15,46,62,67,84,92,106,107,117,336,345],tabl:[6,9,14,16,45,59,61,62,66,70,72,75,77,79,90,92,95,101,108,129,164,166,176,179,201,266,306,325,336,342,344,345,356,359,385],table_char:342,table_format:166,table_lin:345,table_str:90,tablea:342,tableb:342,tablechar:[90,342],tableclos:[59,306],tablecol:[344,345],tableopen:[59,306],tablet:50,tabletop:[90,112,131,232,236],tabsiz:[336,345],tabstop:358,tabularinlin:330,tack:[99,163],tackl:73,tactic:[112,113],taction:113,tag:[14,19,22,24,27,30,33,42,45,46,49,52,58,59,62,65,67,75,76,77,89,90,93,98,99,101,106,116,129,134,144,151,152,155,164,166,167,168,169,174,175,176,177,178,179,180,181,183,184,187,192,193,194,195,196,198,199,200,201,202,206,212,213,214,215,216,217,219,222,225,226,227,229,230,232,233,234,235,236,239,246,247,248,249,254,256,259,262,266,267,269,297,311,319,329,330,332,333,336,339,341,342,343,344,345,356,359,363,365,386],tag_categori:330,tag_data:330,tag_kei:330,tag_typ:[330,363],tagadmin:330,tagcount:101,tagform:330,tagformset:330,taghandl:[43,45,330,334],taginlin:[155,183,252,259,269,330],tagkei:[256,334,339],taglin:17,tagnam:267,tagseri:365,tagshandl:365,tagstr:[267,334],tagtyp:[43,332,334,356,363],tagtypefilt:363,tail:[55,103,142,144,282,352],tail_log_fil:[282,352],tail_log_funct:352,tailor:[79,92,379],take:[0,3,7,8,13,14,15,16,17,19,20,22,27,28,30,31,39,40,42,45,48,50,51,53,55,56,60,62,66,67,68,70,71,72,73,74,76,77,78,79,80,81,82,83,88,89,90,91,92,93,96,97,99,103,104,105,106,109,113,114,115,116,117,118,119,120,121,125,126,128,129,131,141,142,145,147,154,156,161,162,166,178,184,187,192,195,197,200,201,213,216,217,219,222,226,230,232,233,234,235,236,246,248,257,265,267,286,302,310,322,323,332,333,336,341,342,343,344,353,359,360],taken:[20,77,88,107,113,114,124,125,145,175,199,222,232,233,234,235,236,302,326,336,339],takeov:324,tale:115,talk:[11,19,22,23,53,70,73,86,90,97,106,133,142,175,192,218,219,227,248,279],talker:[76,110],talki:77,talking_npc:[151,152,188],talkingcmdset:227,talkingnpc:227,tall:[63,175,219],tallman:175,tandem:110,tang:98,tantal:15,target1:235,target2:235,target:[8,22,23,53,59,62,80,81,82,83,84,90,98,99,105,106,112,113,114,116,145,154,164,169,174,175,179,187,195,198,200,210,212,230,232,233,234,235,236,246,250,262,332,336,339,343,359],target_loc:[210,226,248,250,262],target_obj:257,targetlist:212,task:[2,5,19,37,43,53,66,86,97,103,149,206,208,230,275,276,359],task_handl:[151,275,359],task_id:[208,275],taskhandl:[151,152,268,359],tast:[23,68,109,128],tavern:219,tax:[5,141],taylor:131,tb_basic:[151,188,231],tb_equip:[151,188,231],tb_filenam:337,tb_item:[151,188,231],tb_iter:337,tb_magic:[151,188,231],tb_rang:[151,188,231],tbbasiccharact:232,tbbasicturnhandl:232,tbearmor:233,tbequipcharact:233,tbequipturnhandl:233,tbeweapon:233,tbitemscharact:234,tbitemscharactertest:234,tbitemsturnhandl:234,tbmagiccharact:235,tbmagicturnhandl:235,tbodi:129,tbrangecharact:236,tbrangeobject:236,tbrangeturnhandl:236,tchar:113,tcp:[76,145],tcpserver:[53,327],teach:93,team:[2,11,22,60,77,110],teardown:[8,180,209,228,244,308,357,366],teaser:142,tech:[93,117,118,119,120,121,131],technic:[13,27,43,45,48,51,53,56,60,62,67,77,78,79,85,99,133,142,190,192,331,386],techniqu:[83,336],tediou:[7,72],teenag:[80,145],tehom:[67,101],tehomcd:67,tel:[49,66,90,97,98,125,136,169],teleport:[15,49,65,90,96,99,109,169,175,248,256,337],teleportroom:248,televis:20,tell:[0,3,4,5,8,9,10,11,14,20,22,27,30,31,33,37,42,48,49,51,55,56,58,64,66,68,70,71,80,83,86,90,92,97,98,99,103,104,105,106,107,110,112,113,115,122,125,127,129,132,133,141,142,144,145,149,156,166,174,175,186,187,198,219,248,262,282,300,311,323,341,384],telnet:[16,40,46,53,56,62,67,76,77,81,84,106,117,131,136,141,144,145,148,149,151,179,277,290,295,296,297,298,302,303,304,306,307,309,313,321,322,358],telnet_:142,telnet_hostnam:135,telnet_interfac:142,telnet_oob:[59,151,277,290],telnet_port:[2,67,103,135,142,314],telnet_ssl:[151,277,290],telnetoob:306,telnetprotocol:[303,305,307],telnetserverfactori:305,teloutlock:256,telport:109,temp:187,tempat:201,templ:213,templat:[11,12,19,20,33,39,41,42,45,46,64,77,79,94,103,107,114,115,116,129,148,155,175,177,201,282,311,321,322,331,342,351,377,384],template_nam:384,template_overrid:[46,64,79,103,116],template_regex:[331,351],template_rend:41,template_str:33,templates_overrid:64,templatestr:342,templatetag:[151,361,378],templateview:384,tempmsg:[185,187],temporari:[8,11,13,109,149,163,187,190,211,232,233,234,235,236,276,343],temporarili:[0,6,8,20,27,37,99,104,142,174,179,185,208,216,229],tempt:[39,104,106,110,167],ten:[72,83,142],tend:[6,55,58,63,77,86,89,110,112,125,142,145,169,218,222],tent:72,term:[20,48,66,77,91,92,97,103,104,105,126,136,142,164,217],term_siz:[3,151],termin:[0,3,5,6,7,11,19,62,74,77,79,98,106,107,114,117,126,133,136,141,142,144,145,148,149,151,207,230,232,233,234,235,236,281,282,302,309,325,384],terminalrealm:302,terminals:302,terminalsessiontransport:302,terminalsessiontransport_getp:302,terrain:71,terribl:295,ters:37,test1:[13,30,345],test2010:98,test2028:98,test2:[13,22,30,62],test3:[13,345],test4:[13,345],test5:13,test6:13,test7:13,test8:13,test:[1,2,3,7,10,11,13,14,15,16,17,20,22,26,27,29,30,31,34,41,42,44,46,48,51,66,68,70,72,73,74,80,81,83,86,88,90,91,92,94,96,97,99,101,105,107,110,113,119,120,124,127,128,131,133,134,136,137,140,142,143,151,159,161,165,166,168,176,179,188,189,195,198,200,201,204,220,221,228,230,232,233,234,235,236,237,238,265,266,277,284,287,290,311,312,313,317,333,335,336,337,339,343,347,357,359,361,362,370,372,378,386],test_:8,test_about:180,test_accept:209,test_access:180,test_add:209,test_add_trait:228,test_add_valid:209,test_al:228,test_all_com:180,test_alternative_cal:8,test_amp_in:308,test_amp_out:308,test_at_repeat:244,test_attribute_command:180,test_audit:224,test_auto_creating_bucket:191,test_auto_creating_bucket_with_acl:191,test_ban:180,test_batch_command:180,test_bold:308,test_boundaries__bigmod:228,test_boundaries__change_boundari:228,test_boundaries__dis:228,test_boundaries__invers:228,test_boundaries__minmax:228,test_c_creates_button:318,test_c_creates_obj:318,test_c_dig:318,test_c_examin:318,test_c_help:318,test_c_login:318,test_c_login_no_dig:318,test_c_logout:318,test_c_look:318,test_c_mov:318,test_c_move_:318,test_c_move_n:318,test_c_soci:318,test_cach:228,test_cal:209,test_cas:8,test_cboot:180,test_cdesc:180,test_cdestroi:180,test_cemit:180,test_channel:180,test_channelcommand:180,test_char_cr:180,test_char_delet:180,test_clean_nam:191,test_clean_name_norm:191,test_clean_name_trailing_slash:191,test_clean_name_window:191,test_clear:228,test_clock:180,test_color:308,test_color_test:180,test_comparisons_numer:228,test_comparisons_trait:228,test_compress_content_len:191,test_connection_thread:191,test_content_typ:191,test_copi:180,test_creat:[180,366],test_curr:228,test_cwho:180,test_data_in:308,test_data_out:308,test_del:209,test_delet:[228,366],test_desc:[180,228],test_desc_default_to_room:180,test_destroi:180,test_destroy_sequ:180,test_dig:180,test_displayinput_nod:343,test_do_nested_lookup:180,test_dynamic_nod:343,test_edit:209,test_edit_valid:209,test_emit:180,test_empty_desc:180,test_end_nod:343,test_examin:180,test_exit:209,test_exit_command:180,test_find:180,test_floordiv:228,test_forc:180,test_general_context:374,test_generated_url_is_encod:191,test_get:[228,382],test_get_and_drop:180,test_get_authent:382,test_get_dis:382,test_giv:180,test_handl:209,test_hello_world:107,test_help:180,test_hom:180,test_ic:180,test_ident:308,test_idl:318,test_info_command:180,test_init:228,test_interrupt_command:180,test_invalid_access:382,test_inventori:180,test_ital:308,test_large_msg:308,test_list:[209,366],test_list_cmdset:180,test_location_leading_slash:191,test_lock:[180,209],test_look:180,test_look_nod:343,test_mask:224,test_memplot:318,test_menu:230,test_messag:319,test_mudlet_ttyp:308,test_mul_trait:228,test_multimatch:180,test_mux_command:180,test_mycmd_char:8,test_mycmd_room:8,test_nam:180,test_nested_attribute_command:180,test_nick:180,test_object:180,test_object_search:8,test_ooc:180,test_ooc_look:180,test_opt:180,test_override_class_vari:191,test_override_init_argu:191,test_pag:180,test_password:180,test_percentag:228,test_perm:180,test_pi:180,test_pickle_with_bucket:191,test_pickle_without_bucket:191,test_plain_ansi:308,test_pos:180,test_pos_shortcut:228,test_quel:180,test_queri:[151,277,312],test_quit:180,test_remov:228,test_repr:228,test_resourc:[8,151,152,180,209,224,244,308,335,366,382],test_retriev:366,test_return_valu:8,test_sai:180,test_script:180,test_send_random_messag:244,test_server_load:180,test_sess:180,test_set:228,test_set_attribut:366,test_set_game_name_and_slogan:374,test_set_help:180,test_set_hom:180,test_set_nod:343,test_set_obj_alia:180,test_set_webclient_set:374,test_simpl:8,test_simple_default:180,test_spawn:180,test_special_charact:191,test_split_nested_attr:180,test_start:209,test_start_nod:343,test_storage_delet:191,test_storage_exist:191,test_storage_exists_doesnt_create_bucket:191,test_storage_exists_fals:191,test_storage_listdir_bas:191,test_storage_listdir_subdir:191,test_storage_mtim:191,test_storage_open_no_overwrite_exist:191,test_storage_open_no_writ:191,test_storage_open_writ:191,test_storage_s:191,test_storage_sav:191,test_storage_save_gzip:191,test_storage_save_gzip_twic:191,test_storage_save_with_acl:191,test_storage_url:191,test_storage_url_slash:191,test_storage_write_beyond_buffer_s:191,test_strip_signing_paramet:191,test_sub_trait:228,test_tag:180,test_teleport:180,test_timer_r:228,test_timer_ratetarget:228,test_toggle_com:180,test_trait:[151,152,188],test_trait_db_connect:228,test_trait_getset:228,test_tunnel:180,test_tunnel_exit_typeclass:180,test_typeclass:180,test_upd:366,test_upp:8,test_valid_access:382,test_valid_access_multisession_0:382,test_valid_access_multisession_2:382,test_valid_char:382,test_validate_input__fail:228,test_validate_input__valid:228,test_valu:228,test_view_nod:343,test_wal:180,test_whisp:180,test_who:180,test_without_migr:8,testabl:8,testaccount:180,testadmin:180,testampserv:308,testapp:128,testbatchprocess:180,testbodyfunct:244,testbuild:180,testcas:[8,191,228,308,318,350,357,374],testcmdcallback:209,testcomm:180,testcommand:27,testdefaultcallback:209,testdummyrunnerset:318,tester:[101,142,300],testevenniarestapi:366,testeventhandl:209,testform:342,testgener:180,testgeneralcontext:374,testhelp:180,testid:22,testinterruptcommand:180,testirc:308,testmemplot:318,testmenu:[201,343],testmixedrefer:350,testmod:323,testmymodel:8,testnumerictraitoper:228,testobj:8,testobject:8,testobjectdelet:350,testok:97,testregularrefer:350,testrenam:98,testresult:266,testset:8,testsharedmemoryrefer:350,teststr:8,testsystem:180,testsystemcommand:180,testtabl:98,testtelnet:308,testtrait:228,testtraitcount:228,testtraitcountertim:228,testtraitgaug:228,testtraitgaugetim:228,testtraitstat:228,testunconnectedcommand:180,testvalu:13,testwebsocket:308,text2html:[151,152,335],text:[0,6,8,11,12,14,15,16,17,22,23,25,26,28,29,31,33,42,43,46,48,53,55,56,58,59,60,66,67,68,70,72,73,75,76,80,84,88,89,90,94,96,97,99,103,105,107,109,112,114,117,118,123,125,126,128,130,131,134,136,140,142,143,144,149,154,156,161,164,166,167,168,169,174,175,176,177,178,179,180,181,184,185,186,187,190,192,193,194,195,198,199,200,201,202,203,206,208,210,212,213,214,215,216,218,219,223,225,226,227,229,230,232,233,234,235,236,239,241,246,247,248,249,254,257,262,264,265,267,271,279,280,287,293,294,297,300,301,302,305,306,310,311,321,322,323,326,327,331,332,334,336,337,339,341,342,343,344,345,351,353,356,358,359,360,379,386],text_:74,text_color:203,text_descript:229,text_exit:[68,193],text_flow_pane1:46,text_flow_pane2:46,text_single_exit:68,textarea:[355,379],textbook:53,textbox:379,textfield:[58,128],textstr:30,texttag:[94,126,386],texttohtmlpars:358,textual:85,textwrap:345,textwrapp:345,than:[0,3,4,5,6,7,8,9,11,12,13,14,15,20,22,24,25,27,28,29,31,34,39,40,42,43,44,45,46,50,51,55,58,61,62,63,64,66,70,71,73,74,76,77,79,81,83,85,89,90,91,92,95,97,98,101,103,104,105,106,108,109,110,112,113,114,117,126,129,132,133,134,135,139,142,145,147,149,154,158,161,162,163,166,167,168,169,170,174,177,179,192,193,194,197,203,208,210,217,218,219,226,229,230,232,233,234,235,236,247,249,256,262,264,265,282,308,323,328,330,331,332,333,336,337,343,344,345,349,351,352,354,355,356,358,359,384],thank:[37,79,129,212,327],thankfulli:128,the_answ:108,the_one_r:108,thead:129,thei:[3,4,5,6,7,8,11,12,13,14,15,16,17,19,20,22,23,27,29,31,34,36,37,40,41,42,43,45,46,48,49,50,51,53,54,56,58,59,60,61,62,65,66,67,68,70,72,73,74,76,77,79,80,81,83,84,85,86,87,88,89,90,92,93,94,96,97,98,99,100,101,103,104,105,106,107,108,110,112,113,114,116,123,125,126,127,129,130,132,133,136,141,142,145,148,149,154,155,162,163,166,168,169,174,175,177,178,179,184,190,192,193,195,198,200,202,207,213,218,219,229,232,233,234,235,236,247,248,249,250,256,257,261,262,265,267,268,271,273,274,276,282,302,303,305,306,307,311,314,320,321,322,323,325,330,331,336,337,338,340,343,345,351,359,360,364,365,368,379,384],theirs:[113,194,202],them:[0,6,7,8,9,11,12,13,14,15,16,19,20,22,23,25,26,27,29,30,31,33,34,37,39,40,42,43,44,45,46,48,49,50,53,54,55,56,58,59,61,62,64,65,66,67,68,70,72,73,74,76,77,79,80,82,83,84,85,86,89,90,91,92,95,96,97,98,101,103,104,105,106,107,108,109,110,112,113,114,116,121,123,125,126,128,129,133,135,139,141,142,143,145,149,154,160,161,162,164,166,168,169,174,176,177,178,180,185,190,194,195,196,200,201,202,203,205,207,210,216,217,219,229,230,232,233,234,235,236,239,246,248,249,253,257,262,267,273,276,282,300,302,305,313,317,320,321,323,330,331,333,334,336,337,339,343,351,355,358,365,384],themat:110,theme:[103,110,129],themself:234,themselv:[6,8,13,20,22,27,31,34,37,41,45,51,61,65,66,71,74,76,80,82,90,92,94,96,103,112,114,125,127,140,169,219,262,271,274,282,332,334,355],theoret:[20,60],theori:[3,20,89,114,131,154,162],thereaft:33,therefor:[8,29,37,66,71,91,97,109,168,193,205],therein:[16,22,166,177,200,216],thereof:[219,262],thet:103,thi:[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,19,20,22,23,24,25,26,27,28,29,30,31,32,33,34,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,76,77,78,79,80,81,82,83,84,85,87,88,89,90,91,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,112,113,114,115,116,117,120,122,123,124,125,126,127,128,129,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,147,148,149,150,151,153,154,155,156,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,190,192,193,194,195,196,197,198,199,200,201,202,203,205,206,207,208,210,211,212,213,214,215,216,217,218,219,222,223,225,226,227,229,230,232,233,234,235,236,238,239,241,242,243,245,246,247,248,249,250,251,252,253,254,255,256,257,258,259,261,262,265,266,267,268,269,271,272,273,274,275,276,277,279,280,281,282,284,286,287,288,289,291,292,293,294,295,296,297,298,299,300,301,302,303,304,305,306,307,309,310,311,313,314,315,316,317,319,320,321,322,323,324,325,326,327,328,329,330,331,332,333,334,335,336,337,338,339,340,341,342,343,344,345,346,349,350,351,352,353,354,355,356,357,358,359,360,361,363,364,365,368,371,372,376,377,379,383,384,385],thie:27,thief:110,thieveri:176,thin:[48,68,72,83,195,352],thing:[0,1,5,6,8,9,10,11,13,14,16,19,20,22,23,26,27,30,31,34,37,39,40,41,42,44,45,46,48,49,51,53,55,56,58,60,62,63,64,66,67,68,70,71,72,73,76,77,78,79,80,81,82,83,84,85,86,90,92,93,95,96,97,98,99,101,102,103,105,106,109,110,112,113,114,115,116,123,125,126,127,128,129,131,132,136,139,141,142,144,145,147,148,149,154,162,163,169,185,192,193,200,208,218,219,229,230,236,243,248,249,256,257,261,262,265,286,291,295,327,330,331,333,336,337,345,351,355,384],think:[6,20,23,27,42,43,44,62,64,70,72,73,76,78,83,91,94,97,98,99,106,108,110,112,117,118,119,120,121,131,147,323,384],third:[3,8,9,19,27,62,66,67,73,74,77,85,92,106,125,129,132,133,140,141,142,169,336],thirdnod:27,this_sign:324,thoma:[33,49,167],thorn:[13,34,108],thorough:0,those:[2,8,9,10,11,12,13,14,15,16,20,22,25,27,29,31,34,40,42,43,45,51,58,59,62,64,67,72,74,76,77,79,80,82,84,87,88,89,90,91,93,94,96,98,99,101,104,105,106,108,109,110,112,114,115,116,117,123,125,130,131,133,139,142,145,147,149,163,164,166,169,175,176,180,186,193,219,223,229,230,232,247,248,257,265,266,267,305,310,332,333,343,345,353,354,357,359,365,379,384],though:[0,6,8,9,11,12,13,14,15,16,19,20,27,34,37,39,48,49,63,68,73,77,84,85,86,89,91,92,94,97,98,100,102,104,106,109,113,114,125,126,131,133,136,140,141,142,144,145,149,154,164,193,194,203,232,233,235,236,242,248,249,262,267,336,359],thought:[31,32,85,106,110,131,133],thousand:[72,85,128,142],thread:[19,76,131,133,149,301,327,352,359],threadpool:327,threadsaf:330,threat:145,three:[14,20,22,27,31,33,34,49,50,56,62,64,66,68,70,74,79,81,92,96,100,106,108,119,128,129,142,161,230,235,257,273,336,343],threshold:[244,325,337],thrill:96,throttl:[151,152,154,277,287,300],through:[5,6,7,12,14,15,17,19,20,22,23,27,28,29,31,33,34,39,40,41,42,53,55,56,59,60,62,65,66,67,70,74,76,77,78,81,84,85,86,87,88,89,90,91,92,96,97,102,103,107,108,109,110,113,116,117,118,119,121,122,125,133,139,142,143,145,147,149,151,154,163,169,176,184,192,200,205,223,225,232,233,234,235,236,250,255,257,261,262,266,272,273,276,282,284,289,298,302,305,311,314,319,321,322,330,332,333,337,339,342,343,344,351,358,359,379,384],throughout:[13,27,39,71,76,99,234],throughput:[185,339],thrown:113,thrust:247,thu:[15,20,22,27,31,45,51,56,58,60,62,64,72,85,87,89,90,101,106,112,114,116,125,129,135,166,170,194,218,257,262,276,314,328,331,332,339],thud:202,thumb:[4,11,62],thumbnail:79,thunder:133,thunderstorm:109,thusli:141,tick:[11,22,27,44,77,127,133,234,246,248,276,314],ticker1:[44,276],ticker2:[44,276],ticker:[30,37,75,76,98,127,156,246,248,272,276,287],ticker_class:276,ticker_handl:[44,127,151,276],ticker_pool_class:276,ticker_storag:276,tickerhandl:[19,24,37,113,127,151,152,226,234,248,268,386],tickerpool:276,tickerpool_layout:276,ticket:78,tidbit:76,tidi:144,tie:113,tied:[77,108,163,176,195,239,243,254],tier:[142,190],ties:[64,71,171],tight:195,tightli:145,tild:101,tim:[195,201,203,230,232,233,234,235,236],time:[0,2,3,5,7,8,9,11,12,13,14,15,17,20,23,27,28,31,34,39,40,42,44,45,46,48,49,53,54,56,58,59,61,62,63,64,66,67,68,71,73,75,76,77,78,79,80,81,82,83,84,85,86,88,90,92,93,97,98,99,101,103,104,105,106,107,108,109,110,112,113,114,122,125,127,128,132,133,135,136,137,140,141,142,144,149,154,156,158,160,161,163,164,167,174,179,185,187,190,192,197,198,200,207,208,211,213,216,217,225,226,228,229,230,232,233,234,235,236,238,243,246,247,248,254,261,262,265,267,268,271,274,275,276,282,284,286,288,289,294,300,305,307,314,315,319,320,321,323,325,330,331,333,334,336,337,338,339,344,346,349,350,352,355,359],time_ev:211,time_factor:[19,91,197,346],time_format:359,time_game_epoch:[19,91,346],time_to_tupl:197,time_unit:[91,197],time_until_next_repeat:[37,274],timedelai:[83,275,357,359],timedelta:[353,360],timeeventscript:208,timefactor:91,timeformat:[352,359],timeit:5,timeout:[113,124,138,305,325,349],timer:[19,22,37,44,56,77,88,99,102,103,113,200,228,234,238,242,247,268,274,276,313,321,356],timerobject:37,timescript:346,timeslot:200,timestamp:[19,81,325,346],timestep:314,timestr:352,timetrac:[151,277,312],timetupl:91,timezon:[133,190,352,353,360],tin:107,tini:[85,94,133],tinker:6,tintin:[134,295,296,306,309],tinyfugu:134,tinymud:[60,89],tinymush:[60,63,89],tinymux:[60,89],tip:[43,73,78,131,145],tire:[99,163],titeuf87:250,titl:[17,23,46,68,92,143,174,176,193,253,336,339,384],titlebar:46,titleblock:92,tlen:139,tls:132,tlsv10:138,tlsv1:132,tmp:[2,136],to_be_impl:384,to_byt:359,to_cur:234,to_displai:193,to_dupl:162,to_execut:359,to_exit:66,to_fil:222,to_init:236,to_non:262,to_obj:[154,164,262],to_object:186,to_pickl:340,to_str:359,to_syslog:222,tobox:291,todai:203,todo:[18,35,38,47,57,90,100,111,146],toe:[60,106],togeth:[11,15,20,22,29,34,36,45,52,56,66,67,68,71,74,77,83,89,90,101,103,106,107,108,109,110,112,113,114,115,120,126,132,139,142,160,169,171,185,200,215,216,218,219,247,248,261,267,291,310,323,330,336,337,351,356],toggl:[94,305],toggle_nop_keepal:305,togglecolor:94,toint:[42,265],token:[139,262,302,305,337,351],told:[9,61,62,87,97,103,106,114,142,355],tolkien:91,tom:[33,63,90,114,169,175,202,219,342],tommi:[31,33,51],ton:[89,95],tone:62,tonon:169,too:[3,5,7,9,11,13,14,15,17,19,22,27,31,32,45,49,56,62,66,67,68,70,71,74,79,80,81,83,85,86,89,90,96,97,98,99,102,104,105,108,110,112,113,114,117,125,128,134,136,167,169,188,230,235,239,256,274,287,291,325,327,337,342,343,344,345,356,359],took:[8,102,359],tool:[42,43,58,60,62,69,72,75,77,79,83,89,91,104,106,108,116,117,118,119,120,121,132,133,136,142,144,385],toolbox:131,tooltip:46,top:[0,5,10,11,14,20,22,26,28,29,37,39,43,45,46,67,68,72,74,83,85,89,90,92,96,98,102,105,106,107,114,122,128,129,131,136,141,149,158,163,187,193,195,197,215,219,230,249,250,254,261,271,282,324,331,333,334,337,344,345,352],topcistr:253,topic:[3,5,20,22,29,40,48,53,58,76,79,92,99,101,106,126,176,232,233,234,235,236,253,356,379,384],topicstr:253,tos:256,tostr:291,total:[5,19,31,37,39,40,62,91,95,97,123,179,190,198,319,345,346],total_num:349,touch:[6,39,62,74,103,104,132,135,145],tour:[97,103,117,118,119,120,121],toward:[3,22,37,53,68,72,97,203,213,236,246],tower:[72,200,248],tportlock:256,trace:[56,208,319,343],traceback:[6,8,14,19,37,62,64,89,98,106,114,128,149,208,215,265,291,333,337,351,352,359],tracemessag:319,track:[9,13,19,37,40,58,71,77,84,89,95,103,106,110,112,113,125,127,128,143,144,154,163,236,272,293,294,299,302,305,320,325,340,341,353],tracker:[11,78,110],trade:[70,192],tradehandl:192,trader:70,tradetimeout:192,tradit:[2,16,30,48,56,62,99,103,106,112,113,142,145,250,305,321,344],tradition:[56,89],traffic:[132,145,190,295],trail:191,train:[93,98,131,229],traindriv:125,traindrivingscript:125,trainobject:125,trainscript:125,trainstop:125,trainstoppedscript:125,trait1:229,trait2:229,trait:[19,112,151,152,188,228,267],trait_class_path:229,trait_data:229,trait_kei:229,trait_properti:229,trait_typ:229,traitexcept:229,traithandl:[228,229],traithandlertest:228,transact:192,transfer:[96,128,163,293,303,307,345],transform:[2,101,185],transit:34,translat:[15,33,53,59,61,62,103,126,131,190,218,219,267,284,336],transmiss:222,transmit:[61,365,368],transpar:[40,46,126,261,276],transport:[291,302,311],transportfactori:302,transpos:126,trap:[15,95,109],traumat:27,travel:[56,59,71,95,226,250],travers:[13,31,34,71,87,96,125,190,210,225,226,246,247,250,256,262],traverse_:22,traversing_object:[210,225,226,250,262],travi:[1,386],travis_build_dir:10,treasur:[67,108,250],treat:[15,22,40,43,45,48,72,77,101,107,108,154,160,163,185,202,241,262,267,323,345,356],tree:[11,13,22,27,31,65,74,77,110,115,136,193,219,230,249,262,267,282,311,327,343,359],tree_select:[151,152,188],treestr:230,trembl:[104,107],treshold:349,trhr:190,tri:[13,15,22,31,33,40,41,49,56,61,83,90,97,98,105,108,110,113,128,134,142,161,179,192,194,201,239,247,248,286,325,359,360],trial:[7,308],tribal:72,trick:[68,105,131,132,333,379],tricki:[8,42,126],trickier:[67,92],trigger:[2,3,20,22,27,30,32,34,40,41,44,56,62,64,70,71,80,88,89,92,113,122,123,125,129,134,144,154,156,160,161,164,166,180,185,193,211,213,214,246,248,261,262,267,274,276,284,287,291,313,320,324,339,351],trim:336,tripl:[19,62,74,106,351,359],triumph:109,trivial:[3,5,19,22,53,97,109],troll:49,troubl:[11,40,67,70,78,86,90,97,99,106,117,132,133,136,141,147,148,331],troubleshoot:[67,148],troublesom:[14,15,49],trove:67,truestr:201,truli:[40,49,66,85,86,200],trunc:190,truncat:368,trust:[27,51,89,179,337],truth:3,truthfulli:22,truthi:98,try_num_prefix:161,ttarget:113,tto:305,tty:[67,144],ttype:[76,151,277,290,302,305],ttype_step:309,tuck:[72,239],tulip:108,tun:169,tune:[103,126],tunnel:[66,68,71,87,90,98,99,105,125,169,307],tup:[85,219],tupl:[3,13,27,31,33,42,58,59,85,86,98,101,113,129,142,151,154,161,167,169,177,178,186,190,192,193,197,198,202,205,213,219,234,235,241,250,256,257,262,265,266,267,276,279,291,292,302,303,307,314,321,323,331,334,336,338,339,341,343,346,351,352,354,359,366],tupled:352,turbo:141,turkish:154,turn:[8,11,19,20,22,26,27,31,37,40,41,48,49,54,56,59,62,64,66,72,74,77,86,89,90,94,98,104,105,106,107,108,109,122,123,125,126,128,131,142,149,154,164,174,179,180,185,211,213,219,230,232,233,234,235,236,246,248,262,267,282,287,295,302,305,313,323,329,330,333,337,339,343,344,345,351,359,386],turn_act:113,turn_end_check:[232,233,234,235,236],turnbattl:[151,152,188],turnchar:234,tut:[109,248],tutori:[3,17,20,21,22,25,27,37,43,44,48,50,62,64,68,71,72,73,74,76,77,79,81,82,83,85,86,89,90,94,95,97,98,99,101,103,104,105,106,107,110,115,126,128,131,136,139,142,148,193,226,233,247,248,385,386],tutorial_bridge_posist:248,tutorial_cmdset:248,tutorial_exampl:[14,15,37,99,103,106,151,152,188],tutorial_info:248,tutorial_world:[68,109,136,151,152,188],tutorialclimb:247,tutorialmirror:[106,241],tutorialobject:[246,247],tutorialread:247,tutorialroom:[246,248],tutorialroomcmdset:248,tutorialroomlook:248,tutorialweapon:[246,247],tutorialweaponrack:247,tutorialworld:[247,248],tutoru:106,tweak:[6,37,42,45,67,81,89,90,98,104,118,122,132,327,336],tweet:[93,386],tweet_output:124,tweet_stat:124,tweetstat:124,twenti:90,twice:[27,81,91,109,113,191,208,213,236,343],twist:[6,19,22,48,53,83,131,136,140,141,145,262,279,282,284,285,291,292,293,294,299,302,305,308,310,311,313,320,323,327,352],twistd:[7,136,149,299,320],twistedcli:53,twistedweb:145,twitch:[86,113],twitter:[76,124,147,386],twitter_api:139,two:[4,6,8,11,13,14,15,16,19,20,22,23,26,27,29,30,31,32,34,36,37,39,40,42,43,45,46,50,51,53,55,56,58,59,60,61,63,64,65,66,68,70,71,72,74,77,79,81,82,83,85,86,87,89,90,92,96,97,99,100,101,102,103,104,105,106,107,108,109,112,113,114,117,118,125,126,128,129,133,137,142,144,145,149,162,169,187,192,193,198,212,213,217,225,226,229,230,234,236,239,248,249,262,264,282,311,322,323,332,334,337,343,345,351,352,359,360],twowai:169,txt:[26,53,67,74,106,130,141,142,156,218,298,306,341],tying:142,typclass:219,type:[0,3,6,9,15,17,19,20,22,23,25,26,27,31,33,37,40,41,42,43,44,45,46,49,50,51,56,58,59,60,61,62,66,68,70,71,72,73,76,77,80,81,82,83,86,87,88,89,90,91,94,95,97,99,100,101,102,103,104,106,107,109,110,112,113,114,122,123,124,125,126,128,131,132,134,141,142,145,149,151,152,154,156,164,169,176,179,180,181,185,186,187,188,191,193,195,199,201,205,208,210,211,212,213,219,226,232,233,234,235,236,243,247,248,249,254,256,257,261,262,266,267,275,276,280,282,284,285,293,294,300,302,303,305,306,307,309,310,311,313,321,323,327,330,331,332,333,334,336,337,339,340,343,345,351,354,355,356,359,360,363,364,365,368,373,379],type_count:195,typecalass:331,typecalss:208,typeclas:104,typeclass:[0,8,12,13,14,19,22,23,24,31,32,34,37,40,41,42,43,49,54,55,56,66,67,68,71,72,74,80,81,85,87,88,90,91,92,93,95,96,97,99,100,101,102,107,110,112,113,114,117,122,123,124,125,127,128,129,151,152,154,155,156,157,158,163,169,174,183,185,186,187,188,195,200,204,207,208,211,216,219,225,226,227,232,233,234,235,236,242,248,250,252,253,256,257,259,260,261,262,266,267,269,270,271,272,274,276,320,338,339,356,357,359,363,365,368,379,382,384,386],typeclass_path:[37,45,158,169,271,332,333],typeclass_search:332,typeclasses:104,typeclassmanag:[157,186,260,270],typeclassmixin:384,typeclassserializermixin:365,typeclassviewsetmixin:368,typedobject:[45,86,158,164,184,187,219,250,261,262,271,331,332,333,334,354,359],typedobjectmanag:[186,253,332],typeerror:[3,198,311],typenam:[68,154,156,158,185,187,192,195,197,200,202,208,210,216,217,218,219,225,226,227,232,233,234,235,236,238,241,242,243,246,247,248,250,254,261,262,266,271,274,289,315,331,333,346,349,350],typeobject:334,types_count:195,typic:[8,19,76,97,229,235,236,365,368,384],typo:[73,74,78,145],ubbfwiuvdezxc0m:73,ubuntu:[6,11,132,136,142,145],ufw:145,ugli:[42,46,88,106,353],uid:[144,158,294,301,322,323],uit:[68,193],ulrik:90,ultima:131,umlaut:16,unabl:[139,203],unaccept:22,unaffect:[27,113,234],unari:228,unarm:233,unarmor:233,unauthenticated_respons:382,unavoid:44,unban:[49,98,167],unbias:198,unbroken:342,uncas:336,uncategor:356,unchang:[6,33,218,267,359],unclear:84,uncolor:[62,94],uncom:142,uncommit:11,uncompress:295,unconnect:[181,199],uncov:195,undefin:[2,43,58],under:[2,3,5,7,9,22,27,45,46,58,60,64,67,70,74,77,86,89,98,99,101,104,105,107,110,112,114,116,128,129,130,131,134,136,141,144,149,164,166,169,201,229,230,249,257,274,282,309,331,336,344,345,359,361,384],undergar:195,undergon:208,underli:[11,31,77,89,110],underlin:[345,358],underneath:[67,333],underpin:120,underscor:[6,27,30,59,62,66,74,106,162,359],underscror:162,understand:[0,3,11,16,20,22,39,40,42,48,56,61,62,71,72,73,74,76,79,81,83,84,85,86,87,93,94,97,98,101,103,104,105,106,107,110,114,116,128,129,131,134,136,145,161,162,217,218,219,327,336,359,386],understood:[8,56,72,97,310,311],undestand:81,undo:[26,145,341],undon:166,undoubtedli:89,unexpect:[8,97,126,343],unexpectedli:349,unfamiliar:[30,31,59,106,123,136,142],unformat:[27,343,346],unfortun:[79,86,110],unhappi:67,unhilit:358,unicod:[16,56,61,154,336,359],unicodeencodeerror:336,unifi:[128,322],uniform:40,unimpl:386,uninform:132,uninstal:136,uninstati:359,unintent:249,union:[20,27,104,162,239,343],uniqu:[2,8,12,14,20,22,25,31,32,37,40,42,43,45,46,49,53,56,70,74,76,77,89,99,101,104,108,110,114,139,142,154,160,162,164,169,174,179,181,185,186,194,197,199,207,213,217,218,219,225,230,233,234,246,248,253,262,266,267,276,279,291,292,300,313,314,322,323,331,332,333,334,339,341,353,356],unit:[1,2,10,19,20,23,41,73,76,77,91,95,131,186,197,211,228,234,284,339,346,359,372,386],unittest:[8,10,81,180,323,339,357],univers:[15,16,91,174],unix:[28,33,74,134,136,175,249,344,352,359],unixcommand:[151,152,188],unixcommandpars:249,unixtim:352,unjoin:192,unknown:[46,86,88,92,104,266,351,359],unleash:82,unless:[13,19,22,27,31,32,34,37,44,49,59,65,68,74,79,80,83,104,107,114,130,133,140,142,149,154,163,167,169,174,177,184,185,207,217,218,219,236,243,247,252,256,257,262,267,280,295,311,323,331,333,356,359,360],unlik:[41,73,77,112,142,154,193,234,333],unlimit:[250,274],unlink:[98,169],unload:357,unload_modul:357,unlock:[31,90,104,331],unlocks_red_chest:31,unlog:[167,172,173,181,185,199,323],unloggedin:[40,151,159,165,214,323],unloggedincmdset:[25,40,105,173,199,214],unlucki:49,unmask:219,unmodifi:[161,178,200,343],unmonitor:287,unmut:[184,185],unnam:[43,162],unneccesari:61,unnecessari:[2,110],unnecessarili:101,unneed:250,unpaced_data:291,unpack:[97,256],unpars:[30,33,161,310,311,351],unpaus:[37,144,274],unpickl:[56,291,331,340,355],unplay:[40,81],unpredict:359,unprivileg:267,unprogram:112,unpuppet:[41,114,166],unpuppet_al:154,unpuppet_object:[12,154],unquel:[31,99,106,166],unreal:131,unregist:64,unrel:[11,27,155],unrepeat:287,unreport:287,unsaf:[149,162,248],unsatisfactori:72,unsav:341,unsel:96,unset:[22,34,71,90,113,167,219,229,246,257,262,266,267,274,276,339,343,344,345,351,352],unsign:360,unsigned_integ:[353,360],unsignedinteg:353,unskil:229,unstabl:[144,385],unstrip:161,unsubscrib:[44,90,174,276,293],unsuit:[51,266,334],unsur:[16,55,73,98,113,136,139,142,226],unsurprisingli:106,untag:46,untest:[8,110,134,136],until:[0,2,5,6,11,13,14,20,22,27,33,37,44,46,48,49,58,62,77,83,84,99,101,106,107,109,110,114,116,126,132,136,192,195,197,211,213,228,229,232,233,234,235,236,246,247,248,262,274,282,311,313,336,337,346,359],untouch:[107,336],untrust:14,unus:[22,94,154,160,164,185,200,230,236,241,262,274,305,321,326,332],unusu:145,unwield:233,unwieldli:163,upcom:[135,147],updat:[1,2,6,8,12,13,14,15,22,27,29,32,34,37,44,55,56,58,59,64,67,71,74,76,77,79,82,83,84,85,89,90,91,94,97,103,106,110,112,113,114,116,128,129,131,132,133,136,139,141,142,143,144,147,155,156,163,164,169,174,177,179,180,184,185,196,200,208,219,228,229,235,248,254,257,261,262,264,265,267,272,298,300,301,306,320,321,323,325,330,331,333,340,341,342,343,344,345,349,359,364,367,379,382,384,386],update_attribut:331,update_buff:341,update_cached_inst:349,update_charsheet:90,update_current_descript:200,update_default:320,update_flag:321,update_lock:364,update_method:46,update_po:71,update_session_count:321,update_undo:341,update_weath:248,updated_bi:205,updated_on:205,updatemethod:46,updateview:384,updatingtrait:229,upfir:7,upgrad:[77,136,141],upload:[77,79,136,142,144,190],upon:[15,31,58,61,83,110,114,122,142,144,145,201,223,232,233,234,235,236,273,284,293,325,384],upp:248,upper:[8,58,62,83,85,166,229,336],upper_bound:229,upper_bound_inclus:229,uppercas:[62,336],upping:62,upsel:142,upset:98,upsid:[86,250],upstart:[53,273],upstream:[0,9,39,77],uptim:[19,49,91,179,296,346],urfgar:42,uri:[185,254,333],url:[11,64,74,77,103,116,129,132,142,143,151,152,156,174,185,190,191,254,301,311,327,333,358,361,362,368,375,378,384],url_nam:[368,382],url_or_ref:74,url_path:368,url_protocol:190,url_to_online_repo:11,urlencod:92,urlpattern:[64,79,92,115,128,129],usabl:[54,62,79,106,114,169,193,203,234,256,325,343],usag:[3,5,22,27,29,42,44,49,63,66,68,74,77,80,82,83,84,86,90,94,95,96,97,98,105,106,112,113,114,125,133,139,142,148,164,166,167,168,169,174,175,176,179,180,181,184,192,193,194,195,197,198,199,200,201,202,212,213,215,216,218,219,223,225,226,227,232,233,234,235,236,239,246,247,248,249,250,256,265,282,343,345,349],use:[0,2,3,4,5,7,8,9,10,11,12,13,14,15,16,17,19,20,22,23,25,26,27,28,29,30,31,32,33,34,37,39,40,41,42,43,45,46,48,49,50,51,53,54,55,56,58,59,60,61,62,63,64,65,66,67,68,70,71,72,73,74,77,78,79,80,81,82,83,85,86,88,89,90,91,92,93,94,95,96,97,98,99,100,101,103,104,105,106,107,108,109,110,112,113,114,115,116,117,118,119,120,121,123,124,125,126,127,128,129,131,132,133,134,135,136,137,139,140,142,143,144,145,147,148,151,154,155,156,158,160,161,162,163,164,166,169,170,174,175,177,178,179,180,184,185,187,190,192,193,194,195,198,200,202,203,207,210,211,212,213,215,216,217,218,219,225,227,229,230,232,233,234,235,236,238,239,242,246,247,248,249,250,256,257,261,262,266,267,274,275,276,280,287,291,304,306,307,310,313,314,321,322,323,330,331,332,333,334,336,337,338,339,341,342,343,344,345,349,351,352,353,355,359,360,364,365,368,384],use_dbref:[219,262,356],use_destin:262,use_evt:344,use_i18n:55,use_item:234,use_nick:[154,219,262],use_required_attribut:[155,252,259,379],use_ssl:190,use_success_location_messag:216,use_success_messag:216,use_tz:190,use_xterm256:336,useabl:250,used:[5,8,9,11,12,13,14,16,17,19,20,23,25,26,27,28,29,30,31,32,33,34,37,39,40,41,42,43,44,45,46,48,50,51,53,56,58,59,60,61,62,63,64,66,67,68,70,72,74,76,77,83,84,86,88,89,90,91,92,95,96,97,99,100,101,102,103,104,105,106,107,108,109,112,113,114,115,116,117,123,124,125,126,128,129,131,133,134,135,136,140,142,144,145,149,151,154,155,156,160,162,163,164,166,169,174,176,177,178,179,180,185,190,192,193,195,197,199,200,201,202,203,205,207,208,210,211,212,213,217,218,219,226,229,230,232,233,234,235,236,246,247,248,249,250,253,255,256,257,259,262,265,267,273,274,275,276,277,279,280,284,287,288,291,292,293,294,295,296,297,298,299,300,302,304,305,306,309,310,311,314,321,323,324,330,331,332,333,334,335,336,337,339,340,341,343,344,345,351,352,353,354,355,356,359,360,365,368,372,379,384],used_kei:31,useful:[0,1,2,3,5,8,11,13,14,15,16,17,19,20,23,26,27,31,33,34,37,39,41,42,43,44,45,48,49,50,51,54,62,66,68,70,72,73,74,75,77,79,81,82,83,84,85,86,89,90,92,93,94,97,98,99,101,102,104,105,106,107,108,109,113,114,118,124,127,128,133,136,142,147,149,160,162,163,164,166,168,169,176,177,178,180,188,192,193,207,208,212,218,219,223,229,248,249,250,256,262,266,267,274,282,302,331,333,337,343,344,346,355,359,385],usefulli:105,useless:[104,246],uselock:256,user:[2,3,5,6,8,10,12,13,14,15,20,25,26,27,28,29,30,31,33,39,40,41,42,45,46,48,49,53,54,55,59,61,62,64,68,71,73,76,77,78,79,81,82,83,84,86,93,94,96,97,98,99,103,104,106,108,114,116,117,125,126,128,129,131,132,133,136,137,138,139,140,141,142,143,144,148,154,155,156,158,161,164,167,169,174,179,184,185,186,187,190,191,193,195,200,202,206,208,213,214,219,222,223,230,234,236,241,243,250,254,256,257,262,267,274,277,280,286,294,301,302,305,310,311,321,323,326,331,333,336,341,343,344,345,351,353,359,360,364,371,379,384,386],user_input:27,user_permiss:[155,158],useradmin:155,userauth:302,userchangeform:155,usercreationform:[155,379],usernam:[11,12,25,27,30,41,79,129,144,154,155,158,199,302,326,363,365,371,379],usernamefield:379,userpassword:[49,98,167],uses:[8,10,11,14,16,17,20,22,23,27,29,31,41,42,43,44,45,46,50,53,58,59,61,62,66,67,68,74,77,83,84,85,87,89,92,94,101,103,104,106,107,116,133,142,143,162,192,198,200,212,214,219,234,242,243,248,249,250,257,271,276,291,311,331,334,351,352,353,359,363,365],uses_databas:359,using:[0,2,5,6,9,11,12,13,14,15,16,19,20,22,23,26,27,29,30,31,33,34,37,40,41,42,43,44,45,46,48,49,51,56,58,59,60,62,63,65,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,88,89,90,91,94,96,97,98,99,100,101,102,103,106,107,110,112,113,114,122,123,124,125,126,127,128,129,130,131,132,133,134,136,138,139,140,142,144,145,148,149,154,158,160,163,164,166,168,169,174,177,178,179,184,190,192,193,194,197,198,200,201,203,207,213,214,216,218,219,225,226,227,229,230,232,233,234,235,236,239,246,248,249,250,257,262,265,266,267,271,274,275,276,293,294,295,300,301,305,311,314,324,325,327,331,333,334,336,337,341,343,344,346,351,352,353,354,355,356,357,359,361,367,368,379,384,385,386],usr:[77,136,141,144],usual:[0,5,6,7,8,11,12,13,19,20,22,23,26,27,28,30,31,33,34,37,40,42,43,44,45,51,53,62,66,67,68,70,73,74,77,79,80,81,83,84,86,89,91,94,97,98,100,101,103,104,106,107,108,109,116,126,128,132,133,136,138,140,142,144,149,154,156,161,162,163,164,166,169,175,179,180,184,185,187,197,207,208,210,211,217,218,219,229,248,249,257,261,262,267,274,282,284,289,314,321,330,331,333,338,339,343,344,352,354,356,359],utc:[133,360],utf8:[2,133],utf:[16,30,61,72,90,134,190,287,293,310,345,359],util:[6,8,13,14,15,23,26,27,28,34,37,46,48,50,58,62,69,71,72,86,89,90,91,94,96,100,102,117,122,128,129,132,136,145,151,152,155,168,180,185,187,188,190,197,200,201,204,208,209,224,226,229,235,244,252,254,259,262,264,266,274,275,289,308,313,330,331,332,333,361,366,379,382,386],utilis:343,uyi:218,v19:136,vagu:80,val1:265,val2:265,val:[13,59,154,166,265,306,359],valid:[0,3,6,10,13,14,20,22,27,34,37,42,59,62,84,87,90,92,97,103,106,114,128,129,142,145,149,151,152,154,161,163,169,177,178,179,186,192,193,201,205,208,209,213,217,219,228,229,230,235,242,243,247,248,249,250,257,262,264,265,266,267,272,273,274,275,276,277,280,282,306,310,321,332,334,337,339,343,353,354,355,356,358,359,360,365,379,384],valid_handl:353,validate_email_address:359,validate_input:229,validate_nam:262,validate_onli:257,validate_password:[27,154],validate_prototyp:266,validate_sess:323,validate_usernam:154,validationerror:[154,266,326,353,355],validator_config:154,validator_kei:353,validatorfunc:[151,152,335],valign:345,valu:[3,6,8,9,12,13,17,19,20,22,26,30,31,32,33,37,44,45,46,48,49,58,59,62,66,68,71,72,77,79,81,82,85,86,90,91,92,94,95,96,98,99,101,103,104,105,106,108,110,112,113,114,126,128,129,142,154,158,160,164,166,167,169,180,185,187,190,193,195,198,201,202,203,205,208,209,213,216,217,218,219,224,228,229,232,233,234,235,236,241,243,244,248,250,254,256,257,261,262,265,266,267,271,273,274,276,280,287,288,289,291,300,305,306,321,322,323,328,331,332,333,334,336,338,339,340,341,342,343,349,350,353,354,355,356,359,360,363,365,372,379,384],valuabl:109,value1:42,value2:42,value_displai:365,value_from_datadict:355,value_to_obj:266,value_to_obj_or_ani:266,value_to_str:355,valueerror:[42,86,97,114,190,193,215,217,331,336,339,351,359,360],valuei:72,values_list:101,valuex:72,vampir:101,vanilla:[0,45,58,67,71,88,90,104],vaniti:27,vari:[11,45,53,60,62,77,84,95,103,106,206,218,229,236,321,331,333],variabl:[4,6,7,13,14,20,22,27,31,39,42,46,54,59,61,64,66,70,71,74,76,77,82,86,88,90,92,97,98,101,104,105,106,107,115,125,128,129,144,145,154,158,160,164,166,169,174,177,178,179,180,190,196,200,201,205,207,208,211,216,229,248,256,261,262,266,267,279,282,292,295,296,298,302,304,314,321,328,336,337,343,359,372],variable_from_modul:359,variable_nam:[205,208],variablenam:359,varianc:218,variant:[13,43,76,106,163,193,199,226,293],variat:[91,101,112,113,162,200,218,243,359],varieti:[76,95,113,124,234,235],variou:[5,6,8,13,16,22,34,37,40,42,43,44,45,46,53,57,59,62,70,73,75,86,89,91,92,94,101,102,103,106,108,112,113,114,120,134,142,145,149,162,178,197,218,219,230,234,235,246,247,257,261,262,267,268,276,314,339,345,356,357],varnam:306,vast:[58,60,72,133],vastli:77,vcc:218,vccv:218,vccvccvc:218,vcpython27:67,vcv:218,vcvccv:218,vcvcvcc:218,vcvcvvccvcvv:218,vcvvccvvc:218,vector:359,vehicl:[80,386],velit:28,venu:[11,186],venv:[136,141],verb:[81,318],verbal:[210,262],verbatim:[99,106],verbatim_el:359,verbos:[0,8,74,113,219],verbose_nam:[128,333],veri:[0,3,5,6,8,9,11,12,13,14,15,17,19,20,22,25,26,27,28,29,30,31,39,41,42,43,44,45,46,48,53,58,59,60,62,63,65,66,67,68,70,71,72,73,74,76,77,78,79,80,82,83,85,86,88,89,90,93,96,97,99,101,103,104,106,107,108,109,110,112,113,114,117,125,127,129,130,131,132,133,138,140,142,149,154,156,162,164,180,185,187,193,195,207,208,217,218,219,225,226,227,230,235,243,246,249,250,253,261,286,332,334,339,341,343,359,384],verif:142,verifi:[2,11,27,104,136,142,169,190,201,235,307],verify_online_play:201,verify_or_create_ssl_key_and_cert:307,verify_ssl_key_and_cert:303,verifyfunc:201,versa:[40,53,59,110,113,174,291],version:[1,2,9,12,13,14,15,20,22,25,27,30,33,45,46,55,58,60,62,72,73,77,79,80,83,84,86,89,94,97,98,99,103,105,106,110,114,116,126,131,133,134,135,136,141,142,144,169,177,179,181,190,194,195,199,200,214,219,233,234,235,236,239,247,262,267,282,287,301,325,330,331,336,344,359,365,379,386],version_info:282,versionad:74,versionchang:74,versu:76,vertic:[46,247,345,359],very_strong:257,very_weak:31,vest:145,vet:42,veteran:131,vfill_char:345,via:[5,11,13,19,27,28,30,36,42,45,46,48,53,56,58,60,62,73,76,78,88,89,96,101,103,104,106,112,114,126,136,142,145,182,186,187,190,222,261,271,331,334,336,350],viabl:246,vice:[40,53,59,110,113,174,291],vicin:[22,175,200,248],video:[46,62,103,131],vienv:67,view:[3,11,17,19,23,26,27,28,31,37,44,58,72,74,76,77,79,86,90,93,95,98,103,104,106,113,114,116,117,136,140,142,147,148,149,151,154,166,167,169,174,175,176,179,184,185,195,219,232,233,234,235,236,250,252,254,262,264,317,333,361,362,364,367,372,375,378,379,386],view_attr:169,view_lock:364,viewabl:[75,76,176],viewer:[74,81,92,219,250,256,262,333],viewport:3,viewset:[367,368],vim:[15,26,117,131,341],vincent:[86,193,200,214,217,249],violent:27,virtual:[76,79,86,89,131,136,142,179,200,346],virtual_env:141,virtualenv:[0,2,5,6,7,9,55,67,74,133,136,141,142,144,148,149],virtualhost:132,visibl:[2,11,14,20,40,45,62,74,81,92,94,110,114,135,136,142,148,175,219,256,262,294,327,343],visiblelock:256,vision:[13,90,110],visit:[68,71,72,128,129,142,249,343],visitor:[64,129,145],vista:136,visual:[5,46,62,81,89,136,154,176,203],vital:97,vlgeoff:197,vniftg:136,vnum:88,vocabulari:[70,359],voic:[22,69,70,386],volcano:108,volum:[72,80,110,144],volund:101,voluntari:73,volupt:28,vowel:218,vpad_char:345,vscode:117,vulner:[83,145],vvc:218,vvcc:218,vvccv:218,vvccvvcc:218,w001:8,wai:[3,5,6,7,8,9,11,12,13,14,15,16,19,20,22,29,30,31,32,33,34,36,37,39,40,41,42,43,44,45,48,49,51,53,56,58,59,61,62,63,65,66,67,68,70,71,72,73,74,76,77,78,80,82,84,85,86,87,88,89,90,91,92,93,95,96,97,98,99,100,101,102,103,104,107,108,109,110,112,113,114,116,122,123,125,126,127,128,131,133,135,136,140,141,142,143,145,148,149,154,161,162,169,176,185,192,197,198,200,201,203,207,210,211,218,225,226,229,230,232,233,234,235,236,239,246,247,249,257,262,274,276,282,287,291,302,323,327,328,329,332,334,337,342,343,345,349,352,355,367,384],wail:71,waist:195,wait:[3,19,22,27,37,48,66,81,82,83,99,109,125,156,207,211,229,232,233,234,235,236,274,282,292,311,313,325,339,359],wait_for_disconnect:292,wait_for_server_connect:292,wait_for_statu:282,wait_for_status_repli:282,waiter:282,wake:201,walias:169,walk:[15,20,66,70,71,80,85,91,96,226,227,230,250,337],walki:77,wall:[72,98,106,109,167,175,200,247,248],wanna:[73,192],want:[0,3,4,5,6,7,8,9,11,12,13,14,15,16,19,20,22,23,25,26,27,29,30,31,32,33,34,37,39,40,41,42,44,45,46,48,49,51,53,54,55,56,58,59,60,61,62,64,65,66,67,68,70,71,72,73,74,77,78,79,80,81,82,83,84,85,86,87,89,90,91,92,94,95,96,97,98,99,101,102,103,104,105,106,107,108,110,112,114,115,116,117,118,119,120,121,123,125,126,127,128,129,130,132,133,135,136,139,140,141,142,143,145,147,148,149,154,162,163,164,166,175,180,184,192,193,199,200,201,203,210,217,219,222,229,230,232,233,234,235,236,243,248,250,252,256,257,262,267,274,276,298,300,306,313,323,328,330,331,333,341,344,349,355,359,367,379,384,385],wanted_id:31,ware:96,warehous:[222,337],wari:[62,250,262,333],warm:[37,149,286],warn:[5,9,19,20,39,40,65,72,77,97,103,106,129,132,133,136,142,162,184,190,223,281,282,307,352,385],warnmsg:352,warrior:[82,89,90,109,110,114],wasclean:[293,310],wasn:[3,66,129],wast:[15,44],watch:[7,15,32],water:[163,213,216],waterballon:216,wave:72,wcach:179,wcactu:235,wcommandnam:249,wcure:235,wdestin:169,weak:267,weakref:349,weaksharedmemorymodel:[289,349],weaksharedmemorymodelbas:[289,349],weakvalu:349,wealth:96,weapon:[27,42,58,77,83,95,96,98,100,101,105,109,110,112,113,233,246,247,267],weapon_ineffective_msg:246,weapon_prototyp:247,weaponrack_cmdset:247,weaponstr:105,weapoon:109,wear:[95,195,219,233],wearabl:195,wearer:195,wearstyl:195,weather:[37,43,44,65,72,84,93,103,109,110,112,248,386],weather_script:37,weatherroom:[127,248],web:[17,31,42,50,55,67,74,75,76,77,79,81,84,92,99,102,106,110,117,121,131,132,133,136,138,140,141,148,149,151,152,183,190,284,286,296,300,306,310,311,321,325,327,334,340,386],web_client_url:135,web_get_admin_url:[185,254,333],web_get_create_url:[185,254,333],web_get_delete_url:[185,254,333],web_get_detail_url:[185,254,333],web_get_puppet_url:333,web_get_update_url:[185,254,333],web_plugin:103,webclient:[24,40,53,56,59,62,64,75,77,84,92,103,106,134,135,145,149,151,152,179,190,277,287,290,306,311,322,361,372,373,382,386],webclient_ajax:[46,151,277,290],webclient_en:145,webclient_opt:287,webclientdata:311,webclienttest:382,webpag:[17,132,142,376],webport:2,webserv:[2,24,39,53,64,67,76,102,103,115,132,133,142,144,147,151,152,277,361,386],webserver_en:145,webserver_interfac:[138,142],webserver_port:142,webservic:145,websit:[17,46,67,75,76,77,89,92,93,103,115,116,128,131,138,142,143,145,151,152,155,311,327,361,373,386],websocket:[46,53,76,77,134,142,144,293,299,310,322],websocket_client_interfac:[138,142],websocket_client_port:142,websocket_client_url:[132,138,142],websocket_clos:310,websocketcli:310,websocketclientfactori:293,websocketclientprotocol:293,websocketserverfactori:299,websocketserverprotocol:310,weed:[0,162],week:[91,103,197,352,360],weeklylogfil:352,weigh:[95,313],weight:[60,74,110,133,203,218,332,386],weird:[98,359],welcom:[25,55,68,73,79,96,115,117,134,136,140],well:[0,7,8,9,11,12,13,17,22,26,27,28,29,30,34,39,40,42,45,49,50,51,53,54,59,60,61,64,67,68,70,71,73,74,76,77,79,80,81,85,86,87,89,90,91,92,94,96,97,101,104,105,106,107,108,109,110,113,114,116,123,124,128,129,133,139,141,143,145,148,158,162,163,164,169,174,179,182,192,195,200,207,215,218,219,229,230,234,235,236,242,246,262,271,277,282,291,293,294,300,317,325,330,331,332,336,340,343,346,355,359],went:[8,11,89,107,148,149,272,276],were:[3,8,13,14,20,22,27,37,39,42,45,46,48,58,60,73,74,77,87,90,92,95,96,97,101,103,104,105,106,107,114,126,134,144,154,161,162,163,217,230,262,266,329,333,337,356,359],weren:91,werewolf:81,werewolv:101,werkzeug:359,west:[71,72,81,87,99,169,213,248],west_east:72,west_exit:248,western:72,westward:248,wether:[192,339],wevennia:68,wflame:235,wflushmem:179,wfull:235,what:[0,3,5,6,8,9,10,11,12,14,15,19,20,22,27,29,30,31,34,37,39,40,42,44,45,48,49,51,53,56,58,59,60,61,62,63,65,66,67,68,70,71,72,74,77,78,79,80,81,83,85,87,88,89,90,91,92,94,96,98,99,101,102,104,105,106,109,110,112,113,114,116,118,119,120,121,122,123,125,126,127,128,129,130,131,132,133,136,140,142,143,145,149,154,160,162,163,164,166,169,176,180,185,208,216,217,219,222,227,229,234,235,239,243,246,248,254,257,262,266,267,282,284,287,294,306,311,326,328,331,333,334,336,337,343,353,354,359,360,365,371,379,384,386],whatev:[8,11,12,13,15,19,22,27,34,37,53,68,70,72,77,80,88,90,95,97,106,107,110,114,128,129,130,133,144,148,154,156,163,169,201,235,241,246,247,262,267,271,272,293,302,305,310,323,331,344,353,384],wheel:[44,89,136,141,273],whelp:249,when:[0,1,2,3,5,6,7,8,9,11,12,13,14,15,16,17,19,20,22,23,25,26,27,28,29,30,31,32,33,34,37,39,40,41,42,43,45,46,48,49,51,53,54,55,56,58,59,60,61,62,63,66,67,68,70,71,72,73,77,79,80,83,84,85,86,87,88,89,90,91,92,95,96,97,98,99,101,102,103,104,105,106,107,108,109,110,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,130,131,132,133,136,137,141,142,143,144,145,148,149,151,154,156,158,160,162,163,164,166,168,169,174,175,177,178,179,181,185,186,187,190,191,192,193,194,195,197,198,199,200,201,202,203,208,209,210,211,212,213,214,215,216,217,218,219,225,227,229,230,232,233,234,235,236,238,239,242,243,244,246,247,248,249,250,253,254,256,257,261,262,264,266,267,271,272,274,275,276,279,282,284,288,289,291,292,293,294,295,296,297,298,300,302,303,304,305,306,307,310,311,313,314,320,321,322,323,324,325,331,333,334,336,337,339,340,341,342,343,344,345,349,350,351,352,354,359,379,384],when_stop:282,whenev:[7,9,13,22,30,31,32,33,37,41,42,48,54,55,61,68,70,72,77,81,104,122,142,143,144,154,163,184,185,246,247,248,262,272,274,284,301,321,322,323],where:[0,2,3,4,8,11,13,14,15,20,22,26,27,28,31,37,39,40,42,45,46,48,49,53,55,56,58,59,60,61,62,64,66,67,68,70,71,72,77,80,81,83,85,86,88,89,90,91,92,96,97,98,99,103,104,105,106,107,109,110,112,114,115,116,117,118,122,123,125,128,129,141,142,144,145,147,148,161,162,167,169,175,178,185,186,190,194,198,210,212,213,218,219,223,228,234,247,248,250,256,257,262,265,266,267,272,282,284,287,291,306,314,319,323,330,333,336,337,341,343,344,345,351,353,354,359,365,384],wherea:[0,3,5,6,9,13,14,20,22,23,31,40,42,45,49,51,53,58,61,62,76,80,88,94,96,106,110,113,145,218,239,243,276,311,331,349],whereabout:109,wherebi:235,wherev:[8,13,72,77,108,136,144,193,222,234],whether:[27,49,66,70,76,85,91,92,105,125,154,156,163,169,174,176,185,201,230,232,233,234,235,236,256,262,276,293,310,325,331,332,336,351,353,355,359],whewiu:67,which:[0,2,3,4,5,6,7,8,11,13,14,15,16,19,20,22,23,24,27,28,30,31,33,34,37,39,40,41,42,43,44,45,46,48,49,51,53,54,55,56,58,59,60,61,62,64,65,66,67,68,70,71,72,73,74,77,79,81,82,83,84,85,86,87,88,89,90,91,92,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,112,113,114,115,116,122,123,124,125,126,127,128,129,134,136,137,139,140,142,144,145,148,149,154,156,160,162,163,164,166,167,169,175,177,178,179,180,184,185,186,187,190,192,193,194,195,196,197,200,201,203,210,211,212,213,215,219,222,223,225,227,229,230,232,233,234,235,236,242,243,246,247,248,249,250,254,257,261,262,266,267,271,272,274,275,276,279,281,282,286,287,294,300,302,310,311,313,314,321,322,323,325,328,330,331,332,333,334,336,337,339,340,343,344,345,346,349,351,352,353,355,356,357,359,365,368,371,372,379,384],whichev:[19,142,145,248],whilst:[72,213],whimper:109,whisp:218,whisper:[70,98,175,210,211,218,219,262],white:[30,62,126,359],whitelist:30,whitenois:229,whitespac:[15,19,22,90,94,98,101,114,117,177,178,215,219,336,337,345,359],who:[13,23,27,31,33,42,45,48,49,62,70,71,76,79,80,86,88,90,101,105,106,107,109,110,112,113,114,125,127,128,145,156,164,166,169,174,184,185,192,201,208,219,232,233,234,235,236,247,254,256,257,262,267,333,341,364],whoever:128,whole:[33,43,50,63,71,72,76,79,89,98,110,114,169,179,236,345],wholist:185,whome:169,whomev:[62,112,125],whose:[45,59,62,101,103,104,154,208,219,230,232,233,234,235,236,287,338,343,359],whould:343,why:[13,27,45,49,66,68,70,72,76,77,81,85,86,87,95,97,99,114,126,136,145,148,167,217,232,235,236,279,280,343],wide:[19,50,58,81,85,90,97,106,110,112,167,234,235,250,342,345,359],widen:49,wider:[49,81,85,167,345],widest:359,widget:[155,252,259,330,355,365,379],width:[17,19,22,30,42,50,62,71,72,81,151,164,265,287,302,321,336,341,342,344,345,351,359],wield:[42,95,110,233],wifi:[142,145],wiki:[22,45,60,67,72,73,76,77,90,93,113,131,193,310,385,386],wiki_account_handl:79,wiki_account_signup_allow:79,wiki_can:79,wiki_can_admin:79,wiki_can_assign:79,wiki_can_assign_own:79,wiki_can_change_permiss:79,wiki_can_delet:79,wiki_can_moder:79,wiki_can_read:79,wiki_can_writ:79,wikiconfig:79,wikipedia:[8,11,16,61,76,77,113,310],wild:[11,60,101,126],wildcard:[33,49,89,167,169,359],wildcard_to_regexp:359,wilder:[151,152,188],wildernessexit:250,wildernessmap:250,wildernessmapprovid:250,wildernessroom:250,wildernessscript:250,wildli:218,will_suppress_ga:304,will_transform:101,will_ttyp:309,willing:[90,110,131],win10:136,win7:136,win8:136,win:[67,97,113,134],wind:[109,127],window:[5,6,7,9,11,20,28,34,40,46,55,56,59,71,74,77,79,81,87,99,106,117,133,140,148,149,164,176,282,298,321,325,344,359],windowid:321,windows10:136,wine:[108,109],wingd:72,winpti:67,winter:200,wintext:112,wip:74,wipe:[9,14,67,72,98,106,133,169,179,234],wire:[19,53,56,59,61,77,142,178,279,291,292,323,336],wis:90,wisdom:5,wise:[0,11,13,14,15,16,31,64,90,104,123],wiser:99,wish:[2,11,22,85,116,124,141,193,236,336,358,379],with_tag:216,withdraw:[113,236],withdrawl:236,within:[0,6,11,13,20,22,27,44,46,48,62,67,68,71,73,74,77,85,88,90,101,103,106,108,113,116,122,123,124,126,129,132,134,142,144,154,158,160,169,192,200,203,205,223,253,262,267,325,331,332,336,351,352,359,379,384],without:[3,5,6,8,9,11,13,14,15,19,20,22,25,26,27,31,36,39,41,42,44,45,49,50,53,54,55,58,59,60,62,63,66,68,70,71,73,74,76,77,80,81,83,84,87,89,90,97,98,99,100,101,103,105,106,107,110,114,116,123,125,126,128,132,133,136,142,144,148,154,156,161,164,166,167,169,174,175,177,178,179,180,187,191,192,194,195,200,205,208,210,213,218,219,225,229,230,232,235,236,246,248,257,262,265,266,267,274,275,291,302,305,306,313,323,324,331,333,336,337,339,340,341,343,344,351,355,356],withstand:31,wiz:90,wizard:[42,267,280,282],wkei:169,wlocat:169,wlock:169,wmagic:235,wmass:235,wndb_:169,woah:[104,105],won:[3,8,12,13,14,16,20,45,46,48,49,56,58,62,66,68,70,72,74,79,80,83,86,89,92,94,96,97,98,101,105,106,110,112,114,129,130,133,136,144,163,201,217,238,239,242,243,327,336,355],wonder:[50,67,88,95],wont_suppress_ga:304,wont_ttyp:309,woo:98,wooden:42,woosh:80,word:[5,6,11,15,19,22,26,34,55,59,70,71,72,78,91,92,97,98,104,106,116,117,126,140,161,177,178,181,199,211,218,219,294,341,356,359],word_fil:218,word_length_vari:218,wordi:218,work:[0,2,3,4,5,6,7,8,9,12,13,14,15,16,19,20,23,27,31,32,34,37,40,42,43,44,48,50,54,56,58,60,62,63,66,67,68,71,72,73,74,77,78,79,80,81,82,83,86,87,88,89,90,91,94,96,98,99,101,102,103,104,105,106,107,108,110,113,114,116,117,120,121,122,126,127,128,129,132,133,134,136,139,140,141,142,145,147,148,160,163,164,166,169,174,175,177,179,184,185,192,193,194,200,215,216,219,225,230,234,235,236,248,249,250,254,256,257,262,266,267,282,286,287,299,314,327,329,331,333,337,342,345,353,359,384],workaround:[11,136,144],workflow:[110,155],world:[8,11,13,14,15,16,19,20,22,23,27,29,31,39,42,46,48,58,60,61,67,71,72,76,77,80,85,86,89,90,91,95,100,104,105,107,112,113,114,117,118,119,120,121,122,125,130,131,136,140,142,154,168,169,176,184,192,197,213,215,219,229,232,233,234,235,236,247,248,250,254,271,321,323,336,337,346],world_map:72,worm:71,worm_has_map:71,worn:[195,233],worri:[2,8,13,16,27,39,61,62,66,76,85,86,101,109,114,192,243],worst:110,worth:[5,27,45,66,80,83,97,110,128,131,132,192],worthi:110,worthless:142,would:[2,3,5,7,8,9,13,14,15,16,19,20,22,27,29,31,34,37,40,42,43,44,45,48,50,51,58,59,62,64,65,66,67,68,70,71,72,74,76,77,79,80,81,83,85,86,87,88,89,90,91,92,94,95,96,97,98,99,101,102,103,104,105,106,107,110,112,113,114,116,117,122,123,125,126,128,129,132,136,142,144,154,161,162,163,169,178,185,190,192,197,208,210,218,229,230,239,243,249,250,254,256,257,266,267,294,330,333,336,337,340,343,351,354,355,357],wouldn:[85,105,126],wound:235,wow:92,wpermiss:169,wprototype_desc:169,wprototype_kei:169,wprototype_lock:169,wprototype_par:169,wprototype_tag:169,wrap:[27,37,42,48,71,84,101,106,108,116,195,201,219,289,329,345,359],wrap_conflictual_object:355,wrapper:[5,19,27,30,40,45,48,58,83,154,158,185,186,187,225,229,254,261,262,271,275,287,289,321,330,331,333,334,336,345,349,350,352,359,384],wresid:179,write:[5,10,11,13,15,16,19,20,22,23,27,29,33,45,48,50,59,60,63,66,68,70,73,74,78,79,81,86,87,88,90,91,92,97,98,99,101,104,105,106,107,109,114,133,136,137,139,140,169,176,184,190,191,193,210,222,223,249,262,295,352,357,384,386],writeabl:141,written:[8,16,19,42,74,88,89,90,98,101,103,104,105,106,107,108,110,128,129,131,135,145,150,176,222,337,384],wrong:[0,3,8,86,94,96,106,136,149,162,169,179,219],wrote:[101,104],wserver:179,wservic:174,wsgi:[132,327],wsgi_resourc:327,wsgiwebserv:327,wsl:[74,136],wss:[132,138,142],wtypeclass:169,wwhere:[210,262],www:[9,60,67,68,76,77,85,128,131,132,142,151,297,298,304,306,358,379],wyou:95,x0c:169,x1b:[336,358],x2x:90,x4x:342,x5x:342,x6x:342,x7x:342,x8x:342,x9x:342,x_r:85,xcode:136,xforward:327,xgettext:55,xit:[68,193],xml:190,xmlcharrefreplac:336,xp_gain:112,xpo:345,xterm256:[30,46,56,76,94,106,166,196,203,287,302,305,336,386],xterm256_bg:336,xterm256_bg_sub:336,xterm256_fg:336,xterm256_fg_sub:336,xterm256_gbg:336,xterm256_gbg_sub:336,xterm256_gfg:336,xterm256_gfg_sub:336,xterm:[62,106,126],xterms256:62,xval:22,xxx:[3,81,217],xxxx:217,xxxxx1xxxxx:342,xxxxx3xxxxx:342,xxxxxxx2xxxxxxx:342,xxxxxxxxxx3xxxxxxxxxxx:90,xxxxxxxxxx4xxxxxxxxxxx:90,xxxxxxxxxxx:342,xxxxxxxxxxxxxx1xxxxxxxxxxxxxxx:90,xxxxxxxxxxxxxxxxxxxxxx:90,xxxxxxxxxxxxxxxxxxxxxxxxxxxxxx:90,xyz:33,y_r:85,yan:62,yank:26,year:[59,60,76,91,110,117,142,190,197,346,352,359,379],yearli:[91,142],yellow:[11,62,126,247],yes:[22,27,48,70,85,126,169,211,280,341,359],yesno:[27,341],yet:[2,3,9,11,12,15,25,27,40,42,47,49,55,58,66,68,70,71,72,77,79,81,82,86,98,101,104,125,128,129,131,135,136,142,150,154,181,192,199,208,213,257,261,300,323,327,336,384],yield:[22,31,48,60,133,169,223,345,359],yml:[10,144],yogurt:216,you:[1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,19,20,22,23,25,26,27,29,30,31,32,33,34,36,37,39,40,41,42,43,44,45,46,48,49,50,51,53,54,55,56,58,59,60,61,62,63,64,65,66,67,68,70,71,72,73,74,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,106,107,108,110,112,113,114,115,116,118,121,122,123,124,125,126,127,128,129,130,131,132,133,135,136,137,139,140,141,142,143,144,145,147,148,149,154,163,164,166,169,174,175,176,177,178,179,180,181,184,190,192,193,194,195,196,197,200,201,203,206,207,208,210,211,212,213,214,215,216,217,218,219,222,223,225,226,227,229,230,232,233,234,235,236,238,239,242,243,247,248,249,250,252,256,257,262,267,273,274,276,284,293,294,295,311,313,323,325,327,328,331,333,336,337,339,342,343,345,346,355,356,359,363,365,367,368,379,384,385],your:[2,3,5,7,8,10,13,14,15,16,17,19,20,23,25,26,27,29,31,33,37,39,40,41,42,43,44,45,48,49,50,54,55,56,59,61,62,63,64,65,66,67,68,70,71,72,73,74,76,77,78,80,81,83,84,86,87,88,89,90,91,92,93,94,95,96,97,101,102,104,105,106,107,108,109,110,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,129,130,131,132,133,135,136,137,138,139,140,141,143,147,148,149,151,152,154,158,161,163,164,166,167,169,174,175,179,180,181,188,190,192,193,195,196,197,198,199,200,201,203,207,210,213,217,218,219,222,223,226,230,232,233,234,235,236,238,247,248,249,250,256,257,261,313,330,333,336,341,343,345,355,356,357,359,360,368,379,384,386],your_email:11,yourchar:106,yourgam:222,yourhost:138,yournam:[98,104,105,132],yourpassword:133,yourrepo:7,yourself:[0,3,10,11,12,15,20,27,31,34,37,45,50,51,58,60,64,66,68,72,73,76,90,92,97,105,106,108,112,114,130,133,136,142,169,175,192,202,219,225,229,235,238,343],yoursit:128,yourusernam:11,yourwebsit:128,yousuck:49,yousuckmor:49,youth:201,youtub:11,ypo:345,yrs:197,ythi:62,yum:[11,132,138],yvonn:90,z_r:85,zed:131,zero:[19,42,99,104,106,108,219,262,331,336],zine:110,zip:[145,190],zlib:[141,291,295],zmud:[134,297],zone:[43,70,76,78,88,93,103,131,334,352,386],zope:6,zopeinterfac:136,zuggsoft:297},titles:["Coding Introduction","Coding and development help","Continuous Integration","Debugging","Things to remember about the flat API","Profiling","Quirks","Setting up PyCharm","Unit Testing","Updating Your Game","Using Travis","Version Control","Accounts","Attributes","Batch Code Processor","Batch Command Processor","Batch Processors","Bootstrap Components and Utilities","Channels","Coding Utils","Command Sets","Command System","Commands","Communications","Core Components","Connection Screen","EvEditor","EvMenu","EvMore","Help System","Inputfuncs","Locks","MonitorHandler","Nicks","Objects","Outputfuncs","Portal And Server","Scripts","Server component","Server Conf","Sessions","Signals","Spawner and Prototypes","Tags","TickerHandler","Typeclasses","Webclient","Webserver","Async Process","Banning","Bootstrap & Evennia","Building Permissions","Core Concepts","Custom Protocols","Guest Logins","Internationalization","Messagepath","Multisession modes","New Models","OOB","Soft Code","Text Encodings","TextTags","Using MUX as a Standard","Web Features","Zones","A voice operated elevator using events","Arxcode installing help","Building menus","Contributions","Dialogues in events","Dynamic In Game Map","Static In Game Map","Contributing","Contributing to Evennia Docs","API Summary","Evennia Introduction","Glossary","How To Get And Give Help","Add a wiki on your website","Building a mech tutorial","Coding FAQ","Command Cooldown","Command Duration","Command Prompt","Coordinates","Customize channels","Default Exit Errors","Evennia for Diku Users","Evennia for MUSH Users","Evennia for roleplaying sessions","Gametime Tutorial","Help System Tutorial","Tutorials and Howto\u2019s","Manually Configuring Color","Mass and weight for objects","NPC shop Tutorial","Parsing command arguments, theory and best practices","8. Our own commands","1. Using the game and building stuff","10. Creating things","12. Django Database queries","6. Overview of the Evennia library","4. Overview of your new Game Dir","7. Persistent objects and typeclasses","9. More about Commands","3. Starting to code Evennia","5. Python Classes and objects","11. Searching for things","2. The Tutorial World","Game Planning","Some useful contribs","Implementing a game rule system","Turn based Combat System","Tutorial for basic MUSH like game","Add a simple new web page","Web Tutorial","Starting Tutorial (Part 1)","Evennia Starting Tutorial (Part 2)","Evennia Starting Tutorial (Part 3)","Evennia Starting Tutorial (Part 4)","Evennia Starting Tutorial (part 5)","Tutorial Aggressive NPCs","Tutorial NPCs listening","Tutorial Tweeting Game Stats","Tutorial Vehicles","Understanding Color Tags","Weather Tutorial","Web Character Generation","Web Character View Tutorial","Licensing","Links","Apache Config","Choosing An SQL Server","Client Support Grid","Evennia Game Index","Getting Started","Grapevine","HAProxy Config (Optional)","How to connect Evennia to Twitter","IRC","Installing on Android","Online Setup","RSS","Running Evennia in Docker","Security","The Evennia Default Settings file","Server Setup and Life","Setup quickstart","Start Stop Reload","Unimplemented","evennia","evennia","evennia.accounts","evennia.accounts.accounts","evennia.accounts.admin","evennia.accounts.bots","evennia.accounts.manager","evennia.accounts.models","evennia.commands","evennia.commands.cmdhandler","evennia.commands.cmdparser","evennia.commands.cmdset","evennia.commands.cmdsethandler","evennia.commands.command","evennia.commands.default","evennia.commands.default.account","evennia.commands.default.admin","evennia.commands.default.batchprocess","evennia.commands.default.building","evennia.commands.default.cmdset_account","evennia.commands.default.cmdset_character","evennia.commands.default.cmdset_session","evennia.commands.default.cmdset_unloggedin","evennia.commands.default.comms","evennia.commands.default.general","evennia.commands.default.help","evennia.commands.default.muxcommand","evennia.commands.default.syscommands","evennia.commands.default.system","evennia.commands.default.tests","evennia.commands.default.unloggedin","evennia.comms","evennia.comms.admin","evennia.comms.channelhandler","evennia.comms.comms","evennia.comms.managers","evennia.comms.models","evennia.contrib","evennia.contrib.awsstorage","evennia.contrib.awsstorage.aws_s3_cdn","evennia.contrib.awsstorage.tests","evennia.contrib.barter","evennia.contrib.building_menu","evennia.contrib.chargen","evennia.contrib.clothing","evennia.contrib.color_markups","evennia.contrib.custom_gametime","evennia.contrib.dice","evennia.contrib.email_login","evennia.contrib.extended_room","evennia.contrib.fieldfill","evennia.contrib.gendersub","evennia.contrib.health_bar","evennia.contrib.ingame_python","evennia.contrib.ingame_python.callbackhandler","evennia.contrib.ingame_python.commands","evennia.contrib.ingame_python.eventfuncs","evennia.contrib.ingame_python.scripts","evennia.contrib.ingame_python.tests","evennia.contrib.ingame_python.typeclasses","evennia.contrib.ingame_python.utils","evennia.contrib.mail","evennia.contrib.mapbuilder","evennia.contrib.menu_login","evennia.contrib.multidescer","evennia.contrib.puzzles","evennia.contrib.random_string_generator","evennia.contrib.rplanguage","evennia.contrib.rpsystem","evennia.contrib.security","evennia.contrib.security.auditing","evennia.contrib.security.auditing.outputs","evennia.contrib.security.auditing.server","evennia.contrib.security.auditing.tests","evennia.contrib.simpledoor","evennia.contrib.slow_exit","evennia.contrib.talking_npc","evennia.contrib.test_traits","evennia.contrib.traits","evennia.contrib.tree_select","evennia.contrib.turnbattle","evennia.contrib.turnbattle.tb_basic","evennia.contrib.turnbattle.tb_equip","evennia.contrib.turnbattle.tb_items","evennia.contrib.turnbattle.tb_magic","evennia.contrib.turnbattle.tb_range","evennia.contrib.tutorial_examples","evennia.contrib.tutorial_examples.bodyfunctions","evennia.contrib.tutorial_examples.cmdset_red_button","evennia.contrib.tutorial_examples.example_batch_code","evennia.contrib.tutorial_examples.mirror","evennia.contrib.tutorial_examples.red_button","evennia.contrib.tutorial_examples.red_button_scripts","evennia.contrib.tutorial_examples.tests","evennia.contrib.tutorial_world","evennia.contrib.tutorial_world.mob","evennia.contrib.tutorial_world.objects","evennia.contrib.tutorial_world.rooms","evennia.contrib.unixcommand","evennia.contrib.wilderness","evennia.help","evennia.help.admin","evennia.help.manager","evennia.help.models","evennia.locks","evennia.locks.lockfuncs","evennia.locks.lockhandler","evennia.objects","evennia.objects.admin","evennia.objects.manager","evennia.objects.models","evennia.objects.objects","evennia.prototypes","evennia.prototypes.menus","evennia.prototypes.protfuncs","evennia.prototypes.prototypes","evennia.prototypes.spawner","evennia.scripts","evennia.scripts.admin","evennia.scripts.manager","evennia.scripts.models","evennia.scripts.monitorhandler","evennia.scripts.scripthandler","evennia.scripts.scripts","evennia.scripts.taskhandler","evennia.scripts.tickerhandler","evennia.server","evennia.server.admin","evennia.server.amp_client","evennia.server.connection_wizard","evennia.server.deprecations","evennia.server.evennia_launcher","evennia.server.game_index_client","evennia.server.game_index_client.client","evennia.server.game_index_client.service","evennia.server.initial_setup","evennia.server.inputfuncs","evennia.server.manager","evennia.server.models","evennia.server.portal","evennia.server.portal.amp","evennia.server.portal.amp_server","evennia.server.portal.grapevine","evennia.server.portal.irc","evennia.server.portal.mccp","evennia.server.portal.mssp","evennia.server.portal.mxp","evennia.server.portal.naws","evennia.server.portal.portal","evennia.server.portal.portalsessionhandler","evennia.server.portal.rss","evennia.server.portal.ssh","evennia.server.portal.ssl","evennia.server.portal.suppress_ga","evennia.server.portal.telnet","evennia.server.portal.telnet_oob","evennia.server.portal.telnet_ssl","evennia.server.portal.tests","evennia.server.portal.ttype","evennia.server.portal.webclient","evennia.server.portal.webclient_ajax","evennia.server.profiling","evennia.server.profiling.dummyrunner","evennia.server.profiling.dummyrunner_settings","evennia.server.profiling.memplot","evennia.server.profiling.settings_mixin","evennia.server.profiling.test_queries","evennia.server.profiling.tests","evennia.server.profiling.timetrace","evennia.server.server","evennia.server.serversession","evennia.server.session","evennia.server.sessionhandler","evennia.server.signals","evennia.server.throttle","evennia.server.validators","evennia.server.webserver","evennia.settings_default","evennia.typeclasses","evennia.typeclasses.admin","evennia.typeclasses.attributes","evennia.typeclasses.managers","evennia.typeclasses.models","evennia.typeclasses.tags","evennia.utils","evennia.utils.ansi","evennia.utils.batchprocessors","evennia.utils.containers","evennia.utils.create","evennia.utils.dbserialize","evennia.utils.eveditor","evennia.utils.evform","evennia.utils.evmenu","evennia.utils.evmore","evennia.utils.evtable","evennia.utils.gametime","evennia.utils.idmapper","evennia.utils.idmapper.manager","evennia.utils.idmapper.models","evennia.utils.idmapper.tests","evennia.utils.inlinefuncs","evennia.utils.logger","evennia.utils.optionclasses","evennia.utils.optionhandler","evennia.utils.picklefield","evennia.utils.search","evennia.utils.test_resources","evennia.utils.text2html","evennia.utils.utils","evennia.utils.validatorfuncs","evennia.web","evennia.web.api","evennia.web.api.filters","evennia.web.api.permissions","evennia.web.api.serializers","evennia.web.api.tests","evennia.web.api.urls","evennia.web.api.views","evennia.web.urls","evennia.web.utils","evennia.web.utils.backends","evennia.web.utils.general_context","evennia.web.utils.middleware","evennia.web.utils.tests","evennia.web.webclient","evennia.web.webclient.urls","evennia.web.webclient.views","evennia.web.website","evennia.web.website.forms","evennia.web.website.templatetags","evennia.web.website.templatetags.addclass","evennia.web.website.tests","evennia.web.website.urls","evennia.web.website.views","Evennia Documentation","Toc"],titleterms:{"break":101,"case":66,"class":[8,19,22,45,68,86,103,104,107],"default":[30,31,46,76,81,84,87,104,105,146,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181],"final":[71,141],"function":[3,31,34,37,62,68,75,106,108],"goto":27,"import":[0,4,74,86,102,106,107],"new":[6,8,37,45,58,62,79,90,92,103,104,115,128,148],"public":[135,147],"return":[27,40,101,106],"static":[72,229],"super":[51,105],"switch":86,"try":86,Adding:[20,30,43,53,58,66,67,79,81,85,86,87,99,105,125,128,229],And:[36,78],Going:147,PMs:90,TLS:132,The:[0,5,13,14,15,26,27,42,48,50,51,56,64,68,69,70,71,83,86,90,92,93,96,109,113,114,115,146,148],Use:[0,145],Using:[5,8,10,28,32,42,43,58,63,65,71,93,99,142,229],Yes:27,__init__:[102,104],_famili:101,abort:83,about:[4,9,44,45,83,105,107],absolut:102,abus:49,access:52,access_typ:31,account:[6,12,77,90,100,153,154,155,156,157,158,166],activ:[89,128],actual:[22,45],add:[79,81,115,133],add_choic:68,addclass:381,adding:8,addit:[67,85,86,87,144],address:81,admin:[6,64,77,155,167,183,252,259,269,278,330],advanc:[1,33,75,83,105,149],affect:256,aggress:122,alia:6,alias:[43,108],all:[81,92,104],alpha:110,altern:[7,67],amp:291,amp_client:279,amp_serv:292,analyz:5,android:141,ani:[14,76],annot:101,anoth:[74,86,105],ansi:[19,62,126,336],apach:132,api:[4,46,74,75,102,362,363,364,365,366,367,368],app:[92,128],arbitrari:27,area:[72,114],arg:97,arg_regex:22,argument:[27,97,104,106],arm:80,around:99,arx:67,arxcod:67,ascii:19,ask:[22,27],assign:[22,51],assort:[15,20,22,27,43,48,53,123],async:48,asynchron:48,at_object_cr:104,attach:[7,41],attack:114,attribut:[6,13,77,104,108,331],attributehandl:13,audit:[221,222,223,224],auto:29,automat:81,avail:[25,41],awai:1,aws_s3_cdn:190,awsstorag:[189,190,191],backend:371,ban:49,barter:192,base:[42,81,113],basic:[8,14,15,76,79,114,116,139],batch:[14,15,16,337],batchcod:14,batchprocess:168,batchprocessor:337,befor:0,best:97,beta:110,between:[14,27,45],blank:134,block:[14,74,83],blockquot:74,bodyfunct:238,bold:74,boot:49,bootstrap:[17,50],border:17,bot:156,branch:[11,27],brief:[76,92],briefli:59,bug:[6,74],build:[51,68,71,72,74,80,90,96,99,110,169],builder:69,building_menu:[68,193],busi:96,button:[17,99],calendar:91,call:[22,104],callback:[46,66,70],callbackhandl:205,caller:27,can:[13,68,76,107,108,138],capcha:128,card:17,care:145,caveat:[14,15,45,62,141],certain:101,chang:[6,9,11,55,60,66,74,81,90,104,116,145],channel:[18,23,77,81,86,90],channelhandl:184,charact:[34,70,77,81,90,95,104,110,112,114,128,129,134],chargen:[114,194],cheat:3,check:[13,31],checker:0,checkpoint:128,children:107,choic:68,choos:133,clean:67,clickabl:62,client:[46,56,59,64,117,134,142,284],client_opt:30,clone:[11,67],cloth:195,cloud9:142,cmdhandler:160,cmdparser:161,cmdset:[98,105,162],cmdset_account:170,cmdset_charact:171,cmdset_red_button:239,cmdset_sess:172,cmdset_unloggedin:173,cmdsethandl:163,code:[0,1,3,9,11,14,19,26,33,60,68,74,81,86,96,98,106,110,112,132,337],collabor:89,color:[17,19,81,94,126],color_markup:196,colour:62,combat:[113,114],comfort:144,comm:[174,182,183,184,185,186,187],command:[3,6,8,15,20,21,22,24,25,29,59,68,75,81,82,83,84,86,87,90,91,94,96,97,98,103,104,105,106,113,114,117,125,139,144,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,206,337],comment:[71,87,107],commit:11,commun:[14,23],complet:31,complex:[68,101],compon:[17,24,38],comput:142,concept:[1,52,71,113],conclud:[85,114],conclus:[68,72,86,97,101,104,106],condit:81,conf:[39,103],config:[75,94,132,138],configur:[7,11,94,128,132,133,137,139,140,143,147],congratul:110,connect:[6,25,135,139,142],connection_wizard:280,contain:[144,338],content:[76,81],continu:2,contrib:[8,68,73,111,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250],contribut:[69,73,74,75],control:11,convert:97,cooldown:82,coordin:85,copi:132,core:[24,52,75,77,88],counter:229,cprofil:5,creat:[2,6,12,19,22,34,45,49,58,66,72,75,80,92,93,98,99,100,104,106,114,115,125,128,144,339],create_object:104,createnpc:114,creatur:144,credit:[104,109],crop:19,current:[3,91],custom:[8,27,31,40,46,48,53,61,64,68,79,86,89,91,94,98,147],custom_gametim:197,data:[7,13,27,40,53],databas:[6,9,24,29,42,58,67,75,101,104],dbref:108,dbserial:340,deal:37,debug:[3,14,145],debugg:7,decor:[27,48],dedent:19,dedic:128,deep:93,defaultobject:6,defin:[11,20,22,23,27,31,37,58],definit:31,delai:[19,48,83],delimit:81,demo:110,depend:[9,67],deploi:144,deprec:[74,281],desc:27,descer:89,descript:144,design:96,detail:[92,128],develop:[1,8,89,131,144,145,149],dialogu:70,dice:[90,198],dictionari:27,differ:[45,88],diku:88,dir:[103,117,147],direct:7,directori:[39,142],disabl:145,discuss:131,displai:[19,71,91,134],dive:93,django:[31,64,77,101,128,149],doc:[0,74],docker:144,docstr:107,document:[63,73,74,385],don:[14,76,144],donat:73,done:109,down:[99,125,149],dummyrunn:[5,313],dummyrunner_set:314,durat:83,dure:149,dynam:[22,27,71],each:108,echo:30,edit:[26,68,74,114],editnpc:114,editor:[26,117],effect:256,elev:66,email_login:199,emul:88,encod:[16,61],encrypt:142,end:86,enjoi:132,enough:109,enter:[125,134],entir:66,entit:24,entri:[29,99],error:[37,87,98,106,149],eveditor:[26,341],evennia:[0,3,4,7,8,9,11,42,46,50,55,65,67,74,76,79,81,86,88,89,90,97,102,106,118,119,120,121,126,131,132,133,135,138,139,141,142,144,146,149,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,256,257,258,259,260,261,262,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,303,304,305,306,307,308,309,310,311,312,313,314,315,316,317,318,319,320,321,322,323,324,325,326,327,328,329,330,331,332,333,334,335,336,337,338,339,340,341,342,343,344,345,346,347,348,349,350,351,352,353,354,355,356,357,358,359,360,361,362,363,364,365,366,367,368,369,370,371,372,373,374,375,376,377,378,379,380,381,382,383,384,385],evennia_launch:282,evenniatest:8,event:[66,70,91],eventfunc:207,everi:84,everyth:68,evform:[90,342],evmenu:[27,81,343],evmor:[28,344],evtabl:[81,90,345],examin:[3,104],exampl:[3,8,26,27,31,37,46,60,70,85,102,112,113,142,337],example_batch_cod:240,execut:3,exist:45,exit:[22,34,66,81,87],expand:[113,125,229],explan:68,explor:[0,102],extend:52,extended_room:200,extern:145,extra:[104,109],familiar:[88,89],faq:[81,93],faster:8,featur:[52,64,74,76,92],feel:88,field:[77,101],fieldfil:201,figur:98,file:[8,11,14,15,16,39,74,146,337],fill:19,filter:363,find:[1,85,106,108],firewal:145,first:[66,68,70,89,104,106],fix:11,flat:4,flexibl:74,folder:[0,11,67,151,159,188,220,277,335,361,378],foreground:149,forget:6,fork:[11,73],form:[17,128,379],format:27,forum:131,framework:131,from:[4,27,46,76,79,81,99,106,128,142,144],front:116,full:[68,86,92],func:86,further:[48,116,132],futur:80,game:[0,8,9,11,19,69,71,72,76,85,89,90,91,99,103,110,112,114,117,124,135,142,144,147,148],game_index_cli:[283,284,285],gamedir:74,gameplai:109,gametim:[91,346],gaug:229,gendersub:202,gener:[17,52,68,86,114,128,131,175],general_context:372,get:[27,78,93,99,101,136],get_client_opt:30,get_input:27,get_inputfunc:30,get_valu:30,git:[11,77],github:[74,77],give:78,given:43,global:[37,75,97],glossari:77,gmcp:59,godhood:99,goldenlayout:46,good:107,googl:128,grant:90,grapevin:[137,293],graphic:106,grid:[71,134],group:101,guest:54,guid:67,had:109,handl:[49,92,145,149],handler:[41,75,113],haproxi:138,have:[93,107,114,117],head:74,health_bar:203,hello:106,help:[0,1,29,67,73,78,92,99,176,251,252,253,254],here:[0,76],hierarchi:90,hint:[109,132],hit:98,hold:105,hook:45,host:142,hous:99,how:[12,22,34,45,61,78,90,93,125,139,144],howto:93,html:[115,128],http:[132,138],idmapp:[347,348,349,350],imag:[144,145],implement:112,improv:92,index:[92,128,135],info:[131,149],inform:142,infrastructur:112,ingame_python:[204,205,206,207,208,209,210,211],ingo:56,inherit:[65,107],inherits_from:19,initi:[81,113,133,148],initial_setup:286,inlin:62,inlinefunc:[62,351],input:[22,27,59,106],inputfunc:[30,56,59,287],instal:[11,67,79,128,132,133,136,139,141,142,144,147,148],instanc:[22,45,58,107],instruct:59,integr:2,interact:[0,14,15,48,106],interfac:145,internation:55,interpret:7,introduct:[0,5,27,67,71,72,76,128],inventori:95,ipython:106,irc:[140,294],issu:134,ital:74,join:86,jumbotron:17,just:76,kei:[27,42,68,108,134],keyword:[70,104],kill:149,know:[76,145],known:6,languag:55,last:81,latest:[9,144],latin:81,launch:[26,27],layout:[50,86],learn:[0,76],leav:[86,125],legend:134,lesson:[117,118],let:[3,14,92,142],librari:102,licens:130,life:147,lift:49,like:[14,88,114],limit:[14,15],line:[3,26,80,101,106,117,134],link:[62,74,131],linux:[2,136,149],list:[3,74,104,105],list_nod:27,listen:123,literatur:131,live:149,local:[74,97,142],locat:108,lock:[13,31,105,125,255,256,257],lockdown:142,lockfunc:256,lockhandl:257,log:[19,67,92,103,106,145,148],logfil:7,logger:352,login:[30,54],logo:116,longer:70,look:[88,99,114],lookup:[75,101],loop:104,mac:[136,149],machin:142,magic:6,mail:[11,212],main:[74,75,108,385],make:[8,11,19,80,89,90,98,99,104,106,114,125],manag:[46,79,157,186,253,260,270,288,332,348],manual:[94,135],map:[69,71,72],mapbuild:213,mapper:71,mariadb:133,mass:95,master:[11,90],match:[6,105],mccp:295,mech:80,memplot:315,menu:[19,27,68,69,96,264],menu_login:214,merg:20,messag:[56,59,66,81],messagepath:56,method:[6,22,86,94,104,106],middlewar:373,migrat:[9,77,79],mind:11,mini:8,minimap:72,mirror:241,mob:[93,246],mod_proxi:132,mod_ssl:132,mod_wsgi:132,mode:[14,15,40,57,77,142,149],model:[8,58,75,128,158,187,254,261,271,289,333,349],modif:90,modifi:[84,104,132],modul:[42,106,112,113,139,151,153,159,165,182,188,189,204,221,231,237,245,251,255,258,263,268,277,283,290,312,329,335,347,361,362,370,375,378,380],monitor:30,monitorhandl:[32,272],more:[9,31,50,64,74,75,83,89,94,105],most:0,move:[81,125],msdp:59,msg:[23,56,94],mssp:296,mud:[117,131],multi:[89,105,106,107],multidesc:[89,215],multipl:13,multisess:[40,57,77],mush:[89,114],mutabl:[6,13],mux:[63,256],muxcommand:177,mxp:297,mysql:133,name:[6,49,59,104,256],naw:298,ndb:13,need:[66,76,105,117],nest:68,network:24,next:[89,136,139,148],nice:138,nick:33,node:27,non:[13,81,82,135],nop:134,note:[8,15,16,20,22,27,33,43,48,53,74,123,132],npc:[93,96,114,122,123],number:97,object:[6,13,19,31,34,40,43,72,77,81,95,99,100,101,104,105,106,107,108,110,125,247,258,259,260,261,262],obtain:128,off:81,offici:131,olc:42,older:46,onc:109,one:85,onli:[74,101,149],onlin:[11,74,142],oob:59,oop:107,open:96,oper:[48,66],option:[27,68,90,97,138,142,145,149],optionclass:353,optionhandl:354,other:[22,39,106,108,131,133,142],our:[60,66,68,92,98,104,106,125,128],ourselv:104,out:[53,90,98],outgo:56,output:222,outputcommand:59,outputfunc:[35,59],outsid:142,overal:112,overload:[45,64,94],overrid:6,overview:[2,58,102,103,113,116],own:[12,22,30,34,46,53,98,106,142,144,229],packag:[151,159,188,220,277,335,361,378],page:[64,79,92,115,116],parent:[58,89],pars:[81,86,97,105,106],part3:93,part:[93,117,118,119,120,121],parti:131,pass:106,patch:73,path:[14,56,103],paus:[22,66,83],pax:67,pdb:3,percentag:229,permiss:[31,43,51,90,364],perpetu:110,persist:[13,26,82,83,98,104],person:99,picklefield:355,pictur:128,pip:[77,79],plai:138,plan:[0,72,110],player:89,plugin:46,point:0,polici:63,port:[142,145],portal:[36,40,56,290,291,292,293,294,295,296,297,298,299,300,301,302,303,304,305,306,307,308,309,310,311],portalsess:56,portalsessionhandl:[56,300],postgresql:133,practic:97,prepar:2,prerequisit:141,press:134,prevent:81,privileg:79,problem:60,process:[48,52,149],processor:[14,15,16,337],product:[80,144],profil:[5,312,313,314,315,316,317,318,319],program:[3,76],project:[2,7],prompt:[27,84],properti:[12,13,20,22,23,27,34,37,40,43,45,77,101],protfunc:[42,265],protocol:[53,59,76],prototyp:[42,263,264,265,266,267],proxi:[132,142],publicli:11,pudb:3,puppet:77,push:[11,99],put:[11,92],puzzl:216,pycharm:7,python:[0,14,69,76,89,103,106,107,131,139],quell:[31,51,105],queri:[45,101,104],queryset:[101,108],quick:[2,136],quickli:138,quickstart:148,quiet:97,quirk:6,random_string_gener:217,rate:229,read:[0,48,64,116],real:14,reboot:149,recapcha:128,receiv:[53,59],red_button:242,red_button_script:243,refer:[74,81],regist:142,rel:[102,108],relat:[91,93],releas:[74,110],relev:142,reli:14,reload:[6,81,107,132,149],remark:114,rememb:[4,74,107],remind:92,remot:[11,142],remov:[43,81,105],repeat:[27,30],replac:105,repo:67,report:74,repositori:[0,11,73,74,77],request:74,requir:136,reset:[9,149],reshuffl:99,resourc:131,rest:74,restart:[132,148],retriev:13,role:90,roleplai:90,roller:90,rom:88,room:[34,66,71,81,85,90,95,110,248],rplanguag:218,rpsystem:219,rss:[143,301],rule:[20,112,113],run:[3,7,8,22,76,79,141,144,147],runner:8,safeti:14,same:[27,70],save:13,schema:9,score:114,screen:25,script:[37,77,125,208,268,269,270,271,272,273,274,275,276],scripthandl:273,search:[19,20,43,58,75,85,97,108,356],secret:128,section:385,secur:[132,138,145,220,221,222,223,224],see:[6,92,148],select:81,self:97,send:[53,59,84,106,134],sent:84,separ:68,serial:365,server:[24,36,38,39,40,52,55,103,114,132,133,142,147,148,223,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,303,304,305,306,307,308,309,310,311,312,313,314,315,316,317,318,319,320,321,322,323,324,325,326,327],serverconf:39,serversess:[56,321],serversessionhandl:56,servic:285,session:[40,56,77,81,90,322],sessionhandl:[40,323],set:[1,7,8,11,20,27,31,39,67,71,79,91,94,104,114,117,135,137,140,142,143,145,146],setpow:114,settings_default:328,settings_mixin:316,setup:[2,67,132,133,142,147,148],sever:[70,85,97],share:11,sharedmemorymodel:58,sheet:[3,90],shop:96,shortcut:[13,75],show:[93,114],shut:149,sidebar:74,signal:[41,324],simpl:[3,5,8,27,31,68,83,115],simpledoor:225,singl:13,singleton:75,site:[64,77],sitekei:128,slow_exit:226,soft:60,softcod:[60,89],solut:60,some:[85,86,88,106,111],somewher:76,sourc:[7,74],space:[17,104],spawn:[42,89],spawner:[42,267],special:74,splithandl:46,spread:73,spuriou:134,sql:[101,133],sqlite3:133,ssh:[59,145,302],ssl:[142,303],standard:[63,76,91],start:[0,67,90,93,96,106,117,118,119,120,121,136,144,148,149],stat:124,statement:98,statu:149,step:[3,11,67,89,99,110,128,137,139,140,141,143,148],stop:[148,149],storag:27,store:[13,27,42,81],string:[31,97],strip:97,structur:74,studi:66,stuff:[76,99,114],style:17,sub:68,subclass:34,suit:8,summari:[49,75,76,98,105,107,108],superus:31,support:[59,76,134],suppress_ga:304,surround:3,swap:45,sword:105,synchron:48,syntax:[0,74,89,149,337],syscommand:178,system:[21,22,29,31,50,92,93,110,112,113,114,179],tabl:[19,58,74,81],tag:[43,85,108,126,334],talking_npc:227,taskhandl:275,tb_basic:232,tb_equip:233,tb_item:234,tb_magic:235,tb_rang:236,teamciti:2,tech:110,technic:[74,76],telnet:[59,134,142,305],telnet_oob:306,telnet_ssl:307,templat:[2,92,128],templatetag:[380,381],tempmsg:23,temporari:27,term:107,termux:141,test:[5,8,76,106,114,180,191,209,224,244,308,318,350,366,374,382],test_queri:317,test_resourc:357,test_trait:228,text2html:358,text:[19,27,30,52,61,62,74,106,116],texttag:62,theori:97,thi:[86,92],thing:[4,74,88,89,100,104,107,108,117],third:131,throttl:325,through:[3,73,144],ticker:[44,77],tickerhandl:[44,276],tie:90,time:[19,22,37,60,91],time_format:19,timer:5,timetrac:319,tip:11,to_byt:19,to_str:19,toc:386,togeth:[92,138],tool:[19,24,49,131],traceback:0,track:11,train:125,trait:229,translat:55,travi:10,treat:14,tree_select:230,trick:11,troubleshoot:[136,141],ttype:309,tupl:[104,105],turn:[6,81,113],turnbattl:[231,232,233,234,235,236],tutori:[0,8,66,69,70,80,91,92,93,96,109,113,114,116,117,118,119,120,121,122,123,124,125,127,129],tutorial_exampl:[237,238,239,240,241,242,243,244],tutorial_world:[245,246,247,248],tweet:[124,139],twist:77,twitter:139,type:[12,13,34,229],typeclass:[6,45,65,75,77,89,94,98,103,104,108,210,229,329,330,331,332,333,334],under:11,understand:126,ungm:90,unimpl:150,uninstal:109,unit:8,unixcommand:249,unloggedin:181,unmonitor:30,unquel:105,unrepeat:30,updat:[9,11,45,81,104],upgrad:9,upload:145,upstream:[6,11],url:[79,92,115,128,367,369,376,383],usag:[14,15,26],use:[6,44,76],used:[22,81],useful:[22,111,131],user:[11,22,51,88,89,92,145],using:[3,8,66,104,108],util:[7,17,19,22,24,75,83,131,211,335,336,337,338,339,340,341,342,343,344,345,346,347,348,349,350,351,352,353,354,355,356,357,358,359,360,370,371,372,373,374],valid:[31,326],validatorfunc:360,valu:[27,42],variabl:3,vehicl:[93,125],verbatim:74,version:[11,74],versu:48,vhost:132,view:[29,64,92,115,128,129,368,377,384],virtualenv:77,voic:66,wai:[1,27,83,105,106],want:[76,93,144],warn:74,weather:127,web:[6,46,52,59,64,93,103,115,116,128,129,142,145,361,362,363,364,365,366,367,368,369,370,371,372,373,374,375,376,377,378,379,380,381,382,383,384],webclient:[46,310,375,376,377],webclient_ajax:311,webclient_gui:46,webserv:[47,145,327],websit:[64,79,378,379,380,381,382,383,384],websocket:[132,138],weight:95,werewolf:101,what:[2,13,50,76,86,93,97,107,108,117,144],when:[4,44,81],where:[76,102,136],who:[22,98],wiki:79,wilder:250,willing:76,window:[67,136],wizard:135,won:134,word:73,work:[11,22,45,76,92,97,125,144],workaround:134,workflow:1,world:[69,93,99,103,106,109,110],write:[8,46,53],xterm256:[62,126],yield:[27,83],you:[0,76,105,109,117],your:[0,1,6,9,11,12,22,30,34,46,51,53,58,60,79,85,98,99,103,128,142,144,145,229],yourself:[99,110],zone:65}}) \ No newline at end of file +Search.setIndex({docnames:["Coding/Coding-Introduction","Coding/Coding-Overview","Coding/Continuous-Integration","Coding/Debugging","Coding/Flat-API","Coding/Profiling","Coding/Quirks","Coding/Setting-up-PyCharm","Coding/Unit-Testing","Coding/Updating-Your-Game","Coding/Using-Travis","Coding/Version-Control","Components/Accounts","Components/Attributes","Components/Batch-Code-Processor","Components/Batch-Command-Processor","Components/Batch-Processors","Components/Bootstrap-Components-and-Utilities","Components/Channels","Components/Coding-Utils","Components/Command-Sets","Components/Command-System","Components/Commands","Components/Communications","Components/Components-Overview","Components/Connection-Screen","Components/EvEditor","Components/EvMenu","Components/EvMore","Components/Help-System","Components/Inputfuncs","Components/Locks","Components/MonitorHandler","Components/Nicks","Components/Objects","Components/Outputfuncs","Components/Portal-And-Server","Components/Scripts","Components/Server","Components/Server-Conf","Components/Sessions","Components/Signals","Components/Spawner-and-Prototypes","Components/Tags","Components/TickerHandler","Components/Typeclasses","Components/Webclient","Components/Webserver","Concepts/Async-Process","Concepts/Banning","Concepts/Bootstrap-&-Evennia","Concepts/Building-Permissions","Concepts/Concepts-Overview","Concepts/Custom-Protocols","Concepts/Guest-Logins","Concepts/Internationalization","Concepts/Messagepath","Concepts/Multisession-modes","Concepts/New-Models","Concepts/OOB","Concepts/Soft-Code","Concepts/Text-Encodings","Concepts/TextTags","Concepts/Using-MUX-as-a-Standard","Concepts/Web-Features","Concepts/Zones","Contribs/A-voice-operated-elevator-using-events","Contribs/Arxcode-installing-help","Contribs/Building-menus","Contribs/Contrib-Overview","Contribs/Dialogues-in-events","Contribs/Dynamic-In-Game-Map","Contribs/Static-In-Game-Map","Contributing","Contributing-Docs","Evennia-API","Evennia-Introduction","Glossary","How-To-Get-And-Give-Help","Howto/Add-a-wiki-on-your-website","Howto/Building-a-mech-tutorial","Howto/Coding-FAQ","Howto/Command-Cooldown","Howto/Command-Duration","Howto/Command-Prompt","Howto/Coordinates","Howto/Customize-channels","Howto/Default-Exit-Errors","Howto/Evennia-for-Diku-Users","Howto/Evennia-for-MUSH-Users","Howto/Evennia-for-roleplaying-sessions","Howto/Gametime-Tutorial","Howto/Help-System-Tutorial","Howto/Howto-Overview","Howto/Manually-Configuring-Color","Howto/Mass-and-weight-for-objects","Howto/NPC-shop-Tutorial","Howto/Parsing-commands-tutorial","Howto/Starting/Part1/Adding-Commands","Howto/Starting/Part1/Building-Quickstart","Howto/Starting/Part1/Creating-Things","Howto/Starting/Part1/Django-queries","Howto/Starting/Part1/Evennia-Library-Overview","Howto/Starting/Part1/Gamedir-Overview","Howto/Starting/Part1/Learning-Typeclasses","Howto/Starting/Part1/More-on-Commands","Howto/Starting/Part1/Python-basic-introduction","Howto/Starting/Part1/Python-classes-and-objects","Howto/Starting/Part1/Searching-Things","Howto/Starting/Part1/Tutorial-World-Introduction","Howto/Starting/Part2/Game-Planning","Howto/Starting/Part2/Planning-Some-Useful-Contribs","Howto/Starting/Part2/Planning-The-Tutorial-Game","Howto/Starting/Part3/A-Sittable-Object","Howto/Starting/Part3/Implementing-a-game-rule-system","Howto/Starting/Part3/Turn-based-Combat-System","Howto/Starting/Part3/Tutorial-for-basic-MUSH-like-game","Howto/Starting/Part5/Add-a-simple-new-web-page","Howto/Starting/Part5/Web-Tutorial","Howto/Starting/Starting-Part1","Howto/Starting/Starting-Part2","Howto/Starting/Starting-Part3","Howto/Starting/Starting-Part4","Howto/Starting/Starting-Part5","Howto/Tutorial-Aggressive-NPCs","Howto/Tutorial-NPCs-listening","Howto/Tutorial-Tweeting-Game-Stats","Howto/Tutorial-Vehicles","Howto/Understanding-Color-Tags","Howto/Weather-Tutorial","Howto/Web-Character-Generation","Howto/Web-Character-View-Tutorial","Licensing","Links","Setup/Apache-Config","Setup/Choosing-An-SQL-Server","Setup/Client-Support-Grid","Setup/Evennia-Game-Index","Setup/Extended-Installation","Setup/Grapevine","Setup/HAProxy-Config","Setup/How-to-connect-Evennia-to-Twitter","Setup/IRC","Setup/Installing-on-Android","Setup/Online-Setup","Setup/RSS","Setup/Running-Evennia-in-Docker","Setup/Security","Setup/Settings-File","Setup/Setup-Overview","Setup/Setup-Quickstart","Setup/Start-Stop-Reload","Unimplemented","api/evennia","api/evennia-api","api/evennia.accounts","api/evennia.accounts.accounts","api/evennia.accounts.admin","api/evennia.accounts.bots","api/evennia.accounts.manager","api/evennia.accounts.models","api/evennia.commands","api/evennia.commands.cmdhandler","api/evennia.commands.cmdparser","api/evennia.commands.cmdset","api/evennia.commands.cmdsethandler","api/evennia.commands.command","api/evennia.commands.default","api/evennia.commands.default.account","api/evennia.commands.default.admin","api/evennia.commands.default.batchprocess","api/evennia.commands.default.building","api/evennia.commands.default.cmdset_account","api/evennia.commands.default.cmdset_character","api/evennia.commands.default.cmdset_session","api/evennia.commands.default.cmdset_unloggedin","api/evennia.commands.default.comms","api/evennia.commands.default.general","api/evennia.commands.default.help","api/evennia.commands.default.muxcommand","api/evennia.commands.default.syscommands","api/evennia.commands.default.system","api/evennia.commands.default.tests","api/evennia.commands.default.unloggedin","api/evennia.comms","api/evennia.comms.admin","api/evennia.comms.channelhandler","api/evennia.comms.comms","api/evennia.comms.managers","api/evennia.comms.models","api/evennia.contrib","api/evennia.contrib.awsstorage","api/evennia.contrib.awsstorage.aws_s3_cdn","api/evennia.contrib.awsstorage.tests","api/evennia.contrib.barter","api/evennia.contrib.building_menu","api/evennia.contrib.chargen","api/evennia.contrib.clothing","api/evennia.contrib.color_markups","api/evennia.contrib.custom_gametime","api/evennia.contrib.dice","api/evennia.contrib.email_login","api/evennia.contrib.extended_room","api/evennia.contrib.fieldfill","api/evennia.contrib.gendersub","api/evennia.contrib.health_bar","api/evennia.contrib.ingame_python","api/evennia.contrib.ingame_python.callbackhandler","api/evennia.contrib.ingame_python.commands","api/evennia.contrib.ingame_python.eventfuncs","api/evennia.contrib.ingame_python.scripts","api/evennia.contrib.ingame_python.tests","api/evennia.contrib.ingame_python.typeclasses","api/evennia.contrib.ingame_python.utils","api/evennia.contrib.mail","api/evennia.contrib.mapbuilder","api/evennia.contrib.menu_login","api/evennia.contrib.multidescer","api/evennia.contrib.puzzles","api/evennia.contrib.random_string_generator","api/evennia.contrib.rplanguage","api/evennia.contrib.rpsystem","api/evennia.contrib.security","api/evennia.contrib.security.auditing","api/evennia.contrib.security.auditing.outputs","api/evennia.contrib.security.auditing.server","api/evennia.contrib.security.auditing.tests","api/evennia.contrib.simpledoor","api/evennia.contrib.slow_exit","api/evennia.contrib.talking_npc","api/evennia.contrib.test_traits","api/evennia.contrib.traits","api/evennia.contrib.tree_select","api/evennia.contrib.turnbattle","api/evennia.contrib.turnbattle.tb_basic","api/evennia.contrib.turnbattle.tb_equip","api/evennia.contrib.turnbattle.tb_items","api/evennia.contrib.turnbattle.tb_magic","api/evennia.contrib.turnbattle.tb_range","api/evennia.contrib.tutorial_examples","api/evennia.contrib.tutorial_examples.bodyfunctions","api/evennia.contrib.tutorial_examples.cmdset_red_button","api/evennia.contrib.tutorial_examples.example_batch_code","api/evennia.contrib.tutorial_examples.mirror","api/evennia.contrib.tutorial_examples.red_button","api/evennia.contrib.tutorial_examples.red_button_scripts","api/evennia.contrib.tutorial_examples.tests","api/evennia.contrib.tutorial_world","api/evennia.contrib.tutorial_world.mob","api/evennia.contrib.tutorial_world.objects","api/evennia.contrib.tutorial_world.rooms","api/evennia.contrib.unixcommand","api/evennia.contrib.wilderness","api/evennia.help","api/evennia.help.admin","api/evennia.help.manager","api/evennia.help.models","api/evennia.locks","api/evennia.locks.lockfuncs","api/evennia.locks.lockhandler","api/evennia.objects","api/evennia.objects.admin","api/evennia.objects.manager","api/evennia.objects.models","api/evennia.objects.objects","api/evennia.prototypes","api/evennia.prototypes.menus","api/evennia.prototypes.protfuncs","api/evennia.prototypes.prototypes","api/evennia.prototypes.spawner","api/evennia.scripts","api/evennia.scripts.admin","api/evennia.scripts.manager","api/evennia.scripts.models","api/evennia.scripts.monitorhandler","api/evennia.scripts.scripthandler","api/evennia.scripts.scripts","api/evennia.scripts.taskhandler","api/evennia.scripts.tickerhandler","api/evennia.server","api/evennia.server.admin","api/evennia.server.amp_client","api/evennia.server.connection_wizard","api/evennia.server.deprecations","api/evennia.server.evennia_launcher","api/evennia.server.game_index_client","api/evennia.server.game_index_client.client","api/evennia.server.game_index_client.service","api/evennia.server.initial_setup","api/evennia.server.inputfuncs","api/evennia.server.manager","api/evennia.server.models","api/evennia.server.portal","api/evennia.server.portal.amp","api/evennia.server.portal.amp_server","api/evennia.server.portal.grapevine","api/evennia.server.portal.irc","api/evennia.server.portal.mccp","api/evennia.server.portal.mssp","api/evennia.server.portal.mxp","api/evennia.server.portal.naws","api/evennia.server.portal.portal","api/evennia.server.portal.portalsessionhandler","api/evennia.server.portal.rss","api/evennia.server.portal.ssh","api/evennia.server.portal.ssl","api/evennia.server.portal.suppress_ga","api/evennia.server.portal.telnet","api/evennia.server.portal.telnet_oob","api/evennia.server.portal.telnet_ssl","api/evennia.server.portal.tests","api/evennia.server.portal.ttype","api/evennia.server.portal.webclient","api/evennia.server.portal.webclient_ajax","api/evennia.server.profiling","api/evennia.server.profiling.dummyrunner","api/evennia.server.profiling.dummyrunner_settings","api/evennia.server.profiling.memplot","api/evennia.server.profiling.settings_mixin","api/evennia.server.profiling.test_queries","api/evennia.server.profiling.tests","api/evennia.server.profiling.timetrace","api/evennia.server.server","api/evennia.server.serversession","api/evennia.server.session","api/evennia.server.sessionhandler","api/evennia.server.signals","api/evennia.server.throttle","api/evennia.server.validators","api/evennia.server.webserver","api/evennia.settings_default","api/evennia.typeclasses","api/evennia.typeclasses.admin","api/evennia.typeclasses.attributes","api/evennia.typeclasses.managers","api/evennia.typeclasses.models","api/evennia.typeclasses.tags","api/evennia.utils","api/evennia.utils.ansi","api/evennia.utils.batchprocessors","api/evennia.utils.containers","api/evennia.utils.create","api/evennia.utils.dbserialize","api/evennia.utils.eveditor","api/evennia.utils.evform","api/evennia.utils.evmenu","api/evennia.utils.evmore","api/evennia.utils.evtable","api/evennia.utils.gametime","api/evennia.utils.idmapper","api/evennia.utils.idmapper.manager","api/evennia.utils.idmapper.models","api/evennia.utils.idmapper.tests","api/evennia.utils.inlinefuncs","api/evennia.utils.logger","api/evennia.utils.optionclasses","api/evennia.utils.optionhandler","api/evennia.utils.picklefield","api/evennia.utils.search","api/evennia.utils.test_resources","api/evennia.utils.text2html","api/evennia.utils.utils","api/evennia.utils.validatorfuncs","api/evennia.web","api/evennia.web.api","api/evennia.web.api.filters","api/evennia.web.api.permissions","api/evennia.web.api.serializers","api/evennia.web.api.tests","api/evennia.web.api.urls","api/evennia.web.api.views","api/evennia.web.urls","api/evennia.web.utils","api/evennia.web.utils.backends","api/evennia.web.utils.general_context","api/evennia.web.utils.middleware","api/evennia.web.utils.tests","api/evennia.web.webclient","api/evennia.web.webclient.urls","api/evennia.web.webclient.views","api/evennia.web.website","api/evennia.web.website.forms","api/evennia.web.website.templatetags","api/evennia.web.website.templatetags.addclass","api/evennia.web.website.tests","api/evennia.web.website.urls","api/evennia.web.website.views","index","toc"],envversion:{"sphinx.domains.c":2,"sphinx.domains.changeset":1,"sphinx.domains.citation":1,"sphinx.domains.cpp":3,"sphinx.domains.index":1,"sphinx.domains.javascript":2,"sphinx.domains.math":2,"sphinx.domains.python":2,"sphinx.domains.rst":2,"sphinx.domains.std":1,"sphinx.ext.todo":2,"sphinx.ext.viewcode":1,sphinx:56},filenames:["Coding/Coding-Introduction.md","Coding/Coding-Overview.md","Coding/Continuous-Integration.md","Coding/Debugging.md","Coding/Flat-API.md","Coding/Profiling.md","Coding/Quirks.md","Coding/Setting-up-PyCharm.md","Coding/Unit-Testing.md","Coding/Updating-Your-Game.md","Coding/Using-Travis.md","Coding/Version-Control.md","Components/Accounts.md","Components/Attributes.md","Components/Batch-Code-Processor.md","Components/Batch-Command-Processor.md","Components/Batch-Processors.md","Components/Bootstrap-Components-and-Utilities.md","Components/Channels.md","Components/Coding-Utils.md","Components/Command-Sets.md","Components/Command-System.md","Components/Commands.md","Components/Communications.md","Components/Components-Overview.md","Components/Connection-Screen.md","Components/EvEditor.md","Components/EvMenu.md","Components/EvMore.md","Components/Help-System.md","Components/Inputfuncs.md","Components/Locks.md","Components/MonitorHandler.md","Components/Nicks.md","Components/Objects.md","Components/Outputfuncs.md","Components/Portal-And-Server.md","Components/Scripts.md","Components/Server.md","Components/Server-Conf.md","Components/Sessions.md","Components/Signals.md","Components/Spawner-and-Prototypes.md","Components/Tags.md","Components/TickerHandler.md","Components/Typeclasses.md","Components/Webclient.md","Components/Webserver.md","Concepts/Async-Process.md","Concepts/Banning.md","Concepts/Bootstrap-&-Evennia.md","Concepts/Building-Permissions.md","Concepts/Concepts-Overview.md","Concepts/Custom-Protocols.md","Concepts/Guest-Logins.md","Concepts/Internationalization.md","Concepts/Messagepath.md","Concepts/Multisession-modes.md","Concepts/New-Models.md","Concepts/OOB.md","Concepts/Soft-Code.md","Concepts/Text-Encodings.md","Concepts/TextTags.md","Concepts/Using-MUX-as-a-Standard.md","Concepts/Web-Features.md","Concepts/Zones.md","Contribs/A-voice-operated-elevator-using-events.md","Contribs/Arxcode-installing-help.md","Contribs/Building-menus.md","Contribs/Contrib-Overview.md","Contribs/Dialogues-in-events.md","Contribs/Dynamic-In-Game-Map.md","Contribs/Static-In-Game-Map.md","Contributing.md","Contributing-Docs.md","Evennia-API.md","Evennia-Introduction.md","Glossary.md","How-To-Get-And-Give-Help.md","Howto/Add-a-wiki-on-your-website.md","Howto/Building-a-mech-tutorial.md","Howto/Coding-FAQ.md","Howto/Command-Cooldown.md","Howto/Command-Duration.md","Howto/Command-Prompt.md","Howto/Coordinates.md","Howto/Customize-channels.md","Howto/Default-Exit-Errors.md","Howto/Evennia-for-Diku-Users.md","Howto/Evennia-for-MUSH-Users.md","Howto/Evennia-for-roleplaying-sessions.md","Howto/Gametime-Tutorial.md","Howto/Help-System-Tutorial.md","Howto/Howto-Overview.md","Howto/Manually-Configuring-Color.md","Howto/Mass-and-weight-for-objects.md","Howto/NPC-shop-Tutorial.md","Howto/Parsing-commands-tutorial.md","Howto/Starting/Part1/Adding-Commands.md","Howto/Starting/Part1/Building-Quickstart.md","Howto/Starting/Part1/Creating-Things.md","Howto/Starting/Part1/Django-queries.md","Howto/Starting/Part1/Evennia-Library-Overview.md","Howto/Starting/Part1/Gamedir-Overview.md","Howto/Starting/Part1/Learning-Typeclasses.md","Howto/Starting/Part1/More-on-Commands.md","Howto/Starting/Part1/Python-basic-introduction.md","Howto/Starting/Part1/Python-classes-and-objects.md","Howto/Starting/Part1/Searching-Things.md","Howto/Starting/Part1/Tutorial-World-Introduction.md","Howto/Starting/Part2/Game-Planning.md","Howto/Starting/Part2/Planning-Some-Useful-Contribs.md","Howto/Starting/Part2/Planning-The-Tutorial-Game.md","Howto/Starting/Part3/A-Sittable-Object.md","Howto/Starting/Part3/Implementing-a-game-rule-system.md","Howto/Starting/Part3/Turn-based-Combat-System.md","Howto/Starting/Part3/Tutorial-for-basic-MUSH-like-game.md","Howto/Starting/Part5/Add-a-simple-new-web-page.md","Howto/Starting/Part5/Web-Tutorial.md","Howto/Starting/Starting-Part1.md","Howto/Starting/Starting-Part2.md","Howto/Starting/Starting-Part3.md","Howto/Starting/Starting-Part4.md","Howto/Starting/Starting-Part5.md","Howto/Tutorial-Aggressive-NPCs.md","Howto/Tutorial-NPCs-listening.md","Howto/Tutorial-Tweeting-Game-Stats.md","Howto/Tutorial-Vehicles.md","Howto/Understanding-Color-Tags.md","Howto/Weather-Tutorial.md","Howto/Web-Character-Generation.md","Howto/Web-Character-View-Tutorial.md","Licensing.md","Links.md","Setup/Apache-Config.md","Setup/Choosing-An-SQL-Server.md","Setup/Client-Support-Grid.md","Setup/Evennia-Game-Index.md","Setup/Extended-Installation.md","Setup/Grapevine.md","Setup/HAProxy-Config.md","Setup/How-to-connect-Evennia-to-Twitter.md","Setup/IRC.md","Setup/Installing-on-Android.md","Setup/Online-Setup.md","Setup/RSS.md","Setup/Running-Evennia-in-Docker.md","Setup/Security.md","Setup/Settings-File.md","Setup/Setup-Overview.md","Setup/Setup-Quickstart.md","Setup/Start-Stop-Reload.md","Unimplemented.md","api/evennia.rst","api/evennia-api.rst","api/evennia.accounts.rst","api/evennia.accounts.accounts.rst","api/evennia.accounts.admin.rst","api/evennia.accounts.bots.rst","api/evennia.accounts.manager.rst","api/evennia.accounts.models.rst","api/evennia.commands.rst","api/evennia.commands.cmdhandler.rst","api/evennia.commands.cmdparser.rst","api/evennia.commands.cmdset.rst","api/evennia.commands.cmdsethandler.rst","api/evennia.commands.command.rst","api/evennia.commands.default.rst","api/evennia.commands.default.account.rst","api/evennia.commands.default.admin.rst","api/evennia.commands.default.batchprocess.rst","api/evennia.commands.default.building.rst","api/evennia.commands.default.cmdset_account.rst","api/evennia.commands.default.cmdset_character.rst","api/evennia.commands.default.cmdset_session.rst","api/evennia.commands.default.cmdset_unloggedin.rst","api/evennia.commands.default.comms.rst","api/evennia.commands.default.general.rst","api/evennia.commands.default.help.rst","api/evennia.commands.default.muxcommand.rst","api/evennia.commands.default.syscommands.rst","api/evennia.commands.default.system.rst","api/evennia.commands.default.tests.rst","api/evennia.commands.default.unloggedin.rst","api/evennia.comms.rst","api/evennia.comms.admin.rst","api/evennia.comms.channelhandler.rst","api/evennia.comms.comms.rst","api/evennia.comms.managers.rst","api/evennia.comms.models.rst","api/evennia.contrib.rst","api/evennia.contrib.awsstorage.rst","api/evennia.contrib.awsstorage.aws_s3_cdn.rst","api/evennia.contrib.awsstorage.tests.rst","api/evennia.contrib.barter.rst","api/evennia.contrib.building_menu.rst","api/evennia.contrib.chargen.rst","api/evennia.contrib.clothing.rst","api/evennia.contrib.color_markups.rst","api/evennia.contrib.custom_gametime.rst","api/evennia.contrib.dice.rst","api/evennia.contrib.email_login.rst","api/evennia.contrib.extended_room.rst","api/evennia.contrib.fieldfill.rst","api/evennia.contrib.gendersub.rst","api/evennia.contrib.health_bar.rst","api/evennia.contrib.ingame_python.rst","api/evennia.contrib.ingame_python.callbackhandler.rst","api/evennia.contrib.ingame_python.commands.rst","api/evennia.contrib.ingame_python.eventfuncs.rst","api/evennia.contrib.ingame_python.scripts.rst","api/evennia.contrib.ingame_python.tests.rst","api/evennia.contrib.ingame_python.typeclasses.rst","api/evennia.contrib.ingame_python.utils.rst","api/evennia.contrib.mail.rst","api/evennia.contrib.mapbuilder.rst","api/evennia.contrib.menu_login.rst","api/evennia.contrib.multidescer.rst","api/evennia.contrib.puzzles.rst","api/evennia.contrib.random_string_generator.rst","api/evennia.contrib.rplanguage.rst","api/evennia.contrib.rpsystem.rst","api/evennia.contrib.security.rst","api/evennia.contrib.security.auditing.rst","api/evennia.contrib.security.auditing.outputs.rst","api/evennia.contrib.security.auditing.server.rst","api/evennia.contrib.security.auditing.tests.rst","api/evennia.contrib.simpledoor.rst","api/evennia.contrib.slow_exit.rst","api/evennia.contrib.talking_npc.rst","api/evennia.contrib.test_traits.rst","api/evennia.contrib.traits.rst","api/evennia.contrib.tree_select.rst","api/evennia.contrib.turnbattle.rst","api/evennia.contrib.turnbattle.tb_basic.rst","api/evennia.contrib.turnbattle.tb_equip.rst","api/evennia.contrib.turnbattle.tb_items.rst","api/evennia.contrib.turnbattle.tb_magic.rst","api/evennia.contrib.turnbattle.tb_range.rst","api/evennia.contrib.tutorial_examples.rst","api/evennia.contrib.tutorial_examples.bodyfunctions.rst","api/evennia.contrib.tutorial_examples.cmdset_red_button.rst","api/evennia.contrib.tutorial_examples.example_batch_code.rst","api/evennia.contrib.tutorial_examples.mirror.rst","api/evennia.contrib.tutorial_examples.red_button.rst","api/evennia.contrib.tutorial_examples.red_button_scripts.rst","api/evennia.contrib.tutorial_examples.tests.rst","api/evennia.contrib.tutorial_world.rst","api/evennia.contrib.tutorial_world.mob.rst","api/evennia.contrib.tutorial_world.objects.rst","api/evennia.contrib.tutorial_world.rooms.rst","api/evennia.contrib.unixcommand.rst","api/evennia.contrib.wilderness.rst","api/evennia.help.rst","api/evennia.help.admin.rst","api/evennia.help.manager.rst","api/evennia.help.models.rst","api/evennia.locks.rst","api/evennia.locks.lockfuncs.rst","api/evennia.locks.lockhandler.rst","api/evennia.objects.rst","api/evennia.objects.admin.rst","api/evennia.objects.manager.rst","api/evennia.objects.models.rst","api/evennia.objects.objects.rst","api/evennia.prototypes.rst","api/evennia.prototypes.menus.rst","api/evennia.prototypes.protfuncs.rst","api/evennia.prototypes.prototypes.rst","api/evennia.prototypes.spawner.rst","api/evennia.scripts.rst","api/evennia.scripts.admin.rst","api/evennia.scripts.manager.rst","api/evennia.scripts.models.rst","api/evennia.scripts.monitorhandler.rst","api/evennia.scripts.scripthandler.rst","api/evennia.scripts.scripts.rst","api/evennia.scripts.taskhandler.rst","api/evennia.scripts.tickerhandler.rst","api/evennia.server.rst","api/evennia.server.admin.rst","api/evennia.server.amp_client.rst","api/evennia.server.connection_wizard.rst","api/evennia.server.deprecations.rst","api/evennia.server.evennia_launcher.rst","api/evennia.server.game_index_client.rst","api/evennia.server.game_index_client.client.rst","api/evennia.server.game_index_client.service.rst","api/evennia.server.initial_setup.rst","api/evennia.server.inputfuncs.rst","api/evennia.server.manager.rst","api/evennia.server.models.rst","api/evennia.server.portal.rst","api/evennia.server.portal.amp.rst","api/evennia.server.portal.amp_server.rst","api/evennia.server.portal.grapevine.rst","api/evennia.server.portal.irc.rst","api/evennia.server.portal.mccp.rst","api/evennia.server.portal.mssp.rst","api/evennia.server.portal.mxp.rst","api/evennia.server.portal.naws.rst","api/evennia.server.portal.portal.rst","api/evennia.server.portal.portalsessionhandler.rst","api/evennia.server.portal.rss.rst","api/evennia.server.portal.ssh.rst","api/evennia.server.portal.ssl.rst","api/evennia.server.portal.suppress_ga.rst","api/evennia.server.portal.telnet.rst","api/evennia.server.portal.telnet_oob.rst","api/evennia.server.portal.telnet_ssl.rst","api/evennia.server.portal.tests.rst","api/evennia.server.portal.ttype.rst","api/evennia.server.portal.webclient.rst","api/evennia.server.portal.webclient_ajax.rst","api/evennia.server.profiling.rst","api/evennia.server.profiling.dummyrunner.rst","api/evennia.server.profiling.dummyrunner_settings.rst","api/evennia.server.profiling.memplot.rst","api/evennia.server.profiling.settings_mixin.rst","api/evennia.server.profiling.test_queries.rst","api/evennia.server.profiling.tests.rst","api/evennia.server.profiling.timetrace.rst","api/evennia.server.server.rst","api/evennia.server.serversession.rst","api/evennia.server.session.rst","api/evennia.server.sessionhandler.rst","api/evennia.server.signals.rst","api/evennia.server.throttle.rst","api/evennia.server.validators.rst","api/evennia.server.webserver.rst","api/evennia.settings_default.rst","api/evennia.typeclasses.rst","api/evennia.typeclasses.admin.rst","api/evennia.typeclasses.attributes.rst","api/evennia.typeclasses.managers.rst","api/evennia.typeclasses.models.rst","api/evennia.typeclasses.tags.rst","api/evennia.utils.rst","api/evennia.utils.ansi.rst","api/evennia.utils.batchprocessors.rst","api/evennia.utils.containers.rst","api/evennia.utils.create.rst","api/evennia.utils.dbserialize.rst","api/evennia.utils.eveditor.rst","api/evennia.utils.evform.rst","api/evennia.utils.evmenu.rst","api/evennia.utils.evmore.rst","api/evennia.utils.evtable.rst","api/evennia.utils.gametime.rst","api/evennia.utils.idmapper.rst","api/evennia.utils.idmapper.manager.rst","api/evennia.utils.idmapper.models.rst","api/evennia.utils.idmapper.tests.rst","api/evennia.utils.inlinefuncs.rst","api/evennia.utils.logger.rst","api/evennia.utils.optionclasses.rst","api/evennia.utils.optionhandler.rst","api/evennia.utils.picklefield.rst","api/evennia.utils.search.rst","api/evennia.utils.test_resources.rst","api/evennia.utils.text2html.rst","api/evennia.utils.utils.rst","api/evennia.utils.validatorfuncs.rst","api/evennia.web.rst","api/evennia.web.api.rst","api/evennia.web.api.filters.rst","api/evennia.web.api.permissions.rst","api/evennia.web.api.serializers.rst","api/evennia.web.api.tests.rst","api/evennia.web.api.urls.rst","api/evennia.web.api.views.rst","api/evennia.web.urls.rst","api/evennia.web.utils.rst","api/evennia.web.utils.backends.rst","api/evennia.web.utils.general_context.rst","api/evennia.web.utils.middleware.rst","api/evennia.web.utils.tests.rst","api/evennia.web.webclient.rst","api/evennia.web.webclient.urls.rst","api/evennia.web.webclient.views.rst","api/evennia.web.website.rst","api/evennia.web.website.forms.rst","api/evennia.web.website.templatetags.rst","api/evennia.web.website.templatetags.addclass.rst","api/evennia.web.website.tests.rst","api/evennia.web.website.urls.rst","api/evennia.web.website.views.rst","index.md","toc.md"],objects:{"":{evennia:[153,0,0,"-"]},"evennia.accounts":{accounts:[156,0,0,"-"],admin:[157,0,0,"-"],bots:[158,0,0,"-"],manager:[159,0,0,"-"],models:[160,0,0,"-"]},"evennia.accounts.accounts":{DefaultAccount:[156,1,1,""],DefaultGuest:[156,1,1,""]},"evennia.accounts.accounts.DefaultAccount":{"delete":[156,3,1,""],DoesNotExist:[156,2,1,""],MultipleObjectsReturned:[156,2,1,""],access:[156,3,1,""],at_access:[156,3,1,""],at_account_creation:[156,3,1,""],at_cmdset_get:[156,3,1,""],at_disconnect:[156,3,1,""],at_failed_login:[156,3,1,""],at_first_login:[156,3,1,""],at_first_save:[156,3,1,""],at_init:[156,3,1,""],at_look:[156,3,1,""],at_msg_receive:[156,3,1,""],at_msg_send:[156,3,1,""],at_password_change:[156,3,1,""],at_post_disconnect:[156,3,1,""],at_post_login:[156,3,1,""],at_pre_login:[156,3,1,""],at_server_reload:[156,3,1,""],at_server_shutdown:[156,3,1,""],authenticate:[156,3,1,""],basetype_setup:[156,3,1,""],character:[156,3,1,""],characters:[156,3,1,""],cmdset:[156,4,1,""],connection_time:[156,3,1,""],create:[156,3,1,""],create_character:[156,3,1,""],disconnect_session_from_account:[156,3,1,""],execute_cmd:[156,3,1,""],get_all_puppets:[156,3,1,""],get_puppet:[156,3,1,""],get_username_validators:[156,3,1,""],idle_time:[156,3,1,""],is_banned:[156,3,1,""],msg:[156,3,1,""],nicks:[156,4,1,""],normalize_username:[156,3,1,""],objects:[156,4,1,""],options:[156,4,1,""],path:[156,4,1,""],puppet:[156,3,1,""],puppet_object:[156,3,1,""],scripts:[156,4,1,""],search:[156,3,1,""],sessions:[156,4,1,""],set_password:[156,3,1,""],typename:[156,4,1,""],unpuppet_all:[156,3,1,""],unpuppet_object:[156,3,1,""],validate_password:[156,3,1,""],validate_username:[156,3,1,""]},"evennia.accounts.accounts.DefaultGuest":{DoesNotExist:[156,2,1,""],MultipleObjectsReturned:[156,2,1,""],at_post_disconnect:[156,3,1,""],at_post_login:[156,3,1,""],at_server_shutdown:[156,3,1,""],authenticate:[156,3,1,""],create:[156,3,1,""],path:[156,4,1,""],typename:[156,4,1,""]},"evennia.accounts.admin":{AccountAttributeInline:[157,1,1,""],AccountDBAdmin:[157,1,1,""],AccountDBChangeForm:[157,1,1,""],AccountDBCreationForm:[157,1,1,""],AccountForm:[157,1,1,""],AccountInline:[157,1,1,""],AccountTagInline:[157,1,1,""]},"evennia.accounts.admin.AccountAttributeInline":{media:[157,3,1,""],model:[157,4,1,""],related_field:[157,4,1,""]},"evennia.accounts.admin.AccountDBAdmin":{add_fieldsets:[157,4,1,""],add_form:[157,4,1,""],fieldsets:[157,4,1,""],form:[157,4,1,""],inlines:[157,4,1,""],list_display:[157,4,1,""],media:[157,3,1,""],response_add:[157,3,1,""],save_model:[157,3,1,""],user_change_password:[157,3,1,""]},"evennia.accounts.admin.AccountDBChangeForm":{Meta:[157,1,1,""],base_fields:[157,4,1,""],clean_username:[157,3,1,""],declared_fields:[157,4,1,""],media:[157,3,1,""]},"evennia.accounts.admin.AccountDBChangeForm.Meta":{fields:[157,4,1,""],model:[157,4,1,""]},"evennia.accounts.admin.AccountDBCreationForm":{Meta:[157,1,1,""],base_fields:[157,4,1,""],clean_username:[157,3,1,""],declared_fields:[157,4,1,""],media:[157,3,1,""]},"evennia.accounts.admin.AccountDBCreationForm.Meta":{fields:[157,4,1,""],model:[157,4,1,""]},"evennia.accounts.admin.AccountForm":{Meta:[157,1,1,""],base_fields:[157,4,1,""],declared_fields:[157,4,1,""],media:[157,3,1,""]},"evennia.accounts.admin.AccountForm.Meta":{app_label:[157,4,1,""],fields:[157,4,1,""],model:[157,4,1,""]},"evennia.accounts.admin.AccountInline":{extra:[157,4,1,""],fieldsets:[157,4,1,""],form:[157,4,1,""],max_num:[157,4,1,""],media:[157,3,1,""],model:[157,4,1,""],template:[157,4,1,""]},"evennia.accounts.admin.AccountTagInline":{media:[157,3,1,""],model:[157,4,1,""],related_field:[157,4,1,""]},"evennia.accounts.bots":{Bot:[158,1,1,""],BotStarter:[158,1,1,""],GrapevineBot:[158,1,1,""],IRCBot:[158,1,1,""],RSSBot:[158,1,1,""]},"evennia.accounts.bots.Bot":{DoesNotExist:[158,2,1,""],MultipleObjectsReturned:[158,2,1,""],at_server_shutdown:[158,3,1,""],basetype_setup:[158,3,1,""],execute_cmd:[158,3,1,""],msg:[158,3,1,""],path:[158,4,1,""],start:[158,3,1,""],typename:[158,4,1,""]},"evennia.accounts.bots.BotStarter":{DoesNotExist:[158,2,1,""],MultipleObjectsReturned:[158,2,1,""],at_repeat:[158,3,1,""],at_script_creation:[158,3,1,""],at_server_reload:[158,3,1,""],at_server_shutdown:[158,3,1,""],at_start:[158,3,1,""],path:[158,4,1,""],typename:[158,4,1,""]},"evennia.accounts.bots.GrapevineBot":{DoesNotExist:[158,2,1,""],MultipleObjectsReturned:[158,2,1,""],at_msg_send:[158,3,1,""],execute_cmd:[158,3,1,""],factory_path:[158,4,1,""],msg:[158,3,1,""],path:[158,4,1,""],start:[158,3,1,""],typename:[158,4,1,""]},"evennia.accounts.bots.IRCBot":{DoesNotExist:[158,2,1,""],MultipleObjectsReturned:[158,2,1,""],at_msg_send:[158,3,1,""],execute_cmd:[158,3,1,""],factory_path:[158,4,1,""],get_nicklist:[158,3,1,""],msg:[158,3,1,""],path:[158,4,1,""],ping:[158,3,1,""],reconnect:[158,3,1,""],start:[158,3,1,""],typename:[158,4,1,""]},"evennia.accounts.bots.RSSBot":{DoesNotExist:[158,2,1,""],MultipleObjectsReturned:[158,2,1,""],execute_cmd:[158,3,1,""],path:[158,4,1,""],start:[158,3,1,""],typename:[158,4,1,""]},"evennia.accounts.manager":{AccountManager:[159,1,1,""]},"evennia.accounts.models":{AccountDB:[160,1,1,""]},"evennia.accounts.models.AccountDB":{DoesNotExist:[160,2,1,""],MultipleObjectsReturned:[160,2,1,""],account_subscription_set:[160,4,1,""],cmdset_storage:[160,3,1,""],db_attributes:[160,4,1,""],db_cmdset_storage:[160,4,1,""],db_is_bot:[160,4,1,""],db_is_connected:[160,4,1,""],db_tags:[160,4,1,""],get_next_by_date_joined:[160,3,1,""],get_next_by_db_date_created:[160,3,1,""],get_previous_by_date_joined:[160,3,1,""],get_previous_by_db_date_created:[160,3,1,""],groups:[160,4,1,""],hide_from_accounts_set:[160,4,1,""],id:[160,4,1,""],is_bot:[160,3,1,""],is_connected:[160,3,1,""],key:[160,3,1,""],logentry_set:[160,4,1,""],name:[160,3,1,""],objectdb_set:[160,4,1,""],objects:[160,4,1,""],path:[160,4,1,""],receiver_account_set:[160,4,1,""],scriptdb_set:[160,4,1,""],sender_account_set:[160,4,1,""],typename:[160,4,1,""],uid:[160,3,1,""],user_permissions:[160,4,1,""]},"evennia.commands":{"default":[167,0,0,"-"],cmdhandler:[162,0,0,"-"],cmdparser:[163,0,0,"-"],cmdset:[164,0,0,"-"],cmdsethandler:[165,0,0,"-"],command:[166,0,0,"-"]},"evennia.commands.cmdhandler":{InterruptCommand:[162,2,1,""],cmdhandler:[162,5,1,""]},"evennia.commands.cmdparser":{build_matches:[163,5,1,""],cmdparser:[163,5,1,""],create_match:[163,5,1,""],try_num_prefixes:[163,5,1,""]},"evennia.commands.cmdset":{CmdSet:[164,1,1,""]},"evennia.commands.cmdset.CmdSet":{__init__:[164,3,1,""],add:[164,3,1,""],at_cmdset_creation:[164,3,1,""],count:[164,3,1,""],duplicates:[164,4,1,""],errmessage:[164,4,1,""],get:[164,3,1,""],get_all_cmd_keys_and_aliases:[164,3,1,""],get_system_cmds:[164,3,1,""],key:[164,4,1,""],key_mergetypes:[164,4,1,""],make_unique:[164,3,1,""],mergetype:[164,4,1,""],no_channels:[164,4,1,""],no_exits:[164,4,1,""],no_objs:[164,4,1,""],path:[164,4,1,""],permanent:[164,4,1,""],priority:[164,4,1,""],remove:[164,3,1,""],to_duplicate:[164,4,1,""]},"evennia.commands.cmdsethandler":{CmdSetHandler:[165,1,1,""],import_cmdset:[165,5,1,""]},"evennia.commands.cmdsethandler.CmdSetHandler":{"delete":[165,3,1,""],__init__:[165,3,1,""],add:[165,3,1,""],add_default:[165,3,1,""],all:[165,3,1,""],clear:[165,3,1,""],delete_default:[165,3,1,""],get:[165,3,1,""],has:[165,3,1,""],has_cmdset:[165,3,1,""],remove:[165,3,1,""],remove_default:[165,3,1,""],reset:[165,3,1,""],update:[165,3,1,""]},"evennia.commands.command":{Command:[166,1,1,""],CommandMeta:[166,1,1,""],InterruptCommand:[166,2,1,""]},"evennia.commands.command.Command":{__init__:[166,3,1,""],access:[166,3,1,""],aliases:[166,4,1,""],arg_regex:[166,4,1,""],at_post_cmd:[166,3,1,""],at_pre_cmd:[166,3,1,""],auto_help:[166,4,1,""],client_width:[166,3,1,""],execute_cmd:[166,3,1,""],func:[166,3,1,""],get_command_info:[166,3,1,""],get_extra_info:[166,3,1,""],get_help:[166,3,1,""],help_category:[166,4,1,""],is_exit:[166,4,1,""],key:[166,4,1,""],lock_storage:[166,4,1,""],lockhandler:[166,4,1,""],locks:[166,4,1,""],match:[166,3,1,""],msg:[166,3,1,""],msg_all_sessions:[166,4,1,""],parse:[166,3,1,""],save_for_next:[166,4,1,""],search_index_entry:[166,4,1,""],set_aliases:[166,3,1,""],set_key:[166,3,1,""],styled_footer:[166,3,1,""],styled_header:[166,3,1,""],styled_separator:[166,3,1,""],styled_table:[166,3,1,""]},"evennia.commands.command.CommandMeta":{__init__:[166,3,1,""]},"evennia.commands.default":{account:[168,0,0,"-"],admin:[169,0,0,"-"],batchprocess:[170,0,0,"-"],building:[171,0,0,"-"],cmdset_account:[172,0,0,"-"],cmdset_character:[173,0,0,"-"],cmdset_session:[174,0,0,"-"],cmdset_unloggedin:[175,0,0,"-"],comms:[176,0,0,"-"],general:[177,0,0,"-"],help:[178,0,0,"-"],muxcommand:[179,0,0,"-"],syscommands:[180,0,0,"-"],system:[181,0,0,"-"],unloggedin:[183,0,0,"-"]},"evennia.commands.default.account":{CmdCharCreate:[168,1,1,""],CmdCharDelete:[168,1,1,""],CmdColorTest:[168,1,1,""],CmdIC:[168,1,1,""],CmdOOC:[168,1,1,""],CmdOOCLook:[168,1,1,""],CmdOption:[168,1,1,""],CmdPassword:[168,1,1,""],CmdQuell:[168,1,1,""],CmdQuit:[168,1,1,""],CmdSessions:[168,1,1,""],CmdStyle:[168,1,1,""],CmdWho:[168,1,1,""]},"evennia.commands.default.account.CmdCharCreate":{account_caller:[168,4,1,""],aliases:[168,4,1,""],func:[168,3,1,""],help_category:[168,4,1,""],key:[168,4,1,""],lock_storage:[168,4,1,""],locks:[168,4,1,""],search_index_entry:[168,4,1,""]},"evennia.commands.default.account.CmdCharDelete":{aliases:[168,4,1,""],func:[168,3,1,""],help_category:[168,4,1,""],key:[168,4,1,""],lock_storage:[168,4,1,""],locks:[168,4,1,""],search_index_entry:[168,4,1,""]},"evennia.commands.default.account.CmdColorTest":{account_caller:[168,4,1,""],aliases:[168,4,1,""],func:[168,3,1,""],help_category:[168,4,1,""],key:[168,4,1,""],lock_storage:[168,4,1,""],locks:[168,4,1,""],search_index_entry:[168,4,1,""],slice_bright_bg:[168,4,1,""],slice_bright_fg:[168,4,1,""],slice_dark_bg:[168,4,1,""],slice_dark_fg:[168,4,1,""],table_format:[168,3,1,""]},"evennia.commands.default.account.CmdIC":{account_caller:[168,4,1,""],aliases:[168,4,1,""],func:[168,3,1,""],help_category:[168,4,1,""],key:[168,4,1,""],lock_storage:[168,4,1,""],locks:[168,4,1,""],search_index_entry:[168,4,1,""]},"evennia.commands.default.account.CmdOOC":{account_caller:[168,4,1,""],aliases:[168,4,1,""],func:[168,3,1,""],help_category:[168,4,1,""],key:[168,4,1,""],lock_storage:[168,4,1,""],locks:[168,4,1,""],search_index_entry:[168,4,1,""]},"evennia.commands.default.account.CmdOOCLook":{account_caller:[168,4,1,""],aliases:[168,4,1,""],func:[168,3,1,""],help_category:[168,4,1,""],key:[168,4,1,""],lock_storage:[168,4,1,""],locks:[168,4,1,""],search_index_entry:[168,4,1,""]},"evennia.commands.default.account.CmdOption":{account_caller:[168,4,1,""],aliases:[168,4,1,""],func:[168,3,1,""],help_category:[168,4,1,""],key:[168,4,1,""],lock_storage:[168,4,1,""],locks:[168,4,1,""],search_index_entry:[168,4,1,""],switch_options:[168,4,1,""]},"evennia.commands.default.account.CmdPassword":{account_caller:[168,4,1,""],aliases:[168,4,1,""],func:[168,3,1,""],help_category:[168,4,1,""],key:[168,4,1,""],lock_storage:[168,4,1,""],locks:[168,4,1,""],search_index_entry:[168,4,1,""]},"evennia.commands.default.account.CmdQuell":{account_caller:[168,4,1,""],aliases:[168,4,1,""],func:[168,3,1,""],help_category:[168,4,1,""],key:[168,4,1,""],lock_storage:[168,4,1,""],locks:[168,4,1,""],search_index_entry:[168,4,1,""]},"evennia.commands.default.account.CmdQuit":{account_caller:[168,4,1,""],aliases:[168,4,1,""],func:[168,3,1,""],help_category:[168,4,1,""],key:[168,4,1,""],lock_storage:[168,4,1,""],locks:[168,4,1,""],search_index_entry:[168,4,1,""],switch_options:[168,4,1,""]},"evennia.commands.default.account.CmdSessions":{account_caller:[168,4,1,""],aliases:[168,4,1,""],func:[168,3,1,""],help_category:[168,4,1,""],key:[168,4,1,""],lock_storage:[168,4,1,""],locks:[168,4,1,""],search_index_entry:[168,4,1,""]},"evennia.commands.default.account.CmdStyle":{aliases:[168,4,1,""],func:[168,3,1,""],help_category:[168,4,1,""],key:[168,4,1,""],list_styles:[168,3,1,""],lock_storage:[168,4,1,""],search_index_entry:[168,4,1,""],set:[168,3,1,""],switch_options:[168,4,1,""]},"evennia.commands.default.account.CmdWho":{account_caller:[168,4,1,""],aliases:[168,4,1,""],func:[168,3,1,""],help_category:[168,4,1,""],key:[168,4,1,""],lock_storage:[168,4,1,""],locks:[168,4,1,""],search_index_entry:[168,4,1,""]},"evennia.commands.default.admin":{CmdBan:[169,1,1,""],CmdBoot:[169,1,1,""],CmdEmit:[169,1,1,""],CmdForce:[169,1,1,""],CmdNewPassword:[169,1,1,""],CmdPerm:[169,1,1,""],CmdUnban:[169,1,1,""],CmdWall:[169,1,1,""]},"evennia.commands.default.admin.CmdBan":{aliases:[169,4,1,""],func:[169,3,1,""],help_category:[169,4,1,""],key:[169,4,1,""],lock_storage:[169,4,1,""],locks:[169,4,1,""],search_index_entry:[169,4,1,""]},"evennia.commands.default.admin.CmdBoot":{aliases:[169,4,1,""],func:[169,3,1,""],help_category:[169,4,1,""],key:[169,4,1,""],lock_storage:[169,4,1,""],locks:[169,4,1,""],search_index_entry:[169,4,1,""],switch_options:[169,4,1,""]},"evennia.commands.default.admin.CmdEmit":{aliases:[169,4,1,""],func:[169,3,1,""],help_category:[169,4,1,""],key:[169,4,1,""],lock_storage:[169,4,1,""],locks:[169,4,1,""],search_index_entry:[169,4,1,""],switch_options:[169,4,1,""]},"evennia.commands.default.admin.CmdForce":{aliases:[169,4,1,""],func:[169,3,1,""],help_category:[169,4,1,""],key:[169,4,1,""],lock_storage:[169,4,1,""],locks:[169,4,1,""],perm_used:[169,4,1,""],search_index_entry:[169,4,1,""]},"evennia.commands.default.admin.CmdNewPassword":{aliases:[169,4,1,""],func:[169,3,1,""],help_category:[169,4,1,""],key:[169,4,1,""],lock_storage:[169,4,1,""],locks:[169,4,1,""],search_index_entry:[169,4,1,""]},"evennia.commands.default.admin.CmdPerm":{aliases:[169,4,1,""],func:[169,3,1,""],help_category:[169,4,1,""],key:[169,4,1,""],lock_storage:[169,4,1,""],locks:[169,4,1,""],search_index_entry:[169,4,1,""],switch_options:[169,4,1,""]},"evennia.commands.default.admin.CmdUnban":{aliases:[169,4,1,""],func:[169,3,1,""],help_category:[169,4,1,""],key:[169,4,1,""],lock_storage:[169,4,1,""],locks:[169,4,1,""],search_index_entry:[169,4,1,""]},"evennia.commands.default.admin.CmdWall":{aliases:[169,4,1,""],func:[169,3,1,""],help_category:[169,4,1,""],key:[169,4,1,""],lock_storage:[169,4,1,""],locks:[169,4,1,""],search_index_entry:[169,4,1,""]},"evennia.commands.default.batchprocess":{CmdBatchCode:[170,1,1,""],CmdBatchCommands:[170,1,1,""]},"evennia.commands.default.batchprocess.CmdBatchCode":{aliases:[170,4,1,""],func:[170,3,1,""],help_category:[170,4,1,""],key:[170,4,1,""],lock_storage:[170,4,1,""],locks:[170,4,1,""],search_index_entry:[170,4,1,""],switch_options:[170,4,1,""]},"evennia.commands.default.batchprocess.CmdBatchCommands":{aliases:[170,4,1,""],func:[170,3,1,""],help_category:[170,4,1,""],key:[170,4,1,""],lock_storage:[170,4,1,""],locks:[170,4,1,""],search_index_entry:[170,4,1,""],switch_options:[170,4,1,""]},"evennia.commands.default.building":{CmdCopy:[171,1,1,""],CmdCpAttr:[171,1,1,""],CmdCreate:[171,1,1,""],CmdDesc:[171,1,1,""],CmdDestroy:[171,1,1,""],CmdDig:[171,1,1,""],CmdExamine:[171,1,1,""],CmdFind:[171,1,1,""],CmdLink:[171,1,1,""],CmdListCmdSets:[171,1,1,""],CmdLock:[171,1,1,""],CmdMvAttr:[171,1,1,""],CmdName:[171,1,1,""],CmdOpen:[171,1,1,""],CmdScript:[171,1,1,""],CmdSetAttribute:[171,1,1,""],CmdSetHome:[171,1,1,""],CmdSetObjAlias:[171,1,1,""],CmdSpawn:[171,1,1,""],CmdTag:[171,1,1,""],CmdTeleport:[171,1,1,""],CmdTunnel:[171,1,1,""],CmdTypeclass:[171,1,1,""],CmdUnLink:[171,1,1,""],CmdWipe:[171,1,1,""],ObjManipCommand:[171,1,1,""]},"evennia.commands.default.building.CmdCopy":{aliases:[171,4,1,""],func:[171,3,1,""],help_category:[171,4,1,""],key:[171,4,1,""],lock_storage:[171,4,1,""],locks:[171,4,1,""],search_index_entry:[171,4,1,""]},"evennia.commands.default.building.CmdCpAttr":{aliases:[171,4,1,""],check_from_attr:[171,3,1,""],check_has_attr:[171,3,1,""],check_to_attr:[171,3,1,""],func:[171,3,1,""],get_attr:[171,3,1,""],help_category:[171,4,1,""],key:[171,4,1,""],lock_storage:[171,4,1,""],locks:[171,4,1,""],search_index_entry:[171,4,1,""],switch_options:[171,4,1,""]},"evennia.commands.default.building.CmdCreate":{aliases:[171,4,1,""],func:[171,3,1,""],help_category:[171,4,1,""],key:[171,4,1,""],lock_storage:[171,4,1,""],locks:[171,4,1,""],new_obj_lockstring:[171,4,1,""],search_index_entry:[171,4,1,""],switch_options:[171,4,1,""]},"evennia.commands.default.building.CmdDesc":{aliases:[171,4,1,""],edit_handler:[171,3,1,""],func:[171,3,1,""],help_category:[171,4,1,""],key:[171,4,1,""],lock_storage:[171,4,1,""],locks:[171,4,1,""],search_index_entry:[171,4,1,""],switch_options:[171,4,1,""]},"evennia.commands.default.building.CmdDestroy":{aliases:[171,4,1,""],confirm:[171,4,1,""],default_confirm:[171,4,1,""],func:[171,3,1,""],help_category:[171,4,1,""],key:[171,4,1,""],lock_storage:[171,4,1,""],locks:[171,4,1,""],search_index_entry:[171,4,1,""],switch_options:[171,4,1,""]},"evennia.commands.default.building.CmdDig":{aliases:[171,4,1,""],func:[171,3,1,""],help_category:[171,4,1,""],key:[171,4,1,""],lock_storage:[171,4,1,""],locks:[171,4,1,""],new_room_lockstring:[171,4,1,""],search_index_entry:[171,4,1,""],switch_options:[171,4,1,""]},"evennia.commands.default.building.CmdExamine":{account_mode:[171,4,1,""],aliases:[171,4,1,""],arg_regex:[171,4,1,""],detail_color:[171,4,1,""],format_attributes:[171,3,1,""],format_output:[171,3,1,""],func:[171,3,1,""],header_color:[171,4,1,""],help_category:[171,4,1,""],key:[171,4,1,""],list_attribute:[171,3,1,""],lock_storage:[171,4,1,""],locks:[171,4,1,""],quell_color:[171,4,1,""],search_index_entry:[171,4,1,""],separator:[171,4,1,""]},"evennia.commands.default.building.CmdFind":{aliases:[171,4,1,""],func:[171,3,1,""],help_category:[171,4,1,""],key:[171,4,1,""],lock_storage:[171,4,1,""],locks:[171,4,1,""],search_index_entry:[171,4,1,""],switch_options:[171,4,1,""]},"evennia.commands.default.building.CmdLink":{aliases:[171,4,1,""],func:[171,3,1,""],help_category:[171,4,1,""],key:[171,4,1,""],lock_storage:[171,4,1,""],locks:[171,4,1,""],search_index_entry:[171,4,1,""]},"evennia.commands.default.building.CmdListCmdSets":{aliases:[171,4,1,""],func:[171,3,1,""],help_category:[171,4,1,""],key:[171,4,1,""],lock_storage:[171,4,1,""],locks:[171,4,1,""],search_index_entry:[171,4,1,""]},"evennia.commands.default.building.CmdLock":{aliases:[171,4,1,""],func:[171,3,1,""],help_category:[171,4,1,""],key:[171,4,1,""],lock_storage:[171,4,1,""],locks:[171,4,1,""],search_index_entry:[171,4,1,""]},"evennia.commands.default.building.CmdMvAttr":{aliases:[171,4,1,""],func:[171,3,1,""],help_category:[171,4,1,""],key:[171,4,1,""],lock_storage:[171,4,1,""],locks:[171,4,1,""],search_index_entry:[171,4,1,""],switch_options:[171,4,1,""]},"evennia.commands.default.building.CmdName":{aliases:[171,4,1,""],func:[171,3,1,""],help_category:[171,4,1,""],key:[171,4,1,""],lock_storage:[171,4,1,""],locks:[171,4,1,""],search_index_entry:[171,4,1,""]},"evennia.commands.default.building.CmdOpen":{aliases:[171,4,1,""],create_exit:[171,3,1,""],func:[171,3,1,""],help_category:[171,4,1,""],key:[171,4,1,""],lock_storage:[171,4,1,""],locks:[171,4,1,""],new_obj_lockstring:[171,4,1,""],search_index_entry:[171,4,1,""]},"evennia.commands.default.building.CmdScript":{aliases:[171,4,1,""],func:[171,3,1,""],help_category:[171,4,1,""],key:[171,4,1,""],lock_storage:[171,4,1,""],locks:[171,4,1,""],search_index_entry:[171,4,1,""],switch_options:[171,4,1,""]},"evennia.commands.default.building.CmdSetAttribute":{aliases:[171,4,1,""],check_attr:[171,3,1,""],check_obj:[171,3,1,""],do_nested_lookup:[171,3,1,""],edit_handler:[171,3,1,""],func:[171,3,1,""],help_category:[171,4,1,""],key:[171,4,1,""],lock_storage:[171,4,1,""],locks:[171,4,1,""],nested_re:[171,4,1,""],not_found:[171,4,1,""],rm_attr:[171,3,1,""],search_for_obj:[171,3,1,""],search_index_entry:[171,4,1,""],set_attr:[171,3,1,""],split_nested_attr:[171,3,1,""],view_attr:[171,3,1,""]},"evennia.commands.default.building.CmdSetHome":{aliases:[171,4,1,""],func:[171,3,1,""],help_category:[171,4,1,""],key:[171,4,1,""],lock_storage:[171,4,1,""],locks:[171,4,1,""],search_index_entry:[171,4,1,""]},"evennia.commands.default.building.CmdSetObjAlias":{aliases:[171,4,1,""],func:[171,3,1,""],help_category:[171,4,1,""],key:[171,4,1,""],lock_storage:[171,4,1,""],locks:[171,4,1,""],search_index_entry:[171,4,1,""],switch_options:[171,4,1,""]},"evennia.commands.default.building.CmdSpawn":{aliases:[171,4,1,""],func:[171,3,1,""],help_category:[171,4,1,""],key:[171,4,1,""],lock_storage:[171,4,1,""],locks:[171,4,1,""],search_index_entry:[171,4,1,""],switch_options:[171,4,1,""]},"evennia.commands.default.building.CmdTag":{aliases:[171,4,1,""],arg_regex:[171,4,1,""],func:[171,3,1,""],help_category:[171,4,1,""],key:[171,4,1,""],lock_storage:[171,4,1,""],locks:[171,4,1,""],options:[171,4,1,""],search_index_entry:[171,4,1,""]},"evennia.commands.default.building.CmdTeleport":{aliases:[171,4,1,""],func:[171,3,1,""],help_category:[171,4,1,""],key:[171,4,1,""],lock_storage:[171,4,1,""],locks:[171,4,1,""],rhs_split:[171,4,1,""],search_index_entry:[171,4,1,""],switch_options:[171,4,1,""]},"evennia.commands.default.building.CmdTunnel":{aliases:[171,4,1,""],directions:[171,4,1,""],func:[171,3,1,""],help_category:[171,4,1,""],key:[171,4,1,""],lock_storage:[171,4,1,""],locks:[171,4,1,""],search_index_entry:[171,4,1,""],switch_options:[171,4,1,""]},"evennia.commands.default.building.CmdTypeclass":{aliases:[171,4,1,""],func:[171,3,1,""],help_category:[171,4,1,""],key:[171,4,1,""],lock_storage:[171,4,1,""],locks:[171,4,1,""],search_index_entry:[171,4,1,""],switch_options:[171,4,1,""]},"evennia.commands.default.building.CmdUnLink":{aliases:[171,4,1,""],func:[171,3,1,""],help_category:[171,4,1,""],help_key:[171,4,1,""],key:[171,4,1,""],lock_storage:[171,4,1,""],locks:[171,4,1,""],search_index_entry:[171,4,1,""]},"evennia.commands.default.building.CmdWipe":{aliases:[171,4,1,""],func:[171,3,1,""],help_category:[171,4,1,""],key:[171,4,1,""],lock_storage:[171,4,1,""],locks:[171,4,1,""],search_index_entry:[171,4,1,""]},"evennia.commands.default.building.ObjManipCommand":{aliases:[171,4,1,""],help_category:[171,4,1,""],key:[171,4,1,""],lock_storage:[171,4,1,""],parse:[171,3,1,""],search_index_entry:[171,4,1,""]},"evennia.commands.default.cmdset_account":{AccountCmdSet:[172,1,1,""]},"evennia.commands.default.cmdset_account.AccountCmdSet":{at_cmdset_creation:[172,3,1,""],key:[172,4,1,""],path:[172,4,1,""],priority:[172,4,1,""]},"evennia.commands.default.cmdset_character":{CharacterCmdSet:[173,1,1,""]},"evennia.commands.default.cmdset_character.CharacterCmdSet":{at_cmdset_creation:[173,3,1,""],key:[173,4,1,""],path:[173,4,1,""],priority:[173,4,1,""]},"evennia.commands.default.cmdset_session":{SessionCmdSet:[174,1,1,""]},"evennia.commands.default.cmdset_session.SessionCmdSet":{at_cmdset_creation:[174,3,1,""],key:[174,4,1,""],path:[174,4,1,""],priority:[174,4,1,""]},"evennia.commands.default.cmdset_unloggedin":{UnloggedinCmdSet:[175,1,1,""]},"evennia.commands.default.cmdset_unloggedin.UnloggedinCmdSet":{at_cmdset_creation:[175,3,1,""],key:[175,4,1,""],path:[175,4,1,""],priority:[175,4,1,""]},"evennia.commands.default.comms":{CmdAddCom:[176,1,1,""],CmdAllCom:[176,1,1,""],CmdCBoot:[176,1,1,""],CmdCWho:[176,1,1,""],CmdCdesc:[176,1,1,""],CmdCdestroy:[176,1,1,""],CmdCemit:[176,1,1,""],CmdChannelCreate:[176,1,1,""],CmdChannels:[176,1,1,""],CmdClock:[176,1,1,""],CmdDelCom:[176,1,1,""],CmdIRC2Chan:[176,1,1,""],CmdPage:[176,1,1,""],CmdRSS2Chan:[176,1,1,""]},"evennia.commands.default.comms.CmdAddCom":{account_caller:[176,4,1,""],aliases:[176,4,1,""],func:[176,3,1,""],help_category:[176,4,1,""],key:[176,4,1,""],lock_storage:[176,4,1,""],locks:[176,4,1,""],search_index_entry:[176,4,1,""]},"evennia.commands.default.comms.CmdAllCom":{account_caller:[176,4,1,""],aliases:[176,4,1,""],func:[176,3,1,""],help_category:[176,4,1,""],key:[176,4,1,""],lock_storage:[176,4,1,""],locks:[176,4,1,""],search_index_entry:[176,4,1,""]},"evennia.commands.default.comms.CmdCBoot":{account_caller:[176,4,1,""],aliases:[176,4,1,""],func:[176,3,1,""],help_category:[176,4,1,""],key:[176,4,1,""],lock_storage:[176,4,1,""],locks:[176,4,1,""],search_index_entry:[176,4,1,""],switch_options:[176,4,1,""]},"evennia.commands.default.comms.CmdCWho":{account_caller:[176,4,1,""],aliases:[176,4,1,""],func:[176,3,1,""],help_category:[176,4,1,""],key:[176,4,1,""],lock_storage:[176,4,1,""],locks:[176,4,1,""],search_index_entry:[176,4,1,""]},"evennia.commands.default.comms.CmdCdesc":{account_caller:[176,4,1,""],aliases:[176,4,1,""],func:[176,3,1,""],help_category:[176,4,1,""],key:[176,4,1,""],lock_storage:[176,4,1,""],locks:[176,4,1,""],search_index_entry:[176,4,1,""]},"evennia.commands.default.comms.CmdCdestroy":{account_caller:[176,4,1,""],aliases:[176,4,1,""],func:[176,3,1,""],help_category:[176,4,1,""],key:[176,4,1,""],lock_storage:[176,4,1,""],locks:[176,4,1,""],search_index_entry:[176,4,1,""]},"evennia.commands.default.comms.CmdCemit":{account_caller:[176,4,1,""],aliases:[176,4,1,""],func:[176,3,1,""],help_category:[176,4,1,""],key:[176,4,1,""],lock_storage:[176,4,1,""],locks:[176,4,1,""],search_index_entry:[176,4,1,""],switch_options:[176,4,1,""]},"evennia.commands.default.comms.CmdChannelCreate":{account_caller:[176,4,1,""],aliases:[176,4,1,""],func:[176,3,1,""],help_category:[176,4,1,""],key:[176,4,1,""],lock_storage:[176,4,1,""],locks:[176,4,1,""],search_index_entry:[176,4,1,""]},"evennia.commands.default.comms.CmdChannels":{account_caller:[176,4,1,""],aliases:[176,4,1,""],func:[176,3,1,""],help_category:[176,4,1,""],key:[176,4,1,""],lock_storage:[176,4,1,""],locks:[176,4,1,""],search_index_entry:[176,4,1,""]},"evennia.commands.default.comms.CmdClock":{account_caller:[176,4,1,""],aliases:[176,4,1,""],func:[176,3,1,""],help_category:[176,4,1,""],key:[176,4,1,""],lock_storage:[176,4,1,""],locks:[176,4,1,""],search_index_entry:[176,4,1,""]},"evennia.commands.default.comms.CmdDelCom":{account_caller:[176,4,1,""],aliases:[176,4,1,""],func:[176,3,1,""],help_category:[176,4,1,""],key:[176,4,1,""],lock_storage:[176,4,1,""],locks:[176,4,1,""],search_index_entry:[176,4,1,""]},"evennia.commands.default.comms.CmdIRC2Chan":{aliases:[176,4,1,""],func:[176,3,1,""],help_category:[176,4,1,""],key:[176,4,1,""],lock_storage:[176,4,1,""],locks:[176,4,1,""],search_index_entry:[176,4,1,""],switch_options:[176,4,1,""]},"evennia.commands.default.comms.CmdPage":{account_caller:[176,4,1,""],aliases:[176,4,1,""],func:[176,3,1,""],help_category:[176,4,1,""],key:[176,4,1,""],lock_storage:[176,4,1,""],locks:[176,4,1,""],search_index_entry:[176,4,1,""],switch_options:[176,4,1,""]},"evennia.commands.default.comms.CmdRSS2Chan":{aliases:[176,4,1,""],func:[176,3,1,""],help_category:[176,4,1,""],key:[176,4,1,""],lock_storage:[176,4,1,""],locks:[176,4,1,""],search_index_entry:[176,4,1,""],switch_options:[176,4,1,""]},"evennia.commands.default.general":{CmdAccess:[177,1,1,""],CmdDrop:[177,1,1,""],CmdGet:[177,1,1,""],CmdGive:[177,1,1,""],CmdHome:[177,1,1,""],CmdInventory:[177,1,1,""],CmdLook:[177,1,1,""],CmdNick:[177,1,1,""],CmdPose:[177,1,1,""],CmdSay:[177,1,1,""],CmdSetDesc:[177,1,1,""],CmdWhisper:[177,1,1,""]},"evennia.commands.default.general.CmdAccess":{aliases:[177,4,1,""],arg_regex:[177,4,1,""],func:[177,3,1,""],help_category:[177,4,1,""],key:[177,4,1,""],lock_storage:[177,4,1,""],locks:[177,4,1,""],search_index_entry:[177,4,1,""]},"evennia.commands.default.general.CmdDrop":{aliases:[177,4,1,""],arg_regex:[177,4,1,""],func:[177,3,1,""],help_category:[177,4,1,""],key:[177,4,1,""],lock_storage:[177,4,1,""],locks:[177,4,1,""],search_index_entry:[177,4,1,""]},"evennia.commands.default.general.CmdGet":{aliases:[177,4,1,""],arg_regex:[177,4,1,""],func:[177,3,1,""],help_category:[177,4,1,""],key:[177,4,1,""],lock_storage:[177,4,1,""],locks:[177,4,1,""],search_index_entry:[177,4,1,""]},"evennia.commands.default.general.CmdGive":{aliases:[177,4,1,""],arg_regex:[177,4,1,""],func:[177,3,1,""],help_category:[177,4,1,""],key:[177,4,1,""],lock_storage:[177,4,1,""],locks:[177,4,1,""],rhs_split:[177,4,1,""],search_index_entry:[177,4,1,""]},"evennia.commands.default.general.CmdHome":{aliases:[177,4,1,""],arg_regex:[177,4,1,""],func:[177,3,1,""],help_category:[177,4,1,""],key:[177,4,1,""],lock_storage:[177,4,1,""],locks:[177,4,1,""],search_index_entry:[177,4,1,""]},"evennia.commands.default.general.CmdInventory":{aliases:[177,4,1,""],arg_regex:[177,4,1,""],func:[177,3,1,""],help_category:[177,4,1,""],key:[177,4,1,""],lock_storage:[177,4,1,""],locks:[177,4,1,""],search_index_entry:[177,4,1,""]},"evennia.commands.default.general.CmdLook":{aliases:[177,4,1,""],arg_regex:[177,4,1,""],func:[177,3,1,""],help_category:[177,4,1,""],key:[177,4,1,""],lock_storage:[177,4,1,""],locks:[177,4,1,""],search_index_entry:[177,4,1,""]},"evennia.commands.default.general.CmdNick":{aliases:[177,4,1,""],func:[177,3,1,""],help_category:[177,4,1,""],key:[177,4,1,""],lock_storage:[177,4,1,""],locks:[177,4,1,""],parse:[177,3,1,""],search_index_entry:[177,4,1,""],switch_options:[177,4,1,""]},"evennia.commands.default.general.CmdPose":{aliases:[177,4,1,""],func:[177,3,1,""],help_category:[177,4,1,""],key:[177,4,1,""],lock_storage:[177,4,1,""],locks:[177,4,1,""],parse:[177,3,1,""],search_index_entry:[177,4,1,""]},"evennia.commands.default.general.CmdSay":{aliases:[177,4,1,""],func:[177,3,1,""],help_category:[177,4,1,""],key:[177,4,1,""],lock_storage:[177,4,1,""],locks:[177,4,1,""],search_index_entry:[177,4,1,""]},"evennia.commands.default.general.CmdSetDesc":{aliases:[177,4,1,""],arg_regex:[177,4,1,""],func:[177,3,1,""],help_category:[177,4,1,""],key:[177,4,1,""],lock_storage:[177,4,1,""],locks:[177,4,1,""],search_index_entry:[177,4,1,""]},"evennia.commands.default.general.CmdWhisper":{aliases:[177,4,1,""],func:[177,3,1,""],help_category:[177,4,1,""],key:[177,4,1,""],lock_storage:[177,4,1,""],locks:[177,4,1,""],search_index_entry:[177,4,1,""]},"evennia.commands.default.help":{CmdHelp:[178,1,1,""],CmdSetHelp:[178,1,1,""]},"evennia.commands.default.help.CmdHelp":{aliases:[178,4,1,""],arg_regex:[178,4,1,""],check_show_help:[178,3,1,""],format_help_entry:[178,3,1,""],format_help_list:[178,3,1,""],func:[178,3,1,""],help_category:[178,4,1,""],help_more:[178,4,1,""],key:[178,4,1,""],lock_storage:[178,4,1,""],locks:[178,4,1,""],msg_help:[178,3,1,""],parse:[178,3,1,""],return_cmdset:[178,4,1,""],search_index_entry:[178,4,1,""],should_list_cmd:[178,3,1,""],suggestion_cutoff:[178,4,1,""],suggestion_maxnum:[178,4,1,""]},"evennia.commands.default.help.CmdSetHelp":{aliases:[178,4,1,""],func:[178,3,1,""],help_category:[178,4,1,""],key:[178,4,1,""],lock_storage:[178,4,1,""],locks:[178,4,1,""],search_index_entry:[178,4,1,""],switch_options:[178,4,1,""]},"evennia.commands.default.muxcommand":{MuxAccountCommand:[179,1,1,""],MuxCommand:[179,1,1,""]},"evennia.commands.default.muxcommand.MuxAccountCommand":{account_caller:[179,4,1,""],aliases:[179,4,1,""],help_category:[179,4,1,""],key:[179,4,1,""],lock_storage:[179,4,1,""],search_index_entry:[179,4,1,""]},"evennia.commands.default.muxcommand.MuxCommand":{aliases:[179,4,1,""],at_post_cmd:[179,3,1,""],at_pre_cmd:[179,3,1,""],func:[179,3,1,""],get_command_info:[179,3,1,""],has_perm:[179,3,1,""],help_category:[179,4,1,""],key:[179,4,1,""],lock_storage:[179,4,1,""],parse:[179,3,1,""],search_index_entry:[179,4,1,""]},"evennia.commands.default.syscommands":{SystemMultimatch:[180,1,1,""],SystemNoInput:[180,1,1,""],SystemNoMatch:[180,1,1,""],SystemSendToChannel:[180,1,1,""]},"evennia.commands.default.syscommands.SystemMultimatch":{aliases:[180,4,1,""],func:[180,3,1,""],help_category:[180,4,1,""],key:[180,4,1,""],lock_storage:[180,4,1,""],locks:[180,4,1,""],search_index_entry:[180,4,1,""]},"evennia.commands.default.syscommands.SystemNoInput":{aliases:[180,4,1,""],func:[180,3,1,""],help_category:[180,4,1,""],key:[180,4,1,""],lock_storage:[180,4,1,""],locks:[180,4,1,""],search_index_entry:[180,4,1,""]},"evennia.commands.default.syscommands.SystemNoMatch":{aliases:[180,4,1,""],func:[180,3,1,""],help_category:[180,4,1,""],key:[180,4,1,""],lock_storage:[180,4,1,""],locks:[180,4,1,""],search_index_entry:[180,4,1,""]},"evennia.commands.default.syscommands.SystemSendToChannel":{aliases:[180,4,1,""],func:[180,3,1,""],help_category:[180,4,1,""],key:[180,4,1,""],lock_storage:[180,4,1,""],locks:[180,4,1,""],parse:[180,3,1,""],search_index_entry:[180,4,1,""]},"evennia.commands.default.system":{CmdAbout:[181,1,1,""],CmdObjects:[181,1,1,""],CmdPy:[181,1,1,""],CmdReload:[181,1,1,""],CmdReset:[181,1,1,""],CmdScripts:[181,1,1,""],CmdServerLoad:[181,1,1,""],CmdService:[181,1,1,""],CmdShutdown:[181,1,1,""],CmdTime:[181,1,1,""]},"evennia.commands.default.system.CmdAbout":{aliases:[181,4,1,""],func:[181,3,1,""],help_category:[181,4,1,""],key:[181,4,1,""],lock_storage:[181,4,1,""],locks:[181,4,1,""],search_index_entry:[181,4,1,""]},"evennia.commands.default.system.CmdObjects":{aliases:[181,4,1,""],func:[181,3,1,""],help_category:[181,4,1,""],key:[181,4,1,""],lock_storage:[181,4,1,""],locks:[181,4,1,""],search_index_entry:[181,4,1,""]},"evennia.commands.default.system.CmdPy":{aliases:[181,4,1,""],func:[181,3,1,""],help_category:[181,4,1,""],key:[181,4,1,""],lock_storage:[181,4,1,""],locks:[181,4,1,""],search_index_entry:[181,4,1,""],switch_options:[181,4,1,""]},"evennia.commands.default.system.CmdReload":{aliases:[181,4,1,""],func:[181,3,1,""],help_category:[181,4,1,""],key:[181,4,1,""],lock_storage:[181,4,1,""],locks:[181,4,1,""],search_index_entry:[181,4,1,""]},"evennia.commands.default.system.CmdReset":{aliases:[181,4,1,""],func:[181,3,1,""],help_category:[181,4,1,""],key:[181,4,1,""],lock_storage:[181,4,1,""],locks:[181,4,1,""],search_index_entry:[181,4,1,""]},"evennia.commands.default.system.CmdScripts":{aliases:[181,4,1,""],excluded_typeclass_paths:[181,4,1,""],func:[181,3,1,""],help_category:[181,4,1,""],key:[181,4,1,""],lock_storage:[181,4,1,""],locks:[181,4,1,""],search_index_entry:[181,4,1,""],switch_options:[181,4,1,""]},"evennia.commands.default.system.CmdServerLoad":{aliases:[181,4,1,""],func:[181,3,1,""],help_category:[181,4,1,""],key:[181,4,1,""],lock_storage:[181,4,1,""],locks:[181,4,1,""],search_index_entry:[181,4,1,""],switch_options:[181,4,1,""]},"evennia.commands.default.system.CmdService":{aliases:[181,4,1,""],func:[181,3,1,""],help_category:[181,4,1,""],key:[181,4,1,""],lock_storage:[181,4,1,""],locks:[181,4,1,""],search_index_entry:[181,4,1,""],switch_options:[181,4,1,""]},"evennia.commands.default.system.CmdShutdown":{aliases:[181,4,1,""],func:[181,3,1,""],help_category:[181,4,1,""],key:[181,4,1,""],lock_storage:[181,4,1,""],locks:[181,4,1,""],search_index_entry:[181,4,1,""]},"evennia.commands.default.system.CmdTime":{aliases:[181,4,1,""],func:[181,3,1,""],help_category:[181,4,1,""],key:[181,4,1,""],lock_storage:[181,4,1,""],locks:[181,4,1,""],search_index_entry:[181,4,1,""]},"evennia.commands.default.tests":{CmdInterrupt:[182,1,1,""],CommandTest:[182,1,1,""],TestAccount:[182,1,1,""],TestAdmin:[182,1,1,""],TestBatchProcess:[182,1,1,""],TestBuilding:[182,1,1,""],TestComms:[182,1,1,""],TestGeneral:[182,1,1,""],TestHelp:[182,1,1,""],TestInterruptCommand:[182,1,1,""],TestSystem:[182,1,1,""],TestSystemCommands:[182,1,1,""],TestUnconnectedCommand:[182,1,1,""]},"evennia.commands.default.tests.CmdInterrupt":{aliases:[182,4,1,""],func:[182,3,1,""],help_category:[182,4,1,""],key:[182,4,1,""],lock_storage:[182,4,1,""],parse:[182,3,1,""],search_index_entry:[182,4,1,""]},"evennia.commands.default.tests.CommandTest":{call:[182,3,1,""]},"evennia.commands.default.tests.TestAccount":{test_char_create:[182,3,1,""],test_char_delete:[182,3,1,""],test_color_test:[182,3,1,""],test_ic:[182,3,1,""],test_ic__nonaccess:[182,3,1,""],test_ic__other_object:[182,3,1,""],test_ooc:[182,3,1,""],test_ooc_look:[182,3,1,""],test_option:[182,3,1,""],test_password:[182,3,1,""],test_quell:[182,3,1,""],test_quit:[182,3,1,""],test_sessions:[182,3,1,""],test_who:[182,3,1,""]},"evennia.commands.default.tests.TestAdmin":{test_ban:[182,3,1,""],test_emit:[182,3,1,""],test_force:[182,3,1,""],test_perm:[182,3,1,""],test_wall:[182,3,1,""]},"evennia.commands.default.tests.TestBatchProcess":{test_batch_commands:[182,3,1,""]},"evennia.commands.default.tests.TestBuilding":{test_attribute_commands:[182,3,1,""],test_copy:[182,3,1,""],test_create:[182,3,1,""],test_desc:[182,3,1,""],test_desc_default_to_room:[182,3,1,""],test_destroy:[182,3,1,""],test_destroy_sequence:[182,3,1,""],test_dig:[182,3,1,""],test_do_nested_lookup:[182,3,1,""],test_empty_desc:[182,3,1,""],test_examine:[182,3,1,""],test_exit_commands:[182,3,1,""],test_find:[182,3,1,""],test_list_cmdsets:[182,3,1,""],test_lock:[182,3,1,""],test_name:[182,3,1,""],test_nested_attribute_commands:[182,3,1,""],test_script:[182,3,1,""],test_set_home:[182,3,1,""],test_set_obj_alias:[182,3,1,""],test_spawn:[182,3,1,""],test_split_nested_attr:[182,3,1,""],test_tag:[182,3,1,""],test_teleport:[182,3,1,""],test_tunnel:[182,3,1,""],test_tunnel_exit_typeclass:[182,3,1,""],test_typeclass:[182,3,1,""]},"evennia.commands.default.tests.TestComms":{setUp:[182,3,1,""],test_all_com:[182,3,1,""],test_cboot:[182,3,1,""],test_cdesc:[182,3,1,""],test_cdestroy:[182,3,1,""],test_cemit:[182,3,1,""],test_channels:[182,3,1,""],test_clock:[182,3,1,""],test_cwho:[182,3,1,""],test_page:[182,3,1,""],test_toggle_com:[182,3,1,""]},"evennia.commands.default.tests.TestGeneral":{test_access:[182,3,1,""],test_get_and_drop:[182,3,1,""],test_give:[182,3,1,""],test_home:[182,3,1,""],test_inventory:[182,3,1,""],test_look:[182,3,1,""],test_mux_command:[182,3,1,""],test_nick:[182,3,1,""],test_pose:[182,3,1,""],test_say:[182,3,1,""],test_whisper:[182,3,1,""]},"evennia.commands.default.tests.TestHelp":{setUp:[182,3,1,""],tearDown:[182,3,1,""],test_help:[182,3,1,""],test_set_help:[182,3,1,""]},"evennia.commands.default.tests.TestInterruptCommand":{test_interrupt_command:[182,3,1,""]},"evennia.commands.default.tests.TestSystem":{test_about:[182,3,1,""],test_objects:[182,3,1,""],test_py:[182,3,1,""],test_scripts:[182,3,1,""],test_server_load:[182,3,1,""]},"evennia.commands.default.tests.TestSystemCommands":{test_channelcommand:[182,3,1,""],test_multimatch:[182,3,1,""],test_simple_defaults:[182,3,1,""]},"evennia.commands.default.tests.TestUnconnectedCommand":{test_info_command:[182,3,1,""]},"evennia.commands.default.unloggedin":{CmdUnconnectedConnect:[183,1,1,""],CmdUnconnectedCreate:[183,1,1,""],CmdUnconnectedHelp:[183,1,1,""],CmdUnconnectedLook:[183,1,1,""],CmdUnconnectedQuit:[183,1,1,""]},"evennia.commands.default.unloggedin.CmdUnconnectedConnect":{aliases:[183,4,1,""],arg_regex:[183,4,1,""],func:[183,3,1,""],help_category:[183,4,1,""],key:[183,4,1,""],lock_storage:[183,4,1,""],locks:[183,4,1,""],search_index_entry:[183,4,1,""]},"evennia.commands.default.unloggedin.CmdUnconnectedCreate":{aliases:[183,4,1,""],arg_regex:[183,4,1,""],func:[183,3,1,""],help_category:[183,4,1,""],key:[183,4,1,""],lock_storage:[183,4,1,""],locks:[183,4,1,""],search_index_entry:[183,4,1,""]},"evennia.commands.default.unloggedin.CmdUnconnectedHelp":{aliases:[183,4,1,""],func:[183,3,1,""],help_category:[183,4,1,""],key:[183,4,1,""],lock_storage:[183,4,1,""],locks:[183,4,1,""],search_index_entry:[183,4,1,""]},"evennia.commands.default.unloggedin.CmdUnconnectedLook":{aliases:[183,4,1,""],func:[183,3,1,""],help_category:[183,4,1,""],key:[183,4,1,""],lock_storage:[183,4,1,""],locks:[183,4,1,""],search_index_entry:[183,4,1,""]},"evennia.commands.default.unloggedin.CmdUnconnectedQuit":{aliases:[183,4,1,""],func:[183,3,1,""],help_category:[183,4,1,""],key:[183,4,1,""],lock_storage:[183,4,1,""],locks:[183,4,1,""],search_index_entry:[183,4,1,""]},"evennia.comms":{admin:[185,0,0,"-"],channelhandler:[186,0,0,"-"],comms:[187,0,0,"-"],managers:[188,0,0,"-"],models:[189,0,0,"-"]},"evennia.comms.admin":{ChannelAdmin:[185,1,1,""],ChannelAttributeInline:[185,1,1,""],ChannelTagInline:[185,1,1,""],MsgAdmin:[185,1,1,""]},"evennia.comms.admin.ChannelAdmin":{fieldsets:[185,4,1,""],inlines:[185,4,1,""],list_display:[185,4,1,""],list_display_links:[185,4,1,""],list_select_related:[185,4,1,""],media:[185,3,1,""],ordering:[185,4,1,""],raw_id_fields:[185,4,1,""],response_add:[185,3,1,""],save_as:[185,4,1,""],save_model:[185,3,1,""],save_on_top:[185,4,1,""],search_fields:[185,4,1,""],subscriptions:[185,3,1,""]},"evennia.comms.admin.ChannelAttributeInline":{media:[185,3,1,""],model:[185,4,1,""],related_field:[185,4,1,""]},"evennia.comms.admin.ChannelTagInline":{media:[185,3,1,""],model:[185,4,1,""],related_field:[185,4,1,""]},"evennia.comms.admin.MsgAdmin":{list_display:[185,4,1,""],list_display_links:[185,4,1,""],list_select_related:[185,4,1,""],media:[185,3,1,""],ordering:[185,4,1,""],save_as:[185,4,1,""],save_on_top:[185,4,1,""],search_fields:[185,4,1,""]},"evennia.comms.channelhandler":{ChannelCommand:[186,1,1,""],ChannelHandler:[186,1,1,""]},"evennia.comms.channelhandler.ChannelCommand":{aliases:[186,4,1,""],arg_regex:[186,4,1,""],func:[186,3,1,""],get_extra_info:[186,3,1,""],help_category:[186,4,1,""],is_channel:[186,4,1,""],key:[186,4,1,""],lock_storage:[186,4,1,""],obj:[186,4,1,""],parse:[186,3,1,""],search_index_entry:[186,4,1,""]},"evennia.comms.channelhandler.ChannelHandler":{__init__:[186,3,1,""],add:[186,3,1,""],add_channel:[186,3,1,""],clear:[186,3,1,""],get:[186,3,1,""],get_cmdset:[186,3,1,""],remove:[186,3,1,""],update:[186,3,1,""]},"evennia.comms.comms":{DefaultChannel:[187,1,1,""]},"evennia.comms.comms.DefaultChannel":{"delete":[187,3,1,""],DoesNotExist:[187,2,1,""],MultipleObjectsReturned:[187,2,1,""],access:[187,3,1,""],at_channel_creation:[187,3,1,""],at_first_save:[187,3,1,""],at_init:[187,3,1,""],basetype_setup:[187,3,1,""],channel_prefix:[187,3,1,""],connect:[187,3,1,""],create:[187,3,1,""],disconnect:[187,3,1,""],distribute_message:[187,3,1,""],format_external:[187,3,1,""],format_message:[187,3,1,""],format_senders:[187,3,1,""],get_absolute_url:[187,3,1,""],has_connection:[187,3,1,""],message_transform:[187,3,1,""],msg:[187,3,1,""],mute:[187,3,1,""],mutelist:[187,3,1,""],objects:[187,4,1,""],path:[187,4,1,""],pose_transform:[187,3,1,""],post_join_channel:[187,3,1,""],post_leave_channel:[187,3,1,""],post_send_message:[187,3,1,""],pre_join_channel:[187,3,1,""],pre_leave_channel:[187,3,1,""],pre_send_message:[187,3,1,""],tempmsg:[187,3,1,""],typename:[187,4,1,""],unmute:[187,3,1,""],web_get_admin_url:[187,3,1,""],web_get_create_url:[187,3,1,""],web_get_delete_url:[187,3,1,""],web_get_detail_url:[187,3,1,""],web_get_update_url:[187,3,1,""],wholist:[187,3,1,""]},"evennia.comms.managers":{ChannelDBManager:[188,1,1,""],ChannelManager:[188,1,1,""],CommError:[188,2,1,""],MsgManager:[188,1,1,""],identify_object:[188,5,1,""],to_object:[188,5,1,""]},"evennia.comms.managers.ChannelDBManager":{channel_search:[188,3,1,""],get_all_channels:[188,3,1,""],get_channel:[188,3,1,""],get_subscriptions:[188,3,1,""],search_channel:[188,3,1,""]},"evennia.comms.managers.MsgManager":{get_message_by_id:[188,3,1,""],get_messages_by_channel:[188,3,1,""],get_messages_by_receiver:[188,3,1,""],get_messages_by_sender:[188,3,1,""],identify_object:[188,3,1,""],message_search:[188,3,1,""],search_message:[188,3,1,""]},"evennia.comms.models":{ChannelDB:[189,1,1,""],Msg:[189,1,1,""],TempMsg:[189,1,1,""]},"evennia.comms.models.ChannelDB":{DoesNotExist:[189,2,1,""],MultipleObjectsReturned:[189,2,1,""],channel_set:[189,4,1,""],db_account_subscriptions:[189,4,1,""],db_attributes:[189,4,1,""],db_object_subscriptions:[189,4,1,""],db_tags:[189,4,1,""],get_next_by_db_date_created:[189,3,1,""],get_previous_by_db_date_created:[189,3,1,""],hide_from_channels_set:[189,4,1,""],id:[189,4,1,""],objects:[189,4,1,""],path:[189,4,1,""],subscriptions:[189,4,1,""],typename:[189,4,1,""]},"evennia.comms.models.Msg":{DoesNotExist:[189,2,1,""],MultipleObjectsReturned:[189,2,1,""],__init__:[189,3,1,""],access:[189,3,1,""],channels:[189,3,1,""],date_created:[189,3,1,""],db_date_created:[189,4,1,""],db_header:[189,4,1,""],db_hide_from_accounts:[189,4,1,""],db_hide_from_channels:[189,4,1,""],db_hide_from_objects:[189,4,1,""],db_lock_storage:[189,4,1,""],db_message:[189,4,1,""],db_receivers_accounts:[189,4,1,""],db_receivers_channels:[189,4,1,""],db_receivers_objects:[189,4,1,""],db_receivers_scripts:[189,4,1,""],db_sender_accounts:[189,4,1,""],db_sender_external:[189,4,1,""],db_sender_objects:[189,4,1,""],db_sender_scripts:[189,4,1,""],db_tags:[189,4,1,""],get_next_by_db_date_created:[189,3,1,""],get_previous_by_db_date_created:[189,3,1,""],header:[189,3,1,""],hide_from:[189,3,1,""],id:[189,4,1,""],lock_storage:[189,3,1,""],locks:[189,4,1,""],message:[189,3,1,""],objects:[189,4,1,""],path:[189,4,1,""],receivers:[189,3,1,""],remove_receiver:[189,3,1,""],remove_sender:[189,3,1,""],sender_external:[189,3,1,""],senders:[189,3,1,""],tags:[189,4,1,""],typename:[189,4,1,""]},"evennia.comms.models.TempMsg":{__init__:[189,3,1,""],access:[189,3,1,""],locks:[189,4,1,""],remove_receiver:[189,3,1,""],remove_sender:[189,3,1,""]},"evennia.contrib":{awsstorage:[191,0,0,"-"],barter:[194,0,0,"-"],building_menu:[195,0,0,"-"],chargen:[196,0,0,"-"],clothing:[197,0,0,"-"],color_markups:[198,0,0,"-"],custom_gametime:[199,0,0,"-"],dice:[200,0,0,"-"],email_login:[201,0,0,"-"],extended_room:[202,0,0,"-"],fieldfill:[203,0,0,"-"],gendersub:[204,0,0,"-"],health_bar:[205,0,0,"-"],ingame_python:[206,0,0,"-"],mail:[214,0,0,"-"],mapbuilder:[215,0,0,"-"],menu_login:[216,0,0,"-"],multidescer:[217,0,0,"-"],puzzles:[218,0,0,"-"],random_string_generator:[219,0,0,"-"],rplanguage:[220,0,0,"-"],rpsystem:[221,0,0,"-"],security:[222,0,0,"-"],simpledoor:[227,0,0,"-"],slow_exit:[228,0,0,"-"],talking_npc:[229,0,0,"-"],test_traits:[230,0,0,"-"],traits:[231,0,0,"-"],tree_select:[232,0,0,"-"],turnbattle:[233,0,0,"-"],tutorial_examples:[239,0,0,"-"],tutorial_world:[247,0,0,"-"],unixcommand:[251,0,0,"-"],wilderness:[252,0,0,"-"]},"evennia.contrib.awsstorage":{aws_s3_cdn:[192,0,0,"-"],tests:[193,0,0,"-"]},"evennia.contrib.awsstorage.aws_s3_cdn":{S3Boto3Storage:[192,1,1,""],S3Boto3StorageFile:[192,1,1,""],check_location:[192,5,1,""],get_available_overwrite_name:[192,5,1,""],lookup_env:[192,5,1,""],safe_join:[192,5,1,""],setting:[192,5,1,""]},"evennia.contrib.awsstorage.aws_s3_cdn.S3Boto3Storage":{"delete":[192,3,1,""],__init__:[192,3,1,""],access_key:[192,4,1,""],access_key_names:[192,4,1,""],addressing_style:[192,4,1,""],auto_create_bucket:[192,4,1,""],bucket:[192,3,1,""],bucket_acl:[192,4,1,""],bucket_name:[192,4,1,""],config:[192,4,1,""],connection:[192,3,1,""],custom_domain:[192,4,1,""],deconstruct:[192,3,1,""],default_acl:[192,4,1,""],default_content_type:[192,4,1,""],encryption:[192,4,1,""],endpoint_url:[192,4,1,""],entries:[192,3,1,""],exists:[192,3,1,""],file_name_charset:[192,4,1,""],file_overwrite:[192,4,1,""],get_available_name:[192,3,1,""],get_modified_time:[192,3,1,""],get_object_parameters:[192,3,1,""],gzip:[192,4,1,""],gzip_content_types:[192,4,1,""],listdir:[192,3,1,""],location:[192,4,1,""],max_memory_size:[192,4,1,""],modified_time:[192,3,1,""],object_parameters:[192,4,1,""],preload_metadata:[192,4,1,""],proxies:[192,4,1,""],querystring_auth:[192,4,1,""],querystring_expire:[192,4,1,""],reduced_redundancy:[192,4,1,""],region_name:[192,4,1,""],secret_key:[192,4,1,""],secret_key_names:[192,4,1,""],secure_urls:[192,4,1,""],security_token:[192,4,1,""],security_token_names:[192,4,1,""],signature_version:[192,4,1,""],size:[192,3,1,""],url:[192,3,1,""],url_protocol:[192,4,1,""],use_ssl:[192,4,1,""],verify:[192,4,1,""]},"evennia.contrib.awsstorage.aws_s3_cdn.S3Boto3StorageFile":{__init__:[192,3,1,""],buffer_size:[192,4,1,""],close:[192,3,1,""],deconstruct:[192,3,1,""],file:[192,3,1,""],read:[192,3,1,""],readline:[192,3,1,""],size:[192,3,1,""],write:[192,3,1,""]},"evennia.contrib.awsstorage.tests":{S3Boto3StorageTests:[193,1,1,""],S3Boto3TestCase:[193,1,1,""]},"evennia.contrib.awsstorage.tests.S3Boto3StorageTests":{test_auto_creating_bucket:[193,3,1,""],test_auto_creating_bucket_with_acl:[193,3,1,""],test_clean_name:[193,3,1,""],test_clean_name_normalize:[193,3,1,""],test_clean_name_trailing_slash:[193,3,1,""],test_clean_name_windows:[193,3,1,""],test_compress_content_len:[193,3,1,""],test_connection_threading:[193,3,1,""],test_content_type:[193,3,1,""],test_generated_url_is_encoded:[193,3,1,""],test_location_leading_slash:[193,3,1,""],test_override_class_variable:[193,3,1,""],test_override_init_argument:[193,3,1,""],test_pickle_with_bucket:[193,3,1,""],test_pickle_without_bucket:[193,3,1,""],test_special_characters:[193,3,1,""],test_storage_delete:[193,3,1,""],test_storage_exists:[193,3,1,""],test_storage_exists_doesnt_create_bucket:[193,3,1,""],test_storage_exists_false:[193,3,1,""],test_storage_listdir_base:[193,3,1,""],test_storage_listdir_subdir:[193,3,1,""],test_storage_mtime:[193,3,1,""],test_storage_open_no_overwrite_existing:[193,3,1,""],test_storage_open_no_write:[193,3,1,""],test_storage_open_write:[193,3,1,""],test_storage_save:[193,3,1,""],test_storage_save_gzip:[193,3,1,""],test_storage_save_gzip_twice:[193,3,1,""],test_storage_save_gzipped:[193,3,1,""],test_storage_save_with_acl:[193,3,1,""],test_storage_size:[193,3,1,""],test_storage_url:[193,3,1,""],test_storage_url_slashes:[193,3,1,""],test_storage_write_beyond_buffer_size:[193,3,1,""],test_strip_signing_parameters:[193,3,1,""]},"evennia.contrib.awsstorage.tests.S3Boto3TestCase":{setUp:[193,3,1,""]},"evennia.contrib.barter":{CmdAccept:[194,1,1,""],CmdDecline:[194,1,1,""],CmdEvaluate:[194,1,1,""],CmdFinish:[194,1,1,""],CmdOffer:[194,1,1,""],CmdStatus:[194,1,1,""],CmdTrade:[194,1,1,""],CmdTradeBase:[194,1,1,""],CmdTradeHelp:[194,1,1,""],CmdsetTrade:[194,1,1,""],TradeHandler:[194,1,1,""],TradeTimeout:[194,1,1,""]},"evennia.contrib.barter.CmdAccept":{aliases:[194,4,1,""],func:[194,3,1,""],help_category:[194,4,1,""],key:[194,4,1,""],lock_storage:[194,4,1,""],locks:[194,4,1,""],search_index_entry:[194,4,1,""]},"evennia.contrib.barter.CmdDecline":{aliases:[194,4,1,""],func:[194,3,1,""],help_category:[194,4,1,""],key:[194,4,1,""],lock_storage:[194,4,1,""],locks:[194,4,1,""],search_index_entry:[194,4,1,""]},"evennia.contrib.barter.CmdEvaluate":{aliases:[194,4,1,""],func:[194,3,1,""],help_category:[194,4,1,""],key:[194,4,1,""],lock_storage:[194,4,1,""],locks:[194,4,1,""],search_index_entry:[194,4,1,""]},"evennia.contrib.barter.CmdFinish":{aliases:[194,4,1,""],func:[194,3,1,""],help_category:[194,4,1,""],key:[194,4,1,""],lock_storage:[194,4,1,""],locks:[194,4,1,""],search_index_entry:[194,4,1,""]},"evennia.contrib.barter.CmdOffer":{aliases:[194,4,1,""],func:[194,3,1,""],help_category:[194,4,1,""],key:[194,4,1,""],lock_storage:[194,4,1,""],locks:[194,4,1,""],search_index_entry:[194,4,1,""]},"evennia.contrib.barter.CmdStatus":{aliases:[194,4,1,""],func:[194,3,1,""],help_category:[194,4,1,""],key:[194,4,1,""],lock_storage:[194,4,1,""],locks:[194,4,1,""],search_index_entry:[194,4,1,""]},"evennia.contrib.barter.CmdTrade":{aliases:[194,4,1,""],func:[194,3,1,""],help_category:[194,4,1,""],key:[194,4,1,""],lock_storage:[194,4,1,""],locks:[194,4,1,""],search_index_entry:[194,4,1,""]},"evennia.contrib.barter.CmdTradeBase":{aliases:[194,4,1,""],help_category:[194,4,1,""],key:[194,4,1,""],lock_storage:[194,4,1,""],parse:[194,3,1,""],search_index_entry:[194,4,1,""]},"evennia.contrib.barter.CmdTradeHelp":{aliases:[194,4,1,""],func:[194,3,1,""],help_category:[194,4,1,""],key:[194,4,1,""],lock_storage:[194,4,1,""],locks:[194,4,1,""],search_index_entry:[194,4,1,""]},"evennia.contrib.barter.CmdsetTrade":{at_cmdset_creation:[194,3,1,""],key:[194,4,1,""],path:[194,4,1,""]},"evennia.contrib.barter.TradeHandler":{__init__:[194,3,1,""],accept:[194,3,1,""],decline:[194,3,1,""],finish:[194,3,1,""],get_other:[194,3,1,""],join:[194,3,1,""],list:[194,3,1,""],msg_other:[194,3,1,""],offer:[194,3,1,""],search:[194,3,1,""],unjoin:[194,3,1,""]},"evennia.contrib.barter.TradeTimeout":{DoesNotExist:[194,2,1,""],MultipleObjectsReturned:[194,2,1,""],at_repeat:[194,3,1,""],at_script_creation:[194,3,1,""],is_valid:[194,3,1,""],path:[194,4,1,""],typename:[194,4,1,""]},"evennia.contrib.building_menu":{BuildingMenu:[195,1,1,""],BuildingMenuCmdSet:[195,1,1,""],Choice:[195,1,1,""],CmdNoInput:[195,1,1,""],CmdNoMatch:[195,1,1,""],GenericBuildingCmd:[195,1,1,""],GenericBuildingMenu:[195,1,1,""],menu_edit:[195,5,1,""],menu_quit:[195,5,1,""],menu_setattr:[195,5,1,""]},"evennia.contrib.building_menu.BuildingMenu":{__init__:[195,3,1,""],add_choice:[195,3,1,""],add_choice_edit:[195,3,1,""],add_choice_quit:[195,3,1,""],close:[195,3,1,""],current_choice:[195,3,1,""],display:[195,3,1,""],display_choice:[195,3,1,""],display_title:[195,3,1,""],init:[195,3,1,""],joker_key:[195,4,1,""],keys_go_back:[195,4,1,""],min_shortcut:[195,4,1,""],move:[195,3,1,""],open:[195,3,1,""],open_parent_menu:[195,3,1,""],open_submenu:[195,3,1,""],relevant_choices:[195,3,1,""],restore:[195,3,1,""],sep_keys:[195,4,1,""]},"evennia.contrib.building_menu.BuildingMenuCmdSet":{at_cmdset_creation:[195,3,1,""],key:[195,4,1,""],path:[195,4,1,""],priority:[195,4,1,""]},"evennia.contrib.building_menu.Choice":{__init__:[195,3,1,""],enter:[195,3,1,""],format_text:[195,3,1,""],keys:[195,3,1,""],leave:[195,3,1,""],nomatch:[195,3,1,""]},"evennia.contrib.building_menu.CmdNoInput":{__init__:[195,3,1,""],aliases:[195,4,1,""],func:[195,3,1,""],help_category:[195,4,1,""],key:[195,4,1,""],lock_storage:[195,4,1,""],locks:[195,4,1,""],search_index_entry:[195,4,1,""]},"evennia.contrib.building_menu.CmdNoMatch":{__init__:[195,3,1,""],aliases:[195,4,1,""],func:[195,3,1,""],help_category:[195,4,1,""],key:[195,4,1,""],lock_storage:[195,4,1,""],locks:[195,4,1,""],search_index_entry:[195,4,1,""]},"evennia.contrib.building_menu.GenericBuildingCmd":{aliases:[195,4,1,""],func:[195,3,1,""],help_category:[195,4,1,""],key:[195,4,1,""],lock_storage:[195,4,1,""],search_index_entry:[195,4,1,""]},"evennia.contrib.building_menu.GenericBuildingMenu":{init:[195,3,1,""]},"evennia.contrib.chargen":{CmdOOCCharacterCreate:[196,1,1,""],CmdOOCLook:[196,1,1,""],OOCCmdSetCharGen:[196,1,1,""]},"evennia.contrib.chargen.CmdOOCCharacterCreate":{aliases:[196,4,1,""],func:[196,3,1,""],help_category:[196,4,1,""],key:[196,4,1,""],lock_storage:[196,4,1,""],locks:[196,4,1,""],search_index_entry:[196,4,1,""]},"evennia.contrib.chargen.CmdOOCLook":{aliases:[196,4,1,""],func:[196,3,1,""],help_category:[196,4,1,""],key:[196,4,1,""],lock_storage:[196,4,1,""],locks:[196,4,1,""],search_index_entry:[196,4,1,""]},"evennia.contrib.chargen.OOCCmdSetCharGen":{at_cmdset_creation:[196,3,1,""],path:[196,4,1,""]},"evennia.contrib.clothing":{ClothedCharacter:[197,1,1,""],ClothedCharacterCmdSet:[197,1,1,""],Clothing:[197,1,1,""],CmdCover:[197,1,1,""],CmdDrop:[197,1,1,""],CmdGive:[197,1,1,""],CmdInventory:[197,1,1,""],CmdRemove:[197,1,1,""],CmdUncover:[197,1,1,""],CmdWear:[197,1,1,""],clothing_type_count:[197,5,1,""],get_worn_clothes:[197,5,1,""],order_clothes_list:[197,5,1,""],single_type_count:[197,5,1,""]},"evennia.contrib.clothing.ClothedCharacter":{DoesNotExist:[197,2,1,""],MultipleObjectsReturned:[197,2,1,""],path:[197,4,1,""],return_appearance:[197,3,1,""],typename:[197,4,1,""]},"evennia.contrib.clothing.ClothedCharacterCmdSet":{at_cmdset_creation:[197,3,1,""],key:[197,4,1,""],path:[197,4,1,""]},"evennia.contrib.clothing.Clothing":{DoesNotExist:[197,2,1,""],MultipleObjectsReturned:[197,2,1,""],at_get:[197,3,1,""],path:[197,4,1,""],remove:[197,3,1,""],typename:[197,4,1,""],wear:[197,3,1,""]},"evennia.contrib.clothing.CmdCover":{aliases:[197,4,1,""],func:[197,3,1,""],help_category:[197,4,1,""],key:[197,4,1,""],lock_storage:[197,4,1,""],search_index_entry:[197,4,1,""]},"evennia.contrib.clothing.CmdDrop":{aliases:[197,4,1,""],arg_regex:[197,4,1,""],func:[197,3,1,""],help_category:[197,4,1,""],key:[197,4,1,""],lock_storage:[197,4,1,""],locks:[197,4,1,""],search_index_entry:[197,4,1,""]},"evennia.contrib.clothing.CmdGive":{aliases:[197,4,1,""],arg_regex:[197,4,1,""],func:[197,3,1,""],help_category:[197,4,1,""],key:[197,4,1,""],lock_storage:[197,4,1,""],locks:[197,4,1,""],search_index_entry:[197,4,1,""]},"evennia.contrib.clothing.CmdInventory":{aliases:[197,4,1,""],arg_regex:[197,4,1,""],func:[197,3,1,""],help_category:[197,4,1,""],key:[197,4,1,""],lock_storage:[197,4,1,""],locks:[197,4,1,""],search_index_entry:[197,4,1,""]},"evennia.contrib.clothing.CmdRemove":{aliases:[197,4,1,""],func:[197,3,1,""],help_category:[197,4,1,""],key:[197,4,1,""],lock_storage:[197,4,1,""],search_index_entry:[197,4,1,""]},"evennia.contrib.clothing.CmdUncover":{aliases:[197,4,1,""],func:[197,3,1,""],help_category:[197,4,1,""],key:[197,4,1,""],lock_storage:[197,4,1,""],search_index_entry:[197,4,1,""]},"evennia.contrib.clothing.CmdWear":{aliases:[197,4,1,""],func:[197,3,1,""],help_category:[197,4,1,""],key:[197,4,1,""],lock_storage:[197,4,1,""],search_index_entry:[197,4,1,""]},"evennia.contrib.custom_gametime":{GametimeScript:[199,1,1,""],custom_gametime:[199,5,1,""],gametime_to_realtime:[199,5,1,""],real_seconds_until:[199,5,1,""],realtime_to_gametime:[199,5,1,""],schedule:[199,5,1,""],time_to_tuple:[199,5,1,""]},"evennia.contrib.custom_gametime.GametimeScript":{DoesNotExist:[199,2,1,""],MultipleObjectsReturned:[199,2,1,""],at_repeat:[199,3,1,""],at_script_creation:[199,3,1,""],path:[199,4,1,""],typename:[199,4,1,""]},"evennia.contrib.dice":{CmdDice:[200,1,1,""],DiceCmdSet:[200,1,1,""],roll_dice:[200,5,1,""]},"evennia.contrib.dice.CmdDice":{aliases:[200,4,1,""],func:[200,3,1,""],help_category:[200,4,1,""],key:[200,4,1,""],lock_storage:[200,4,1,""],locks:[200,4,1,""],search_index_entry:[200,4,1,""]},"evennia.contrib.dice.DiceCmdSet":{at_cmdset_creation:[200,3,1,""],path:[200,4,1,""]},"evennia.contrib.email_login":{CmdUnconnectedConnect:[201,1,1,""],CmdUnconnectedCreate:[201,1,1,""],CmdUnconnectedHelp:[201,1,1,""],CmdUnconnectedLook:[201,1,1,""],CmdUnconnectedQuit:[201,1,1,""]},"evennia.contrib.email_login.CmdUnconnectedConnect":{aliases:[201,4,1,""],func:[201,3,1,""],help_category:[201,4,1,""],key:[201,4,1,""],lock_storage:[201,4,1,""],locks:[201,4,1,""],search_index_entry:[201,4,1,""]},"evennia.contrib.email_login.CmdUnconnectedCreate":{aliases:[201,4,1,""],func:[201,3,1,""],help_category:[201,4,1,""],key:[201,4,1,""],lock_storage:[201,4,1,""],locks:[201,4,1,""],parse:[201,3,1,""],search_index_entry:[201,4,1,""]},"evennia.contrib.email_login.CmdUnconnectedHelp":{aliases:[201,4,1,""],func:[201,3,1,""],help_category:[201,4,1,""],key:[201,4,1,""],lock_storage:[201,4,1,""],locks:[201,4,1,""],search_index_entry:[201,4,1,""]},"evennia.contrib.email_login.CmdUnconnectedLook":{aliases:[201,4,1,""],func:[201,3,1,""],help_category:[201,4,1,""],key:[201,4,1,""],lock_storage:[201,4,1,""],locks:[201,4,1,""],search_index_entry:[201,4,1,""]},"evennia.contrib.email_login.CmdUnconnectedQuit":{aliases:[201,4,1,""],func:[201,3,1,""],help_category:[201,4,1,""],key:[201,4,1,""],lock_storage:[201,4,1,""],locks:[201,4,1,""],search_index_entry:[201,4,1,""]},"evennia.contrib.extended_room":{CmdExtendedRoomDesc:[202,1,1,""],CmdExtendedRoomDetail:[202,1,1,""],CmdExtendedRoomGameTime:[202,1,1,""],CmdExtendedRoomLook:[202,1,1,""],ExtendedRoom:[202,1,1,""],ExtendedRoomCmdSet:[202,1,1,""]},"evennia.contrib.extended_room.CmdExtendedRoomDesc":{aliases:[202,4,1,""],func:[202,3,1,""],help_category:[202,4,1,""],key:[202,4,1,""],lock_storage:[202,4,1,""],reset_times:[202,3,1,""],search_index_entry:[202,4,1,""],switch_options:[202,4,1,""]},"evennia.contrib.extended_room.CmdExtendedRoomDetail":{aliases:[202,4,1,""],func:[202,3,1,""],help_category:[202,4,1,""],key:[202,4,1,""],lock_storage:[202,4,1,""],locks:[202,4,1,""],search_index_entry:[202,4,1,""]},"evennia.contrib.extended_room.CmdExtendedRoomGameTime":{aliases:[202,4,1,""],func:[202,3,1,""],help_category:[202,4,1,""],key:[202,4,1,""],lock_storage:[202,4,1,""],locks:[202,4,1,""],search_index_entry:[202,4,1,""]},"evennia.contrib.extended_room.CmdExtendedRoomLook":{aliases:[202,4,1,""],func:[202,3,1,""],help_category:[202,4,1,""],key:[202,4,1,""],lock_storage:[202,4,1,""],search_index_entry:[202,4,1,""]},"evennia.contrib.extended_room.ExtendedRoom":{DoesNotExist:[202,2,1,""],MultipleObjectsReturned:[202,2,1,""],at_object_creation:[202,3,1,""],del_detail:[202,3,1,""],get_time_and_season:[202,3,1,""],path:[202,4,1,""],replace_timeslots:[202,3,1,""],return_appearance:[202,3,1,""],return_detail:[202,3,1,""],set_detail:[202,3,1,""],typename:[202,4,1,""],update_current_description:[202,3,1,""]},"evennia.contrib.extended_room.ExtendedRoomCmdSet":{at_cmdset_creation:[202,3,1,""],path:[202,4,1,""]},"evennia.contrib.fieldfill":{CmdTestMenu:[203,1,1,""],FieldEvMenu:[203,1,1,""],display_formdata:[203,5,1,""],form_template_to_dict:[203,5,1,""],init_delayed_message:[203,5,1,""],init_fill_field:[203,5,1,""],menunode_fieldfill:[203,5,1,""],sendmessage:[203,5,1,""],verify_online_player:[203,5,1,""]},"evennia.contrib.fieldfill.CmdTestMenu":{aliases:[203,4,1,""],func:[203,3,1,""],help_category:[203,4,1,""],key:[203,4,1,""],lock_storage:[203,4,1,""],search_index_entry:[203,4,1,""]},"evennia.contrib.fieldfill.FieldEvMenu":{node_formatter:[203,3,1,""]},"evennia.contrib.gendersub":{GenderCharacter:[204,1,1,""],SetGender:[204,1,1,""]},"evennia.contrib.gendersub.GenderCharacter":{DoesNotExist:[204,2,1,""],MultipleObjectsReturned:[204,2,1,""],at_object_creation:[204,3,1,""],msg:[204,3,1,""],path:[204,4,1,""],typename:[204,4,1,""]},"evennia.contrib.gendersub.SetGender":{aliases:[204,4,1,""],func:[204,3,1,""],help_category:[204,4,1,""],key:[204,4,1,""],lock_storage:[204,4,1,""],locks:[204,4,1,""],search_index_entry:[204,4,1,""]},"evennia.contrib.health_bar":{display_meter:[205,5,1,""]},"evennia.contrib.ingame_python":{callbackhandler:[207,0,0,"-"],commands:[208,0,0,"-"],eventfuncs:[209,0,0,"-"],scripts:[210,0,0,"-"],tests:[211,0,0,"-"],typeclasses:[212,0,0,"-"],utils:[213,0,0,"-"]},"evennia.contrib.ingame_python.callbackhandler":{Callback:[207,1,1,""],CallbackHandler:[207,1,1,""]},"evennia.contrib.ingame_python.callbackhandler.Callback":{author:[207,3,1,""],code:[207,3,1,""],created_on:[207,3,1,""],name:[207,3,1,""],number:[207,3,1,""],obj:[207,3,1,""],parameters:[207,3,1,""],updated_by:[207,3,1,""],updated_on:[207,3,1,""],valid:[207,3,1,""]},"evennia.contrib.ingame_python.callbackhandler.CallbackHandler":{__init__:[207,3,1,""],add:[207,3,1,""],all:[207,3,1,""],call:[207,3,1,""],edit:[207,3,1,""],format_callback:[207,3,1,""],get:[207,3,1,""],get_variable:[207,3,1,""],remove:[207,3,1,""],script:[207,4,1,""]},"evennia.contrib.ingame_python.commands":{CmdCallback:[208,1,1,""]},"evennia.contrib.ingame_python.commands.CmdCallback":{accept_callback:[208,3,1,""],add_callback:[208,3,1,""],aliases:[208,4,1,""],del_callback:[208,3,1,""],edit_callback:[208,3,1,""],func:[208,3,1,""],get_help:[208,3,1,""],help_category:[208,4,1,""],key:[208,4,1,""],list_callbacks:[208,3,1,""],list_tasks:[208,3,1,""],lock_storage:[208,4,1,""],locks:[208,4,1,""],search_index_entry:[208,4,1,""]},"evennia.contrib.ingame_python.eventfuncs":{call_event:[209,5,1,""],deny:[209,5,1,""],get:[209,5,1,""]},"evennia.contrib.ingame_python.scripts":{EventHandler:[210,1,1,""],TimeEventScript:[210,1,1,""],complete_task:[210,5,1,""]},"evennia.contrib.ingame_python.scripts.EventHandler":{DoesNotExist:[210,2,1,""],MultipleObjectsReturned:[210,2,1,""],accept_callback:[210,3,1,""],add_callback:[210,3,1,""],add_event:[210,3,1,""],at_script_creation:[210,3,1,""],at_start:[210,3,1,""],call:[210,3,1,""],del_callback:[210,3,1,""],edit_callback:[210,3,1,""],get_callbacks:[210,3,1,""],get_events:[210,3,1,""],get_variable:[210,3,1,""],handle_error:[210,3,1,""],path:[210,4,1,""],set_task:[210,3,1,""],typename:[210,4,1,""]},"evennia.contrib.ingame_python.scripts.TimeEventScript":{DoesNotExist:[210,2,1,""],MultipleObjectsReturned:[210,2,1,""],at_repeat:[210,3,1,""],at_script_creation:[210,3,1,""],path:[210,4,1,""],typename:[210,4,1,""]},"evennia.contrib.ingame_python.tests":{TestCmdCallback:[211,1,1,""],TestDefaultCallbacks:[211,1,1,""],TestEventHandler:[211,1,1,""]},"evennia.contrib.ingame_python.tests.TestCmdCallback":{setUp:[211,3,1,""],tearDown:[211,3,1,""],test_accept:[211,3,1,""],test_add:[211,3,1,""],test_del:[211,3,1,""],test_list:[211,3,1,""],test_lock:[211,3,1,""]},"evennia.contrib.ingame_python.tests.TestDefaultCallbacks":{setUp:[211,3,1,""],tearDown:[211,3,1,""],test_exit:[211,3,1,""]},"evennia.contrib.ingame_python.tests.TestEventHandler":{setUp:[211,3,1,""],tearDown:[211,3,1,""],test_accept:[211,3,1,""],test_add_validation:[211,3,1,""],test_call:[211,3,1,""],test_del:[211,3,1,""],test_edit:[211,3,1,""],test_edit_validation:[211,3,1,""],test_handler:[211,3,1,""],test_start:[211,3,1,""]},"evennia.contrib.ingame_python.typeclasses":{EventCharacter:[212,1,1,""],EventExit:[212,1,1,""],EventObject:[212,1,1,""],EventRoom:[212,1,1,""]},"evennia.contrib.ingame_python.typeclasses.EventCharacter":{DoesNotExist:[212,2,1,""],MultipleObjectsReturned:[212,2,1,""],announce_move_from:[212,3,1,""],announce_move_to:[212,3,1,""],at_after_move:[212,3,1,""],at_before_move:[212,3,1,""],at_before_say:[212,3,1,""],at_object_delete:[212,3,1,""],at_post_puppet:[212,3,1,""],at_pre_unpuppet:[212,3,1,""],at_say:[212,3,1,""],callbacks:[212,4,1,""],path:[212,4,1,""],typename:[212,4,1,""]},"evennia.contrib.ingame_python.typeclasses.EventExit":{DoesNotExist:[212,2,1,""],MultipleObjectsReturned:[212,2,1,""],at_traverse:[212,3,1,""],callbacks:[212,4,1,""],path:[212,4,1,""],typename:[212,4,1,""]},"evennia.contrib.ingame_python.typeclasses.EventObject":{DoesNotExist:[212,2,1,""],MultipleObjectsReturned:[212,2,1,""],at_drop:[212,3,1,""],at_get:[212,3,1,""],callbacks:[212,4,1,""],path:[212,4,1,""],typename:[212,4,1,""]},"evennia.contrib.ingame_python.typeclasses.EventRoom":{DoesNotExist:[212,2,1,""],MultipleObjectsReturned:[212,2,1,""],at_object_delete:[212,3,1,""],callbacks:[212,4,1,""],path:[212,4,1,""],typename:[212,4,1,""]},"evennia.contrib.ingame_python.utils":{InterruptEvent:[213,2,1,""],get_event_handler:[213,5,1,""],get_next_wait:[213,5,1,""],keyword_event:[213,5,1,""],phrase_event:[213,5,1,""],register_events:[213,5,1,""],time_event:[213,5,1,""]},"evennia.contrib.mail":{CmdMail:[214,1,1,""],CmdMailCharacter:[214,1,1,""]},"evennia.contrib.mail.CmdMail":{aliases:[214,4,1,""],func:[214,3,1,""],get_all_mail:[214,3,1,""],help_category:[214,4,1,""],key:[214,4,1,""],lock:[214,4,1,""],lock_storage:[214,4,1,""],parse:[214,3,1,""],search_index_entry:[214,4,1,""],search_targets:[214,3,1,""],send_mail:[214,3,1,""]},"evennia.contrib.mail.CmdMailCharacter":{account_caller:[214,4,1,""],aliases:[214,4,1,""],help_category:[214,4,1,""],key:[214,4,1,""],lock_storage:[214,4,1,""],search_index_entry:[214,4,1,""]},"evennia.contrib.mapbuilder":{CmdMapBuilder:[215,1,1,""],build_map:[215,5,1,""],example1_build_forest:[215,5,1,""],example1_build_mountains:[215,5,1,""],example1_build_temple:[215,5,1,""],example2_build_forest:[215,5,1,""],example2_build_horizontal_exit:[215,5,1,""],example2_build_verticle_exit:[215,5,1,""]},"evennia.contrib.mapbuilder.CmdMapBuilder":{aliases:[215,4,1,""],func:[215,3,1,""],help_category:[215,4,1,""],key:[215,4,1,""],lock_storage:[215,4,1,""],locks:[215,4,1,""],search_index_entry:[215,4,1,""]},"evennia.contrib.menu_login":{CmdUnloggedinLook:[216,1,1,""],UnloggedinCmdSet:[216,1,1,""],node_enter_password:[216,5,1,""],node_enter_username:[216,5,1,""],node_quit_or_login:[216,5,1,""]},"evennia.contrib.menu_login.CmdUnloggedinLook":{aliases:[216,4,1,""],arg_regex:[216,4,1,""],func:[216,3,1,""],help_category:[216,4,1,""],key:[216,4,1,""],lock_storage:[216,4,1,""],locks:[216,4,1,""],search_index_entry:[216,4,1,""]},"evennia.contrib.menu_login.UnloggedinCmdSet":{at_cmdset_creation:[216,3,1,""],key:[216,4,1,""],path:[216,4,1,""],priority:[216,4,1,""]},"evennia.contrib.multidescer":{CmdMultiDesc:[217,1,1,""],DescValidateError:[217,2,1,""]},"evennia.contrib.multidescer.CmdMultiDesc":{aliases:[217,4,1,""],func:[217,3,1,""],help_category:[217,4,1,""],key:[217,4,1,""],lock_storage:[217,4,1,""],locks:[217,4,1,""],search_index_entry:[217,4,1,""]},"evennia.contrib.puzzles":{CmdArmPuzzle:[218,1,1,""],CmdCreatePuzzleRecipe:[218,1,1,""],CmdEditPuzzle:[218,1,1,""],CmdListArmedPuzzles:[218,1,1,""],CmdListPuzzleRecipes:[218,1,1,""],CmdUsePuzzleParts:[218,1,1,""],PuzzleRecipe:[218,1,1,""],PuzzleSystemCmdSet:[218,1,1,""],maskout_protodef:[218,5,1,""],proto_def:[218,5,1,""]},"evennia.contrib.puzzles.CmdArmPuzzle":{aliases:[218,4,1,""],func:[218,3,1,""],help_category:[218,4,1,""],key:[218,4,1,""],lock_storage:[218,4,1,""],locks:[218,4,1,""],search_index_entry:[218,4,1,""]},"evennia.contrib.puzzles.CmdCreatePuzzleRecipe":{aliases:[218,4,1,""],confirm:[218,4,1,""],default_confirm:[218,4,1,""],func:[218,3,1,""],help_category:[218,4,1,""],key:[218,4,1,""],lock_storage:[218,4,1,""],locks:[218,4,1,""],search_index_entry:[218,4,1,""]},"evennia.contrib.puzzles.CmdEditPuzzle":{aliases:[218,4,1,""],func:[218,3,1,""],help_category:[218,4,1,""],key:[218,4,1,""],lock_storage:[218,4,1,""],locks:[218,4,1,""],search_index_entry:[218,4,1,""]},"evennia.contrib.puzzles.CmdListArmedPuzzles":{aliases:[218,4,1,""],func:[218,3,1,""],help_category:[218,4,1,""],key:[218,4,1,""],lock_storage:[218,4,1,""],locks:[218,4,1,""],search_index_entry:[218,4,1,""]},"evennia.contrib.puzzles.CmdListPuzzleRecipes":{aliases:[218,4,1,""],func:[218,3,1,""],help_category:[218,4,1,""],key:[218,4,1,""],lock_storage:[218,4,1,""],locks:[218,4,1,""],search_index_entry:[218,4,1,""]},"evennia.contrib.puzzles.CmdUsePuzzleParts":{aliases:[218,4,1,""],func:[218,3,1,""],help_category:[218,4,1,""],key:[218,4,1,""],lock_storage:[218,4,1,""],locks:[218,4,1,""],search_index_entry:[218,4,1,""]},"evennia.contrib.puzzles.PuzzleRecipe":{DoesNotExist:[218,2,1,""],MultipleObjectsReturned:[218,2,1,""],path:[218,4,1,""],save_recipe:[218,3,1,""],typename:[218,4,1,""]},"evennia.contrib.puzzles.PuzzleSystemCmdSet":{at_cmdset_creation:[218,3,1,""],path:[218,4,1,""]},"evennia.contrib.random_string_generator":{ExhaustedGenerator:[219,2,1,""],RandomStringGenerator:[219,1,1,""],RandomStringGeneratorScript:[219,1,1,""],RejectedRegex:[219,2,1,""]},"evennia.contrib.random_string_generator.RandomStringGenerator":{__init__:[219,3,1,""],all:[219,3,1,""],clear:[219,3,1,""],get:[219,3,1,""],remove:[219,3,1,""],script:[219,4,1,""]},"evennia.contrib.random_string_generator.RandomStringGeneratorScript":{DoesNotExist:[219,2,1,""],MultipleObjectsReturned:[219,2,1,""],at_script_creation:[219,3,1,""],path:[219,4,1,""],typename:[219,4,1,""]},"evennia.contrib.rplanguage":{LanguageError:[220,2,1,""],LanguageExistsError:[220,2,1,""],LanguageHandler:[220,1,1,""],add_language:[220,5,1,""],available_languages:[220,5,1,""],obfuscate_language:[220,5,1,""],obfuscate_whisper:[220,5,1,""]},"evennia.contrib.rplanguage.LanguageHandler":{DoesNotExist:[220,2,1,""],MultipleObjectsReturned:[220,2,1,""],add:[220,3,1,""],at_script_creation:[220,3,1,""],path:[220,4,1,""],translate:[220,3,1,""],typename:[220,4,1,""]},"evennia.contrib.rpsystem":{CmdEmote:[221,1,1,""],CmdMask:[221,1,1,""],CmdPose:[221,1,1,""],CmdRecog:[221,1,1,""],CmdSay:[221,1,1,""],CmdSdesc:[221,1,1,""],ContribRPCharacter:[221,1,1,""],ContribRPObject:[221,1,1,""],ContribRPRoom:[221,1,1,""],EmoteError:[221,2,1,""],LanguageError:[221,2,1,""],RPCommand:[221,1,1,""],RPSystemCmdSet:[221,1,1,""],RecogError:[221,2,1,""],RecogHandler:[221,1,1,""],SdescError:[221,2,1,""],SdescHandler:[221,1,1,""],ordered_permutation_regex:[221,5,1,""],parse_language:[221,5,1,""],parse_sdescs_and_recogs:[221,5,1,""],regex_tuple_from_key_alias:[221,5,1,""],send_emote:[221,5,1,""]},"evennia.contrib.rpsystem.CmdEmote":{aliases:[221,4,1,""],func:[221,3,1,""],help_category:[221,4,1,""],key:[221,4,1,""],lock_storage:[221,4,1,""],locks:[221,4,1,""],search_index_entry:[221,4,1,""]},"evennia.contrib.rpsystem.CmdMask":{aliases:[221,4,1,""],func:[221,3,1,""],help_category:[221,4,1,""],key:[221,4,1,""],lock_storage:[221,4,1,""],search_index_entry:[221,4,1,""]},"evennia.contrib.rpsystem.CmdPose":{aliases:[221,4,1,""],func:[221,3,1,""],help_category:[221,4,1,""],key:[221,4,1,""],lock_storage:[221,4,1,""],parse:[221,3,1,""],search_index_entry:[221,4,1,""]},"evennia.contrib.rpsystem.CmdRecog":{aliases:[221,4,1,""],func:[221,3,1,""],help_category:[221,4,1,""],key:[221,4,1,""],lock_storage:[221,4,1,""],parse:[221,3,1,""],search_index_entry:[221,4,1,""]},"evennia.contrib.rpsystem.CmdSay":{aliases:[221,4,1,""],func:[221,3,1,""],help_category:[221,4,1,""],key:[221,4,1,""],lock_storage:[221,4,1,""],locks:[221,4,1,""],search_index_entry:[221,4,1,""]},"evennia.contrib.rpsystem.CmdSdesc":{aliases:[221,4,1,""],func:[221,3,1,""],help_category:[221,4,1,""],key:[221,4,1,""],lock_storage:[221,4,1,""],locks:[221,4,1,""],search_index_entry:[221,4,1,""]},"evennia.contrib.rpsystem.ContribRPCharacter":{DoesNotExist:[221,2,1,""],MultipleObjectsReturned:[221,2,1,""],at_before_say:[221,3,1,""],at_object_creation:[221,3,1,""],get_display_name:[221,3,1,""],path:[221,4,1,""],process_language:[221,3,1,""],process_recog:[221,3,1,""],process_sdesc:[221,3,1,""],recog:[221,4,1,""],sdesc:[221,4,1,""],typename:[221,4,1,""]},"evennia.contrib.rpsystem.ContribRPObject":{DoesNotExist:[221,2,1,""],MultipleObjectsReturned:[221,2,1,""],at_object_creation:[221,3,1,""],get_display_name:[221,3,1,""],path:[221,4,1,""],return_appearance:[221,3,1,""],search:[221,3,1,""],typename:[221,4,1,""]},"evennia.contrib.rpsystem.ContribRPRoom":{DoesNotExist:[221,2,1,""],MultipleObjectsReturned:[221,2,1,""],path:[221,4,1,""],typename:[221,4,1,""]},"evennia.contrib.rpsystem.RPCommand":{aliases:[221,4,1,""],help_category:[221,4,1,""],key:[221,4,1,""],lock_storage:[221,4,1,""],parse:[221,3,1,""],search_index_entry:[221,4,1,""]},"evennia.contrib.rpsystem.RPSystemCmdSet":{at_cmdset_creation:[221,3,1,""],path:[221,4,1,""]},"evennia.contrib.rpsystem.RecogHandler":{__init__:[221,3,1,""],add:[221,3,1,""],all:[221,3,1,""],get:[221,3,1,""],get_regex_tuple:[221,3,1,""],remove:[221,3,1,""]},"evennia.contrib.rpsystem.SdescHandler":{__init__:[221,3,1,""],add:[221,3,1,""],get:[221,3,1,""],get_regex_tuple:[221,3,1,""]},"evennia.contrib.security":{auditing:[223,0,0,"-"]},"evennia.contrib.security.auditing":{outputs:[224,0,0,"-"],server:[225,0,0,"-"],tests:[226,0,0,"-"]},"evennia.contrib.security.auditing.outputs":{to_file:[224,5,1,""],to_syslog:[224,5,1,""]},"evennia.contrib.security.auditing.server":{AuditedServerSession:[225,1,1,""]},"evennia.contrib.security.auditing.server.AuditedServerSession":{audit:[225,3,1,""],data_in:[225,3,1,""],data_out:[225,3,1,""],mask:[225,3,1,""]},"evennia.contrib.security.auditing.tests":{AuditingTest:[226,1,1,""]},"evennia.contrib.security.auditing.tests.AuditingTest":{test_audit:[226,3,1,""],test_mask:[226,3,1,""]},"evennia.contrib.simpledoor":{CmdOpen:[227,1,1,""],CmdOpenCloseDoor:[227,1,1,""],SimpleDoor:[227,1,1,""]},"evennia.contrib.simpledoor.CmdOpen":{aliases:[227,4,1,""],create_exit:[227,3,1,""],help_category:[227,4,1,""],key:[227,4,1,""],lock_storage:[227,4,1,""],search_index_entry:[227,4,1,""]},"evennia.contrib.simpledoor.CmdOpenCloseDoor":{aliases:[227,4,1,""],func:[227,3,1,""],help_category:[227,4,1,""],key:[227,4,1,""],lock_storage:[227,4,1,""],locks:[227,4,1,""],search_index_entry:[227,4,1,""]},"evennia.contrib.simpledoor.SimpleDoor":{"delete":[227,3,1,""],DoesNotExist:[227,2,1,""],MultipleObjectsReturned:[227,2,1,""],at_failed_traverse:[227,3,1,""],at_object_creation:[227,3,1,""],path:[227,4,1,""],setdesc:[227,3,1,""],setlock:[227,3,1,""],typename:[227,4,1,""]},"evennia.contrib.slow_exit":{CmdSetSpeed:[228,1,1,""],CmdStop:[228,1,1,""],SlowExit:[228,1,1,""]},"evennia.contrib.slow_exit.CmdSetSpeed":{aliases:[228,4,1,""],func:[228,3,1,""],help_category:[228,4,1,""],key:[228,4,1,""],lock_storage:[228,4,1,""],search_index_entry:[228,4,1,""]},"evennia.contrib.slow_exit.CmdStop":{aliases:[228,4,1,""],func:[228,3,1,""],help_category:[228,4,1,""],key:[228,4,1,""],lock_storage:[228,4,1,""],search_index_entry:[228,4,1,""]},"evennia.contrib.slow_exit.SlowExit":{DoesNotExist:[228,2,1,""],MultipleObjectsReturned:[228,2,1,""],at_traverse:[228,3,1,""],path:[228,4,1,""],typename:[228,4,1,""]},"evennia.contrib.talking_npc":{CmdTalk:[229,1,1,""],END:[229,5,1,""],TalkingCmdSet:[229,1,1,""],TalkingNPC:[229,1,1,""],info1:[229,5,1,""],info2:[229,5,1,""],info3:[229,5,1,""],menu_start_node:[229,5,1,""]},"evennia.contrib.talking_npc.CmdTalk":{aliases:[229,4,1,""],func:[229,3,1,""],help_category:[229,4,1,""],key:[229,4,1,""],lock_storage:[229,4,1,""],locks:[229,4,1,""],search_index_entry:[229,4,1,""]},"evennia.contrib.talking_npc.TalkingCmdSet":{at_cmdset_creation:[229,3,1,""],key:[229,4,1,""],path:[229,4,1,""]},"evennia.contrib.talking_npc.TalkingNPC":{DoesNotExist:[229,2,1,""],MultipleObjectsReturned:[229,2,1,""],at_object_creation:[229,3,1,""],path:[229,4,1,""],typename:[229,4,1,""]},"evennia.contrib.test_traits":{TestNumericTraitOperators:[230,1,1,""],TestTrait:[230,1,1,""],TestTraitCounter:[230,1,1,""],TestTraitCounterTimed:[230,1,1,""],TestTraitGauge:[230,1,1,""],TestTraitGaugeTimed:[230,1,1,""],TestTraitStatic:[230,1,1,""],TraitHandlerTest:[230,1,1,""]},"evennia.contrib.test_traits.TestNumericTraitOperators":{setUp:[230,3,1,""],tearDown:[230,3,1,""],test_add_traits:[230,3,1,""],test_comparisons_numeric:[230,3,1,""],test_comparisons_traits:[230,3,1,""],test_floordiv:[230,3,1,""],test_mul_traits:[230,3,1,""],test_pos_shortcut:[230,3,1,""],test_sub_traits:[230,3,1,""]},"evennia.contrib.test_traits.TestTrait":{setUp:[230,3,1,""],test_init:[230,3,1,""],test_repr:[230,3,1,""],test_trait_getset:[230,3,1,""],test_validate_input__fail:[230,3,1,""],test_validate_input__valid:[230,3,1,""]},"evennia.contrib.test_traits.TestTraitCounter":{setUp:[230,3,1,""],test_boundaries__bigmod:[230,3,1,""],test_boundaries__change_boundaries:[230,3,1,""],test_boundaries__disable:[230,3,1,""],test_boundaries__inverse:[230,3,1,""],test_boundaries__minmax:[230,3,1,""],test_current:[230,3,1,""],test_delete:[230,3,1,""],test_descs:[230,3,1,""],test_init:[230,3,1,""],test_percentage:[230,3,1,""],test_value:[230,3,1,""]},"evennia.contrib.test_traits.TestTraitCounterTimed":{setUp:[230,3,1,""],test_timer_rate:[230,3,1,""],test_timer_ratetarget:[230,3,1,""]},"evennia.contrib.test_traits.TestTraitGauge":{setUp:[230,3,1,""],test_boundaries__bigmod:[230,3,1,""],test_boundaries__change_boundaries:[230,3,1,""],test_boundaries__disable:[230,3,1,""],test_boundaries__inverse:[230,3,1,""],test_boundaries__minmax:[230,3,1,""],test_current:[230,3,1,""],test_delete:[230,3,1,""],test_descs:[230,3,1,""],test_init:[230,3,1,""],test_percentage:[230,3,1,""],test_value:[230,3,1,""]},"evennia.contrib.test_traits.TestTraitGaugeTimed":{setUp:[230,3,1,""],test_timer_rate:[230,3,1,""],test_timer_ratetarget:[230,3,1,""]},"evennia.contrib.test_traits.TestTraitStatic":{setUp:[230,3,1,""],test_delete:[230,3,1,""],test_init:[230,3,1,""],test_value:[230,3,1,""]},"evennia.contrib.test_traits.TraitHandlerTest":{setUp:[230,3,1,""],test_add_trait:[230,3,1,""],test_all:[230,3,1,""],test_cache:[230,3,1,""],test_clear:[230,3,1,""],test_getting:[230,3,1,""],test_remove:[230,3,1,""],test_setting:[230,3,1,""],test_trait_db_connection:[230,3,1,""]},"evennia.contrib.traits":{CounterTrait:[231,1,1,""],GaugeTrait:[231,1,1,""],MandatoryTraitKey:[231,1,1,""],StaticTrait:[231,1,1,""],Trait:[231,1,1,""],TraitException:[231,2,1,""],TraitHandler:[231,1,1,""],UpdatingTrait:[231,1,1,""]},"evennia.contrib.traits.CounterTrait":{base:[231,3,1,""],current:[231,3,1,""],default_keys:[231,4,1,""],desc:[231,3,1,""],max:[231,3,1,""],min:[231,3,1,""],mod:[231,3,1,""],percent:[231,3,1,""],ratetarget:[231,3,1,""],reset:[231,3,1,""],trait_type:[231,4,1,""],validate_input:[231,3,1,""],value:[231,3,1,""]},"evennia.contrib.traits.GaugeTrait":{base:[231,3,1,""],current:[231,3,1,""],default_keys:[231,4,1,""],max:[231,3,1,""],min:[231,3,1,""],mod:[231,3,1,""],percent:[231,3,1,""],reset:[231,3,1,""],trait_type:[231,4,1,""],value:[231,3,1,""]},"evennia.contrib.traits.StaticTrait":{default_keys:[231,4,1,""],mod:[231,3,1,""],trait_type:[231,4,1,""],value:[231,3,1,""]},"evennia.contrib.traits.Trait":{__init__:[231,3,1,""],allow_extra_properties:[231,4,1,""],default_keys:[231,4,1,""],key:[231,3,1,""],name:[231,3,1,""],trait_type:[231,4,1,""],validate_input:[231,3,1,""],value:[231,3,1,""]},"evennia.contrib.traits.TraitException":{__init__:[231,3,1,""]},"evennia.contrib.traits.TraitHandler":{__init__:[231,3,1,""],add:[231,3,1,""],all:[231,3,1,""],clear:[231,3,1,""],get:[231,3,1,""],remove:[231,3,1,""]},"evennia.contrib.tree_select":{CmdNameColor:[232,1,1,""],change_name_color:[232,5,1,""],dashcount:[232,5,1,""],go_up_one_category:[232,5,1,""],index_to_selection:[232,5,1,""],init_tree_selection:[232,5,1,""],is_category:[232,5,1,""],menunode_treeselect:[232,5,1,""],optlist_to_menuoptions:[232,5,1,""],parse_opts:[232,5,1,""]},"evennia.contrib.tree_select.CmdNameColor":{aliases:[232,4,1,""],func:[232,3,1,""],help_category:[232,4,1,""],key:[232,4,1,""],lock_storage:[232,4,1,""],search_index_entry:[232,4,1,""]},"evennia.contrib.turnbattle":{tb_basic:[234,0,0,"-"],tb_equip:[235,0,0,"-"],tb_items:[236,0,0,"-"],tb_magic:[237,0,0,"-"],tb_range:[238,0,0,"-"]},"evennia.contrib.turnbattle.tb_basic":{ACTIONS_PER_TURN:[234,6,1,""],BattleCmdSet:[234,1,1,""],CmdAttack:[234,1,1,""],CmdCombatHelp:[234,1,1,""],CmdDisengage:[234,1,1,""],CmdFight:[234,1,1,""],CmdPass:[234,1,1,""],CmdRest:[234,1,1,""],TBBasicCharacter:[234,1,1,""],TBBasicTurnHandler:[234,1,1,""],apply_damage:[234,5,1,""],at_defeat:[234,5,1,""],combat_cleanup:[234,5,1,""],get_attack:[234,5,1,""],get_damage:[234,5,1,""],get_defense:[234,5,1,""],is_in_combat:[234,5,1,""],is_turn:[234,5,1,""],resolve_attack:[234,5,1,""],roll_init:[234,5,1,""],spend_action:[234,5,1,""]},"evennia.contrib.turnbattle.tb_basic.BattleCmdSet":{at_cmdset_creation:[234,3,1,""],key:[234,4,1,""],path:[234,4,1,""]},"evennia.contrib.turnbattle.tb_basic.CmdAttack":{aliases:[234,4,1,""],func:[234,3,1,""],help_category:[234,4,1,""],key:[234,4,1,""],lock_storage:[234,4,1,""],search_index_entry:[234,4,1,""]},"evennia.contrib.turnbattle.tb_basic.CmdCombatHelp":{aliases:[234,4,1,""],func:[234,3,1,""],help_category:[234,4,1,""],key:[234,4,1,""],lock_storage:[234,4,1,""],search_index_entry:[234,4,1,""]},"evennia.contrib.turnbattle.tb_basic.CmdDisengage":{aliases:[234,4,1,""],func:[234,3,1,""],help_category:[234,4,1,""],key:[234,4,1,""],lock_storage:[234,4,1,""],search_index_entry:[234,4,1,""]},"evennia.contrib.turnbattle.tb_basic.CmdFight":{aliases:[234,4,1,""],func:[234,3,1,""],help_category:[234,4,1,""],key:[234,4,1,""],lock_storage:[234,4,1,""],search_index_entry:[234,4,1,""]},"evennia.contrib.turnbattle.tb_basic.CmdPass":{aliases:[234,4,1,""],func:[234,3,1,""],help_category:[234,4,1,""],key:[234,4,1,""],lock_storage:[234,4,1,""],search_index_entry:[234,4,1,""]},"evennia.contrib.turnbattle.tb_basic.CmdRest":{aliases:[234,4,1,""],func:[234,3,1,""],help_category:[234,4,1,""],key:[234,4,1,""],lock_storage:[234,4,1,""],search_index_entry:[234,4,1,""]},"evennia.contrib.turnbattle.tb_basic.TBBasicCharacter":{DoesNotExist:[234,2,1,""],MultipleObjectsReturned:[234,2,1,""],at_before_move:[234,3,1,""],at_object_creation:[234,3,1,""],path:[234,4,1,""],typename:[234,4,1,""]},"evennia.contrib.turnbattle.tb_basic.TBBasicTurnHandler":{DoesNotExist:[234,2,1,""],MultipleObjectsReturned:[234,2,1,""],at_repeat:[234,3,1,""],at_script_creation:[234,3,1,""],at_stop:[234,3,1,""],initialize_for_combat:[234,3,1,""],join_fight:[234,3,1,""],next_turn:[234,3,1,""],path:[234,4,1,""],start_turn:[234,3,1,""],turn_end_check:[234,3,1,""],typename:[234,4,1,""]},"evennia.contrib.turnbattle.tb_equip":{ACTIONS_PER_TURN:[235,6,1,""],BattleCmdSet:[235,1,1,""],CmdAttack:[235,1,1,""],CmdCombatHelp:[235,1,1,""],CmdDisengage:[235,1,1,""],CmdDoff:[235,1,1,""],CmdDon:[235,1,1,""],CmdFight:[235,1,1,""],CmdPass:[235,1,1,""],CmdRest:[235,1,1,""],CmdUnwield:[235,1,1,""],CmdWield:[235,1,1,""],TBEArmor:[235,1,1,""],TBEWeapon:[235,1,1,""],TBEquipCharacter:[235,1,1,""],TBEquipTurnHandler:[235,1,1,""],apply_damage:[235,5,1,""],at_defeat:[235,5,1,""],combat_cleanup:[235,5,1,""],get_attack:[235,5,1,""],get_damage:[235,5,1,""],get_defense:[235,5,1,""],is_in_combat:[235,5,1,""],is_turn:[235,5,1,""],resolve_attack:[235,5,1,""],roll_init:[235,5,1,""],spend_action:[235,5,1,""]},"evennia.contrib.turnbattle.tb_equip.BattleCmdSet":{at_cmdset_creation:[235,3,1,""],key:[235,4,1,""],path:[235,4,1,""]},"evennia.contrib.turnbattle.tb_equip.CmdAttack":{aliases:[235,4,1,""],func:[235,3,1,""],help_category:[235,4,1,""],key:[235,4,1,""],lock_storage:[235,4,1,""],search_index_entry:[235,4,1,""]},"evennia.contrib.turnbattle.tb_equip.CmdCombatHelp":{aliases:[235,4,1,""],func:[235,3,1,""],help_category:[235,4,1,""],key:[235,4,1,""],lock_storage:[235,4,1,""],search_index_entry:[235,4,1,""]},"evennia.contrib.turnbattle.tb_equip.CmdDisengage":{aliases:[235,4,1,""],func:[235,3,1,""],help_category:[235,4,1,""],key:[235,4,1,""],lock_storage:[235,4,1,""],search_index_entry:[235,4,1,""]},"evennia.contrib.turnbattle.tb_equip.CmdDoff":{aliases:[235,4,1,""],func:[235,3,1,""],help_category:[235,4,1,""],key:[235,4,1,""],lock_storage:[235,4,1,""],search_index_entry:[235,4,1,""]},"evennia.contrib.turnbattle.tb_equip.CmdDon":{aliases:[235,4,1,""],func:[235,3,1,""],help_category:[235,4,1,""],key:[235,4,1,""],lock_storage:[235,4,1,""],search_index_entry:[235,4,1,""]},"evennia.contrib.turnbattle.tb_equip.CmdFight":{aliases:[235,4,1,""],func:[235,3,1,""],help_category:[235,4,1,""],key:[235,4,1,""],lock_storage:[235,4,1,""],search_index_entry:[235,4,1,""]},"evennia.contrib.turnbattle.tb_equip.CmdPass":{aliases:[235,4,1,""],func:[235,3,1,""],help_category:[235,4,1,""],key:[235,4,1,""],lock_storage:[235,4,1,""],search_index_entry:[235,4,1,""]},"evennia.contrib.turnbattle.tb_equip.CmdRest":{aliases:[235,4,1,""],func:[235,3,1,""],help_category:[235,4,1,""],key:[235,4,1,""],lock_storage:[235,4,1,""],search_index_entry:[235,4,1,""]},"evennia.contrib.turnbattle.tb_equip.CmdUnwield":{aliases:[235,4,1,""],func:[235,3,1,""],help_category:[235,4,1,""],key:[235,4,1,""],lock_storage:[235,4,1,""],search_index_entry:[235,4,1,""]},"evennia.contrib.turnbattle.tb_equip.CmdWield":{aliases:[235,4,1,""],func:[235,3,1,""],help_category:[235,4,1,""],key:[235,4,1,""],lock_storage:[235,4,1,""],search_index_entry:[235,4,1,""]},"evennia.contrib.turnbattle.tb_equip.TBEArmor":{DoesNotExist:[235,2,1,""],MultipleObjectsReturned:[235,2,1,""],at_before_drop:[235,3,1,""],at_before_give:[235,3,1,""],at_drop:[235,3,1,""],at_give:[235,3,1,""],at_object_creation:[235,3,1,""],path:[235,4,1,""],typename:[235,4,1,""]},"evennia.contrib.turnbattle.tb_equip.TBEWeapon":{DoesNotExist:[235,2,1,""],MultipleObjectsReturned:[235,2,1,""],at_drop:[235,3,1,""],at_give:[235,3,1,""],at_object_creation:[235,3,1,""],path:[235,4,1,""],typename:[235,4,1,""]},"evennia.contrib.turnbattle.tb_equip.TBEquipCharacter":{DoesNotExist:[235,2,1,""],MultipleObjectsReturned:[235,2,1,""],at_before_move:[235,3,1,""],at_object_creation:[235,3,1,""],path:[235,4,1,""],typename:[235,4,1,""]},"evennia.contrib.turnbattle.tb_equip.TBEquipTurnHandler":{DoesNotExist:[235,2,1,""],MultipleObjectsReturned:[235,2,1,""],at_repeat:[235,3,1,""],at_script_creation:[235,3,1,""],at_stop:[235,3,1,""],initialize_for_combat:[235,3,1,""],join_fight:[235,3,1,""],next_turn:[235,3,1,""],path:[235,4,1,""],start_turn:[235,3,1,""],turn_end_check:[235,3,1,""],typename:[235,4,1,""]},"evennia.contrib.turnbattle.tb_items":{BattleCmdSet:[236,1,1,""],CmdAttack:[236,1,1,""],CmdCombatHelp:[236,1,1,""],CmdDisengage:[236,1,1,""],CmdFight:[236,1,1,""],CmdPass:[236,1,1,""],CmdRest:[236,1,1,""],CmdUse:[236,1,1,""],DEF_DOWN_MOD:[236,6,1,""],ITEMFUNCS:[236,6,1,""],TBItemsCharacter:[236,1,1,""],TBItemsCharacterTest:[236,1,1,""],TBItemsTurnHandler:[236,1,1,""],add_condition:[236,5,1,""],apply_damage:[236,5,1,""],at_defeat:[236,5,1,""],combat_cleanup:[236,5,1,""],condition_tickdown:[236,5,1,""],get_attack:[236,5,1,""],get_damage:[236,5,1,""],get_defense:[236,5,1,""],is_in_combat:[236,5,1,""],is_turn:[236,5,1,""],itemfunc_add_condition:[236,5,1,""],itemfunc_attack:[236,5,1,""],itemfunc_cure_condition:[236,5,1,""],itemfunc_heal:[236,5,1,""],resolve_attack:[236,5,1,""],roll_init:[236,5,1,""],spend_action:[236,5,1,""],spend_item_use:[236,5,1,""],use_item:[236,5,1,""]},"evennia.contrib.turnbattle.tb_items.BattleCmdSet":{at_cmdset_creation:[236,3,1,""],key:[236,4,1,""],path:[236,4,1,""]},"evennia.contrib.turnbattle.tb_items.CmdAttack":{aliases:[236,4,1,""],func:[236,3,1,""],help_category:[236,4,1,""],key:[236,4,1,""],lock_storage:[236,4,1,""],search_index_entry:[236,4,1,""]},"evennia.contrib.turnbattle.tb_items.CmdCombatHelp":{aliases:[236,4,1,""],func:[236,3,1,""],help_category:[236,4,1,""],key:[236,4,1,""],lock_storage:[236,4,1,""],search_index_entry:[236,4,1,""]},"evennia.contrib.turnbattle.tb_items.CmdDisengage":{aliases:[236,4,1,""],func:[236,3,1,""],help_category:[236,4,1,""],key:[236,4,1,""],lock_storage:[236,4,1,""],search_index_entry:[236,4,1,""]},"evennia.contrib.turnbattle.tb_items.CmdFight":{aliases:[236,4,1,""],func:[236,3,1,""],help_category:[236,4,1,""],key:[236,4,1,""],lock_storage:[236,4,1,""],search_index_entry:[236,4,1,""]},"evennia.contrib.turnbattle.tb_items.CmdPass":{aliases:[236,4,1,""],func:[236,3,1,""],help_category:[236,4,1,""],key:[236,4,1,""],lock_storage:[236,4,1,""],search_index_entry:[236,4,1,""]},"evennia.contrib.turnbattle.tb_items.CmdRest":{aliases:[236,4,1,""],func:[236,3,1,""],help_category:[236,4,1,""],key:[236,4,1,""],lock_storage:[236,4,1,""],search_index_entry:[236,4,1,""]},"evennia.contrib.turnbattle.tb_items.CmdUse":{aliases:[236,4,1,""],func:[236,3,1,""],help_category:[236,4,1,""],key:[236,4,1,""],lock_storage:[236,4,1,""],search_index_entry:[236,4,1,""]},"evennia.contrib.turnbattle.tb_items.TBItemsCharacter":{DoesNotExist:[236,2,1,""],MultipleObjectsReturned:[236,2,1,""],apply_turn_conditions:[236,3,1,""],at_before_move:[236,3,1,""],at_object_creation:[236,3,1,""],at_turn_start:[236,3,1,""],at_update:[236,3,1,""],path:[236,4,1,""],typename:[236,4,1,""]},"evennia.contrib.turnbattle.tb_items.TBItemsCharacterTest":{DoesNotExist:[236,2,1,""],MultipleObjectsReturned:[236,2,1,""],at_object_creation:[236,3,1,""],path:[236,4,1,""],typename:[236,4,1,""]},"evennia.contrib.turnbattle.tb_items.TBItemsTurnHandler":{DoesNotExist:[236,2,1,""],MultipleObjectsReturned:[236,2,1,""],at_repeat:[236,3,1,""],at_script_creation:[236,3,1,""],at_stop:[236,3,1,""],initialize_for_combat:[236,3,1,""],join_fight:[236,3,1,""],next_turn:[236,3,1,""],path:[236,4,1,""],start_turn:[236,3,1,""],turn_end_check:[236,3,1,""],typename:[236,4,1,""]},"evennia.contrib.turnbattle.tb_magic":{ACTIONS_PER_TURN:[237,6,1,""],BattleCmdSet:[237,1,1,""],CmdAttack:[237,1,1,""],CmdCast:[237,1,1,""],CmdCombatHelp:[237,1,1,""],CmdDisengage:[237,1,1,""],CmdFight:[237,1,1,""],CmdLearnSpell:[237,1,1,""],CmdPass:[237,1,1,""],CmdRest:[237,1,1,""],CmdStatus:[237,1,1,""],TBMagicCharacter:[237,1,1,""],TBMagicTurnHandler:[237,1,1,""],apply_damage:[237,5,1,""],at_defeat:[237,5,1,""],combat_cleanup:[237,5,1,""],get_attack:[237,5,1,""],get_damage:[237,5,1,""],get_defense:[237,5,1,""],is_in_combat:[237,5,1,""],is_turn:[237,5,1,""],resolve_attack:[237,5,1,""],roll_init:[237,5,1,""],spell_attack:[237,5,1,""],spell_conjure:[237,5,1,""],spell_healing:[237,5,1,""],spend_action:[237,5,1,""]},"evennia.contrib.turnbattle.tb_magic.BattleCmdSet":{at_cmdset_creation:[237,3,1,""],key:[237,4,1,""],path:[237,4,1,""]},"evennia.contrib.turnbattle.tb_magic.CmdAttack":{aliases:[237,4,1,""],func:[237,3,1,""],help_category:[237,4,1,""],key:[237,4,1,""],lock_storage:[237,4,1,""],search_index_entry:[237,4,1,""]},"evennia.contrib.turnbattle.tb_magic.CmdCast":{aliases:[237,4,1,""],func:[237,3,1,""],help_category:[237,4,1,""],key:[237,4,1,""],lock_storage:[237,4,1,""],search_index_entry:[237,4,1,""]},"evennia.contrib.turnbattle.tb_magic.CmdCombatHelp":{aliases:[237,4,1,""],func:[237,3,1,""],help_category:[237,4,1,""],key:[237,4,1,""],lock_storage:[237,4,1,""],search_index_entry:[237,4,1,""]},"evennia.contrib.turnbattle.tb_magic.CmdDisengage":{aliases:[237,4,1,""],func:[237,3,1,""],help_category:[237,4,1,""],key:[237,4,1,""],lock_storage:[237,4,1,""],search_index_entry:[237,4,1,""]},"evennia.contrib.turnbattle.tb_magic.CmdFight":{aliases:[237,4,1,""],func:[237,3,1,""],help_category:[237,4,1,""],key:[237,4,1,""],lock_storage:[237,4,1,""],search_index_entry:[237,4,1,""]},"evennia.contrib.turnbattle.tb_magic.CmdLearnSpell":{aliases:[237,4,1,""],func:[237,3,1,""],help_category:[237,4,1,""],key:[237,4,1,""],lock_storage:[237,4,1,""],search_index_entry:[237,4,1,""]},"evennia.contrib.turnbattle.tb_magic.CmdPass":{aliases:[237,4,1,""],func:[237,3,1,""],help_category:[237,4,1,""],key:[237,4,1,""],lock_storage:[237,4,1,""],search_index_entry:[237,4,1,""]},"evennia.contrib.turnbattle.tb_magic.CmdRest":{aliases:[237,4,1,""],func:[237,3,1,""],help_category:[237,4,1,""],key:[237,4,1,""],lock_storage:[237,4,1,""],search_index_entry:[237,4,1,""]},"evennia.contrib.turnbattle.tb_magic.CmdStatus":{aliases:[237,4,1,""],func:[237,3,1,""],help_category:[237,4,1,""],key:[237,4,1,""],lock_storage:[237,4,1,""],search_index_entry:[237,4,1,""]},"evennia.contrib.turnbattle.tb_magic.TBMagicCharacter":{DoesNotExist:[237,2,1,""],MultipleObjectsReturned:[237,2,1,""],at_before_move:[237,3,1,""],at_object_creation:[237,3,1,""],path:[237,4,1,""],typename:[237,4,1,""]},"evennia.contrib.turnbattle.tb_magic.TBMagicTurnHandler":{DoesNotExist:[237,2,1,""],MultipleObjectsReturned:[237,2,1,""],at_repeat:[237,3,1,""],at_script_creation:[237,3,1,""],at_stop:[237,3,1,""],initialize_for_combat:[237,3,1,""],join_fight:[237,3,1,""],next_turn:[237,3,1,""],path:[237,4,1,""],start_turn:[237,3,1,""],turn_end_check:[237,3,1,""],typename:[237,4,1,""]},"evennia.contrib.turnbattle.tb_range":{ACTIONS_PER_TURN:[238,6,1,""],BattleCmdSet:[238,1,1,""],CmdApproach:[238,1,1,""],CmdAttack:[238,1,1,""],CmdCombatHelp:[238,1,1,""],CmdDisengage:[238,1,1,""],CmdFight:[238,1,1,""],CmdPass:[238,1,1,""],CmdRest:[238,1,1,""],CmdShoot:[238,1,1,""],CmdStatus:[238,1,1,""],CmdWithdraw:[238,1,1,""],TBRangeCharacter:[238,1,1,""],TBRangeObject:[238,1,1,""],TBRangeTurnHandler:[238,1,1,""],apply_damage:[238,5,1,""],approach:[238,5,1,""],at_defeat:[238,5,1,""],combat_cleanup:[238,5,1,""],combat_status_message:[238,5,1,""],distance_inc:[238,5,1,""],get_attack:[238,5,1,""],get_damage:[238,5,1,""],get_defense:[238,5,1,""],get_range:[238,5,1,""],is_in_combat:[238,5,1,""],is_turn:[238,5,1,""],resolve_attack:[238,5,1,""],roll_init:[238,5,1,""],spend_action:[238,5,1,""],withdraw:[238,5,1,""]},"evennia.contrib.turnbattle.tb_range.BattleCmdSet":{at_cmdset_creation:[238,3,1,""],key:[238,4,1,""],path:[238,4,1,""]},"evennia.contrib.turnbattle.tb_range.CmdApproach":{aliases:[238,4,1,""],func:[238,3,1,""],help_category:[238,4,1,""],key:[238,4,1,""],lock_storage:[238,4,1,""],search_index_entry:[238,4,1,""]},"evennia.contrib.turnbattle.tb_range.CmdAttack":{aliases:[238,4,1,""],func:[238,3,1,""],help_category:[238,4,1,""],key:[238,4,1,""],lock_storage:[238,4,1,""],search_index_entry:[238,4,1,""]},"evennia.contrib.turnbattle.tb_range.CmdCombatHelp":{aliases:[238,4,1,""],func:[238,3,1,""],help_category:[238,4,1,""],key:[238,4,1,""],lock_storage:[238,4,1,""],search_index_entry:[238,4,1,""]},"evennia.contrib.turnbattle.tb_range.CmdDisengage":{aliases:[238,4,1,""],func:[238,3,1,""],help_category:[238,4,1,""],key:[238,4,1,""],lock_storage:[238,4,1,""],search_index_entry:[238,4,1,""]},"evennia.contrib.turnbattle.tb_range.CmdFight":{aliases:[238,4,1,""],func:[238,3,1,""],help_category:[238,4,1,""],key:[238,4,1,""],lock_storage:[238,4,1,""],search_index_entry:[238,4,1,""]},"evennia.contrib.turnbattle.tb_range.CmdPass":{aliases:[238,4,1,""],func:[238,3,1,""],help_category:[238,4,1,""],key:[238,4,1,""],lock_storage:[238,4,1,""],search_index_entry:[238,4,1,""]},"evennia.contrib.turnbattle.tb_range.CmdRest":{aliases:[238,4,1,""],func:[238,3,1,""],help_category:[238,4,1,""],key:[238,4,1,""],lock_storage:[238,4,1,""],search_index_entry:[238,4,1,""]},"evennia.contrib.turnbattle.tb_range.CmdShoot":{aliases:[238,4,1,""],func:[238,3,1,""],help_category:[238,4,1,""],key:[238,4,1,""],lock_storage:[238,4,1,""],search_index_entry:[238,4,1,""]},"evennia.contrib.turnbattle.tb_range.CmdStatus":{aliases:[238,4,1,""],func:[238,3,1,""],help_category:[238,4,1,""],key:[238,4,1,""],lock_storage:[238,4,1,""],search_index_entry:[238,4,1,""]},"evennia.contrib.turnbattle.tb_range.CmdWithdraw":{aliases:[238,4,1,""],func:[238,3,1,""],help_category:[238,4,1,""],key:[238,4,1,""],lock_storage:[238,4,1,""],search_index_entry:[238,4,1,""]},"evennia.contrib.turnbattle.tb_range.TBRangeCharacter":{DoesNotExist:[238,2,1,""],MultipleObjectsReturned:[238,2,1,""],at_before_move:[238,3,1,""],at_object_creation:[238,3,1,""],path:[238,4,1,""],typename:[238,4,1,""]},"evennia.contrib.turnbattle.tb_range.TBRangeObject":{DoesNotExist:[238,2,1,""],MultipleObjectsReturned:[238,2,1,""],at_before_drop:[238,3,1,""],at_before_get:[238,3,1,""],at_before_give:[238,3,1,""],at_drop:[238,3,1,""],at_get:[238,3,1,""],at_give:[238,3,1,""],path:[238,4,1,""],typename:[238,4,1,""]},"evennia.contrib.turnbattle.tb_range.TBRangeTurnHandler":{DoesNotExist:[238,2,1,""],MultipleObjectsReturned:[238,2,1,""],at_repeat:[238,3,1,""],at_script_creation:[238,3,1,""],at_stop:[238,3,1,""],init_range:[238,3,1,""],initialize_for_combat:[238,3,1,""],join_fight:[238,3,1,""],join_rangefield:[238,3,1,""],next_turn:[238,3,1,""],path:[238,4,1,""],start_turn:[238,3,1,""],turn_end_check:[238,3,1,""],typename:[238,4,1,""]},"evennia.contrib.tutorial_examples":{bodyfunctions:[240,0,0,"-"],cmdset_red_button:[241,0,0,"-"],mirror:[243,0,0,"-"],red_button:[244,0,0,"-"],red_button_scripts:[245,0,0,"-"],tests:[246,0,0,"-"]},"evennia.contrib.tutorial_examples.bodyfunctions":{BodyFunctions:[240,1,1,""]},"evennia.contrib.tutorial_examples.bodyfunctions.BodyFunctions":{DoesNotExist:[240,2,1,""],MultipleObjectsReturned:[240,2,1,""],at_repeat:[240,3,1,""],at_script_creation:[240,3,1,""],path:[240,4,1,""],send_random_message:[240,3,1,""],typename:[240,4,1,""]},"evennia.contrib.tutorial_examples.cmdset_red_button":{BlindCmdSet:[241,1,1,""],CmdBlindHelp:[241,1,1,""],CmdBlindLook:[241,1,1,""],CmdCloseLid:[241,1,1,""],CmdNudge:[241,1,1,""],CmdOpenLid:[241,1,1,""],CmdPush:[241,1,1,""],CmdSmashGlass:[241,1,1,""],DefaultCmdSet:[241,1,1,""],LidClosedCmdSet:[241,1,1,""],LidOpenCmdSet:[241,1,1,""]},"evennia.contrib.tutorial_examples.cmdset_red_button.BlindCmdSet":{at_cmdset_creation:[241,3,1,""],key:[241,4,1,""],mergetype:[241,4,1,""],no_exits:[241,4,1,""],no_objs:[241,4,1,""],path:[241,4,1,""]},"evennia.contrib.tutorial_examples.cmdset_red_button.CmdBlindHelp":{aliases:[241,4,1,""],func:[241,3,1,""],help_category:[241,4,1,""],key:[241,4,1,""],lock_storage:[241,4,1,""],locks:[241,4,1,""],search_index_entry:[241,4,1,""]},"evennia.contrib.tutorial_examples.cmdset_red_button.CmdBlindLook":{aliases:[241,4,1,""],func:[241,3,1,""],help_category:[241,4,1,""],key:[241,4,1,""],lock_storage:[241,4,1,""],locks:[241,4,1,""],search_index_entry:[241,4,1,""]},"evennia.contrib.tutorial_examples.cmdset_red_button.CmdCloseLid":{aliases:[241,4,1,""],func:[241,3,1,""],help_category:[241,4,1,""],key:[241,4,1,""],lock_storage:[241,4,1,""],locks:[241,4,1,""],search_index_entry:[241,4,1,""]},"evennia.contrib.tutorial_examples.cmdset_red_button.CmdNudge":{aliases:[241,4,1,""],func:[241,3,1,""],help_category:[241,4,1,""],key:[241,4,1,""],lock_storage:[241,4,1,""],locks:[241,4,1,""],search_index_entry:[241,4,1,""]},"evennia.contrib.tutorial_examples.cmdset_red_button.CmdOpenLid":{aliases:[241,4,1,""],func:[241,3,1,""],help_category:[241,4,1,""],key:[241,4,1,""],lock_storage:[241,4,1,""],locks:[241,4,1,""],search_index_entry:[241,4,1,""]},"evennia.contrib.tutorial_examples.cmdset_red_button.CmdPush":{aliases:[241,4,1,""],func:[241,3,1,""],help_category:[241,4,1,""],key:[241,4,1,""],lock_storage:[241,4,1,""],locks:[241,4,1,""],search_index_entry:[241,4,1,""]},"evennia.contrib.tutorial_examples.cmdset_red_button.CmdSmashGlass":{aliases:[241,4,1,""],func:[241,3,1,""],help_category:[241,4,1,""],key:[241,4,1,""],lock_storage:[241,4,1,""],locks:[241,4,1,""],search_index_entry:[241,4,1,""]},"evennia.contrib.tutorial_examples.cmdset_red_button.DefaultCmdSet":{at_cmdset_creation:[241,3,1,""],key:[241,4,1,""],mergetype:[241,4,1,""],path:[241,4,1,""]},"evennia.contrib.tutorial_examples.cmdset_red_button.LidClosedCmdSet":{at_cmdset_creation:[241,3,1,""],key:[241,4,1,""],key_mergetype:[241,4,1,""],path:[241,4,1,""]},"evennia.contrib.tutorial_examples.cmdset_red_button.LidOpenCmdSet":{at_cmdset_creation:[241,3,1,""],key:[241,4,1,""],key_mergetype:[241,4,1,""],path:[241,4,1,""]},"evennia.contrib.tutorial_examples.mirror":{TutorialMirror:[243,1,1,""]},"evennia.contrib.tutorial_examples.mirror.TutorialMirror":{DoesNotExist:[243,2,1,""],MultipleObjectsReturned:[243,2,1,""],msg:[243,3,1,""],path:[243,4,1,""],return_appearance:[243,3,1,""],typename:[243,4,1,""]},"evennia.contrib.tutorial_examples.red_button":{RedButton:[244,1,1,""]},"evennia.contrib.tutorial_examples.red_button.RedButton":{DoesNotExist:[244,2,1,""],MultipleObjectsReturned:[244,2,1,""],at_object_creation:[244,3,1,""],blink:[244,3,1,""],break_lamp:[244,3,1,""],close_lid:[244,3,1,""],open_lid:[244,3,1,""],path:[244,4,1,""],press_button:[244,3,1,""],typename:[244,4,1,""]},"evennia.contrib.tutorial_examples.red_button_scripts":{BlindedState:[245,1,1,""],BlinkButtonEvent:[245,1,1,""],CloseLidEvent:[245,1,1,""],ClosedLidState:[245,1,1,""],DeactivateButtonEvent:[245,1,1,""],OpenLidState:[245,1,1,""]},"evennia.contrib.tutorial_examples.red_button_scripts.BlindedState":{DoesNotExist:[245,2,1,""],MultipleObjectsReturned:[245,2,1,""],at_script_creation:[245,3,1,""],at_start:[245,3,1,""],at_stop:[245,3,1,""],path:[245,4,1,""],typename:[245,4,1,""]},"evennia.contrib.tutorial_examples.red_button_scripts.BlinkButtonEvent":{DoesNotExist:[245,2,1,""],MultipleObjectsReturned:[245,2,1,""],at_repeat:[245,3,1,""],at_script_creation:[245,3,1,""],is_valid:[245,3,1,""],path:[245,4,1,""],typename:[245,4,1,""]},"evennia.contrib.tutorial_examples.red_button_scripts.CloseLidEvent":{DoesNotExist:[245,2,1,""],MultipleObjectsReturned:[245,2,1,""],at_repeat:[245,3,1,""],at_script_creation:[245,3,1,""],is_valid:[245,3,1,""],path:[245,4,1,""],typename:[245,4,1,""]},"evennia.contrib.tutorial_examples.red_button_scripts.ClosedLidState":{DoesNotExist:[245,2,1,""],MultipleObjectsReturned:[245,2,1,""],at_script_creation:[245,3,1,""],at_start:[245,3,1,""],at_stop:[245,3,1,""],is_valid:[245,3,1,""],path:[245,4,1,""],typename:[245,4,1,""]},"evennia.contrib.tutorial_examples.red_button_scripts.DeactivateButtonEvent":{DoesNotExist:[245,2,1,""],MultipleObjectsReturned:[245,2,1,""],at_repeat:[245,3,1,""],at_script_creation:[245,3,1,""],at_start:[245,3,1,""],path:[245,4,1,""],typename:[245,4,1,""]},"evennia.contrib.tutorial_examples.red_button_scripts.OpenLidState":{DoesNotExist:[245,2,1,""],MultipleObjectsReturned:[245,2,1,""],at_script_creation:[245,3,1,""],at_start:[245,3,1,""],at_stop:[245,3,1,""],is_valid:[245,3,1,""],path:[245,4,1,""],typename:[245,4,1,""]},"evennia.contrib.tutorial_examples.tests":{TestBodyFunctions:[246,1,1,""]},"evennia.contrib.tutorial_examples.tests.TestBodyFunctions":{script_typeclass:[246,4,1,""],setUp:[246,3,1,""],tearDown:[246,3,1,""],test_at_repeat:[246,3,1,""],test_send_random_message:[246,3,1,""]},"evennia.contrib.tutorial_world":{mob:[248,0,0,"-"],objects:[249,0,0,"-"],rooms:[250,0,0,"-"]},"evennia.contrib.tutorial_world.mob":{CmdMobOnOff:[248,1,1,""],Mob:[248,1,1,""],MobCmdSet:[248,1,1,""]},"evennia.contrib.tutorial_world.mob.CmdMobOnOff":{aliases:[248,4,1,""],func:[248,3,1,""],help_category:[248,4,1,""],key:[248,4,1,""],lock_storage:[248,4,1,""],locks:[248,4,1,""],search_index_entry:[248,4,1,""]},"evennia.contrib.tutorial_world.mob.Mob":{DoesNotExist:[248,2,1,""],MultipleObjectsReturned:[248,2,1,""],at_hit:[248,3,1,""],at_init:[248,3,1,""],at_new_arrival:[248,3,1,""],at_object_creation:[248,3,1,""],do_attack:[248,3,1,""],do_hunting:[248,3,1,""],do_patrol:[248,3,1,""],path:[248,4,1,""],set_alive:[248,3,1,""],set_dead:[248,3,1,""],start_attacking:[248,3,1,""],start_hunting:[248,3,1,""],start_idle:[248,3,1,""],start_patrolling:[248,3,1,""],typename:[248,4,1,""]},"evennia.contrib.tutorial_world.mob.MobCmdSet":{at_cmdset_creation:[248,3,1,""],path:[248,4,1,""]},"evennia.contrib.tutorial_world.objects":{CmdAttack:[249,1,1,""],CmdClimb:[249,1,1,""],CmdGetWeapon:[249,1,1,""],CmdLight:[249,1,1,""],CmdPressButton:[249,1,1,""],CmdRead:[249,1,1,""],CmdSetClimbable:[249,1,1,""],CmdSetCrumblingWall:[249,1,1,""],CmdSetLight:[249,1,1,""],CmdSetReadable:[249,1,1,""],CmdSetWeapon:[249,1,1,""],CmdSetWeaponRack:[249,1,1,""],CmdShiftRoot:[249,1,1,""],CrumblingWall:[249,1,1,""],LightSource:[249,1,1,""],Obelisk:[249,1,1,""],TutorialClimbable:[249,1,1,""],TutorialObject:[249,1,1,""],TutorialReadable:[249,1,1,""],TutorialWeapon:[249,1,1,""],TutorialWeaponRack:[249,1,1,""]},"evennia.contrib.tutorial_world.objects.CmdAttack":{aliases:[249,4,1,""],func:[249,3,1,""],help_category:[249,4,1,""],key:[249,4,1,""],lock_storage:[249,4,1,""],locks:[249,4,1,""],search_index_entry:[249,4,1,""]},"evennia.contrib.tutorial_world.objects.CmdClimb":{aliases:[249,4,1,""],func:[249,3,1,""],help_category:[249,4,1,""],key:[249,4,1,""],lock_storage:[249,4,1,""],locks:[249,4,1,""],search_index_entry:[249,4,1,""]},"evennia.contrib.tutorial_world.objects.CmdGetWeapon":{aliases:[249,4,1,""],func:[249,3,1,""],help_category:[249,4,1,""],key:[249,4,1,""],lock_storage:[249,4,1,""],locks:[249,4,1,""],search_index_entry:[249,4,1,""]},"evennia.contrib.tutorial_world.objects.CmdLight":{aliases:[249,4,1,""],func:[249,3,1,""],help_category:[249,4,1,""],key:[249,4,1,""],lock_storage:[249,4,1,""],locks:[249,4,1,""],search_index_entry:[249,4,1,""]},"evennia.contrib.tutorial_world.objects.CmdPressButton":{aliases:[249,4,1,""],func:[249,3,1,""],help_category:[249,4,1,""],key:[249,4,1,""],lock_storage:[249,4,1,""],locks:[249,4,1,""],search_index_entry:[249,4,1,""]},"evennia.contrib.tutorial_world.objects.CmdRead":{aliases:[249,4,1,""],func:[249,3,1,""],help_category:[249,4,1,""],key:[249,4,1,""],lock_storage:[249,4,1,""],locks:[249,4,1,""],search_index_entry:[249,4,1,""]},"evennia.contrib.tutorial_world.objects.CmdSetClimbable":{at_cmdset_creation:[249,3,1,""],path:[249,4,1,""]},"evennia.contrib.tutorial_world.objects.CmdSetCrumblingWall":{at_cmdset_creation:[249,3,1,""],key:[249,4,1,""],path:[249,4,1,""],priority:[249,4,1,""]},"evennia.contrib.tutorial_world.objects.CmdSetLight":{at_cmdset_creation:[249,3,1,""],key:[249,4,1,""],path:[249,4,1,""],priority:[249,4,1,""]},"evennia.contrib.tutorial_world.objects.CmdSetReadable":{at_cmdset_creation:[249,3,1,""],path:[249,4,1,""]},"evennia.contrib.tutorial_world.objects.CmdSetWeapon":{at_cmdset_creation:[249,3,1,""],path:[249,4,1,""]},"evennia.contrib.tutorial_world.objects.CmdSetWeaponRack":{at_cmdset_creation:[249,3,1,""],key:[249,4,1,""],path:[249,4,1,""]},"evennia.contrib.tutorial_world.objects.CmdShiftRoot":{aliases:[249,4,1,""],func:[249,3,1,""],help_category:[249,4,1,""],key:[249,4,1,""],lock_storage:[249,4,1,""],locks:[249,4,1,""],parse:[249,3,1,""],search_index_entry:[249,4,1,""]},"evennia.contrib.tutorial_world.objects.CrumblingWall":{DoesNotExist:[249,2,1,""],MultipleObjectsReturned:[249,2,1,""],at_after_traverse:[249,3,1,""],at_failed_traverse:[249,3,1,""],at_init:[249,3,1,""],at_object_creation:[249,3,1,""],open_wall:[249,3,1,""],path:[249,4,1,""],reset:[249,3,1,""],return_appearance:[249,3,1,""],typename:[249,4,1,""]},"evennia.contrib.tutorial_world.objects.LightSource":{DoesNotExist:[249,2,1,""],MultipleObjectsReturned:[249,2,1,""],at_init:[249,3,1,""],at_object_creation:[249,3,1,""],light:[249,3,1,""],path:[249,4,1,""],typename:[249,4,1,""]},"evennia.contrib.tutorial_world.objects.Obelisk":{DoesNotExist:[249,2,1,""],MultipleObjectsReturned:[249,2,1,""],at_object_creation:[249,3,1,""],path:[249,4,1,""],return_appearance:[249,3,1,""],typename:[249,4,1,""]},"evennia.contrib.tutorial_world.objects.TutorialClimbable":{DoesNotExist:[249,2,1,""],MultipleObjectsReturned:[249,2,1,""],at_object_creation:[249,3,1,""],path:[249,4,1,""],typename:[249,4,1,""]},"evennia.contrib.tutorial_world.objects.TutorialObject":{DoesNotExist:[249,2,1,""],MultipleObjectsReturned:[249,2,1,""],at_object_creation:[249,3,1,""],path:[249,4,1,""],reset:[249,3,1,""],typename:[249,4,1,""]},"evennia.contrib.tutorial_world.objects.TutorialReadable":{DoesNotExist:[249,2,1,""],MultipleObjectsReturned:[249,2,1,""],at_object_creation:[249,3,1,""],path:[249,4,1,""],typename:[249,4,1,""]},"evennia.contrib.tutorial_world.objects.TutorialWeapon":{DoesNotExist:[249,2,1,""],MultipleObjectsReturned:[249,2,1,""],at_object_creation:[249,3,1,""],path:[249,4,1,""],reset:[249,3,1,""],typename:[249,4,1,""]},"evennia.contrib.tutorial_world.objects.TutorialWeaponRack":{DoesNotExist:[249,2,1,""],MultipleObjectsReturned:[249,2,1,""],at_object_creation:[249,3,1,""],path:[249,4,1,""],produce_weapon:[249,3,1,""],typename:[249,4,1,""]},"evennia.contrib.tutorial_world.rooms":{BridgeCmdSet:[250,1,1,""],BridgeRoom:[250,1,1,""],CmdBridgeHelp:[250,1,1,""],CmdDarkHelp:[250,1,1,""],CmdDarkNoMatch:[250,1,1,""],CmdEast:[250,1,1,""],CmdLookBridge:[250,1,1,""],CmdLookDark:[250,1,1,""],CmdTutorial:[250,1,1,""],CmdTutorialLook:[250,1,1,""],CmdTutorialSetDetail:[250,1,1,""],CmdWest:[250,1,1,""],DarkCmdSet:[250,1,1,""],DarkRoom:[250,1,1,""],IntroRoom:[250,1,1,""],OutroRoom:[250,1,1,""],TeleportRoom:[250,1,1,""],TutorialRoom:[250,1,1,""],TutorialRoomCmdSet:[250,1,1,""],WeatherRoom:[250,1,1,""]},"evennia.contrib.tutorial_world.rooms.BridgeCmdSet":{at_cmdset_creation:[250,3,1,""],key:[250,4,1,""],path:[250,4,1,""],priority:[250,4,1,""]},"evennia.contrib.tutorial_world.rooms.BridgeRoom":{DoesNotExist:[250,2,1,""],MultipleObjectsReturned:[250,2,1,""],at_object_creation:[250,3,1,""],at_object_leave:[250,3,1,""],at_object_receive:[250,3,1,""],path:[250,4,1,""],typename:[250,4,1,""],update_weather:[250,3,1,""]},"evennia.contrib.tutorial_world.rooms.CmdBridgeHelp":{aliases:[250,4,1,""],func:[250,3,1,""],help_category:[250,4,1,""],key:[250,4,1,""],lock_storage:[250,4,1,""],locks:[250,4,1,""],search_index_entry:[250,4,1,""]},"evennia.contrib.tutorial_world.rooms.CmdDarkHelp":{aliases:[250,4,1,""],func:[250,3,1,""],help_category:[250,4,1,""],key:[250,4,1,""],lock_storage:[250,4,1,""],locks:[250,4,1,""],search_index_entry:[250,4,1,""]},"evennia.contrib.tutorial_world.rooms.CmdDarkNoMatch":{aliases:[250,4,1,""],func:[250,3,1,""],help_category:[250,4,1,""],key:[250,4,1,""],lock_storage:[250,4,1,""],locks:[250,4,1,""],search_index_entry:[250,4,1,""]},"evennia.contrib.tutorial_world.rooms.CmdEast":{aliases:[250,4,1,""],func:[250,3,1,""],help_category:[250,4,1,""],key:[250,4,1,""],lock_storage:[250,4,1,""],locks:[250,4,1,""],search_index_entry:[250,4,1,""]},"evennia.contrib.tutorial_world.rooms.CmdLookBridge":{aliases:[250,4,1,""],func:[250,3,1,""],help_category:[250,4,1,""],key:[250,4,1,""],lock_storage:[250,4,1,""],locks:[250,4,1,""],search_index_entry:[250,4,1,""]},"evennia.contrib.tutorial_world.rooms.CmdLookDark":{aliases:[250,4,1,""],func:[250,3,1,""],help_category:[250,4,1,""],key:[250,4,1,""],lock_storage:[250,4,1,""],locks:[250,4,1,""],search_index_entry:[250,4,1,""]},"evennia.contrib.tutorial_world.rooms.CmdTutorial":{aliases:[250,4,1,""],func:[250,3,1,""],help_category:[250,4,1,""],key:[250,4,1,""],lock_storage:[250,4,1,""],locks:[250,4,1,""],search_index_entry:[250,4,1,""]},"evennia.contrib.tutorial_world.rooms.CmdTutorialLook":{aliases:[250,4,1,""],func:[250,3,1,""],help_category:[250,4,1,""],key:[250,4,1,""],lock_storage:[250,4,1,""],search_index_entry:[250,4,1,""]},"evennia.contrib.tutorial_world.rooms.CmdTutorialSetDetail":{aliases:[250,4,1,""],func:[250,3,1,""],help_category:[250,4,1,""],key:[250,4,1,""],lock_storage:[250,4,1,""],locks:[250,4,1,""],search_index_entry:[250,4,1,""]},"evennia.contrib.tutorial_world.rooms.CmdWest":{aliases:[250,4,1,""],func:[250,3,1,""],help_category:[250,4,1,""],key:[250,4,1,""],lock_storage:[250,4,1,""],locks:[250,4,1,""],search_index_entry:[250,4,1,""]},"evennia.contrib.tutorial_world.rooms.DarkCmdSet":{at_cmdset_creation:[250,3,1,""],key:[250,4,1,""],mergetype:[250,4,1,""],path:[250,4,1,""],priority:[250,4,1,""]},"evennia.contrib.tutorial_world.rooms.DarkRoom":{DoesNotExist:[250,2,1,""],MultipleObjectsReturned:[250,2,1,""],at_init:[250,3,1,""],at_object_creation:[250,3,1,""],at_object_leave:[250,3,1,""],at_object_receive:[250,3,1,""],check_light_state:[250,3,1,""],path:[250,4,1,""],typename:[250,4,1,""]},"evennia.contrib.tutorial_world.rooms.IntroRoom":{DoesNotExist:[250,2,1,""],MultipleObjectsReturned:[250,2,1,""],at_object_creation:[250,3,1,""],at_object_receive:[250,3,1,""],path:[250,4,1,""],typename:[250,4,1,""]},"evennia.contrib.tutorial_world.rooms.OutroRoom":{DoesNotExist:[250,2,1,""],MultipleObjectsReturned:[250,2,1,""],at_object_creation:[250,3,1,""],at_object_receive:[250,3,1,""],path:[250,4,1,""],typename:[250,4,1,""]},"evennia.contrib.tutorial_world.rooms.TeleportRoom":{DoesNotExist:[250,2,1,""],MultipleObjectsReturned:[250,2,1,""],at_object_creation:[250,3,1,""],at_object_receive:[250,3,1,""],path:[250,4,1,""],typename:[250,4,1,""]},"evennia.contrib.tutorial_world.rooms.TutorialRoom":{DoesNotExist:[250,2,1,""],MultipleObjectsReturned:[250,2,1,""],at_object_creation:[250,3,1,""],at_object_receive:[250,3,1,""],path:[250,4,1,""],return_detail:[250,3,1,""],set_detail:[250,3,1,""],typename:[250,4,1,""]},"evennia.contrib.tutorial_world.rooms.TutorialRoomCmdSet":{at_cmdset_creation:[250,3,1,""],key:[250,4,1,""],path:[250,4,1,""],priority:[250,4,1,""]},"evennia.contrib.tutorial_world.rooms.WeatherRoom":{DoesNotExist:[250,2,1,""],MultipleObjectsReturned:[250,2,1,""],at_object_creation:[250,3,1,""],path:[250,4,1,""],typename:[250,4,1,""],update_weather:[250,3,1,""]},"evennia.contrib.unixcommand":{HelpAction:[251,1,1,""],ParseError:[251,2,1,""],UnixCommand:[251,1,1,""],UnixCommandParser:[251,1,1,""]},"evennia.contrib.unixcommand.UnixCommand":{__init__:[251,3,1,""],aliases:[251,4,1,""],func:[251,3,1,""],get_help:[251,3,1,""],help_category:[251,4,1,""],init_parser:[251,3,1,""],key:[251,4,1,""],lock_storage:[251,4,1,""],parse:[251,3,1,""],search_index_entry:[251,4,1,""]},"evennia.contrib.unixcommand.UnixCommandParser":{__init__:[251,3,1,""],format_help:[251,3,1,""],format_usage:[251,3,1,""],print_help:[251,3,1,""],print_usage:[251,3,1,""]},"evennia.contrib.wilderness":{WildernessExit:[252,1,1,""],WildernessMapProvider:[252,1,1,""],WildernessRoom:[252,1,1,""],WildernessScript:[252,1,1,""],create_wilderness:[252,5,1,""],enter_wilderness:[252,5,1,""],get_new_coordinates:[252,5,1,""]},"evennia.contrib.wilderness.WildernessExit":{DoesNotExist:[252,2,1,""],MultipleObjectsReturned:[252,2,1,""],at_traverse:[252,3,1,""],at_traverse_coordinates:[252,3,1,""],mapprovider:[252,3,1,""],path:[252,4,1,""],typename:[252,4,1,""],wilderness:[252,3,1,""]},"evennia.contrib.wilderness.WildernessMapProvider":{at_prepare_room:[252,3,1,""],exit_typeclass:[252,4,1,""],get_location_name:[252,3,1,""],is_valid_coordinates:[252,3,1,""],room_typeclass:[252,4,1,""]},"evennia.contrib.wilderness.WildernessRoom":{DoesNotExist:[252,2,1,""],MultipleObjectsReturned:[252,2,1,""],at_object_leave:[252,3,1,""],at_object_receive:[252,3,1,""],coordinates:[252,3,1,""],get_display_name:[252,3,1,""],location_name:[252,3,1,""],path:[252,4,1,""],set_active_coordinates:[252,3,1,""],typename:[252,4,1,""],wilderness:[252,3,1,""]},"evennia.contrib.wilderness.WildernessScript":{DoesNotExist:[252,2,1,""],MultipleObjectsReturned:[252,2,1,""],at_after_object_leave:[252,3,1,""],at_script_creation:[252,3,1,""],at_start:[252,3,1,""],get_obj_coordinates:[252,3,1,""],get_objs_at_coordinates:[252,3,1,""],is_valid_coordinates:[252,3,1,""],itemcoordinates:[252,3,1,""],mapprovider:[252,3,1,""],move_obj:[252,3,1,""],path:[252,4,1,""],typename:[252,4,1,""]},"evennia.help":{admin:[254,0,0,"-"],manager:[255,0,0,"-"],models:[256,0,0,"-"]},"evennia.help.admin":{HelpEntryAdmin:[254,1,1,""],HelpEntryForm:[254,1,1,""],HelpTagInline:[254,1,1,""]},"evennia.help.admin.HelpEntryAdmin":{fieldsets:[254,4,1,""],form:[254,4,1,""],inlines:[254,4,1,""],list_display:[254,4,1,""],list_display_links:[254,4,1,""],list_select_related:[254,4,1,""],media:[254,3,1,""],ordering:[254,4,1,""],save_as:[254,4,1,""],save_on_top:[254,4,1,""],search_fields:[254,4,1,""]},"evennia.help.admin.HelpEntryForm":{Meta:[254,1,1,""],base_fields:[254,4,1,""],declared_fields:[254,4,1,""],media:[254,3,1,""]},"evennia.help.admin.HelpEntryForm.Meta":{fields:[254,4,1,""],model:[254,4,1,""]},"evennia.help.admin.HelpTagInline":{media:[254,3,1,""],model:[254,4,1,""],related_field:[254,4,1,""]},"evennia.help.manager":{HelpEntryManager:[255,1,1,""]},"evennia.help.manager.HelpEntryManager":{all_to_category:[255,3,1,""],find_apropos:[255,3,1,""],find_topicmatch:[255,3,1,""],find_topics_with_category:[255,3,1,""],find_topicsuggestions:[255,3,1,""],get_all_categories:[255,3,1,""],get_all_topics:[255,3,1,""],search_help:[255,3,1,""]},"evennia.help.models":{HelpEntry:[256,1,1,""]},"evennia.help.models.HelpEntry":{DoesNotExist:[256,2,1,""],MultipleObjectsReturned:[256,2,1,""],access:[256,3,1,""],aliases:[256,4,1,""],db_entrytext:[256,4,1,""],db_help_category:[256,4,1,""],db_key:[256,4,1,""],db_lock_storage:[256,4,1,""],db_staff_only:[256,4,1,""],db_tags:[256,4,1,""],entrytext:[256,3,1,""],get_absolute_url:[256,3,1,""],help_category:[256,3,1,""],id:[256,4,1,""],key:[256,3,1,""],lock_storage:[256,3,1,""],locks:[256,4,1,""],objects:[256,4,1,""],path:[256,4,1,""],search_index_entry:[256,3,1,""],staff_only:[256,3,1,""],tags:[256,4,1,""],typename:[256,4,1,""],web_get_admin_url:[256,3,1,""],web_get_create_url:[256,3,1,""],web_get_delete_url:[256,3,1,""],web_get_detail_url:[256,3,1,""],web_get_update_url:[256,3,1,""]},"evennia.locks":{lockfuncs:[258,0,0,"-"],lockhandler:[259,0,0,"-"]},"evennia.locks.lockfuncs":{"false":[258,5,1,""],"true":[258,5,1,""],all:[258,5,1,""],attr:[258,5,1,""],attr_eq:[258,5,1,""],attr_ge:[258,5,1,""],attr_gt:[258,5,1,""],attr_le:[258,5,1,""],attr_lt:[258,5,1,""],attr_ne:[258,5,1,""],dbref:[258,5,1,""],has_account:[258,5,1,""],holds:[258,5,1,""],id:[258,5,1,""],inside:[258,5,1,""],inside_rec:[258,5,1,""],locattr:[258,5,1,""],none:[258,5,1,""],objattr:[258,5,1,""],objlocattr:[258,5,1,""],objtag:[258,5,1,""],pdbref:[258,5,1,""],perm:[258,5,1,""],perm_above:[258,5,1,""],pid:[258,5,1,""],pperm:[258,5,1,""],pperm_above:[258,5,1,""],self:[258,5,1,""],serversetting:[258,5,1,""],superuser:[258,5,1,""],tag:[258,5,1,""]},"evennia.locks.lockhandler":{LockException:[259,2,1,""],LockHandler:[259,1,1,""]},"evennia.locks.lockhandler.LockHandler":{"delete":[259,3,1,""],__init__:[259,3,1,""],add:[259,3,1,""],all:[259,3,1,""],append:[259,3,1,""],cache_lock_bypass:[259,3,1,""],check:[259,3,1,""],check_lockstring:[259,3,1,""],clear:[259,3,1,""],get:[259,3,1,""],remove:[259,3,1,""],replace:[259,3,1,""],reset:[259,3,1,""],validate:[259,3,1,""]},"evennia.objects":{admin:[261,0,0,"-"],manager:[262,0,0,"-"],models:[263,0,0,"-"],objects:[264,0,0,"-"]},"evennia.objects.admin":{ObjectAttributeInline:[261,1,1,""],ObjectCreateForm:[261,1,1,""],ObjectDBAdmin:[261,1,1,""],ObjectEditForm:[261,1,1,""],ObjectTagInline:[261,1,1,""]},"evennia.objects.admin.ObjectAttributeInline":{media:[261,3,1,""],model:[261,4,1,""],related_field:[261,4,1,""]},"evennia.objects.admin.ObjectCreateForm":{Meta:[261,1,1,""],base_fields:[261,4,1,""],declared_fields:[261,4,1,""],media:[261,3,1,""],raw_id_fields:[261,4,1,""]},"evennia.objects.admin.ObjectCreateForm.Meta":{fields:[261,4,1,""],model:[261,4,1,""]},"evennia.objects.admin.ObjectDBAdmin":{add_fieldsets:[261,4,1,""],add_form:[261,4,1,""],fieldsets:[261,4,1,""],form:[261,4,1,""],get_fieldsets:[261,3,1,""],get_form:[261,3,1,""],inlines:[261,4,1,""],list_display:[261,4,1,""],list_display_links:[261,4,1,""],list_filter:[261,4,1,""],list_select_related:[261,4,1,""],media:[261,3,1,""],ordering:[261,4,1,""],raw_id_fields:[261,4,1,""],response_add:[261,3,1,""],save_as:[261,4,1,""],save_model:[261,3,1,""],save_on_top:[261,4,1,""],search_fields:[261,4,1,""]},"evennia.objects.admin.ObjectEditForm":{Meta:[261,1,1,""],base_fields:[261,4,1,""],declared_fields:[261,4,1,""],media:[261,3,1,""]},"evennia.objects.admin.ObjectEditForm.Meta":{fields:[261,4,1,""]},"evennia.objects.admin.ObjectTagInline":{media:[261,3,1,""],model:[261,4,1,""],related_field:[261,4,1,""]},"evennia.objects.manager":{ObjectManager:[262,1,1,""]},"evennia.objects.models":{ContentsHandler:[263,1,1,""],ObjectDB:[263,1,1,""]},"evennia.objects.models.ContentsHandler":{__init__:[263,3,1,""],add:[263,3,1,""],clear:[263,3,1,""],get:[263,3,1,""],init:[263,3,1,""],load:[263,3,1,""],remove:[263,3,1,""]},"evennia.objects.models.ObjectDB":{DoesNotExist:[263,2,1,""],MultipleObjectsReturned:[263,2,1,""],account:[263,3,1,""],at_db_location_postsave:[263,3,1,""],cmdset_storage:[263,3,1,""],contents_cache:[263,4,1,""],db_account:[263,4,1,""],db_account_id:[263,4,1,""],db_attributes:[263,4,1,""],db_cmdset_storage:[263,4,1,""],db_destination:[263,4,1,""],db_destination_id:[263,4,1,""],db_home:[263,4,1,""],db_home_id:[263,4,1,""],db_location:[263,4,1,""],db_location_id:[263,4,1,""],db_sessid:[263,4,1,""],db_tags:[263,4,1,""],destination:[263,3,1,""],destinations_set:[263,4,1,""],get_next_by_db_date_created:[263,3,1,""],get_previous_by_db_date_created:[263,3,1,""],hide_from_objects_set:[263,4,1,""],home:[263,3,1,""],homes_set:[263,4,1,""],id:[263,4,1,""],location:[263,3,1,""],locations_set:[263,4,1,""],object_subscription_set:[263,4,1,""],objects:[263,4,1,""],path:[263,4,1,""],receiver_object_set:[263,4,1,""],scriptdb_set:[263,4,1,""],sender_object_set:[263,4,1,""],sessid:[263,3,1,""],typename:[263,4,1,""]},"evennia.objects.objects":{DefaultCharacter:[264,1,1,""],DefaultExit:[264,1,1,""],DefaultObject:[264,1,1,""],DefaultRoom:[264,1,1,""],ExitCommand:[264,1,1,""],ObjectSessionHandler:[264,1,1,""]},"evennia.objects.objects.DefaultCharacter":{DoesNotExist:[264,2,1,""],MultipleObjectsReturned:[264,2,1,""],at_after_move:[264,3,1,""],at_post_puppet:[264,3,1,""],at_post_unpuppet:[264,3,1,""],at_pre_puppet:[264,3,1,""],basetype_setup:[264,3,1,""],connection_time:[264,3,1,""],create:[264,3,1,""],idle_time:[264,3,1,""],lockstring:[264,4,1,""],normalize_name:[264,3,1,""],path:[264,4,1,""],typename:[264,4,1,""],validate_name:[264,3,1,""]},"evennia.objects.objects.DefaultExit":{DoesNotExist:[264,2,1,""],MultipleObjectsReturned:[264,2,1,""],at_cmdset_get:[264,3,1,""],at_failed_traverse:[264,3,1,""],at_init:[264,3,1,""],at_traverse:[264,3,1,""],basetype_setup:[264,3,1,""],create:[264,3,1,""],create_exit_cmdset:[264,3,1,""],exit_command:[264,4,1,""],lockstring:[264,4,1,""],path:[264,4,1,""],priority:[264,4,1,""],typename:[264,4,1,""]},"evennia.objects.objects.DefaultObject":{"delete":[264,3,1,""],DoesNotExist:[264,2,1,""],MultipleObjectsReturned:[264,2,1,""],access:[264,3,1,""],announce_move_from:[264,3,1,""],announce_move_to:[264,3,1,""],at_access:[264,3,1,""],at_after_move:[264,3,1,""],at_after_traverse:[264,3,1,""],at_before_drop:[264,3,1,""],at_before_get:[264,3,1,""],at_before_give:[264,3,1,""],at_before_move:[264,3,1,""],at_before_say:[264,3,1,""],at_cmdset_get:[264,3,1,""],at_desc:[264,3,1,""],at_drop:[264,3,1,""],at_failed_traverse:[264,3,1,""],at_first_save:[264,3,1,""],at_get:[264,3,1,""],at_give:[264,3,1,""],at_init:[264,3,1,""],at_look:[264,3,1,""],at_msg_receive:[264,3,1,""],at_msg_send:[264,3,1,""],at_object_creation:[264,3,1,""],at_object_delete:[264,3,1,""],at_object_leave:[264,3,1,""],at_object_post_copy:[264,3,1,""],at_object_receive:[264,3,1,""],at_post_puppet:[264,3,1,""],at_post_unpuppet:[264,3,1,""],at_pre_puppet:[264,3,1,""],at_pre_unpuppet:[264,3,1,""],at_say:[264,3,1,""],at_server_reload:[264,3,1,""],at_server_shutdown:[264,3,1,""],at_traverse:[264,3,1,""],basetype_posthook_setup:[264,3,1,""],basetype_setup:[264,3,1,""],clear_contents:[264,3,1,""],clear_exits:[264,3,1,""],cmdset:[264,4,1,""],contents:[264,3,1,""],contents_get:[264,3,1,""],contents_set:[264,3,1,""],copy:[264,3,1,""],create:[264,3,1,""],execute_cmd:[264,3,1,""],exits:[264,3,1,""],for_contents:[264,3,1,""],get_display_name:[264,3,1,""],get_numbered_name:[264,3,1,""],has_account:[264,3,1,""],is_connected:[264,3,1,""],is_superuser:[264,3,1,""],lockstring:[264,4,1,""],move_to:[264,3,1,""],msg:[264,3,1,""],msg_contents:[264,3,1,""],nicks:[264,4,1,""],objects:[264,4,1,""],path:[264,4,1,""],return_appearance:[264,3,1,""],scripts:[264,4,1,""],search:[264,3,1,""],search_account:[264,3,1,""],sessions:[264,4,1,""],typename:[264,4,1,""]},"evennia.objects.objects.DefaultRoom":{DoesNotExist:[264,2,1,""],MultipleObjectsReturned:[264,2,1,""],basetype_setup:[264,3,1,""],create:[264,3,1,""],lockstring:[264,4,1,""],path:[264,4,1,""],typename:[264,4,1,""]},"evennia.objects.objects.ExitCommand":{aliases:[264,4,1,""],func:[264,3,1,""],get_extra_info:[264,3,1,""],help_category:[264,4,1,""],key:[264,4,1,""],lock_storage:[264,4,1,""],obj:[264,4,1,""],search_index_entry:[264,4,1,""]},"evennia.objects.objects.ObjectSessionHandler":{__init__:[264,3,1,""],add:[264,3,1,""],all:[264,3,1,""],clear:[264,3,1,""],count:[264,3,1,""],get:[264,3,1,""],remove:[264,3,1,""]},"evennia.prototypes":{menus:[266,0,0,"-"],protfuncs:[267,0,0,"-"],prototypes:[268,0,0,"-"],spawner:[269,0,0,"-"]},"evennia.prototypes.menus":{OLCMenu:[266,1,1,""],node_apply_diff:[266,5,1,""],node_destination:[266,5,1,""],node_examine_entity:[266,5,1,""],node_home:[266,5,1,""],node_index:[266,5,1,""],node_key:[266,5,1,""],node_location:[266,5,1,""],node_prototype_desc:[266,5,1,""],node_prototype_key:[266,5,1,""],node_prototype_save:[266,5,1,""],node_prototype_spawn:[266,5,1,""],node_validate_prototype:[266,5,1,""],start_olc:[266,5,1,""]},"evennia.prototypes.menus.OLCMenu":{display_helptext:[266,3,1,""],helptext_formatter:[266,3,1,""],nodetext_formatter:[266,3,1,""],options_formatter:[266,3,1,""]},"evennia.prototypes.protfuncs":{add:[267,5,1,""],base_random:[267,5,1,""],center_justify:[267,5,1,""],choice:[267,5,1,""],dbref:[267,5,1,""],div:[267,5,1,""],eval:[267,5,1,""],full_justify:[267,5,1,""],left_justify:[267,5,1,""],mult:[267,5,1,""],obj:[267,5,1,""],objlist:[267,5,1,""],protkey:[267,5,1,""],randint:[267,5,1,""],random:[267,5,1,""],right_justify:[267,5,1,""],sub:[267,5,1,""],toint:[267,5,1,""]},"evennia.prototypes.prototypes":{DbPrototype:[268,1,1,""],PermissionError:[268,2,1,""],ValidationError:[268,2,1,""],check_permission:[268,5,1,""],create_prototype:[268,5,1,""],delete_prototype:[268,5,1,""],format_available_protfuncs:[268,5,1,""],homogenize_prototype:[268,5,1,""],init_spawn_value:[268,5,1,""],list_prototypes:[268,5,1,""],protfunc_parser:[268,5,1,""],prototype_to_str:[268,5,1,""],save_prototype:[268,5,1,""],search_objects_with_prototype:[268,5,1,""],search_prototype:[268,5,1,""],validate_prototype:[268,5,1,""],value_to_obj:[268,5,1,""],value_to_obj_or_any:[268,5,1,""]},"evennia.prototypes.prototypes.DbPrototype":{DoesNotExist:[268,2,1,""],MultipleObjectsReturned:[268,2,1,""],at_script_creation:[268,3,1,""],path:[268,4,1,""],prototype:[268,3,1,""],typename:[268,4,1,""]},"evennia.prototypes.spawner":{Unset:[269,1,1,""],batch_create_object:[269,5,1,""],batch_update_objects_with_prototype:[269,5,1,""],flatten_diff:[269,5,1,""],flatten_prototype:[269,5,1,""],format_diff:[269,5,1,""],prototype_diff:[269,5,1,""],prototype_diff_from_object:[269,5,1,""],prototype_from_object:[269,5,1,""],spawn:[269,5,1,""]},"evennia.scripts":{admin:[271,0,0,"-"],manager:[272,0,0,"-"],models:[273,0,0,"-"],monitorhandler:[274,0,0,"-"],scripthandler:[275,0,0,"-"],scripts:[276,0,0,"-"],taskhandler:[277,0,0,"-"],tickerhandler:[278,0,0,"-"]},"evennia.scripts.admin":{ScriptAttributeInline:[271,1,1,""],ScriptDBAdmin:[271,1,1,""],ScriptTagInline:[271,1,1,""]},"evennia.scripts.admin.ScriptAttributeInline":{media:[271,3,1,""],model:[271,4,1,""],related_field:[271,4,1,""]},"evennia.scripts.admin.ScriptDBAdmin":{fieldsets:[271,4,1,""],inlines:[271,4,1,""],list_display:[271,4,1,""],list_display_links:[271,4,1,""],list_select_related:[271,4,1,""],media:[271,3,1,""],ordering:[271,4,1,""],raw_id_fields:[271,4,1,""],save_as:[271,4,1,""],save_model:[271,3,1,""],save_on_top:[271,4,1,""],search_fields:[271,4,1,""]},"evennia.scripts.admin.ScriptTagInline":{media:[271,3,1,""],model:[271,4,1,""],related_field:[271,4,1,""]},"evennia.scripts.manager":{ScriptManager:[272,1,1,""]},"evennia.scripts.models":{ScriptDB:[273,1,1,""]},"evennia.scripts.models.ScriptDB":{DoesNotExist:[273,2,1,""],MultipleObjectsReturned:[273,2,1,""],account:[273,3,1,""],db_account:[273,4,1,""],db_account_id:[273,4,1,""],db_attributes:[273,4,1,""],db_desc:[273,4,1,""],db_interval:[273,4,1,""],db_is_active:[273,4,1,""],db_obj:[273,4,1,""],db_obj_id:[273,4,1,""],db_persistent:[273,4,1,""],db_repeats:[273,4,1,""],db_start_delay:[273,4,1,""],db_tags:[273,4,1,""],desc:[273,3,1,""],get_next_by_db_date_created:[273,3,1,""],get_previous_by_db_date_created:[273,3,1,""],id:[273,4,1,""],interval:[273,3,1,""],is_active:[273,3,1,""],obj:[273,3,1,""],object:[273,3,1,""],objects:[273,4,1,""],path:[273,4,1,""],persistent:[273,3,1,""],receiver_script_set:[273,4,1,""],repeats:[273,3,1,""],sender_script_set:[273,4,1,""],start_delay:[273,3,1,""],typename:[273,4,1,""]},"evennia.scripts.monitorhandler":{MonitorHandler:[274,1,1,""]},"evennia.scripts.monitorhandler.MonitorHandler":{__init__:[274,3,1,""],add:[274,3,1,""],all:[274,3,1,""],at_update:[274,3,1,""],clear:[274,3,1,""],remove:[274,3,1,""],restore:[274,3,1,""],save:[274,3,1,""]},"evennia.scripts.scripthandler":{ScriptHandler:[275,1,1,""]},"evennia.scripts.scripthandler.ScriptHandler":{"delete":[275,3,1,""],__init__:[275,3,1,""],add:[275,3,1,""],all:[275,3,1,""],get:[275,3,1,""],start:[275,3,1,""],stop:[275,3,1,""],validate:[275,3,1,""]},"evennia.scripts.scripts":{DefaultScript:[276,1,1,""],DoNothing:[276,1,1,""],Store:[276,1,1,""]},"evennia.scripts.scripts.DefaultScript":{DoesNotExist:[276,2,1,""],MultipleObjectsReturned:[276,2,1,""],at_idmapper_flush:[276,3,1,""],at_repeat:[276,3,1,""],at_script_creation:[276,3,1,""],at_server_reload:[276,3,1,""],at_server_shutdown:[276,3,1,""],at_start:[276,3,1,""],at_stop:[276,3,1,""],create:[276,3,1,""],force_repeat:[276,3,1,""],is_valid:[276,3,1,""],path:[276,4,1,""],pause:[276,3,1,""],remaining_repeats:[276,3,1,""],reset_callcount:[276,3,1,""],restart:[276,3,1,""],start:[276,3,1,""],stop:[276,3,1,""],time_until_next_repeat:[276,3,1,""],typename:[276,4,1,""],unpause:[276,3,1,""]},"evennia.scripts.scripts.DoNothing":{DoesNotExist:[276,2,1,""],MultipleObjectsReturned:[276,2,1,""],at_script_creation:[276,3,1,""],path:[276,4,1,""],typename:[276,4,1,""]},"evennia.scripts.scripts.Store":{DoesNotExist:[276,2,1,""],MultipleObjectsReturned:[276,2,1,""],at_script_creation:[276,3,1,""],path:[276,4,1,""],typename:[276,4,1,""]},"evennia.scripts.taskhandler":{TaskHandler:[277,1,1,""]},"evennia.scripts.taskhandler.TaskHandler":{__init__:[277,3,1,""],add:[277,3,1,""],create_delays:[277,3,1,""],do_task:[277,3,1,""],load:[277,3,1,""],remove:[277,3,1,""],save:[277,3,1,""]},"evennia.scripts.tickerhandler":{Ticker:[278,1,1,""],TickerHandler:[278,1,1,""],TickerPool:[278,1,1,""]},"evennia.scripts.tickerhandler.Ticker":{__init__:[278,3,1,""],add:[278,3,1,""],remove:[278,3,1,""],stop:[278,3,1,""],validate:[278,3,1,""]},"evennia.scripts.tickerhandler.TickerHandler":{__init__:[278,3,1,""],add:[278,3,1,""],all:[278,3,1,""],all_display:[278,3,1,""],clear:[278,3,1,""],remove:[278,3,1,""],restore:[278,3,1,""],save:[278,3,1,""],ticker_pool_class:[278,4,1,""]},"evennia.scripts.tickerhandler.TickerPool":{__init__:[278,3,1,""],add:[278,3,1,""],remove:[278,3,1,""],stop:[278,3,1,""],ticker_class:[278,4,1,""]},"evennia.server":{admin:[280,0,0,"-"],amp_client:[281,0,0,"-"],connection_wizard:[282,0,0,"-"],deprecations:[283,0,0,"-"],evennia_launcher:[284,0,0,"-"],game_index_client:[285,0,0,"-"],initial_setup:[288,0,0,"-"],inputfuncs:[289,0,0,"-"],manager:[290,0,0,"-"],models:[291,0,0,"-"],portal:[292,0,0,"-"],profiling:[314,0,0,"-"],server:[322,0,0,"-"],serversession:[323,0,0,"-"],session:[324,0,0,"-"],sessionhandler:[325,0,0,"-"],signals:[326,0,0,"-"],throttle:[327,0,0,"-"],validators:[328,0,0,"-"],webserver:[329,0,0,"-"]},"evennia.server.admin":{ServerConfigAdmin:[280,1,1,""]},"evennia.server.admin.ServerConfigAdmin":{list_display:[280,4,1,""],list_display_links:[280,4,1,""],list_select_related:[280,4,1,""],media:[280,3,1,""],ordering:[280,4,1,""],save_as:[280,4,1,""],save_on_top:[280,4,1,""],search_fields:[280,4,1,""]},"evennia.server.amp_client":{AMPClientFactory:[281,1,1,""],AMPServerClientProtocol:[281,1,1,""]},"evennia.server.amp_client.AMPClientFactory":{__init__:[281,3,1,""],buildProtocol:[281,3,1,""],clientConnectionFailed:[281,3,1,""],clientConnectionLost:[281,3,1,""],factor:[281,4,1,""],initialDelay:[281,4,1,""],maxDelay:[281,4,1,""],noisy:[281,4,1,""],startedConnecting:[281,3,1,""]},"evennia.server.amp_client.AMPServerClientProtocol":{connectionMade:[281,3,1,""],data_to_portal:[281,3,1,""],send_AdminServer2Portal:[281,3,1,""],send_MsgServer2Portal:[281,3,1,""],server_receive_adminportal2server:[281,3,1,""],server_receive_msgportal2server:[281,3,1,""],server_receive_status:[281,3,1,""]},"evennia.server.connection_wizard":{ConnectionWizard:[282,1,1,""],node_game_index_fields:[282,5,1,""],node_game_index_start:[282,5,1,""],node_mssp_start:[282,5,1,""],node_start:[282,5,1,""],node_view_and_apply_settings:[282,5,1,""]},"evennia.server.connection_wizard.ConnectionWizard":{__init__:[282,3,1,""],ask_choice:[282,3,1,""],ask_continue:[282,3,1,""],ask_input:[282,3,1,""],ask_node:[282,3,1,""],ask_yesno:[282,3,1,""],display:[282,3,1,""]},"evennia.server.deprecations":{check_errors:[283,5,1,""],check_warnings:[283,5,1,""]},"evennia.server.evennia_launcher":{AMPLauncherProtocol:[284,1,1,""],MsgLauncher2Portal:[284,1,1,""],MsgStatus:[284,1,1,""],check_database:[284,5,1,""],check_main_evennia_dependencies:[284,5,1,""],collectstatic:[284,5,1,""],create_game_directory:[284,5,1,""],create_secret_key:[284,5,1,""],create_settings_file:[284,5,1,""],create_superuser:[284,5,1,""],del_pid:[284,5,1,""],error_check_python_modules:[284,5,1,""],evennia_version:[284,5,1,""],get_pid:[284,5,1,""],getenv:[284,5,1,""],init_game_directory:[284,5,1,""],kill:[284,5,1,""],list_settings:[284,5,1,""],main:[284,5,1,""],query_info:[284,5,1,""],query_status:[284,5,1,""],reboot_evennia:[284,5,1,""],reload_evennia:[284,5,1,""],run_connect_wizard:[284,5,1,""],run_dummyrunner:[284,5,1,""],run_menu:[284,5,1,""],send_instruction:[284,5,1,""],set_gamedir:[284,5,1,""],show_version_info:[284,5,1,""],start_evennia:[284,5,1,""],start_only_server:[284,5,1,""],start_portal_interactive:[284,5,1,""],start_server_interactive:[284,5,1,""],stop_evennia:[284,5,1,""],stop_server_only:[284,5,1,""],tail_log_files:[284,5,1,""],wait_for_status:[284,5,1,""],wait_for_status_reply:[284,5,1,""]},"evennia.server.evennia_launcher.AMPLauncherProtocol":{__init__:[284,3,1,""],receive_status_from_portal:[284,3,1,""],wait_for_status:[284,3,1,""]},"evennia.server.evennia_launcher.MsgLauncher2Portal":{allErrors:[284,4,1,""],arguments:[284,4,1,""],commandName:[284,4,1,""],errors:[284,4,1,""],key:[284,4,1,""],response:[284,4,1,""],reverseErrors:[284,4,1,""]},"evennia.server.evennia_launcher.MsgStatus":{allErrors:[284,4,1,""],arguments:[284,4,1,""],commandName:[284,4,1,""],errors:[284,4,1,""],key:[284,4,1,""],response:[284,4,1,""],reverseErrors:[284,4,1,""]},"evennia.server.game_index_client":{client:[286,0,0,"-"],service:[287,0,0,"-"]},"evennia.server.game_index_client.client":{EvenniaGameIndexClient:[286,1,1,""],QuietHTTP11ClientFactory:[286,1,1,""],SimpleResponseReceiver:[286,1,1,""],StringProducer:[286,1,1,""]},"evennia.server.game_index_client.client.EvenniaGameIndexClient":{__init__:[286,3,1,""],handle_egd_response:[286,3,1,""],send_game_details:[286,3,1,""]},"evennia.server.game_index_client.client.QuietHTTP11ClientFactory":{noisy:[286,4,1,""]},"evennia.server.game_index_client.client.SimpleResponseReceiver":{__init__:[286,3,1,""],connectionLost:[286,3,1,""],dataReceived:[286,3,1,""]},"evennia.server.game_index_client.client.StringProducer":{__init__:[286,3,1,""],pauseProducing:[286,3,1,""],startProducing:[286,3,1,""],stopProducing:[286,3,1,""]},"evennia.server.game_index_client.service":{EvenniaGameIndexService:[287,1,1,""]},"evennia.server.game_index_client.service.EvenniaGameIndexService":{__init__:[287,3,1,""],name:[287,4,1,""],startService:[287,3,1,""],stopService:[287,3,1,""]},"evennia.server.initial_setup":{at_initial_setup:[288,5,1,""],collectstatic:[288,5,1,""],create_channels:[288,5,1,""],create_objects:[288,5,1,""],get_god_account:[288,5,1,""],handle_setup:[288,5,1,""],reset_server:[288,5,1,""]},"evennia.server.inputfuncs":{"default":[289,5,1,""],bot_data_in:[289,5,1,""],client_options:[289,5,1,""],echo:[289,5,1,""],external_discord_hello:[289,5,1,""],get_client_options:[289,5,1,""],get_inputfuncs:[289,5,1,""],get_value:[289,5,1,""],hello:[289,5,1,""],login:[289,5,1,""],monitor:[289,5,1,""],monitored:[289,5,1,""],msdp_list:[289,5,1,""],msdp_report:[289,5,1,""],msdp_send:[289,5,1,""],msdp_unreport:[289,5,1,""],repeat:[289,5,1,""],supports_set:[289,5,1,""],text:[289,5,1,""],unmonitor:[289,5,1,""],unrepeat:[289,5,1,""],webclient_options:[289,5,1,""]},"evennia.server.manager":{ServerConfigManager:[290,1,1,""]},"evennia.server.manager.ServerConfigManager":{conf:[290,3,1,""]},"evennia.server.models":{ServerConfig:[291,1,1,""]},"evennia.server.models.ServerConfig":{DoesNotExist:[291,2,1,""],MultipleObjectsReturned:[291,2,1,""],db_key:[291,4,1,""],db_value:[291,4,1,""],id:[291,4,1,""],key:[291,3,1,""],objects:[291,4,1,""],path:[291,4,1,""],store:[291,3,1,""],typename:[291,4,1,""],value:[291,3,1,""]},"evennia.server.portal":{amp:[293,0,0,"-"],amp_server:[294,0,0,"-"],grapevine:[295,0,0,"-"],irc:[296,0,0,"-"],mccp:[297,0,0,"-"],mssp:[298,0,0,"-"],mxp:[299,0,0,"-"],naws:[300,0,0,"-"],portal:[301,0,0,"-"],portalsessionhandler:[302,0,0,"-"],rss:[303,0,0,"-"],ssh:[304,0,0,"-"],ssl:[305,0,0,"-"],suppress_ga:[306,0,0,"-"],telnet:[307,0,0,"-"],telnet_oob:[308,0,0,"-"],telnet_ssl:[309,0,0,"-"],tests:[310,0,0,"-"],ttype:[311,0,0,"-"],webclient:[312,0,0,"-"],webclient_ajax:[313,0,0,"-"]},"evennia.server.portal.amp":{AMPMultiConnectionProtocol:[293,1,1,""],AdminPortal2Server:[293,1,1,""],AdminServer2Portal:[293,1,1,""],Compressed:[293,1,1,""],FunctionCall:[293,1,1,""],MsgLauncher2Portal:[293,1,1,""],MsgPortal2Server:[293,1,1,""],MsgServer2Portal:[293,1,1,""],MsgStatus:[293,1,1,""],dumps:[293,5,1,""],loads:[293,5,1,""]},"evennia.server.portal.amp.AMPMultiConnectionProtocol":{__init__:[293,3,1,""],broadcast:[293,3,1,""],connectionLost:[293,3,1,""],connectionMade:[293,3,1,""],dataReceived:[293,3,1,""],data_in:[293,3,1,""],errback:[293,3,1,""],makeConnection:[293,3,1,""],receive_functioncall:[293,3,1,""],send_FunctionCall:[293,3,1,""]},"evennia.server.portal.amp.AdminPortal2Server":{allErrors:[293,4,1,""],arguments:[293,4,1,""],commandName:[293,4,1,""],errors:[293,4,1,""],key:[293,4,1,""],response:[293,4,1,""],reverseErrors:[293,4,1,""]},"evennia.server.portal.amp.AdminServer2Portal":{allErrors:[293,4,1,""],arguments:[293,4,1,""],commandName:[293,4,1,""],errors:[293,4,1,""],key:[293,4,1,""],response:[293,4,1,""],reverseErrors:[293,4,1,""]},"evennia.server.portal.amp.Compressed":{fromBox:[293,3,1,""],fromString:[293,3,1,""],toBox:[293,3,1,""],toString:[293,3,1,""]},"evennia.server.portal.amp.FunctionCall":{allErrors:[293,4,1,""],arguments:[293,4,1,""],commandName:[293,4,1,""],errors:[293,4,1,""],key:[293,4,1,""],response:[293,4,1,""],reverseErrors:[293,4,1,""]},"evennia.server.portal.amp.MsgLauncher2Portal":{allErrors:[293,4,1,""],arguments:[293,4,1,""],commandName:[293,4,1,""],errors:[293,4,1,""],key:[293,4,1,""],response:[293,4,1,""],reverseErrors:[293,4,1,""]},"evennia.server.portal.amp.MsgPortal2Server":{allErrors:[293,4,1,""],arguments:[293,4,1,""],commandName:[293,4,1,""],errors:[293,4,1,""],key:[293,4,1,""],response:[293,4,1,""],reverseErrors:[293,4,1,""]},"evennia.server.portal.amp.MsgServer2Portal":{allErrors:[293,4,1,""],arguments:[293,4,1,""],commandName:[293,4,1,""],errors:[293,4,1,""],key:[293,4,1,""],response:[293,4,1,""],reverseErrors:[293,4,1,""]},"evennia.server.portal.amp.MsgStatus":{allErrors:[293,4,1,""],arguments:[293,4,1,""],commandName:[293,4,1,""],errors:[293,4,1,""],key:[293,4,1,""],response:[293,4,1,""],reverseErrors:[293,4,1,""]},"evennia.server.portal.amp_server":{AMPServerFactory:[294,1,1,""],AMPServerProtocol:[294,1,1,""],getenv:[294,5,1,""]},"evennia.server.portal.amp_server.AMPServerFactory":{__init__:[294,3,1,""],buildProtocol:[294,3,1,""],logPrefix:[294,3,1,""],noisy:[294,4,1,""]},"evennia.server.portal.amp_server.AMPServerProtocol":{connectionLost:[294,3,1,""],data_to_server:[294,3,1,""],get_status:[294,3,1,""],portal_receive_adminserver2portal:[294,3,1,""],portal_receive_launcher2portal:[294,3,1,""],portal_receive_server2portal:[294,3,1,""],portal_receive_status:[294,3,1,""],send_AdminPortal2Server:[294,3,1,""],send_MsgPortal2Server:[294,3,1,""],send_Status2Launcher:[294,3,1,""],start_server:[294,3,1,""],stop_server:[294,3,1,""],wait_for_disconnect:[294,3,1,""],wait_for_server_connect:[294,3,1,""]},"evennia.server.portal.grapevine":{GrapevineClient:[295,1,1,""],RestartingWebsocketServerFactory:[295,1,1,""]},"evennia.server.portal.grapevine.GrapevineClient":{__init__:[295,3,1,""],at_login:[295,3,1,""],data_in:[295,3,1,""],disconnect:[295,3,1,""],onClose:[295,3,1,""],onMessage:[295,3,1,""],onOpen:[295,3,1,""],send_authenticate:[295,3,1,""],send_channel:[295,3,1,""],send_default:[295,3,1,""],send_heartbeat:[295,3,1,""],send_subscribe:[295,3,1,""],send_unsubscribe:[295,3,1,""]},"evennia.server.portal.grapevine.RestartingWebsocketServerFactory":{__init__:[295,3,1,""],buildProtocol:[295,3,1,""],clientConnectionFailed:[295,3,1,""],clientConnectionLost:[295,3,1,""],factor:[295,4,1,""],initialDelay:[295,4,1,""],maxDelay:[295,4,1,""],reconnect:[295,3,1,""],start:[295,3,1,""],startedConnecting:[295,3,1,""]},"evennia.server.portal.irc":{IRCBot:[296,1,1,""],IRCBotFactory:[296,1,1,""],parse_ansi_to_irc:[296,5,1,""],parse_irc_to_ansi:[296,5,1,""]},"evennia.server.portal.irc.IRCBot":{action:[296,3,1,""],at_login:[296,3,1,""],channel:[296,4,1,""],data_in:[296,3,1,""],disconnect:[296,3,1,""],factory:[296,4,1,""],get_nicklist:[296,3,1,""],irc_RPL_ENDOFNAMES:[296,3,1,""],irc_RPL_NAMREPLY:[296,3,1,""],lineRate:[296,4,1,""],logger:[296,4,1,""],nickname:[296,4,1,""],pong:[296,3,1,""],privmsg:[296,3,1,""],send_channel:[296,3,1,""],send_default:[296,3,1,""],send_ping:[296,3,1,""],send_privmsg:[296,3,1,""],send_reconnect:[296,3,1,""],send_request_nicklist:[296,3,1,""],signedOn:[296,3,1,""],sourceURL:[296,4,1,""]},"evennia.server.portal.irc.IRCBotFactory":{__init__:[296,3,1,""],buildProtocol:[296,3,1,""],clientConnectionFailed:[296,3,1,""],clientConnectionLost:[296,3,1,""],factor:[296,4,1,""],initialDelay:[296,4,1,""],maxDelay:[296,4,1,""],reconnect:[296,3,1,""],start:[296,3,1,""],startedConnecting:[296,3,1,""]},"evennia.server.portal.mccp":{Mccp:[297,1,1,""],mccp_compress:[297,5,1,""]},"evennia.server.portal.mccp.Mccp":{__init__:[297,3,1,""],do_mccp:[297,3,1,""],no_mccp:[297,3,1,""]},"evennia.server.portal.mssp":{Mssp:[298,1,1,""]},"evennia.server.portal.mssp.Mssp":{__init__:[298,3,1,""],do_mssp:[298,3,1,""],get_player_count:[298,3,1,""],get_uptime:[298,3,1,""],no_mssp:[298,3,1,""]},"evennia.server.portal.mxp":{Mxp:[299,1,1,""],mxp_parse:[299,5,1,""]},"evennia.server.portal.mxp.Mxp":{__init__:[299,3,1,""],do_mxp:[299,3,1,""],no_mxp:[299,3,1,""]},"evennia.server.portal.naws":{Naws:[300,1,1,""]},"evennia.server.portal.naws.Naws":{__init__:[300,3,1,""],do_naws:[300,3,1,""],negotiate_sizes:[300,3,1,""],no_naws:[300,3,1,""]},"evennia.server.portal.portal":{Portal:[301,1,1,""],Websocket:[301,1,1,""]},"evennia.server.portal.portal.Portal":{__init__:[301,3,1,""],get_info_dict:[301,3,1,""],shutdown:[301,3,1,""]},"evennia.server.portal.portalsessionhandler":{PortalSessionHandler:[302,1,1,""]},"evennia.server.portal.portalsessionhandler.PortalSessionHandler":{__init__:[302,3,1,""],announce_all:[302,3,1,""],at_server_connection:[302,3,1,""],connect:[302,3,1,""],count_loggedin:[302,3,1,""],data_in:[302,3,1,""],data_out:[302,3,1,""],disconnect:[302,3,1,""],disconnect_all:[302,3,1,""],generate_sessid:[302,3,1,""],server_connect:[302,3,1,""],server_disconnect:[302,3,1,""],server_disconnect_all:[302,3,1,""],server_logged_in:[302,3,1,""],server_session_sync:[302,3,1,""],sessions_from_csessid:[302,3,1,""],sync:[302,3,1,""]},"evennia.server.portal.rss":{RSSBotFactory:[303,1,1,""],RSSReader:[303,1,1,""]},"evennia.server.portal.rss.RSSBotFactory":{__init__:[303,3,1,""],start:[303,3,1,""]},"evennia.server.portal.rss.RSSReader":{__init__:[303,3,1,""],data_in:[303,3,1,""],disconnect:[303,3,1,""],get_new:[303,3,1,""],update:[303,3,1,""]},"evennia.server.portal.ssh":{AccountDBPasswordChecker:[304,1,1,""],ExtraInfoAuthServer:[304,1,1,""],PassAvatarIdTerminalRealm:[304,1,1,""],SSHServerFactory:[304,1,1,""],SshProtocol:[304,1,1,""],TerminalSessionTransport_getPeer:[304,1,1,""],getKeyPair:[304,5,1,""],makeFactory:[304,5,1,""]},"evennia.server.portal.ssh.AccountDBPasswordChecker":{__init__:[304,3,1,""],credentialInterfaces:[304,4,1,""],noisy:[304,4,1,""],requestAvatarId:[304,3,1,""]},"evennia.server.portal.ssh.ExtraInfoAuthServer":{auth_password:[304,3,1,""],noisy:[304,4,1,""]},"evennia.server.portal.ssh.PassAvatarIdTerminalRealm":{noisy:[304,4,1,""]},"evennia.server.portal.ssh.SSHServerFactory":{logPrefix:[304,3,1,""],noisy:[304,4,1,""]},"evennia.server.portal.ssh.SshProtocol":{__init__:[304,3,1,""],at_login:[304,3,1,""],connectionLost:[304,3,1,""],connectionMade:[304,3,1,""],data_out:[304,3,1,""],disconnect:[304,3,1,""],getClientAddress:[304,3,1,""],handle_EOF:[304,3,1,""],handle_FF:[304,3,1,""],handle_INT:[304,3,1,""],handle_QUIT:[304,3,1,""],lineReceived:[304,3,1,""],noisy:[304,4,1,""],sendLine:[304,3,1,""],send_default:[304,3,1,""],send_prompt:[304,3,1,""],send_text:[304,3,1,""],terminalSize:[304,3,1,""]},"evennia.server.portal.ssh.TerminalSessionTransport_getPeer":{__init__:[304,3,1,""],noisy:[304,4,1,""]},"evennia.server.portal.ssl":{SSLProtocol:[305,1,1,""],getSSLContext:[305,5,1,""],verify_SSL_key_and_cert:[305,5,1,""]},"evennia.server.portal.ssl.SSLProtocol":{__init__:[305,3,1,""]},"evennia.server.portal.suppress_ga":{SuppressGA:[306,1,1,""]},"evennia.server.portal.suppress_ga.SuppressGA":{__init__:[306,3,1,""],will_suppress_ga:[306,3,1,""],wont_suppress_ga:[306,3,1,""]},"evennia.server.portal.telnet":{TelnetProtocol:[307,1,1,""],TelnetServerFactory:[307,1,1,""]},"evennia.server.portal.telnet.TelnetProtocol":{__init__:[307,3,1,""],applicationDataReceived:[307,3,1,""],at_login:[307,3,1,""],connectionLost:[307,3,1,""],connectionMade:[307,3,1,""],dataReceived:[307,3,1,""],data_in:[307,3,1,""],data_out:[307,3,1,""],disableLocal:[307,3,1,""],disableRemote:[307,3,1,""],disconnect:[307,3,1,""],enableLocal:[307,3,1,""],enableRemote:[307,3,1,""],handshake_done:[307,3,1,""],sendLine:[307,3,1,""],send_default:[307,3,1,""],send_prompt:[307,3,1,""],send_text:[307,3,1,""],toggle_nop_keepalive:[307,3,1,""]},"evennia.server.portal.telnet.TelnetServerFactory":{logPrefix:[307,3,1,""],noisy:[307,4,1,""]},"evennia.server.portal.telnet_oob":{TelnetOOB:[308,1,1,""]},"evennia.server.portal.telnet_oob.TelnetOOB":{__init__:[308,3,1,""],data_out:[308,3,1,""],decode_gmcp:[308,3,1,""],decode_msdp:[308,3,1,""],do_gmcp:[308,3,1,""],do_msdp:[308,3,1,""],encode_gmcp:[308,3,1,""],encode_msdp:[308,3,1,""],no_gmcp:[308,3,1,""],no_msdp:[308,3,1,""]},"evennia.server.portal.telnet_ssl":{SSLProtocol:[309,1,1,""],getSSLContext:[309,5,1,""],verify_or_create_SSL_key_and_cert:[309,5,1,""]},"evennia.server.portal.telnet_ssl.SSLProtocol":{__init__:[309,3,1,""]},"evennia.server.portal.tests":{TestAMPServer:[310,1,1,""],TestIRC:[310,1,1,""],TestTelnet:[310,1,1,""],TestWebSocket:[310,1,1,""]},"evennia.server.portal.tests.TestAMPServer":{setUp:[310,3,1,""],test_amp_in:[310,3,1,""],test_amp_out:[310,3,1,""],test_large_msg:[310,3,1,""]},"evennia.server.portal.tests.TestIRC":{test_bold:[310,3,1,""],test_colors:[310,3,1,""],test_identity:[310,3,1,""],test_italic:[310,3,1,""],test_plain_ansi:[310,3,1,""]},"evennia.server.portal.tests.TestTelnet":{setUp:[310,3,1,""],test_mudlet_ttype:[310,3,1,""]},"evennia.server.portal.tests.TestWebSocket":{setUp:[310,3,1,""],tearDown:[310,3,1,""],test_data_in:[310,3,1,""],test_data_out:[310,3,1,""]},"evennia.server.portal.ttype":{Ttype:[311,1,1,""]},"evennia.server.portal.ttype.Ttype":{__init__:[311,3,1,""],will_ttype:[311,3,1,""],wont_ttype:[311,3,1,""]},"evennia.server.portal.webclient":{WebSocketClient:[312,1,1,""]},"evennia.server.portal.webclient.WebSocketClient":{__init__:[312,3,1,""],at_login:[312,3,1,""],data_in:[312,3,1,""],disconnect:[312,3,1,""],get_client_session:[312,3,1,""],nonce:[312,4,1,""],onClose:[312,3,1,""],onMessage:[312,3,1,""],onOpen:[312,3,1,""],sendLine:[312,3,1,""],send_default:[312,3,1,""],send_prompt:[312,3,1,""],send_text:[312,3,1,""]},"evennia.server.portal.webclient_ajax":{AjaxWebClient:[313,1,1,""],AjaxWebClientSession:[313,1,1,""],LazyEncoder:[313,1,1,""],jsonify:[313,5,1,""]},"evennia.server.portal.webclient_ajax.AjaxWebClient":{__init__:[313,3,1,""],allowedMethods:[313,4,1,""],at_login:[313,3,1,""],client_disconnect:[313,3,1,""],get_client_sessid:[313,3,1,""],isLeaf:[313,4,1,""],lineSend:[313,3,1,""],mode_close:[313,3,1,""],mode_init:[313,3,1,""],mode_input:[313,3,1,""],mode_keepalive:[313,3,1,""],mode_receive:[313,3,1,""],render_POST:[313,3,1,""]},"evennia.server.portal.webclient_ajax.AjaxWebClientSession":{__init__:[313,3,1,""],at_login:[313,3,1,""],data_in:[313,3,1,""],data_out:[313,3,1,""],disconnect:[313,3,1,""],get_client_session:[313,3,1,""],send_default:[313,3,1,""],send_prompt:[313,3,1,""],send_text:[313,3,1,""]},"evennia.server.portal.webclient_ajax.LazyEncoder":{"default":[313,3,1,""]},"evennia.server.profiling":{dummyrunner:[315,0,0,"-"],dummyrunner_settings:[316,0,0,"-"],memplot:[317,0,0,"-"],settings_mixin:[318,0,0,"-"],test_queries:[319,0,0,"-"],tests:[320,0,0,"-"],timetrace:[321,0,0,"-"]},"evennia.server.profiling.dummyrunner":{DummyClient:[315,1,1,""],DummyFactory:[315,1,1,""],gidcounter:[315,5,1,""],idcounter:[315,5,1,""],makeiter:[315,5,1,""],start_all_dummy_clients:[315,5,1,""]},"evennia.server.profiling.dummyrunner.DummyClient":{connectionLost:[315,3,1,""],connectionMade:[315,3,1,""],counter:[315,3,1,""],dataReceived:[315,3,1,""],error:[315,3,1,""],logout:[315,3,1,""],step:[315,3,1,""]},"evennia.server.profiling.dummyrunner.DummyFactory":{__init__:[315,3,1,""],protocol:[315,4,1,""]},"evennia.server.profiling.dummyrunner_settings":{c_creates_button:[316,5,1,""],c_creates_obj:[316,5,1,""],c_digs:[316,5,1,""],c_examines:[316,5,1,""],c_help:[316,5,1,""],c_idles:[316,5,1,""],c_login:[316,5,1,""],c_login_nodig:[316,5,1,""],c_logout:[316,5,1,""],c_looks:[316,5,1,""],c_moves:[316,5,1,""],c_moves_n:[316,5,1,""],c_moves_s:[316,5,1,""],c_socialize:[316,5,1,""]},"evennia.server.profiling.memplot":{Memplot:[317,1,1,""]},"evennia.server.profiling.memplot.Memplot":{DoesNotExist:[317,2,1,""],MultipleObjectsReturned:[317,2,1,""],at_repeat:[317,3,1,""],at_script_creation:[317,3,1,""],path:[317,4,1,""],typename:[317,4,1,""]},"evennia.server.profiling.test_queries":{count_queries:[319,5,1,""]},"evennia.server.profiling.tests":{TestDummyrunnerSettings:[320,1,1,""],TestMemPlot:[320,1,1,""]},"evennia.server.profiling.tests.TestDummyrunnerSettings":{clear_client_lists:[320,3,1,""],perception_method_tests:[320,3,1,""],setUp:[320,3,1,""],test_c_creates_button:[320,3,1,""],test_c_creates_obj:[320,3,1,""],test_c_digs:[320,3,1,""],test_c_examines:[320,3,1,""],test_c_help:[320,3,1,""],test_c_login:[320,3,1,""],test_c_login_no_dig:[320,3,1,""],test_c_logout:[320,3,1,""],test_c_looks:[320,3,1,""],test_c_move_n:[320,3,1,""],test_c_move_s:[320,3,1,""],test_c_moves:[320,3,1,""],test_c_socialize:[320,3,1,""],test_idles:[320,3,1,""]},"evennia.server.profiling.tests.TestMemPlot":{test_memplot:[320,3,1,""]},"evennia.server.profiling.timetrace":{timetrace:[321,5,1,""]},"evennia.server.server":{Evennia:[322,1,1,""]},"evennia.server.server.Evennia":{__init__:[322,3,1,""],at_post_portal_sync:[322,3,1,""],at_server_cold_start:[322,3,1,""],at_server_cold_stop:[322,3,1,""],at_server_reload_start:[322,3,1,""],at_server_reload_stop:[322,3,1,""],at_server_start:[322,3,1,""],at_server_stop:[322,3,1,""],get_info_dict:[322,3,1,""],run_init_hooks:[322,3,1,""],run_initial_setup:[322,3,1,""],shutdown:[322,3,1,""],sqlite3_prep:[322,3,1,""],update_defaults:[322,3,1,""]},"evennia.server.serversession":{ServerSession:[323,1,1,""]},"evennia.server.serversession.ServerSession":{__init__:[323,3,1,""],access:[323,3,1,""],at_cmdset_get:[323,3,1,""],at_disconnect:[323,3,1,""],at_login:[323,3,1,""],at_sync:[323,3,1,""],attributes:[323,4,1,""],cmdset_storage:[323,3,1,""],data_in:[323,3,1,""],data_out:[323,3,1,""],db:[323,3,1,""],execute_cmd:[323,3,1,""],get_account:[323,3,1,""],get_character:[323,3,1,""],get_client_size:[323,3,1,""],get_puppet:[323,3,1,""],get_puppet_or_account:[323,3,1,""],id:[323,3,1,""],log:[323,3,1,""],msg:[323,3,1,""],nattributes:[323,4,1,""],ndb:[323,3,1,""],ndb_del:[323,3,1,""],ndb_get:[323,3,1,""],ndb_set:[323,3,1,""],update_flags:[323,3,1,""],update_session_counters:[323,3,1,""]},"evennia.server.session":{Session:[324,1,1,""]},"evennia.server.session.Session":{at_sync:[324,3,1,""],data_in:[324,3,1,""],data_out:[324,3,1,""],disconnect:[324,3,1,""],get_sync_data:[324,3,1,""],init_session:[324,3,1,""],load_sync_data:[324,3,1,""]},"evennia.server.sessionhandler":{DummySession:[325,1,1,""],ServerSessionHandler:[325,1,1,""],SessionHandler:[325,1,1,""],delayed_import:[325,5,1,""]},"evennia.server.sessionhandler.DummySession":{sessid:[325,4,1,""]},"evennia.server.sessionhandler.ServerSessionHandler":{__init__:[325,3,1,""],account_count:[325,3,1,""],all_connected_accounts:[325,3,1,""],all_sessions_portal_sync:[325,3,1,""],announce_all:[325,3,1,""],call_inputfuncs:[325,3,1,""],data_in:[325,3,1,""],data_out:[325,3,1,""],disconnect:[325,3,1,""],disconnect_all_sessions:[325,3,1,""],disconnect_duplicate_sessions:[325,3,1,""],get_inputfuncs:[325,3,1,""],login:[325,3,1,""],portal_connect:[325,3,1,""],portal_disconnect:[325,3,1,""],portal_disconnect_all:[325,3,1,""],portal_reset_server:[325,3,1,""],portal_restart_server:[325,3,1,""],portal_session_sync:[325,3,1,""],portal_sessions_sync:[325,3,1,""],portal_shutdown:[325,3,1,""],session_from_account:[325,3,1,""],session_from_sessid:[325,3,1,""],session_portal_partial_sync:[325,3,1,""],session_portal_sync:[325,3,1,""],sessions_from_account:[325,3,1,""],sessions_from_character:[325,3,1,""],sessions_from_csessid:[325,3,1,""],sessions_from_puppet:[325,3,1,""],start_bot_session:[325,3,1,""],validate_sessions:[325,3,1,""]},"evennia.server.sessionhandler.SessionHandler":{clean_senddata:[325,3,1,""],get:[325,3,1,""],get_all_sync_data:[325,3,1,""],get_sessions:[325,3,1,""]},"evennia.server.throttle":{Throttle:[327,1,1,""]},"evennia.server.throttle.Throttle":{__init__:[327,3,1,""],check:[327,3,1,""],error_msg:[327,4,1,""],get:[327,3,1,""],update:[327,3,1,""]},"evennia.server.validators":{EvenniaPasswordValidator:[328,1,1,""],EvenniaUsernameAvailabilityValidator:[328,1,1,""]},"evennia.server.validators.EvenniaPasswordValidator":{__init__:[328,3,1,""],get_help_text:[328,3,1,""],validate:[328,3,1,""]},"evennia.server.webserver":{DjangoWebRoot:[329,1,1,""],EvenniaReverseProxyResource:[329,1,1,""],HTTPChannelWithXForwardedFor:[329,1,1,""],LockableThreadPool:[329,1,1,""],PrivateStaticRoot:[329,1,1,""],WSGIWebServer:[329,1,1,""],Website:[329,1,1,""]},"evennia.server.webserver.DjangoWebRoot":{__init__:[329,3,1,""],empty_threadpool:[329,3,1,""],getChild:[329,3,1,""]},"evennia.server.webserver.EvenniaReverseProxyResource":{getChild:[329,3,1,""],render:[329,3,1,""]},"evennia.server.webserver.HTTPChannelWithXForwardedFor":{allHeadersReceived:[329,3,1,""]},"evennia.server.webserver.LockableThreadPool":{__init__:[329,3,1,""],callInThread:[329,3,1,""],lock:[329,3,1,""]},"evennia.server.webserver.PrivateStaticRoot":{directoryListing:[329,3,1,""]},"evennia.server.webserver.WSGIWebServer":{__init__:[329,3,1,""],startService:[329,3,1,""],stopService:[329,3,1,""]},"evennia.server.webserver.Website":{log:[329,3,1,""],logPrefix:[329,3,1,""],noisy:[329,4,1,""]},"evennia.typeclasses":{admin:[332,0,0,"-"],attributes:[333,0,0,"-"],managers:[334,0,0,"-"],models:[335,0,0,"-"],tags:[336,0,0,"-"]},"evennia.typeclasses.admin":{AttributeForm:[332,1,1,""],AttributeFormSet:[332,1,1,""],AttributeInline:[332,1,1,""],TagAdmin:[332,1,1,""],TagForm:[332,1,1,""],TagFormSet:[332,1,1,""],TagInline:[332,1,1,""]},"evennia.typeclasses.admin.AttributeForm":{Meta:[332,1,1,""],__init__:[332,3,1,""],base_fields:[332,4,1,""],clean_attr_value:[332,3,1,""],declared_fields:[332,4,1,""],media:[332,3,1,""],save:[332,3,1,""]},"evennia.typeclasses.admin.AttributeForm.Meta":{fields:[332,4,1,""]},"evennia.typeclasses.admin.AttributeFormSet":{save:[332,3,1,""]},"evennia.typeclasses.admin.AttributeInline":{extra:[332,4,1,""],form:[332,4,1,""],formset:[332,4,1,""],get_formset:[332,3,1,""],media:[332,3,1,""],model:[332,4,1,""],related_field:[332,4,1,""]},"evennia.typeclasses.admin.TagAdmin":{fields:[332,4,1,""],list_display:[332,4,1,""],list_filter:[332,4,1,""],media:[332,3,1,""],search_fields:[332,4,1,""]},"evennia.typeclasses.admin.TagForm":{Meta:[332,1,1,""],__init__:[332,3,1,""],base_fields:[332,4,1,""],declared_fields:[332,4,1,""],media:[332,3,1,""],save:[332,3,1,""]},"evennia.typeclasses.admin.TagForm.Meta":{fields:[332,4,1,""]},"evennia.typeclasses.admin.TagFormSet":{save:[332,3,1,""]},"evennia.typeclasses.admin.TagInline":{extra:[332,4,1,""],form:[332,4,1,""],formset:[332,4,1,""],get_formset:[332,3,1,""],media:[332,3,1,""],model:[332,4,1,""],related_field:[332,4,1,""]},"evennia.typeclasses.attributes":{Attribute:[333,1,1,""],AttributeHandler:[333,1,1,""],DbHolder:[333,1,1,""],IAttribute:[333,1,1,""],IAttributeBackend:[333,1,1,""],InMemoryAttribute:[333,1,1,""],InMemoryAttributeBackend:[333,1,1,""],ModelAttributeBackend:[333,1,1,""],NickHandler:[333,1,1,""],NickTemplateInvalid:[333,2,1,""],initialize_nick_templates:[333,5,1,""],parse_nick_template:[333,5,1,""]},"evennia.typeclasses.attributes.Attribute":{DoesNotExist:[333,2,1,""],MultipleObjectsReturned:[333,2,1,""],accountdb_set:[333,4,1,""],attrtype:[333,3,1,""],category:[333,3,1,""],channeldb_set:[333,4,1,""],date_created:[333,3,1,""],db_attrtype:[333,4,1,""],db_category:[333,4,1,""],db_date_created:[333,4,1,""],db_key:[333,4,1,""],db_lock_storage:[333,4,1,""],db_model:[333,4,1,""],db_strvalue:[333,4,1,""],db_value:[333,4,1,""],get_next_by_db_date_created:[333,3,1,""],get_previous_by_db_date_created:[333,3,1,""],id:[333,4,1,""],key:[333,3,1,""],lock_storage:[333,3,1,""],model:[333,3,1,""],objectdb_set:[333,4,1,""],path:[333,4,1,""],scriptdb_set:[333,4,1,""],strvalue:[333,3,1,""],typename:[333,4,1,""],value:[333,3,1,""]},"evennia.typeclasses.attributes.AttributeHandler":{__init__:[333,3,1,""],add:[333,3,1,""],all:[333,3,1,""],batch_add:[333,3,1,""],clear:[333,3,1,""],get:[333,3,1,""],has:[333,3,1,""],remove:[333,3,1,""],reset_cache:[333,3,1,""]},"evennia.typeclasses.attributes.DbHolder":{__init__:[333,3,1,""],all:[333,3,1,""],get_all:[333,3,1,""]},"evennia.typeclasses.attributes.IAttribute":{access:[333,3,1,""],attrtype:[333,3,1,""],category:[333,3,1,""],date_created:[333,3,1,""],key:[333,3,1,""],lock_storage:[333,3,1,""],locks:[333,4,1,""],model:[333,3,1,""],strvalue:[333,3,1,""]},"evennia.typeclasses.attributes.IAttributeBackend":{__init__:[333,3,1,""],batch_add:[333,3,1,""],clear_attributes:[333,3,1,""],create_attribute:[333,3,1,""],delete_attribute:[333,3,1,""],do_batch_delete:[333,3,1,""],do_batch_finish:[333,3,1,""],do_batch_update_attribute:[333,3,1,""],do_create_attribute:[333,3,1,""],do_delete_attribute:[333,3,1,""],do_update_attribute:[333,3,1,""],get:[333,3,1,""],get_all_attributes:[333,3,1,""],query_all:[333,3,1,""],query_category:[333,3,1,""],query_key:[333,3,1,""],reset_cache:[333,3,1,""],update_attribute:[333,3,1,""]},"evennia.typeclasses.attributes.InMemoryAttribute":{__init__:[333,3,1,""],value:[333,3,1,""]},"evennia.typeclasses.attributes.InMemoryAttributeBackend":{__init__:[333,3,1,""],do_batch_finish:[333,3,1,""],do_batch_update_attribute:[333,3,1,""],do_create_attribute:[333,3,1,""],do_delete_attribute:[333,3,1,""],do_update_attribute:[333,3,1,""],query_all:[333,3,1,""],query_category:[333,3,1,""],query_key:[333,3,1,""]},"evennia.typeclasses.attributes.ModelAttributeBackend":{__init__:[333,3,1,""],do_batch_finish:[333,3,1,""],do_batch_update_attribute:[333,3,1,""],do_create_attribute:[333,3,1,""],do_delete_attribute:[333,3,1,""],do_update_attribute:[333,3,1,""],query_all:[333,3,1,""],query_category:[333,3,1,""],query_key:[333,3,1,""]},"evennia.typeclasses.attributes.NickHandler":{__init__:[333,3,1,""],add:[333,3,1,""],get:[333,3,1,""],has:[333,3,1,""],nickreplace:[333,3,1,""],remove:[333,3,1,""]},"evennia.typeclasses.managers":{TypedObjectManager:[334,1,1,""]},"evennia.typeclasses.managers.TypedObjectManager":{create_tag:[334,3,1,""],dbref:[334,3,1,""],dbref_search:[334,3,1,""],get_alias:[334,3,1,""],get_attribute:[334,3,1,""],get_by_alias:[334,3,1,""],get_by_attribute:[334,3,1,""],get_by_nick:[334,3,1,""],get_by_permission:[334,3,1,""],get_by_tag:[334,3,1,""],get_dbref_range:[334,3,1,""],get_id:[334,3,1,""],get_nick:[334,3,1,""],get_permission:[334,3,1,""],get_tag:[334,3,1,""],get_typeclass_totals:[334,3,1,""],object_totals:[334,3,1,""],typeclass_search:[334,3,1,""]},"evennia.typeclasses.models":{TypedObject:[335,1,1,""]},"evennia.typeclasses.models.TypedObject":{"delete":[335,3,1,""],Meta:[335,1,1,""],__init__:[335,3,1,""],access:[335,3,1,""],aliases:[335,4,1,""],at_idmapper_flush:[335,3,1,""],at_rename:[335,3,1,""],attributes:[335,4,1,""],check_permstring:[335,3,1,""],date_created:[335,3,1,""],db:[335,3,1,""],db_attributes:[335,4,1,""],db_date_created:[335,4,1,""],db_key:[335,4,1,""],db_lock_storage:[335,4,1,""],db_tags:[335,4,1,""],db_typeclass_path:[335,4,1,""],dbid:[335,3,1,""],dbref:[335,3,1,""],get_absolute_url:[335,3,1,""],get_display_name:[335,3,1,""],get_extra_info:[335,3,1,""],get_next_by_db_date_created:[335,3,1,""],get_previous_by_db_date_created:[335,3,1,""],is_typeclass:[335,3,1,""],key:[335,3,1,""],lock_storage:[335,3,1,""],locks:[335,4,1,""],name:[335,3,1,""],nattributes:[335,4,1,""],ndb:[335,3,1,""],objects:[335,4,1,""],path:[335,4,1,""],permissions:[335,4,1,""],set_class_from_typeclass:[335,3,1,""],swap_typeclass:[335,3,1,""],tags:[335,4,1,""],typeclass_path:[335,3,1,""],typename:[335,4,1,""],web_get_admin_url:[335,3,1,""],web_get_create_url:[335,3,1,""],web_get_delete_url:[335,3,1,""],web_get_detail_url:[335,3,1,""],web_get_puppet_url:[335,3,1,""],web_get_update_url:[335,3,1,""]},"evennia.typeclasses.models.TypedObject.Meta":{"abstract":[335,4,1,""],ordering:[335,4,1,""],verbose_name:[335,4,1,""]},"evennia.typeclasses.tags":{AliasHandler:[336,1,1,""],PermissionHandler:[336,1,1,""],Tag:[336,1,1,""],TagHandler:[336,1,1,""]},"evennia.typeclasses.tags.Tag":{DoesNotExist:[336,2,1,""],MultipleObjectsReturned:[336,2,1,""],accountdb_set:[336,4,1,""],channeldb_set:[336,4,1,""],db_category:[336,4,1,""],db_data:[336,4,1,""],db_key:[336,4,1,""],db_model:[336,4,1,""],db_tagtype:[336,4,1,""],helpentry_set:[336,4,1,""],id:[336,4,1,""],msg_set:[336,4,1,""],objectdb_set:[336,4,1,""],objects:[336,4,1,""],scriptdb_set:[336,4,1,""]},"evennia.typeclasses.tags.TagHandler":{__init__:[336,3,1,""],add:[336,3,1,""],all:[336,3,1,""],batch_add:[336,3,1,""],clear:[336,3,1,""],get:[336,3,1,""],remove:[336,3,1,""],reset_cache:[336,3,1,""]},"evennia.utils":{ansi:[338,0,0,"-"],batchprocessors:[339,0,0,"-"],containers:[340,0,0,"-"],create:[341,0,0,"-"],dbserialize:[342,0,0,"-"],eveditor:[343,0,0,"-"],evform:[344,0,0,"-"],evmenu:[345,0,0,"-"],evmore:[346,0,0,"-"],evtable:[347,0,0,"-"],gametime:[348,0,0,"-"],idmapper:[349,0,0,"-"],inlinefuncs:[353,0,0,"-"],logger:[354,0,0,"-"],optionclasses:[355,0,0,"-"],optionhandler:[356,0,0,"-"],picklefield:[357,0,0,"-"],search:[358,0,0,"-"],test_resources:[359,0,0,"-"],text2html:[360,0,0,"-"],utils:[361,0,0,"-"],validatorfuncs:[362,0,0,"-"]},"evennia.utils.ansi":{ANSIMeta:[338,1,1,""],ANSIParser:[338,1,1,""],ANSIString:[338,1,1,""],parse_ansi:[338,5,1,""],raw:[338,5,1,""],strip_ansi:[338,5,1,""],strip_raw_ansi:[338,5,1,""]},"evennia.utils.ansi.ANSIMeta":{__init__:[338,3,1,""]},"evennia.utils.ansi.ANSIParser":{ansi_escapes:[338,4,1,""],ansi_map:[338,4,1,""],ansi_map_dict:[338,4,1,""],ansi_re:[338,4,1,""],ansi_regex:[338,4,1,""],ansi_sub:[338,4,1,""],ansi_xterm256_bright_bg_map:[338,4,1,""],ansi_xterm256_bright_bg_map_dict:[338,4,1,""],brightbg_sub:[338,4,1,""],mxp_re:[338,4,1,""],mxp_sub:[338,4,1,""],parse_ansi:[338,3,1,""],strip_mxp:[338,3,1,""],strip_raw_codes:[338,3,1,""],sub_ansi:[338,3,1,""],sub_brightbg:[338,3,1,""],sub_xterm256:[338,3,1,""],xterm256_bg:[338,4,1,""],xterm256_bg_sub:[338,4,1,""],xterm256_fg:[338,4,1,""],xterm256_fg_sub:[338,4,1,""],xterm256_gbg:[338,4,1,""],xterm256_gbg_sub:[338,4,1,""],xterm256_gfg:[338,4,1,""],xterm256_gfg_sub:[338,4,1,""]},"evennia.utils.ansi.ANSIString":{__init__:[338,3,1,""],capitalize:[338,3,1,""],center:[338,3,1,""],clean:[338,3,1,""],count:[338,3,1,""],decode:[338,3,1,""],encode:[338,3,1,""],endswith:[338,3,1,""],expandtabs:[338,3,1,""],find:[338,3,1,""],format:[338,3,1,""],index:[338,3,1,""],isalnum:[338,3,1,""],isalpha:[338,3,1,""],isdigit:[338,3,1,""],islower:[338,3,1,""],isspace:[338,3,1,""],istitle:[338,3,1,""],isupper:[338,3,1,""],join:[338,3,1,""],ljust:[338,3,1,""],lower:[338,3,1,""],lstrip:[338,3,1,""],partition:[338,3,1,""],raw:[338,3,1,""],re_format:[338,4,1,""],replace:[338,3,1,""],rfind:[338,3,1,""],rindex:[338,3,1,""],rjust:[338,3,1,""],rsplit:[338,3,1,""],rstrip:[338,3,1,""],split:[338,3,1,""],startswith:[338,3,1,""],strip:[338,3,1,""],swapcase:[338,3,1,""],translate:[338,3,1,""],upper:[338,3,1,""]},"evennia.utils.batchprocessors":{BatchCodeProcessor:[339,1,1,""],BatchCommandProcessor:[339,1,1,""],read_batchfile:[339,5,1,""],tb_filename:[339,5,1,""],tb_iter:[339,5,1,""]},"evennia.utils.batchprocessors.BatchCodeProcessor":{code_exec:[339,3,1,""],parse_file:[339,3,1,""]},"evennia.utils.batchprocessors.BatchCommandProcessor":{parse_file:[339,3,1,""]},"evennia.utils.containers":{Container:[340,1,1,""],GlobalScriptContainer:[340,1,1,""],OptionContainer:[340,1,1,""]},"evennia.utils.containers.Container":{__init__:[340,3,1,""],all:[340,3,1,""],get:[340,3,1,""],load_data:[340,3,1,""],storage_modules:[340,4,1,""]},"evennia.utils.containers.GlobalScriptContainer":{__init__:[340,3,1,""],all:[340,3,1,""],get:[340,3,1,""],load_data:[340,3,1,""],start:[340,3,1,""]},"evennia.utils.containers.OptionContainer":{storage_modules:[340,4,1,""]},"evennia.utils.create":{create_account:[341,5,1,""],create_channel:[341,5,1,""],create_help_entry:[341,5,1,""],create_message:[341,5,1,""],create_object:[341,5,1,""],create_script:[341,5,1,""]},"evennia.utils.dbserialize":{dbserialize:[342,5,1,""],dbunserialize:[342,5,1,""],do_pickle:[342,5,1,""],do_unpickle:[342,5,1,""],from_pickle:[342,5,1,""],to_pickle:[342,5,1,""]},"evennia.utils.eveditor":{CmdEditorBase:[343,1,1,""],CmdEditorGroup:[343,1,1,""],CmdLineInput:[343,1,1,""],CmdSaveYesNo:[343,1,1,""],EvEditor:[343,1,1,""],EvEditorCmdSet:[343,1,1,""],SaveYesNoCmdSet:[343,1,1,""]},"evennia.utils.eveditor.CmdEditorBase":{aliases:[343,4,1,""],editor:[343,4,1,""],help_category:[343,4,1,""],help_entry:[343,4,1,""],key:[343,4,1,""],lock_storage:[343,4,1,""],locks:[343,4,1,""],parse:[343,3,1,""],search_index_entry:[343,4,1,""]},"evennia.utils.eveditor.CmdEditorGroup":{aliases:[343,4,1,""],arg_regex:[343,4,1,""],func:[343,3,1,""],help_category:[343,4,1,""],key:[343,4,1,""],lock_storage:[343,4,1,""],search_index_entry:[343,4,1,""]},"evennia.utils.eveditor.CmdLineInput":{aliases:[343,4,1,""],func:[343,3,1,""],help_category:[343,4,1,""],key:[343,4,1,""],lock_storage:[343,4,1,""],search_index_entry:[343,4,1,""]},"evennia.utils.eveditor.CmdSaveYesNo":{aliases:[343,4,1,""],func:[343,3,1,""],help_category:[343,4,1,""],help_cateogory:[343,4,1,""],key:[343,4,1,""],lock_storage:[343,4,1,""],locks:[343,4,1,""],search_index_entry:[343,4,1,""]},"evennia.utils.eveditor.EvEditor":{__init__:[343,3,1,""],decrease_indent:[343,3,1,""],deduce_indent:[343,3,1,""],display_buffer:[343,3,1,""],display_help:[343,3,1,""],get_buffer:[343,3,1,""],increase_indent:[343,3,1,""],load_buffer:[343,3,1,""],quit:[343,3,1,""],save_buffer:[343,3,1,""],swap_autoindent:[343,3,1,""],update_buffer:[343,3,1,""],update_undo:[343,3,1,""]},"evennia.utils.eveditor.EvEditorCmdSet":{at_cmdset_creation:[343,3,1,""],key:[343,4,1,""],mergetype:[343,4,1,""],path:[343,4,1,""]},"evennia.utils.eveditor.SaveYesNoCmdSet":{at_cmdset_creation:[343,3,1,""],key:[343,4,1,""],mergetype:[343,4,1,""],path:[343,4,1,""],priority:[343,4,1,""]},"evennia.utils.evform":{EvForm:[344,1,1,""]},"evennia.utils.evform.EvForm":{__init__:[344,3,1,""],map:[344,3,1,""],reload:[344,3,1,""]},"evennia.utils.evmenu":{CmdEvMenuNode:[345,1,1,""],CmdGetInput:[345,1,1,""],CmdTestMenu:[345,1,1,""],EvMenu:[345,1,1,""],EvMenuCmdSet:[345,1,1,""],EvMenuError:[345,2,1,""],InputCmdSet:[345,1,1,""],get_input:[345,5,1,""],list_node:[345,5,1,""],test_displayinput_node:[345,5,1,""],test_dynamic_node:[345,5,1,""],test_end_node:[345,5,1,""],test_look_node:[345,5,1,""],test_set_node:[345,5,1,""],test_start_node:[345,5,1,""],test_view_node:[345,5,1,""]},"evennia.utils.evmenu.CmdEvMenuNode":{aliases:[345,4,1,""],func:[345,3,1,""],help_category:[345,4,1,""],key:[345,4,1,""],lock_storage:[345,4,1,""],locks:[345,4,1,""],search_index_entry:[345,4,1,""]},"evennia.utils.evmenu.CmdGetInput":{aliases:[345,4,1,""],func:[345,3,1,""],help_category:[345,4,1,""],key:[345,4,1,""],lock_storage:[345,4,1,""],search_index_entry:[345,4,1,""]},"evennia.utils.evmenu.CmdTestMenu":{aliases:[345,4,1,""],func:[345,3,1,""],help_category:[345,4,1,""],key:[345,4,1,""],lock_storage:[345,4,1,""],search_index_entry:[345,4,1,""]},"evennia.utils.evmenu.EvMenu":{"goto":[345,3,1,""],__init__:[345,3,1,""],close_menu:[345,3,1,""],display_helptext:[345,3,1,""],display_nodetext:[345,3,1,""],extract_goto_exec:[345,3,1,""],helptext_formatter:[345,3,1,""],node_border_char:[345,4,1,""],node_formatter:[345,3,1,""],nodetext_formatter:[345,3,1,""],options_formatter:[345,3,1,""],parse_input:[345,3,1,""],print_debug_info:[345,3,1,""],run_exec:[345,3,1,""],run_exec_then_goto:[345,3,1,""]},"evennia.utils.evmenu.EvMenuCmdSet":{at_cmdset_creation:[345,3,1,""],key:[345,4,1,""],mergetype:[345,4,1,""],no_channels:[345,4,1,""],no_exits:[345,4,1,""],no_objs:[345,4,1,""],path:[345,4,1,""],priority:[345,4,1,""]},"evennia.utils.evmenu.InputCmdSet":{at_cmdset_creation:[345,3,1,""],key:[345,4,1,""],mergetype:[345,4,1,""],no_channels:[345,4,1,""],no_exits:[345,4,1,""],no_objs:[345,4,1,""],path:[345,4,1,""],priority:[345,4,1,""]},"evennia.utils.evmore":{CmdMore:[346,1,1,""],CmdMoreLook:[346,1,1,""],CmdSetMore:[346,1,1,""],EvMore:[346,1,1,""],msg:[346,5,1,""],queryset_maxsize:[346,5,1,""]},"evennia.utils.evmore.CmdMore":{aliases:[346,4,1,""],auto_help:[346,4,1,""],func:[346,3,1,""],help_category:[346,4,1,""],key:[346,4,1,""],lock_storage:[346,4,1,""],search_index_entry:[346,4,1,""]},"evennia.utils.evmore.CmdMoreLook":{aliases:[346,4,1,""],auto_help:[346,4,1,""],func:[346,3,1,""],help_category:[346,4,1,""],key:[346,4,1,""],lock_storage:[346,4,1,""],search_index_entry:[346,4,1,""]},"evennia.utils.evmore.CmdSetMore":{at_cmdset_creation:[346,3,1,""],key:[346,4,1,""],path:[346,4,1,""],priority:[346,4,1,""]},"evennia.utils.evmore.EvMore":{__init__:[346,3,1,""],display:[346,3,1,""],format_page:[346,3,1,""],init_evtable:[346,3,1,""],init_f_str:[346,3,1,""],init_iterable:[346,3,1,""],init_queryset:[346,3,1,""],init_str:[346,3,1,""],page_back:[346,3,1,""],page_end:[346,3,1,""],page_next:[346,3,1,""],page_quit:[346,3,1,""],page_top:[346,3,1,""],paginator_index:[346,3,1,""],paginator_slice:[346,3,1,""],start:[346,3,1,""]},"evennia.utils.evtable":{ANSITextWrapper:[347,1,1,""],EvCell:[347,1,1,""],EvColumn:[347,1,1,""],EvTable:[347,1,1,""],fill:[347,5,1,""],wrap:[347,5,1,""]},"evennia.utils.evtable.EvCell":{__init__:[347,3,1,""],get:[347,3,1,""],get_height:[347,3,1,""],get_min_height:[347,3,1,""],get_min_width:[347,3,1,""],get_width:[347,3,1,""],reformat:[347,3,1,""],replace_data:[347,3,1,""]},"evennia.utils.evtable.EvColumn":{__init__:[347,3,1,""],add_rows:[347,3,1,""],reformat:[347,3,1,""],reformat_cell:[347,3,1,""]},"evennia.utils.evtable.EvTable":{__init__:[347,3,1,""],add_column:[347,3,1,""],add_header:[347,3,1,""],add_row:[347,3,1,""],get:[347,3,1,""],reformat:[347,3,1,""],reformat_column:[347,3,1,""]},"evennia.utils.gametime":{TimeScript:[348,1,1,""],game_epoch:[348,5,1,""],gametime:[348,5,1,""],portal_uptime:[348,5,1,""],real_seconds_until:[348,5,1,""],reset_gametime:[348,5,1,""],runtime:[348,5,1,""],schedule:[348,5,1,""],server_epoch:[348,5,1,""],uptime:[348,5,1,""]},"evennia.utils.gametime.TimeScript":{DoesNotExist:[348,2,1,""],MultipleObjectsReturned:[348,2,1,""],at_repeat:[348,3,1,""],at_script_creation:[348,3,1,""],path:[348,4,1,""],typename:[348,4,1,""]},"evennia.utils.idmapper":{manager:[350,0,0,"-"],models:[351,0,0,"-"],tests:[352,0,0,"-"]},"evennia.utils.idmapper.manager":{SharedMemoryManager:[350,1,1,""]},"evennia.utils.idmapper.manager.SharedMemoryManager":{get:[350,3,1,""]},"evennia.utils.idmapper.models":{SharedMemoryModel:[351,1,1,""],SharedMemoryModelBase:[351,1,1,""],WeakSharedMemoryModel:[351,1,1,""],WeakSharedMemoryModelBase:[351,1,1,""],cache_size:[351,5,1,""],conditional_flush:[351,5,1,""],flush_cache:[351,5,1,""],flush_cached_instance:[351,5,1,""],update_cached_instance:[351,5,1,""]},"evennia.utils.idmapper.models.SharedMemoryModel":{"delete":[351,3,1,""],Meta:[351,1,1,""],at_idmapper_flush:[351,3,1,""],cache_instance:[351,3,1,""],flush_cached_instance:[351,3,1,""],flush_from_cache:[351,3,1,""],flush_instance_cache:[351,3,1,""],get_all_cached_instances:[351,3,1,""],get_cached_instance:[351,3,1,""],objects:[351,4,1,""],path:[351,4,1,""],save:[351,3,1,""],typename:[351,4,1,""]},"evennia.utils.idmapper.models.SharedMemoryModel.Meta":{"abstract":[351,4,1,""]},"evennia.utils.idmapper.models.WeakSharedMemoryModel":{Meta:[351,1,1,""],path:[351,4,1,""],typename:[351,4,1,""]},"evennia.utils.idmapper.models.WeakSharedMemoryModel.Meta":{"abstract":[351,4,1,""]},"evennia.utils.idmapper.tests":{Article:[352,1,1,""],Category:[352,1,1,""],RegularArticle:[352,1,1,""],RegularCategory:[352,1,1,""],SharedMemorysTest:[352,1,1,""]},"evennia.utils.idmapper.tests.Article":{DoesNotExist:[352,2,1,""],MultipleObjectsReturned:[352,2,1,""],category2:[352,4,1,""],category2_id:[352,4,1,""],category:[352,4,1,""],category_id:[352,4,1,""],id:[352,4,1,""],name:[352,4,1,""],path:[352,4,1,""],typename:[352,4,1,""]},"evennia.utils.idmapper.tests.Category":{DoesNotExist:[352,2,1,""],MultipleObjectsReturned:[352,2,1,""],article_set:[352,4,1,""],id:[352,4,1,""],name:[352,4,1,""],path:[352,4,1,""],regulararticle_set:[352,4,1,""],typename:[352,4,1,""]},"evennia.utils.idmapper.tests.RegularArticle":{DoesNotExist:[352,2,1,""],MultipleObjectsReturned:[352,2,1,""],category2:[352,4,1,""],category2_id:[352,4,1,""],category:[352,4,1,""],category_id:[352,4,1,""],id:[352,4,1,""],name:[352,4,1,""],objects:[352,4,1,""]},"evennia.utils.idmapper.tests.RegularCategory":{DoesNotExist:[352,2,1,""],MultipleObjectsReturned:[352,2,1,""],article_set:[352,4,1,""],id:[352,4,1,""],name:[352,4,1,""],objects:[352,4,1,""],regulararticle_set:[352,4,1,""]},"evennia.utils.idmapper.tests.SharedMemorysTest":{setUp:[352,3,1,""],testMixedReferences:[352,3,1,""],testObjectDeletion:[352,3,1,""],testRegularReferences:[352,3,1,""],testSharedMemoryReferences:[352,3,1,""]},"evennia.utils.inlinefuncs":{"null":[353,5,1,""],InlinefuncError:[353,2,1,""],NickTemplateInvalid:[353,2,1,""],ParseStack:[353,1,1,""],clr:[353,5,1,""],crop:[353,5,1,""],initialize_nick_templates:[353,5,1,""],nomatch:[353,5,1,""],pad:[353,5,1,""],parse_inlinefunc:[353,5,1,""],parse_nick_template:[353,5,1,""],random:[353,5,1,""],raw:[353,5,1,""],space:[353,5,1,""]},"evennia.utils.inlinefuncs.ParseStack":{__init__:[353,3,1,""],append:[353,3,1,""]},"evennia.utils.logger":{EvenniaLogFile:[354,1,1,""],PortalLogObserver:[354,1,1,""],ServerLogObserver:[354,1,1,""],WeeklyLogFile:[354,1,1,""],log_dep:[354,5,1,""],log_depmsg:[354,5,1,""],log_err:[354,5,1,""],log_errmsg:[354,5,1,""],log_file:[354,5,1,""],log_info:[354,5,1,""],log_infomsg:[354,5,1,""],log_msg:[354,5,1,""],log_sec:[354,5,1,""],log_secmsg:[354,5,1,""],log_server:[354,5,1,""],log_trace:[354,5,1,""],log_tracemsg:[354,5,1,""],log_warn:[354,5,1,""],log_warnmsg:[354,5,1,""],tail_log_file:[354,5,1,""],timeformat:[354,5,1,""]},"evennia.utils.logger.EvenniaLogFile":{num_lines_to_append:[354,4,1,""],readlines:[354,3,1,""],rotate:[354,3,1,""],seek:[354,3,1,""],settings:[354,4,1,""]},"evennia.utils.logger.PortalLogObserver":{emit:[354,3,1,""],prefix:[354,4,1,""],timeFormat:[354,4,1,""]},"evennia.utils.logger.ServerLogObserver":{prefix:[354,4,1,""]},"evennia.utils.logger.WeeklyLogFile":{__init__:[354,3,1,""],shouldRotate:[354,3,1,""],suffix:[354,3,1,""],write:[354,3,1,""]},"evennia.utils.optionclasses":{BaseOption:[355,1,1,""],Boolean:[355,1,1,""],Color:[355,1,1,""],Datetime:[355,1,1,""],Duration:[355,1,1,""],Email:[355,1,1,""],Future:[355,1,1,""],Lock:[355,1,1,""],PositiveInteger:[355,1,1,""],SignedInteger:[355,1,1,""],Text:[355,1,1,""],Timezone:[355,1,1,""],UnsignedInteger:[355,1,1,""]},"evennia.utils.optionclasses.BaseOption":{"default":[355,3,1,""],__init__:[355,3,1,""],changed:[355,3,1,""],deserialize:[355,3,1,""],display:[355,3,1,""],load:[355,3,1,""],save:[355,3,1,""],serialize:[355,3,1,""],set:[355,3,1,""],validate:[355,3,1,""],value:[355,3,1,""]},"evennia.utils.optionclasses.Boolean":{deserialize:[355,3,1,""],display:[355,3,1,""],serialize:[355,3,1,""],validate:[355,3,1,""]},"evennia.utils.optionclasses.Color":{deserialize:[355,3,1,""],display:[355,3,1,""],validate:[355,3,1,""]},"evennia.utils.optionclasses.Datetime":{deserialize:[355,3,1,""],serialize:[355,3,1,""],validate:[355,3,1,""]},"evennia.utils.optionclasses.Duration":{deserialize:[355,3,1,""],serialize:[355,3,1,""],validate:[355,3,1,""]},"evennia.utils.optionclasses.Email":{deserialize:[355,3,1,""],validate:[355,3,1,""]},"evennia.utils.optionclasses.Future":{validate:[355,3,1,""]},"evennia.utils.optionclasses.Lock":{validate:[355,3,1,""]},"evennia.utils.optionclasses.PositiveInteger":{deserialize:[355,3,1,""],validate:[355,3,1,""]},"evennia.utils.optionclasses.SignedInteger":{deserialize:[355,3,1,""],validate:[355,3,1,""]},"evennia.utils.optionclasses.Text":{deserialize:[355,3,1,""]},"evennia.utils.optionclasses.Timezone":{"default":[355,3,1,""],deserialize:[355,3,1,""],serialize:[355,3,1,""],validate:[355,3,1,""]},"evennia.utils.optionclasses.UnsignedInteger":{deserialize:[355,3,1,""],validate:[355,3,1,""],validator_key:[355,4,1,""]},"evennia.utils.optionhandler":{InMemorySaveHandler:[356,1,1,""],OptionHandler:[356,1,1,""]},"evennia.utils.optionhandler.InMemorySaveHandler":{__init__:[356,3,1,""],add:[356,3,1,""],get:[356,3,1,""]},"evennia.utils.optionhandler.OptionHandler":{__init__:[356,3,1,""],all:[356,3,1,""],get:[356,3,1,""],set:[356,3,1,""]},"evennia.utils.picklefield":{PickledFormField:[357,1,1,""],PickledObject:[357,1,1,""],PickledObjectField:[357,1,1,""],PickledWidget:[357,1,1,""],dbsafe_decode:[357,5,1,""],dbsafe_encode:[357,5,1,""],wrap_conflictual_object:[357,5,1,""]},"evennia.utils.picklefield.PickledFormField":{__init__:[357,3,1,""],clean:[357,3,1,""],default_error_messages:[357,4,1,""],widget:[357,4,1,""]},"evennia.utils.picklefield.PickledObjectField":{__init__:[357,3,1,""],formfield:[357,3,1,""],from_db_value:[357,3,1,""],get_db_prep_lookup:[357,3,1,""],get_db_prep_value:[357,3,1,""],get_default:[357,3,1,""],get_internal_type:[357,3,1,""],pre_save:[357,3,1,""],value_to_string:[357,3,1,""]},"evennia.utils.picklefield.PickledWidget":{media:[357,3,1,""],render:[357,3,1,""],value_from_datadict:[357,3,1,""]},"evennia.utils.search":{search_account:[358,5,1,""],search_account_tag:[358,5,1,""],search_channel:[358,5,1,""],search_channel_tag:[358,5,1,""],search_help_entry:[358,5,1,""],search_message:[358,5,1,""],search_object:[358,5,1,""],search_script:[358,5,1,""],search_script_tag:[358,5,1,""],search_tag:[358,5,1,""]},"evennia.utils.test_resources":{EvenniaTest:[359,1,1,""],LocalEvenniaTest:[359,1,1,""],mockdeferLater:[359,5,1,""],mockdelay:[359,5,1,""],unload_module:[359,5,1,""]},"evennia.utils.test_resources.EvenniaTest":{account_typeclass:[359,4,1,""],character_typeclass:[359,4,1,""],exit_typeclass:[359,4,1,""],object_typeclass:[359,4,1,""],room_typeclass:[359,4,1,""],script_typeclass:[359,4,1,""],setUp:[359,3,1,""],tearDown:[359,3,1,""]},"evennia.utils.test_resources.LocalEvenniaTest":{account_typeclass:[359,4,1,""],character_typeclass:[359,4,1,""],exit_typeclass:[359,4,1,""],object_typeclass:[359,4,1,""],room_typeclass:[359,4,1,""],script_typeclass:[359,4,1,""]},"evennia.utils.text2html":{TextToHTMLparser:[360,1,1,""],parse_html:[360,5,1,""]},"evennia.utils.text2html.TextToHTMLparser":{bg_colormap:[360,4,1,""],bgfgstart:[360,4,1,""],bgfgstop:[360,4,1,""],bgstart:[360,4,1,""],bgstop:[360,4,1,""],blink:[360,4,1,""],colorback:[360,4,1,""],colorcodes:[360,4,1,""],convert_linebreaks:[360,3,1,""],convert_urls:[360,3,1,""],fg_colormap:[360,4,1,""],fgstart:[360,4,1,""],fgstop:[360,4,1,""],hilite:[360,4,1,""],inverse:[360,4,1,""],normal:[360,4,1,""],parse:[360,3,1,""],re_bgfg:[360,4,1,""],re_bgs:[360,4,1,""],re_blink:[360,4,1,""],re_blinking:[360,3,1,""],re_bold:[360,3,1,""],re_color:[360,3,1,""],re_dblspace:[360,4,1,""],re_double_space:[360,3,1,""],re_fgs:[360,4,1,""],re_hilite:[360,4,1,""],re_inverse:[360,4,1,""],re_inversing:[360,3,1,""],re_mxplink:[360,4,1,""],re_normal:[360,4,1,""],re_string:[360,4,1,""],re_uline:[360,4,1,""],re_underline:[360,3,1,""],re_unhilite:[360,4,1,""],re_url:[360,4,1,""],remove_backspaces:[360,3,1,""],remove_bells:[360,3,1,""],sub_dblspace:[360,3,1,""],sub_mxp_links:[360,3,1,""],sub_text:[360,3,1,""],tabstop:[360,4,1,""],underline:[360,4,1,""],unhilite:[360,4,1,""]},"evennia.utils.utils":{LimitedSizeOrderedDict:[361,1,1,""],all_from_module:[361,5,1,""],at_search_result:[361,5,1,""],callables_from_module:[361,5,1,""],calledby:[361,5,1,""],check_evennia_dependencies:[361,5,1,""],class_from_module:[361,5,1,""],columnize:[361,5,1,""],crop:[361,5,1,""],datetime_format:[361,5,1,""],dbid_to_obj:[361,5,1,""],dbref:[361,5,1,""],dbref_to_obj:[361,5,1,""],dedent:[361,5,1,""],deepsize:[361,5,1,""],delay:[361,5,1,""],display_len:[361,5,1,""],fill:[361,5,1,""],format_grid:[361,5,1,""],format_table:[361,5,1,""],fuzzy_import_from_module:[361,5,1,""],get_all_typeclasses:[361,5,1,""],get_evennia_pids:[361,5,1,""],get_evennia_version:[361,5,1,""],get_game_dir_path:[361,5,1,""],has_parent:[361,5,1,""],host_os_is:[361,5,1,""],inherits_from:[361,5,1,""],init_new_account:[361,5,1,""],interactive:[361,5,1,""],is_iter:[361,5,1,""],iter_to_string:[361,5,1,""],justify:[361,5,1,""],latinify:[361,5,1,""],lazy_property:[361,1,1,""],list_to_string:[361,5,1,""],m_len:[361,5,1,""],make_iter:[361,5,1,""],mod_import:[361,5,1,""],mod_import_from_path:[361,5,1,""],object_from_module:[361,5,1,""],pad:[361,5,1,""],percent:[361,5,1,""],percentile:[361,5,1,""],pypath_to_realpath:[361,5,1,""],random_string_from_module:[361,5,1,""],run_async:[361,5,1,""],server_services:[361,5,1,""],string_from_module:[361,5,1,""],string_partial_matching:[361,5,1,""],string_similarity:[361,5,1,""],string_suggestions:[361,5,1,""],strip_control_sequences:[361,5,1,""],time_format:[361,5,1,""],to_bytes:[361,5,1,""],to_str:[361,5,1,""],uses_database:[361,5,1,""],validate_email_address:[361,5,1,""],variable_from_module:[361,5,1,""],wildcard_to_regexp:[361,5,1,""],wrap:[361,5,1,""]},"evennia.utils.utils.LimitedSizeOrderedDict":{__init__:[361,3,1,""],update:[361,3,1,""]},"evennia.utils.utils.lazy_property":{__init__:[361,3,1,""]},"evennia.utils.validatorfuncs":{"boolean":[362,5,1,""],color:[362,5,1,""],datetime:[362,5,1,""],duration:[362,5,1,""],email:[362,5,1,""],future:[362,5,1,""],lock:[362,5,1,""],positive_integer:[362,5,1,""],signed_integer:[362,5,1,""],text:[362,5,1,""],timezone:[362,5,1,""],unsigned_integer:[362,5,1,""]},"evennia.web":{api:[364,0,0,"-"],urls:[371,0,0,"-"],utils:[372,0,0,"-"],webclient:[377,0,0,"-"],website:[380,0,0,"-"]},"evennia.web.api":{filters:[365,0,0,"-"],permissions:[366,0,0,"-"],serializers:[367,0,0,"-"],tests:[368,0,0,"-"],urls:[369,0,0,"-"],views:[370,0,0,"-"]},"evennia.web.api.filters":{AccountDBFilterSet:[365,1,1,""],AliasFilter:[365,1,1,""],BaseTypeclassFilterSet:[365,1,1,""],ObjectDBFilterSet:[365,1,1,""],PermissionFilter:[365,1,1,""],ScriptDBFilterSet:[365,1,1,""],TagTypeFilter:[365,1,1,""],get_tag_query:[365,5,1,""]},"evennia.web.api.filters.AccountDBFilterSet":{Meta:[365,1,1,""],base_filters:[365,4,1,""],declared_filters:[365,4,1,""]},"evennia.web.api.filters.AccountDBFilterSet.Meta":{fields:[365,4,1,""],model:[365,4,1,""]},"evennia.web.api.filters.AliasFilter":{tag_type:[365,4,1,""]},"evennia.web.api.filters.BaseTypeclassFilterSet":{base_filters:[365,4,1,""],declared_filters:[365,4,1,""],filter_name:[365,3,1,""]},"evennia.web.api.filters.ObjectDBFilterSet":{Meta:[365,1,1,""],base_filters:[365,4,1,""],declared_filters:[365,4,1,""]},"evennia.web.api.filters.ObjectDBFilterSet.Meta":{fields:[365,4,1,""],model:[365,4,1,""]},"evennia.web.api.filters.PermissionFilter":{tag_type:[365,4,1,""]},"evennia.web.api.filters.ScriptDBFilterSet":{Meta:[365,1,1,""],base_filters:[365,4,1,""],declared_filters:[365,4,1,""]},"evennia.web.api.filters.ScriptDBFilterSet.Meta":{fields:[365,4,1,""],model:[365,4,1,""]},"evennia.web.api.filters.TagTypeFilter":{filter:[365,3,1,""],tag_type:[365,4,1,""]},"evennia.web.api.permissions":{EvenniaPermission:[366,1,1,""]},"evennia.web.api.permissions.EvenniaPermission":{MINIMUM_CREATE_PERMISSION:[366,4,1,""],MINIMUM_LIST_PERMISSION:[366,4,1,""],check_locks:[366,3,1,""],destroy_locks:[366,4,1,""],has_object_permission:[366,3,1,""],has_permission:[366,3,1,""],update_locks:[366,4,1,""],view_locks:[366,4,1,""]},"evennia.web.api.serializers":{AccountSerializer:[367,1,1,""],AttributeSerializer:[367,1,1,""],ObjectDBSerializer:[367,1,1,""],ScriptDBSerializer:[367,1,1,""],SimpleObjectDBSerializer:[367,1,1,""],TagSerializer:[367,1,1,""],TypeclassSerializerMixin:[367,1,1,""]},"evennia.web.api.serializers.AccountSerializer":{Meta:[367,1,1,""],get_session_ids:[367,3,1,""]},"evennia.web.api.serializers.AccountSerializer.Meta":{fields:[367,4,1,""],model:[367,4,1,""],read_only_fields:[367,4,1,""]},"evennia.web.api.serializers.AttributeSerializer":{Meta:[367,1,1,""],get_value_display:[367,3,1,""]},"evennia.web.api.serializers.AttributeSerializer.Meta":{fields:[367,4,1,""],model:[367,4,1,""]},"evennia.web.api.serializers.ObjectDBSerializer":{Meta:[367,1,1,""],get_contents:[367,3,1,""],get_exits:[367,3,1,""]},"evennia.web.api.serializers.ObjectDBSerializer.Meta":{fields:[367,4,1,""],model:[367,4,1,""],read_only_fields:[367,4,1,""]},"evennia.web.api.serializers.ScriptDBSerializer":{Meta:[367,1,1,""]},"evennia.web.api.serializers.ScriptDBSerializer.Meta":{fields:[367,4,1,""],model:[367,4,1,""],read_only_fields:[367,4,1,""]},"evennia.web.api.serializers.SimpleObjectDBSerializer":{Meta:[367,1,1,""]},"evennia.web.api.serializers.SimpleObjectDBSerializer.Meta":{fields:[367,4,1,""],model:[367,4,1,""]},"evennia.web.api.serializers.TagSerializer":{Meta:[367,1,1,""]},"evennia.web.api.serializers.TagSerializer.Meta":{fields:[367,4,1,""],model:[367,4,1,""]},"evennia.web.api.serializers.TypeclassSerializerMixin":{get_aliases:[367,3,1,""],get_attributes:[367,3,1,""],get_nicks:[367,3,1,""],get_permissions:[367,3,1,""],get_tags:[367,3,1,""],shared_fields:[367,4,1,""]},"evennia.web.api.tests":{TestEvenniaRESTApi:[368,1,1,""]},"evennia.web.api.tests.TestEvenniaRESTApi":{client_class:[368,4,1,""],get_view_details:[368,3,1,""],maxDiff:[368,4,1,""],setUp:[368,3,1,""],tearDown:[368,3,1,""],test_create:[368,3,1,""],test_delete:[368,3,1,""],test_list:[368,3,1,""],test_retrieve:[368,3,1,""],test_set_attribute:[368,3,1,""],test_update:[368,3,1,""]},"evennia.web.api.views":{AccountDBViewSet:[370,1,1,""],CharacterViewSet:[370,1,1,""],ExitViewSet:[370,1,1,""],ObjectDBViewSet:[370,1,1,""],RoomViewSet:[370,1,1,""],ScriptDBViewSet:[370,1,1,""],TypeclassViewSetMixin:[370,1,1,""]},"evennia.web.api.views.AccountDBViewSet":{basename:[370,4,1,""],description:[370,4,1,""],detail:[370,4,1,""],filterset_class:[370,4,1,""],name:[370,4,1,""],queryset:[370,4,1,""],serializer_class:[370,4,1,""],suffix:[370,4,1,""]},"evennia.web.api.views.CharacterViewSet":{basename:[370,4,1,""],description:[370,4,1,""],detail:[370,4,1,""],name:[370,4,1,""],queryset:[370,4,1,""],suffix:[370,4,1,""]},"evennia.web.api.views.ExitViewSet":{basename:[370,4,1,""],description:[370,4,1,""],detail:[370,4,1,""],name:[370,4,1,""],queryset:[370,4,1,""],suffix:[370,4,1,""]},"evennia.web.api.views.ObjectDBViewSet":{basename:[370,4,1,""],description:[370,4,1,""],detail:[370,4,1,""],filterset_class:[370,4,1,""],name:[370,4,1,""],queryset:[370,4,1,""],serializer_class:[370,4,1,""],suffix:[370,4,1,""]},"evennia.web.api.views.RoomViewSet":{basename:[370,4,1,""],description:[370,4,1,""],detail:[370,4,1,""],name:[370,4,1,""],queryset:[370,4,1,""],suffix:[370,4,1,""]},"evennia.web.api.views.ScriptDBViewSet":{basename:[370,4,1,""],description:[370,4,1,""],detail:[370,4,1,""],filterset_class:[370,4,1,""],name:[370,4,1,""],queryset:[370,4,1,""],serializer_class:[370,4,1,""],suffix:[370,4,1,""]},"evennia.web.api.views.TypeclassViewSetMixin":{filter_backends:[370,4,1,""],permission_classes:[370,4,1,""],set_attribute:[370,3,1,""]},"evennia.web.utils":{backends:[373,0,0,"-"],general_context:[374,0,0,"-"],middleware:[375,0,0,"-"],tests:[376,0,0,"-"]},"evennia.web.utils.backends":{CaseInsensitiveModelBackend:[373,1,1,""]},"evennia.web.utils.backends.CaseInsensitiveModelBackend":{authenticate:[373,3,1,""]},"evennia.web.utils.general_context":{general_context:[374,5,1,""],set_game_name_and_slogan:[374,5,1,""],set_webclient_settings:[374,5,1,""]},"evennia.web.utils.middleware":{SharedLoginMiddleware:[375,1,1,""]},"evennia.web.utils.middleware.SharedLoginMiddleware":{__init__:[375,3,1,""],make_shared_login:[375,3,1,""]},"evennia.web.utils.tests":{TestGeneralContext:[376,1,1,""]},"evennia.web.utils.tests.TestGeneralContext":{maxDiff:[376,4,1,""],test_general_context:[376,3,1,""],test_set_game_name_and_slogan:[376,3,1,""],test_set_webclient_settings:[376,3,1,""]},"evennia.web.webclient":{urls:[378,0,0,"-"],views:[379,0,0,"-"]},"evennia.web.webclient.views":{webclient:[379,5,1,""]},"evennia.web.website":{forms:[381,0,0,"-"],templatetags:[382,0,0,"-"],tests:[384,0,0,"-"],urls:[385,0,0,"-"],views:[386,0,0,"-"]},"evennia.web.website.forms":{AccountForm:[381,1,1,""],CharacterForm:[381,1,1,""],CharacterUpdateForm:[381,1,1,""],EvenniaForm:[381,1,1,""],ObjectForm:[381,1,1,""]},"evennia.web.website.forms.AccountForm":{Meta:[381,1,1,""],base_fields:[381,4,1,""],declared_fields:[381,4,1,""],media:[381,3,1,""]},"evennia.web.website.forms.AccountForm.Meta":{field_classes:[381,4,1,""],fields:[381,4,1,""],model:[381,4,1,""]},"evennia.web.website.forms.CharacterForm":{Meta:[381,1,1,""],base_fields:[381,4,1,""],declared_fields:[381,4,1,""],media:[381,3,1,""]},"evennia.web.website.forms.CharacterForm.Meta":{fields:[381,4,1,""],labels:[381,4,1,""],model:[381,4,1,""]},"evennia.web.website.forms.CharacterUpdateForm":{base_fields:[381,4,1,""],declared_fields:[381,4,1,""],media:[381,3,1,""]},"evennia.web.website.forms.EvenniaForm":{base_fields:[381,4,1,""],clean:[381,3,1,""],declared_fields:[381,4,1,""],media:[381,3,1,""]},"evennia.web.website.forms.ObjectForm":{Meta:[381,1,1,""],base_fields:[381,4,1,""],declared_fields:[381,4,1,""],media:[381,3,1,""]},"evennia.web.website.forms.ObjectForm.Meta":{fields:[381,4,1,""],labels:[381,4,1,""],model:[381,4,1,""]},"evennia.web.website.templatetags":{addclass:[383,0,0,"-"]},"evennia.web.website.templatetags.addclass":{addclass:[383,5,1,""]},"evennia.web.website.tests":{AdminTest:[384,1,1,""],ChannelDetailTest:[384,1,1,""],ChannelListTest:[384,1,1,""],CharacterCreateView:[384,1,1,""],CharacterDeleteView:[384,1,1,""],CharacterListView:[384,1,1,""],CharacterManageView:[384,1,1,""],CharacterPuppetView:[384,1,1,""],CharacterUpdateView:[384,1,1,""],EvenniaWebTest:[384,1,1,""],IndexTest:[384,1,1,""],LoginTest:[384,1,1,""],LogoutTest:[384,1,1,""],PasswordResetTest:[384,1,1,""],RegisterTest:[384,1,1,""],WebclientTest:[384,1,1,""]},"evennia.web.website.tests.AdminTest":{unauthenticated_response:[384,4,1,""],url_name:[384,4,1,""]},"evennia.web.website.tests.ChannelDetailTest":{get_kwargs:[384,3,1,""],setUp:[384,3,1,""],url_name:[384,4,1,""]},"evennia.web.website.tests.ChannelListTest":{url_name:[384,4,1,""]},"evennia.web.website.tests.CharacterCreateView":{test_valid_access_multisession_0:[384,3,1,""],test_valid_access_multisession_2:[384,3,1,""],unauthenticated_response:[384,4,1,""],url_name:[384,4,1,""]},"evennia.web.website.tests.CharacterDeleteView":{get_kwargs:[384,3,1,""],test_invalid_access:[384,3,1,""],test_valid_access:[384,3,1,""],unauthenticated_response:[384,4,1,""],url_name:[384,4,1,""]},"evennia.web.website.tests.CharacterListView":{unauthenticated_response:[384,4,1,""],url_name:[384,4,1,""]},"evennia.web.website.tests.CharacterManageView":{unauthenticated_response:[384,4,1,""],url_name:[384,4,1,""]},"evennia.web.website.tests.CharacterPuppetView":{get_kwargs:[384,3,1,""],test_invalid_access:[384,3,1,""],unauthenticated_response:[384,4,1,""],url_name:[384,4,1,""]},"evennia.web.website.tests.CharacterUpdateView":{get_kwargs:[384,3,1,""],test_invalid_access:[384,3,1,""],test_valid_access:[384,3,1,""],unauthenticated_response:[384,4,1,""],url_name:[384,4,1,""]},"evennia.web.website.tests.EvenniaWebTest":{account_typeclass:[384,4,1,""],authenticated_response:[384,4,1,""],channel_typeclass:[384,4,1,""],character_typeclass:[384,4,1,""],exit_typeclass:[384,4,1,""],get_kwargs:[384,3,1,""],login:[384,3,1,""],object_typeclass:[384,4,1,""],room_typeclass:[384,4,1,""],script_typeclass:[384,4,1,""],setUp:[384,3,1,""],test_get:[384,3,1,""],test_get_authenticated:[384,3,1,""],test_valid_chars:[384,3,1,""],unauthenticated_response:[384,4,1,""],url_name:[384,4,1,""]},"evennia.web.website.tests.IndexTest":{url_name:[384,4,1,""]},"evennia.web.website.tests.LoginTest":{url_name:[384,4,1,""]},"evennia.web.website.tests.LogoutTest":{url_name:[384,4,1,""]},"evennia.web.website.tests.PasswordResetTest":{unauthenticated_response:[384,4,1,""],url_name:[384,4,1,""]},"evennia.web.website.tests.RegisterTest":{url_name:[384,4,1,""]},"evennia.web.website.tests.WebclientTest":{test_get:[384,3,1,""],test_get_disabled:[384,3,1,""],url_name:[384,4,1,""]},"evennia.web.website.views":{AccountCreateView:[386,1,1,""],AccountMixin:[386,1,1,""],ChannelDetailView:[386,1,1,""],ChannelListView:[386,1,1,""],ChannelMixin:[386,1,1,""],CharacterCreateView:[386,1,1,""],CharacterDeleteView:[386,1,1,""],CharacterDetailView:[386,1,1,""],CharacterListView:[386,1,1,""],CharacterManageView:[386,1,1,""],CharacterMixin:[386,1,1,""],CharacterPuppetView:[386,1,1,""],CharacterUpdateView:[386,1,1,""],EvenniaCreateView:[386,1,1,""],EvenniaDeleteView:[386,1,1,""],EvenniaDetailView:[386,1,1,""],EvenniaIndexView:[386,1,1,""],EvenniaUpdateView:[386,1,1,""],HelpDetailView:[386,1,1,""],HelpListView:[386,1,1,""],HelpMixin:[386,1,1,""],ObjectCreateView:[386,1,1,""],ObjectDeleteView:[386,1,1,""],ObjectDetailView:[386,1,1,""],ObjectUpdateView:[386,1,1,""],TypeclassMixin:[386,1,1,""],admin_wrapper:[386,5,1,""],evennia_admin:[386,5,1,""],to_be_implemented:[386,5,1,""]},"evennia.web.website.views.AccountCreateView":{form_valid:[386,3,1,""],success_url:[386,4,1,""],template_name:[386,4,1,""]},"evennia.web.website.views.AccountMixin":{form_class:[386,4,1,""],model:[386,4,1,""]},"evennia.web.website.views.ChannelDetailView":{attributes:[386,4,1,""],get_context_data:[386,3,1,""],get_object:[386,3,1,""],max_num_lines:[386,4,1,""],template_name:[386,4,1,""]},"evennia.web.website.views.ChannelListView":{get_context_data:[386,3,1,""],max_popular:[386,4,1,""],page_title:[386,4,1,""],paginate_by:[386,4,1,""],template_name:[386,4,1,""]},"evennia.web.website.views.ChannelMixin":{access_type:[386,4,1,""],get_queryset:[386,3,1,""],model:[386,4,1,""],page_title:[386,4,1,""]},"evennia.web.website.views.CharacterCreateView":{form_valid:[386,3,1,""],template_name:[386,4,1,""]},"evennia.web.website.views.CharacterDetailView":{access_type:[386,4,1,""],attributes:[386,4,1,""],get_queryset:[386,3,1,""],template_name:[386,4,1,""]},"evennia.web.website.views.CharacterListView":{access_type:[386,4,1,""],get_queryset:[386,3,1,""],page_title:[386,4,1,""],paginate_by:[386,4,1,""],template_name:[386,4,1,""]},"evennia.web.website.views.CharacterManageView":{page_title:[386,4,1,""],paginate_by:[386,4,1,""],template_name:[386,4,1,""]},"evennia.web.website.views.CharacterMixin":{form_class:[386,4,1,""],get_queryset:[386,3,1,""],model:[386,4,1,""],success_url:[386,4,1,""]},"evennia.web.website.views.CharacterPuppetView":{get_redirect_url:[386,3,1,""]},"evennia.web.website.views.CharacterUpdateView":{form_class:[386,4,1,""],template_name:[386,4,1,""]},"evennia.web.website.views.EvenniaCreateView":{page_title:[386,3,1,""]},"evennia.web.website.views.EvenniaDeleteView":{page_title:[386,3,1,""]},"evennia.web.website.views.EvenniaDetailView":{page_title:[386,3,1,""]},"evennia.web.website.views.EvenniaIndexView":{get_context_data:[386,3,1,""],template_name:[386,4,1,""]},"evennia.web.website.views.EvenniaUpdateView":{page_title:[386,3,1,""]},"evennia.web.website.views.HelpDetailView":{get_context_data:[386,3,1,""],get_object:[386,3,1,""],template_name:[386,4,1,""]},"evennia.web.website.views.HelpListView":{page_title:[386,4,1,""],paginate_by:[386,4,1,""],template_name:[386,4,1,""]},"evennia.web.website.views.HelpMixin":{get_queryset:[386,3,1,""],model:[386,4,1,""],page_title:[386,4,1,""]},"evennia.web.website.views.ObjectCreateView":{model:[386,4,1,""]},"evennia.web.website.views.ObjectDeleteView":{"delete":[386,3,1,""],access_type:[386,4,1,""],model:[386,4,1,""],template_name:[386,4,1,""]},"evennia.web.website.views.ObjectDetailView":{access_type:[386,4,1,""],attributes:[386,4,1,""],get_context_data:[386,3,1,""],get_object:[386,3,1,""],model:[386,4,1,""],template_name:[386,4,1,""]},"evennia.web.website.views.ObjectUpdateView":{access_type:[386,4,1,""],form_valid:[386,3,1,""],get_initial:[386,3,1,""],get_success_url:[386,3,1,""],model:[386,4,1,""]},"evennia.web.website.views.TypeclassMixin":{typeclass:[386,3,1,""]},evennia:{accounts:[155,0,0,"-"],commands:[161,0,0,"-"],comms:[184,0,0,"-"],contrib:[190,0,0,"-"],help:[253,0,0,"-"],locks:[257,0,0,"-"],objects:[260,0,0,"-"],prototypes:[265,0,0,"-"],scripts:[270,0,0,"-"],server:[279,0,0,"-"],set_trace:[153,5,1,""],settings_default:[330,0,0,"-"],typeclasses:[331,0,0,"-"],utils:[337,0,0,"-"],web:[363,0,0,"-"]}},objnames:{"0":["py","module","Python module"],"1":["py","class","Python class"],"2":["py","exception","Python exception"],"3":["py","method","Python method"],"4":["py","attribute","Python attribute"],"5":["py","function","Python function"],"6":["py","data","Python data"]},objtypes:{"0":"py:module","1":"py:class","2":"py:exception","3":"py:method","4":"py:attribute","5":"py:function","6":"py:data"},terms:{"001s":8,"010S":81,"015public":81,"020t":81,"030a":81,"040f":81,"043thi":106,"050f":81,"0b16":136,"0d0":88,"0x045a0990":3,"100m":360,"100mb":144,"100s":231,"101m":360,"102m":360,"103m":360,"104m":360,"105m":360,"106m":360,"107m":360,"108m":360,"109m":360,"10gold":111,"10m":140,"110m":360,"111m":360,"112m":360,"113m":360,"114m":360,"115m":360,"116m":360,"117m":360,"118m":360,"119m":360,"120m":360,"121m":360,"122m":360,"123dark":94,"123m":360,"124m":360,"125m":360,"126m":360,"127m":360,"128m":360,"129m":360,"12s":19,"130m":360,"131m":360,"132m":360,"133m":360,"134m":360,"135m":360,"136m":360,"137m":360,"138m":360,"139m":360,"140m":360,"141m":360,"142m":360,"143m":360,"144m":360,"145m":360,"146m":360,"147m":360,"148m":360,"149m":360,"150m":360,"151m":360,"152m":360,"153m":360,"154m":360,"155m":360,"156m":360,"156s":8,"157m":360,"158m":360,"159m":360,"160m":360,"161m":360,"162m":360,"163m":360,"164m":360,"165m":360,"166m":360,"167m":360,"168m":360,"169m":360,"16m":360,"170m":360,"171m":360,"172m":360,"173m":360,"174m":360,"175m":360,"176m":360,"177m":360,"178m":360,"179m":360,"17m":360,"180m":360,"181m":360,"182m":360,"183m":360,"184m":360,"185m":360,"186m":360,"187m":360,"188m":360,"189m":360,"18m":360,"190m":360,"191m":360,"192m":360,"193m":360,"194m":360,"195m":360,"196m":360,"197m":360,"198m":360,"199m":360,"19m":360,"1_7":8,"1d100":[111,114,200],"1d2":88,"1d20":111,"1d6":114,"1gb":144,"1st":91,"200m":360,"201m":360,"2020_01_29":354,"2020_01_29__1":354,"2020_01_29__2":354,"202m":360,"203m":360,"204m":360,"205m":360,"206m":360,"207m":360,"208m":360,"209m":360,"20m":360,"210m":360,"211m":360,"212m":360,"213m":360,"214m":360,"215m":360,"216m":360,"217m":360,"218m":360,"219m":360,"21m":360,"220m":360,"221m":360,"222m":360,"223m":360,"224m":360,"225m":360,"226m":360,"227m":360,"228m":360,"229m":360,"22m":[338,360],"22nd":361,"230m":360,"231m":360,"232m":360,"233m":360,"234m":360,"235m":360,"236m":360,"237m":360,"238m":360,"239m":360,"23m":360,"240m":360,"241m":360,"242m":360,"243m":360,"244m":360,"245m":360,"246m":360,"247m":360,"248m":360,"249m":360,"24m":360,"250m":360,"251m":360,"252m":360,"253m":360,"254m":360,"255m":360,"25m":360,"26m":360,"27m":360,"28gmcp":308,"28m":360,"29m":360,"2d6":[90,111,200],"2gb":144,"2pm6ywo":73,"30m":[338,360],"30s":111,"31m":[338,360],"31st":91,"32bit":[136,138],"32m":[338,360],"32nd":90,"33m":[338,360],"34m":[338,360],"35m":[338,360],"36m":[338,360],"37m":[338,360],"38m":360,"39m":360,"3c3ccec30f037be174d3":361,"3d6":200,"3rd":91,"40m":[338,360],"41m":[338,360],"42m":[338,360],"43m":[338,360],"44m":[338,360],"45m":[19,338,360],"46m":[338,360],"474a3b9f":36,"47m":[338,360],"48m":360,"49m":360,"4er43233fwefwfw":67,"4th":[74,133],"50m":360,"50mb":144,"51m":360,"52m":360,"53m":360,"54m":360,"550n":81,"551e":81,"552w":81,"553b":81,"554i":81,"555e":81,"55m":360,"56m":360,"57m":360,"5885d80a13c0db1f8e263663d3faee8d66f31424b43e9a70645c907a6cbd8fb4":73,"58m":360,"59m":360,"5d5":88,"5mb":192,"5x5":72,"60m":360,"61m":360,"62cb3a1a":36,"62m":360,"63m":360,"64m":360,"65m":360,"66m":360,"67m":360,"68m":360,"69m":360,"6d6":88,"70m":360,"71m":360,"72m":360,"73m":360,"74m":360,"75m":360,"76m":360,"77m":360,"78m":360,"79m":360,"80m":360,"81m":360,"82m":360,"83m":360,"84m":360,"85m":360,"86m":360,"87m":360,"88m":360,"89m":360,"8f64fec2670c":144,"90m":360,"90s":362,"91m":360,"92m":360,"93m":360,"94m":360,"95m":360,"96m":360,"97m":360,"98m":360,"99m":360,"\u6d4b\u8bd5":81,"abstract":[58,77,102,111,238,333,334,335,351,355,361],"boolean":[14,22,46,98,130,166,200,203,259,264,267,276,304,333,338,339,355,362],"break":[3,15,45,46,48,49,60,62,72,73,84,89,90,97,105,106,107,110,112,113,137,147,153,179,180,217,241,244,293,346,361],"byte":[16,19,61,286,293,295,304,312,361],"case":[3,8,9,11,13,14,15,16,19,20,22,23,27,30,31,34,37,40,41,42,45,46,48,49,53,56,58,59,60,61,62,68,70,71,72,73,74,76,77,80,81,82,83,86,87,90,91,92,94,95,97,98,99,100,101,102,103,104,105,106,107,108,109,110,113,115,116,126,127,130,133,134,146,147,150,151,156,158,163,165,168,171,177,179,180,186,187,188,192,193,194,195,197,200,202,203,211,219,221,226,230,250,255,256,258,259,264,273,275,289,293,297,301,315,322,325,333,334,335,336,338,340,351,358,361,373],"catch":[0,6,16,19,33,37,44,84,90,97,113,125,158,177,250,274,284,289,296,322,323,343,351,354,357,386],"char":[40,59,72,88,90,96,101,104,114,115,124,126,130,141,156,171,177,204,250,264,281,294,307,308,329,338,344,347],"class":[0,3,6,12,13,17,20,26,27,28,29,34,37,40,42,48,49,50,53,58,64,71,74,75,76,77,80,81,82,83,84,85,87,88,89,90,91,93,94,95,96,97,98,99,100,101,102,105,108,110,111,113,114,115,116,117,119,124,125,126,127,129,130,131,141,156,157,158,159,160,161,164,165,166,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,185,186,187,188,189,192,193,194,195,196,197,199,200,201,202,203,204,207,208,210,211,212,213,214,215,216,217,218,219,220,221,225,226,227,228,229,230,231,232,234,235,236,237,238,240,241,243,244,245,246,248,249,250,251,252,254,255,256,259,260,261,262,263,264,266,268,269,271,272,273,274,275,276,277,278,280,281,282,284,286,287,290,291,293,294,295,296,297,298,299,300,301,302,303,304,305,306,307,308,309,310,311,312,313,315,317,320,322,323,324,325,327,328,329,331,332,333,334,335,336,338,339,340,341,342,343,344,345,346,347,348,350,351,352,353,354,355,356,357,358,359,360,361,365,366,367,368,370,373,375,376,381,384,386],"const":251,"default":[2,3,5,6,7,8,9,11,12,13,14,15,16,17,19,20,21,22,23,24,25,26,27,29,33,34,37,39,40,41,42,43,45,48,49,50,51,52,53,54,55,56,58,59,61,62,63,64,65,66,67,68,70,71,72,74,75,77,79,80,83,85,86,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,106,107,108,111,112,113,115,116,117,118,119,124,125,127,128,130,131,134,135,138,139,140,141,142,143,144,146,147,150,153,154,156,157,158,160,161,162,163,164,165,166,187,189,192,194,195,196,197,198,199,200,201,202,203,204,205,208,210,211,212,214,215,217,218,220,221,224,225,227,228,229,230,231,232,234,235,236,237,238,241,243,248,250,251,252,253,255,256,257,259,264,268,269,273,274,276,278,282,284,286,288,289,290,294,306,307,308,313,315,316,322,323,324,325,329,330,333,334,335,336,338,340,341,343,345,346,347,350,351,353,354,355,356,357,358,361,362,365,370,373,381,386,388],"export":143,"final":[0,2,8,19,22,29,31,37,40,42,45,46,48,55,56,58,62,74,78,83,85,86,90,92,96,98,100,101,102,104,105,109,112,114,115,116,118,128,130,131,135,138,147,162,163,171,180,192,200,232,259,269,321,325,338,340,345,346,353],"float":[71,74,105,158,199,209,210,213,231,267,277,284,296,334,348,353,357,361],"function":[0,5,7,8,9,13,14,15,19,22,23,26,27,28,29,30,39,41,42,44,45,46,48,51,53,56,58,59,60,64,65,67,70,72,73,74,76,77,79,80,81,83,86,87,89,90,91,92,94,95,96,97,98,99,101,103,104,105,107,109,110,111,112,113,114,116,117,125,127,130,131,135,138,143,151,153,156,160,163,165,166,168,169,170,171,172,176,177,178,179,181,182,187,188,192,194,195,196,199,200,202,203,205,209,210,213,214,215,218,220,221,226,227,231,232,234,235,236,237,238,241,244,245,249,251,252,256,257,258,259,264,267,268,269,274,276,277,278,284,289,293,304,305,310,313,316,323,325,327,335,336,337,338,339,341,342,343,345,346,348,353,354,355,356,360,361,362,368,370,374,386],"g\u00e9n\u00e9ral":133,"goto":[96,345],"import":[1,3,5,6,7,8,10,12,13,14,15,16,19,20,22,26,27,28,29,30,31,32,34,37,39,40,41,43,44,45,46,48,50,51,53,55,56,58,61,62,64,65,66,67,68,70,71,72,75,76,77,79,80,81,82,83,84,85,87,88,89,90,91,92,94,96,97,98,100,101,103,104,105,108,110,112,113,114,115,116,117,118,124,125,126,127,128,129,130,131,137,138,141,142,144,147,151,153,165,171,181,186,192,194,195,196,197,198,199,200,202,203,213,214,215,217,219,220,221,227,228,231,232,234,235,236,237,238,245,249,250,252,255,259,269,278,284,288,296,297,318,322,325,326,333,335,339,340,343,344,345,346,347,358,359,361,386],"int":[13,20,27,30,45,62,71,81,85,88,90,96,97,104,106,116,131,156,158,163,164,166,188,192,194,197,199,200,203,205,207,209,210,213,215,221,231,232,234,235,236,237,238,251,264,269,275,276,277,278,281,282,284,288,289,293,294,295,296,298,302,303,304,312,313,315,325,327,329,333,334,338,341,343,344,345,347,348,351,353,354,358,361],"long":[0,8,11,16,19,22,27,28,29,31,33,40,44,45,48,53,58,60,61,63,64,67,68,70,71,72,73,74,76,77,81,83,87,90,91,94,96,98,99,101,104,106,107,112,113,114,125,127,128,130,132,133,135,141,142,144,168,171,176,194,201,210,218,228,237,245,251,293,298,313,338,339,346,347,361],"new":[0,2,5,7,9,11,12,13,14,15,19,20,22,23,25,26,27,29,31,32,34,36,39,40,41,42,43,46,49,50,51,52,53,55,56,59,60,63,64,66,67,68,71,72,73,74,76,77,78,80,81,83,85,86,87,89,91,94,95,96,97,98,99,101,105,106,107,108,109,110,111,113,114,115,116,118,119,120,121,122,123,124,125,127,129,131,132,133,135,136,137,138,139,141,142,143,144,145,146,156,157,158,164,165,166,168,169,171,176,179,180,182,183,185,186,187,195,196,197,201,202,203,207,210,212,214,215,216,217,218,219,220,221,227,228,231,232,234,235,236,237,238,248,249,250,252,256,259,261,263,264,266,268,269,271,273,276,277,278,281,284,293,294,295,296,302,303,304,309,316,324,325,329,333,334,335,336,338,339,341,344,345,347,351,353,354,355,384,386,388],"null":[58,98,134,332,353],"public":[5,11,23,81,86,90,98,103,112,131,139,140,142,144,146,147,176,192,264,329,347],"return":[2,3,5,6,8,13,16,19,22,26,28,29,30,31,34,37,41,42,43,45,46,48,53,55,60,62,63,68,71,72,74,77,79,80,81,82,83,84,85,86,87,90,91,92,94,95,96,97,98,99,104,105,108,109,113,114,115,116,117,124,125,127,130,131,141,146,147,151,152,156,157,158,160,162,163,164,165,166,168,171,178,181,182,186,187,188,189,192,193,194,195,197,199,200,202,203,205,207,208,209,210,212,213,214,215,218,219,220,221,225,226,227,230,231,232,234,235,236,237,238,240,248,249,250,251,252,254,255,256,258,259,261,263,264,266,267,268,269,274,275,276,278,281,282,284,289,290,293,294,296,297,298,299,301,302,303,304,305,307,308,309,311,312,313,315,316,322,323,325,327,328,329,332,333,334,335,336,338,339,340,341,342,343,345,346,347,348,351,353,354,355,356,357,358,360,361,362,365,366,367,374,381,386],"short":[3,27,33,34,43,46,56,62,63,65,68,70,74,83,85,89,90,91,99,102,104,106,111,116,137,141,147,151,195,197,210,217,220,221,245,251,269,339,361],"static":[46,64,69,71,74,90,103,111,112,118,153,154,178,190,195,207,221,229,230,329,341,365,366,367,379,386,388],"super":[20,34,45,53,68,71,81,86,89,90,91,94,104,107,116,125,127,195,197,221],"switch":[11,12,14,15,20,22,23,26,29,31,45,48,50,51,55,59,62,63,66,67,70,81,90,94,95,99,115,116,127,128,135,139,142,144,145,168,169,170,171,176,177,178,179,180,181,186,187,200,202,214,215,217,218,235,273,335,341,362],"th\u00ed":99,"throw":[11,13,42,54,68,130,143,165,178,361],"true":[0,8,12,13,14,19,20,22,23,26,27,29,30,31,32,33,37,40,44,45,46,48,53,54,55,58,62,64,68,71,74,79,80,81,83,86,88,90,91,92,94,96,97,98,99,103,104,105,108,109,112,113,115,116,124,126,127,128,130,137,139,140,142,144,145,146,156,160,162,164,165,166,168,171,176,178,179,182,185,186,187,188,189,192,194,195,197,198,199,200,203,205,207,210,212,215,218,219,220,221,227,231,232,234,235,236,237,238,241,244,248,252,254,258,259,261,263,264,266,268,269,271,273,274,275,276,277,278,280,282,284,289,290,293,295,302,307,312,313,323,325,327,329,332,333,334,335,338,341,343,345,346,347,348,351,353,356,357,358,361,362,366],"try":[0,3,5,6,8,13,14,16,19,26,27,29,30,31,37,42,46,48,49,50,54,58,60,61,64,65,66,67,68,70,71,72,74,76,77,79,80,81,83,84,85,87,88,89,90,92,94,97,98,99,100,101,102,104,105,106,107,110,111,113,114,116,118,119,120,121,122,123,125,126,127,128,130,131,134,135,137,138,139,143,144,147,151,156,160,164,166,171,187,189,194,195,201,211,219,220,221,227,228,230,231,234,235,236,237,238,241,245,248,249,250,252,256,264,268,276,281,284,293,308,309,313,327,332,333,335,338,340,341,343,344,357,361],"var":[46,59,140,192,215,224,308,339],"void":88,"while":[5,8,13,14,15,20,22,25,26,27,42,46,48,56,58,60,62,63,66,67,68,71,72,73,74,76,78,81,82,83,86,88,89,90,91,97,99,100,102,103,104,106,107,109,110,111,112,113,115,118,125,127,130,131,135,138,143,144,147,151,156,168,171,179,187,192,194,203,211,212,218,219,235,238,241,245,248,250,252,264,269,276,308,331,332,335,345,347,361,362,386],AIs:133,AND:[31,101,114,171,203,259,333],AWS:[144,146,192],Adding:[1,21,22,60,89,93,95,96,103,106,111,112,113,115,141,153,154,190,202,388],Age:[203,381],And:[0,2,3,13,22,27,31,40,46,48,58,66,67,68,70,72,79,80,81,83,86,89,91,92,97,104,106,107,111,114,128,130,165,197,232,234,235,236,237,238,388],Are:[22,95,99,110,133],Aye:70,BGs:128,Being:[90,94,106,109,116],But:[0,3,8,13,14,16,19,20,22,27,31,37,39,41,42,45,48,56,58,62,66,68,72,73,74,76,77,80,81,82,83,85,86,87,89,91,92,95,96,97,98,99,101,103,104,105,106,107,108,110,112,113,114,122,128,130,131,137,142,146,164,165,194,245,336,386],DNS:144,DOING:203,DoS:302,Doing:[22,76,83,98,114,131,165,168],For:[2,3,4,5,8,10,11,12,14,15,17,19,20,22,27,31,35,37,40,42,49,50,51,55,56,58,59,61,62,63,64,65,66,67,68,70,71,72,73,74,76,77,80,81,83,85,86,88,89,90,91,92,94,96,97,99,101,103,104,105,106,107,108,111,112,113,114,115,116,118,127,128,129,130,131,133,134,135,138,142,144,145,146,147,151,165,171,181,186,187,188,189,195,197,200,202,203,204,212,213,215,221,227,229,231,232,235,248,256,259,269,304,313,333,335,338,342,345,355,357,361,369,381,386,387],GMs:[90,111],Going:[112,251],Has:[136,234,235,236,237,238],His:[89,204],IDE:[7,74],IDEs:89,IDs:[66,130,131,146,209,333,361,367],INTO:[171,203],IOS:136,IPs:[49,147,224,327],IRE:[59,308],Its:[4,31,34,40,56,58,86,91,92,204,231,269,343,345,361],LTS:6,NOT:[13,22,31,46,81,101,144,147,171,259,269,276,327],Near:102,Not:[8,11,30,43,44,46,60,84,86,89,98,101,106,107,110,129,130,134,136,137,144,158,165,179,180,264,281,294,295,296,298,299,300,306,308,311,333,334,355],OBS:51,ONE:147,Obs:8,One:[2,9,10,11,23,27,31,33,37,40,44,49,55,66,68,70,71,74,77,81,83,89,90,92,97,98,99,101,104,106,107,108,112,113,116,124,127,128,129,133,134,138,151,153,160,162,194,200,220,231,232,248,249,268,269,294,322,332,333,334,338,339,346,361],PRs:11,Such:[8,14,22,27,73,77,82,89,110,114,171,269,338,345],THAT:97,THE:[203,245],THEN:[165,203],THERE:203,TLS:147,That:[0,3,4,5,11,16,20,22,29,30,37,40,43,44,45,48,65,66,67,68,70,71,72,76,77,79,80,81,85,86,89,91,92,97,98,99,101,102,104,105,106,109,111,112,113,114,117,118,131,145,194,195,201,231,232,259,269,325,369],The:[2,3,4,6,7,8,9,10,11,12,16,17,19,20,22,23,24,28,29,30,31,32,33,34,36,37,39,40,41,43,44,45,46,49,53,54,55,58,59,60,61,62,63,65,66,67,72,73,74,75,76,77,79,80,81,82,84,85,87,88,89,91,94,95,97,98,99,100,101,102,103,104,105,106,107,108,111,112,113,114,118,119,125,126,127,128,129,130,131,132,133,134,135,136,137,138,142,143,144,145,146,147,149,151,156,158,159,160,162,163,164,165,166,168,171,175,176,177,178,179,180,181,182,183,185,186,187,188,189,192,194,195,197,199,200,201,202,203,204,205,207,208,209,210,212,213,214,215,218,219,220,221,227,228,231,232,234,235,236,237,238,240,241,243,244,245,248,249,250,251,252,253,255,256,258,259,263,264,266,267,268,269,272,273,274,275,276,278,281,282,283,284,286,288,289,291,293,294,295,296,297,298,299,300,301,302,303,304,306,307,308,309,311,312,313,315,316,321,322,323,324,325,329,332,333,334,335,336,338,339,340,341,342,343,344,345,346,347,348,349,351,353,354,355,356,357,358,359,361,362,365,366,367,369,370,381,386,388],Their:[27,42,62,114,147,204],Theirs:204,Then:[3,5,8,11,16,41,46,66,67,68,70,74,85,86,88,92,97,104,138,140,146,202],There:[0,5,6,8,9,13,14,15,16,19,20,22,23,27,29,31,34,37,39,40,41,43,45,46,47,48,51,58,59,60,61,62,66,68,70,71,72,74,76,77,78,80,81,86,89,90,91,92,94,96,97,98,99,100,101,103,105,106,108,110,111,112,113,114,115,116,118,124,125,127,130,133,134,135,142,144,145,147,179,202,203,232,234,235,236,237,238,252,269,278,289,308,325,338,339,345,353,387],These:[8,11,13,14,17,22,23,24,25,27,29,30,37,40,41,42,43,45,46,53,56,58,59,62,66,67,68,71,72,74,79,81,85,92,97,98,99,100,101,103,104,106,107,108,111,112,113,114,127,130,139,144,146,147,151,155,156,157,162,164,166,168,170,172,180,188,195,199,213,214,218,220,221,225,231,245,250,255,259,264,268,269,278,283,290,309,312,313,315,324,325,326,333,335,338,342,345,346,347,354,355,356,361],USE:258,Use:[5,8,11,12,14,15,20,27,34,40,42,45,46,49,62,67,68,74,79,81,90,92,99,105,106,107,109,115,116,134,135,136,137,138,139,144,146,150,156,163,168,169,171,176,177,181,183,194,195,199,201,212,214,215,217,218,219,221,235,236,237,238,244,251,261,263,264,286,290,295,312,313,315,316,319,333,335,338,344,345,347,351,358,361],Used:[22,127,162,165,171,187,203,217,232,252,263,276,286,304,333,335,346,347,374],Useful:[27,144,388],Uses:[62,171,183,201,224,248,284,333,346,347,351],Using:[1,4,19,27,29,31,44,52,68,70,76,90,91,97,101,104,105,106,107,112,116,119,120,121,122,123,127,149,153,154,171,190,221,235,251,264,304,331,345,388],VCS:2,VHS:203,VPS:144,WILL:[97,136,276],WIS:90,WITH:[135,203],Will:[20,30,62,74,99,110,151,156,199,219,221,264,267,269,282,284,293,294,335,345,347,348,353,356,361],With:[13,16,33,51,72,76,89,98,101,108,109,110,111,112,113,116,134,135,146,153,156,192,195,221,269,338],Yes:[22,203,343],__1:354,__2:354,_________________:45,_________________________:27,______________________________:27,________________________________:27,_________________________________:45,______________________________________:345,______________________________________________:27,_______________________________________________:27,____________________________________________________:27,_________________________________________________________:96,__________________________________________________________:96,__all__:[157,254,261],__defaultclasspath__:335,__doc__:[22,29,166,179,181,182,256,341],__example__:6,__ge:101,__ge__:6,__getitem__:338,__gt:101,__iendswith:101,__in:101,__init_:347,__init__:[4,6,13,41,45,53,71,75,103,107,117,164,165,166,186,189,192,194,195,207,219,221,231,244,251,259,263,264,274,275,277,278,281,282,284,286,287,293,294,295,296,297,298,299,300,301,302,303,304,305,306,307,308,309,311,312,313,315,322,323,325,327,328,329,332,333,335,336,338,340,343,344,345,346,347,353,354,355,356,357,361,375],__istartswith:101,__iter__:13,__le:101,__lt:101,__multimatch_command:180,__noinput_command:[164,180,195,343,345,346],__nomatch_command:[180,195,250,343,345],__pycache__:103,__send_to_channel_command:180,__settingsclasspath__:335,__unloggedin_look_command:[183,201,216],_action_thre:27,_action_two:27,_asynctest:310,_attrs_to_sync:324,_attrtyp:333,_cach:335,_cached_cmdset:165,_call_or_get:195,_callback:[19,278],_char_index:338,_character_dbref:196,_check_password:27,_check_usernam:27,_clean_nam:193,_clean_str:338,_cleanup_charact:115,_code_index:338,_compress_cont:193,_copi:[171,264],_creation:45,_default:[27,345],_defend:27,_errorcmdset:165,_event:213,_file:354,_flag:268,_footer:22,_format_diff_text_and_opt:269,_get_a_random_goblin_nam:42,_get_db_hold:[323,335],_get_top:92,_getinput:345,_gettabl:289,_http11clientfactori:286,_init_charact:115,_is_fight:83,_is_in_mage_guild:27,_ital:74,_italic_:137,_loadfunc:343,_menutre:[27,81,345],_monitor:289,_monitor_callback:32,_nicklist_cal:158,_oob_at_:351,_option:27,_os:192,_pending_request:329,_permission_hierarchi:258,_ping_cal:158,_playable_charact:[92,130],_postsav:351,_prefix:221,_quell:258,_quitfunc:343,_raw_str:338,_reactor_stop:[301,322],_recog_obj2recog:221,_recog_obj2regex:221,_recog_ref2recog:221,_regex:221,_repeat:289,_safe_contents_upd:263,_savefunc:343,_saver:[13,342],_saverdict:[13,231,342],_saverlist:[13,342],_saverset:342,_sdesc:221,_select:27,_sensitive_:373,_session:345,_set:101,_set_attribut:27,_set_nam:27,_some_other_monitor_callback:32,_start_delai:278,_static:74,_stop_serv:301,_templat:74,_test:162,_traithandlerbas:230,_validate_fieldnam:90,a2enmod:134,a8oc3d5b:146,a_off:194,a_python_func:74,aaaaaargh:106,aardwolf:59,abbrevi:[55,62,171,217,353],abcd:177,abid:128,abil:[8,20,22,28,31,37,42,46,48,60,76,88,89,90,99,103,106,109,111,112,114,116,131,144,146,220,221,228,234,235,236,237,238,264,276,284,333],abl:[0,2,3,5,7,10,11,13,14,15,19,20,22,27,28,33,34,39,42,43,51,55,58,62,65,66,68,71,72,76,77,79,80,82,83,86,89,90,92,94,96,97,99,105,106,109,110,113,114,115,116,117,127,130,131,134,135,138,141,143,144,146,147,165,168,169,171,172,186,189,195,199,205,214,221,227,231,234,235,236,237,238,245,276,333,335,342,357,361,384],abod:258,abort:[19,22,27,28,34,81,108,113,156,166,171,187,212,228,264,267,346],about:[0,2,3,5,6,8,11,13,14,15,16,17,20,22,27,29,35,39,42,43,48,49,50,55,56,58,60,61,62,64,66,67,68,70,73,74,76,77,78,80,81,84,85,86,87,89,92,93,94,96,97,98,99,100,101,102,103,104,106,109,110,113,114,115,116,117,118,119,120,121,122,123,125,126,128,131,132,133,135,136,137,138,141,143,144,146,147,149,151,156,171,181,186,192,194,195,197,200,229,236,237,238,244,245,249,250,256,264,284,286,289,298,300,302,311,313,323,325,332,334,336,338,351,353,361,367],abov:[2,5,7,8,11,12,13,14,15,19,20,22,26,27,29,30,31,32,37,40,42,43,45,46,48,49,53,58,62,64,65,67,70,71,72,73,77,79,80,82,83,84,87,88,89,90,91,92,94,96,97,99,101,103,104,105,106,107,108,111,113,115,116,119,125,127,129,130,134,135,136,138,144,146,151,164,165,171,195,200,203,205,214,215,219,221,228,229,231,232,234,236,237,238,259,264,289,332,345,356,374],abridg:86,abruptli:231,absolut:[19,74,88,91,93,97,131,133,197,199,200,204,344,348,361],absorb:30,abspath:361,abstractus:160,abus:147,academi:133,acccount:24,accept:[11,13,15,19,20,27,30,31,42,44,45,59,62,68,73,90,105,106,111,112,130,131,135,137,144,156,162,163,181,194,200,203,208,211,219,220,221,228,248,250,258,264,284,289,302,328,329,334,339,345,353,357,361],accept_callback:[208,210],accesing_obj:258,access:[8,9,11,13,14,15,19,20,22,23,27,28,29,30,31,32,33,34,37,39,40,41,42,43,45,46,49,51,53,54,56,58,60,62,64,66,68,71,72,74,75,77,79,80,81,83,85,86,88,89,90,92,93,96,97,98,100,101,102,103,104,105,106,109,111,112,113,114,115,116,119,127,128,130,131,134,135,138,141,144,146,147,150,156,157,160,164,165,166,168,169,171,176,177,178,179,180,181,186,187,188,189,192,195,202,205,207,209,218,220,221,231,234,235,236,237,238,250,251,256,257,258,259,263,264,267,268,269,273,275,277,278,281,284,293,294,323,325,331,332,333,335,336,339,340,341,354,360,361,366,367,381,386],access_kei:192,access_key_nam:192,access_obj:[258,333],access_opt:362,access_token_kei:[126,141],access_token_secret:[126,141],access_typ:[29,156,166,171,187,189,256,258,259,264,333,335,386],accessed_obj:[31,81,113,127,258,259],accessing_obj:[13,31,81,113,127,156,187,189,256,258,259,264,333,335],accessing_object:[13,258],accessor:[160,189,256,263,273,333,335,336,352],accessori:138,accident:[16,20,74,112,116,169,171,323],accommod:79,accomod:347,accompani:116,accomplish:[49,71,76,81,86,110,112,113],accord:[20,22,72,101,112,115,128,195,197,215,219,220,235,277,338,339],accordingli:[7,71,90,144,187,251],account1:384,account2:384,account:[8,11,13,15,17,19,20,22,23,25,26,27,28,30,31,33,34,36,39,40,41,42,43,45,49,51,54,56,60,62,63,64,66,67,68,71,72,73,74,75,76,79,80,81,86,88,89,91,92,94,97,98,99,102,103,104,105,108,110,116,126,128,130,131,136,139,141,144,146,151,153,154,161,162,163,164,165,166,167,169,171,172,173,176,177,178,179,183,186,187,188,189,195,196,197,199,201,202,203,205,207,208,210,212,214,215,216,221,224,227,234,236,237,238,241,245,248,249,250,252,256,258,259,263,264,266,268,270,273,284,288,289,304,315,316,323,324,325,333,335,338,341,345,346,355,356,358,359,361,362,365,366,367,370,373,381,384,386,388],account_cal:[168,176,179,214],account_count:325,account_id:[130,264],account_mod:171,account_nam:88,account_search:[221,264],account_subscription_set:160,account_typeclass:[359,384],accountattributeinlin:157,accountcmdset:[12,20,68,86,89,90,91,105,168,172,176,196,214],accountcreateview:386,accountdb:[45,75,130,153,156,157,160,187,256,331,332,335,355,362,365],accountdb_db_attribut:157,accountdb_db_tag:157,accountdb_set:[333,336],accountdbadmin:157,accountdbchangeform:157,accountdbcreationform:157,accountdbfilterset:[365,370],accountdbmanag:[159,160],accountdbpasswordcheck:304,accountdbviewset:370,accountform:[157,381,386],accountid:130,accountinlin:157,accountlist:90,accountmanag:[156,159],accountmixin:386,accountnam:[90,171,183,188,201,341],accountseri:[367,370],accounttaginlin:157,accru:156,acct:108,accur:[68,166,189,207,231,235,238,269,277,282,284,286,287,295,304,305,307,309,312,313,333,338,353,356,357,375],accuraci:[70,97,111,235,236,237],accus:114,accustom:33,acept:203,achiev:[19,22,62,66,68,74,89,101,109,112,128,237,284],ack:28,acl:[192,193],acquaint:89,acquir:340,across:[27,37,40,42,45,50,53,58,60,88,97,106,110,112,156,164,165,197,203,250,255,264,267,276,278,281,293,294,308,325,347],act:[12,14,20,23,27,37,40,52,71,72,73,78,83,88,90,101,106,110,112,116,134,135,151,153,171,189,203,231,232,258,281,293,294,313,333,336,340,345],action1:115,action2:115,action:[3,5,13,37,59,62,66,68,70,76,77,83,85,86,89,91,97,103,104,106,110,113,114,115,116,124,125,130,144,157,158,177,187,194,203,221,234,235,236,237,238,251,255,256,267,268,273,274,296,315,316,317,327,335,351,366,368,369,370],action_count:115,action_nam:[234,235,236,237,238],actiondict:115,actions_per_turn:[234,235,237,238],activ:[0,2,5,9,11,14,19,20,22,31,34,37,40,49,54,55,56,62,64,67,74,77,79,82,91,94,98,110,118,133,138,139,142,143,144,145,150,151,156,162,165,169,171,181,186,187,208,216,225,245,248,252,263,264,267,276,289,296,297,298,299,300,304,306,307,308,315,325,327,333,334,345,346,347,353,361],activest:360,actor:238,actual:[0,2,3,5,6,7,8,9,12,13,14,15,19,23,27,29,31,33,34,39,40,42,43,44,46,48,51,53,56,58,59,61,62,68,70,71,72,74,77,80,83,86,87,90,92,94,96,97,98,99,100,101,102,103,105,106,107,108,109,110,111,112,113,114,115,116,118,121,122,127,128,130,131,133,134,138,141,144,146,156,162,166,168,171,177,179,180,182,187,189,192,194,195,197,202,203,212,213,217,218,220,221,228,229,230,232,234,235,236,237,238,245,249,250,252,256,258,259,263,264,268,269,304,307,313,315,321,323,324,325,329,330,333,335,338,340,341,343,345,351,355,356,357,361,386],actual_return:8,adapt:[53,66,79,80,92,111,114,130],add:[0,2,3,5,7,8,9,10,11,12,13,14,15,16,17,20,22,23,25,26,27,29,30,31,32,33,34,37,39,40,42,43,44,45,46,48,50,51,53,54,55,58,59,61,62,64,65,66,67,68,70,71,72,73,74,76,77,80,83,84,85,86,87,89,90,91,92,93,94,95,96,97,98,99,101,103,104,105,106,107,108,110,111,112,113,114,115,116,119,124,125,126,127,129,130,131,132,133,134,136,137,139,140,141,144,145,146,153,156,160,164,165,171,176,177,178,180,186,187,194,195,196,197,198,200,201,202,207,208,210,211,212,213,214,215,216,217,218,220,221,224,227,228,230,231,232,234,235,236,237,238,240,241,244,245,248,249,250,251,258,259,263,264,267,269,273,274,275,277,278,284,289,290,294,297,298,300,302,306,313,315,316,318,326,333,336,339,343,344,345,346,347,351,353,354,356,357,365,370,386,388],add_:347,add_act:115,add_argu:251,add_callback:[208,210],add_channel:186,add_charact:115,add_choic:195,add_choice_:195,add_choice_edit:[68,195],add_choice_quit:[68,195],add_collumn:166,add_column:[90,347],add_condit:236,add_default:[20,80,96,113,127,165,241],add_dist:238,add_ev:210,add_fieldset:[157,261],add_form:[157,261],add_head:347,add_languag:220,add_row:[90,95,166,347],add_view:[157,185,261],add_xp:114,addblindedcmdset:245,addcallback:[22,264],addclass:[46,363,380,382],addcom:[90,98,176],added:[2,3,7,9,11,17,19,20,22,23,31,37,42,43,53,58,59,60,62,66,68,72,74,76,79,80,81,86,89,90,92,97,98,101,103,104,105,106,107,111,113,114,115,116,124,127,129,130,132,136,139,143,146,151,156,162,164,165,166,180,181,194,195,197,198,200,204,207,210,213,221,231,234,235,236,237,238,241,252,259,264,269,275,289,323,333,336,339,345,347,353,354,361,370,374,387],addendum:73,adding:[2,6,7,9,11,15,17,19,20,25,27,31,37,39,42,43,44,45,46,53,55,58,60,62,66,67,68,70,74,80,83,89,90,91,92,93,94,96,97,101,105,106,107,112,115,116,117,127,128,130,164,165,169,171,178,195,199,203,205,207,210,214,220,221,231,232,234,235,236,237,245,250,251,267,268,269,275,284,315,332,333,341,347,361],addingservermxp:299,addit:[2,20,26,39,55,59,62,68,70,71,73,79,81,90,91,92,95,97,131,134,144,147,156,158,165,166,187,195,198,207,208,210,212,215,220,224,230,232,238,251,259,264,277,295,323,333,335,381],addition:[72,81,238],additionalcmdset:20,addpart:218,addquot:361,addr:[281,294,295,296,341],address:[11,22,33,40,49,53,64,67,71,97,117,135,140,144,147,156,169,187,201,204,264,281,294,296,304,324,327,361,362],address_and_port:304,addressing_styl:192,addresult:218,addscript:171,addservic:53,adjac:[215,238,248],adject:[6,113],adjoin:221,adjust:[22,66,73,111,128,130,138,192,205,345,347],admin:[12,13,16,22,23,29,31,49,51,58,67,71,80,86,90,92,96,103,104,110,112,116,127,130,131,142,145,151,153,154,155,160,161,167,171,176,178,181,183,184,187,201,248,253,256,259,260,263,264,270,279,293,294,331,335,341,357,386],admin_sit:[157,185,254,261,271,280,332],admin_wrapp:386,administr:[2,22,29,31,48,63,74,76,77,86,90,135,138,147,281,293,294],adminportal2serv:293,adminserver2port:293,adminstr:281,admintest:384,admit:85,admittedli:109,adopt:[0,68,77,80,89,112,189,308],advanc:[5,14,20,22,27,39,40,42,45,48,49,53,58,60,68,72,76,77,82,85,87,90,93,101,106,112,116,119,133,171,179,202,215,219,221,234,235,236,237,238,244,299,339,343,344,347,388],advantag:[2,15,16,27,29,39,42,70,76,82,85,88,90,91,92,112,113,114,115,116,117,125,130,144,147,194,195,224,232,234,235,236,237,238,336,339],advent:196,adventur:[72,86,103,109,112],advic:133,advis:[66,68,81],aesthet:26,affair:340,affect:[8,9,11,13,14,15,20,22,31,40,43,51,62,81,91,94,106,110,112,113,114,115,128,150,153,154,156,164,181,198,213,220,227,236,257,264,268,335,339,347,355],afford:[40,96],afraid:144,after:[2,8,9,10,11,13,15,16,19,20,22,26,27,29,31,37,41,46,48,55,56,58,62,66,67,68,70,71,74,76,80,81,82,83,84,85,86,87,90,96,97,98,99,103,104,105,106,107,109,110,112,115,116,118,124,127,128,130,133,134,138,144,146,147,156,164,165,166,167,168,171,179,181,182,186,187,192,194,195,197,199,200,201,202,203,205,210,212,218,220,221,230,231,232,234,235,236,237,238,245,246,248,249,250,251,252,263,264,267,269,274,276,284,306,307,310,322,323,324,325,327,329,333,338,339,340,343,345,346,351,353,356,359,360,361,366,368,386],after_mov:264,afterlif:112,afternoon:202,afterward:[11,58,83,92,97,104,108,109,195],again:[3,5,7,9,11,14,15,22,27,31,37,40,49,55,58,62,66,68,71,72,77,80,82,83,85,86,88,89,90,91,92,94,96,97,98,99,102,104,105,106,107,110,112,113,114,115,116,119,127,128,130,135,137,138,144,145,146,150,151,158,165,176,199,210,219,234,237,238,244,245,252,276,284,301,304,307,327,338,339,342,357,359],against:[8,13,20,22,45,56,73,80,89,90,101,109,111,115,144,147,156,163,164,186,221,234,235,236,237,238,259,264,268,269,302,327,333,335,353,358,361],age:[203,251,381],agenc:147,agent:2,agenta:62,ages:203,aggreg:133,aggress:[13,15,109,143,248,335,388],aggressive_pac:248,agi:[8,13,231],agil:13,agnost:[73,77,187],ago:[81,104,146,361],agre:[61,112,114,194],agree:194,ahead:[2,15,60,68,71,105,127,136,144,306],aid:[61,119,178,179,180,194,329],aim:[1,58,60,76,90,93,96,106,110,111,114,128,144,188,268],ain:70,ainnev:[101,114,231],air:[72,80,99,107],airport:108,ajax:[46,53,76,144,313,324],ajaxwebcli:313,ajaxwebclientsess:313,aka:[5,13,67,112,218,361],akin:104,alarm:[95,99],alert:[46,212,264],alexandrian:133,algebra:71,algorith:220,algorithm:[112,361],alia:[8,11,12,20,22,33,34,40,43,45,63,67,68,72,80,86,87,89,90,98,99,106,108,138,144,157,160,163,166,168,171,176,177,178,179,180,182,185,186,202,207,221,227,231,246,248,250,252,254,258,261,263,264,267,269,271,273,278,289,315,332,334,335,336,341,357,358,359,365,367,368,370,381,386],alias1:[171,202],alias2:[171,202],alias3:202,alias:[11,12,14,19,20,22,23,27,30,33,34,42,63,65,68,72,80,81,83,86,87,90,94,95,96,98,99,113,115,116,156,164,166,168,169,170,171,176,177,178,179,180,181,182,183,186,187,188,194,195,196,197,200,201,202,203,204,208,214,215,216,217,218,221,227,228,229,232,234,235,236,237,238,241,248,249,250,251,252,255,256,263,264,269,334,335,336,341,343,345,346,354,358,365,367],aliaschan:176,aliasdb:156,aliasfilt:365,aliashandl:[332,336,367],aliasnam:269,aliasstr:341,align:[42,62,86,90,205,338,346,347,353,361],alik:29,alist:6,aliv:[76,248],alkarouri:360,all:[0,2,5,6,7,8,9,11,12,13,14,15,16,17,19,20,22,23,25,26,27,29,30,31,33,34,37,39,40,41,42,43,44,45,46,48,49,50,51,53,55,56,58,59,60,61,62,63,64,65,66,67,68,70,71,72,73,74,75,76,77,78,80,82,83,84,85,86,87,88,89,90,91,94,95,96,97,98,99,100,101,102,103,105,106,107,108,109,110,111,113,114,115,116,117,118,119,121,122,124,125,127,128,129,130,131,132,133,134,135,137,138,142,143,144,145,146,147,150,151,156,157,158,161,162,163,164,165,166,167,168,169,170,171,172,173,176,177,178,179,180,181,182,183,186,187,188,189,194,195,196,197,200,201,202,203,204,207,210,212,214,216,217,218,219,220,221,225,227,228,229,230,231,232,234,235,236,237,238,241,243,244,245,248,249,250,251,252,254,255,256,257,258,259,260,261,263,264,268,269,274,275,276,278,279,283,284,288,289,290,293,295,296,298,300,301,302,303,304,307,308,311,312,313,315,316,322,323,324,325,327,329,330,331,332,333,334,335,336,338,339,340,341,342,343,344,345,346,347,351,353,354,356,358,360,361,362,370,374,381,386,387],all_alias:43,all_attr:335,all_book:108,all_cannon:101,all_connected_account:325,all_displai:278,all_famili:101,all_fantasy_book:108,all_flow:108,all_from_modul:361,all_opt:356,all_receiv:264,all_room:[14,101],all_ros:108,all_script:37,all_sessions_portal_sync:325,all_to_categori:255,all_weapon:101,allcom:[98,176],allerror:[284,293],allevi:[8,13,60,329],allheadersreceiv:329,alli:238,alloc:144,allow:[0,2,3,6,7,11,12,13,14,15,16,19,20,22,23,27,29,30,31,33,34,36,37,39,42,43,45,46,48,49,50,51,55,58,60,61,62,63,64,66,67,68,70,71,72,74,75,76,77,79,80,83,84,85,86,87,89,90,93,94,96,97,99,101,103,104,105,106,107,108,110,111,113,114,115,116,117,127,128,130,131,132,134,135,137,138,139,141,142,143,144,145,146,147,156,158,160,162,164,165,166,168,169,170,171,176,179,180,181,182,187,188,189,194,195,197,199,200,202,203,204,210,212,215,217,219,220,221,230,231,232,234,235,236,237,238,248,249,250,251,252,256,258,259,264,267,268,269,274,276,277,278,284,288,289,291,295,297,298,299,300,307,308,309,311,316,322,323,325,327,328,333,335,336,338,339,341,343,345,346,347,348,351,355,356,357,359,361,365,366,381,386],allow_dupl:164,allow_extra_properti:231,allow_nan:313,allow_quit:345,allowed_attr:90,allowed_fieldnam:90,allowed_host:144,allowed_propnam:116,allowedmethod:313,allowext:329,almost:[22,44,45,51,86,106,107,195,197,286,293,331],alon:[8,14,27,31,33,58,71,83,88,90,106,114,115,278,289,315,339,341,347],alone_suffix:320,along:[5,22,27,30,39,41,49,59,62,77,78,97,101,102,106,109,110,113,127,132,156,168,194,200,220,224,231,232,237,259,264,313,331,370],alongsid:[74,203],alonw:273,alpha:[137,144,338],alphabet:[16,61,72,338,387],alreadi:[7,8,9,11,12,13,14,16,19,20,22,23,26,27,29,31,34,37,40,43,45,46,53,59,64,66,67,68,70,71,74,77,80,81,83,86,88,89,90,92,94,95,96,97,98,99,100,103,104,105,106,107,108,110,113,114,115,116,118,119,124,125,126,127,130,131,137,138,142,146,147,151,164,165,168,171,176,179,180,181,186,187,188,194,196,197,219,220,221,231,234,235,236,237,238,245,248,249,252,259,264,269,276,284,293,301,302,304,309,312,317,322,323,325,336,338,341,346,361,366,373],alredi:53,alright:194,also:[0,1,2,3,5,6,7,8,9,10,11,12,13,14,15,16,17,19,20,21,22,23,25,26,27,29,30,31,32,33,34,37,39,40,41,42,43,44,45,46,48,49,50,51,53,54,56,58,59,60,61,62,63,64,65,66,67,68,70,71,72,73,74,75,76,77,78,80,81,82,83,84,85,86,87,88,89,90,91,92,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,113,114,115,116,117,118,119,120,122,123,124,125,127,128,129,130,131,133,134,135,136,137,138,139,142,143,144,145,146,147,150,151,156,160,163,164,165,166,168,169,170,171,173,177,179,181,182,186,187,188,189,194,195,196,197,200,202,203,205,210,214,215,217,219,220,221,228,231,232,236,237,238,244,248,249,250,252,257,258,259,263,264,267,268,269,270,273,276,277,278,279,284,288,289,293,295,302,304,307,308,311,312,315,316,325,329,331,333,334,335,336,337,338,339,340,341,342,343,344,345,346,347,348,351,353,358,361,363,365,386],alt:338,alter:[46,66,72,77,79,86,135,333],altern:[11,22,23,27,29,33,43,46,55,62,65,72,74,76,77,83,89,94,98,113,119,125,130,135,138,142,144,149,179,180,187,218,221,238,241,258,259,302,341,353,361],although:[3,68,83,85,107,138,168,195,196,200,329,357,361],althougn:70,altogeth:[26,62,147],alwai:[4,8,9,11,12,13,14,15,19,20,22,23,27,30,31,34,37,40,41,42,43,44,45,46,49,58,59,62,64,66,71,73,74,77,79,80,81,84,85,89,90,91,92,96,97,98,99,104,105,106,107,108,110,112,113,114,116,119,127,128,131,134,135,138,142,144,156,164,165,166,168,170,171,176,179,182,187,188,189,214,220,221,227,231,241,245,258,259,263,264,267,268,269,276,278,284,286,289,293,301,304,307,308,312,313,316,323,325,330,333,334,335,336,338,341,346,351,353,357,358,361,362,366,386],always_pag:346,always_return:284,amaz:143,amazon:[133,144,192],ambianc:60,ambigu:[86,166,186,204,264,335],ambiti:[60,63],amend:11,amfl:15,ammo:80,among:[2,8,12,25,34,39,72,77,91,108,116,133,177,197,241,249,259,347,358],amongst:215,amor:211,amount:[13,29,37,50,62,73,110,111,114,116,147,181,234,235,236,237,238,264,325,343],amp:[36,40,53,56,153,279,281,284,292,294,302,310,322,325],amp_client:[153,154,279],amp_maxlen:310,amp_port:144,amp_serv:[153,279,292],ampclientfactori:281,ampersand:60,amphack:293,ampl:106,amplauncherprotocol:284,ampmulticonnectionprotocol:[281,293,294],ampprotocol:281,ampserverclientprotocol:281,ampserverfactori:294,ampserverprotocol:294,amsterdam:144,amus:98,anaconda:67,analog:[56,71],analys:27,analysi:225,analyz:[16,22,27,31,86,112,125,162,171,187,221,268,269,274,284,361],anchor:[187,238,256,335],anchor_obj:238,ancient:62,andr:136,android:[149,388],anew:[72,105,106,138,284],angelica:111,angl:63,angri:86,angular:181,ani:[2,3,6,8,9,11,12,13,15,16,19,20,22,23,26,27,29,30,31,32,33,34,37,39,40,41,42,43,44,45,46,48,49,50,51,53,55,56,58,59,62,63,64,65,66,68,71,73,74,77,78,80,81,84,85,86,87,88,89,90,94,95,96,97,98,99,100,101,103,104,105,106,107,108,109,111,112,113,114,115,116,118,124,125,127,128,130,131,133,134,135,136,137,138,139,142,144,145,146,147,150,156,160,162,163,164,165,166,168,169,171,177,181,182,187,188,189,194,195,196,197,201,202,203,204,205,209,214,217,219,220,221,224,225,228,231,234,235,236,237,238,240,241,243,248,250,251,252,258,259,264,267,268,269,273,274,276,277,278,281,282,284,286,288,289,293,294,296,302,303,304,307,312,313,315,323,324,325,333,334,335,336,338,339,340,342,343,344,345,346,347,353,354,355,356,357,358,360,361,369,370,386],anim:[19,28],anna:[90,116,124,125,138,142,171],annoi:[49,96,97,98,107,112],annot:133,announc:[9,73,81,115,116,133,169,181,212,234,235,236,237,238,264],announce_al:[302,325],announce_move_from:[34,81,212,264],announce_move_to:[34,81,212,264],annoy:156,anonym:[54,79,92,221],anonymous_add:221,anoth:[2,3,6,7,8,11,13,14,15,20,22,27,31,34,37,40,42,43,46,48,50,60,61,62,65,66,68,70,71,72,77,80,83,85,88,89,90,91,92,97,98,99,101,103,106,107,111,112,113,115,116,118,119,127,129,132,134,138,144,145,156,164,165,168,171,176,177,187,194,195,197,203,209,214,219,221,232,234,235,236,237,238,249,252,256,264,267,325,333,335,339,343,345,346,353,361],another_batch_fil:339,another_nod:345,another_script:37,ansi:[30,46,75,76,94,106,136,153,154,168,198,205,217,289,296,304,307,312,313,337,347,353,360,388],ansi_escap:338,ansi_map:338,ansi_map_dict:338,ansi_pars:338,ansi_r:338,ansi_regex:338,ansi_sub:338,ansi_xterm256_bright_bg_map:338,ansi_xterm256_bright_bg_map_dict:338,ansimatch:338,ansimeta:338,ansipars:338,ansistr:[153,338,347],ansitextwrapp:347,answer:[0,8,13,22,27,66,70,80,81,92,106,110,112,113,114,138,147,282,288],anul:134,anwer:87,anybodi:147,anymor:[8,79,113,196,210,218,219,252,345,357],anyon:[3,31,49,55,79,80,81,83,86,90,96,112,115,116,125,137,144],anyth:[0,3,7,8,9,11,13,14,20,22,23,27,31,33,34,37,39,45,46,50,51,53,56,64,66,68,70,71,72,77,83,86,88,92,95,96,97,98,99,103,104,106,107,108,110,112,113,115,116,118,125,127,130,135,138,144,146,150,164,166,180,195,221,231,232,234,235,236,237,238,259,296,330,333,339,345],anytim:112,anywai:[15,27,55,60,62,65,66,76,79,97,99,113,143,194,196,201],anywher:[22,27,45,77,104,106,113,119,131,343],apach:[135,144,147,149,329,388],apache2:134,apache_wsgi:134,apart:[8,12,13,19,23,31,39,45,76,94,128,131,138,146,238],api:[0,3,14,16,19,22,23,24,28,34,40,42,45,72,104,108,114,126,130,141,153,154,156,170,181,183,189,201,323,333,335,339,340,363,387,388],api_kei:141,api_secret:141,apicli:368,apocalyps:112,apostroph:16,app:[31,53,58,64,79,118,131,141],app_id:130,app_label:157,app_nam:92,appar:[90,128],apparit:250,appeal:[27,62],appear:[0,7,11,19,27,29,31,37,39,46,48,54,62,67,68,72,74,80,81,84,95,98,101,106,109,110,116,128,138,139,142,144,146,153,168,178,197,210,221,227,252,264,308,309,332,335,347,353,354],append:[5,6,8,19,20,26,29,31,34,53,59,68,71,81,85,92,96,97,101,115,116,130,144,166,171,178,197,214,221,259,317,339,353,354,361],appendix:258,appendto:46,appform:130,appl:[194,264],appli:[2,7,9,14,20,22,31,37,44,45,50,66,67,68,72,73,94,105,110,112,127,128,130,134,135,156,162,164,179,198,231,234,235,236,237,238,252,259,264,268,269,273,278,325,333,334,335,338,339,344,347,348,358,361],applic:[9,31,43,53,58,64,102,118,130,131,133,134,138,146,147,156,192,202,203,238,284,287,297,301,308,322,323,329,378,386],applicationdatareceiv:307,applied_d:130,apply_damag:[234,235,236,237,238],apply_turn_condit:236,appnam:[13,31],appreci:[68,73,78,132,351],approach:[7,44,68,81,85,88,97,112,130,195,238],appropri:[2,7,20,22,63,67,76,97,127,130,134,135,141,156,169,187,205,284,323,355,357,361],approrpri:53,approv:[130,131],approxim:[181,361],april:91,apt:[11,134,138,140,143,144,147],arbitrari:[6,13,14,19,31,45,46,51,65,70,72,77,104,146,156,187,202,231,232,238,243,264,269,276,282,293,313,333,342,353,354,357],arcan:63,arcanist:112,arch:52,archer:269,archetyp:112,architectur:[31,269],archiv:[103,133,147],archwizard:269,area:[8,12,68,71,90,109,110,124,133,136,248,252,258,344,347,361],aren:[8,11,66,79,83,85,92,118,130,147,156,197,203,210,218,236,354,357],arg1:[31,166,179,180,182,267,333,353],arg2:[166,179,180,182,267,333,353],arg:[3,22,27,29,30,31,42,44,46,48,53,56,59,62,63,68,74,80,81,83,84,85,86,90,94,96,98,103,105,113,114,115,116,127,129,141,156,157,158,159,160,162,163,166,171,179,180,182,187,188,189,192,194,197,199,202,204,207,210,212,218,219,220,221,227,228,229,232,234,235,236,237,238,240,243,244,245,248,249,250,251,252,255,256,258,259,262,263,264,267,268,269,272,273,276,277,278,281,289,290,291,293,294,295,296,301,302,304,305,307,308,309,312,313,317,323,325,329,332,333,334,335,336,338,345,347,348,350,351,353,354,357,359,361,362,367,381,386],arg_regex:[86,87,166,171,177,178,182,183,186,197,216,343],arglist:[179,180],argpars:251,argu:13,arguabl:[106,111],argument:[3,5,8,15,19,20,22,23,26,28,30,31,33,34,37,42,44,45,48,49,53,56,59,62,63,68,70,72,79,80,81,83,86,89,90,91,92,94,96,98,99,100,101,107,113,116,117,131,135,140,156,158,162,163,165,166,168,169,171,176,177,178,179,180,181,182,187,188,192,195,197,199,202,203,204,207,209,210,212,215,219,220,221,225,227,234,235,236,237,238,243,250,251,259,264,267,268,269,274,276,277,278,282,284,289,293,294,295,296,302,303,304,307,308,312,313,315,316,323,324,325,327,328,333,334,335,336,338,339,341,343,344,345,346,347,351,353,355,357,358,361,370,386],argumentpars:251,argumnet:347,argumu:353,aribtrarili:361,aris:147,arithmet:231,arm:[0,22,218],armchair:113,armi:96,armor:[83,95,111,197,235],armour:83,armpuzzl:218,armscii:[16,61],arnold:33,around:[3,14,15,16,20,23,31,34,42,48,61,62,63,66,71,72,74,76,77,78,79,80,83,85,90,92,96,97,98,101,103,104,105,106,107,108,110,111,112,113,114,115,116,118,124,127,133,135,138,141,144,171,179,180,197,199,209,218,221,238,241,248,249,250,252,264,338,339,347,354],arrai:[59,97,308,361],arrang:68,array_of_known_message_types_to_assign:46,array_of_split_percentag:46,arrayclos:[59,308],arrayopen:[59,308],arriv:[40,56,66,81,83,114,171,296],arrow:[3,46,106],art:[62,344],articl:[8,11,16,61,79,80,85,86,89,133,352],article_set:352,artifact:347,artifici:[112,114],arx:[133,149],arxcod:[133,149,388],as_view:[187,256,335],ascii:[16,61,67,72,156,215,344,347,361],asciiusernamevalid:156,asdf:171,ashlei:[197,203,205,232,234,235,236,237,238],asian:361,asid:[67,245],ask:[0,3,5,6,11,23,26,29,32,48,70,73,78,80,90,92,97,99,104,105,110,112,113,114,130,135,137,138,144,164,166,171,194,199,208,216,219,251,282,284,311,345,348,361],ask_choic:282,ask_continu:282,ask_input:282,ask_nod:282,ask_yesno:282,askew:111,asn:224,aspect:[8,27,29,42,58,77,89,103,106,114,205],assert:[8,115],assertequ:8,asserttru:8,asset:[118,147,192,288],assetown:67,assign:[2,6,11,12,13,14,27,31,33,34,37,42,43,44,46,49,88,90,99,103,104,105,106,108,113,115,116,127,156,162,163,165,171,178,179,180,182,198,202,203,221,231,234,235,236,237,238,250,259,263,264,268,269,289,296,302,304,307,323,342],assist:144,associ:[13,27,40,56,64,69,79,83,98,104,108,133,144,156,161,171,187,207,210,221,264,323,325,334,386],assort:386,assum:[6,7,9,14,15,16,19,20,22,23,27,29,30,31,32,34,37,40,42,44,49,51,53,60,61,66,67,68,70,71,72,73,76,80,81,82,83,85,86,87,88,90,91,94,95,96,99,101,103,108,114,115,116,117,124,125,126,127,129,130,131,143,144,146,147,151,162,165,166,168,171,182,187,195,196,221,228,231,249,250,258,264,269,274,276,308,325,338,339,345,346,353,361,366,373,386],assumpt:[113,163],assur:[45,71],asterisk:[12,49,74,105,169],astronom:91,async:[130,361,388],asynccommand:48,asynchron:[5,19,22,36,52,76,77,82,83,158,264,293,294,308,354,361],at_:[45,351],at_access:[156,264],at_account_cr:[12,156],at_after_mov:[34,124,212,264],at_after_object_leav:252,at_after_travers:[34,212,249,264],at_befor:264,at_before_drop:[235,238,264],at_before_g:[235,238,264],at_before_get:[238,264],at_before_leav:34,at_before_mov:[34,81,113,212,234,235,236,237,238,264],at_before_sai:[212,221,264],at_channel_cr:187,at_char_ent:124,at_cmdset_cr:[20,22,68,80,81,84,86,87,89,90,91,94,96,98,105,113,115,116,127,164,172,173,174,175,194,195,196,197,200,202,214,216,217,218,221,229,234,235,236,237,238,241,248,249,250,343,345,346],at_cmdset_get:[156,264,323],at_db_location_postsav:263,at_defeat:[234,235,236,237,238],at_desc:264,at_disconnect:[156,323],at_drop:[212,235,238,264],at_end:273,at_err:[48,361],at_err_funct:48,at_err_kwarg:[48,361],at_failed_login:156,at_failed_travers:[34,212,227,249,264],at_first_login:156,at_first_sav:[156,187,264],at_first_start:335,at_get:[197,212,238,264],at_giv:[235,238,264],at_heard_sai:125,at_hit:248,at_idmapper_flush:[276,335,351],at_init:[41,45,156,187,248,249,250,264],at_initial_setup:[39,103,288],at_initial_setup_hook_modul:288,at_login:[45,53,295,296,304,307,312,313,323],at_look:[156,264],at_message_rec:156,at_message_send:156,at_msg_rec:[156,204,264],at_msg_send:[156,158,204,243,264],at_new_arriv:248,at_now_add:58,at_object_cr:[20,31,34,45,80,81,85,90,94,96,113,114,116,127,129,171,202,204,221,227,229,234,235,236,237,238,244,248,249,250,264,335],at_object_delet:[212,264],at_object_leav:[250,252,264],at_object_post_copi:264,at_object_rec:[34,124,250,252,264],at_password_chang:156,at_post_cmd:[22,84,162,166,179,182],at_post_command:22,at_post_disconnect:156,at_post_func:113,at_post_login:[81,156],at_post_portal_sync:322,at_post_puppet:[212,264],at_post_unpuppet:264,at_pre_cmd:[22,162,166,179,182],at_pre_command:[22,113],at_pre_login:156,at_pre_puppet:264,at_pre_unpuppet:[212,264],at_prepare_room:252,at_reload:[181,322],at_renam:335,at_repeat:[37,45,115,126,127,158,194,199,210,234,235,236,237,238,240,245,276,317,348],at_return:[48,361],at_return_funct:48,at_return_kwarg:[48,361],at_sai:[125,212,264],at_script_cr:[37,115,126,127,158,194,199,210,219,220,234,235,236,237,238,240,245,252,268,276,317,348],at_search:103,at_search_result:[180,361],at_server_cold_start:322,at_server_cold_stop:322,at_server_connect:302,at_server_reload:[37,151,156,158,264,276],at_server_reload_start:322,at_server_reload_stop:[81,322],at_server_shutdown:[37,151,156,158,264,276],at_server_start:322,at_server_startstop:[39,81,103],at_server_stop:322,at_shutdown:322,at_start:[37,115,158,210,245,252,273,276],at_startstop_modul:278,at_stop:[37,115,127,234,235,236,237,238,245,276],at_sunris:91,at_sync:[323,324],at_tick:[44,278],at_travers:[34,212,228,252,264],at_traverse_coordin:252,at_turn_start:236,at_upd:[236,274],at_weather_upd:129,atlanti:136,atom:[119,145],atop:252,atribut:342,att:27,attach:[13,34,37,40,43,65,77,79,80,86,88,90,98,105,106,108,151,166,171,176,179,193,204,214,232,252,259,264,275,321,332,336],attachmentsconfig:79,attack:[15,27,70,82,83,84,93,105,109,110,111,114,115,131,144,147,165,221,232,234,235,236,237,238,248,249,264,269,302],attack_count:237,attack_nam:237,attack_skil:269,attack_typ:238,attack_valu:[234,235,236,237,238],attempt:[7,12,20,27,33,64,66,68,83,97,126,136,147,168,171,202,225,227,234,235,236,237,238,281,284,289,322,327,335,361,386],attent:[34,72,74,88,90,147],attitud:89,attr1:[171,218],attr2:[171,218],attr3:171,attr:[13,27,31,42,46,68,71,90,101,171,178,195,250,258,268,269,323,333,335,351,357],attr_categori:332,attr_eq:258,attr_g:[31,258],attr_gt:[31,258],attr_kei:332,attr_l:[31,258],attr_lockstr:332,attr_lt:[31,258],attr_n:[31,258],attr_nam:171,attr_obj:[333,335],attr_object:335,attr_typ:332,attr_valu:332,attract:73,attrcreat:[31,333],attread:13,attredit:[13,31,333],attrib:259,attribiut:333,attribut:[3,8,12,19,24,26,27,30,31,32,33,34,37,40,42,43,44,45,49,58,60,66,68,70,71,81,82,84,85,86,88,89,90,92,94,95,96,97,99,101,106,111,113,114,115,116,130,131,153,154,156,157,160,165,171,180,181,185,187,192,195,196,202,209,210,217,218,221,228,231,234,235,236,237,238,244,248,249,250,258,261,263,264,267,268,269,271,273,274,289,323,331,332,334,335,336,341,342,343,354,355,358,361,367,369,370,381,386,388],attribute1:116,attribute2:116,attribute_list:333,attribute_nam:[113,156,221,264,358],attributeerror:[3,58,104,113,323,333],attributeform:332,attributeformset:332,attributehandl:[45,333,356,361,367],attributeinlin:[157,185,261,271,332],attributeobject:13,attributeseri:367,attrkei:269,attrlist:333,attrnam:[13,27,31,42,45,171,231,258,335],attrread:[13,31,333],attrtyp:[13,333,334],attrvalu:27,attryp:334,atttribut:71,atyp:259,audibl:220,audio:46,audit:[153,187,190,222,264],audit_callback:224,auditedserversess:[224,225],auditingtest:226,aug:67,august:[67,361],aut:28,auth:[156,157,160,304,373,381,386],auth_password:304,auth_profile_modul:160,authent:[40,41,53,130,147,156,295,302,304,307,313,323,325,373,386],authenticated_respons:384,author:[86,128,144,156,207,210],auto:[3,4,11,15,20,21,22,23,27,34,40,49,66,74,80,102,109,112,130,138,141,153,156,160,162,166,170,171,178,181,182,220,221,231,245,253,256,259,264,269,273,276,278,281,284,295,305,312,313,322,325,335,340,346,347,373],auto_create_bucket:192,auto_help:[22,27,29,86,87,92,166,182,203,266,345,346],auto_id:[157,254,261,381],auto_look:[27,203,266,345],auto_now_add:58,auto_quit:[27,203,266,345],auto_transl:220,autobahn:[295,301,312],autodoc:74,autofield:130,autologin:373,autom:[2,15,58,89,90,133,146,147,151,386],automat:[6,9,11,15,19,20,23,26,27,29,31,32,37,39,40,42,45,46,48,51,54,58,64,65,66,68,70,72,73,74,76,77,84,86,90,91,94,96,98,101,103,104,105,106,107,108,111,113,115,116,118,124,125,127,128,135,139,141,142,144,146,156,164,165,166,171,176,177,179,186,192,194,195,196,197,209,210,211,215,216,218,219,220,221,229,238,244,245,251,259,263,264,275,276,277,278,289,298,301,304,309,322,325,339,343,345,346,347,361,369,370,374],automatical:278,autostart:[275,341],autumn:[6,202],avail:[0,2,3,7,8,9,11,13,14,20,22,24,27,30,31,34,37,39,40,42,45,46,48,50,53,55,59,60,61,62,66,68,70,71,72,74,75,77,80,81,85,86,87,89,90,91,94,95,96,97,98,99,100,103,104,105,106,107,108,109,110,112,113,115,116,127,130,131,132,133,134,135,138,139,142,143,144,145,146,151,153,156,162,163,164,165,166,168,171,173,176,177,178,179,180,181,182,183,194,195,196,200,202,204,210,214,217,219,220,221,229,231,232,234,235,236,237,238,241,249,250,258,259,264,267,268,269,273,289,313,316,327,338,339,340,345,346,347,353,361,386],avail_cmdset:171,available_choic:[27,345],available_func:353,available_funct:268,available_languag:220,available_weapon:249,avatar:[59,77,103,104,106,264,304],avatarid:304,avenew:86,avenu:197,averag:[5,14,144,181,210,220,251],avoid:[0,3,6,8,11,13,19,20,22,27,31,42,45,53,62,63,72,73,74,94,96,104,106,107,110,112,113,128,134,135,146,164,171,219,220,251,252,258,263,289,293,303,313,323,333,335,338,339,340,343,346,351,367],awai:[0,3,11,13,15,16,27,29,31,37,40,42,48,54,58,66,67,70,71,72,76,80,83,92,104,107,109,111,113,114,116,127,144,177,197,232,235,238,241,244,248,250,252,264,273,324,338,361],await:48,awar:[0,13,15,20,22,27,45,59,87,111,119,128,129,130,151,192,204,219,221,248,251,252,264,335,338],award:112,awesom:[64,106,138],awesome_func:107,aws:144,aws_access_key_id:192,aws_s3_access_key_id:192,aws_s3_cdn:[153,190,191],aws_s3_object_paramet:192,aws_s3_secret_access_kei:192,aws_secret_access_kei:192,aws_security_token:192,aws_session_token:192,awsstorag:[153,154,190],axe:112,axhear:258,axi:215,azur:146,b64decod:357,b64encod:357,b_offer:194,baaaad:8,back:[0,2,6,7,11,13,14,15,19,20,22,23,26,27,30,33,37,40,45,46,48,49,56,58,61,64,66,68,70,71,72,74,77,80,83,88,90,92,94,96,97,99,101,103,104,105,106,107,108,109,110,111,112,114,115,116,117,119,120,125,127,128,130,135,138,144,146,151,153,156,165,168,171,176,180,194,195,221,227,231,232,237,241,243,266,276,284,289,293,296,302,304,307,322,335,342,345,346,354,361],back_exit:66,backbon:[130,339],backend:[2,8,42,64,135,153,192,333,361,363,365,370,372],backend_class:333,background:[17,27,48,62,83,106,128,130,144,147,151,198,205,338,353,386],backpack:20,backslash:62,backtick:[11,74],backtrack:11,backup:[11,34,40,48,103,144,180,339],backward:[26,27,90,127,354],bad:[8,55,66,68,73,77,86,90,96,106,108,112,136,225,286],bad_back:259,baddi:109,badg:10,badli:231,bag:[98,361],baker:112,balanc:[83,88,110,112,115,133,347],ball:[20,39,163,164,269],ballon:218,balloon:218,ban:[31,52,81,98,112,156,169,259,388],band:[46,59,304,307,308],bandit:70,bandwidth:[192,297],banid:169,bank:110,bar:[27,32,43,46,56,59,64,95,98,103,108,111,205,221,232,308,345,361],bare:[22,39,76,90,105,111,114,205,235],barehandattack:88,bargain:58,barkeep:[3,221],barrel:109,barstool:113,barter:[37,110,124,138,153,154,190],bartl:133,base:[2,3,8,14,17,22,23,27,31,34,37,40,44,45,46,50,56,58,60,61,63,67,68,71,72,74,75,76,77,79,80,84,85,86,88,89,90,92,93,96,99,101,103,104,107,108,109,110,111,114,116,117,118,119,126,128,130,131,133,135,138,142,143,144,146,147,149,153,156,157,158,159,160,162,164,165,166,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,185,186,187,188,189,192,193,194,195,196,197,199,200,201,202,203,204,207,208,210,211,212,213,214,215,216,217,218,219,220,221,225,226,227,228,229,230,231,232,234,235,236,237,238,240,241,243,244,245,246,248,249,250,251,252,254,255,256,259,261,262,263,264,266,268,269,271,272,273,274,275,276,277,278,280,281,282,284,286,287,290,291,293,294,295,296,297,298,299,300,301,302,303,304,305,306,307,308,309,310,311,312,313,315,316,317,320,322,323,324,325,327,328,329,332,333,334,335,336,338,339,340,343,344,345,346,347,348,350,351,352,353,354,355,356,357,358,359,360,361,365,366,367,368,369,370,373,375,376,381,384,386,387,388],base_account_typeclass:[12,153],base_channel_typeclass:153,base_char_typeclass:126,base_character_typeclass:[94,126,130,131,153,156,171],base_exit_typeclass:153,base_field:[157,254,261,332,381],base_filt:365,base_guest_typeclass:[54,153],base_object_typeclass:[42,100,104,153,269,335],base_random:267,base_room_typeclass:153,base_script_path:258,base_script_typeclass:[37,153],base_set:67,baseclass:249,basecommand:98,basecontain:340,baseinlineformset:332,baseline_index:361,basenam:370,baseobject:45,baseopt:355,basepath:361,basepermiss:366,basetyp:[264,339],basetype_posthook_setup:264,basetype_setup:[31,85,156,158,187,264],basetypeclassfilterset:365,bash:[2,138],basi:[22,73,79,91,103,118,144,179,189,192,221,258,313,335,344],basic:[0,2,9,12,16,17,20,22,23,31,33,46,50,51,53,56,58,61,64,66,67,68,70,72,83,85,88,89,90,91,92,93,94,98,99,103,104,105,106,107,109,110,111,112,113,114,115,117,119,124,125,127,128,130,131,133,151,156,158,171,176,178,187,189,203,209,215,218,235,237,249,258,260,264,315,359,363,370,381,386,388],bat:[67,138],batch:[24,72,103,133,138,153,154,170,269,293,333,336,337,388],batch_add:[269,333,336],batch_cmd:15,batch_cod:[14,339],batch_code_insert:14,batch_create_object:269,batch_exampl:339,batch_import_path:[14,15],batch_insert_fil:15,batch_update_objects_with_prototyp:269,batchcmd:[110,112,170],batchcmdfil:[15,339],batchcod:[15,72,98,112,122,133,170],batchcode_map:72,batchcode_world:72,batchcodefil:14,batchcodeprocessor:339,batchcommand:[15,68,98,109,122,138,170,339],batchcommandprocessor:339,batchfil:[15,16,72,339],batchprocess:[153,161,167],batchprocessor:[14,153,154,170,337],batchscript:[14,339],batteri:156,battl:[109,115,133,147,234,235,236,237,238],battlecmdset:[234,235,236,237,238],baz:232,bazaar:60,beach:72,bear:[219,248],beat:[110,112,115],beaten:[115,250],beauti:[68,71,130],beazlei:133,becam:[83,128],becasu:4,becaus:[2,3,12,13,14,16,20,29,31,34,41,42,44,45,48,49,50,53,55,60,66,67,68,70,72,74,77,80,81,83,86,87,88,97,98,101,104,105,106,107,111,113,114,115,118,124,128,130,131,134,137,157,165,183,187,201,209,212,220,237,241,252,264,276,296,302,315,325,332,338,355,357,370],becom:[3,9,27,31,33,37,39,42,48,58,59,66,68,71,72,73,74,77,78,86,88,94,98,102,103,104,105,106,110,112,113,114,132,168,204,218,220,232,235,269,323,339,345],been:[2,3,5,9,11,14,15,27,40,46,51,55,64,66,68,70,71,74,79,80,86,90,92,96,97,101,106,108,115,116,124,128,130,131,133,135,147,152,164,165,170,171,179,180,187,195,210,212,215,218,219,221,234,235,236,237,238,250,252,256,259,263,264,269,278,286,298,302,304,312,322,323,324,325,327,332,333,335,339,343,344,361,386,387],befit:45,befor:[1,3,5,6,7,8,10,11,13,14,15,16,19,20,22,27,31,32,37,39,41,42,43,44,45,46,48,49,57,58,60,61,62,64,68,70,71,72,73,79,80,81,82,83,86,88,89,90,92,94,96,97,98,99,101,104,105,106,107,110,112,113,115,116,119,124,125,127,128,129,130,131,133,141,143,144,146,147,156,162,163,166,171,176,179,183,187,193,199,201,202,203,204,205,209,212,213,216,220,221,224,225,230,231,232,234,235,236,237,238,244,245,249,252,258,259,263,264,267,269,276,277,278,284,293,302,304,310,318,320,322,323,327,329,333,338,339,340,341,345,346,347,348,352,354,357,361,386],beforehand:[11,13,340],beg:15,beggar:66,begin:[0,3,7,8,14,15,22,26,31,41,48,66,68,70,72,74,76,79,81,86,90,92,97,99,101,106,110,115,124,129,131,142,177,209,212,221,232,234,235,236,237,238,264,276,338,339,358],beginn:[76,93,97,104,110,119,133],behav:[8,13,14,41,68,83,92,97,99,105,106,107,151,268,361],behavior:[5,13,20,22,26,29,37,42,46,62,64,66,86,92,103,128,156,166,182,197,203,236,238,250,251,284,332],behaviour:[13,20,22,31,128,215,330,341,347,361],behind:[6,11,13,22,30,42,43,49,62,71,74,76,80,107,109,128,138,170,219,250,273,278,351],being:[2,3,5,8,11,13,14,20,22,23,27,37,41,42,44,45,48,56,59,63,66,68,72,73,77,80,81,82,88,92,97,100,102,103,104,106,109,111,112,125,128,130,137,138,144,147,156,163,171,177,181,187,192,199,200,204,214,220,221,231,234,235,236,237,238,243,244,245,250,256,264,286,289,296,325,327,332,333,335,338,339,341,345,346,347,361,365,367],beipmu:136,belong:[15,43,56,65,77,79,101,106,130,147,165,221,232,252,256,267],belov:112,below:[2,3,7,8,11,13,14,15,16,19,20,22,23,26,27,30,31,33,37,40,42,45,48,49,51,59,62,65,66,67,68,71,72,74,77,81,83,85,89,90,91,92,94,105,106,107,110,113,114,116,118,124,125,130,131,134,135,138,144,146,151,160,171,179,180,189,195,197,200,205,212,215,220,221,231,232,234,235,236,237,238,246,251,256,258,263,264,273,296,316,333,335,336,347,352,353,369],beneath:19,benefici:[71,236],benefit:[8,60,111,132,144,146,147,165,333,339],besid:[7,15,20,66,72,105,205],best:[0,26,37,39,55,60,64,67,68,73,89,90,100,103,110,130,136,142,147,178,195,220,232,251,269,284,304,347,355,387],bet:[20,40,335],beta:[25,137,144],betray:27,better:[3,5,16,23,27,29,42,43,58,60,62,66,67,76,77,78,81,86,87,90,94,96,97,103,104,110,113,114,130,131,135,196,228,235,241,250,264,269,301,304,307,315,333,339],bettween:114,between:[2,11,12,15,20,22,33,37,40,42,43,46,48,53,55,59,61,62,65,66,68,70,71,74,77,81,82,85,86,88,89,90,92,96,97,98,103,104,106,107,109,111,112,114,115,116,126,127,128,144,146,163,166,171,178,181,182,189,194,197,198,209,210,212,213,214,215,217,219,220,221,230,231,232,234,235,236,237,238,264,269,278,284,293,296,303,304,307,308,315,316,323,336,338,339,341,345,347,348,353,361,375],bew:202,bewar:85,beyond:[8,12,22,28,34,59,67,68,73,77,81,89,112,131,144,166,171,182,189,195,221,232,268,333,335,345,347],bg_colormap:360,bgcolor:360,bgfgstart:360,bgfgstop:360,bgstart:360,bgstop:360,bias:171,bidirect:293,big:[13,14,15,22,31,65,67,73,82,83,89,98,99,107,109,112,114,163,180,230,231,339,346,358,361],bigger:[46,53,73,80,92,101,116,231],biggest:[142,231,361],biggui:22,bigmech:80,bigsw:83,bikesh:101,bill:[144,147],bin:[2,67,77,79,102,138,143,146],binari:[5,135,138,295,297,312],bind:140,birth:381,bit:[0,3,7,8,11,17,25,37,42,46,49,55,66,67,68,70,79,83,85,86,91,92,94,98,101,102,103,106,107,110,112,113,119,127,131,138,143,183,201,259,264,339],bitbucket:89,bite:[72,110],bitten:101,black:[62,107,114,128],blackbird:133,blacklist:147,blade:[112,249],blank:[27,58,124,131,156,203,338],blankmsg:203,blargh:42,blatant:49,blaufeuer:101,bleed:[11,62,103,231,347],blend:218,blender:218,blind:[62,125,241,245],blindcmdset:241,blindedst:245,blindli:259,blink:[99,244,245,360],blink_button:370,blinkbuttonev:[245,370],blist:6,blob:[70,74,86],block:[6,24,26,27,31,37,49,62,63,76,77,81,82,90,92,97,98,106,116,117,119,130,131,144,147,151,169,170,171,202,238,248,249,252,266,303,339,345,353,361,386,387],blocking_cmdset:81,blockingcmdset:81,blockingroom:81,blocktitl:92,blog:[73,76,78,119,133,144,145],blond:111,blowtorch:136,blue:[14,62,89,94,105,106,112,128,249],blueprint:[46,72,89],blurb:137,board:[23,31,71,110,127,133],boat:[20,127,165],bob:[22,94,169],bodi:[8,17,19,22,27,42,63,68,70,74,86,90,106,111,117,130,187,208,214,286,341,361],bodyfunct:[37,99,153,190,239,246],bog:[80,110],boi:43,boiler:45,bold:137,bolt:269,bone:[76,111,114],bonu:[86,114,144,235,236,273],bonus:[83,112,235],book:[42,64,71,91,97,108,112,114,117,133],bool:[12,20,22,23,27,30,32,37,156,157,158,160,162,163,164,165,166,171,185,187,188,189,194,195,197,199,200,203,205,207,210,212,215,219,220,221,231,232,234,235,236,237,238,244,252,255,259,261,263,264,267,268,269,271,273,274,275,276,277,278,284,289,290,295,296,301,302,303,307,312,313,321,323,325,327,333,334,335,336,338,339,341,343,345,346,347,348,351,353,356,358,360,361,366],booleanfield:[130,157,254],booleanfilt:365,boom:[80,104],boot:[31,98,104,146,151,169,278],bootstrap:[24,52,79,388],border:[72,90,95,168,203,344,346,347],border_bottom:347,border_bottom_char:347,border_char:347,border_left:347,border_left_char:347,border_right:347,border_right_char:347,border_top:347,border_top_char:347,border_width:347,borderless:90,borderstyl:203,bore:[49,76,110,111,147],borrow:[20,138,164,293],bort:28,boss:90,bot:[5,102,130,139,142,147,153,154,155,160,176,187,289,295,296,303,325,386],bot_data_in:[158,289],both:[0,2,6,7,8,9,11,13,16,19,20,22,23,30,32,33,39,40,45,51,53,58,59,66,68,71,72,73,74,81,87,88,89,90,91,92,96,97,101,103,105,106,107,111,112,113,115,118,127,130,131,133,135,139,141,144,147,151,162,164,171,176,181,189,194,198,205,212,214,215,216,218,227,231,232,237,238,250,259,264,268,269,270,273,276,278,293,302,312,313,322,324,327,333,334,338,341,345,347,356,361,367,370],bother:[9,83,147,186,333],botnam:[142,176,296,325],botnet:147,boto3:192,boto:192,botstart:158,bottom:[7,8,28,45,46,72,79,85,86,89,90,92,96,98,106,113,130,137,165,192,214,237,252,269,339,346,347],bought:96,bouncer:[19,147,344],bound:[19,60,74,89,103,104,207,231,361],boundari:[230,231,361],bounti:78,bow:[112,269],box:[3,7,31,33,39,42,54,64,66,70,72,90,92,99,101,104,105,106,107,111,114,116,117,119,134,138,141,144,171,221,258,293,339,381],brace:[66,68,81,86,97,212,264,338],bracket:[63,74,181,198],branch:[2,67,73,74,86,98,138,146,219,232,387],branchnam:11,brandymail:214,bread:50,breadth:238,break_lamp:244,break_long_word:347,break_on_hyphen:347,breakag:112,breakdown:181,breakpoint:[7,50,153],breath:[104,107],breez:[37,129],breviti:[90,106],bribe:27,brick:95,bridg:[40,56,68,75,78,109,133,135,250],bridgecmdset:250,bridgeroom:250,brief:[11,50,51,58,70,80,81,90,96,99,102,117,119,151,203,251,264,328],briefer:[34,151],briefli:[50,104,112,144,151],bright:[62,94,106,128,198,338],brightbg_sub:338,brighten:62,brighter:62,brilliant:11,bring:[71,111,116,118,123,127,130,135,146,147,232,238,241,248,326],broad:85,broadcast:[176,293],broader:[85,221,264],broken:[60,62,74,110,220,244,245,353],brought:37,brows:[7,11,46,67,76,81,85,90,91,92,96,97,102,116,117,118,144,147,386],browser:[46,50,64,67,74,76,77,78,92,102,103,117,118,119,130,131,134,138,143,144,147,150,312,313,386],brunt:112,brutal:251,bsd:132,btest:62,btn:17,bucket:[192,193,224],bucket_acl:192,bucket_nam:192,buf:[111,343],buff:111,buffer:[22,26,46,68,180,192,193,286,313,343],buffer_s:192,bug:[0,3,8,11,14,48,73,78,89,106,110,112,116,132,137,151,245,264,335],buggi:[13,345],bui:[96,112,194],build:[2,7,10,13,14,15,16,19,20,24,27,29,31,33,34,40,42,43,45,46,48,58,60,61,63,65,67,69,76,77,89,92,93,94,98,100,101,103,104,105,106,109,111,113,116,118,119,120,121,123,126,133,138,143,146,153,161,163,167,169,170,177,178,187,195,202,208,215,220,221,227,248,251,259,264,268,269,284,295,296,339,347,381,387,388],build_exit:215,build_forest:215,build_map:215,build_match:163,build_mountain:215,build_templ:215,builder:[12,15,29,31,42,43,51,60,62,68,79,81,88,90,96,100,104,110,113,116,169,171,177,181,195,197,202,203,215,218,221,227,250,251,252,259,264,267,315,335,339,366],buildier:269,building_menu:[153,154,190],buildingmenu:[68,195],buildingmenucmdset:195,buildmap:215,buildprotocol:[281,294,295,296],buildshop:96,built:[14,19,24,27,50,53,64,74,76,77,89,90,103,106,110,111,114,116,127,137,138,143,146,147,160,189,218,220,256,263,273,278,333,335,336,339,343,345,352],builtin:297,bulk:147,bullet:[74,110],bulletin:[31,110,133],bulletpoint:74,bunch:[16,19,60,61,90,101,105,107,111,113],burden:95,buri:[60,109],burn:[109,110,114,144,249],busi:[77,78,111,144,194],butter:50,button:[7,11,14,15,20,22,31,33,46,56,59,64,67,103,105,106,130,131,171,241,244,245,249,316,370],button_expos:249,buy_ware_result:96,byngyri:220,bypass:[4,31,48,51,79,90,99,104,109,113,115,128,156,171,187,227,258,259,335,341,358,373],bypass_superus:31,bytecod:338,bytestr:[293,361],bytestream:361,c_creates_button:316,c_creates_obj:316,c_dig:316,c_examin:316,c_help:316,c_idl:316,c_login:316,c_login_nodig:316,c_logout:316,c_look:316,c_move:316,c_moves_:316,c_moves_n:316,c_social:316,cabinet:36,cabl:95,cach:[8,13,22,45,46,49,58,82,85,104,134,156,166,181,186,187,192,202,230,248,249,259,263,264,288,332,333,335,336,337,349,351,361],cache_inst:351,cache_lock_bypass:259,cache_s:[327,351],cached_properti:361,cactu:237,cake:20,calcul:[19,48,81,85,101,114,115,116,165,199,202,213,220,230,231,234,235,237,238,269,346,348,351,361,386],calculated_node_to_go_to:27,calculu:88,calendar:[199,213,348],call:[0,2,3,5,8,9,11,12,13,14,15,19,20,26,27,30,31,32,34,37,39,40,41,42,44,45,46,48,50,53,56,58,59,60,62,64,66,68,70,71,72,74,76,77,79,80,81,82,83,84,85,86,88,89,90,91,92,94,96,97,98,99,100,101,102,103,105,106,107,108,110,113,114,115,116,117,124,125,126,127,128,129,130,131,135,138,139,141,142,143,144,146,150,151,156,158,162,163,164,165,166,168,171,176,179,180,181,182,183,186,187,194,195,197,199,200,201,202,203,204,207,208,209,210,211,212,213,215,216,218,219,220,221,227,229,231,232,234,235,236,237,238,240,241,243,244,245,248,249,250,251,252,258,259,263,264,267,268,269,274,275,276,277,278,281,284,286,288,289,293,294,295,296,297,298,299,300,302,303,304,305,306,307,308,309,311,312,313,315,316,317,322,323,324,325,326,329,332,333,335,336,338,339,340,341,343,345,347,348,351,353,354,356,357,358,361,366,370,381,386],call_async:48,call_command:8,call_ev:[66,209],call_inputfunc:[56,323,325],callabl:[26,27,32,42,44,71,116,195,203,210,232,236,264,267,268,269,274,278,282,284,286,294,340,343,345,346,354,356,357,361],callables_from_modul:361,callbac:68,callback1:345,callback:[19,22,26,27,30,32,44,48,68,79,83,91,158,195,199,203,207,208,209,210,211,212,213,225,232,264,274,276,277,278,282,284,286,289,293,294,295,297,311,312,315,326,345,348,354,359,361,388],callback_nam:[207,210],callbackhandl:[153,190,206,212],called_bi:162,calledbi:361,caller:[3,13,14,19,22,26,31,33,34,44,45,48,56,58,59,63,68,71,72,74,80,81,82,83,84,86,87,88,90,94,95,96,97,98,104,105,108,113,114,115,116,127,141,158,162,163,164,166,168,171,172,176,177,178,179,180,181,182,186,195,203,208,214,215,216,218,221,229,232,249,250,251,252,259,264,266,268,339,343,345,346,353,355,361],callerdepth:361,callertyp:162,callinthread:329,calllback:209,callsign:[27,289],calm:72,came:[67,72,76,80,81,98,106,129,133,212,248,252,264],camp:72,campfir:72,campsit:72,can:[0,2,3,4,5,6,7,8,9,10,11,12,14,15,16,17,19,20,22,23,25,26,27,29,30,31,32,33,34,36,37,39,40,41,42,43,44,45,46,48,49,51,53,54,55,56,58,59,60,61,62,64,65,66,67,70,71,72,73,74,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,94,95,96,97,98,99,100,101,102,103,104,105,106,109,110,111,113,114,115,116,117,118,119,123,124,125,126,127,128,130,131,132,133,135,136,137,138,139,141,142,143,144,145,146,147,150,151,155,156,158,160,163,164,165,166,168,169,171,176,177,178,179,180,181,182,186,187,188,189,192,193,194,195,197,198,199,200,202,203,204,205,209,210,212,213,214,215,218,219,220,221,224,227,231,232,234,235,236,237,238,241,243,244,245,248,249,250,251,252,256,258,259,263,264,267,268,269,270,273,274,275,276,278,284,295,299,302,304,307,308,312,313,315,316,322,323,324,325,326,329,330,331,333,334,335,336,338,339,340,341,343,344,345,346,347,353,355,356,357,358,359,361,362,366,367,370,381,386],can_:209,cancel:[19,30,83,113,209,212,234,235,236,237,238,264],candid:[22,68,108,113,130,163,218,221,264,358],candl:165,cannon:101,cannot:[4,8,9,13,14,15,19,20,22,26,27,31,39,42,43,48,51,55,62,67,68,70,78,80,81,82,83,85,87,88,92,96,103,104,105,108,109,110,114,116,130,138,144,156,158,168,171,187,195,202,203,207,210,212,227,232,238,245,248,249,255,258,259,264,278,333,340,342,344,347,351,361],cantanker:355,cantclear:203,cantillon:133,cantmov:81,canva:71,capabl:[2,31,40,56,59,71,77,90,110,168,229,289,311,381],cape:89,capfirst:92,capit:[49,59,67,77,81,83,106,107,112,116,171,204,219,220,231,338],captcha:130,caption:74,captur:[81,97,354,386],car:[33,127],card:147,cardin:[71,87,90,171],care:[22,27,48,49,58,66,71,74,77,79,87,88,89,91,97,104,106,112,115,127,128,129,132,135,151,156,164,187,202,218,221,248,258,264,267,335,339,343,345,346,347,361],carefulli:[5,40,72,76,130],carri:[20,31,95,96,99,103,110,113,115,124,189,197,235,248,258,323,334],cascad:351,caseinsensitivemodelbackend:373,cast:[42,43,82,107,232,237],caster:[82,237],castl:[14,72,100,109,202,250],cat:143,catchi:79,categor:43,categori:[2,8,13,22,27,29,42,43,58,65,74,85,92,98,101,108,166,167,168,169,170,171,176,177,178,179,180,181,182,183,186,194,195,196,197,200,201,202,203,204,208,214,215,216,217,218,221,227,228,229,232,234,235,236,237,238,241,248,249,250,251,255,256,258,264,268,269,333,334,336,341,343,345,346,352,355,358,361,386],categoris:88,category2:352,category2_id:352,category_id:352,category_index:232,cater:83,caught:[3,6,27,113,188],caus:[3,8,13,20,31,46,49,62,65,77,83,84,98,104,115,116,124,144,165,201,241,244,252,264,315,347,361],caution:[46,91,345],cave:70,caveat:[48,113,192],caveman:88,cblue:11,cboot:[49,98,176],cc1:138,cccacccc:344,ccccc2ccccc:90,cccccccc:344,ccccccccccc:90,cccccccccccccccccbccccccccccccccccc:344,ccccccccccccccccccccccccccccccccccc:344,ccreat:[86,90,98,139,142,145,176],cdesc:[86,98,176],cdestroi:[98,176],cdmset:20,cdn:147,ceas:171,cel:344,celebr:110,cell:[72,90,92,109,203,344,347],celltext:344,cemit:[98,176],censu:334,center:[42,50,62,71,72,79,85,205,267,338,347,361],center_justifi:[42,267],centos7:140,centr:72,central:[8,30,47,72,77,129,146,156,189,264,269,293,341,351],centre_east:72,centre_north:72,centre_south:72,centre_west:72,centric:[31,40,67,116,221],cert:[134,140,305,309],certain:[6,14,15,20,22,31,37,40,41,44,50,51,59,60,62,73,74,77,81,83,103,111,112,127,143,144,171,188,194,220,224,231,245,249,252,258,276,284,290,307,311,326,332,333,334,343,347,358,361,381],certainli:[16,87],certbot:[144,147],certfil:[305,309],certif:[134,144,305,309],cet:354,cflag:143,cgi:144,cha:[27,90],chain:[27,42,48,66,70,83,101,209,210,316,345,361],chain_1:66,chainedprotocol:304,chainsol:101,chair:[14,34,43,45,97,110],challeng:[93,107,109,114,133],chanalia:176,chanc:[11,20,44,54,68,80,82,104,109,110,114,115,137,164,234,235,236,237,238,241,249,250,316],chance_of_act:316,chance_of_login:316,chandler:115,chang:[0,2,3,8,10,12,13,14,15,16,20,22,23,25,26,27,29,30,31,32,33,34,37,39,40,41,42,43,44,45,46,49,50,51,52,54,56,58,62,64,67,68,71,72,73,75,77,79,80,83,84,85,86,89,91,94,96,97,98,99,101,103,105,106,107,110,111,113,114,115,116,117,119,125,127,128,129,130,131,132,134,135,137,138,141,143,144,146,149,151,156,157,165,166,168,169,171,176,177,182,185,187,194,195,197,201,202,204,205,207,210,212,216,217,220,221,227,228,230,231,232,234,235,236,237,238,248,249,250,251,252,256,261,264,269,271,273,274,276,278,284,289,300,315,322,323,330,332,333,335,339,342,343,346,347,354,355,356,357,370,386,387],change_name_color:232,changeabl:55,changelog:102,changepag:131,chanlist:176,channam:86,channel:[12,13,19,20,22,24,31,33,41,43,45,49,51,58,75,76,78,93,95,98,103,104,108,110,116,133,139,141,142,144,145,149,156,158,162,164,165,171,176,180,184,185,186,187,188,189,210,288,295,296,303,316,323,325,333,341,354,358,384,386,388],channel_:23,channel_ban:[86,176],channel_color:81,channel_command_class:[23,86],channel_connectinfo:323,channel_detail:386,channel_handl:[153,186],channel_list:386,channel_prefix:[81,187],channel_search:188,channel_set:189,channel_typeclass:384,channeladmin:185,channelam:186,channelattributeinlin:185,channelcmdset:[20,98],channelcommand:[23,86,186],channelconnect:189,channelcr:176,channelcreateview:187,channeldb:[45,75,86,153,185,187,189,331],channeldb_db_attribut:185,channeldb_db_tag:185,channeldb_set:[333,336],channeldbmanag:[188,189],channeldeleteview:187,channeldesc:[86,186],channeldetailtest:384,channeldetailview:[187,386],channelhandl:[23,86,153,154,162,184,187],channelkei:[86,186,188],channellist:176,channellisttest:384,channellistview:386,channelmanag:[187,188],channelmixin:386,channelnam:[23,86,142,158,186,295],channeltaginlin:185,channelupdateview:187,char1:[8,114,177,384],char2:[8,114,177,384],char_health:250,char_nam:130,charac:32,charact:[2,3,6,8,12,13,15,16,17,19,20,22,23,26,27,29,30,31,33,37,40,45,51,53,55,58,59,61,62,63,64,66,67,68,71,72,75,76,80,82,83,84,85,86,88,89,91,92,93,94,96,97,98,99,100,101,102,103,105,106,107,108,115,118,119,124,125,126,127,135,141,153,155,156,163,164,166,168,171,172,173,177,178,179,186,187,195,196,197,202,203,204,205,207,209,210,212,214,215,217,219,220,221,224,229,231,232,234,235,236,237,238,240,248,249,250,252,256,259,264,276,289,310,323,328,333,335,338,339,344,345,347,353,359,361,362,365,370,381,384,386,388],character1:114,character2:114,character_cmdset:202,character_form:386,character_id:264,character_list:386,character_manage_list:386,character_typeclass:[8,156,359,384],charactercmdset:[20,68,80,81,84,86,87,89,90,91,94,104,105,113,116,173,195,197,202,214,217,227,234,235,236,237,238,250],charactercreateview:[384,386],characterdeleteview:[384,386],characterdetailview:386,characterform:[381,386],characterlistview:[384,386],charactermanageview:[384,386],charactermixin:386,characternam:62,characterpuppetview:[384,386],charactersheet:27,characterupdateform:[381,386],characterupdateview:[384,386],characterviewset:370,charapp:130,charat:203,charcreat:[66,70,92,98,168,196],chardata:90,chardelet:[98,168],chardeleteview:[256,335],chardetailview:[256,335],charfield:[58,130,157,254,261,332,357,381],charfilt:365,charg:144,chargen:[130,153,154,187,190,256,335],chargencmdset:116,chargenroom:116,chargenview:[256,335],charnam:[90,168],charpuppetview:335,charset:361,charsheet:90,charsheetform:90,charupdateview:[256,335],chase:109,chat:[0,11,12,23,31,67,73,76,78,90,110,112,116,133,138,139,142,145,149,313,354],chatroom:89,chatzilla:142,cheap:11,cheaper:44,cheapest:144,cheapli:250,cheat:[74,114,135],check:[0,2,3,6,7,8,9,10,11,14,15,19,20,22,27,29,33,34,37,42,43,44,45,46,49,51,53,58,62,66,68,70,71,72,73,74,78,79,81,82,83,85,86,87,88,90,92,94,95,96,97,103,104,105,112,113,114,115,116,118,119,124,125,127,130,137,138,139,141,144,145,146,147,150,151,156,157,162,163,164,165,166,168,170,171,177,178,179,181,183,187,189,192,194,196,197,201,202,203,210,214,231,234,235,236,237,238,240,241,245,248,250,251,252,258,259,263,264,268,269,273,275,276,283,284,288,293,299,304,308,323,325,327,328,329,332,333,335,336,338,339,341,355,356,361,362,366,386],check_attr:171,check_circular:313,check_databas:284,check_db:284,check_defeat:114,check_end_turn:115,check_error:283,check_evennia_depend:361,check_from_attr:171,check_grid:71,check_has_attr:171,check_light_st:250,check_loc:192,check_lock:366,check_lockstr:[31,79,259],check_main_evennia_depend:284,check_obj:171,check_permiss:268,check_permstr:[156,335],check_show_help:178,check_to_attr:171,check_warn:283,checkbox:130,checker:[16,71,258,304,362],checklockstr:98,checkout:[11,67,146],checkoutdir:2,chest:[31,97,107,108],child:[22,27,31,77,98,104,105,107,113,115,158,160,166,171,182,250,263,269,273,329,352,367],childhood:27,children:[22,43,45,77,80,101,124,160,263,264,273,284,334,352],chillout:171,chime:19,chines:[61,81,133],chip:90,chmod:2,choci:195,choic:[8,16,22,27,40,41,42,61,63,76,79,97,105,106,107,113,115,119,129,132,135,144,156,168,171,194,195,203,234,251,267,282,343,345],choice1:63,choice2:63,choice3:63,choos:[7,14,27,48,64,65,67,71,74,77,89,91,96,101,111,112,114,115,116,126,128,130,142,229,232,234,235,236,237,238,241,248,297,345,360,388],chop:[22,249],chore:[29,110],chose:[58,90,106,130,137,147,150,232],chosen:[7,27,59,68,115,129,203,205,345],chown:146,chractercmdset:250,chrome:136,chronicl:203,chroot:140,chug:22,chunk:[14,72,92,192,286,339,353],church:[19,111],church_clock:19,churn:113,cid:316,cillum:28,circl:85,circuit:46,circular:[286,340],circumst:[27,70,89,96,103,105,106,113,164,237,381],circumv:169,citi:112,clang:143,clank:66,clarifi:81,clariti:[58,97,107,116,143],clash:[20,119,135,144,171,186,335],class_from_modul:361,classic:[14,40,43,44,104,112,115,117,133],classmethod:[85,156,187,256,264,276,335,351,375],classnam:[13,107],classobj:335,claus:[125,132],clean:[11,17,27,55,62,72,79,81,82,104,105,109,113,115,151,157,164,166,171,187,194,221,234,235,236,237,238,245,249,250,252,264,273,284,288,302,312,325,332,335,338,343,345,351,357,360,361,381],clean_attr_valu:332,clean_attribut:[45,156,335],clean_cmdset:[45,335],clean_senddata:325,clean_str:338,clean_usernam:157,cleaned_data:130,cleaner:[97,107,116],cleanli:[37,40,77,151,162,166,176,186,203,286,295,301,312,325,343],cleanup:[8,13,22,26,27,37,53,68,157,181,194,250,345],clear:[9,11,13,16,22,26,39,43,44,45,46,49,53,61,63,68,72,73,74,77,78,79,83,92,94,110,113,114,129,151,165,168,169,171,177,186,203,219,221,230,231,245,250,259,263,264,274,278,286,323,333,335,336,345,351],clear_attribut:333,clear_client_list:320,clear_cont:[34,264],clear_exit:[34,264],clearal:[63,177],clearli:[9,49,73,104,245,351],cleartext:[225,341],clemesha:329,clever:[20,27,48,259],cleverli:40,click:[2,7,9,11,46,62,64,74,92,102,130,144,345],clickabl:74,client:[2,9,22,26,28,30,32,39,40,41,49,53,60,61,62,67,68,72,74,76,77,81,84,94,97,99,103,104,105,106,112,115,117,118,124,128,133,134,135,137,138,139,140,142,143,146,147,149,150,153,156,158,166,168,181,225,279,281,285,287,289,293,294,295,296,297,298,299,300,302,304,306,307,308,309,311,312,313,315,316,322,323,324,325,342,343,345,360,361,365,367,386,388],client_address:53,client_class:368,client_default_height:28,client_disconnect:313,client_encod:135,client_opt:[289,308],client_secret:139,client_width:[22,166],clientconnectionfail:[281,295,296],clientconnectionlost:[281,295,296],clientfactori:315,clienthelp:46,clientraw:181,clientsess:[312,313],clientwidth:98,cliff:[99,171],climat:43,climb:[5,22,76,171,249],climbabl:249,clist:176,clock:[19,22,49,98,114,176],clone:[9,10,55,74,77,102,138],close:[7,11,15,26,27,40,45,46,53,55,66,68,70,74,77,81,85,86,92,104,106,107,130,144,146,147,151,181,183,192,193,194,195,201,205,227,238,241,244,245,286,294,295,302,304,312,313,325,333,339,345,353],close_lid:244,close_menu:345,closed_lid_script:370,closedlidst:[245,370],closelidev:245,closer:[220,238],closest:[62,85,231,361],cloth:[153,154,190,339],clothedcharact:197,clothedcharactercmdset:197,clothes_list:197,clothing_typ:197,clothing_type_count:197,clothing_type_ord:197,cloud:[37,129,144,146,147,192],cloud_keep:215,cloudi:37,clr:[62,268,353],cls:[85,156,231],clue:249,clump:107,clunki:[11,238],clutter:[74,165],cma:11,cmd:[15,20,22,31,49,59,68,75,81,82,83,86,87,90,91,95,96,98,103,106,113,116,119,127,141,150,164,166,168,169,170,171,176,177,178,179,180,181,182,183,186,194,195,196,197,200,201,202,203,204,208,214,215,216,217,218,221,227,228,229,232,234,235,236,237,238,241,248,249,250,251,253,264,308,312,313,339,343,345,346],cmd_arg:97,cmd_channel:[22,162],cmd_ignore_prefix:163,cmd_kei:97,cmd_last:40,cmd_last_vis:40,cmd_loginstart:22,cmd_multimatch:[22,162],cmd_na_m:59,cmd_name:59,cmd_noinput:[22,162,345],cmd_nomatch:[22,162,250,345],cmd_noperm:22,cmd_on_exit:[27,203,232,266,345],cmd_total:40,cmdabil:8,cmdabout:181,cmdaccept:194,cmdaccess:177,cmdaddcom:176,cmdallcom:176,cmdapproach:238,cmdarmpuzzl:218,cmdasync:48,cmdattack:[83,114,115,116,234,235,236,237,238,249],cmdban:169,cmdbare:98,cmdbatchcod:170,cmdbatchcommand:170,cmdbigsw:83,cmdblindhelp:241,cmdblindlook:241,cmdblock:81,cmdboot:169,cmdbridgehelp:250,cmdbui:96,cmdbuildshop:96,cmdcallback:208,cmdcast:237,cmdcboot:176,cmdcdesc:176,cmdcdestroi:176,cmdcemit:176,cmdchannel:176,cmdchannelcr:176,cmdcharactercr:196,cmdcharcreat:168,cmdchardelet:168,cmdclimb:249,cmdclock:176,cmdcloselid:241,cmdcolortest:168,cmdcombathelp:[234,235,236,237,238],cmdconfigcolor:94,cmdconfirm:22,cmdconnect:86,cmdcopi:171,cmdcover:197,cmdcpattr:171,cmdcraftarmour:83,cmdcreat:171,cmdcreatenpc:116,cmdcreatepuzzlerecip:218,cmdcwho:176,cmddarkhelp:250,cmddarknomatch:250,cmddeclin:194,cmddefend:115,cmddelcom:176,cmddesc:[171,202],cmddestroi:171,cmddiagnos:84,cmddice:[90,200],cmddig:171,cmddisconnect:86,cmddisengag:[115,234,235,236,237,238],cmddoff:235,cmddon:235,cmddrop:[177,197],cmdeast:250,cmdecho:[22,74,83,98,105],cmdedit:195,cmdeditnpc:116,cmdeditorbas:343,cmdeditorgroup:343,cmdeditpuzzl:218,cmdemit:169,cmdemot:221,cmdentertrain:127,cmdevalu:194,cmdevmenunod:345,cmdexamin:171,cmdexiterror:87,cmdexiterroreast:87,cmdexiterrornorth:87,cmdexiterrorsouth:87,cmdexiterrorwest:87,cmdextendedroomdesc:202,cmdextendedroomdetail:202,cmdextendedroomgametim:202,cmdextendedroomlook:202,cmdfeint:115,cmdfight:[234,235,236,237,238],cmdfind:171,cmdfinish:194,cmdforc:169,cmdget:[81,105,177],cmdgetinput:345,cmdgetweapon:249,cmdgive:[177,197],cmdgmsheet:90,cmdhandler:[20,22,34,56,103,153,154,156,161,163,164,165,166,168,179,180,182,186,202,218,263,264,273,361],cmdhelp:[115,178,234,235,236,237,238],cmdhit:[98,105,115],cmdhome:177,cmdic:168,cmdid:289,cmdinsid:127,cmdinterrupt:182,cmdinventori:[95,177,197],cmdirc2chan:176,cmdlaunch:80,cmdlearnspel:237,cmdleavetrain:127,cmdlen:[163,180],cmdlight:249,cmdline:284,cmdlineinput:343,cmdlink:171,cmdlistarmedpuzzl:218,cmdlistcmdset:171,cmdlistpuzzlerecip:218,cmdlock:171,cmdlook:[4,8,84,177,196,202,250],cmdlookbridg:250,cmdlookdark:250,cmdmail:214,cmdmailcharact:214,cmdmakegm:90,cmdmapbuild:215,cmdmask:221,cmdmobonoff:248,cmdmore:346,cmdmorelook:346,cmdmultidesc:[89,217],cmdmvattr:171,cmdmycmd:[29,88],cmdname2:163,cmdname3:163,cmdname:[30,46,53,56,59,98,113,116,162,163,166,171,179,180,182,289,307,308,312,313,325],cmdnamecolor:232,cmdnewpassword:169,cmdnick:177,cmdnoinput:195,cmdnomatch:195,cmdnositstand:113,cmdnpc:116,cmdnudg:241,cmdobj:[162,163,180,182],cmdobj_kei:162,cmdobject:[162,163,181],cmdoffer:194,cmdooc:168,cmdooccharactercr:196,cmdooclook:[168,196],cmdopen:[171,227],cmdopenclosedoor:227,cmdopenlid:241,cmdoption:168,cmdpage:176,cmdparri:115,cmdparser:[39,153,154,161],cmdpass:[234,235,236,237,238],cmdpassword:168,cmdperm:169,cmdplant:251,cmdpose:[115,177,221],cmdpressbutton:249,cmdpush:241,cmdpy:181,cmdquell:168,cmdquit:168,cmdread:249,cmdrecog:221,cmdreload:181,cmdremov:197,cmdreset:181,cmdrest:[234,235,236,237,238],cmdroll:97,cmdrss2chan:176,cmdsai:[115,177,221],cmdsaveyesno:343,cmdscript:[171,181],cmdsdesc:221,cmdser:345,cmdserverload:181,cmdservic:181,cmdsession:168,cmdset:[3,6,12,15,20,22,23,27,29,34,40,53,68,75,80,81,86,87,89,91,92,94,96,102,103,104,113,115,116,127,153,154,156,161,162,163,165,166,171,172,173,174,175,178,179,180,181,182,186,194,195,196,197,200,202,204,208,214,216,218,221,228,229,234,235,236,237,238,241,245,248,249,250,251,258,263,264,273,315,322,323,335,343,345,346],cmdset_account:[12,153,161,167,196],cmdset_charact:[153,161,167,197,234,235,236,237,238],cmdset_mergetyp:[27,203,266,345],cmdset_prior:[27,203,266,345],cmdset_red_button:[153,190,239],cmdset_sess:[40,153,161,167],cmdset_stack:165,cmdset_storag:[160,263,323],cmdset_trad:194,cmdset_unloggedin:[22,153,161,167,201,216],cmdsetattribut:171,cmdsetclimb:249,cmdsetcrumblingwal:249,cmdsetdesc:177,cmdsethandl:[40,153,154,161],cmdsethelp:178,cmdsethom:171,cmdsetkei:20,cmdsetkeystr:164,cmdsetlight:249,cmdsetmor:346,cmdsetobj:[164,165,172,173,174,175,194,195,196,197,200,202,216,218,221,229,234,235,236,237,238,241,248,249,250,343,345,346],cmdsetobjalia:171,cmdsetpow:116,cmdsetread:249,cmdsetsit:113,cmdsetspe:228,cmdsettestattr:26,cmdsettrad:194,cmdsettrain:127,cmdsetweapon:249,cmdsetweaponrack:249,cmdsheet:90,cmdshiftroot:249,cmdshoot:[80,238],cmdshutdown:181,cmdsit2:113,cmdsit:113,cmdsmashglass:241,cmdsmile:22,cmdspawn:171,cmdspellfirestorm:82,cmdstand2:113,cmdstand:113,cmdstatu:[194,237,238],cmdstop:228,cmdstring:[22,90,98,162,166,179,180,182],cmdstyle:168,cmdtag:171,cmdtalk:229,cmdteleport:171,cmdtest:[3,83,97],cmdtestid:22,cmdtestinput:27,cmdtestmenu:[27,203,345],cmdtime:[91,181],cmdtrade:194,cmdtradebas:194,cmdtradehelp:194,cmdtunnel:171,cmdtutori:250,cmdtutoriallook:250,cmdtutorialsetdetail:250,cmdtweet:141,cmdtypeclass:171,cmdunban:169,cmdunconnectedconnect:[183,201],cmdunconnectedcr:[183,201],cmdunconnectedhelp:[183,201],cmdunconnectedlook:[183,201],cmdunconnectedquit:[183,201],cmduncov:197,cmdunlink:171,cmdunloggedinlook:216,cmdunwield:235,cmduse:236,cmdusepuzzlepart:218,cmdwait:22,cmdwall:169,cmdwear:197,cmdwerewolf:81,cmdwest:250,cmdwhisper:177,cmdwho:168,cmdwield:235,cmdwipe:171,cmdwithdraw:238,cmset:165,cmsg:176,cmud:136,cnf:[2,135],coast:[72,109],coastal:72,cockpit:80,code:[2,5,6,7,8,12,13,15,16,20,22,23,24,27,29,31,32,34,37,39,40,42,43,44,45,48,49,50,51,52,53,55,58,59,62,63,64,66,67,70,71,72,73,75,76,77,78,79,83,85,88,89,90,91,92,93,97,99,101,102,103,104,105,107,108,109,111,113,115,116,118,119,120,121,122,123,124,125,127,128,129,131,133,138,145,146,147,149,151,153,154,156,161,162,165,168,170,171,176,181,184,190,194,195,199,200,205,207,210,215,219,236,250,251,259,269,273,295,296,312,323,326,335,337,338,343,345,347,358,359,360,361,386,387,388],code_exec:339,codebas:[8,11,63,65,74,76,88,108,182],codeblock:74,codec:338,codefunc:343,coder:[0,1,68,88,110,112,133,162,264],codestyl:73,coerc:356,coexist:128,coher:122,coin:[78,107,108,110,111,194],col:[50,117,347],cold:[49,151,181,269,274,278,322],cole:361,collabor:[11,77,79,110,144,178],collat:[56,268],collect:[0,13,20,107,118,162,164,191,218,231,276,333,361,370],collector:118,collectstat:[46,118,284,288],collid:[20,137,144,345],collis:[11,20],collist:107,colon:[19,31,86,99,106,259],color:[22,27,30,42,46,50,62,63,71,72,74,75,90,92,93,98,99,106,133,138,166,168,198,205,221,232,251,268,289,296,304,307,312,313,338,347,353,355,360,362,388],color_ansi_bright_bg_extra_map:198,color_ansi_bright_bgs_extra_map:198,color_ansi_extra_map:198,color_markup:[153,154,190],color_no_default:198,color_typ:338,color_xterm256_extra_bg:198,color_xterm256_extra_fg:198,color_xterm256_extra_gbg:198,color_xterm256_extra_gfg:198,colorablecharact:94,colorback:360,colorcod:360,colour:[19,76,171,311,338,347],column:[46,50,58,70,71,72,74,77,90,92,166,168,252,347,361],com:[8,9,10,11,36,48,50,60,64,67,68,70,72,74,76,85,86,108,110,130,133,134,135,137,138,140,143,144,145,146,147,153,176,195,201,296,299,308,312,329,347,360,361,381,387],combat:[11,13,15,20,37,42,45,60,70,72,76,77,81,82,93,98,103,104,109,111,112,114,124,133,138,165,234,235,236,237,238,248,273,388],combat_:[234,235,236,237,238],combat_cleanup:[234,235,236,237,238],combat_cmdset:115,combat_handl:115,combat_handler_:115,combat_movesleft:[234,235,236,237],combat_scor:116,combat_status_messag:238,combatcmdset:115,combathandl:115,combatscor:116,combatt:13,combin:[8,13,19,20,22,23,32,42,43,44,49,62,76,82,84,86,89,90,99,101,105,106,112,125,127,134,144,162,163,164,171,187,217,218,220,231,244,259,268,278,284,334,336,341,355,361],combo:40,come:[5,11,12,13,16,19,22,23,27,28,31,40,46,48,50,53,56,59,62,63,64,66,70,71,72,76,77,79,80,81,83,89,90,91,92,96,97,99,103,104,106,107,110,112,113,114,115,116,117,125,127,128,130,131,135,146,150,156,164,202,219,231,234,235,236,237,238,269,302,307,312,313,315,321,338,346,367,386],comet:[46,53,76,313],comfi:113,comfort:[11,16,76,92,97],comlist:176,comm:[22,23,29,75,77,86,102,141,153,154,161,167,341],comma:[58,62,70,99,106,107,131,171,179,180,213,214,259,264,353],comman:99,command:[0,2,5,7,9,11,12,13,14,16,19,23,26,27,28,30,31,33,34,36,37,39,40,42,43,45,46,48,49,51,52,53,54,55,56,58,60,61,62,63,65,66,67,70,71,72,74,76,77,79,80,88,89,92,93,99,100,102,108,109,110,112,114,118,124,125,126,128,133,134,135,136,138,139,140,142,143,144,145,147,150,151,153,154,156,158,186,187,190,194,195,196,197,200,201,202,203,204,206,209,211,212,214,215,216,217,218,221,225,227,228,229,232,234,235,236,237,238,241,243,244,245,248,249,250,251,252,253,256,258,259,264,268,269,273,281,284,289,293,294,302,304,307,308,312,313,315,316,322,323,335,337,338,341,343,345,346,355,358,361,386,388],command_default_arg_regex:22,command_default_class:81,command_pars:163,commandhandl:[30,165,180,361],commandmeta:166,commandnam:[22,30,56,99,251,284,293,323,325],commandset:[31,34,98,165,196],commandtest:[8,182,211],comment:[14,15,45,67,73,81,86,98,113,125,134,136,144,339],commerc:133,commerci:[7,78,144],commerror:188,commit:[2,9,10,16,54,60,73,74,77,81,135,145,146,224,332],commmand:[227,234,235,236,237,238],common:[0,6,11,16,19,22,27,29,30,31,40,41,42,43,44,45,48,49,50,53,56,59,61,74,75,77,84,86,91,92,97,99,100,103,104,106,107,108,110,112,114,115,116,120,130,138,144,164,171,194,220,221,228,259,273,312,316,334,344,356,358,361,370,374,386],commonli:[9,33,39,40,41,44,56,58,77,101,105,112,135,138,264],commonmark:74,commun:[7,18,22,36,46,53,56,59,61,62,68,69,75,76,77,78,86,89,97,98,102,103,104,112,133,134,135,142,144,147,173,184,186,187,188,189,214,263,281,293,294,304,305,307,308,309,310,323,325,341,342,357,387,388],compact:[96,101,131],compani:[59,77],compar:[6,8,11,14,16,19,20,56,67,79,82,83,86,87,90,96,97,101,114,115,116,182,215,218,220,231,234,235,236,237,238,258,259,269,338,361],comparison:[5,14,101,102,230,258,269,345],compartment:90,compass:99,compat:[15,27,80,171,231,347,354],compet:[16,59,112],compil:[22,55,60,67,74,88,103,138,143,144,171,177,178,183,186,197,216,221,338,343,360],compilemessag:55,complain:[3,9,58,97,113,151],complement:[0,41,231],complementari:[24,61],complet:[2,8,9,11,12,13,14,15,16,19,20,22,26,27,34,37,39,40,41,48,59,68,71,72,73,77,81,87,90,91,94,96,101,105,106,109,110,111,112,116,135,144,150,151,156,164,165,166,179,181,186,198,202,203,205,210,212,215,235,250,264,284,286,294,295,312,339,344,345,346,353,358,361,366,381],complete_task:210,completli:245,complex:[5,8,13,15,16,20,22,39,44,55,58,60,72,77,91,99,103,105,106,107,108,110,111,112,113,114,115,116,146,165,211,219,229,269,316],complianc:[136,202],compliant:[85,308],complic:[48,66,68,71,72,83,86,92,97,101,130,131,144,183,201,203,232,333],compon:[0,5,8,22,37,46,47,52,53,62,64,71,74,76,83,90,93,102,110,115,116,122,123,144,151,171,181,187,188,189,192,199,218,220,230,269,270,273,276,284,313,341,344,358,361,387,388],componenta:4,componentid:46,componentnam:46,componentst:46,compos:[146,203],composit:[310,334],comprehens:[5,8,23,31,45,76,111,113,138,147],compress:[30,289,293,297,357],compress_object:357,compris:156,compromis:[147,224],comput:[11,44,48,49,61,71,77,88,101,102,112,114,129,138,142,146,150,169,181,221,361,362],computation:44,comsystem:[176,189],con:[90,133,183,201],concaten:[103,338,353],concept:[11,13,36,44,53,55,70,73,74,85,89,92,93,94,106,107,110,111,113,119,196,217,231,387,388],conceptu:[27,71],concern:[55,59,87,106,138,164,219,256],conch:[304,307,315],conclud:[101,194,345],concurr:135,conda:67,conder:339,condit:[5,70,71,76,96,97,98,101,105,110,111,114,116,134,162,200,221,236,259,264,276,283,284,329,361],condition:81,condition_result:200,condition_tickdown:236,conditional_flush:351,conduct:118,conductor:127,conect:325,conf:[2,5,8,11,24,25,30,31,42,53,55,58,62,64,67,74,79,81,86,91,92,94,104,113,126,127,130,131,134,135,137,139,140,144,147,156,198,216,284,290,291,330,339,354,388],confer:[133,361],confid:[3,73,85],config:[2,7,10,11,12,46,53,67,79,138,144,145,147,192,231,280,284,286,290,291,302,388],config_1:12,config_2:12,config_3:12,config_color:94,configcmd:94,configdict:[304,325],configur:[2,8,12,62,66,74,77,81,91,92,93,103,118,126,137,138,140,144,146,147,156,160,163,168,192,224,225,231,251,277,286,291,302,325,329,330,334,381,388],configut:7,confirm:[22,46,99,134,138,147,171,201,218,308,311,386],conflict:[3,86,112,128],confus:[0,5,6,11,20,31,33,46,48,62,65,68,77,87,90,97,101,104,107,118,128,144,201,386],conid:303,conjur:237,conn:[183,201],conn_tim:40,connect:[5,8,12,13,14,17,20,22,23,24,30,31,34,36,37,39,40,41,45,46,49,53,54,55,56,59,62,66,67,70,71,72,76,77,79,81,86,89,92,96,97,99,101,102,103,104,105,112,116,118,126,128,134,135,136,138,139,142,145,146,147,150,151,156,158,160,168,169,171,176,183,187,189,192,201,205,207,208,210,212,216,225,228,263,264,270,279,281,284,286,293,294,295,296,297,302,303,304,307,312,313,315,316,322,323,324,325,326,329,333,335,341,357,367,388],connection_cr:41,connection_screen:[25,39,103,216],connection_screen_modul:201,connection_set:137,connection_tim:[156,264],connection_wizard:[153,154,279],connectiondon:286,connectionlost:[286,293,294,304,307,315],connectionmad:[281,293,304,307,315],connectionwizard:282,connector:[281,295,296,302,325],conquer:109,consecut:27,consequ:[144,165],consid:[0,5,6,11,14,15,19,20,22,27,30,31,37,40,42,43,44,45,48,49,53,58,61,62,64,66,70,73,76,77,78,79,85,87,89,95,96,101,103,106,108,110,111,113,120,127,130,131,132,135,138,144,147,156,164,203,218,220,221,231,238,251,264,269,273,289,304,307,334,339,340,345,346],consider:[29,39,58,72,104,112,125,258,269,347],consist:[12,13,17,22,27,29,31,36,42,46,58,62,64,70,74,87,106,109,111,115,116,119,151,156,163,179,188,194,218,220,253,259,267,269,308,313,323,332,333,335,341,346,347,361,386],consitut:104,consol:[0,3,5,6,7,46,51,62,67,74,77,104,106,107,116,119,135,138,143,144,146,150,181,221,284],conson:220,constant:[59,66,293,359],constantli:[124,250],constitu:[165,179,180],constraint:[66,135],construct:[2,23,27,77,83,113,130,269,328,333,338,346,381],constructor:[22,68,195,295],consum:[48,286,361],consumer_kei:[126,141],consumer_secret:[126,141],consumpt:[135,327],contact:[34,46,144,146],contain:[0,6,8,9,13,14,15,17,20,22,23,27,29,31,34,37,39,40,46,48,50,53,58,62,63,66,67,68,70,73,74,75,76,77,80,81,85,86,88,89,91,92,97,98,99,101,102,103,104,105,106,111,113,116,118,125,128,130,131,133,138,143,150,153,154,156,158,161,162,163,164,165,167,170,171,178,184,192,195,203,204,207,208,209,210,211,212,213,215,218,219,220,221,225,226,228,231,232,236,241,249,251,252,255,257,264,266,267,268,269,277,279,283,287,289,315,328,329,333,334,335,336,337,338,339,342,344,345,346,347,358,360,361,362,367,379,386],container:146,contempl:88,content:[5,11,14,17,19,34,45,46,50,71,74,79,80,85,88,90,92,95,96,97,101,103,105,106,108,112,113,116,117,119,120,121,122,123,124,127,130,131,133,144,166,169,171,192,193,221,263,264,332,336,338,339,340,343,346,347,358,363,367,379,387],content_typ:[263,264],contentdisposit:192,contentencod:192,contentof:347,contents_cach:263,contents_get:[108,264],contents_set:264,contentshandl:263,context:[62,70,76,92,97,119,128,130,195,210,305,309,374,386],contextu:43,continu:[1,3,8,13,19,22,27,43,44,48,58,62,70,71,73,76,80,83,90,92,96,98,105,106,115,116,118,141,143,144,192,215,264,282,293,329,333,345,354,361,388],contrari:[66,74,86,91,103,112,181,231,336],contrast:[61,88,144,308],contrib:[14,15,37,69,70,74,75,77,79,89,90,91,93,99,102,103,106,109,112,114,115,120,132,138,153,154,156,157,160,185,254,261,271,280,326,332,339,373,381,386,388],contribrpcharact:221,contribrpobject:221,contribrproom:221,contribut:[0,8,11,68,76,78,79,95,102,111,118,132,149,150,190,194,196,197,198,200,202,214,215,216,218,219,221,224,225,227,228,229,251,387,388],contributor:[132,195,231],control:[1,2,3,4,5,9,12,13,14,15,20,22,23,26,27,28,29,30,31,34,36,37,40,42,49,51,56,58,60,62,64,67,73,74,75,76,77,80,89,90,94,99,101,102,103,104,105,110,112,114,116,119,125,127,138,144,147,149,151,156,158,168,170,171,176,194,196,209,221,245,248,250,252,258,264,273,284,323,325,335,345,366,381,388],convei:[212,221,264],convenei:41,conveni:[2,7,8,13,23,27,30,31,34,37,42,45,48,53,58,60,65,67,76,80,86,89,92,104,105,106,108,119,130,134,145,151,156,171,181,195,214,215,264,327,339,340,345,346,354,357,358],convent:[20,41,58,66,101,128],convention:[86,166,186,264,335],convers:[8,27,33,127,220,229,312,313,338,361,387],convert:[9,13,19,33,42,53,56,59,61,62,71,77,85,91,94,96,101,104,113,119,128,133,147,169,199,200,203,232,258,268,269,274,293,295,304,307,308,325,329,338,342,346,347,348,353,357,360,361,367,387],convert_linebreak:360,convert_url:360,convinc:[27,144],cool:[0,67,68,74,80,110,117,133,171],cool_gui:31,cooldown:[83,115,388],coord:85,coordi:85,coordin:[46,71,215,238,252,388],coordx:85,coordz:85,cope:237,copi:[0,2,5,9,11,14,15,22,26,27,39,40,42,46,64,66,72,77,79,81,91,94,98,99,102,103,116,118,130,144,146,170,171,197,210,234,235,236,237,238,250,264,284,293,330,338,354,386],copy_object:264,copyright:[132,144],core:[7,8,11,34,39,45,51,55,59,71,73,102,107,111,132,156,160,181,189,190,192,212,214,256,258,263,264,273,279,291,301,308,322,333,335,336,339,346,352,381,386,387],corner:[17,85,89,133,252,347],corner_bottom_left_char:347,corner_bottom_right_char:347,corner_char:347,corner_top_left_char:347,corner_top_right_char:347,corpu:220,correct:[8,13,15,19,20,22,26,31,46,48,61,62,73,80,84,97,104,107,116,127,128,135,162,168,171,188,202,218,246,259,299,302,304,310,324,338,361],correctli:[2,3,6,19,22,26,27,31,43,44,67,71,74,79,83,87,91,96,97,103,116,127,128,134,142,144,151,156,160,165,168,192,274,293,329,357,367],correl:269,correspond:[22,31,40,64,96,99,199,215,218,232,332,366,381],correspondingli:9,corrupt:88,cosi:72,cosin:361,cosmet:252,cost:[82,96,144,192,237,252],cottag:[62,72],could:[2,3,5,7,8,9,12,13,14,15,16,20,22,23,27,29,31,32,33,34,37,42,43,44,45,48,49,51,53,56,58,59,60,61,62,63,64,65,66,67,68,70,71,72,73,74,76,77,79,80,81,82,83,84,85,86,87,89,90,91,92,94,95,96,97,98,99,101,103,104,105,106,107,110,111,112,113,114,115,116,117,118,119,124,125,126,127,128,129,130,133,138,139,141,142,144,145,156,165,171,178,188,189,194,195,200,205,212,213,219,221,228,231,232,250,252,258,259,264,289,308,313,329,335,338,339,343,347,348,351,356,361],couldn:[13,51,55,65,77,85,87,97,98,106,128,131,219],count:[37,39,77,101,104,106,115,126,164,197,232,236,264,276,298,302,315,319,325,327,334,338,345,354],count_loggedin:302,count_queri:319,countdown:[83,99],counter:[9,40,68,83,92,96,111,115,153,158,190,230,250,302,315,316,323,345],counterpart:[14,62,111,289,325,342],countertrait:231,countri:169,coupl:[11,68,92,124,146,228],cours:[0,5,7,10,16,22,44,49,60,62,65,66,67,68,70,74,77,79,80,86,89,97,104,105,106,107,109,110,116,129,132,150,235,238],courtesi:49,cousin:[63,97],cover:[0,8,11,14,15,18,31,52,53,57,58,67,73,83,89,101,102,103,105,106,108,111,112,126,133,134,135,138,144,149,197,202,250,264,361],coverag:8,coveral:8,cpanel:144,cpattr:[98,171],cpu:[49,144,147,181],cpython:5,crack:58,craft:[31,72,83,110,203],cram:109,crank:[44,275],crash:[0,72,106,110,133,147,288,333],crate:[33,99],crave:149,crawl:147,crawler:298,cre:[183,201],creat:[0,3,5,7,8,10,11,13,14,15,16,20,23,25,26,27,29,31,33,37,39,40,41,42,43,46,50,51,52,53,54,55,60,63,64,65,67,68,69,70,71,73,74,76,77,78,79,81,83,85,86,87,88,89,90,91,94,96,97,101,103,105,107,108,109,110,111,113,114,115,118,119,120,121,122,123,124,125,126,129,131,132,133,135,137,138,139,141,142,143,144,147,150,153,154,156,157,158,160,162,163,164,165,166,168,171,176,177,178,179,180,182,183,186,187,189,192,193,194,195,196,197,199,200,201,202,203,204,209,210,211,213,214,215,216,217,218,219,220,221,225,227,229,231,232,234,235,236,237,238,240,241,244,245,248,249,250,251,252,256,259,261,263,264,266,267,268,269,273,276,277,278,281,284,288,289,294,296,297,302,304,305,309,316,324,325,329,333,334,335,336,337,339,340,343,344,345,347,348,353,354,361,365,369,370,384,386],create_:[34,45],create_account:[41,45,153,341],create_attribut:333,create_cal:156,create_channel:[23,153,186,187,288,341],create_charact:[156,264],create_delai:277,create_exit:[171,227],create_exit_cmdset:264,create_forward_many_to_many_manag:[160,189,256,263,273,333,335,336,352],create_game_directori:284,create_grid:71,create_help_entri:[29,153,341],create_kwarg:269,create_match:163,create_messag:[23,153,341],create_object:[14,19,31,34,45,72,96,100,116,130,153,264,269,288,339,341],create_prototyp:[268,269],create_script:[37,45,88,115,153,276,339,341],create_secret_kei:284,create_settings_fil:284,create_superus:284,create_tag:334,create_wild:252,created_on:207,creater:75,createview:386,creation:[6,11,13,15,27,31,34,40,45,58,65,71,72,80,90,94,99,100,102,104,105,110,112,116,121,130,133,153,156,157,160,171,178,187,196,215,218,221,225,227,231,234,235,236,237,238,249,250,256,261,263,264,269,273,278,317,332,335,341,343,344,345,347,381,386,387],creation_:341,creativ:[60,112],creator:[27,31,65,72,75,116,133,178,187,215,234,235,236,237,238,264,347],cred:[11,304],credenti:[11,144,147,156,304],credentialinterfac:304,credit:[11,106,108,144,147,360,361],creset:11,crew:101,criteria:[27,101,188,209,219,268,334,358],criterion:[11,101,104,105,109,156,194,221,255,264,275,358,361],critic:[0,6,9,20,37,40,51,62,138,259,283,284,354],critici:335,crop:[62,90,171,344,347,353,361],crop_str:347,cross:[72,250,347],crossbario:312,crossbow:83,crossroad:72,crowd:[110,147],crt:[134,140],crucial:[44,97],crud:[369,370],crude:66,crumblingwal:249,crumblingwall_cmdset:249,crush:80,crypt:109,cryptocurr:147,cscore:116,csessid:[302,312,313,325],csession:[312,313],csrf_token:130,css:[17,46,64,76,103,118,192,360],cssclass:46,ctrl:[5,106,119,138,144,146,150,151,315],cuddli:[104,107],culpa:28,cumbersom:[9,27,127,232],cumul:316,cup:78,cupidatat:28,cur_valu:205,cure:[236,237],cure_condit:236,curi:71,curiou:60,curli:[86,198],curly_color_ansi_bright_bg_extra_map:198,curly_color_ansi_bright_bgs_extra_map:198,curly_color_ansi_extra_map:198,curly_color_xterm256_extra_bg:198,curly_color_xterm256_extra_fg:198,curly_color_xterm256_extra_gbg:198,curly_color_xterm256_extra_gfg:198,curr_sess:325,curr_tim:202,currenc:[96,126],current:[6,7,8,9,11,12,13,14,15,19,20,22,26,27,29,30,31,34,37,38,39,40,43,44,46,49,51,55,58,62,66,67,68,70,71,74,77,80,81,82,83,86,90,96,98,99,101,102,103,104,105,107,111,113,115,116,126,127,130,133,146,150,156,160,162,163,165,166,168,169,171,176,177,178,180,181,187,192,194,195,197,202,203,205,210,213,215,217,219,221,227,228,230,231,232,234,235,236,237,238,243,249,250,252,255,263,264,269,273,277,278,284,289,294,300,301,304,305,316,323,325,327,334,335,343,345,347,348,354,355,358,361,367,386],current_choic:195,current_coordin:252,current_kei:[267,268],current_us:130,current_weath:37,currentroom:127,curriculum:133,curs:[3,111],curv:[76,88],curx:71,cushion:113,custom:[0,6,12,13,15,16,17,19,20,22,23,25,29,30,33,34,37,39,42,43,45,49,50,52,54,56,58,62,65,66,71,75,76,77,80,81,84,88,90,92,93,96,99,101,103,105,109,110,111,112,113,114,115,116,118,124,125,127,128,129,130,132,133,139,141,144,146,151,156,157,158,159,160,162,164,165,166,171,176,177,178,186,187,194,196,197,199,200,202,203,204,210,212,213,215,218,220,221,224,225,231,249,250,252,255,258,262,264,266,267,268,269,272,278,280,284,288,290,293,315,324,335,340,343,347,351,353,355,356,360,361,369,370,373,386,388],custom_add:210,custom_cal:[210,213],custom_domain:192,custom_gametim:[91,153,154,190],custom_kei:268,custom_pattern:[79,92,117,130,131],customis:252,customiz:[17,86,113,195,203,205,221],customlog:134,cut:[26,46,53,71,72,76,97,99,112,116,269],cute:118,cutoff:361,cvcc:220,cvccv:220,cvccvcv:220,cvcvcc:220,cvcvccc:220,cvcvccvv:220,cvcvcvcvv:220,cvcvvcvvcc:220,cvv:220,cvvc:220,cwho:[98,176],cyan:[62,128],cyberpunk:108,cyberspac:133,cycl:[14,15,81,88,91,110,129,234,235,236,237,238],cyril:16,daemon:[5,134,146,147,151,301,329],daffodil:108,dai:[2,11,19,60,88,91,110,111,126,128,129,146,147,199,202,348,354,361,362],daili:33,dailylogfil:354,dali:220,dalnet:176,dalton:101,dam:88,damag:[15,80,82,96,109,111,112,114,115,147,234,235,236,237,238,248,249],damage_rang:237,damage_taken:88,damage_valu:[234,235,236,237,238],damn:133,dandi:65,danger:[6,14,20,40,74,95,164],dare:[22,98],dark:[14,15,17,20,62,72,106,109,111,114,128,133,165,202,231,241,250,258,273,339],darkcmdset:250,darker:[62,128],darkgrai:128,darkroom:250,darkroom_cmdset:250,darkstat:250,dash:[74,219,232],dashcount:232,data:[5,6,9,12,14,16,19,33,37,39,42,43,45,46,48,56,58,59,61,64,68,77,81,88,89,90,103,104,107,110,130,131,135,143,144,146,156,157,158,166,171,181,187,192,203,205,209,210,221,224,225,230,231,254,261,263,264,266,270,276,278,281,282,286,290,291,293,294,295,296,297,302,303,304,305,307,308,309,311,312,313,315,316,317,322,323,324,325,331,332,333,334,335,336,338,339,340,341,342,344,345,346,347,350,354,355,356,357,365,367,370,381,386],data_default_valu:231,data_in:[53,56,225,293,295,296,302,303,307,312,313,323,324,325],data_out:[53,225,302,304,307,308,313,323,324,325],data_to_port:281,data_to_serv:294,databa:284,databas:[2,5,8,10,11,13,14,16,17,19,20,23,30,31,32,33,34,37,39,40,41,43,44,45,49,51,64,65,66,72,74,76,77,79,80,82,83,85,88,89,90,97,98,100,102,103,105,106,108,110,111,112,113,115,116,118,130,131,135,138,146,149,150,151,156,160,164,165,171,178,181,185,186,187,188,189,202,209,210,212,221,237,250,253,255,256,258,261,263,264,267,268,270,271,273,274,278,284,288,290,301,315,322,331,332,333,334,335,336,339,341,342,349,351,357,358,361,363],datareceiv:[286,293,307,315],datastor:58,date:[9,11,13,23,29,49,55,58,71,91,128,130,135,143,157,165,169,224,348,354,362],date_appli:130,date_cr:[45,156,160,189,273,333,335],date_join:[157,160],date_s:23,datetim:[45,91,130,192,333,348,354,355,361,362],datetime_format:361,datetimefield:[58,130,157,160,189,263,273,333,335,361],david:133,dawn:99,day_rot:354,daylight:111,db3:[9,11,72,103,135,150],db_:[32,45,58,101,221,264,274,289,358],db_account:[197,261,263,273],db_account__db_kei:261,db_account__id:365,db_account__usernam:365,db_account_id:[263,273],db_account_subscript:[185,189],db_attribut:[41,157,160,189,261,263,273,335],db_attribute_categori:231,db_attribute_kei:231,db_attributes__db_kei:101,db_attributes__db_value__gt:101,db_attrtyp:[333,367],db_attryp:33,db_categori:[58,101,332,333,336,367],db_category__iequ:58,db_channel:185,db_cmdset_storag:[157,160,197,261,263],db_data:[332,336,367],db_date_cr:[58,160,185,189,197,263,273,333,335],db_desc:[273,365],db_destin:[197,261,263],db_destination__isnul:126,db_destination_id:263,db_entrytext:[254,256],db_header:189,db_help_categori:[254,256],db_hide_from_account:189,db_hide_from_channel:189,db_hide_from_object:189,db_hide_from_receiv:189,db_hide_from_send:189,db_home:[197,261,263,367],db_home__db_kei:365,db_home__id:365,db_home_id:263,db_index:58,db_interv:[271,273,365,367],db_is_act:[273,365,367],db_is_bot:[157,160,365],db_is_connect:[157,160,365],db_kei:[32,45,58,92,100,101,104,157,185,197,209,254,256,261,271,274,280,291,332,333,335,336,365,367,381],db_key__contain:45,db_key__exact:101,db_key__icontain:[58,101],db_key__iexact:101,db_key__in:101,db_key__startswith:45,db_locat:[32,101,104,197,261,263,367],db_location__db_kei:365,db_location__db_tags__db_key__iexact:101,db_location__id:365,db_location__isnul:126,db_location_id:263,db_lock_storag:[157,185,189,197,254,256,261,333,335],db_messag:[185,189],db_model:[333,336],db_obj:[271,273,342],db_obj__db_kei:365,db_obj__id:365,db_obj_id:273,db_object_subscript:[185,189],db_permiss:[58,157],db_persist:[271,273,365,367],db_properti:289,db_protototyp:268,db_receiv:185,db_receivers_account:189,db_receivers_channel:189,db_receivers_object:189,db_receivers_script:189,db_repeat:[271,273,367],db_sender:185,db_sender_account:189,db_sender_extern:189,db_sender_object:189,db_sender_script:189,db_sessid:[197,261,263],db_staff_onli:[254,256],db_start_delai:[271,273,367],db_strvalu:333,db_tag:[101,157,160,189,254,256,261,263,273,335,336],db_tags__db_categori:[85,101,365],db_tags__db_kei:[85,101,185,365],db_tags__db_key__iexact:101,db_tags__db_key__in:85,db_tagtyp:[332,336,365,367],db_text:58,db_typeclass_path:[58,126,157,197,261,263,271,335,361,365,367],db_valu:[32,101,280,291,333,367,370],dbef:358,dbhandler:381,dbholder:333,dbid:[45,158,176,335],dbid_to_obj:361,dbmodel:334,dbobj:[13,333],dbobject:[13,334,335],dbprototyp:[181,268],dbref:[9,14,31,42,45,49,54,72,90,99,104,109,115,127,156,160,169,171,181,188,203,218,221,227,250,252,258,263,264,267,268,269,273,275,334,335,341,358,361],dbref_search:334,dbref_to_obj:361,dbrefmax:171,dbrefmin:171,dbsafe_decod:357,dbsafe_encod:357,dbserial:[6,13,153,154,274,337],dbshell:[9,58,135,151],dbstore:230,dbunseri:342,ddesc:88,deactiv:[77,94,124,138,176,202,245,248,345],deactivatebuttonev:245,dead:[43,112,231,248,249,322,325,351],deadli:109,deal:[11,13,16,27,40,43,48,49,61,77,86,92,97,111,114,115,128,131,147,156,194,195,199,203,234,235,236,237,238,263,264,323,335,338,355,386],dealt:[179,180,236,237],dealth:236,death:[27,110,114,126],death_msg:248,death_pac:248,debat:97,debian:[11,134,135,138,140],debuff:231,debug:[1,7,15,19,27,30,37,64,97,105,106,142,162,166,170,181,203,266,284,289,295,296,307,329,339,345,354,361,388],debugg:[3,16,151,153],decemb:144,decend:162,decent:[5,220],decic:220,decid:[15,16,22,40,43,58,59,62,70,79,81,86,90,92,96,110,114,115,128,144,147,149,162,194,234,259,346],decis:[44,112,114,367],declar:[62,357,370],declared_field:[157,254,261,332,381],declared_filt:365,declin:[27,194],decod:[16,308,338,361],decode_gmcp:308,decode_msdp:308,decoded_text:361,decompos:130,decompress:[293,357],deconstruct:[109,182,192,230,246,310,359,368],decor:[11,22,41,66,70,83,160,263,273,281,293,294,335,341,345,346,361],decoupl:[67,268],decoupled_mut:13,decreas:[111,237,250,343],decrease_ind:343,dedent:[26,361],dedic:[8,106,107,114,144],deduc:343,deduce_ind:343,deduct:[96,114,234,235,236,237,238],deem:[11,63,73,89,190,386],deep:[102,133],deeper:[24,86,93,109,232],deepest:171,deepli:13,deepsiz:361,def:[3,8,13,19,20,22,26,27,30,31,32,34,37,41,42,45,48,53,62,68,71,72,74,79,80,81,82,83,84,85,86,87,88,89,90,91,92,94,95,96,97,98,104,105,106,107,108,113,114,115,116,117,124,125,126,127,129,130,131,133,141,195,202,231,251,252,267,313,326,343,345,353,361],def_down_mod:236,defafultobject:104,defalt_cmdset:141,default_access:[13,333,341],default_acl:192,default_categori:255,default_channel:23,default_charact:204,default_cmd:[4,68,75,80,81,82,83,84,86,87,89,90,91,94,98,105,115,153,195,197,202,214],default_cmdset:[25,40,68,81,84,86,87,89,90,91,94,104,105,113,116,165,195,196,197,202,203,215,217,227,232,234,235,236,237,238],default_command:[81,103],default_confirm:[171,218],default_content_typ:192,default_error_messag:357,default_hom:42,default_in:46,default_kei:231,default_out:46,default_pass:341,default_screen_width:22,default_set:[8,117],default_transaction_isol:135,default_unload:46,defaultaccount:[12,45,75,77,86,104,105,153,156,158,172,264,359,367],defaultchannel:[45,75,104,153,187],defaultcharact:[8,34,45,58,68,75,81,89,90,91,94,104,105,113,114,116,153,156,173,195,197,204,212,221,234,235,236,237,238,264,359,370],defaultcmdset:[200,241],defaultdict:274,defaultexit:[34,45,75,96,104,153,212,227,228,249,252,264,359],defaultguest:[75,153,156],defaultlock:258,defaultmod:354,defaultobject:[0,4,34,45,58,72,75,77,95,96,100,102,104,107,108,113,124,127,153,156,197,212,221,229,231,235,238,243,244,249,264,335,359,367],defaultpath:361,defaultroom:[34,45,71,75,85,88,96,104,129,153,202,212,221,250,252,264,359],defaultrout:369,defaultscript:[37,45,75,88,104,115,126,127,153,158,194,199,210,218,219,220,234,235,236,237,238,240,245,252,268,275,276,317,348,359],defaultsess:[105,174],defaulttyp:329,defaultunloggedin:[105,175,216],defeat:[109,110,114,115,234,235,236,237,238,248],defeat_msg:248,defeat_msg_room:248,defend:[27,109,115,234,235,236,237,238,249,264],defens:[111,115,234,235,236,237,238],defense_valu:[234,235,236,237,238],defer:[19,22,48,83,130,157,160,162,189,202,228,256,263,264,273,277,281,291,293,294,325,329,333,335,336,352,354,361],deferredlist:329,defin:[2,3,4,6,7,8,12,13,14,15,19,25,26,29,30,34,39,42,44,45,46,48,49,53,56,59,61,62,63,64,66,68,70,71,72,74,75,76,77,79,80,81,84,87,88,89,90,91,92,94,96,97,98,99,101,103,105,106,107,110,112,113,114,116,118,124,127,128,130,132,153,155,157,160,162,164,165,166,168,171,177,179,180,181,182,185,187,188,189,193,195,197,198,199,200,202,203,209,210,213,215,218,219,220,221,229,231,232,236,237,240,241,245,249,250,253,254,255,256,257,258,259,260,261,263,264,268,269,273,276,278,279,281,284,291,294,315,316,323,324,325,328,331,333,334,335,336,338,339,340,343,345,348,352,353,356,358,361,363,367,370,381,386],define_charact:27,definin:106,definit:[3,8,12,15,22,23,29,33,34,42,44,48,49,59,62,66,76,85,86,92,95,103,113,164,166,171,176,179,180,207,218,244,249,257,259,263,268,269,275,339,341,345,353,357],deflist:329,degrad:8,degre:[74,119],deindent:361,del:[13,31,49,83,90,109,113,115,169,171,202,217,218,230,231,267,335],del_callback:[208,210],del_detail:202,del_pid:284,delaccount:49,delai:[22,66,82,126,199,203,210,228,249,277,278,296,302,325,340,361],delaliaschan:176,delayed_import:325,delchanalia:176,delcom:[90,98,176],deleg:[160,189,256,263,273,333,335,336,352],delet:[8,9,11,12,13,14,20,26,27,29,31,33,34,37,40,41,43,49,54,68,72,79,103,104,105,109,113,115,135,138,145,146,150,156,165,168,169,170,171,176,177,178,181,186,187,189,192,202,207,208,210,211,212,214,217,218,227,230,231,245,249,256,259,264,268,274,275,276,278,290,302,323,332,333,335,338,339,345,351,366,369,370,384,386],delete_attribut:333,delete_default:[20,165],delete_prototyp:268,deletet:202,deleteview:386,deliber:[3,13,63,111],delic:197,delimit:[97,179,180,339],deliv:[144,214,221],delpart:218,delresult:218,deltatim:361,delux:144,demand:[44,84,90,110,112,114,124,144,156,187,202,231,264,326,340],demo:[68,76,93,109,119,120,121,122,123,133,247,345],demon:42,demonin:361,demonstr:[66,68,79,113,128,130,195,203,224,236],demowiki:79,deni:[134,147,209,213],denot:[62,88,131,339],denounc:344,depart:71,depend:[5,6,7,11,13,15,16,19,20,22,23,27,30,37,39,40,44,45,46,48,49,50,53,56,59,62,66,68,70,71,72,73,76,77,79,89,90,92,96,103,104,105,109,110,113,114,115,116,125,130,131,138,142,143,144,146,147,155,162,164,166,168,181,187,195,196,200,202,208,220,231,252,259,264,268,276,278,284,304,307,313,315,325,335,336,343,361],deplet:[231,236],deploi:[70,74,144,147],deploy:[2,7,74,133,144,146,149],depmsg:354,deprec:[19,27,42,153,154,269,279,354,361],deprecationwarn:283,depreci:338,depth:[2,17,50,62,109,232,269],dequ:[13,327],deriv:[8,45,60,88,135,138,140,146,251,338,362],desc:[15,23,30,31,32,34,37,42,68,72,80,86,89,90,92,95,96,98,99,104,111,115,126,131,165,168,171,182,195,197,202,217,218,227,231,232,237,252,273,282,339,341,343,344,345,381,386],desc_al:248,desc_dead:248,desc_lamp_broken:244,desc_lid_clos:244,desc_lid_open:244,descend:[101,381],describ:[8,10,11,13,14,15,20,22,27,29,31,36,37,42,45,46,55,58,59,61,62,64,67,68,70,72,73,74,76,77,80,84,90,91,92,96,98,99,103,104,106,107,111,113,115,130,133,138,141,143,144,151,164,171,175,176,177,189,197,199,202,219,221,231,237,244,261,269,276,281,302,304,307,317,345,360,361],descripion:248,descript:[11,15,16,23,27,29,30,37,42,43,63,64,66,68,70,71,72,74,76,80,85,86,89,90,96,99,102,110,111,128,130,131,137,144,157,168,171,176,177,187,194,195,197,202,217,219,221,227,230,231,232,243,244,248,249,250,251,252,254,258,261,264,273,339,341,345,355,356,370],description_str:72,descvalidateerror:217,deseri:[6,13,355,367],deserunt:28,design:[0,15,22,34,42,43,50,60,63,72,73,76,85,86,89,97,101,103,110,111,112,113,120,124,125,130,133,135,165,171,195,209,221,224,249,264,339,355,361],desir:[19,43,44,46,60,62,71,79,82,83,89,90,97,116,127,130,171,198,220,259,284,329,333,341,347,362],desired_perm:259,desk:113,desktop:[16,50],despit:[13,14,40,77,89,94,133,138,250],dest:[251,264],destin:[22,30,34,42,66,68,71,72,81,96,97,108,113,127,171,212,215,224,227,228,234,235,236,237,238,249,258,263,264,269,341,386],destinations_set:263,destroi:[8,34,66,98,99,115,147,156,158,171,176,218,236,264],destroy:227,destroy_lock:366,destruct:[20,164],detach:7,detail:[0,5,9,11,12,16,22,23,27,31,34,40,42,45,49,51,59,62,63,64,67,68,70,72,73,74,77,84,86,90,97,99,103,104,105,106,109,110,111,115,118,125,131,138,144,157,165,166,171,187,192,195,202,218,219,221,231,235,250,252,256,261,268,269,286,287,323,325,335,338,343,353,361,369,370,384,386],detail_color:171,detailkei:[202,250],detailview:386,detect:[2,20,22,34,40,59,74,94,110,113,125,147,163,166,180,187,296,369],determ:334,determin:[5,12,14,16,19,20,22,23,26,27,28,31,33,37,42,46,56,71,79,83,85,87,95,96,99,105,113,114,115,116,118,138,151,156,157,164,165,166,168,179,185,187,194,215,220,221,228,232,234,235,236,237,238,249,256,259,261,264,268,308,333,334,335,338,343,346,361,365,366],detour:[56,80,103,107,325],dev:[55,73,76,77,89,106,133,135,138,140,141,144,145,387],devel:103,develop:[0,2,3,5,6,7,11,16,19,22,29,31,39,42,46,50,51,55,58,59,60,62,64,67,72,73,74,76,77,78,81,88,90,97,99,100,102,103,104,105,106,107,110,112,117,118,128,130,137,138,141,142,144,150,169,170,176,181,187,207,208,213,224,245,256,264,269,330,335,339,345,387],devoid:338,dex:[13,27,90,104,106,111,344],dexter:[111,234,235,236,237,238],diagnos:[6,84],diagram:45,dialog:46,dialogu:[66,69,111,388],dice:[97,107,114,115,138,153,154,190],dicecmdset:200,dicenum:200,dicetyp:200,dict:[8,13,14,20,27,41,42,59,66,70,75,81,98,156,158,164,166,171,187,197,199,202,203,207,210,212,213,215,220,221,224,225,231,232,236,238,243,264,266,267,268,269,276,278,281,282,284,289,294,295,297,302,304,307,312,313,324,325,327,334,339,340,342,344,345,346,353,356,361,381,386],dictat:[20,91,124],dictionari:[6,13,14,20,31,42,48,66,71,76,81,88,91,92,114,115,131,169,171,192,197,199,202,203,207,210,213,215,220,221,224,225,226,232,236,237,250,252,259,269,289,302,311,323,324,325,327,334,338,340,344,345,351,355,356,357,361,381,386],did:[11,12,29,39,68,72,77,80,83,89,97,98,99,104,105,106,113,116,156,194,264,336,357,361],did_declin:194,didn:[3,8,27,31,39,65,68,71,74,86,87,90,97,98,99,100,104,105,106,107,109,118,127,128,130,142,146],die:[7,97,109,112,114,124,200,220,325],dies:[112,248],diff:[11,143,200,269],differ:[3,5,7,8,11,12,13,14,15,16,19,20,22,26,27,29,31,32,33,37,40,41,42,43,44,46,50,51,53,54,56,59,61,62,63,65,66,67,68,70,71,72,73,74,76,77,78,80,81,85,86,87,89,90,91,92,93,95,97,98,99,100,101,103,104,105,106,107,110,113,114,115,118,119,125,126,127,128,130,133,134,136,137,138,146,147,150,151,153,156,157,162,164,165,168,171,180,181,183,187,195,199,200,201,210,211,214,219,221,228,231,232,234,235,236,237,238,241,251,252,264,266,268,269,273,276,278,282,286,308,313,315,332,333,335,339,341,345,354,357,361,365,369,370,386],differenti:[88,89,90,103,104,111,112,197,221,232,264,361],difficult:[5,79,85,112,130,147,237,238],difficulti:130,dig:[5,20,22,34,42,53,65,66,89,90,98,99,103,105,109,116,127,171,227,316],digit:[49,62,144,219,328,338,354],digitalocean:144,diku:[76,77,93,388],dikumud:63,dime:60,dimens:[71,76],dimension:90,dimenst:107,diminish:62,dimli:72,dinner:[70,112],dip:106,dir:[2,8,9,11,37,67,74,77,80,90,93,104,106,107,131,133,135,137,138,143,144,146,354,361],direct:[9,13,20,27,30,42,46,48,49,59,66,68,71,72,74,78,87,90,99,115,117,125,127,134,144,146,171,209,215,225,252,259,284,345,347,354,358,361,388],direction_of_split:46,directli:[3,4,5,9,11,12,14,15,19,22,26,27,31,34,37,39,42,45,46,53,59,62,70,72,73,76,77,80,83,84,87,88,90,91,98,99,100,101,102,103,104,106,107,108,110,115,116,125,134,135,142,144,146,151,166,182,187,188,192,194,195,196,200,213,221,232,237,238,245,251,255,259,263,264,268,273,290,295,304,307,312,317,323,333,335,339,341,345,359,361],director:221,directori:[1,2,7,8,9,10,11,14,19,45,46,55,64,67,73,77,79,81,90,91,92,102,103,116,118,130,131,134,138,143,146,171,192,224,284,304,305,329,339,354,361],directorylist:329,dirnam:284,dirti:76,disabl:[7,8,26,31,46,62,66,79,81,94,113,136,166,182,203,221,230,231,232,251,259,307,346,351,362],disableloc:307,disableremot:307,disadvantag:[90,112,115,144,238],disambigu:[86,142,166,186,264,335],disappear:147,discard:[187,338],disconcert:86,disconnect:[6,9,12,13,36,40,41,43,46,49,53,76,86,89,112,115,116,150,151,156,168,171,176,179,181,187,216,264,294,295,296,302,303,304,307,312,313,316,322,323,324,325],disconnect_al:302,disconnect_all_sess:325,disconnect_duplicate_sess:325,disconnect_session_from_account:156,discontinu:136,discord:[67,78,133,138,142],discordia:60,discourag:[77,112,143],discours:112,discov:[97,109,112,333],discoveri:225,discret:103,discrimin:147,discuss:[0,22,73,76,78,79,81,92,108,112,115,138],discworld:59,disengag:[115,156,234,235,236,237,238],disk:[13,19,58,60,146,151,220,224,266],dislik:89,disonnect:13,dispatch:73,dispel:128,displai:[3,5,17,20,22,26,27,29,31,34,37,39,46,56,59,62,64,66,68,70,72,74,81,84,90,92,94,95,96,97,104,110,113,115,116,118,130,131,147,157,166,168,171,178,181,183,185,187,194,195,197,201,202,203,205,208,210,212,214,216,221,231,232,249,250,251,252,254,264,269,271,282,284,301,319,322,327,335,336,343,344,345,346,347,355,356,357,360,361,362,367,381,386],display:278,display_buff:343,display_choic:195,display_formdata:203,display_help:343,display_helptext:[266,345],display_len:361,display_met:205,display_nodetext:345,display_titl:195,dispos:[72,218],disput:115,disregard:22,dissect:98,dist:138,distanc:[19,45,70,71,77,85,100,220,237,238,264,361],distance_inc:238,distance_to_room:85,distant:[71,202,250],distinct:[40,65,76,77,101,238,365],distinguish:[68,166,232,238],distribut:[3,6,8,9,16,20,23,67,77,102,132,134,135,138,187,189,192,221,338,341,361],distribute_messag:187,distributor:23,distro:[134,135,138,140,142],disturb:[19,65],distutil:138,distutilserror:138,ditto:138,div:[17,42,46,50,74,117,267],dive:[68,86,107,108,119,138],diverg:56,divid:[14,77,92,199,250,361],dividend:199,divis:230,divisiblebi:92,divisor:199,divivid:111,django:[2,8,9,12,16,39,41,43,45,46,55,58,61,67,76,79,81,85,92,93,103,104,108,113,114,117,118,119,126,131,133,135,138,147,156,157,160,183,185,187,189,191,192,193,201,230,254,256,261,263,271,273,280,283,284,290,291,304,310,312,313,320,326,328,329,332,333,335,336,339,342,346,350,351,352,357,359,361,363,365,366,367,369,370,373,376,381,386],django_admin:384,django_filt:[365,370],django_nyt:79,djangofilterbackend:370,djangonytconfig:79,djangoproject:[135,381],djangowebroot:329,dmg:114,dnf:[134,138,140],do_attack:248,do_batch_delet:333,do_batch_finish:333,do_batch_update_attribut:333,do_create_attribut:333,do_delete_attribut:333,do_flush:[335,351],do_gmcp:308,do_hunt:248,do_mccp:297,do_msdp:308,do_mssp:298,do_mxp:299,do_naw:300,do_nested_lookup:171,do_not_exce:81,do_patrol:248,do_pickl:342,do_sit:113,do_stand:113,do_task:277,do_unpickl:342,do_update_attribut:333,do_xterm256:338,doabl:15,doc:[10,17,22,24,27,29,42,45,47,50,58,63,75,77,78,81,93,101,102,103,107,111,113,118,133,135,151,153,171,219,251,295,361,381,387,388],docker:[133,138,144,149,150,388],dockerfil:146,dockerhub:146,docstr:[29,30,74,81,86,98,104,105,113,166,171,182,195,208,220,221,231,232,251,345],document:[0,1,4,7,8,11,17,24,28,29,39,45,50,52,55,58,62,64,66,67,68,69,70,72,76,77,78,81,83,86,89,90,93,102,103,104,106,107,109,116,117,118,119,127,130,133,135,136,144,147,149,150,165,179,195,219,251,333,336,344,351,365,386],dodg:235,doe:[0,8,11,12,13,20,22,27,29,31,34,37,39,42,43,45,46,53,59,61,62,63,65,67,71,72,73,74,76,77,79,80,81,83,85,86,88,89,90,92,96,97,98,99,102,103,104,106,107,109,110,111,113,114,115,116,118,124,125,127,128,129,130,132,135,136,137,138,146,151,156,158,168,176,179,181,183,186,196,197,198,201,202,215,217,218,231,232,234,235,236,237,238,249,250,251,252,264,268,269,276,283,284,288,289,290,293,296,304,305,311,333,335,340,345,353,354,357,361,373,381,386],doesn:[0,2,8,9,13,14,16,22,27,34,45,46,55,58,59,66,67,68,70,71,72,73,79,83,85,87,89,92,97,98,104,106,107,110,112,113,114,116,118,127,128,130,132,138,141,142,143,144,147,150,151,189,192,196,202,209,210,221,236,259,277,284,297,304,308,333,338,345,356,361],doesnotexist:[156,158,160,187,189,194,197,199,202,204,210,212,218,219,220,221,227,228,229,234,235,236,237,238,240,243,244,245,248,249,250,252,256,263,264,268,273,276,291,317,333,336,341,348,352],doff:235,dog:19,doing:[2,6,8,12,13,19,20,22,27,31,34,40,44,45,46,48,62,70,71,74,77,78,79,83,85,89,90,92,98,101,104,106,107,111,112,128,130,131,133,144,151,156,168,194,197,209,221,232,234,235,236,237,238,243,244,248,249,252,258,264,278,315,345,351,357],dolor:28,dolphin:98,dom:46,domain:[76,134,144,147,341],domexcept:144,domin:112,dominion:67,dompc:67,don:[0,3,5,6,7,8,9,11,13,19,20,22,23,26,27,29,31,37,39,40,45,46,48,56,58,59,62,64,65,66,67,68,70,72,73,74,77,78,79,80,81,83,84,85,86,87,90,91,92,93,94,96,97,98,99,101,103,104,105,106,107,109,110,111,112,114,115,116,117,118,119,128,129,130,131,135,137,138,142,143,144,147,156,158,164,165,171,176,177,178,179,180,186,187,195,200,209,213,220,221,230,235,236,237,241,245,250,251,252,259,263,264,268,269,278,288,289,296,301,302,307,309,316,323,330,335,338,339,345,351,354,357,361,366,381,386],donald:5,donat:[78,144],done:[2,5,9,11,13,20,22,23,27,31,33,41,44,46,48,55,60,67,68,71,73,74,76,77,78,79,80,81,83,84,85,86,87,88,89,90,91,92,95,96,97,99,103,104,106,107,112,113,114,115,116,118,124,125,126,127,128,130,138,144,146,151,156,166,168,186,187,194,200,220,238,245,252,259,263,264,276,278,284,297,301,303,305,309,313,319,322,323,325,330,333,338,339,346,351,361,386],donoth:276,dont:[133,306],doom:269,door:[19,31,34,66,68,71,96,99,108,110,147,171,227],doorwai:227,dot:[4,68,165,171,339,361],dotal:[338,360],dotpath:361,doubl:[6,68,74,89,106,130,164,183,360,361],doublet:[164,165],doubt:[68,251],down:[2,4,5,7,13,20,22,26,27,37,39,46,49,58,60,62,66,68,71,72,74,76,79,80,83,85,86,89,90,94,96,97,102,106,109,110,112,113,114,116,118,119,120,121,122,123,138,144,146,147,156,171,181,210,224,232,235,236,249,252,258,264,269,276,278,284,286,293,294,301,302,322,323,325,338,346,347,361],download:[0,9,10,11,67,77,102,133,135,138,142,143,144,146,150],downtim:[83,147,348],downward:168,dozen:[60,76,81],drag:46,dragon:[88,98,100,104,105,107,112],drain:231,dramat:[13,101,110,113],drape:197,draw:[15,71,74,85,114,347],draw_room_on_map:71,drawback:[15,27,58,82,83,90,100,112,113,114,135,196,339],drawn:[71,72,90],drawtext:114,dream:[0,63,76,110],dress:197,drf:[365,367],drift:112,drink:[111,333,335],drive:[11,51,67,77,80,102,107,110,112,127,130,138,146],driven:[81,111,112,116,133,229,266],driver:135,drizzl:[37,129],drop:[9,15,22,31,33,34,46,53,58,59,67,73,76,78,80,81,89,90,92,96,98,99,100,103,104,105,106,112,113,124,125,127,135,144,171,177,197,212,218,229,235,238,244,258,264,293,335,339,361],drop_whitespac:347,dropdown:7,droplock:258,dropper:[212,235,238,264],drum:144,dtobj:361,duck:[19,106],duckclient:136,due:[5,20,22,39,41,45,49,53,55,65,68,77,83,90,91,97,106,128,138,144,165,181,212,263,264,286,322,325,332,338,354],duh:60,dull:[0,72,99],dumb:[99,325,338],dummi:[5,8,22,31,67,106,112,137,221,259,284,302,315,316,323,370],dummycli:315,dummyfactori:315,dummyrunn:[153,279,284,302,314,316,318],dummyrunner_act:315,dummyrunner_actions_modul:315,dummyrunner_set:[5,153,279,284,314],dummyrunner_settings_modul:5,dummysess:325,dump:[23,224,293],dungeon:[43,76,103,108],dupic:20,duplic:[20,73,164,171,278,335,354],durat:[48,82,129,236,355,362,388],dure:[6,13,20,29,31,37,40,41,46,53,54,64,65,67,74,76,83,107,110,112,115,116,118,129,133,138,146,156,164,182,192,202,215,218,245,248,250,251,259,261,275,293,303,339,341,345,354,381],duti:77,dwarf:72,dwarv:112,dying:[112,234,235,236,237,238],dynam:[8,12,23,29,44,46,58,62,69,72,95,101,103,117,130,144,156,160,166,178,181,182,186,189,203,221,231,232,234,235,236,237,238,256,263,264,273,278,333,335,336,341,343,345,352,355,361,386,388],dynamic_split:46,dyndns_system:144,each:[2,3,6,8,12,13,14,19,20,22,23,24,27,31,37,39,40,42,43,44,45,46,48,51,53,56,58,60,62,65,66,68,71,72,74,76,77,79,83,85,88,89,90,91,92,95,96,98,101,102,104,105,106,107,110,114,115,116,118,119,121,127,128,129,130,146,156,163,164,165,169,171,180,187,194,196,197,198,202,203,215,218,220,221,231,232,234,236,237,238,246,252,256,259,263,264,269,275,278,286,289,302,304,307,311,316,323,324,325,333,335,336,338,339,341,343,344,345,346,347,351,353,361,367,370],eagl:113,eaoiui:220,earler:99,earli:[2,234,235,236,237,238,286],earlier:[2,7,11,14,20,27,30,67,77,90,91,96,98,105,106,107,110,116,117,127,131,137,289],earnest:[108,112],earth:[95,147],eas:[20,22,58,85,104,128,144,146],easi:[0,7,8,9,11,14,17,22,27,29,34,37,45,48,55,59,60,61,65,66,68,70,72,74,76,83,85,88,91,92,94,95,96,98,105,106,107,110,112,113,114,115,116,125,128,130,131,133,135,142,144,146,165,169,176,197,203,232,345,351],easier:[13,27,37,42,48,49,58,68,73,74,76,79,81,85,88,89,90,91,92,97,98,101,104,105,106,107,109,110,112,113,114,118,119,128,144,220,232,234,235,236,237,238,249,277,326,336,346,361],easiest:[9,11,16,19,49,55,64,66,70,81,84,90,104,116,130,138,224,335],easili:[7,11,13,14,15,17,19,22,23,27,29,31,40,41,42,43,46,49,56,59,60,65,66,70,71,72,73,74,76,78,79,81,82,85,90,91,96,97,99,101,103,104,105,108,109,110,111,112,114,116,117,118,130,138,144,145,146,147,178,189,194,195,197,203,205,209,220,227,231,232,234,235,236,237,238,251,255,256,258,278,339,345,356],east:[71,72,81,87,171,215,250],east_exit:250,east_west:72,eastern:[72,91],eastward:250,eccel:347,echo1:83,echo2:83,echo3:83,echo:[0,2,19,22,26,39,42,48,49,65,71,74,76,82,83,87,98,99,105,106,111,115,116,125,129,139,141,144,145,146,151,156,158,169,171,176,181,197,200,212,221,243,244,248,249,250,264,282,289,304,307,343,361],echocmdset:98,echol:150,echowoo:98,econom:[58,76,103,104,107,112,133],economi:[37,60,110,114,126,194],ecosystem:146,edg:[11,19,50,347,361],edgi:71,edit:[0,6,7,9,13,14,15,22,25,29,31,39,42,46,53,55,58,62,64,66,67,70,72,73,79,81,84,86,88,90,91,92,94,104,112,118,119,130,131,133,135,137,140,143,146,169,171,178,181,195,201,203,207,208,210,211,216,217,218,254,259,261,264,266,268,269,333,343,366,381,386,388],edit_callback:[208,210],edit_handl:171,editcmd:68,editor:[6,11,16,22,42,55,60,66,67,68,70,72,74,75,80,89,106,107,133,138,171,178,180,181,195,217,273,339,343],editor_command_group:343,editorcmdset:343,editsheet:90,effect:[8,9,13,15,19,20,25,33,39,41,44,48,62,63,65,72,74,82,83,85,88,89,90,106,107,110,111,112,113,114,115,124,128,151,153,154,156,164,165,171,180,191,200,210,231,235,236,237,244,245,248,250,257,264,270,273,297,353,361,387],effici:[0,5,13,33,43,44,45,55,58,76,77,82,83,85,88,101,107,113,129,133,147,194,221,228,259,264,278,333,334,336,343,346],effort:[11,73,88,103,131,386],egg:143,egg_info:138,egi:286,eightbal:108,either:[5,6,9,11,14,17,19,20,22,23,27,31,37,40,42,43,45,46,49,56,62,66,67,70,71,72,73,74,79,83,85,86,87,88,89,90,92,97,98,100,101,103,104,106,107,109,112,113,114,115,116,127,128,135,144,147,151,156,158,164,165,166,181,186,187,188,195,207,213,214,216,220,221,227,231,232,234,237,238,259,264,268,269,273,275,276,278,282,293,305,309,316,334,335,336,345,347,353,354,356,358,361],elabor:[68,74,79,96,97,116],electr:144,eleg:73,element:[17,27,50,62,68,76,86,97,104,105,106,108,163,168,192,195,199,219,220,264,269,333,334,336,339,344,345,346,361,370],elev:[69,70,95,388],elif:[27,37,66,71,86,90,98,108,114,115,116,124],elig:192,elimin:[146,338],ellow:62,els:[3,8,11,12,19,22,27,29,31,32,37,44,46,48,49,51,62,66,67,68,70,71,72,74,80,81,83,84,85,86,90,92,94,95,96,97,98,99,105,106,108,110,113,114,115,116,124,126,127,130,131,135,144,147,192,194,197,203,219,234,235,236,237,238,252,263,313,335,361],elsewher:[12,20,43,83,90,102,104,130,165,250,284,325,333],elv:112,elvish:220,emac:[15,133],email:[11,77,103,108,119,138,150,156,157,201,341,355,361,362,381],email_login:[153,154,190],emailaddress:361,emailfield:[157,381],emb:[42,62,74,90,202,269],embark:127,embed:[42,45,62,103,111,267,344,353,361],emerg:[31,55,147],emi:220,emit:[23,46,60,81,98,165,169,187,204,264,323,354],emit_to_obj:[165,264],emo:80,emoji:136,emot:[22,29,76,86,111,112,115,177,194,220,221],emoteerror:221,emoteexcept:221,emphas:74,emphasi:74,emploi:362,empti:[3,6,8,9,11,12,15,20,22,27,32,34,44,45,46,48,58,59,62,66,67,71,74,77,86,90,92,97,98,101,103,104,105,106,107,108,111,113,114,116,117,124,131,137,138,146,150,162,163,169,171,182,195,205,207,221,231,268,269,282,289,293,315,316,332,339,341,345,347,358,361],emptor:192,empty_color:205,empty_permit:[157,254,261,381],empty_threadpool:329,emptyset:20,emul:[40,63,77,111,112,116,143,181,231],enabl:[7,46,62,128,131,134,136,141,146,147,156,187,193,203,230,307,362],enable_recog:221,enableloc:307,enableremot:307,encamp:70,encapsul:355,encarnia:133,encas:343,enclos:[25,26,106,183,201,353],encod:[19,52,72,90,112,295,308,312,313,338,357,361,388],encode_gmcp:308,encode_msdp:308,encoded_text:361,encompass:19,encount:[165,362],encourag:[68,78,85,97,117,136],encrypt:[56,134,147,176,192,304,305,309],encumb:111,end:[5,9,11,13,14,15,19,20,22,23,26,27,31,33,40,41,42,46,48,51,53,55,56,58,59,60,62,64,65,67,68,74,76,77,80,81,82,83,85,90,91,92,94,97,99,101,103,105,106,107,108,109,111,112,113,114,115,116,119,125,127,128,130,131,134,135,137,139,144,146,150,156,158,164,165,171,177,178,186,194,196,197,200,205,217,221,229,232,234,235,236,237,238,250,255,267,288,295,296,304,307,308,318,323,327,329,334,338,339,341,345,346,347,353,354,361,386],end_convers:27,end_turn:115,endblock:[92,117,130,131],endclr:[62,353],endfor:[92,130,131],endhour:81,endif:[92,130,131],endlessli:147,endpoint:[147,369,370],endpoint_url:192,endsep:361,endswith:338,enemi:[13,27,42,83,109,110,115,236,237,238,248,249,250],enemynam:27,enforc:[22,31,48,62,86,110,114,128,304,307,346,347,386],enforce_s:347,engag:[76,238,248],engin:[2,8,11,22,29,34,37,39,65,68,76,77,88,105,109,114,118,133,135,147,149,162,165,180,181,225,250,255,284,295,301,304,307,312,322,324,339,341],english:[6,16,55,61,133],enhanc:[46,62,94,106,224,338,386],enigmat:99,enjoi:[7,97,109,110,138],enough:[3,31,32,33,43,44,60,74,76,77,78,79,80,83,85,86,89,90,92,96,97,98,101,102,104,105,107,110,113,116,118,128,138,144,165,171,219,220,244,252,345,346,347],enpoint:367,ensdep:361,ensur:[7,8,71,92,124,128,146,232,359,386],ensure_ascii:313,enter:[0,2,3,9,11,14,15,16,19,20,22,25,27,31,33,34,42,54,56,62,63,64,66,67,68,70,72,77,80,81,83,86,87,90,91,92,96,97,105,106,109,113,115,116,117,119,124,130,135,138,143,146,150,153,156,163,165,170,179,180,181,186,194,195,197,202,203,213,216,232,234,235,236,237,238,248,250,252,258,264,269,273,282,323,345,381],enter_guild:27,enter_nam:27,enter_wild:252,enterlock:258,enterpris:2,entir:[8,13,14,15,19,22,26,27,31,44,45,48,51,58,60,62,68,70,71,72,83,92,97,102,103,106,110,112,116,118,144,195,220,221,232,251,258,259,264,269,335,339,347,351,353,361,386],entireti:[27,114,203,345],entit:341,entiti:[13,19,23,27,31,32,33,34,37,40,41,42,43,45,75,76,77,100,101,102,103,104,108,110,113,115,128,155,156,166,171,181,187,188,189,221,227,243,258,264,266,267,268,269,270,273,274,276,278,325,333,334,336,341,345,346,350,358,361],entitii:41,entitl:144,entranc:72,entri:[11,13,16,19,20,22,23,24,27,31,41,75,79,81,90,92,97,98,102,104,108,112,127,136,137,138,142,156,166,178,179,182,192,205,212,219,232,234,235,236,237,238,253,254,255,256,259,264,278,303,316,333,339,341,343,345,347,354,355,358,361,362,386],entriest:168,entrypoint:146,entrytext:[92,256,341],enul:134,enumar:361,enumer:131,env:[192,284,294],environ:[1,2,9,14,67,74,77,79,81,95,106,110,112,138,139,144,146,147,181,182,192,246,284,294,310,319,339,345,359,368,384],environment:284,eof:304,epic:133,epilog:251,epoch:[19,91,348],epollreactor:329,epub:133,equal:[5,6,20,22,50,51,62,66,70,81,85,97,99,101,104,105,112,127,164,202,221,230,231,234,235,236,237,238,264,361],equip:[15,62,89,103,111,112,197,234,235,237,238],equival:[9,13,14,33,39,48,53,59,62,102,106,108,138,147,151,155,171,255,302,308,333,361,366,386],eras:[67,238],err:[31,90,315,339],err_travers:[34,264],errback:[48,281,284,293,294,361],errmessag:164,errmsg:[116,354],erron:[61,116,293,347],error:[0,3,4,6,8,9,11,13,15,16,19,20,22,27,30,31,33,34,39,40,42,45,48,55,56,58,61,62,64,67,68,72,73,74,77,88,89,90,93,97,99,104,105,107,108,109,113,116,125,126,130,134,135,136,138,141,143,144,147,156,162,164,165,171,187,210,215,219,221,231,232,245,249,251,259,264,267,268,276,281,283,284,286,288,293,307,315,335,338,339,341,344,345,353,354,357,361,362,366,367,388],error_check_python_modul:284,error_class:[157,254,261,381],error_cmd:87,error_msg:327,errorlist:[157,254,261,381],errorlog:134,escal:[12,31,51,112,168,258],escap:[62,92,177,181,251,267,338,353,360,381],escript:[68,195],especi:[16,31,40,43,68,72,83,103,104,106,110,134,135,138,205,220,339,346],esqu:104,ess:28,essai:133,essenti:[7,61,71,82,88,103,112,133,143,188,284,341],est:28,establish:[22,40,110,111,112,114,156,212,234,264,281,293,295,302,304,307,312,315,322,324],estat:46,estim:[84,269,351],esult:264,etc:[8,11,12,13,19,22,25,27,31,32,33,34,37,40,41,42,45,46,49,53,56,58,59,60,68,71,74,75,76,77,81,83,84,86,88,89,90,91,98,99,101,102,103,110,111,112,113,114,115,126,128,129,133,134,135,138,146,147,151,156,160,162,163,164,165,168,170,171,179,180,181,187,192,194,198,199,203,205,218,220,221,227,231,235,237,241,245,251,264,267,268,269,302,304,307,311,312,313,323,324,332,333,335,338,339,341,342,343,344,345,353,354,361,365,386],etern:27,ev_channel:158,eval:[42,194,267],eval_rst:74,evalstr:259,evalu:[22,74,101,111,163,194,259,267],evbot:[176,325],evcast:133,evcel:[344,347],evcolor:133,evcolum:347,evcolumn:347,eve:361,eveditor:[24,68,75,153,154,195,337,388],eveditorcmdset:343,even:[0,3,5,6,7,11,13,15,19,20,26,27,31,37,40,44,45,49,51,58,60,62,63,64,67,68,70,71,73,76,77,78,79,80,81,83,85,86,88,89,90,91,92,93,96,97,101,102,104,105,106,107,109,110,111,112,113,114,115,116,125,128,137,138,144,147,151,164,166,169,197,199,202,203,212,220,231,234,235,236,237,238,250,251,264,269,307,347,351,361],evenia:102,evenli:[19,199,361],evenn:146,evenna:67,evenni:79,evennia:[1,2,5,6,10,12,13,14,15,16,17,19,20,22,23,24,25,26,27,28,29,30,31,32,33,34,36,37,39,40,41,43,44,45,48,51,52,53,54,56,58,59,60,61,62,63,64,66,68,69,70,71,72,73,75,77,78,80,82,83,84,85,87,91,92,93,94,96,98,99,100,101,103,104,105,107,108,109,110,111,113,114,115,116,117,118,119,124,125,126,127,129,130,131,132,136,138,139,142,145,147,149,150,388],evennia_access:134,evennia_admin:386,evennia_channel:[139,142,145,176],evennia_dir:361,evennia_error:134,evennia_gener:118,evennia_launch:[7,153,154,279,282],evennia_logo:118,evennia_vers:284,evennia_websocket_webcli:312,evennia_wsgi_apach:134,evenniacreateview:386,evenniadeleteview:386,evenniadetailview:386,evenniaform:381,evenniagameindexcli:286,evenniagameindexservic:287,evenniaindexview:386,evennialogfil:354,evenniapasswordvalid:328,evenniapermiss:[366,370],evenniareverseproxyresourc:329,evenniaserv:36,evenniatest:[182,211,226,246,310,359,368,384],evenniaupdateview:386,evenniausernameavailabilityvalid:[156,328],evenniawebtest:384,event:[27,41,46,69,77,114,147,153,158,194,199,209,210,211,212,213,221,224,245,273,276,326,388],event_nam:[209,213],eventcharact:212,eventdict:354,eventexit:212,eventfunc:[66,153,190,206,210],eventhandl:210,eventi:[166,195,251],eventobject:212,eventroom:212,eventu:[13,22,31,49,51,55,56,59,78,79,83,86,90,109,110,112,115,116,118,130,144,151,156,162,163,180,182,200,212,220,221,250,259,264,268,269,281,289,315,323,324,336,340,341,345,347,379],evenv:[2,6,7,77,79,138,143],evenwidth:347,ever:[9,11,13,14,15,16,22,37,40,43,45,49,58,61,68,72,77,86,89,97,101,104,111,114,125,135,150,151,258,278,295,296,302,333,345],everi:[0,2,8,9,10,11,13,14,19,20,22,27,30,37,39,42,43,44,45,46,58,60,61,62,64,66,70,71,72,73,77,79,80,82,85,86,89,91,92,96,97,98,99,101,103,104,106,107,111,114,115,116,118,126,127,129,130,131,138,143,144,146,156,171,176,192,197,203,210,220,221,232,234,235,236,237,238,240,245,252,264,269,276,278,289,306,316,322,331,332,333,335,345,346,347],everror:210,everybodi:86,everyon:[8,9,11,22,23,27,31,33,37,43,51,62,77,80,90,104,107,108,110,112,114,115,116,127,129,132,136,141,145,150,151,171,177,178,200,234,235,236,237,238,264,302],everyth:[0,2,3,6,8,9,11,13,20,31,33,39,42,44,46,51,56,61,64,67,71,72,74,76,77,80,82,90,92,94,96,97,98,103,104,105,106,107,108,109,110,111,113,114,115,118,119,122,133,138,142,143,144,146,147,150,151,161,166,176,177,179,180,181,182,183,196,201,231,250,258,263,273,288,315,323,333,335,339,353],everywher:[67,88,103],evform:[19,75,153,154,337],evgam:176,evgamedir:74,evid:142,evil:[5,15,244,269],evmenu:[19,22,24,68,75,90,96,112,153,154,195,203,216,229,232,266,337,346,388],evmenucmdset:345,evmenuerror:345,evmor:[24,153,154,337,388],evtabl:[19,22,71,72,75,153,154,166,203,268,337,344,346,361],evtable_arg:346,evtable_kwarg:346,exact:[5,22,27,31,63,86,101,104,108,156,163,171,180,188,221,238,255,264,268,269,334,335,357,358,361,365],exactli:[3,9,11,12,37,44,48,51,53,55,56,58,62,70,72,74,77,90,91,92,97,98,101,102,104,106,108,111,112,114,116,118,138,146,151,221,231,264,284,335,358],exam:171,examin:[7,11,12,13,22,31,44,46,49,56,65,68,90,96,97,98,99,101,114,116,156,171,194,241,249,250,316,366],exampl:[2,4,5,6,7,10,11,12,13,14,15,16,17,19,20,22,29,30,32,33,34,39,40,42,43,44,45,48,51,53,56,58,59,62,63,64,65,66,68,71,72,73,74,76,77,79,80,81,82,83,84,86,87,88,89,90,91,94,95,96,97,98,99,100,101,103,104,105,106,107,108,109,110,111,112,113,116,118,124,125,127,128,129,130,134,138,140,141,145,146,147,151,153,156,160,163,164,165,166,169,170,171,176,177,178,179,180,182,186,188,189,194,195,197,199,200,202,203,204,205,214,215,218,219,220,221,224,227,228,229,231,232,234,235,236,237,238,240,244,245,248,250,251,252,256,259,263,264,269,273,276,278,289,304,307,308,313,316,325,329,332,333,335,336,337,338,340,344,345,346,347,348,352,353,354,355,358,359,361,362,369,370,381,386,388],example1_build_forest:215,example1_build_mountain:215,example1_build_templ:215,example1_legend:215,example1_map:215,example2_build_forest:215,example2_build_horizontal_exit:215,example2_build_verticle_exit:215,example2_legend:215,example2_map:215,example_batch_cod:[14,153,190,239],excalibur:96,exce:[95,193,234,235,236,237,238,327,351],exceed:327,excel:[31,37,60,88,133],excempt:164,except:[6,13,15,19,20,22,26,31,34,37,42,48,51,56,62,67,68,70,72,74,77,79,80,82,83,85,86,90,97,99,101,103,105,106,107,108,112,115,116,125,126,127,128,130,131,138,143,144,156,158,160,162,165,166,179,180,187,188,189,194,197,199,202,204,209,210,212,213,217,218,219,220,221,227,228,229,231,234,235,236,237,238,240,243,244,245,248,249,250,251,252,256,258,259,263,264,268,273,276,284,289,291,293,305,307,309,313,317,329,333,336,338,341,344,345,347,348,352,353,354,356,361],excepteur:28,excerpt:26,excess:[31,42,68,113,179,180,263,339],exchang:[14,37,111,144,194,342],excit:[25,98,99,112,137],exclam:80,exclud:[77,101,108,116,126,197,218,250,263,264,343,345,365],exclude_channel_messag:188,exclude_cov:197,excluded_typeclass_path:181,exclus:[27,31,110,264,273,334,345],exclusiv:341,exe:[7,9,138],exec:[27,42,96,269,345],exec_kwarg:345,exec_str:319,execcgi:134,execut:[2,7,8,9,14,15,20,22,26,27,33,34,37,42,46,48,49,51,56,62,66,67,68,70,72,76,77,81,82,83,91,92,96,97,103,106,109,112,138,143,156,158,160,161,162,166,169,170,178,179,181,182,189,195,210,215,221,232,243,251,256,258,259,263,264,268,269,270,273,277,281,289,291,294,295,301,304,307,312,316,319,322,323,333,335,336,339,345,346,352,353,361],execute_cmd:[12,22,34,116,124,125,156,158,166,264,289,323],execute_command:22,executor:2,exemplifi:[53,82,107,109,111],exercis:[3,72,80,86,90,96,106,115,116,129,193,230,310,320,352],exhaust:68,exhaustedgener:219,exidbobj:264,exis:87,exist:[2,6,9,11,12,13,14,19,20,22,25,27,29,31,37,40,42,43,44,49,53,55,58,66,68,70,71,72,77,80,81,85,86,87,88,89,90,92,99,100,101,103,105,106,109,110,113,115,116,117,118,124,131,139,142,146,155,156,157,158,164,165,166,171,178,179,180,181,187,192,193,195,196,202,207,209,210,213,214,217,218,220,221,228,231,237,249,252,258,259,263,264,266,269,276,277,284,288,290,304,305,309,317,322,323,325,333,334,335,336,339,341,343,344,345,347,354,356,361],existen:323,exit:[7,9,20,26,27,31,42,45,58,68,71,72,75,76,80,85,86,90,93,96,97,98,99,100,103,104,106,107,108,109,116,127,135,138,146,150,153,162,164,165,171,181,194,195,211,212,215,216,227,228,232,238,248,249,250,251,252,258,263,264,269,304,316,333,341,343,345,346,359,365,367,370,384,388],exit_alias:[171,227],exit_back:90,exit_cmd:[27,346],exit_command:264,exit_nam:[71,171,227],exit_on_lastpag:346,exit_ther:90,exit_to_her:171,exit_to_ther:171,exit_typeclass:[252,359,384],exitbuildingmenu:68,exitcmdset:[20,264],exitcommand:264,exitnam:227,exitobject:87,exitviewset:370,exixt:302,exot:22,exp:344,expand:[11,30,34,39,62,64,65,66,71,72,76,77,78,79,80,89,90,94,96,98,99,101,103,104,105,106,107,110,111,112,116,122,124,126,129,135,144,153,154,171,190,201,227,234,235,236,237,238,264,338,347],expand_tab:347,expandtab:[338,347],expans:[87,110],expect:[6,8,9,22,23,31,33,34,41,44,48,56,59,61,62,66,67,73,74,88,90,97,103,104,106,108,109,110,116,128,131,143,144,171,179,180,192,195,207,209,219,231,245,252,258,264,268,269,282,332,335,345,346,351,370,373,386],expected_return:8,expens:[44,144,358],experi:[0,3,11,27,64,72,89,91,94,98,101,106,107,109,110,114,138,144,146,243],experienc:[1,27,77,106,119,133],experienced_betray:27,experienced_viol:27,experiment:[30,181,185,261,387],expert:231,expir:192,explain:[8,11,22,27,58,63,68,76,77,85,90,99,103,112,113,118,127,128,131,133,141],explan:[20,22,62,77,81,85,92,328],explicit:[20,39,53,59,63,66,68,74,92,97,118,141,219,284,306,333],explicitli:[6,20,29,31,32,33,42,43,44,45,56,58,62,67,74,79,80,84,90,96,104,105,107,111,112,138,165,166,171,219,264,269,278,335,338,341,357,367],exploit:112,explor:[3,12,39,45,48,56,66,72,92,99,104,106,109,115,138,181],expos:[131,147],express:[22,27,31,42,64,65,74,88,101,104,108,117,131,171,199,219,238,267,361],ext:27,extend:[19,23,45,58,60,72,74,76,85,88,92,96,98,102,103,105,106,114,117,119,120,121,122,123,124,125,130,131,133,149,150,160,166,178,182,187,192,196,198,202,210,213,252,261,263,264,335,338,355,381,386,388],extended_room:[153,154,190],extendedloopingcal:278,extendedroom:202,extendedroomcmdset:202,extens:[6,8,27,39,59,62,67,72,74,76,77,88,99,103,104,110,117,135,138,160,192,225,234,299,307,341,350,360],extent:[68,88,112,114],extern:[7,16,23,42,53,60,72,74,76,86,89,103,107,110,112,113,134,135,137,138,139,142,144,145,149,153,176,184,187,189,224,268,282,284,286],external_discord_hello:289,extra:[5,8,15,20,22,27,31,34,41,45,46,50,62,73,80,81,83,86,89,90,98,106,107,108,111,112,116,118,128,131,134,135,144,156,157,160,166,178,194,202,204,217,221,231,250,264,267,278,281,332,334,338,339,343,345,347,354,355,356,360,361],extra_environ:339,extra_spac:361,extract:[6,13,41,86,88,97,166,221,225,259,298,312,346,361],extract_goto_exec:345,extrainfoauthserv:304,extran:203,extrem:[0,9,88,97,107,151,234,235,237,238,297,355],eye:[6,62,72,110,269,346],eyed:[113,118],eyes:[22,73,89],eyesight:[31,62,90],f6d4ca9b2b22:146,face:[98,109,112,144,147,204,328,345],facil:354,facilit:112,fact:[7,13,15,22,34,45,48,55,56,62,65,76,80,83,89,90,102,103,104,110,116,124,128,131,147,150,325,353],factor:[62,66,91,95,235,237,281,295,296],factori:[53,231,281,286,294,295,296,302,303,304,305,307,315],factory_path:158,fade:[60,220],fail:[8,13,14,15,19,20,27,34,41,42,48,49,61,67,79,86,97,105,109,110,113,115,124,127,136,138,147,151,165,180,187,200,221,227,230,231,249,258,259,264,268,276,281,282,284,288,295,296,306,327,332,333,335,353,355,357,361,386],failmsg:327,failtext:114,failur:[8,15,48,111,114,138,156,250,286,293,295,296,315,327,338,361],failure_teleport_msg:250,failure_teleport_to:250,faint:37,fair:[111,112,114,200],fairli:[85,92,143,197,203,232,235],fake:[198,315,325,333],fall:[0,6,20,37,61,72,74,77,91,104,114,153,156,180,204,221,250,361,381,386],fall_exit:250,fallback:[71,76,87,162,166,189,202,259,276,284,308,313,333,345,356,361],fals:[8,12,13,19,20,22,26,27,29,30,31,32,34,37,44,45,46,58,68,71,74,79,80,81,83,86,87,90,91,94,95,98,99,104,108,113,115,116,125,126,127,130,147,156,157,160,163,164,165,166,171,178,187,188,189,192,194,195,197,198,199,200,203,207,210,212,214,220,221,227,232,234,235,236,237,238,251,252,254,255,256,258,259,261,263,264,266,268,269,273,274,275,276,278,281,284,286,290,293,294,301,302,303,304,307,313,321,323,325,327,329,332,333,334,335,336,338,339,341,343,345,346,347,348,351,353,356,357,358,360,361,362,365,366,381],falsestr:203,falsi:[98,105],fame:109,famili:[27,67,89,113],familiar:[1,20,22,45,67,72,83,85,90,96,97,101,104,105,106,117,130,138,144],famou:[28,343],fan:133,fanci:[2,16,17,114,197],fantasi:[108,112],faq:[74,306,388],far:[7,11,14,20,22,59,62,66,68,70,71,72,76,80,85,86,87,89,97,99,101,103,104,106,107,137,143,144,146,164,238,252,258,286,311,333,343,351],fare:104,fart:113,fashion:72,fast:[0,11,13,16,19,34,44,60,77,83,88,91,95,106,112,135,169],faster:[5,91,108,112,135,187,189,194,333],fastest:74,fatal:284,faulti:106,favor:19,favorit:[73,80],fear:19,feat:112,featgmcp:308,featur:[0,2,3,9,11,16,17,19,20,22,23,26,41,42,45,62,63,66,68,70,71,72,73,77,78,79,81,88,89,91,93,94,96,97,98,99,109,110,111,112,116,132,138,142,147,156,165,166,202,210,221,232,251,278,301,322,326,335,343,361,386,387,388],februari:91,fed:[22,31,48,302,333,342,344],fedora:[11,134,138,140],feed:[9,16,27,42,71,76,114,145,158,176,286,303,304,335],feedback:[3,34,73,110,125,188,244,343],feedpars:[145,303],feedread:158,feel:[11,17,45,48,60,66,68,70,73,74,76,77,78,85,89,92,97,101,104,109,110,112,113,114,116,119,123,125,130,138,141,144,220,232,235,241,250],feend78:214,feint:115,felin:19,fellow:344,felt:[37,129],femal:204,fetch:[9,11,13,101,130,138,144,146,215,333,346,386],few:[2,3,8,11,13,16,17,20,22,23,26,30,31,34,48,54,58,59,62,66,67,71,74,76,77,79,86,97,99,102,104,106,110,111,112,114,115,116,127,128,133,135,147,151,181,199,220,245,263,299,308,327,338,347,361,386],fewer:[60,106,325,334],fg_colormap:360,fgstart:360,fgstop:360,fiction:[27,76,91,345],fictional_word:220,fictiv:220,fiddl:250,field:[7,9,13,23,30,32,33,34,37,41,43,45,58,64,88,90,100,104,117,130,135,137,157,160,185,189,203,207,221,238,248,254,256,258,261,263,264,268,269,271,273,274,278,291,332,333,334,335,336,344,352,357,358,365,367,381,383,386],field_class:381,field_nam:365,field_or_argnam:30,field_ord:381,fieldevmenu:203,fieldfil:[153,154,190],fieldnam:[32,90,203,274,335,351,381],fieldset:[157,185,254,261,271],fieldtyp:203,fifo:361,fifth:71,fight:[20,83,105,109,110,115,234,235,236,237,238,249],fighter:[234,235,236,237,238],figur:[0,3,5,6,11,22,31,49,56,71,73,97,102,104,110,117,127,130,144,194,196,199,221,284],file:[0,2,3,5,6,7,9,10,12,19,20,23,29,31,36,46,51,53,54,55,58,62,64,67,68,72,73,77,79,80,81,86,87,88,89,90,91,92,94,96,98,99,102,103,105,106,107,112,116,117,118,119,124,126,127,130,131,133,134,135,137,138,139,140,142,143,144,145,146,147,149,150,151,153,154,156,157,170,178,187,192,193,195,197,198,199,201,215,216,220,224,231,251,252,254,258,261,269,283,284,304,305,308,309,316,317,318,322,329,330,332,337,344,345,354,357,358,361,381,386,388],file_end:[339,361],file_name_charset:192,file_overwrit:192,filelogobserv:354,filenam:[11,19,102,192,339,344,354],filename1:284,filename2:284,filepath:192,files:192,filesystem:[138,146,147],fill:[2,7,26,62,64,71,72,86,90,106,130,139,203,231,267,332,333,338,344,346,347,361],fill_char:347,fill_color:205,fillabl:203,fillchar:[62,338,353,361],filo:361,filter:[7,20,23,45,58,62,85,92,101,126,130,153,164,169,187,195,202,221,263,264,361,363,364,370,386],filter_backend:370,filter_famili:[45,101],filter_nam:365,filterset:365,filterset_class:370,filthi:132,final_path:192,final_valu:48,find:[0,3,5,6,8,9,11,13,14,15,17,19,20,22,23,26,29,30,31,32,33,34,37,42,43,45,48,49,53,55,58,60,62,64,65,66,68,70,71,73,74,76,78,79,80,81,83,86,88,89,90,91,92,97,98,99,100,101,102,103,104,105,107,109,110,112,113,114,116,117,118,119,130,131,132,133,135,136,138,143,144,146,147,151,156,163,171,188,199,202,215,221,227,231,232,250,251,264,268,269,275,284,298,333,334,338,340,358,361],find_apropo:255,find_topicmatch:255,find_topics_with_categori:255,find_topicsuggest:255,findfoo:108,fine:[16,22,34,40,43,44,49,58,70,77,86,87,96,99,103,104,105,107,109,111,113,116,119,125,158,250,333,341,361],finer:49,finish:[9,15,22,41,48,74,83,90,109,110,116,118,130,146,153,156,166,168,179,194,202,218,249,264,284,288,296,307,322,329,340,345,361],finish_chargen:27,finit:97,fire:[7,12,19,22,27,37,41,44,70,72,80,82,83,90,99,104,107,110,125,126,129,158,162,210,236,237,264,267,269,276,284,293,295,312,345,346,351,361],firebal:112,firebreath:[90,104,107],firefox:142,firestorm:82,firestorm_lastcast:82,firewal:144,first:[0,3,5,6,7,8,9,11,12,13,14,15,16,19,20,22,25,26,27,29,31,34,37,39,40,41,42,45,46,48,49,50,51,53,55,56,58,60,61,62,64,67,71,74,76,79,80,83,85,86,88,90,91,92,93,94,96,97,98,99,100,101,102,103,105,107,108,109,110,111,112,113,114,115,116,117,118,119,123,125,126,127,128,129,130,131,135,136,138,139,141,143,144,145,146,147,149,151,156,158,160,163,164,171,179,180,183,187,189,192,194,195,197,198,199,201,202,215,216,219,220,221,227,229,230,234,235,236,237,238,240,245,248,249,250,251,252,256,258,263,264,268,269,273,276,284,288,289,291,302,304,307,308,312,313,315,316,322,325,333,335,336,338,339,341,343,344,345,347,348,351,352,353,360,361,366],first_lin:116,first_nam:157,firsthand:31,firstli:[6,34,67,100,101,144],firstspac:360,fish:[114,165,218],fist:[105,269],fit:[10,13,31,59,63,85,90,103,113,123,127,130,135,235,238,344,346,347,361],five:[22,72,82,101,119,123,144,165,232,361,362],fix:[0,3,6,8,14,15,19,22,27,42,45,50,56,73,77,78,89,96,104,106,107,110,112,113,116,127,132,138,143,144,151,220,284,344,346,347,357],fix_sentence_end:347,fixer:101,fixing_strange_bug:11,fixtur:[182,193,230,246,310,320,352,359,368],fizzl:112,flag:[11,14,15,20,22,27,30,44,53,55,56,58,60,67,82,83,84,86,90,99,104,106,110,113,116,119,156,162,166,171,248,258,259,264,284,291,295,304,307,312,323,343,345,361],flair:113,flame:[82,237],flash:[15,245],flat:[0,19,45,68,75,88,102,153,269,388],flatfil:88,flatten:269,flatten_diff:269,flatten_prototyp:269,flattened_diff:269,flatul:37,flavor:[99,111,144,237],flavour:[33,128],flaw:127,fled:[115,248],fledg:[16,60,112,116,122,130,144,170,200],flee:[115,124,238,248],fleevalu:115,flesh:[90,99,112],flexibl:[14,27,37,42,46,59,60,68,72,80,83,85,89,104,107,111,112,113,114,115,131,144,160,171,194,195,203,232,258,333,361,386],fli:107,flick:362,flip:[27,94],flood:[19,26],floor:[66,95,221,230],flow:[2,11,17,44,46,53,56,58,76,110,113,341,353],flower:[33,34,49,99,100,101,108,110,111,171],flowerpot:[49,89],fluent:133,fluffi:[104,105,107],fluid:[17,50],flurri:221,flush:[9,22,72,135,181,276,333,335,351],flush_cach:351,flush_cached_inst:351,flush_from_cach:351,flush_instance_cach:351,flusher:351,flushmem:181,fly:[19,20,22,23,27,37,42,49,76,77,80,96,101,103,104,108,112,117,156,177,179,180,187,189,256,264,278,291,302,305,309,333,339,348,361,386],foci:112,focu:[79,110,112,115,119],focus:[7,88,89,116,133,238,367],foe:235,fold:[112,232],folder:[7,8,9,14,15,19,46,55,58,64,69,71,72,74,76,77,80,84,89,90,92,99,102,103,104,106,114,115,116,117,118,124,125,130,131,134,138,143,146,147,150,151,154,191,215,234,235,236,237,238,284],folder_nam:77,follow:[3,5,6,7,9,11,12,13,14,15,17,20,22,23,26,27,29,30,31,34,37,43,45,46,48,50,51,53,55,58,59,62,64,66,67,68,70,71,73,74,79,81,85,86,90,91,92,95,96,97,98,99,101,103,104,105,106,107,110,113,114,115,116,119,124,126,127,130,131,133,134,135,137,138,139,141,143,144,146,147,151,156,158,160,162,163,166,171,179,180,182,187,189,195,197,198,200,204,210,212,214,215,221,231,232,236,237,244,250,256,258,259,263,264,267,269,273,274,288,289,299,308,312,313,316,326,333,335,338,339,341,344,345,347,353,354,361,369],follwo:259,fond:91,font:[46,72,74,81,103],foo:[8,22,27,32,41,43,53,56,59,98,101,102,103,104,106,108,232,345,359],foo_bar:59,foobarfoo:49,fool:112,foolish:244,footer:[92,130,166],footnot:[16,74],footprint:181,footwear:89,for_cont:264,forai:103,forbid:86,forbidden:11,forc:[8,20,22,45,46,48,66,90,94,95,97,98,107,113,114,115,116,127,134,138,146,147,151,158,165,169,171,194,202,204,218,220,221,231,259,264,268,275,295,296,302,307,325,346,347,351],force_add:231,force_init:264,force_repeat:[37,115,276],force_restart:276,force_str:357,forcibl:[37,275],fore:322,forebod:202,foreground:[3,62,128,146,198,284,353],foreign:[45,101],foreignkei:[160,263,273,332,335,352],forens:225,forest:[14,43,65,72,103,202,215],forest_meadow:43,forest_room:43,forestobj:65,forev:37,forget:[11,14,19,22,48,58,67,81,86,91,96,98,104,106,107,116,117,133,137,142,146,221,339],forgiv:113,forgo:249,forgotten:[71,82,96,104],fork:[67,133],forloop:92,form:[5,6,8,13,14,19,20,22,23,27,29,30,31,34,42,43,44,45,55,56,59,61,62,63,64,69,74,75,76,77,90,98,103,105,107,108,110,115,116,119,125,153,156,157,158,163,165,166,169,171,179,180,182,185,187,188,189,194,203,204,220,221,225,231,254,256,258,259,261,264,268,269,271,274,276,278,282,302,304,308,312,323,325,332,333,334,335,338,339,341,342,343,344,347,353,354,357,358,361,362,363,367,370,380,386],form_char:344,form_class:386,form_template_to_dict:203,form_valid:386,formal:[31,110,264,308],format:[3,11,15,17,19,20,22,29,42,51,55,56,59,60,61,62,63,66,68,70,72,73,74,76,86,90,91,92,94,101,105,106,113,130,133,135,145,147,164,166,168,171,178,180,182,186,187,192,195,197,198,199,203,213,221,224,231,232,236,243,251,252,256,264,266,268,269,274,284,289,299,304,324,326,333,335,338,339,341,343,345,346,347,348,353,354,356,361,362,367,370],format_attribut:171,format_available_protfunc:268,format_callback:207,format_diff:269,format_extern:187,format_grid:361,format_help:251,format_help_entri:178,format_help_list:178,format_messag:187,format_output:171,format_pag:346,format_send:187,format_t:361,format_text:195,format_usag:251,formatt:[203,268,345,346],formatted_list:187,formcallback:203,formchar:[90,344],formdata:203,former:[17,77,128,135,345],formfield:357,formhelptext:203,formset:332,formstr:90,formtempl:203,formul:131,forth:[11,19,171,237],fortress:72,fortun:[9,22,79,85,92,104,109],forum:[9,67,73,76,78,89,112,138,144,145],forward:[3,14,15,26,27,74,91,92,99,111,112,119,127,128,144,156,160,189,214,224,256,263,273,329,333,335,336,344,346,352],forwardfor:140,forwardmanytoonedescriptor:[263,273,352],forwardonetoonedescriptor:[263,273,352],foul:42,found:[3,4,6,8,9,12,14,15,16,19,20,22,27,29,30,31,34,35,39,42,43,45,46,48,53,55,56,64,67,68,71,74,76,79,81,85,86,89,90,96,97,98,101,102,103,104,105,106,108,109,113,114,115,116,131,132,135,138,144,147,153,156,161,162,163,164,166,171,179,180,187,192,194,195,207,209,210,212,215,221,231,250,256,259,264,267,268,269,275,278,283,284,290,299,302,313,323,325,333,334,335,338,339,340,341,345,347,351,353,356,358,361,363],foundat:[71,76,101,133,234],four:[15,19,29,33,53,58,62,72,74,79,85,95,108,114,122,165,189,202,259],fourth:85,fqdn:144,fractal:88,fraction:[8,112],frame:46,framework:[46,50,77,117,118,130,182,234,237,357,365,366,367,369,370],frankli:63,free:[7,10,43,55,66,68,73,76,77,83,89,101,110,112,115,116,128,130,133,144,192,194,221,232,235,268],freedn:144,freedom:[0,15,87,112,138],freeform:[112,114,115,197],freeli:[76,146,147,339],freenod:[67,78,133,138,142,144,158,176,325],freetext:[188,358],freez:[3,22,83,209],frequenc:220,frequent:[97,195],fresh:[9,13,20,90,104,150,284],freshli:72,fri:49,friend:[73,90,95,98,110,147],friendli:[68,74,106,130,132,160,231],friendlier:[187,264],frighten:236,from:[0,1,2,3,5,6,7,8,9,10,11,12,13,14,15,16,17,19,20,22,23,25,26,28,29,30,31,32,33,34,36,37,39,40,41,42,43,44,45,48,49,50,51,53,54,55,56,58,60,61,62,63,64,65,66,67,68,70,71,72,74,77,78,80,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,100,101,102,103,104,105,107,108,109,110,111,112,113,114,115,116,117,118,119,124,125,126,127,128,129,131,133,134,135,137,138,141,142,143,145,147,149,150,151,153,156,158,160,161,162,163,164,165,166,168,169,170,171,176,177,178,179,180,181,182,183,185,186,187,188,189,192,194,195,196,197,198,199,200,201,202,203,204,209,210,212,213,214,215,217,218,219,220,221,224,225,226,227,228,230,231,232,234,235,236,237,238,241,244,245,248,249,250,251,252,255,256,258,259,260,263,264,268,269,273,274,275,276,277,278,281,284,289,290,291,293,294,295,296,297,301,302,303,304,307,312,313,316,318,322,323,324,325,329,330,331,332,333,334,335,336,338,339,340,341,342,343,344,345,346,347,348,351,352,353,354,355,357,358,360,361,362,365,366,367,381,386,387,388],from_channel:158,from_db_valu:357,from_obj:[56,94,125,156,158,166,204,243,264],from_pickl:342,from_tz:362,frombox:293,fromstr:293,fromtimestamp:348,front:[11,14,31,42,46,96,98,101,106,114,134,140,147,149,152],frontend:[232,333],frontpag:[102,108],frost:111,frozen:[22,83,210],fruit:218,ftabl:361,ftp:360,fuel:[80,111,231,237],fugiat:28,fulfil:[104,109,284],full:[0,4,6,8,9,11,14,15,16,17,19,22,27,31,32,34,37,40,42,44,45,50,59,60,64,67,72,73,74,76,77,79,80,81,89,90,93,98,99,101,102,106,107,111,112,113,114,115,116,118,122,124,127,130,131,135,136,143,144,146,150,151,158,163,165,166,170,171,176,180,181,182,194,195,200,202,205,217,220,221,231,232,237,251,259,269,274,296,302,315,325,326,333,335,339,343,345,347,361,387],full_justifi:[42,267],full_nam:33,full_result:200,fuller:90,fulli:[5,13,22,27,51,58,76,79,90,96,113,119,138,144,147,151,156,220,259,264,276,312,324,341,361],fun:[0,72,94,99,110,111,112,118,133],func1:[171,259,316],func2:[171,259,316],func:[3,22,26,27,31,48,56,68,74,80,81,82,83,84,87,88,90,91,94,95,96,97,98,103,105,108,113,114,115,116,127,141,162,166,168,169,170,171,176,177,178,179,180,181,182,183,186,194,195,196,197,199,200,201,202,203,204,208,214,215,216,217,218,221,227,228,229,232,234,235,236,237,238,241,248,249,250,251,258,259,264,295,316,320,329,343,345,346,348,361,386],func_arg:293,func_kwarg:293,funciton:237,funcnam:[30,62,103,259,267,278,353],funcool:133,functioncal:293,functionnam:[293,353],functool:138,fundament:[22,34,43,89,103,104,106,107,112,264],furnitur:[14,43,45],furst:231,further:[3,7,10,11,13,19,20,23,39,40,42,45,56,58,66,67,71,72,74,87,89,96,97,104,108,113,144,146,151,165,171,196,220,236,238,269,284,308,361],furthermor:[73,74,128],fuss:146,futur:[13,26,33,48,55,67,74,76,90,91,99,105,106,110,113,116,119,120,121,122,123,135,138,146,168,210,249,252,289,334,355,362],futurist:91,fuzzi:[55,255,358,361],fuzzy_import_from_modul:361,gag:136,gain:[5,13,83,101,110,113,166,189,221,259,264],galosch:220,gambl:200,game:[1,2,3,5,6,7,10,12,13,14,15,16,17,20,22,23,25,26,27,28,29,31,33,34,36,37,39,40,41,42,43,44,45,46,48,51,54,55,56,58,59,60,61,62,63,64,65,66,67,68,70,73,74,75,77,79,80,81,82,83,84,86,87,88,92,93,94,96,97,98,100,101,102,104,105,106,107,108,109,111,113,115,117,118,120,121,122,123,124,125,127,129,130,131,132,133,134,135,136,138,139,141,142,143,145,147,151,155,156,157,158,160,162,164,165,166,168,169,170,171,175,177,178,181,182,183,184,186,187,188,189,190,194,195,196,197,199,200,201,202,203,205,208,209,210,211,212,214,215,219,220,221,228,232,234,235,236,237,238,247,250,251,256,258,260,263,264,273,275,276,279,284,286,287,288,289,295,296,301,303,304,307,308,315,316,317,322,323,325,332,334,335,336,339,340,341,343,344,348,351,353,354,361,387,388],game_dir:[354,361],game_epoch:[19,348],game_index_cli:[153,154,279],game_index_en:137,game_index_list:137,game_map:215,game_nam:[137,374],game_slogan:[67,374],game_statu:137,game_templ:102,game_websit:137,gamedir:[27,42,119,149,284,330],gamedirnam:90,gameindexcli:287,gamemap:215,gameplai:[112,144,157,192],gamer:[139,142],gamesrc:19,gametim:[19,75,153,154,199,202,210,337,388],gametime_to_realtim:199,gametimescript:199,gameworld:105,gammon:[133,299],gandalf:27,garbag:333,garbl:111,garden:133,garment:197,gate:110,gatewai:[151,313],gather:[8,22,56,69,118,129,136,162,163,250,282,286,341,358],gaug:[111,153,190],gaugetrait:231,gave:[37,77,80,97,104,128],gbg:338,gcc:[106,107,138],gear:[7,118,144,158,165,183,201],gemer:219,gen:17,gender:204,gendercharact:204,gendersub:[153,154,190],gener:[2,5,7,8,13,20,22,23,27,29,31,33,39,40,42,43,46,48,49,55,56,58,59,62,66,67,71,72,73,74,76,77,81,83,89,90,91,93,98,99,103,108,110,113,114,115,128,131,135,138,144,153,156,158,161,166,167,168,171,178,179,180,182,183,186,187,193,194,195,196,197,200,201,202,203,204,210,214,215,216,217,219,220,221,224,225,227,228,229,232,234,235,236,237,238,241,248,250,251,256,259,264,266,269,295,302,304,307,308,312,323,324,325,329,333,336,338,340,341,343,345,346,347,354,356,357,361,368,369,370,373,381,386,387,388],general_context:[153,363,372],generate_sessid:302,generic_mud_communication_protocol:308,genericbuildingcmd:195,genericbuildingmenu:195,genesi:144,geniu:218,genr:[73,77,298],genuin:112,geoff:251,geograph:65,geographi:85,geoip:224,geometr:72,geometri:72,get:[0,3,5,6,7,8,9,10,11,12,13,14,16,17,20,22,26,29,30,31,32,33,36,37,39,40,41,43,45,46,48,49,50,53,55,56,58,59,62,64,66,67,68,70,71,72,74,76,77,80,81,82,83,84,85,86,87,88,89,90,91,92,94,95,96,97,98,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,125,127,128,130,131,134,135,137,139,141,142,143,144,146,147,149,151,156,158,160,164,165,166,168,169,171,172,176,177,183,185,186,188,189,192,195,197,200,207,209,210,212,213,214,218,219,221,228,229,230,231,232,234,235,236,237,238,240,241,249,250,252,255,256,258,259,263,264,266,268,269,273,275,276,278,282,284,289,293,294,298,302,304,307,308,310,312,313,321,323,324,325,327,333,334,335,336,338,339,340,343,345,347,348,350,351,353,354,355,356,358,361,365,367,369,381,386,387,388],get_absolute_url:[131,187,256,335],get_account:[259,323],get_al:333,get_alia:334,get_alias:367,get_all_attribut:333,get_all_cached_inst:351,get_all_categori:255,get_all_channel:188,get_all_cmd_keys_and_alias:164,get_all_mail:214,get_all_puppet:156,get_all_sync_data:325,get_all_top:255,get_all_typeclass:361,get_attack:[234,235,236,237,238],get_attr:171,get_attribut:[334,367],get_available_nam:192,get_available_overwrite_nam:192,get_buff:343,get_by_alia:334,get_by_attribut:334,get_by_nick:334,get_by_permiss:334,get_by_tag:334,get_cach:333,get_cached_inst:351,get_callback:210,get_channel:[86,188],get_charact:323,get_client_opt:289,get_client_s:323,get_client_sess:[312,313],get_client_sessid:313,get_cmdset:186,get_command_info:[166,179],get_cont:367,get_context_data:386,get_damag:[234,235,236,237,238],get_db_prep_lookup:357,get_db_prep_valu:357,get_dbref_rang:334,get_default:357,get_defens:[234,235,236,237,238],get_display_nam:[3,68,70,90,95,221,252,264,335],get_err_msg:[31,99],get_ev:210,get_evennia_pid:361,get_evennia_vers:361,get_event_handl:213,get_exit:367,get_extra_info:[86,166,186,264,335],get_famili:[45,101],get_fieldset:261,get_form:261,get_formset:332,get_game_dir_path:361,get_god_account:288,get_height:347,get_help:[22,29,92,166,182,208,251],get_help_text:328,get_id:[130,334],get_info_dict:[301,322],get_initi:386,get_input:345,get_inputfunc:[289,308,325],get_internal_typ:357,get_kwarg:384,get_location_nam:252,get_mass:95,get_message_by_id:188,get_messages_by_channel:188,get_messages_by_receiv:188,get_messages_by_send:188,get_min_height:347,get_min_width:347,get_modified_tim:192,get_new:303,get_new_coordin:252,get_next_by_date_join:160,get_next_by_db_date_cr:[160,189,263,273,333,335],get_next_wait:213,get_nick:[334,367],get_nicklist:[158,296],get_numbered_nam:264,get_obj_coordin:252,get_object:[370,386],get_object_paramet:192,get_object_with_account:358,get_objs_at_coordin:252,get_oth:194,get_permiss:[334,367],get_pid:284,get_player_count:298,get_previous_by_date_join:160,get_previous_by_db_date_cr:[160,189,263,273,333,335],get_puppet:[12,156,323],get_puppet_or_account:323,get_queryset:386,get_rang:238,get_redirect_url:386,get_regex_tupl:221,get_respons:375,get_room_at:85,get_rooms_around:85,get_sess:325,get_session_id:367,get_stat:104,get_statu:294,get_subscript:188,get_success_url:386,get_sync_data:324,get_system_cmd:164,get_tag:[334,367],get_tag_queri:365,get_time_and_season:202,get_typeclass_tot:334,get_uptim:298,get_username_valid:156,get_valu:[289,308],get_value_displai:367,get_vari:[207,210],get_view_detail:368,get_width:347,get_worn_cloth:197,getattr:32,getbootstrap:50,getchild:329,getclientaddress:[53,304],getel:46,getenv:[284,294],getfromlock:258,getgl:46,getinput:345,getitem:231,getkeypair:304,getloadavg:143,getpeer:304,getpid:361,getsizof:351,getsslcontext:[305,309],getston:22,getter:[160,189,197,212,221,235,238,263,264,291,333],gettext:55,gfg:338,ghostli:250,giant:80,giantess:104,gid:[146,316],gidcount:315,gift:92,gig:112,girl:119,gist:[220,361],git:[2,9,10,55,58,60,67,74,81,133,135,138,143,144,146],github:[10,11,55,67,70,73,78,81,86,89,102,110,133,138,143,145,195,312,329,361,387],gitignor:11,give:[0,4,5,8,9,12,13,14,16,19,22,27,28,29,31,34,37,40,41,42,43,44,45,48,49,51,59,61,65,66,67,68,70,72,74,76,77,79,80,81,84,85,86,89,90,91,92,93,95,96,97,98,99,101,102,103,104,105,106,107,108,110,111,114,115,116,117,118,119,124,125,130,131,133,135,138,143,144,145,146,147,151,162,164,165,168,177,179,180,181,186,188,195,196,197,202,219,220,229,232,234,235,236,237,238,241,250,252,258,264,273,310,323,329,335,338,347,358,359,361,367,387,388],givelock:258,given:[3,5,6,8,11,12,13,14,15,19,20,22,23,26,27,30,31,32,34,37,40,42,44,45,48,49,56,58,59,61,62,64,65,66,68,70,71,74,77,78,79,80,81,85,90,91,96,98,99,100,103,104,106,107,109,111,112,114,115,116,124,128,130,131,140,144,146,151,156,162,163,164,165,166,168,169,171,176,178,180,181,187,188,189,195,196,197,199,200,201,202,203,204,205,207,209,213,218,219,220,221,227,231,232,234,235,236,237,238,243,249,250,251,258,259,264,266,267,268,269,274,275,276,278,282,284,289,290,293,302,307,308,313,316,319,323,324,325,326,328,329,333,334,335,336,338,339,341,342,343,344,345,346,347,348,351,353,354,356,357,358,359,361,366,373,386],given_class:383,giver:[111,235,238,264],glad:97,glade:103,glanc:[19,20,22,68,85,90,97,195,221],glance_exit:68,glass:[218,241,244,245],glob:177,global:[11,14,22,23,25,27,30,34,39,40,42,44,45,46,60,62,65,68,77,88,96,108,110,126,129,140,146,171,192,202,210,219,221,227,258,264,267,269,270,273,281,284,289,291,294,315,316,339,340,341,345,348,353,358,359,361,374],global_script:[37,153,340],global_search:[14,19,68,90,97,156,221,264,334],globalscript:181,globalscriptcontain:340,globalth:359,globe:[118,144],glori:109,glorifi:231,gloriou:101,glossari:[138,388],glow:72,glu:36,glyph:293,gmcp:[30,56,76,308],gmsheet:90,gmt:103,gmud:136,gno:68,gnome:136,gnu:15,go_back:232,go_up_one_categori:232,goal:[37,55,74,97,109,110,113,133,147,220,387],goals_of_input_valid:381,goblin:[27,42,103,171,269],goblin_arch:269,goblin_archwizard:269,goblin_wizard:269,goblinwieldingclub:42,god:[31,99,150,288],godlik:221,goe:[0,3,22,24,53,58,66,67,68,71,73,77,83,92,107,109,112,114,116,125,127,143,144,164,165,238,252,264,304,307,322,323,360,361,386],goff:219,going:[0,8,27,46,53,59,66,70,71,72,78,81,90,91,92,95,97,99,101,104,106,108,110,112,115,117,127,130,139,144,146,149,195,212,221,234,235,236,237,238,252,264,281,286,338,345,367],goings:286,gold:[27,42,95,96,107,111,339],gold_valu:96,goldenlayout_config:46,goldenlayout_default_config:46,gone:[11,31,37,49,96,99,104,106,108,109,112,146,276],good:[0,5,6,7,8,11,12,13,15,19,20,22,27,31,33,37,39,42,45,49,53,62,66,67,68,70,71,72,73,74,76,79,80,81,85,86,88,89,92,93,96,97,98,99,101,102,106,110,111,112,113,114,116,119,121,127,128,130,131,133,137,138,142,144,146,147,151,156,164,165,166,182,194,209,221,307,345],goodby:304,goodgui:259,googl:[74,133,143,144,176,347],googlegroup:36,googli:118,gossip:[133,139],got:[9,14,48,98,104,105,106,107,115,232,249],goto_kwarg:345,goto_next_room:127,gotten:[11,76,238,249,264,311],graaah:124,grab:[22,98,99,114,130,177,187,249,367,386],gracefulli:[0,168,181,221,264,284,361],gradual:[14,15,83,110,111,133,220,231],grai:[62,128],grain:[44,341],gram:95,grammar:220,grammat:220,grand:13,grant:[11,31,51,135,189,234,235,236,237,238,258,259,268,333,366],granular:238,grapevin:[149,153,158,279,292,388],grapevine2chan:[98,139],grapevine_channel:[139,158],grapevine_client_id:139,grapevine_client_secret:139,grapevine_en:139,grapevinebot:158,grapevinecli:295,graph:[11,71],graphic:[3,5,9,31,32,56,64,72,90,153,201,205,308],grasp:[128,130],grayscal:198,great:[11,15,27,41,50,60,66,68,73,78,79,80,83,85,89,92,97,106,110,114,116,131,133,195,203,329],greater:[6,20,31,40,68,101,258,345],greatli:132,greek:16,green:[11,20,31,42,62,106,128,171,181,249],greenskin:269,greet:[25,39,40,67,70,124,289],greetjack:33,greg:133,grei:[42,128],grenad:34,grep:[11,143],greyscal:62,greyskinnedgoblin:42,griatch:[58,80,98,101,194,196,198,199,200,201,202,204,214,216,217,220,221,227,228,229,231,249,344,351,357,360],grid:[50,72,116,119,149,238,252,361,388],gridstr:361,grief:49,griefer:131,grin:[22,86,111],grip:74,gritti:22,ground:[72,76,80,99,101,105,119],group:[0,8,22,29,37,42,43,45,48,49,51,65,67,70,73,76,78,79,80,86,97,98,103,108,112,133,146,157,160,167,171,177,188,202,218,249,250,264,268,269,293,332,333,336,338,341],grow:[0,14,81,101,105,110,111,133,138,151,231,295,296,347,361],grown:[27,63,67,81],grudg:114,grungies1138:[214,229],grunt:[171,269],gthi:94,guarante:[13,31,37,58,73,111,144,200,210,268,302,323,335],guard:[27,112],guess:[16,26,61,68,70,92,97,147,195,269],guest1:54,guest9:54,guest:[24,31,75,156,388],guest_en:[31,54],guest_hom:[54,130],guest_list:54,guest_start_loc:54,guestaccount:43,gui:[46,56,89,112,214,388],guid:[2,9,73,94,118,130,365],guidelin:[73,74,133],guild:[43,58,112,125,133],guild_memb:27,gun:80,guru:76,gzip:[192,193],gzip_content_typ:192,habit:88,habitu:44,hack:[76,114,115,293],hacker:[133,147],had:[9,15,16,20,37,51,64,67,73,76,80,83,99,101,104,105,106,107,110,112,116,134,144,146,170,197,249,268,269,273,276,284,335,339,346,381],hadn:[11,91,110],half:[60,256],hall:71,hallwai:71,halt:[37,72],hand:[16,27,33,34,40,53,60,73,74,76,78,88,89,90,101,105,107,110,111,114,131,166,177,179,180,181,194,216,367],hander:101,handi:[3,106,130,143,236],handl:[5,6,9,11,12,13,14,16,19,22,23,26,27,29,30,31,33,34,39,40,44,45,46,53,56,58,59,60,63,66,67,68,71,73,75,76,77,79,86,87,88,91,96,97,98,101,102,103,105,106,107,108,110,113,115,124,128,129,134,136,143,146,156,158,161,162,164,165,171,172,176,177,180,186,192,194,201,202,210,212,213,216,221,225,227,229,232,234,235,236,237,238,244,249,250,251,253,263,264,267,268,269,273,274,281,284,288,289,293,294,296,297,304,307,308,311,313,315,324,325,332,333,335,338,339,341,342,343,345,347,348,351,360,361,375],handle_egd_respons:286,handle_eof:304,handle_error:210,handle_ff:304,handle_int:304,handle_quit:304,handle_setup:288,handler:[12,13,20,22,31,32,33,34,37,39,40,43,44,45,56,58,77,86,102,103,104,111,114,156,162,165,180,184,186,189,194,207,210,211,213,221,231,248,252,258,259,263,264,269,274,275,277,278,289,301,302,322,325,331,332,333,335,336,340,341,344,345,355,356,361],handlertyp:336,handshak:[28,56,136,294,300,302,307],handshake_don:307,hang:[74,78,107,110,117],happen:[0,3,6,8,9,11,19,20,22,27,31,37,40,41,44,49,51,56,58,59,60,62,66,72,73,76,77,85,86,87,89,90,91,97,98,99,104,105,106,112,113,114,115,116,128,130,137,142,144,151,156,164,165,187,199,212,228,234,235,236,237,238,245,248,250,252,264,267,269,286,293,296,316,321,323,324,325,335,345,346,351,353,354,361,366],happend:269,happi:[14,111,112],happier:97,happili:98,haproxi:[144,149,388],hard:[0,5,6,8,11,13,14,16,19,20,22,37,42,43,44,48,51,53,55,59,67,74,77,86,90,101,102,104,107,108,110,113,127,130,133,138,144,146,180,203,232,273,284,333,335,345],hardcod:[65,72,89,90,104,146,333],harden:138,harder:[5,8,49,88,101,104,110,112,113,249],hardwar:[144,297],hare:133,harm:[13,83,113,236],harsh:112,harvest:386,has:[2,3,5,6,8,9,11,12,13,14,15,16,19,20,22,23,26,27,29,30,31,33,34,37,39,40,41,42,43,44,45,46,48,49,50,51,53,55,56,58,59,61,62,63,64,66,67,68,70,71,73,74,75,77,79,80,81,82,83,85,86,87,88,89,90,91,92,96,97,98,99,100,101,103,104,105,106,107,108,109,111,112,113,115,116,118,122,124,125,127,128,129,130,131,132,133,134,135,137,138,139,141,143,144,146,147,150,151,152,155,156,157,158,163,164,165,166,168,170,171,179,180,181,182,183,186,187,188,193,194,195,199,200,201,202,203,210,212,214,215,218,219,221,231,232,234,235,236,237,238,240,248,249,250,251,252,256,258,259,263,264,268,269,273,276,278,284,286,288,289,293,296,298,302,306,311,312,316,322,323,324,325,327,332,333,334,335,341,343,344,345,347,351,353,354,355,358,361,365,366,370,381,384,386],has_account:[34,248,258,263,264],has_attribut:333,has_cmdset:165,has_connect:[86,187],has_drawn:71,has_nick:333,has_object_permiss:366,has_par:361,has_perm:[179,259],has_permiss:366,has_sub:187,has_thorn:[13,108],hasattr:[22,82],hash:[15,42,144,269,278,312,316,325,334],hasn:[68,71,219,249,332,333,386],hassl:91,hast:236,hat:[73,78,197],hau:[139,158,295],have:[0,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,19,20,22,23,25,26,27,29,30,31,32,33,34,36,37,39,40,42,43,44,45,46,48,49,50,51,53,54,55,56,58,59,60,61,62,63,64,65,66,67,68,70,71,72,73,74,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,94,95,96,97,98,99,100,101,103,104,105,106,108,109,110,111,113,114,115,117,118,120,121,122,123,124,125,126,127,128,129,130,131,132,135,137,138,139,141,142,143,144,145,146,147,149,150,151,156,158,162,164,165,166,168,171,173,176,179,180,181,182,183,187,188,189,191,192,194,195,196,197,199,201,202,203,204,209,210,212,213,217,219,220,221,224,225,231,232,234,235,236,237,238,241,245,250,251,255,256,258,263,264,267,268,269,270,273,275,276,277,278,289,294,297,298,302,304,307,308,322,323,324,325,327,330,331,332,333,334,335,336,338,339,340,341,342,344,345,346,347,353,354,357,358,359,361,362,366,367,381,386,387],haven:[3,8,9,42,68,72,79,83,91,98,124,125,126,130,131,327],hdict_cmd:178,hdict_db:178,head:[7,20,55,70,80,92,99,101,111,116,119,127,150],header1:346,header2:346,header:[14,15,19,23,34,63,67,73,74,95,98,106,138,147,166,187,189,214,221,264,308,339,341,347],header_color:171,header_line_char:347,headi:347,heading1:347,heading2:347,headless:264,headlong:138,heal:[108,111,112,236,237,250],healing_rang:237,health:[32,42,59,84,103,111,112,114,115,144,205,231,269,308],health_bar:[153,154,190],healthi:231,hear:[70,83,110],heard:[72,109,258],heart:[104,128],heartbeat:[44,295],heavi:[13,19,22,31,77,95,99,112,114,115,116,135,192,194,221,235,297,361],heavier:235,heavili:[19,39,53,58,67,73,89,109,143,195,234,235,236,237,238,335],heed:[40,259],hei:[99,111,194,214],height:[28,30,46,153,289,304,323,344,347],held:[20,115,258],hello:[23,27,30,33,40,46,56,59,60,63,66,70,83,86,97,107,111,112,116,142,177,186,221,289,338],hello_valu:60,hello_world:[60,106,107],helmet:[83,111],help:[3,5,8,11,14,15,16,19,21,22,24,25,26,27,31,40,41,42,43,46,49,51,55,58,60,61,66,68,70,71,72,74,75,77,79,83,85,86,87,89,90,93,97,98,100,102,104,105,106,108,109,110,111,112,115,116,119,128,130,133,135,138,141,142,144,150,151,153,154,161,162,164,166,167,168,179,180,182,183,189,194,199,201,203,207,208,210,214,220,224,231,234,235,236,237,238,241,250,251,258,266,277,282,284,286,287,295,302,304,305,307,309,312,313,315,316,333,334,338,341,342,343,345,353,356,357,358,359,375,381,386,387,388],help_categori:[22,29,68,86,90,92,96,98,115,116,141,166,168,169,170,171,176,177,178,179,180,181,182,183,186,194,195,196,197,200,201,202,203,204,208,214,215,216,217,218,221,227,228,229,232,234,235,236,237,238,241,248,249,250,251,255,256,264,343,345,346,358],help_cateogori:343,help_detail:386,help_entri:343,help_kei:171,help_list:386,help_mor:178,help_system:92,help_text:[178,210,381],helpact:251,helpdetailview:386,helpentri:[31,92,254,255,256,341,386],helpentry_db_tag:254,helpentry_set:336,helpentryadmin:254,helpentryform:254,helpentrymanag:[255,256],helper:[27,31,42,51,86,90,98,100,101,104,105,108,112,153,156,165,168,171,178,185,188,192,195,199,220,264,268,269,281,293,294,313,325,339,345,354,359,360,361,368],helpfil:178,helplistview:386,helpmixin:386,helptaginlin:254,helptext:[27,266,345],helptext_formatt:[27,266,345],henc:[4,7,55,66,68,70,106,107,250,251,258,339],henceforth:[6,11,14,31,37,40,54,65,72,87,116,129,144,325],henddher:218,her:[8,109,111,197,204],herbal:344,herd:135,here:[2,3,7,8,9,10,11,12,13,14,15,16,17,19,22,27,30,31,32,33,34,36,37,39,40,41,42,44,45,46,48,50,51,53,55,56,58,59,60,61,62,63,64,66,67,68,70,71,72,73,74,75,77,78,79,80,81,83,84,85,86,87,88,89,90,91,92,94,96,97,98,99,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,124,125,126,127,128,130,131,133,135,136,138,139,141,142,143,145,146,147,150,151,156,158,164,165,166,171,179,180,181,183,187,192,194,195,196,197,199,200,201,209,210,219,220,221,228,231,234,235,236,237,240,241,245,248,249,250,251,252,256,259,264,268,269,276,284,286,289,293,295,301,302,304,307,322,323,325,331,332,333,335,338,341,345,347,351,353,361,363,366,367,386],hereaft:111,heroism:112,herself:111,hesit:[68,85],hfill_char:347,hidden:[11,13,46,71,77,108,109,110,111,189,197,200,251],hide:[13,20,22,23,31,67,72,86,99,110,111,114,178,189,200,221,241,249],hide_from:[23,189],hide_from_accounts_set:160,hide_from_channels_set:189,hide_from_objects_set:263,hieararci:258,hierarch:[12,31,51,168],hierarchi:[31,51,54,68,79,92,110,177,197,258],high:[20,31,76,79,99,101,107,109,134,138,164,237,264,326],higher:[9,20,27,31,40,51,60,81,86,87,88,90,91,101,104,111,113,114,116,138,144,156,164,168,181,220,234,235,236,237,238,250,258,286,345,361],highest:[20,90,231,338,361],highest_protocol:357,highli:[0,17,27,31,41,44,58,67,76,77,88,106,124,205,339,351],highlight:[15,62,74,89,90,128],hijack:131,hilight:360,hilit:360,hill:33,hilt:112,him:[27,70,86,104,204,221],hint:[5,9,42,76,81,93,98,104,116,118,119,133,138,151,199,330,387],hire:[96,147],his:[8,27,42,70,90,111,197,204,221,360],histogram:361,histor:[63,91,119,283,354],histori:[11,23,26,46,77,79,86,90,99,106,112,135,146,165,186,203,354],hit:[11,28,67,80,83,105,109,114,115,158,234,235,236,237,238,248,249,282,323,354,357],hit_msg:248,hite:62,hitter:98,hnow:62,hoard:112,hobbi:[110,144],hobbit:91,hoc:76,hold:[0,2,6,7,11,12,14,15,20,23,27,31,34,37,39,40,42,43,45,50,54,62,65,67,69,71,72,74,77,80,86,90,96,98,103,104,110,113,114,115,116,118,130,138,146,164,165,190,195,197,200,219,229,232,234,235,236,237,238,247,248,249,253,258,259,268,269,270,274,279,291,293,302,312,313,315,325,335,336,337,341,344,345,347,349,354,361,363],holder:[67,92,144,333],hole:112,home:[0,11,34,42,50,54,77,98,103,104,112,130,134,138,144,147,165,171,177,248,258,263,264,269,341,361],home_loc:171,homepag:[5,19,133,138,144],homes_set:263,homogen:[19,176,268,269,273],homogenize_prototyp:268,honor:[112,221],honour:192,hood:[9,22,27,33,45,58,74,77,89,99,101,104,110,111,221,231,251],hook:[8,12,22,30,31,34,37,41,44,55,71,76,81,84,94,104,114,115,116,124,125,126,127,129,151,156,162,164,166,168,171,177,179,181,182,185,187,193,197,202,210,212,218,219,221,225,230,234,235,236,237,238,243,246,248,249,250,252,261,264,271,273,276,278,288,295,307,310,312,320,322,323,324,326,335,343,346,351,352,355,359,361,368,381,386],hooligan:49,hop:76,hope:[3,90,97,109,112],hopefulli:[0,46,71,72,86,106,109,130,134,144],horizon:91,horizont:[46,249,347,361],hors:19,host1plu:144,host:[0,11,19,34,37,49,64,77,110,123,135,145,146,147,149,192,220,329,361],host_os_i:361,hotbutton:46,hotel:144,hotspot:147,hould:112,hour:[19,91,129,199,348,361],hous:[42,144,171],housecat:19,how:[0,3,5,6,7,8,9,10,11,13,14,15,16,17,19,20,25,27,29,31,32,33,37,39,40,42,43,46,48,49,51,53,54,56,58,59,60,64,65,66,68,70,71,72,73,74,76,77,79,80,81,82,83,84,85,86,87,88,89,91,92,94,95,96,97,98,99,101,102,103,104,105,106,107,108,109,110,111,113,114,115,116,117,118,119,120,121,122,123,124,125,126,128,129,130,131,134,138,142,143,144,147,149,150,151,157,158,163,165,166,180,181,182,185,186,187,195,197,199,200,204,215,219,220,221,228,231,232,236,237,238,244,248,252,254,258,263,264,269,273,278,284,289,294,298,303,308,311,315,322,323,324,325,329,332,335,339,343,345,347,354,355,360,361,381,387,388],howev:[9,11,12,13,14,15,16,17,20,22,26,31,42,44,45,48,49,53,59,60,61,62,63,64,66,68,70,72,73,74,76,79,83,84,86,87,90,91,96,97,99,104,106,108,109,111,112,113,114,116,126,129,135,144,151,165,166,171,178,181,182,192,195,203,205,210,219,232,237,245,258,338,346,367],howto:[74,387,388],hpad_char:347,href:[17,92,130],hrs:199,htm:299,html5:[76,103],html:[46,62,64,72,74,76,77,92,103,118,131,133,136,147,157,181,187,219,251,256,306,308,312,313,329,335,357,360,365,386],htmlchar:360,htop:151,http404:[92,131],http:[2,8,9,10,11,36,41,46,48,50,60,64,67,68,70,72,74,76,77,79,85,86,92,103,115,117,119,130,131,133,135,137,138,139,143,144,145,147,150,153,158,176,192,195,219,251,286,293,295,296,297,298,299,300,306,308,311,312,313,329,338,347,360,361,365,381,387],http_request:[64,147],httpchannel:329,httpchannelwithxforwardedfor:329,httpd:134,httprequest:156,httprespons:[157,185,261],httpresponseredirect:130,hub:[133,146,341],hue:62,huge:[8,50,58,80,83,85,91,107,110,112,117,252],huh:[22,68],human:[5,49,53,77,79,89,96,110,114,124,130,231,386],humanizeconfig:79,hundr:[61,112,130,142],hungri:58,hunt:[111,114,231,248],hunting_pac:248,hunting_skil:114,hurdl:71,hurri:105,hurt:[84,111,112,231],huzzah:67,hwejfpoiwjrpw09:67,hybrid:[112,114],hype:149,i18n:[55,102,264],iac:59,iattribut:333,iattributebackend:333,ice_and_fir:108,icon:7,id_:[157,254,261,381],id_str:32,idcount:315,idea:[0,7,8,10,11,22,31,41,49,60,66,67,71,73,74,76,85,88,92,96,101,103,106,107,110,111,112,113,114,116,121,127,130,131,138,141,142,166,178,179,182,194,220,269,351,360,386],ideal:[22,63,70,73,144,160,259],idenfi:164,ident:[6,20,22,56,62,67,87,89,98,111,151,156,179,180,221,227,259,264,338,339],identif:[19,44,325],identifi:[3,5,6,20,22,26,27,30,32,37,42,44,45,56,59,66,71,74,82,84,85,86,90,92,101,104,105,110,115,131,134,135,163,166,171,176,179,180,182,186,188,195,202,220,221,232,250,259,264,268,275,278,281,284,289,291,294,308,312,321,323,325,333,334,338,344,345,353],identify_object:188,idl:[40,49,156,158,248,264,316,323,325],idle_command:22,idle_tim:[156,264],idle_timeout:158,idmap:351,idmapp:[45,58,153,154,181,189,256,291,317,333,334,335,337],idnum:188,ids:[49,90,127,202,315,325,344],idstr:[32,44,274,278,321],idtifi:188,idx:127,ietf:300,ifier:231,ifram:46,ignor:[3,11,15,19,20,22,23,27,30,31,40,45,56,58,62,74,83,90,97,98,99,103,107,113,114,124,127,135,144,156,163,164,165,166,171,187,202,221,258,263,264,278,284,289,295,296,311,312,313,333,335,338,339,344,345,353,356,361,362],ignore_error:156,ignorecas:[171,177,178,183,186,197,216,338,343,360],ignoredext:329,illumin:72,illus:48,imag:[7,17,46,64,79,92,103,118,130,138,144,192],imagesconfig:79,imagin:[15,20,27,70,83,98,105,109,110,113,115,124,129,339],imaginari:[72,80,133],imc2:23,imeplement:252,img:17,immedi:[16,19,22,27,30,37,42,56,66,71,77,78,83,98,101,104,106,113,115,126,130,131,144,146,150,162,169,181,248,295,339,341,345,346],immobil:81,immort:248,immut:[13,278],impact:128,impass:109,impati:138,imper:37,implement:[0,6,8,9,11,13,20,22,23,27,31,34,43,44,45,46,53,58,59,60,62,64,65,71,72,73,76,80,81,82,83,86,88,89,90,93,94,100,103,105,107,110,111,113,115,116,121,124,125,126,132,133,157,160,164,165,168,169,170,171,172,173,176,177,178,179,180,181,188,189,192,194,196,197,199,200,202,204,212,217,220,221,225,227,228,229,230,232,234,235,238,241,248,249,250,252,255,256,258,259,263,264,273,275,278,290,295,297,298,299,300,301,302,304,306,307,308,311,312,313,315,322,329,333,334,335,336,338,339,342,343,345,346,352,353,356,357,360,361,369,386,388],impli:[43,68],implicit:[62,97,128],implicit_keep:269,impmement:259,impopular:112,import_cmdset:165,importantli:[27,99,104,111,130,259],importerror:[4,67,79,361],impos:[76,133,327],imposs:[16,27,51,61,71,72,74,127,130,144,347],impract:[22,42,269],imprecis:351,impress:[3,72,112],improperlyconfigur:192,improv:[9,13,55,66,73,78,97,105,106,110,387],in_game_error:[0,147],in_templ:[333,353],inabl:147,inaccess:[31,66],inact:[37,248],inactiv:181,inadvert:238,inadyn:144,inarticul:60,inbuilt:[43,116],incant:143,incapacit:112,incarn:381,incid:225,includ:[2,5,7,8,11,12,14,19,20,22,27,30,31,32,34,37,39,40,41,42,43,44,45,46,49,50,59,60,62,64,67,68,72,73,74,75,76,77,79,80,84,85,86,87,90,91,92,96,97,98,99,100,103,104,105,106,107,108,110,111,112,113,114,115,118,119,120,121,122,123,127,130,131,132,133,138,143,146,156,162,163,164,166,169,170,171,179,180,182,186,192,194,197,202,203,204,210,212,215,220,221,225,231,232,234,235,236,237,238,241,245,250,251,252,258,264,284,302,304,307,308,321,324,333,334,335,336,339,340,341,342,344,345,347,348,354,361,367],include_account:333,include_children:334,include_par:334,include_prefix:163,include_unloggedin:[302,325],inclus:[334,353],incoher:128,incol:[90,344,347],incom:[22,39,53,59,144,157,158,163,180,185,225,235,261,271,293,297,300,303,307,308,312,313,315,323,324,325,329,345,353,366],incomplet:[166,228,347],inconsist:[6,48,219],incorpor:[168,347],incorrect:188,increas:[31,45,62,91,101,104,111,114,147,194,231,235,237,238,250,296,302,316,343],increase_ind:343,incred:[232,286],increment:[138,333],incur:19,indata:[53,333],inde:[67,76,97,144],indefinit:[37,236,249,341],indent:[14,15,19,26,46,63,66,67,74,89,98,106,107,313,339,343,345,361],independ:[37,66,77,88,128,150,194,216,224],indetermin:286,index:[29,58,60,64,71,72,74,88,96,104,110,118,127,133,144,149,163,177,194,232,249,256,282,286,287,329,336,338,346,347,361,381,384,386,388],index_to_select:232,indexerror:[131,252,334],indextest:384,indic:[66,68,71,72,74,91,96,97,99,106,107,134,158,171,178,179,180,192,204,225,232,273,295,296,304,311,312,325,327,329,339,345,346,361],individu:[13,14,15,22,23,42,59,66,68,70,71,72,76,80,86,89,90,96,104,107,114,129,132,141,144,165,169,186,200,207,210,237,245,258,266,267,269,323,336,338,347,353,355,356],ineffici:[44,124,338],infact:22,infinit:[66,110,138,158,252,268],inflat:112,inflict:[37,236],inflict_condit:236,influenc:[27,37,48,50,68,70,110,116,194,361],influenti:133,info1:229,info2:229,info3:229,info:[0,7,11,13,14,17,19,22,25,28,29,34,35,37,39,40,43,45,50,58,59,73,76,77,81,90,103,104,106,111,117,132,135,136,138,146,156,158,160,168,169,171,181,183,187,190,194,196,201,202,205,214,250,256,264,284,289,293,301,302,322,323,325,334,335,336,341,344,354,361],infomsg:354,inforamt:[221,252,264,335],inform:[2,8,11,12,19,22,23,27,29,32,37,39,40,42,43,46,54,56,58,62,64,66,67,68,70,74,76,81,82,86,92,96,97,98,99,103,106,112,114,115,116,117,118,124,126,129,130,131,134,135,139,146,147,156,158,166,169,171,177,181,186,189,195,200,212,219,221,225,226,231,236,237,238,256,264,276,284,289,298,299,300,302,311,324,325,334,335,338,341,343,354,361,381],infrastructur:[56,74,77,144,147,162,294],infrequ:70,ing:[15,67,90,105,112,200],ingam:70,ingame_python:[153,154,190],ingame_tim:91,ingo:[20,27,30,62,90,164,296,353],ingredi:112,inher:[33,48,60,79,231],inherit:[2,3,8,12,19,20,22,34,37,42,45,53,58,62,68,77,84,89,92,94,98,100,102,104,105,108,112,116,124,160,164,166,171,179,181,182,187,189,194,195,197,202,204,212,218,221,228,231,234,235,236,237,238,248,250,251,260,263,264,269,273,275,324,331,334,335,343,346,347,351,359,361,367,370,386],inheritng:269,inherits_from:[124,131,181,361],inifinit:268,init:[7,11,39,46,53,67,68,71,74,90,102,119,138,143,150,194,195,203,241,263,275,284,302,303,313,325,361],init_delayed_messag:203,init_evt:346,init_f_str:346,init_fill_field:203,init_game_directori:284,init_iter:346,init_mod:[165,275],init_new_account:361,init_pars:251,init_queryset:346,init_rang:238,init_sess:[53,324],init_spawn_valu:268,init_str:346,init_tree_select:232,init_tru:165,initi:[6,8,10,11,13,22,26,27,29,40,41,46,67,71,74,77,80,83,90,96,98,102,110,111,113,114,116,126,130,151,156,157,158,165,166,182,186,187,189,192,194,201,203,207,211,213,220,221,231,232,234,235,236,237,238,248,249,254,261,263,264,274,277,278,281,282,284,286,287,288,293,294,295,297,298,299,300,302,303,304,305,306,307,308,309,311,312,313,315,323,324,325,332,333,338,340,343,344,345,353,356,357,361,375,381,386],initial_formdata:203,initial_ind:347,initial_setup:[153,154,279,322],initialdelai:[281,295,296],initialize_for_combat:[234,235,236,237,238],initialize_nick_templ:[333,353],initil:312,inject:[103,113,147,323,339,345],inlin:[39,46,89,96,157,185,254,261,271,282,332,353],inlinefunc:[39,42,56,103,153,154,267,325,337],inlinefunc_en:[62,353],inlinefunc_modul:[62,353],inlinefuncerror:353,inlinefunct:[62,353],inlinepars:353,inmemori:333,inmemoryattribut:333,inmemoryattributebackend:333,inmemorybackend:333,inmemorysavehandl:356,innoc:[49,169],innocu:147,inobject:293,inp:[27,171,188,282,346,361],inpect:27,input:[8,11,15,16,17,19,20,26,30,33,39,40,42,44,46,48,53,56,61,62,64,67,68,72,75,76,78,84,86,89,90,93,97,98,99,103,104,105,113,119,125,130,133,151,156,161,162,163,166,171,176,178,179,180,181,182,186,188,195,200,203,215,216,220,221,225,230,231,232,237,249,255,264,267,269,282,289,293,304,312,323,325,333,334,336,343,344,345,346,347,353,355,357,361,362,381],input_cmdset:345,input_func_modul:[30,289],input_str:345,input_validation_cheat_sheet:381,inputcmdset:345,inputcommand:[30,56,59],inputcompon:46,inputdebug:[30,289],inputfuc:103,inputfunc:[24,39,53,103,153,154,158,279,312,323,325,388],inputfunc_nam:312,inputfunct:30,inputhandl:153,inputlin:[33,177,333,334],insecur:144,insensit:[101,108,186,202,221,250,334,373],insert:[14,15,26,33,42,62,77,81,90,106,119,141,165,204,217,267,339,347,353,361],insid:[3,5,7,8,13,14,16,19,20,22,27,29,31,34,36,37,40,42,45,48,51,58,59,60,62,64,66,70,72,74,77,80,81,82,89,92,95,96,97,98,99,101,102,103,106,107,108,113,114,116,118,124,127,129,130,131,135,141,142,146,151,153,158,181,192,195,202,205,209,210,221,248,252,258,263,264,267,284,301,322,329,339,340,353,361],inside_rec:258,insiderecurs:258,insight:[3,86,99,109,118],insist:[97,144],inspect:[27,49,96,135,156,171,194,282,284,345],inspectdb:58,inspir:[8,22,63,86,111,114,115,196,204,347,361],instac:[166,264,323],instal:[0,3,6,7,8,9,10,15,55,60,66,70,73,74,76,77,86,89,90,99,102,106,109,111,117,119,131,133,137,139,140,145,147,151,153,192,194,196,197,198,200,201,202,214,216,217,218,221,225,227,228,234,235,236,237,238,387,388],installed_app:[8,58,79,92,130,131],instanc:[3,6,8,10,11,12,13,17,19,26,27,32,37,40,41,42,46,50,55,66,68,70,77,81,82,83,85,86,88,89,90,91,92,96,97,98,100,101,103,104,106,108,113,115,117,118,127,128,134,147,156,157,160,162,163,164,165,166,175,178,180,181,185,187,189,193,195,210,212,213,215,219,232,251,252,254,256,261,263,264,268,269,271,273,277,278,281,284,293,294,295,296,297,298,299,300,302,306,307,311,315,316,324,325,329,332,333,335,336,338,341,342,345,347,351,352,357,361,362,365,366,367,369,370,381],instanci:195,instant:118,instanti:[8,22,58,107,156,165,182,231,241,275,278,301,322,325,333,344],instantli:332,instead:[0,5,7,8,9,11,13,15,19,20,22,23,27,31,32,34,37,39,40,42,43,45,48,49,50,51,56,58,62,64,66,67,68,70,71,72,73,74,77,80,81,83,84,85,86,89,90,91,96,97,99,100,101,103,104,105,106,107,108,110,112,113,115,116,117,118,119,124,125,127,128,129,130,131,133,135,138,140,144,146,147,149,151,156,158,165,166,168,169,171,173,176,180,181,183,195,200,201,203,212,213,216,221,228,232,234,235,236,237,238,244,249,251,252,258,259,264,269,278,284,312,313,323,327,332,333,335,336,341,345,351,354,356,357,358,361,381,386],instig:169,instil:[65,236],instr:[293,361],instruct:[3,5,6,7,11,14,15,19,30,56,66,67,70,73,74,76,84,89,90,96,102,106,107,109,110,112,119,133,134,135,138,143,144,146,149,150,156,166,181,192,215,221,225,269,278,281,284,294,296,302,307,308,312,313,315,323,325,345,355],insur:112,integ:[20,22,40,42,45,62,85,96,97,116,163,197,199,200,203,231,234,235,236,237,238,250,258,264,267,334,353,357,361,362],integerfield:[130,381],integr:[1,46,55,77,79,86,107,111,131,133,147,182,221,287,289,345,365,388],intellig:[56,97,112,114,131,147,165,192,315],intend:[3,11,14,17,19,20,22,23,42,43,46,60,62,68,72,73,76,99,110,113,118,128,144,147,156,176,191,192,194,195,221,245,256,264,269,302,334,336,341,342,344,347,353,358,359,362,386],intens:[5,62,101,112,133],intent:[55,147,220,361],inter:[14,112],interact:[3,7,12,22,27,53,60,74,76,83,88,99,107,109,112,113,115,130,133,135,146,151,153,170,238,244,284,301,339,354,361],intercept:325,interchang:[115,119,345,386],interest:[0,3,5,13,15,22,42,53,58,62,66,68,70,71,73,76,78,79,80,89,97,99,107,109,110,116,118,119,126,127,133,144,147,165,180,194,199,250,252],interestingli:111,interf:138,interfac:[2,3,6,31,39,46,53,64,67,68,72,77,78,80,81,92,102,106,130,133,135,138,144,168,171,185,187,264,276,295,324,329,333,336,338,386],interfaceclass:304,interfer:[6,135],interim:[44,83],interlink:[301,322],intermediari:[221,259,274,345],intern:[9,13,16,19,23,27,31,33,37,39,40,41,42,43,48,53,55,59,61,74,101,102,103,115,138,144,146,147,151,156,158,186,189,201,204,221,231,243,252,264,268,275,312,313,333,335,336,338,342,345,347,353,361],internal_port:144,internation:[61,388],internet:[22,48,49,50,53,138,142,144,147,150,169,281,286,294,295,296,304,307,315,329],interpret:[3,5,22,37,39,42,88,97,106,107,131,147,166,170,171,268,269,312,338,353,357],interrupt:[113,138,162,166,182,207,210,213,304],interruptcommand:[22,97,113,153,162,166],interruptev:213,intersect:[20,164],interv:[30,37,44,77,115,126,127,129,158,199,210,231,234,235,236,237,238,240,244,245,248,250,267,273,276,278,289,341,348,361],interval1:278,intim:[20,22],intimid:90,intoexit:171,intpropv:116,intricaci:91,intrigu:137,intro:[79,92,98,107,109,119,131,250],introduc:[0,6,8,11,20,83,89,111,112,114,116,221],introduct:[1,11,14,15,16,50,51,69,93,99,105,117,119,120,121,122,123,138,195,387,388],introductori:[76,138],introroom:250,introspect:[110,218],intrus:128,intuit:[11,27,58,68,97,110,112,113],intxt:19,inv:[20,95,177,197],invalid:[13,42,86,97,156,203,221,231,245,268,347,357,361,362],invalid_formchar:344,inventori:[6,19,20,31,80,81,96,97,98,99,101,105,108,112,177,197,221,258,264,335],invers:[31,62,98,104,128,221,230,310,360],invert:[62,128],investig:104,invis:136,invit:[48,66,110,123],invitingli:99,invok:[13,14,15,37,224,258],involv:[29,31,34,40,41,52,53,88,105,110,112,115,116,143,203,238,335,336,338,366],ioerror:339,ipregex:169,ipstart:[138,146,151],iptabl:147,ipython:[0,90],irc2chan:[98,142,176],irc:[0,11,23,67,76,78,133,138,145,149,153,158,176,184,279,289,292,302,325,388],irc_botnam:158,irc_channel:158,irc_en:[142,176,258],irc_network:158,irc_port:158,irc_rpl_endofnam:296,irc_rpl_namrepli:296,irc_ssl:158,ircbot:[158,296],ircbotfactori:[158,296],ircclient:[296,325],ircclientfactori:302,irchannel:[142,176],ircnetwork:[142,176],ircstatu:98,iron:[111,194,387],ironrealm:308,irregular:[240,248,250],irregular_echo:248,irrelev:[147,293],irur:28,is_account_object:88,is_act:[157,273],is_aggress:124,is_anonym:[79,92],is_anyon:79,is_authent:130,is_ban:156,is_bot:160,is_build:79,is_categori:232,is_channel:[22,86,186],is_connect:[160,264],is_craft:83,is_dark:104,is_exit:[22,166],is_fight:83,is_full_moon:81,is_giving_light:249,is_gm:90,is_in_chargen:116,is_in_combat:[234,235,236,237,238],is_inst:19,is_it:361,is_iter:361,is_lit:[249,250],is_next:[160,189,263,273,333,335],is_o:361,is_ouch:[13,108],is_prototype_bas:268,is_rest:113,is_sai:125,is_staff:157,is_subprocess:361,is_superus:[12,79,156,157,160,259,264,341],is_thief:178,is_turn:[234,235,236,237,238],is_typeclass:[156,335],is_valid:[37,127,130,194,245,273,276],is_valid_coordin:252,isalnum:338,isalpha:338,isbinari:[295,312],isclos:46,isconnect:46,isdigit:[62,90,338],isfiremag:82,isinst:[85,361],island:215,isleaf:313,islow:338,isn:[3,17,26,66,68,70,79,86,88,91,92,97,101,113,138,195,207,211,238,250,251,286,332,338,355,373],isnul:357,iso:[16,61],isol:[8,14,73,74,77,97,106,110,119,138,146,150],isp:[144,147],isspac:338,issu:[3,5,8,11,13,14,15,20,22,34,45,48,60,65,68,72,73,74,78,80,83,90,96,107,111,113,116,128,133,134,135,137,138,144,147,268,284,315,316,347,387],istart:[3,151,153],istep:316,istitl:338,isub:115,isupp:338,itch:138,item:[27,29,46,58,92,95,96,99,102,103,111,112,115,124,138,177,192,194,197,203,221,236,241,252,264,303,333,353,361],item_consum:236,item_func:236,item_kwarg:236,item_selfonli:236,item_us:236,itemcoordin:252,itemfunc:236,itemfunc_add_condit:236,itemfunc_attack:236,itemfunc_cure_condit:236,itemfunc_h:236,iter:[6,13,27,43,71,98,104,156,215,221,243,252,264,269,276,313,315,333,335,338,339,342,346,361],iter_cal:346,iter_to_str:361,itl:[68,195],its:[3,5,8,9,10,11,12,13,15,16,19,20,22,26,27,28,29,31,32,34,37,39,40,42,44,45,46,49,50,53,56,58,59,62,63,64,66,67,68,71,72,73,74,76,77,78,80,81,83,85,86,87,88,89,90,91,92,94,95,96,97,98,99,101,102,103,104,105,106,107,108,109,111,113,114,116,117,118,119,124,125,127,128,130,131,135,138,139,142,143,144,145,146,147,156,157,158,160,162,163,164,165,166,169,171,179,180,181,187,188,194,195,203,204,210,212,218,220,221,228,231,232,234,235,236,237,238,243,244,245,248,249,251,252,258,263,264,269,276,277,278,284,289,293,297,310,311,312,313,316,324,325,329,330,332,333,334,335,336,339,344,345,347,351,353,354,355,356,357,358,361,365,381,386],itself:[2,7,8,11,13,16,17,19,22,27,29,31,34,39,40,44,45,53,58,62,64,66,67,68,70,71,72,73,74,76,77,79,80,81,83,86,87,95,96,98,99,102,103,104,106,107,108,109,115,116,118,125,130,131,132,135,138,143,149,150,156,158,186,187,195,200,203,213,219,221,231,232,237,240,249,250,252,253,258,264,266,269,277,284,308,313,325,329,332,333,336,338,341,343,345,356,358,363,381,386],iusernamepassword:304,iwar:96,iweb:144,iwebsocketclientchannelfactori:295,iwth:278,jack:33,jail:[14,49],jamochamud:136,jan:[49,91],januari:91,jarin:144,java:106,javascript:[46,59,64,76,118,147,192,312,313],jenkin:[116,197,203,205,232,234,235,236,237,238],jet:237,jetbrain:[7,133],jinja:103,jnwidufhjw4545_oifej:67,job:[22,31,86,92,112,156],jobfusc:220,john:[90,229],johnni:[224,225],johnsson:33,join:[23,43,67,68,71,78,90,101,110,112,115,116,130,138,139,142,156,176,187,192,194,220,338,361],join_fight:[234,235,236,237,238],join_rangefield:238,joiner:187,jointli:[77,165],joker_kei:[68,195],journal:72,json:[46,56,59,224,295,308,312,313,342,367,370],jsondata:59,jsonencod:313,jsonifi:313,judgement:114,jump:[0,11,14,15,27,28,34,60,71,76,80,86,87,110,112,138,232,282],junk:293,just:[0,3,4,5,6,7,8,9,11,13,14,15,16,17,19,20,22,23,27,28,29,30,31,33,34,37,40,41,42,43,44,45,46,48,49,51,53,55,56,58,59,61,62,64,65,66,67,68,70,71,72,73,74,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,94,96,97,98,99,101,102,103,104,105,106,107,108,109,110,111,113,114,115,116,117,118,119,124,125,126,127,128,129,130,131,133,135,137,138,144,146,150,151,156,164,165,166,169,171,179,180,181,182,186,192,194,195,197,200,202,207,209,210,212,221,229,231,232,234,235,236,237,238,241,245,248,250,252,258,259,264,268,269,274,289,302,312,322,329,333,334,335,338,342,343,345,347,356,357,361,362,386],justif:[346,361],justifi:[42,267,338,346,361],justifii:346,justify_kwarg:346,kavir:308,kcachegrind:5,keen:73,keep:[0,3,6,9,11,13,14,15,16,22,23,27,29,36,40,42,50,55,66,67,77,79,81,83,84,88,89,90,91,92,94,95,96,97,98,101,105,106,107,109,110,111,112,113,114,115,125,127,128,129,130,131,132,138,143,146,150,158,202,205,210,219,224,245,249,250,268,269,275,286,327,345,347,361],keep_log:[23,187,341],keepal:[40,307,313],keeper:[96,112],keepint:77,kei:[0,3,6,8,11,13,14,19,20,22,23,26,28,30,31,32,34,37,41,43,44,45,46,48,58,59,62,63,66,67,71,72,74,75,80,81,82,83,84,85,86,87,88,89,90,91,92,94,95,96,97,98,100,104,105,106,107,113,115,116,121,126,127,130,134,141,156,158,160,162,164,165,166,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,186,187,188,194,195,196,197,199,200,201,202,203,204,208,209,214,215,216,217,218,220,221,227,228,229,231,232,234,235,236,237,238,241,248,249,250,251,252,256,258,263,264,267,268,269,273,274,275,276,278,282,284,289,290,291,293,302,305,308,309,311,312,313,316,323,324,325,327,333,334,335,336,340,341,343,344,345,346,354,355,356,358,361,365,381,386],kept:[8,22,31,89,97,103,171,209,210,269,333],kept_opt:232,key1:217,key2:[27,217,264],key_mergetyp:[20,164,241],keydown:46,keyerror:[268,278,356],keyfil:[305,309],keynam:[187,269,341],keypair:304,keys_go_back:[68,195],keystr:336,keystrok:304,keywarg:[182,230,246,310,320,359,376],keywod:347,keyword:[5,8,13,19,22,23,26,27,28,30,31,37,41,42,44,45,48,56,58,62,66,68,81,83,84,90,91,94,97,100,101,106,113,116,131,156,158,162,166,171,177,187,192,197,199,202,207,209,210,212,213,220,221,225,234,235,236,237,238,250,251,259,264,267,268,269,274,277,278,282,284,289,293,295,296,302,303,304,307,312,313,323,324,325,327,333,334,335,341,344,345,346,347,351,353,355,357,358,361,386],keyword_ev:213,kick:[20,27,49,90,112,144,158,164,169,176,183,201,264,346],kildclient:136,kill:[5,19,27,37,40,99,103,110,115,143,146,181,194,248,249,274,275,276,278,284,322,329],killsign:284,kilogram:95,kind:[6,13,31,39,53,66,73,74,97,104,105,106,110,115,120,125,127,130,234,235,236,237,259,335,362],kindli:128,kitchen:[87,105,113,171],knew:[104,106],knock:[27,109],knot:197,know:[0,3,5,6,8,9,11,12,13,14,15,16,20,22,27,30,31,32,34,37,39,40,45,48,50,53,56,58,61,62,66,68,71,72,73,74,77,78,80,83,85,86,87,88,89,90,92,94,95,96,97,98,99,101,103,104,105,106,107,108,110,111,112,113,114,115,118,119,124,125,127,128,129,130,131,133,134,135,137,142,144,145,146,151,166,170,171,179,180,182,186,194,209,214,220,232,237,249,263,264,289,323,325,332,333,339,340,345,361,386],knowledg:[14,16,22,76,306,325],known:[22,26,31,33,36,44,45,46,62,78,99,110,113,114,131,133,136,149,155,180,237,346,387],knuth:5,koster:133,kovash:27,kwar:335,kwarg:[22,27,30,31,32,41,42,44,45,46,48,53,56,59,62,81,83,86,90,94,113,125,127,129,131,156,157,158,159,160,162,166,168,169,170,171,176,177,178,179,180,181,182,183,186,187,188,189,192,194,195,196,197,199,200,201,202,203,204,207,208,209,210,212,214,215,216,217,218,219,220,221,225,227,228,229,231,232,234,235,236,237,238,240,241,243,244,245,248,249,250,251,252,255,256,258,259,261,262,263,264,266,267,268,269,272,273,274,276,277,278,281,282,286,289,290,291,293,294,295,296,301,302,303,304,305,307,308,309,312,313,317,322,323,324,325,326,327,329,332,333,334,335,336,338,343,344,345,346,347,348,350,351,353,354,355,356,357,358,359,361,362,365,367,370,381,384,386],label:[43,58,65,99,108,119,130,365,381],label_suffix:[157,254,261,381],laborum:28,lack:[14,63,74,88,98,110,221,264,333,361],ladder:90,ladi:104,lag:[71,138],lair:15,lambda:[27,42,48,85,92,210,269,361],lamp:[72,241,244,245],land:[97,115,248,249],landscap:[72,147],lang:220,langcod:221,langnam:221,languag:[8,10,16,45,46,52,53,60,61,62,63,74,76,77,88,89,90,97,98,101,102,103,104,105,106,111,125,133,147,220,221],language_cod:55,languageerror:[220,221],languageexistserror:220,languagehandl:220,larg:[6,8,13,14,15,27,42,48,50,58,60,73,76,88,99,109,110,113,119,135,144,220,252,302,339,344,351],larger:[15,29,31,58,60,71,74,89,95,106,110,202,310,338,351,361,387],largest:231,largesword:58,last:[0,2,3,8,11,13,14,15,20,22,23,27,30,33,34,40,41,46,55,58,68,79,83,90,92,97,100,105,106,107,108,109,112,115,118,127,128,131,137,151,162,163,165,171,176,177,192,194,199,202,210,212,221,232,234,235,236,237,238,245,264,288,338,339,340,345,346,347,348,354,361],last_cmd:[22,104],last_initial_setup_step:322,last_login:157,last_nam:157,last_step:288,lastcast:82,lastli:[72,94,130,162],lastsit:81,late:340,later:[6,11,12,13,14,22,23,30,32,42,44,45,49,53,55,56,58,62,65,66,67,68,70,72,74,76,77,90,92,94,98,99,101,104,105,106,107,110,111,112,113,114,116,119,124,126,127,130,135,138,144,164,168,169,171,179,180,199,218,221,269,278,304,336,361],latest:[2,11,19,20,74,77,80,90,138,143,145,171,176,181,212,264,269,303,327,345,354,365],latin:[16,61,264,361],latin_nam:264,latinifi:[264,361],latter:[19,23,31,34,44,77,83,97,128,221,231,273,275,336],launch:[5,7,8,15,37,80,96,109,137,138,143,144,151,165,241,283,284,294,296,315,343,361],launcher:[5,7,283,284,293,294,315],law:133,layer:[20,68,102,107,263,335],layout:[9,19,36,45,46,71,88,90,104,108,252],lazi:361,lazy_properti:[231,361],lazyencod:313,lazyset:354,lc_messag:55,lcnorth:62,ldesc:88,ldflag:143,lead:[13,14,17,20,27,37,56,58,66,68,71,72,73,77,88,92,99,101,108,110,112,127,133,135,147,156,163,164,171,181,210,213,219,227,264,269,308,323,333,335,345,347,353,361],leak:64,lean:[111,221],leap:[91,106,113,125],learn:[3,7,11,16,17,20,22,29,31,50,60,66,68,70,71,83,88,89,92,94,98,100,101,102,104,105,106,107,109,110,111,112,113,118,128,131,133,138,150,220,237],learnspel:237,least:[3,7,22,27,31,37,58,71,76,85,89,90,104,106,107,110,114,117,119,127,134,144,156,165,188,194,220,231,255,264,269,276,338,344,347,358,361],leasur:248,leather:[96,112],leav:[5,12,30,37,46,66,68,80,81,90,96,99,114,115,116,119,147,168,170,171,176,187,194,195,250,252,258,264,312,313,345,351,367],leavelock:258,leaver:187,led:104,left:[2,19,22,30,31,37,42,46,58,62,68,72,85,86,89,92,96,97,101,105,109,113,156,171,177,179,180,205,234,235,236,237,238,249,252,259,267,269,335,338,347,361],left_justifi:[42,267],leg:321,legaci:[42,59,112,150,156,221],legal:[144,147],legend:[26,71,215],leisur:362,len:[42,62,71,81,90,96,101,108,115,126,127,141,163,180,199,361],lend:26,length:[29,54,58,68,71,81,91,97,106,109,112,135,141,144,163,192,199,203,205,213,220,221,286,327,333,338,347,361,386],lengthi:81,lenient:42,less:[7,23,27,46,58,60,68,77,87,88,97,104,105,110,112,113,114,115,129,130,144,199,235,237,333,387],lesson:[98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113],let:[5,7,8,11,13,15,16,20,22,27,30,31,34,44,46,49,53,56,62,65,66,67,68,70,71,72,73,77,80,81,82,85,86,87,88,89,90,91,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,116,117,118,119,120,121,122,123,124,125,127,128,130,131,134,138,139,142,143,145,147,156,166,171,177,178,182,186,194,197,200,203,205,231,232,245,252,259,264,294,313,325,341,345,355,360,365,381,386],letsencrypt:144,letter:[16,55,61,62,68,72,85,106,116,130,144,168,177,195,219,231,328,361],level:[0,2,4,12,13,14,19,26,27,31,39,40,43,45,51,53,54,60,65,68,72,74,76,84,86,89,90,92,96,99,101,106,110,112,113,114,130,133,141,144,156,168,173,174,195,196,199,214,220,232,258,264,268,269,286,323,333,335,341,343,348,353,361,366,386],lever:[22,45],leverag:[74,113,117],levi:58,lhs:[81,90,179,180],lhslist:[179,180],lib:[6,138,140,143],libapache2:134,libcrypt:143,libjpeg:143,librari:[0,4,8,9,14,42,45,46,55,60,75,77,88,89,93,97,104,107,118,119,130,132,133,138,143,146,147,150,190,219,251,268,269,297,335,347,361],licenc:338,licens:[7,73,112,219,338,388],lid:[241,244,245],lidclosedcmdset:241,lidopencmdset:241,lie:72,lies:[11,22,105],life:[13,33,73,91,112,113,119,128,199,248,387],lift:[31,99,114,116,238,259],lifter:31,light:[15,19,37,60,74,109,110,135,165,235,249,250,258,269,277,338],lightabl:249,lighter:[62,235],lightest:19,lightli:[50,235],lightsail:144,lightsourc:249,lightsource_cmdset:249,like:[0,2,3,5,6,7,8,9,11,12,13,15,16,17,19,20,22,23,25,27,28,29,30,31,32,34,37,39,40,41,42,43,44,45,46,48,49,50,51,53,55,56,58,59,60,62,63,64,65,66,67,68,70,71,72,73,74,75,76,77,78,80,81,82,83,84,85,86,87,89,90,91,92,94,96,97,98,99,100,101,103,104,105,106,107,108,109,110,111,113,114,115,117,118,119,124,126,127,128,129,130,131,133,134,135,137,138,139,141,142,143,144,146,147,150,156,158,160,161,163,164,165,168,170,171,176,179,180,183,184,187,188,194,195,197,201,202,203,204,205,213,215,219,220,221,227,228,231,232,234,235,236,237,238,241,243,245,250,251,252,256,258,259,263,264,267,268,269,289,297,313,318,322,324,325,333,334,335,338,339,341,344,345,346,347,348,351,355,357,358,361,369,381,386,388],limbo:[14,15,19,39,54,66,67,68,72,99,103,104,109,127,131,138,171,195,288,370],limbo_exit:72,limit:[0,8,12,13,19,20,22,23,27,29,31,37,39,42,43,45,50,51,58,65,66,70,73,75,76,77,81,82,90,97,99,101,103,105,106,108,110,111,115,116,128,141,144,149,156,168,169,170,171,187,188,197,210,221,230,231,232,234,236,237,245,255,256,259,264,269,273,276,278,289,302,327,333,334,335,336,339,341,343,354,358,361,386],limit_valu:156,limitedsizeordereddict:361,limp:109,line2:105,line:[0,2,5,6,8,9,14,15,16,19,20,22,23,27,30,33,34,36,39,42,45,46,48,51,55,56,58,60,62,66,67,68,70,72,74,75,79,81,83,84,85,86,88,89,90,91,92,94,97,98,99,102,104,105,107,108,112,116,127,130,131,135,137,138,140,144,145,146,151,153,156,162,165,171,178,180,181,192,195,200,201,203,215,216,217,220,221,232,251,252,268,284,289,304,307,312,323,335,339,343,344,345,346,347,354,361,381,386],linear:71,linebreak:[92,360],lineeditor:343,lineend:360,linefe:46,lineno:74,linenum:343,liner:296,linereceiv:[304,307],linesend:313,lingo:[40,58,64,89],linguist:361,link:[9,11,12,15,17,20,22,27,34,40,53,67,68,70,71,72,73,76,77,79,81,83,85,89,92,96,98,99,101,102,103,104,106,112,116,117,127,130,131,137,138,142,144,145,149,156,160,171,176,207,212,241,245,251,258,259,264,273,282,284,295,299,304,307,335,360,361,387,388],link_ok:258,linkdemo:74,linklock:258,linknam:137,linkref:74,linktext:74,linod:144,linux:[5,6,7,11,33,67,74,77,79,81,106,107,134,135,142,143,144,146,224,361],liquid:335,list:[5,6,7,9,11,12,13,14,15,16,19,20,22,23,27,29,30,31,34,37,40,42,43,45,46,49,53,54,55,58,59,61,62,63,64,66,68,70,71,72,73,76,78,79,81,85,86,89,90,92,95,96,97,98,99,101,102,103,106,108,109,110,111,113,114,115,116,117,127,130,131,133,135,137,138,142,144,145,147,151,156,158,160,163,164,165,166,168,169,170,171,176,177,178,179,180,181,182,186,187,188,189,192,194,195,196,197,198,202,203,204,205,207,208,210,211,212,213,214,215,217,218,219,220,221,224,225,231,232,234,235,236,237,238,248,249,252,255,258,259,263,264,267,268,269,274,275,276,277,278,282,284,289,290,294,296,298,300,302,303,308,313,316,325,327,329,332,333,334,335,336,338,339,340,341,342,345,346,347,353,354,355,358,361,366,367,368,369,386,387],list_attribut:171,list_callback:208,list_displai:[157,185,254,261,271,280,332],list_display_link:[185,254,261,271,280],list_filt:[261,332],list_nod:345,list_of_all_rose_attribut:13,list_of_all_rose_ndb_attr:13,list_of_myscript:37,list_prototyp:268,list_select_rel:[185,254,261,271,280],list_set:284,list_styl:168,list_task:208,list_to_str:361,listabl:171,listcmdset:171,listcmset:171,listdir:192,listen:[12,23,31,40,46,49,86,93,140,147,176,187,220,221,241,258,386,388],listing_contact:137,listobj:181,listobject:181,listscript:181,listview:386,lit:[249,250],liter:[14,42,54,74,89,99,177,267,338,357,361],literal_ev:[268,332],littl:[3,11,16,22,23,37,42,45,48,66,67,72,74,77,79,80,81,82,86,89,90,92,96,97,98,99,101,103,104,105,106,107,108,109,110,111,112,113,118,119,124,125,131,141,144,146,151,215,235,250,319,333,345,361,381],live:[7,74,78,104,112,133,134,135,138,144,146],ljust:338,lne:232,load:[0,6,7,8,13,14,16,20,22,26,27,42,46,49,72,83,87,88,89,90,92,95,104,105,106,107,110,114,116,118,127,147,160,165,177,178,181,189,202,210,220,256,259,263,264,273,277,288,291,293,324,333,335,336,339,340,343,352,355,356,359,361,379],load_buff:343,load_data:340,load_kwarg:356,load_sync_data:324,loader:[27,335,361],loadfunc:[26,343,356],loc:171,local0:140,local:[2,6,7,11,55,62,73,77,81,91,98,102,105,118,130,135,142,146,147,192,207,210,221,269,307,333],local_non_red_ros:101,local_ros:101,localecho:144,localevenniatest:359,localhost:[46,64,67,79,92,117,119,130,131,135,136,138,140,143,144,150,313],locat:[4,8,9,11,12,13,14,19,20,22,25,27,30,31,34,37,42,43,45,46,49,54,62,64,65,66,67,70,71,72,74,77,79,80,81,84,85,89,90,96,97,98,99,101,102,103,104,105,106,109,111,112,113,116,118,124,125,127,130,134,138,144,146,147,150,156,162,171,177,181,188,192,195,196,197,202,212,215,218,221,227,243,248,250,252,258,263,264,269,313,322,334,335,336,339,341,345,347,354,358],location_nam:252,location_set:101,locations_set:[101,263],locattr:[249,258],lock:[20,22,23,24,29,34,39,42,43,45,48,49,51,68,75,79,80,81,82,83,85,86,87,90,91,95,96,98,99,102,103,104,113,116,130,135,141,144,151,153,154,156,157,166,168,169,170,171,176,177,178,180,181,182,183,187,189,194,195,196,197,200,201,202,204,207,208,210,211,214,215,216,217,218,221,227,229,241,248,249,250,252,254,256,263,264,268,269,329,333,335,341,343,345,355,362,366,388],lock_definit:259,lock_func_modul:[31,259],lock_storag:[166,168,169,170,171,176,177,178,179,180,181,182,183,186,189,194,195,196,197,200,201,202,203,204,208,214,215,216,217,218,221,227,228,229,232,234,235,236,237,238,241,248,249,250,251,256,264,333,335,343,345,346],lockabl:[90,227],lockablethreadpool:329,lockdown:[31,333],lockdown_mod:[140,144],lockexcept:259,lockfunc1:31,lockfunc2:31,lockfunc:[22,31,39,75,81,103,105,127,153,154,171,257],lockhandl:[13,31,45,98,153,154,166,195,251,257,258],lockset:264,lockstr:[6,13,22,31,42,79,105,113,171,176,178,187,189,227,258,259,264,269,333,341,366],locktyp:[164,269],log:[2,5,7,9,10,11,12,13,22,23,25,27,30,34,37,40,41,46,48,49,54,55,58,62,64,72,75,76,77,79,80,81,85,87,89,90,98,99,105,112,113,114,116,119,127,130,131,134,135,136,138,139,140,141,142,143,144,146,151,156,165,169,183,187,196,201,203,216,224,225,264,273,284,289,293,294,298,301,302,304,307,315,316,317,323,325,327,329,335,341,353,354,361,386],log_dep:[19,354],log_depmsg:354,log_dir:224,log_err:[19,354],log_errmsg:354,log_fil:[19,354],log_info:[19,354],log_infomsg:354,log_msg:354,log_sec:354,log_secmsg:354,log_serv:354,log_trac:[19,37,125,126,354],log_tracemsg:354,log_typ:354,log_typemsg:354,log_warn:[19,354],log_warnmsg:354,logdir:2,logentry_set:160,logfil:[284,354,386],logged_in:40,loggedin:302,logger:[19,37,75,125,126,153,154,224,296,337],logic:[3,6,48,66,71,72,79,85,86,87,92,103,112,113,131,220,263,267,288,333,345,362,367],login:[6,11,12,22,25,27,31,40,41,67,76,79,81,92,112,130,144,156,168,183,201,216,259,288,289,304,307,312,313,316,325,361,373,375,384,386,388],login_func:316,loginrequiredmixin:386,logintest:384,logout:[315,316,384],logout_func:316,logouttest:384,logprefix:[294,304,307,329],lone:[72,110,171],long_descript:137,long_running_funct:48,long_text:28,longer:[22,26,28,37,44,45,58,63,66,69,80,81,83,86,90,92,97,98,104,106,107,128,133,137,164,169,187,197,220,221,228,234,235,236,237,238,274,343,347],longest:[19,221],longrun:22,loo:[166,182],look:[0,2,3,6,8,11,13,14,15,16,17,19,20,22,25,27,29,30,31,33,34,40,42,43,45,46,48,49,50,51,53,55,56,58,59,60,62,64,66,67,68,70,71,72,73,74,76,77,78,79,80,81,83,84,85,86,87,89,90,91,92,94,95,96,97,98,101,102,103,104,105,106,107,108,109,110,111,113,114,115,117,118,119,120,123,124,125,127,128,130,131,135,138,141,143,144,146,147,151,156,158,163,165,166,168,171,177,179,180,182,183,186,192,196,197,201,202,203,209,216,217,218,220,221,232,236,241,243,249,250,252,255,258,259,261,263,264,266,269,289,304,305,312,316,333,335,339,345,346,347,355,358,360,361,381],look_str:156,lookaccount:90,lookat:22,looker:[71,90,116,197,202,221,243,252,258,264,335],lookm:22,lookstr:264,lookup:[6,13,22,31,43,58,162,177,224,263,303,336,338,350,351,357,358,361,362],lookup_env:192,lookup_expr:365,lookup_typ:357,lookup_usernam:27,lookuperror:338,loom:72,loop:[5,13,45,66,70,71,76,77,80,92,96,101,115,125,153,158,234,269,302],loopingcal:[276,287],loos:[15,73,156,197,238,255,304,315,339],loot:110,lop:101,lore:90,lose:[13,40,88,110,112,115,116,146,151,224,236,295,296,304,307],lost:[45,64,66,72,74,85,88,97,133,151,228,281,294,295,296,304,307,312,333,338],lot:[0,3,5,8,11,14,16,19,23,31,42,43,45,48,58,60,62,64,66,68,70,72,73,75,76,78,79,82,85,86,89,90,91,92,97,98,101,103,104,105,106,107,108,109,110,111,112,113,114,116,119,127,130,133,138,144,195,199,201,203,221,229,235,249,252,329],loud:[80,113],love:46,low:[20,53,54,70,144,164],lower:[5,12,20,22,27,31,46,48,51,58,62,71,81,83,86,90,91,96,109,112,144,163,164,168,179,181,221,231,289,338],lower_bound_inclus:231,lower_channelkei:[86,186],lowercas:[106,166,338],lowest:[54,144,231,258,338],lpmud:63,lsarmedpuzzl:218,lspuzzlerecip:218,lst:[71,341],lstart:26,lstrip:[97,338],ltto:62,luc:344,luciano:133,luck:[27,97,104,134],luckili:[8,11,31,72],lue:62,lug:76,luggag:108,lunch:70,lurk:112,luxuri:[43,331],lycanthrophi:101,lycantrhopi:101,lycantrophi:101,lycantrroph:101,lying:72,m2m:336,m2m_chang:41,m_len:361,mac:[5,7,11,67,74,77,106,119,135,136,146,150,361],machin:[7,11,14,81,106,112,146,248],macport:[11,138],macro:[79,115],macrosconfig:79,mad:[11,231],made:[0,2,11,13,25,27,31,39,42,51,72,74,80,81,88,90,98,99,104,105,107,108,110,112,113,116,117,127,131,144,145,147,162,164,176,181,194,197,203,231,232,236,237,238,259,286,330,338,339,343,345,361],mag:[8,344],magazin:133,mage:[27,101],mage_guild_block:27,mage_guild_welcom:27,magenta:128,magic:[31,43,65,84,109,110,111,112,127,194,205,230,237,286],magic_meadow:43,magicalforest:65,magnific:27,mai:[1,3,5,6,7,8,9,10,11,13,14,19,20,22,23,27,31,32,33,34,37,39,40,42,44,45,48,51,53,54,56,58,59,60,62,64,66,67,72,73,74,77,78,79,80,81,82,83,86,88,89,91,92,94,99,101,103,104,106,108,109,110,111,113,114,115,116,118,119,125,126,130,131,133,134,135,137,138,141,143,144,146,147,151,156,158,162,163,164,166,168,169,171,181,187,188,190,192,194,196,197,199,203,205,212,220,221,231,234,235,236,237,238,241,249,250,258,259,264,267,268,269,270,286,316,323,325,326,330,332,333,335,336,338,340,341,342,343,345,347,348,353,355,358,361,386],mail:[5,9,23,27,67,73,76,78,89,98,115,133,153,154,188,189,190,258],mailbox:[23,214],maillock:258,main:[4,11,14,15,16,20,22,23,27,29,31,32,34,36,39,40,42,43,44,45,46,53,55,56,58,64,68,71,73,77,80,84,88,92,94,96,97,99,102,104,105,111,112,113,115,130,131,133,137,144,146,149,151,156,157,160,162,168,171,182,189,195,203,210,214,220,221,252,256,263,269,271,273,284,288,289,291,296,301,303,308,322,324,329,335,336,346,349,358,360,361],mainli:[5,22,23,27,34,40,48,49,56,89,105,106,133,168,253,333,339,353,361],maintain:[5,29,44,46,51,60,73,74,75,79,86,88,108,135,144,146,149,150,181,183,201,278,387],mainten:[144,147,387],major:[15,16,77,89,111,127,130,135,138],make:[0,1,2,3,5,6,7,9,10,12,13,14,15,16,20,22,26,27,29,30,31,33,34,37,39,40,41,42,43,44,45,46,48,49,50,51,53,56,58,60,61,62,65,66,67,68,70,71,72,73,74,76,77,78,79,81,82,83,84,85,86,87,88,91,93,94,96,97,100,101,102,103,105,107,108,109,110,111,114,115,118,119,120,121,122,123,124,125,128,129,130,131,132,133,134,135,136,137,138,141,142,143,144,146,147,150,151,156,158,160,163,164,165,166,168,169,171,176,179,182,186,187,188,192,194,195,197,202,203,205,211,214,215,220,221,226,227,228,231,232,234,235,236,237,240,241,244,245,248,249,250,255,258,259,264,268,269,275,276,278,284,288,296,301,315,316,322,323,325,326,328,329,332,333,334,335,336,338,339,340,341,342,343,345,347,348,351,353,358,360,361,384,386],make_it:361,make_shared_login:375,make_uniqu:164,makeconnect:293,makefactori:304,makefil:74,makeit:315,makemessag:55,makemigr:[2,58,130],male:204,malevol:15,malform:362,malici:147,malign:259,man2x1:60,man:[33,60,63,111,144,177,214,221],mana:[82,84],manaag:254,manag:[5,8,9,11,12,13,20,31,34,37,40,44,45,53,56,58,67,75,85,88,89,96,101,103,111,113,130,146,151,153,154,155,156,160,181,182,184,186,187,189,192,212,217,221,238,245,250,253,256,260,263,264,268,270,273,278,279,284,291,331,333,335,336,337,340,341,349,352,354,358,361,384,386,388],manager_nam:333,manchest:361,mandat:381,mandatori:[41,42,63,66,68],mandatorytraitkei:231,maneuv:232,mangl:310,mango:218,manhol:304,manhole_ssh:304,mani:[0,5,8,9,11,12,13,15,16,17,19,20,22,23,27,29,34,37,39,40,41,42,44,45,48,49,52,53,54,55,58,59,60,61,62,63,64,65,66,67,71,72,74,76,77,78,79,84,87,88,89,90,91,96,97,98,99,100,101,103,105,106,107,110,112,114,115,116,125,126,127,128,130,131,138,142,144,145,147,151,160,164,166,171,182,189,192,194,197,201,203,215,221,228,229,232,236,237,241,248,251,256,258,259,263,269,273,278,284,298,306,308,327,333,335,336,338,345,351,352,354,386],manifest:[6,103],manipul:[13,20,27,37,42,58,66,68,77,86,87,98,116,171,178,188,202,207,231,255,264,290,341,346],manner:[15,187,221,252,264,302,335],manpow:73,manual:[6,9,11,15,22,23,29,31,34,37,42,45,53,58,62,65,72,74,76,79,80,84,90,96,99,103,104,106,110,113,124,127,131,133,135,138,144,151,153,158,171,232,241,245,251,264,269,276,284,301,308,345,346,387,388],manual_paus:276,manual_transl:220,manual_unpaus:276,manytomanydescriptor:[160,189,256,263,273,333,335,336],manytomanyfield:[160,189,256,263,273,333,335,336],map:[6,16,27,33,59,64,66,70,77,81,85,89,90,146,168,176,192,198,199,212,215,220,221,231,252,264,268,269,308,333,335,338,344,345,353,361,388],map_legend:215,map_modul:72,map_str:[71,72,252],mapbuild:[153,154,190],maplegend:215,mapnam:215,mapper:351,mapprovid:252,march:[133,354],margin:17,mark:[11,14,15,22,31,46,55,62,64,65,71,74,80,90,98,101,106,111,138,142,144,163,170,202,210,219,232,325,335,339,344,345,353,357],mark_categori:232,markdown:[74,79,137],marker:[14,22,33,62,77,106,111,113,177,202,204,212,221,232,264,296,304,307,312,313,333,336,338,344,346,353],market:[112,144],markup:[62,74,94,118,198,338,360],mask:[111,218,221,225,226],maskout_protodef:218,mass:[93,110,388],massiv:[76,82],master:[67,70,73,74,86,89,110,114,115,125,131,138,145,146,231,330],match:[9,11,13,19,20,22,27,29,30,31,33,34,37,39,40,42,43,45,46,55,56,58,59,62,64,67,68,71,72,85,86,87,89,90,91,97,99,101,103,108,113,118,125,130,131,156,162,163,164,166,169,171,177,178,180,182,186,188,195,198,199,202,203,213,214,215,216,217,218,221,231,237,252,255,258,259,264,268,269,275,278,289,290,302,315,325,333,334,335,336,338,343,345,347,353,356,358,360,361,362,386],match_index:163,matched_charact:203,matches2:58,matchobject:[338,360],mate:77,materi:[106,112],math:85,mathemat:[111,164],matplotlib:317,matrix:347,matt:37,matter:[2,8,13,20,27,32,40,41,55,60,66,67,79,81,86,89,91,92,97,106,107,110,113,114,115,118,124,138,147,164,238,248,263,289,333],matur:[9,60,63,106],maverick:77,max:[50,71,111,112,115,141,203,221,231,327,354,361],max_damag:236,max_dbref:334,max_depth:361,max_dist:71,max_heal:236,max_l:71,max_length:[58,71,130,192,221],max_lin:347,max_memory_s:192,max_nr_charact:112,max_num:157,max_num_lin:386,max_popular:386,max_rmem:351,max_siz:354,max_valu:[205,381],max_w:71,max_width:71,maxconn:140,maxdelai:[281,295,296],maxdepth:269,maxdiff:[368,376],maximum:[50,58,62,72,85,97,111,112,141,156,192,203,205,231,234,235,236,237,238,264,269,329,338,347,353,361],maxlengthvalid:156,maxnum:361,maxrotatedfil:354,maxsplit:338,maxthread:329,maxval:[353,361],maxvalu:353,maxwidth:347,may_use_red_door:42,mayb:[13,14,15,19,20,22,29,42,58,65,67,68,71,74,80,81,87,92,95,96,101,103,104,105,108,110,112,114,115,137,138,144,165,194,213,302],mccp:[30,76,136,153,279,289,292],mccp_compress:297,meadow:[43,65,68,111],mean:[3,4,5,6,8,9,11,13,14,15,16,19,20,22,23,27,29,30,31,32,33,37,39,40,43,45,46,48,49,53,56,58,59,61,62,64,66,68,70,71,72,73,76,77,82,86,89,90,91,94,96,99,101,102,103,104,105,106,107,109,110,113,114,115,116,118,124,127,128,131,132,135,144,146,147,151,156,158,165,171,187,200,210,220,231,244,245,249,251,258,264,268,269,274,278,284,308,324,333,335,338,345,347,351,354,357,358],meaningless:116,meant:[20,23,29,37,45,46,50,55,56,65,68,87,91,99,103,105,111,128,137,164,195,204,221,229,231,234,235,236,237,238,245,250,252,264,289,339],measur:[5,116,144,163,180,361],meat:[119,120,121,122,123,130],mech:[93,388],mechan:[4,19,22,26,27,37,42,45,76,82,85,90,92,97,109,110,114,115,116,128,156,158,162,202,221,237,257,269,276,278,284,288,294,302,313,324,335,343,346,349,356,386],mechcmdset:80,mechcommand:80,mechcommandset:80,meck:80,media:[50,103,157,185,192,254,261,271,280,312,329,332,357,381],median:71,mediat:114,medium:50,mediumbox:293,meet:[2,81,103,109,111,209,252,328],mele:[111,238],mem:181,member:[13,58,67,112,177,179,180,264,361],membership:[67,79,101],memori:[5,20,22,45,49,58,61,64,82,88,104,106,135,143,144,156,181,187,245,264,278,317,327,333,337,346,351,356,361],memoryerror:138,memoryusag:317,memplot:[153,279,314],meni:195,mental:128,mention:[8,13,14,15,16,22,30,31,37,44,48,53,60,61,67,71,80,83,86,88,89,99,101,106,110,128,138,144,165,201],menu:[7,9,13,20,40,42,70,75,76,81,92,102,110,111,112,116,137,138,139,151,153,154,171,195,203,216,229,232,265,269,282,284,345,355,388],menu_cmdset:345,menu_data:27,menu_edit:195,menu_login:[153,154,190],menu_modul:345,menu_module_path:345,menu_quit:195,menu_setattr:195,menu_start_nod:229,menuchoic:[27,345],menudata:[203,266,345],menudebug:[27,345],menufil:345,menumodul:345,menunode_fieldfil:203,menunode_inspect_and_bui:96,menunode_shopfront:96,menunode_treeselect:232,menunodename1:27,menunodename2:27,menunodename3:27,menuopt:232,menutest:98,merc:338,merchandis:112,merchant:70,mercuri:60,mere:[124,205],merg:[6,11,22,27,68,73,77,87,89,91,101,104,105,113,117,162,163,164,165,178,241,250,252,269,273,308,345,353],merge_prior:345,merger:[20,72,73,164,165],mergetyp:[20,27,115,164,241,250,343,345],merit:113,mess:[5,11,13,19,51,74,112,144,232],messag:[8,9,11,14,16,19,22,23,24,26,27,28,30,31,34,36,37,39,40,46,48,53,55,61,65,68,70,72,74,75,76,77,78,80,82,83,86,87,90,91,94,95,96,97,98,99,106,108,110,111,112,113,114,115,116,125,129,134,138,139,141,144,147,149,151,156,158,162,165,166,169,171,176,177,178,180,182,184,186,187,188,189,194,195,197,203,204,208,210,212,214,218,219,221,225,231,234,235,236,237,238,240,241,243,244,246,248,249,250,251,258,264,284,286,293,295,296,302,303,304,307,308,310,312,321,323,325,327,329,341,343,345,346,353,354,358,361],message_rout:46,message_search:188,message_transform:187,messagepath:388,messagewindow:46,messeng:243,meta:[39,45,103,157,254,261,332,335,351,365,367,381],metaclass:[45,58,166,335],metadata:[225,286],metavar:251,meteor:95,meter:[205,231],metho:186,method:[3,8,11,12,13,19,20,23,27,29,31,34,37,39,40,41,42,43,44,45,46,48,53,56,58,59,62,67,68,70,71,72,74,76,77,81,82,83,84,85,90,91,92,97,98,100,101,102,105,107,108,113,114,115,116,124,125,126,127,129,130,131,149,156,160,162,164,165,166,168,171,172,176,178,179,180,181,182,185,186,187,188,189,192,193,194,195,199,202,207,210,212,216,217,218,219,220,221,224,225,227,230,231,234,235,236,237,238,245,246,248,249,250,251,252,255,256,258,259,264,276,277,278,281,286,289,290,291,293,294,295,296,297,302,304,307,310,312,313,316,320,322,323,324,325,327,332,333,335,338,339,341,343,345,346,347,348,351,352,353,354,355,356,358,359,360,361,365,366,367,368,370,386],methodnam:[182,193,211,226,230,246,278,310,320,352,359,368,376,384],metric:95,microsecond:13,microsoft:[72,138],mid:[60,83,127],middl:[22,71,83,144,235,338],middlewar:[153,363,372],midnight:[81,91],midst:109,midwai:62,mighht:97,might:[0,3,6,8,11,13,15,16,17,19,20,22,23,27,28,31,34,37,39,40,44,48,49,53,55,62,66,68,70,72,76,78,79,81,82,83,84,85,86,90,91,92,94,95,96,97,98,99,110,112,114,115,116,118,119,126,128,129,130,134,135,138,143,144,145,146,147,151,165,169,171,194,219,225,228,234,235,236,237,251,264,313,335,338,343,354,355,361,367,381],mighti:[72,83,104],migrat:[2,8,10,11,41,58,67,72,74,103,119,130,135,138,143,150,151,192,269],mike:171,million:[130,135],mime:341,mimic:[5,23,26,76,112,114,135,189,323,343],mimick:[26,77,114,315,343,346],mimim:336,min:[37,71,91,111,199,203,231,348,353],min_damag:236,min_dbref:334,min_heal:236,min_height:347,min_shortcut:[68,195],min_valu:381,min_width:347,mind:[14,15,27,48,49,73,76,86,88,89,93,106,107,109,110,111,113,128,131,137,194,205,210,219,286,361],mindex:163,mine:[70,112,147],mini:[72,76,103,104,105],miniatur:109,minim:[40,110,115,147,192,220,269],minimalist:[22,60,90],minimum:[40,46,68,77,90,112,114,203,231,234,235,236,237,238,289,329,335,347,353,356,361],minimum_create_permiss:366,minimum_list_permiss:366,mininum:347,minlengthvalid:156,minor:[86,165],mint:[11,138],minthread:329,minu:[58,101,264,348],minut:[19,37,82,91,97,115,133,146,176,194,199,327,348,361],minval:[353,361],mirc:296,mirror:[40,106,133,142,153,190,239],mis:89,misanthrop:101,misc:[24,46],miscelan:337,miscellan:[102,103],mislead:86,mismatch:[30,361],miss:[6,71,78,89,98,112,138,144,234,235,236,237,238,268,289,387],missil:[80,237],mission:[86,92],mistak:74,misus:144,mit:[133,338],mitig:[89,147,386],mix:[13,22,23,27,62,75,84,101,113,128,130,156,194,221,268,269,328,336,339,347],mixin:[268,318,367,370,386],mixtur:94,mkdir:[2,67,138],mktime:91,mob0:88,mob:[15,31,40,76,88,109,110,153,165,171,190,247,250,269,339],mob_data:88,mob_db:88,mob_vnum_1:88,mobcmdset:248,mobdb:88,mobil:[15,42,93,109,112,141,149,248,258],moboff:248,mobon:248,mock:[8,359],mockdeferlat:359,mockdelai:359,mockval:359,mod:[134,147,230,231],mod_import:361,mod_import_from_path:361,mod_proxy_http:134,mod_proxy_wstunnel:134,mod_sslj:134,mode:[3,5,7,12,20,26,27,30,52,64,86,92,99,104,106,107,112,115,116,124,130,133,134,140,146,147,153,170,181,187,192,193,196,212,214,248,264,268,275,284,289,294,301,312,313,322,339,343,345,354,361,388],mode_clos:313,mode_init:313,mode_input:313,mode_keepal:313,mode_rec:313,model:[13,23,31,33,39,43,44,45,52,64,67,74,77,86,92,101,112,114,118,129,153,154,155,156,157,184,185,187,188,253,254,260,261,264,270,271,274,278,279,280,290,331,332,333,334,336,337,342,349,350,352,357,358,361,365,367,381,386,388],model_inst:357,modeladmin:[185,254,261,271,280,332],modelattributebackend:333,modelbackend:373,modelbas:351,modelchoicefield:261,modelclass:[13,43],modelform:[157,254,261,332,381],modelmultiplechoicefield:[157,254,261],modelnam:[187,256,335],modelseri:367,modelviewset:370,moder:[79,85,194],modern:[13,16,48,60,72,84,128,133,147,216,297],modif:[11,22,56,66,70,73,81,97,116,134,146,231,330,381],modifi:[0,5,9,11,12,13,20,22,23,27,29,34,39,40,42,45,46,53,62,64,65,66,68,70,72,74,75,76,79,81,85,87,88,89,90,96,98,99,103,105,106,107,108,109,111,112,113,114,116,123,125,132,146,151,156,157,165,187,192,195,200,202,204,210,212,218,221,228,230,231,234,235,236,237,238,249,251,256,264,269,278,335,339,345,351,357,360,381,386],modified_text:62,modified_tim:192,modul:[0,4,5,6,8,13,14,16,19,20,22,25,26,27,29,30,31,34,37,39,40,41,45,53,56,60,62,64,72,73,74,76,80,83,88,89,90,91,94,95,96,98,99,102,103,104,105,107,111,112,113,116,117,124,127,139,143,145,147,151,154,162,163,165,166,171,173,174,175,176,180,182,186,194,195,196,197,198,199,200,201,202,203,205,207,208,209,211,212,215,216,219,220,221,222,226,227,228,230,231,232,234,235,236,237,238,241,248,249,250,251,258,259,263,264,267,268,269,274,276,277,278,281,283,284,288,289,293,301,303,304,307,308,311,313,315,316,317,322,324,325,326,333,335,336,339,340,341,342,343,344,345,346,348,353,359,361],modular:76,modulepath:293,moifi:202,mold:107,mollit:28,moment:[20,44,55,64,70,80,89,96,97,104,111,156,267,273],mona_lisa_overdr:108,monei:[58,67,110,111,112,144,258],monetari:[73,78,194],monitor:[5,32,59,75,274,289,308,351],monitor_handl:[32,153,274],monitorhandl:[24,30,153,154,270,388],monlit:101,mono:81,monster:[34,42,77,83,89,104,107,110,111,112,171,269],monster_move_around:107,month:[73,91,144,199,348,354,361],monthli:91,montorhandl:32,moo:[60,63,76,89,119,133],mood:[70,109,112,231],moon:[81,91,95,101],moonlight:101,moonlit:101,moor:109,moral:6,more:[0,2,3,4,5,6,8,11,12,13,14,15,16,17,19,20,22,23,25,26,27,28,29,30,33,34,37,39,40,42,43,44,45,46,48,49,51,52,53,54,55,56,58,59,60,61,62,66,67,68,70,71,72,73,76,77,78,79,80,81,82,85,86,87,88,90,91,92,93,96,97,98,99,101,102,103,104,106,107,108,109,110,111,113,114,115,116,117,118,119,122,125,127,128,129,130,131,133,135,138,141,142,143,144,146,147,151,153,155,156,157,160,163,164,165,170,171,177,181,183,186,190,192,194,195,196,197,199,201,202,205,210,213,215,219,220,221,228,229,231,232,234,235,236,237,238,244,248,249,250,251,252,258,261,264,267,268,269,294,296,299,315,316,325,330,333,334,338,339,341,342,343,344,345,346,347,351,358,361,362,367,381,386],more_command:346,moreov:[37,144],morn:[111,202,203],mortal:109,most:[3,5,6,9,13,14,17,19,20,22,25,27,30,31,34,39,40,41,44,45,46,48,53,56,58,59,60,61,62,63,65,66,67,68,70,71,72,73,74,77,79,81,84,85,86,88,89,90,91,92,95,97,98,99,100,101,102,103,106,107,108,109,111,112,113,114,115,116,119,124,127,128,130,134,135,138,144,146,147,150,156,160,164,165,168,171,179,189,195,205,220,221,228,234,235,236,237,238,256,258,259,263,264,269,273,307,312,322,333,334,335,336,345,346,351,352,361,386],mostli:[27,45,46,53,62,89,92,97,114,116,144,157,164,200,220,236,252,304,338],motiv:[14,15,34,73,76,78,110,295,296,302,303,304,307,312,313,324,325],mount:146,mountain:[60,72,215],mous:[46,62,345],move:[15,16,22,23,26,27,28,34,66,67,68,70,71,72,79,80,83,86,87,90,92,95,96,97,103,104,106,107,109,110,111,112,115,121,124,128,130,131,133,135,137,138,165,171,177,194,195,203,209,212,228,231,234,235,236,237,238,248,249,250,252,255,258,264,316,335,339,346],move_around:[104,107],move_hook:264,move_obj:252,move_to:[34,66,96,113,127,212,228,264],movecommand:87,moved_obj:[252,264],moved_object:264,movement:[42,90,111,127,228,234,235,236,237,238,264],mover:238,mptt:79,mratio:[163,180],msdp:[56,76,289,308],msdp_list:289,msdp_report:289,msdp_send:289,msdp_unreport:289,msdp_var:308,msg:[3,8,12,13,14,19,22,26,27,28,31,32,34,40,46,48,53,58,59,62,63,66,68,70,72,74,75,81,82,83,84,86,87,88,90,91,95,96,97,98,104,105,106,107,113,114,115,116,125,127,141,153,156,158,166,168,172,176,182,185,187,188,189,204,212,214,225,231,243,251,259,264,295,296,323,332,339,341,343,345,346,354,358,361],msg_all:115,msg_all_sess:[22,166],msg_already_sit:113,msg_arriv:66,msg_content:[19,22,34,37,66,70,80,91,116,125,127,129,212,264],msg_help:178,msg_leav:66,msg_locat:[212,264],msg_other:194,msg_other_sit:113,msg_receiv:[212,264],msg_self:[212,264],msg_set:336,msg_sitting_down:113,msg_standing_fail:113,msg_standing_up:113,msgadmin:185,msglauncher2port:[284,293],msgmanag:[188,189],msgobj:[23,187],msgportal2serv:293,msgreturn:182,msgserver2port:293,msgstatu:[284,293],mssp:[39,76,103,153,279,292],mtt:311,much:[0,1,3,5,8,13,14,15,16,27,31,34,42,44,45,48,55,61,66,68,71,72,73,74,77,79,81,83,85,86,88,91,92,95,97,98,99,101,104,105,106,107,109,112,113,114,115,119,126,127,129,130,131,133,135,138,144,160,165,170,179,195,199,200,221,231,232,238,241,249,324,338,339,340,347,361],muck:[89,119],mud:[6,9,16,30,31,33,36,39,40,44,46,53,59,60,62,64,65,68,71,72,76,77,80,84,88,97,99,103,106,109,110,114,115,124,128,129,134,135,136,138,142,144,145,146,149,150,151,160,165,168,238,281,297,298,299,304,307,308,311,339,348],mudbyt:133,mudconnector:133,mudderi:133,muddev:138,mudform:344,mudinfo:[23,98],mudlab:133,mudlet:[136,289,299],mudmast:136,mudramm:136,muhammad:360,mukluk:136,mul:267,mult:[42,267],multi:[20,27,39,40,46,48,68,74,76,104,108,109,110,113,116,119,146,163,181,221,232,325,345,361],multi_page_t:346,multiaccount_mod:6,multidesc:[153,154,190],multilin:360,multimatch:[20,108,163,221,264,361],multimatch_str:[156,221,264,361],multimedia:[46,192],multipart:192,multipl:[11,15,19,20,22,32,34,39,40,41,42,44,45,49,53,59,60,62,68,76,77,84,90,91,101,103,104,106,109,110,114,116,133,135,144,156,162,164,169,170,171,176,180,181,198,200,201,202,204,205,211,217,221,230,232,234,235,236,237,243,250,259,264,267,268,269,278,282,286,289,293,308,316,332,333,334,339,347,358,361],multiplay:[76,89,112,119,120,133],multipleobjectsreturn:[156,158,160,187,189,194,197,199,202,204,210,212,218,219,220,221,227,228,229,234,235,236,237,238,240,243,244,245,248,249,250,252,256,263,264,268,273,276,291,317,333,336,348,352],multipli:[106,267],multisess:[12,52,86,92,345,388],multisession_mod:[22,40,77,111,112,116,130,136,156,168,172,196,204,264,325],multisession_modd:27,multitud:[62,72,89],multumatch:264,mundan:80,murri:361,muscular:111,muse:133,mush:[2,60,67,76,93,114,115,119,133,198,217,388],mushclient:[30,136,289,299],musher:133,mushman:60,musoapbox:[89,133],must:[5,6,8,9,11,12,13,16,20,22,26,27,30,31,32,33,34,39,42,43,44,45,46,48,53,55,56,61,62,64,65,66,71,73,74,77,79,81,83,88,90,91,94,96,98,100,103,104,105,106,107,108,110,111,113,115,116,118,124,130,134,136,138,139,141,142,144,146,147,151,158,163,166,171,181,182,186,187,188,192,194,197,198,199,201,212,216,218,220,221,225,231,232,234,235,236,237,238,244,245,249,250,256,258,264,267,274,278,284,289,302,304,307,324,326,327,332,333,334,335,338,339,340,341,342,343,344,345,346,348,353,355,356,357,358,360,361,362,367,386],must_be_default:165,mutabl:342,mute:[17,86,186,187],mutelist:[86,187],mutltidesc:217,mutual:334,mux2:63,mux:[22,23,52,60,76,80,86,90,99,119,147,153,154,161,179,180,198,257,388],mux_color_ansi_extra_map:198,mux_color_xterm256_extra_bg:198,mux_color_xterm256_extra_fg:198,mux_color_xterm256_extra_gbg:198,mux_color_xterm256_extra_gfg:198,muxaccountcommand:[179,214],muxaccountlookcommand:168,muxcommand:[22,75,81,82,83,84,87,90,95,98,116,153,161,167,168,169,170,171,176,177,178,180,181,183,197,200,201,202,208,214,215,217,218,227,229,236,237,250],mvattr:[98,171],mxp:[30,62,76,136,153,279,289,292,304,307,338,345,360,361],mxp_pars:299,mxp_re:338,mxp_sub:338,my_callback:326,my_datastor:58,my_func:107,my_funct:83,my_github_password:11,my_github_usernam:11,my_identsystem:33,my_object:83,my_plugin:46,my_port:53,my_portal_plugin:53,my_script:37,my_server_plugin:53,my_servic:53,my_word_fil:220,myaccount:43,myaccountnam:108,myapp:58,myarx:67,myattr:[13,156],mybot:176,mycar2:33,mychair:43,mychan:23,mychannel:[49,176],mycharact:94,mychargen:27,mycmd:[22,29],mycmdget:105,mycmdset:[20,22,98,105],mycommand1:20,mycommand2:20,mycommand3:20,mycommand:[20,22,56,84,98,105,108],mycompon:46,myconf:2,mycontrib:8,mycss:46,mycssdiv:46,mycustom_protocol:53,mycustomcli:53,mycustomview:64,mydatastor:58,mydhaccount:146,mydhaccountt:146,mydhacct:146,myevennia:142,myevilcmdset:[20,164],myevmenu:27,myfix:11,myfunc:[8,44,48,361],mygam:[0,3,5,7,8,9,11,12,14,15,19,20,25,27,30,31,34,37,39,42,45,46,53,55,58,62,64,67,71,72,75,80,81,84,87,88,89,90,91,92,94,95,96,98,102,103,104,105,106,107,113,114,115,116,117,118,119,125,126,127,130,131,135,137,138,139,140,141,143,144,146,150,151,195,196,198,202,214,215,216,217,227,228,231,309,359,361],mygamedir:74,mygamegam:94,myglobaleconomi:37,myhandl:41,myhousetypeclass:171,myinstanc:58,myircchan:176,mykwarg:27,mylayout:46,mylink:74,mylist2:13,mylist:[6,13,335],mylog:19,mymap:215,mymenu:27,mymethod:88,mymodul:44,mymud:[7,134],mymudgam:144,mynam:[112,146],mynestedlist:342,mynod:27,mynoinputcommand:22,mynpc:116,myobj1:43,myobj2:43,myobj:[13,19,31,37,278],myobject:13,myobjectcommand:81,myothercmdset:20,myownfactori:53,myownprototyp:42,mypassw:201,mypath:8,myplugin:46,myproc:53,myproc_en:53,myprotfunc:42,myroom:[37,43,88,101,171],myros:34,myscript:[37,43,45],myscriptpath:37,myserv:201,myservic:53,mysess:40,mysql:[2,9,76,77,361],mysqlclient:135,mysteri:[33,143],myston:108,mytag:46,mythic:109,mytick:278,mytickerhandl:278,mytickerpool:278,mytrait:231,mytup1:13,mytup:13,myvar:22,myview:64,naccount:325,naiv:[187,192,252,256,335],nake:22,name1:171,name2:171,name:[2,3,4,5,7,8,9,10,11,12,13,14,15,16,20,22,23,27,28,29,30,31,32,33,34,37,39,40,41,42,43,45,46,48,51,53,54,55,56,58,61,62,64,65,66,67,68,70,71,72,74,76,77,79,81,83,86,87,88,89,90,91,92,94,95,96,97,98,99,100,101,102,103,105,106,107,108,109,110,111,113,115,116,117,118,119,124,127,128,129,130,131,133,135,136,137,139,141,142,143,144,146,147,150,151,153,154,156,158,160,162,163,164,165,166,168,169,171,176,177,178,179,180,181,182,183,186,187,188,189,192,195,196,197,199,201,203,207,209,210,213,216,218,219,220,221,227,231,232,236,237,248,250,251,252,255,256,257,263,264,268,269,273,274,276,278,284,287,289,290,291,293,294,296,301,304,307,308,311,312,313,316,329,332,333,334,335,336,338,339,340,341,343,344,345,346,351,352,353,354,355,357,358,360,361,362,365,368,369,370,373,381,386],namecolor:232,namedtupl:207,nameerror:[3,106],namelist:214,namesak:6,namespac:[45,46,92,210,251,269,339],napoleon:74,narg:[62,251],narr:238,narrow:[97,105,113],nativ:[3,23,37,59,74,101,112,224,329,386],nattempt:27,nattribut:[13,27,45,115,171,269,323,333,335,341,345],nattributehandl:333,natur:[13,16,19,43,59,76,133,158,347],natural_height:347,natural_kei:333,natural_width:347,navig:[7,9,27,67,71,72,74,130,131,238,386],naw:[28,136,153,279,292],nbsp:360,nchar:126,nclient:315,ncolumn:347,ncurs:153,ndb:[14,22,27,37,40,45,68,81,83,115,156,160,181,263,273,323,335,345],ndb_:[42,171,269],ndb_del:323,ndb_get:323,ndb_set:323,ndk:143,nearbi:[164,165,166,238],nearli:[103,113,338],neat:[66,117,381],neatli:[60,361],necess:53,necessari:[2,11,45,53,60,62,66,68,79,85,89,90,97,102,103,110,125,127,151,166,189,196,210,225,250,251,269,277,313,332,339,347,355,357,361],necessarili:[42,59,74,86,89,109,144,361],necessit:326,neck:[42,197],necklac:[111,197],need:[0,2,3,5,6,7,8,9,10,11,12,13,14,15,16,19,20,22,23,25,26,27,29,30,31,32,33,34,37,39,40,42,43,44,45,46,48,51,53,54,55,56,58,59,61,62,64,65,67,68,70,71,72,73,74,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,94,95,96,97,98,99,101,102,103,104,106,107,108,109,110,111,113,114,115,116,117,118,121,122,124,125,127,128,130,131,133,134,135,137,138,139,141,142,143,144,145,146,147,150,151,156,158,160,164,166,168,171,176,177,179,182,186,187,192,194,195,201,202,204,208,209,210,211,215,218,219,220,221,231,232,234,235,236,237,238,245,248,249,250,251,252,258,259,263,264,268,269,276,284,286,288,289,293,301,308,313,315,323,324,325,329,332,333,335,338,339,341,345,346,347,348,353,355,356,358,361,386],need_gamedir:284,needl:218,needless:104,neg:[91,128,164,343,361],negat:[62,101,259],negoti:[76,194,298,300,302,311,325],negotiate_s:300,neighbor:[85,112],neither:[6,13,114,137,151,200,268,308,333,336,362],nenter:27,neophyt:231,nest:[4,13,15,22,27,62,156,171,221,232,258,264,267,269,308,342,353],nested_mut:13,nested_r:171,nestl:72,net:[67,89,112,133,138,142,144,158,176,297,298,308,311,325],netrc:11,network:[53,61,75,76,77,78,133,139,141,142,144,147,149,158,176,295,296,301,322,325],neu:195,neural:112,neutral:204,never:[0,1,8,11,15,19,20,22,27,31,39,44,45,49,58,59,62,77,88,91,97,103,104,106,107,108,110,111,112,113,125,127,130,137,156,209,220,221,237,238,248,259,264,323,342,353,361],nevertheless:[0,27,58,128,168,195],new_alias:166,new_arriv:250,new_attrobj:333,new_channel:90,new_charact:248,new_coordin:252,new_datastor:58,new_goto:345,new_kei:[41,166,264],new_loc:171,new_menu:195,new_nam:[41,171],new_name2:171,new_obj:[31,264,269],new_obj_lockstr:171,new_object:[42,269],new_pane_name1:46,new_pane_name2:46,new_raw_str:163,new_room_lockstr:171,new_ros:34,new_script:37,new_typeclass:[156,335],new_typeclass_path:45,new_valu:[32,333],newbi:[76,81,186],newcom:[112,124],newer:67,newindex:232,newli:[11,54,70,90,101,106,130,171,187,195,214,219,251,264,269,276,341],newlin:[22,46,178,339,347],newnam:[22,171,335],newpassword:169,newstr:46,nexist:68,nexit:[8,126],next:[2,3,7,11,13,14,15,20,22,26,27,28,29,31,34,37,46,48,49,55,56,58,62,66,67,68,70,71,72,74,77,79,80,81,82,83,84,85,86,88,90,91,93,94,96,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,119,127,130,131,133,135,139,142,143,144,145,146,147,151,195,199,215,217,232,234,235,236,237,238,249,259,276,284,339,345,346,348,353,361,386],next_nod:27,next_turn:[234,235,236,237,238],nextrpi:133,nfkc:156,ng2:347,nginx:134,nice:[8,19,29,46,49,65,66,68,71,72,90,91,94,104,105,110,111,137,144,146,171,194,197,221,268],nicer:[99,106],niceti:171,nick:[12,13,24,30,34,63,89,98,133,156,158,171,177,221,258,263,264,296,333,334,353,367,388],nick_typ:33,nickhandl:[13,33,333],nicklist:[158,296],nicknam:[11,33,34,63,177,221,263,264,296,333,334],nickreplac:333,nickshandl:367,nicktemplateinvalid:[333,353],nicktyp:[221,264],nifti:[105,134],night:[90,110,111,129,202],nine:54,nineti:362,nit:91,nline:354,no_channel:[20,22,164,345],no_default:[45,156,335],no_exit:[20,22,115,164,241,345],no_gmcp:308,no_log:165,no_match:195,no_mccp:297,no_more_weapons_msg:249,no_msdp:308,no_mssp:298,no_mxp:299,no_naw:300,no_obj:[20,164,241,345],no_superuser_bypass:[156,187,259,264,335],no_tel:31,noansi:182,nobj:126,nocaptcha:130,nocaptcha_recaptcha:130,nocolor:[94,289,304,307,312,313],nod:111,nodaemon:7,node1:[27,345],node2:[27,345],node3:[27,345],node:[14,42,96,203,216,232,266,282,345],node_abort:27,node_apply_diff:266,node_attack:27,node_background:27,node_betrayal_background:27,node_border_char:345,node_destin:266,node_enter_password:216,node_enter_usernam:216,node_examine_ent:266,node_exit:27,node_formatt:[27,203,345],node_four:27,node_game_index_field:282,node_game_index_start:282,node_hom:266,node_index:[266,345],node_kei:266,node_loc:266,node_login:27,node_mssp_start:282,node_mylist:27,node_on:27,node_parse_input:27,node_password:27,node_prototype_desc:266,node_prototype_kei:266,node_prototype_sav:266,node_prototype_spawn:266,node_quit_or_login:216,node_readus:27,node_select:27,node_set_nam:27,node_start:282,node_test:27,node_usernam:27,node_validate_prototyp:266,node_view_and_apply_set:282,node_view_sheet:27,node_violent_background:27,node_with_other_nam:345,nodekei:345,nodenam:[27,345],nodetext:[27,203,266,345],nodetext_formatt:[27,203,266,345],noecho:[106,181],noerror:264,nofound_str:[156,221,264,361],nogoahead:306,nohom:341,nois:[80,113],noisi:[144,281,286,294,304,307,329],noloc:171,nomarkup:[30,94],nomatch:[68,180,195,343,353,361],nomatch_exit:68,nomatch_single_exit:68,nomigr:8,nomin:386,non:[11,15,16,19,20,22,26,28,29,30,37,40,42,45,46,58,59,62,65,68,71,74,76,77,78,79,83,87,90,91,95,99,101,104,105,108,110,112,113,128,138,139,151,156,158,160,162,164,171,181,187,189,200,210,219,227,229,231,232,249,255,263,264,268,269,273,274,275,276,277,278,284,293,307,308,322,323,325,333,335,338,341,342,343,345,347,353,358,361,367],nonc:312,nondatabas:[13,323,335],none:[3,12,13,14,15,16,20,22,23,26,27,30,31,32,33,37,40,43,48,53,56,58,59,62,66,68,71,72,77,81,84,85,86,87,88,90,91,92,94,96,97,98,100,101,104,105,108,113,115,116,125,127,156,157,158,163,164,165,166,168,171,172,173,174,175,178,179,180,182,185,186,187,188,189,192,193,194,195,196,197,200,202,203,204,207,209,210,212,213,216,218,219,220,221,227,229,231,232,234,235,236,237,238,241,243,248,249,250,251,252,254,255,258,259,261,263,264,266,267,268,269,271,274,275,276,278,281,282,284,286,290,293,294,295,296,303,304,312,313,323,324,325,327,328,329,332,333,334,335,336,338,339,340,341,342,343,344,345,346,347,348,351,353,354,356,357,358,361,362,365,368,370,373,376,381,386],nonpc:116,nonsens:220,noon:[31,55,99,114],nop:307,nopkeepal:[136,307],nor:[3,7,13,14,20,60,83,104,112,115,128,137,200,201,251,268,308,333,336],norecapcha:130,norecaptcha_secret_kei:130,norecaptcha_site_kei:130,norecaptchafield:130,normal:[4,5,6,8,9,12,13,14,15,16,19,20,22,23,27,29,30,31,33,37,39,40,42,43,45,46,48,51,54,55,56,58,59,61,62,64,65,67,70,71,72,74,76,77,80,81,83,84,87,88,89,90,91,92,94,95,96,98,99,101,104,105,106,107,109,111,115,116,117,127,128,131,135,142,143,144,146,151,156,158,160,162,163,165,166,168,171,178,181,186,187,192,193,194,199,200,212,234,235,236,237,238,248,251,252,263,264,266,269,276,278,284,293,296,297,298,300,302,316,323,325,331,333,334,335,338,339,342,345,346,351,353,358,360,361,363,367],normal_turn_end:115,normalize_nam:264,normalize_usernam:156,north:[34,62,66,68,70,71,72,87,99,113,127,171,195,215,228,316],north_south:72,northeast:[99,171,252],northern:[68,72],northwest:171,nose:333,not_don:329,not_error:284,not_found:171,notabl:[6,11,48,53,67,138,166,171,182,194,335,342,353,361],notat:[4,171,338,361],notdatabas:45,note:[3,5,7,9,10,11,12,13,14,19,30,31,34,37,40,41,42,44,45,46,49,51,55,56,58,59,61,62,64,66,67,71,77,79,80,81,83,86,89,90,91,92,96,98,99,101,104,105,106,107,108,109,110,112,113,114,115,116,118,119,124,127,128,130,131,135,136,138,143,144,146,147,149,151,153,156,158,163,164,165,166,168,171,172,173,177,178,179,181,182,183,186,187,188,192,194,196,197,198,199,200,201,202,204,209,210,212,213,215,216,217,218,219,220,221,227,228,231,232,234,235,236,237,238,241,244,245,250,251,252,258,259,263,264,268,269,276,278,281,284,289,293,294,296,297,301,302,303,304,307,308,309,311,312,315,317,318,323,325,329,330,333,334,335,336,338,339,340,341,342,343,344,345,346,347,348,351,353,354,356,357,358,361,366,367,374,388],notepad:[119,138],notfound:361,notgm:90,noth:[3,8,13,15,19,22,23,34,44,48,56,60,66,68,72,83,88,89,91,96,98,99,104,106,108,113,115,156,171,180,232,234,237,238,248,252,264,276,296,333,335,345],nother:126,notic:[2,3,11,14,22,48,49,66,68,70,73,78,83,85,86,91,92,97,99,103,104,112,113,124,127,128,135,195,240,297,386],notif:[11,46,79,143,214],notifi:[108,145,149,176,234,235,236,237,238,250],notificationsconfig:79,notimplementederror:307,notion:[44,91,115,231],noun:[220,221],noun_postfix:220,noun_prefix:220,noun_transl:220,now:[2,6,7,8,9,11,12,13,15,18,19,20,22,27,31,34,35,37,40,42,44,45,46,48,49,55,58,60,62,64,65,66,67,68,70,71,72,76,77,80,81,82,83,85,86,88,89,90,91,92,94,95,96,97,98,99,101,102,103,104,105,106,107,108,109,110,111,112,113,114,116,117,118,119,121,122,124,125,127,128,130,131,133,135,138,139,141,142,143,144,145,146,147,150,151,165,194,199,203,210,212,231,232,244,252,259,264,296,304,325,357,359,361,387],nowher:[72,106],noxterm256:307,npc:[22,27,67,70,72,77,110,114,194,229,258,264,388],npcname:125,npcshop:96,nprot:126,nr_start:275,nroom:[68,126],nroom_desc:8,nrow:347,ntf:138,nuanc:62,nudg:[132,241,245,329],nuisanc:147,nulla:28,num:[31,71,221,264],num_lines_to_append:354,num_object:101,num_objects__gt:101,num_tag:101,number:[0,2,5,6,8,11,13,14,19,20,22,23,26,27,33,37,39,40,41,43,44,45,48,49,62,64,65,66,71,72,74,77,80,86,89,90,91,94,96,98,101,104,105,106,107,108,109,112,113,114,115,116,126,131,135,141,144,145,146,153,156,158,163,164,165,169,171,176,177,186,188,189,192,197,199,200,203,205,207,209,210,213,215,219,220,221,232,234,235,236,237,238,264,267,269,275,276,282,284,289,295,296,298,302,315,325,327,329,333,334,336,338,339,341,343,345,347,348,351,353,354,358,361,369,370,381],number_of_dummi:284,number_tweet_output:126,numberfilt:365,numbertweetoutput:126,numer:[6,110,114,205,230,231,338],numpi:317,obelisk:[109,249],obfusc:[220,221],obfuscate_languag:[220,221],obfuscate_whisp:[220,221],obj1:[6,13,31,42,108,171,218,238],obj2:[6,8,13,31,42,108,171,218,238,339],obj3:[13,108,171],obj4:[13,108],obj5:13,obj:[3,8,12,13,19,20,22,31,32,33,34,37,42,43,44,45,48,58,68,81,86,88,90,95,97,98,100,101,105,108,113,124,127,156,157,164,165,166,169,171,177,179,180,181,182,185,186,188,193,195,197,202,203,204,207,209,210,213,214,218,221,231,232,234,235,236,237,238,241,243,245,249,250,252,258,259,261,263,264,267,269,271,273,274,275,276,313,315,316,323,332,333,334,335,336,339,341,342,346,356,357,358,361,366,367],obj_desc:237,obj_detail:250,obj_kei:237,obj_prototyp:269,obj_to_chang:45,obj_typeclass:237,objattr:[249,258],objclass:[351,361],object1:22,object2:[22,194,264],object:[0,2,3,4,5,8,12,14,15,16,20,22,23,24,26,27,28,30,32,33,37,39,41,42,44,45,46,48,49,51,53,56,58,59,60,62,63,64,65,66,67,68,70,71,74,75,76,80,83,84,85,86,87,88,89,90,91,92,93,94,96,97,98,102,103,109,111,114,115,116,119,124,125,126,129,130,131,133,135,147,151,153,154,155,156,157,158,159,160,162,163,164,165,166,168,169,170,171,172,173,176,177,179,180,181,182,183,185,186,187,188,189,190,192,194,195,196,197,201,202,203,204,207,208,209,210,211,212,213,214,215,218,219,221,224,225,226,227,228,229,230,231,232,234,235,236,237,238,240,241,243,244,245,247,248,250,251,252,254,255,256,258,259,266,267,268,269,270,271,273,274,275,276,277,278,282,284,286,288,289,290,291,293,294,297,298,299,300,301,302,303,304,306,308,311,313,315,316,322,323,324,325,327,328,329,332,333,334,335,336,338,339,340,341,342,343,344,345,346,347,351,352,353,355,356,357,358,359,360,361,362,365,366,367,369,370,373,375,381,384,386,388],object_confirm_delet:386,object_detail:386,object_from_modul:361,object_id:131,object_paramet:192,object_search:131,object_subscription_set:263,object_tot:334,object_typeclass:[359,384],objectattributeinlin:261,objectcr:381,objectcreateform:261,objectcreateview:386,objectdb:[13,43,45,75,126,130,153,261,263,264,269,331,332,333,341,346,358,365,369,370],objectdb_db_attribut:261,objectdb_db_tag:[261,332],objectdb_set:[160,333,336],objectdbadmin:261,objectdbfilterset:[365,370],objectdbmanag:[262,263],objectdbseri:[367,370],objectdbviewset:[369,370],objectdeleteview:386,objectdetailview:386,objectdoesnotexist:[160,189,256,263,273,291,333,336,352],objecteditform:261,objectform:381,objectmanag:[262,264,334],objectnam:90,objects_objectdb:58,objectsessionhandl:[12,264],objecttaginlin:261,objectupd:381,objectupdateview:386,objid:31,objlist:[42,267],objlocattr:[249,258],objmanip:171,objmanipcommand:171,objnam:[19,45,171],objparam:269,objs2:43,objsparam:269,objtag:258,objtyp:188,obnoxi:286,obs:335,obscur:[95,142,220,221],observ:[14,15,59,94,99,171,177,191,202,221,240,245,250,308,339,361],obtain:[5,22,66,85,97,138,144,146,195,249],obviou:[9,66,127,147,205,386],obvious:[15,40,60,66,71,76,79,127,336],occaecat:28,occas:9,occasion:[108,144],occat:106,occation:[112,347],occur:[3,22,37,46,48,67,81,89,180,187,219,236,251,259,264,316,345,354],occurr:[70,97,116,338],ocean:[109,144],oct:[106,107],octet:192,odd:[68,71,110,128,147],odor:90,off:[2,13,15,20,22,26,27,30,31,41,44,53,54,58,59,60,62,64,66,71,76,77,83,86,94,99,100,106,108,110,113,116,119,121,128,135,136,144,146,147,151,156,166,176,181,182,186,187,197,203,215,216,221,245,248,250,259,264,289,297,304,307,323,335,338,339,341,343,345,346,347,353,354,362,387],off_bal:83,offend:49,offer:[0,7,8,9,11,13,15,20,22,23,26,27,30,33,34,37,42,44,46,53,55,56,58,60,62,63,68,72,73,76,77,79,82,85,87,88,89,91,97,98,102,103,104,106,110,111,114,115,116,129,142,144,164,165,170,171,181,192,194,195,202,220,250,266,274,325,345],offernam:194,offici:[8,11,74,142,146,147,354],officia:28,offlin:[16,42,67,133,144,170,187,339],offscreen:67,offset:[221,343,354],often:[0,3,5,6,9,11,12,13,16,20,22,24,27,37,39,40,43,44,48,52,53,55,58,59,62,68,70,71,74,77,82,86,89,91,93,97,103,104,106,107,108,112,113,115,119,144,147,158,164,169,179,180,181,187,195,232,234,235,236,237,238,241,244,259,263,273,275,284,289,303,323,333,335,339,341,347,354,367],ohloh:73,okai:[3,9,27,71,72,86,90,112,113,116,143,213],olc:[102,171,266,269],olcmenu:266,old:[7,9,19,20,26,27,31,40,45,59,62,66,67,72,74,76,80,81,85,88,90,94,96,109,112,116,128,138,144,156,164,165,168,171,186,194,212,221,259,264,269,293,334,335,338,341],old_default_set:8,old_kei:[41,264],old_nam:41,older:[12,40,67,76,77,133,136,138,171],oldnam:335,oliv:62,omit:[42,97,146],ommand:162,on_:195,on_bad_request:286,on_ent:[68,195],on_leav:[68,195],on_nomatch:[68,195],onbeforeunload:46,onbuild:146,onc:[3,5,6,9,11,12,14,22,23,27,31,34,37,40,45,46,48,50,53,56,60,62,66,67,68,70,71,73,74,76,77,80,81,85,86,89,90,91,96,99,101,102,103,104,105,106,107,110,112,113,115,127,128,130,133,135,138,142,144,146,150,156,158,163,166,171,176,179,180,182,187,194,195,203,204,210,214,215,216,218,220,227,232,234,235,236,237,238,240,245,248,249,250,251,252,264,268,273,276,289,294,307,311,322,333,338,345,354,359,361],onclos:[53,295,312],onconnectionclos:46,ond:336,one:[0,2,3,4,5,6,7,8,9,11,12,13,14,15,16,19,20,22,23,25,26,27,28,29,30,31,33,34,36,37,39,40,42,43,44,45,46,48,49,50,51,55,56,58,59,60,61,62,64,65,66,67,68,70,71,72,73,74,76,77,78,79,80,81,82,83,86,87,88,89,90,91,92,94,95,96,97,98,99,100,101,103,104,105,106,107,108,109,110,111,113,114,115,116,117,118,119,125,127,128,129,130,131,133,135,137,138,139,142,144,145,146,147,149,155,156,160,163,164,165,166,168,169,171,177,180,182,186,187,188,189,192,194,195,197,200,202,204,210,213,214,215,219,220,221,229,231,232,234,235,236,237,238,241,245,249,250,251,252,255,256,258,259,261,263,264,266,267,268,269,273,277,278,284,286,288,289,294,295,296,304,307,308,323,324,325,329,331,333,334,335,338,339,341,342,344,345,346,347,348,351,352,353,354,356,357,358,359,361,362,381,384,386],ones:[8,15,19,20,22,30,31,42,56,62,64,67,68,79,89,90,94,98,99,105,115,128,139,142,144,146,147,164,165,166,189,195,210,212,234,235,236,237,238,258,268,269,288,293,325,338,347,355],onewai:171,ongo:[82,97,112,115,194,228],ongotopt:46,onkeydown:46,onli:[0,3,5,7,8,11,12,13,14,15,16,19,20,22,23,26,27,28,29,30,31,33,34,37,39,40,41,42,43,45,46,48,49,51,53,56,58,59,62,64,65,66,67,68,70,71,72,73,75,76,77,79,80,81,82,83,85,86,87,88,89,90,91,92,94,95,96,97,98,99,100,103,104,105,106,107,108,109,110,111,113,114,115,116,118,119,124,125,127,128,129,130,131,133,136,137,138,139,141,142,144,146,147,153,156,157,158,162,163,164,165,166,168,169,170,171,176,177,178,179,180,181,182,187,188,189,192,194,195,196,197,200,202,203,205,210,212,214,220,221,229,231,232,234,235,236,237,238,240,244,245,249,250,251,252,256,258,259,264,267,268,269,273,275,276,278,284,288,289,296,299,301,302,304,307,316,322,323,325,327,328,329,332,333,334,335,336,338,339,340,341,343,345,346,347,351,353,354,356,357,358,359,361,370,381,386],onlin:[9,16,29,34,39,49,60,63,73,76,77,78,80,86,89,90,92,93,103,107,110,112,114,115,116,119,120,121,122,123,133,139,141,145,149,150,153,168,176,187,195,203,298,339,388],onloggedin:46,onlook:264,only_tim:358,only_valid:269,onmessag:[53,295,312],onopen:[53,295,312],onoptionsui:46,onprompt:46,onsend:46,onset:13,ontext:46,onto:[20,22,46,76,81,87,105,110,127,142,144,165,241,250,263,296,342,345],onunknowncmd:46,onward:41,oob:[22,35,39,46,56,84,136,156,158,178,204,243,264,289,307,308,312,313,325,388],oobfunc:39,oobhandl:351,oobobject:37,ooc:[12,37,40,62,75,90,98,100,104,116,156,160,168,171,172,176,179,189,196,214,264],ooccmdsetchargen:196,ooclook:[40,196,346],oop:105,opaqu:[16,147],open:[0,3,7,10,11,20,23,26,31,40,62,66,67,68,70,72,73,74,76,77,78,79,89,90,92,98,99,102,104,105,106,107,112,113,114,115,116,117,130,131,133,135,138,139,141,142,143,144,147,149,171,178,181,192,193,194,195,203,227,228,238,241,244,245,249,258,327,333,341,354,361,387],open_lid:244,open_parent_menu:195,open_submenu:[68,195],open_wal:249,openadventur:112,openhatch:133,openlidst:245,openlock:258,opensourc:338,oper:[3,6,11,13,15,19,22,27,30,31,34,37,43,44,46,49,59,67,68,69,70,77,86,89,95,100,101,104,106,111,128,138,142,144,150,151,156,162,164,166,168,171,176,181,187,192,195,200,221,230,245,249,259,264,267,269,278,281,284,293,294,298,300,304,306,307,313,315,316,323,324,333,334,335,338,341,345,347,351,361,369,370,388],opinion:111,opnli:333,oppon:[13,114,235,237,248],opportun:[66,68,79,97,130,238],oppos:[19,34,62,147,151,323,336],opposit:[72,86,90,98,127,171,241],opt:[46,90,251],optim:[5,19,22,23,44,58,77,85,88,113,135,166,269,319,322,333],option100:27,option10:27,option11:27,option12:27,option13:27,option14:27,option1:27,option2:27,option3:27,option4:27,option5:27,option6:27,option7:27,option8:27,option9:27,option:[2,3,7,8,12,13,17,19,20,22,23,26,30,31,37,39,42,43,46,48,55,56,58,59,60,61,62,63,64,72,74,76,77,79,81,83,86,89,91,94,96,98,99,102,103,105,111,113,115,116,119,124,130,131,133,134,135,136,137,138,146,150,153,156,157,158,162,163,164,165,166,168,169,171,176,179,180,182,185,186,187,188,189,194,195,196,197,199,200,202,203,204,205,207,209,210,212,214,215,218,219,220,221,229,231,232,236,238,243,251,252,254,255,258,259,261,263,264,266,268,269,271,273,274,275,276,277,278,280,281,282,284,286,289,290,293,294,297,298,299,300,301,302,303,304,306,307,308,311,312,313,315,316,323,325,327,332,333,334,335,336,338,339,340,341,343,344,345,346,347,348,351,353,354,355,356,357,358,360,361,362,365,373],option_class:[153,340],option_dict:345,option_gener:345,option_kei:362,option_str:251,option_typ:356,option_valu:356,optiona:[156,281,335],optionclass:[153,154,337,340],optioncontain:340,optionhandl:[153,154,337,355],optionlist:[27,266,345],options2:46,options_dict:356,options_formatt:[27,203,266,345],optionsl:268,optionstext:[27,203,345],optlist:232,optlist_to_menuopt:232,optuon:220,oracl:[135,361],orang:[62,106,218,251],orc:[42,89,124],orc_shaman:42,orchestr:146,order:[2,5,8,9,10,11,12,13,14,15,19,20,22,26,27,29,31,32,33,34,37,39,42,46,48,61,62,66,67,68,71,72,73,77,78,85,87,90,91,92,101,103,104,105,106,109,111,112,115,116,118,127,128,130,131,138,141,150,156,162,166,172,177,178,181,182,185,192,194,195,196,197,198,200,203,218,219,221,231,234,235,236,237,238,245,248,249,250,251,254,258,259,261,264,269,271,280,295,307,312,316,323,333,335,338,339,345,346,347,354,358,361,386],order_bi:101,order_clothes_list:197,ordered_clothes_list:197,ordered_permutation_regex:221,ordereddict:[13,361],ordin:338,ore:112,org:[74,77,115,144,219,251,300,306,312,338,361,381],organ:[11,31,34,37,43,60,63,67,68,72,74,92,101,107,113,114,129,166,182],organiz:113,orient:[76,77,89,107],origin:[7,11,27,34,37,40,55,66,67,71,76,79,80,81,83,86,89,94,97,101,104,105,118,133,143,147,158,164,171,195,212,214,220,221,251,264,268,269,293,335,338,345,353,357,360,387],oscar:[187,256,335],osnam:361,oss:7,ostr:[156,188,255,358],osx:[11,138],other:[2,6,8,9,11,12,13,14,15,16,17,19,20,23,26,27,29,30,31,33,34,37,40,41,42,43,44,45,46,48,49,50,51,53,55,56,58,59,60,61,62,64,65,66,67,68,70,71,72,73,74,75,76,77,78,79,80,81,82,83,85,86,87,89,90,91,92,94,95,96,97,98,99,100,101,103,104,105,107,110,111,113,114,115,116,118,119,124,125,126,127,128,130,131,134,138,139,141,146,147,149,150,151,156,162,163,164,165,166,171,177,178,179,182,183,188,192,194,197,199,201,203,209,212,214,220,221,225,227,232,234,235,236,237,238,241,245,250,251,252,256,259,263,264,268,269,274,276,278,282,288,289,293,295,296,302,304,307,316,323,324,326,333,335,337,338,339,341,343,344,345,346,347,353,355,356,358,361,362,386],other_modul:102,othercondit:98,otherroom:227,otherwis:[3,6,11,13,16,19,20,22,27,29,34,37,40,42,55,56,58,62,64,66,73,79,81,83,85,86,91,92,97,101,106,108,110,116,127,132,135,144,146,147,153,163,164,168,171,187,192,194,198,202,203,207,210,221,231,234,235,236,237,238,243,252,259,264,267,268,269,276,284,295,296,304,323,327,328,332,338,345,346,353,354,358,359,361,386],our:[0,2,3,8,9,11,12,13,15,20,22,31,44,46,50,53,56,59,63,64,65,67,70,71,72,73,74,76,77,78,79,80,81,84,85,86,87,89,90,91,93,94,95,96,97,99,101,103,105,107,108,111,113,114,115,116,117,118,119,120,121,122,123,124,129,131,132,133,134,135,138,142,143,144,145,146,147,150,160,165,179,180,202,215,232,248,249,252,259,274,329,332,354,367],ourself:[105,116],ourselv:[31,33,66,90,98,99,101,105,112,113,125,129,156,196,297,298,300,311],out:[0,3,5,6,8,11,14,15,16,17,22,23,24,27,31,34,37,39,40,42,46,48,49,50,51,54,58,59,60,62,63,64,66,67,68,70,71,72,73,74,75,76,77,78,80,81,82,83,85,86,87,88,89,91,92,97,99,100,101,102,103,104,105,106,107,108,109,110,111,113,115,116,117,119,120,121,122,123,124,127,128,130,133,134,135,137,138,141,144,146,150,155,156,163,164,168,170,171,194,196,199,201,203,214,220,221,224,225,227,228,231,234,235,236,237,238,245,249,258,268,269,276,284,286,308,312,313,315,324,325,332,333,342,344,345,347,353,360,361,381,387],out_templ:[333,353],outcom:[58,74,114,200,259,264,268],outdat:134,outdata:[53,325],outdoor:[43,109,112,129,250],outer:[101,102,347],outermost:[13,30,83,102,106,113],outerwear:197,outfunc_nam:53,outgo:[40,59,144,158,212,264,296,308,324,361],outgoing_port:144,outlet:144,outlin:[2,72,130,295],outmessag:264,output:[0,7,9,15,19,23,27,28,30,40,46,53,59,60,61,62,63,64,68,72,79,90,93,97,98,99,103,104,106,108,112,115,116,119,126,127,128,133,146,151,166,171,178,181,182,190,195,199,204,222,223,225,234,235,236,237,238,268,284,289,304,308,316,323,338,346,354,357,361],outputcmd:308,outputcommand:[30,56],outputfunc:[24,53,56,264,289,295,388],outputfunc_nam:[53,289],outputfunct:56,outrank:334,outright:[49,144],outro:[109,250],outroroom:250,outsid:[14,16,39,42,43,59,60,66,74,77,80,85,89,99,103,106,107,108,111,112,114,127,131,146,151,192,219,237,248,258,308,323,324,333,336,347],outtempl:[333,353],outtxt:19,outward:[71,144],over:[2,4,5,6,8,9,13,14,15,16,17,19,20,22,23,27,40,43,44,45,46,50,52,53,56,59,60,61,62,63,71,72,73,74,82,85,89,90,94,96,98,101,104,105,106,107,110,112,113,114,115,118,125,128,130,134,137,144,146,147,156,165,176,186,188,203,215,227,232,234,235,236,237,238,245,250,278,288,302,304,307,309,313,315,317,330,335,339,351,357,361,386],overal:[29,48,58,88,89,112,141,144,164,179,180,235],overcom:72,overdo:104,overhead:[19,23,61,129,135,221,252,333],overhear:220,overlap:[20,91,220,338,347],overload:[6,20,22,27,30,34,39,44,53,55,62,68,76,84,87,89,105,116,118,124,156,164,166,180,187,195,196,202,204,218,221,227,228,234,235,236,237,238,248,249,250,251,264,269,278,288,307,324,343,345,346,347,355],overpow:112,overrid:[2,20,27,29,31,37,40,41,42,46,56,64,67,68,75,79,80,81,92,97,98,99,103,105,107,117,118,124,125,127,137,156,166,171,178,182,187,188,192,195,202,210,212,220,236,238,243,250,251,259,264,269,276,307,325,329,332,333,346,351,354,355,358,370,386],overridden:[53,79,118,156,171,195,230,251,386],override_set:41,overriden:[156,178,221],overrod:50,overrul:[12,31,156,165,221,264,347],overseen:114,overshadow:110,overshoot:361,oversight:89,overview:[0,1,16,29,50,70,76,89,93,111,116,119,120,135,147,388],overwhelm:[70,101,110],overwrit:[55,105,118,171,178,192,302,334,386],overwritten:[22,131,192,250,336],owasp:381,own:[0,4,5,8,9,11,13,14,17,19,20,23,27,29,31,33,37,39,40,41,42,43,45,48,51,55,56,58,59,60,62,63,64,67,68,72,73,74,76,77,79,80,81,83,84,86,89,91,93,94,96,97,99,102,103,104,105,107,109,110,111,116,117,118,119,120,121,122,123,127,129,130,131,132,134,138,141,142,143,145,147,153,154,160,162,163,164,165,171,176,179,190,197,199,202,203,214,216,220,221,225,234,235,236,237,238,249,251,252,258,259,264,269,289,316,324,335,338,339,340,346,347,351,354,355,359,361,370,386,388],owner:[31,51,79,96,112,156,259,355],owner_object:31,ownership:[144,146,192],p_id:130,pace:[112,248],pack:[56,293],packag:[4,5,6,8,9,59,60,64,67,74,77,86,102,103,132,134,135,138,142,143,144,146,150,154,155,167,184,247,253,257,260,270,284,293,308,312,331,365],package_nam:77,packagenam:77,packed_data:[281,293,294],packeddict:[6,335],packedlist:[6,335],packet:[56,304],pad:[17,62,338,347,353,361],pad_bottom:347,pad_char:347,pad_left:347,pad_right:347,pad_top:347,pad_width:347,page:[0,2,7,8,10,11,14,15,17,20,22,27,28,31,34,39,45,46,49,50,53,55,59,60,63,67,73,74,76,77,78,80,81,82,89,90,93,94,98,99,102,110,111,114,128,130,131,133,134,135,142,143,144,146,147,149,151,152,176,177,187,256,258,261,271,313,332,335,345,346,361,363,379,386,387,388],page_back:346,page_ban:176,page_end:346,page_formatt:346,page_next:346,page_quit:346,page_titl:386,page_top:346,pagelock:258,pageno:346,pager:[28,346],pages:[27,345],pagin:346,paginate_bi:386,paginator_index:346,paginator_slic:346,pai:[88,96,112,144,147,249,258],paid:144,pain:144,painstakingli:14,pair:[20,46,56,115,156,164,197,258,264,325,381,386],pal:33,palett:128,pallet:72,palm:203,pane:[46,59,183,201],pane_name_to_cut_apart:46,pane_to_set:46,panel:7,panic:[42,98],pant:110,paper:[93,115,133],paperback:114,par:135,paradigm:[67,110,125,235],paragraph:[15,19,74,217,339,347,361],parallel:[89,91,92,119,334],paralyz:236,param:[171,264,276,278,286,296,329,354,362,365,366,367],paramat:[156,166,264,323],paramet:[2,3,7,8,20,66,68,70,71,85,91,97,101,108,112,136,146,153,156,157,158,162,163,164,165,166,171,178,185,186,187,188,189,192,194,195,197,199,200,202,203,204,205,207,208,209,210,212,213,214,215,219,220,221,224,225,227,231,232,234,235,236,237,238,243,244,250,251,252,255,259,261,263,264,266,268,269,271,274,275,276,277,278,281,282,283,284,286,288,289,290,291,293,294,295,296,297,298,299,300,301,302,303,304,306,307,308,309,311,312,313,315,321,322,323,324,325,327,328,329,333,334,335,336,338,339,340,341,342,343,344,345,346,347,348,351,353,354,355,356,358,359,360,361,362,365,366,367,373],paramount:8,paramt:362,paremt:269,parent1:42,parent2:42,parent:[12,19,20,22,34,42,45,53,62,65,68,74,77,81,87,94,98,100,104,105,107,116,125,127,160,168,171,179,181,195,212,221,231,232,251,258,263,264,268,269,273,333,334,335,343,352,354,361,365,386],parent_categori:232,parent_kei:[68,195],parent_model:[157,185,254,261,271,332],parentesi:353,parenthes:106,parenthesi:[106,107],parentlock:258,pari:[133,144],pariatur:28,paricular:22,park:195,parlanc:117,parri:[115,249],parrot:125,pars:[6,16,20,22,26,27,39,42,53,56,59,60,62,63,74,93,94,104,113,116,117,119,131,138,161,162,163,166,171,177,178,179,180,181,182,186,194,195,200,201,202,214,221,224,225,226,232,249,250,251,259,264,267,268,269,289,296,299,308,312,313,333,338,339,343,344,345,353,360,361,388],parse_ansi:338,parse_ansi_to_irc:296,parse_fil:339,parse_html:360,parse_inlinefunc:353,parse_input:345,parse_irc_to_ansi:296,parse_languag:221,parse_nick_templ:[333,353],parse_opt:232,parse_sdescs_and_recog:221,parseabl:268,parsed_str:296,parseerror:251,parser:[22,39,42,60,86,102,131,133,162,163,168,171,179,180,186,201,202,218,220,221,249,251,267,268,303,338,353,360],parsestack:353,part1:[218,388],part2:[218,388],part3:388,part4:388,part5:388,part:[0,2,3,4,7,8,11,13,14,15,16,22,27,29,31,36,37,40,45,46,50,53,55,58,59,62,64,65,67,68,70,71,72,73,74,78,79,83,85,86,87,89,90,92,96,97,99,101,103,104,105,106,107,109,110,111,114,115,116,118,124,135,144,163,164,166,179,180,182,187,192,194,195,200,218,221,232,237,255,258,259,267,268,284,288,313,324,327,329,333,334,338,339,343,345,353,361],part_a:194,part_b:194,parth:309,parti:[3,9,14,19,62,67,73,77,106,107,111,131,134,135,142,143,144,189,194,200],partial:[29,81,220,268,286,299,325,356,358,361,362],particip:[86,147,234,235,236,237,238],particular:[5,6,11,14,15,20,29,30,31,34,39,40,41,43,45,49,53,56,59,61,62,64,68,69,74,77,78,82,86,87,90,93,96,99,101,102,103,105,106,107,108,110,111,112,113,125,127,129,133,134,142,143,156,163,164,171,188,202,225,236,237,245,255,258,259,264,273,325,327,335,351,358,386,387],particularli:[8,27,49,66,74,76,79,85,179,221,231,269,288],partit:338,partli:[13,20,58,63,102,164],party_oth:194,pass:[2,8,10,19,22,27,28,30,31,40,41,42,44,45,48,53,56,59,71,72,79,80,81,82,83,84,91,92,95,96,97,98,100,104,105,107,108,112,113,124,127,131,135,144,146,151,156,158,164,183,192,197,199,200,203,204,209,215,224,225,227,231,232,234,235,236,237,238,243,249,258,259,264,268,274,278,282,294,302,304,307,312,313,323,329,333,335,344,345,346,347,353,354,355,356,357,360,361,365,370,386],passag:[56,115,197,249,250,348],passant:128,passavataridterminalrealm:304,passiv:[83,115,130],passthrough:[20,276],password1:[157,381],password2:[157,381],password:[2,11,25,27,30,31,49,67,77,79,98,103,104,119,135,147,150,156,157,168,169,183,201,216,219,225,289,304,307,328,341,373,381],password_chang:384,passwordresettest:384,past:[0,14,26,39,46,60,66,70,72,73,90,91,92,99,103,112,115,116,130,236,330,339,348,386],pastebin:73,patch:[45,359],path:[4,7,12,15,19,27,30,31,34,37,40,42,45,53,54,58,59,62,64,66,68,74,77,79,80,83,85,96,99,100,101,104,106,107,113,116,118,119,124,125,127,131,134,138,140,144,146,156,158,160,163,164,165,170,171,172,173,174,175,176,181,187,189,192,193,194,195,196,197,199,200,202,204,210,212,213,215,216,218,219,220,221,227,228,229,234,235,236,237,238,240,241,243,244,245,248,249,250,252,256,263,264,268,269,273,275,276,278,284,291,293,302,309,315,317,321,325,329,333,334,335,339,341,343,344,345,346,348,351,352,358,361,370,386],path_or_typeclass:213,pathnam:359,patient:78,patreon:78,patrol:248,patrolling_pac:248,patron:[73,78],pattern:[33,50,64,65,79,92,117,130,131,169,221,328,361],paul:45,paus:[27,37,48,70,85,115,146,151,209,276,361],pausabl:361,pauseproduc:286,paxboard:133,payload:[295,312],payment:112,paypal:[73,78],pdb:153,pdbref:[31,258],pdf:133,peac:124,peek:[0,27,97,99,104],peer:[295,312],peform:289,peg:147,pem:140,pemit:[60,169],pen:93,penalti:[58,110,236],pend:329,pennmush:[60,63,89],pentagon:147,peopl:[0,6,12,29,31,60,62,73,76,77,80,90,94,96,99,101,103,110,111,112,113,114,115,133,137,141,142,144,147,149,177,201,221,249,250,332,341],pep8:0,per:[5,12,13,22,27,34,40,42,51,56,58,74,77,79,86,90,91,92,106,111,112,113,115,116,146,156,187,192,202,220,231,234,235,236,237,238,248,297,298,300,308,311,327,345,346,347,351,354,355],perceiv:[91,112],percent:[22,231,361],percentag:[115,153,190,230,334,361],percentil:361,perception_method_test:320,perfect:[11,26,76,110,111,113,143,146,192],perfectli:[43,63,79,92,338],perform:[3,5,6,13,14,15,28,30,31,34,37,62,68,76,81,85,86,97,106,115,116,124,130,131,135,141,143,147,162,164,168,171,176,187,195,197,203,209,210,221,224,232,234,235,236,237,238,245,264,267,273,274,293,307,315,316,333,334,335,342,353,355,358,361,362,381],perhap:[3,6,50,60,68,70,91,92,97],period:[8,9,10,106,144,146,147,361],perist:[23,45],perm:[13,22,29,31,42,43,49,51,68,79,81,90,96,98,104,116,130,141,160,169,170,171,176,177,178,181,202,208,218,227,250,256,258,259,263,264,273,333,335],perm_abov:[31,258],perm_us:169,perma:112,permadeath:112,perman:[20,27,49,79,80,81,96,98,105,109,110,116,136,144,156,164,165,168,171,176,177,181,212,220,264,277,335],permiss:[5,12,13,20,29,42,49,52,54,60,67,79,80,81,86,99,104,113,116,130,134,135,141,143,153,156,157,159,160,164,166,168,169,170,171,177,179,180,187,208,212,221,238,256,258,259,263,264,268,269,273,333,334,335,336,339,341,354,358,363,364,365,367,370,386,388],permission_account_default:[31,315],permission_class:370,permission_func_modul:258,permission_guest_default:54,permission_hierarchi:[31,51,258,259],permissiondeni:366,permissionerror:268,permissionfilt:365,permissionhandl:[130,336],permissionshandl:[332,367],permit:[86,132,171,328],permstr:[31,156,335,341],permut:221,perpetu:5,persis:83,persist:[19,20,22,23,27,32,34,37,39,40,42,44,45,58,66,68,76,77,80,88,89,93,100,103,106,111,115,116,119,127,133,151,156,160,171,181,187,188,189,195,199,203,210,220,221,228,231,232,234,235,236,237,238,245,249,256,263,264,266,267,268,273,274,275,276,277,278,289,290,291,322,323,331,335,341,343,345,347,348,361],person:[37,40,49,63,78,80,98,110,111,114,125,138,144,156,171,177,192,194,200,221,244],perspect:[40,55,114],pertain:[118,128,147,374],pertin:[29,130],perus:46,peski:96,pester:[89,110],phase:[71,110],philosophi:[31,106],phone:[50,77,143,219],phone_gener:219,phonem:220,php:[60,77,381],phrase:[70,213],phrase_ev:213,physic:[12,71,110,237,248],pick:[7,14,16,20,22,25,27,29,31,37,39,67,72,73,76,80,85,91,96,99,105,106,111,112,113,114,119,129,142,144,146,163,168,171,177,179,180,186,197,205,212,221,238,241,249,250,264,316],pickl:[13,44,56,83,193,231,274,278,281,291,293,294,333,334,342,343,345,357],pickle_protocol:357,pickledfield:357,pickledformfield:[332,357],pickledobject:357,pickledobjectfield:357,pickledwidget:357,picklefield:[153,154,332,337],pickpocket:178,pickup:[212,238,264],pictur:[7,53,80,89],pid:[2,11,31,130,146,151,258,264,284,294,361],piddir:2,pidfil:284,piec:[5,14,48,77,105,106,111,218,311,339],pierc:249,piggyback:156,pile:[165,339],pillow:143,pinch:112,ping:[158,284,296],pip:[0,3,5,6,8,9,10,67,74,102,106,130,135,138,139,141,143,145,146,150,153],pipe:[40,296,342],pitfal:[0,15,62,128],pixel:136,pizza:[160,189,256,263,273,333,335,336],pkg:143,pki:134,place:[0,9,11,12,13,15,16,27,31,34,37,39,40,42,55,56,57,63,64,66,67,70,71,72,73,74,76,77,79,80,81,84,86,91,92,97,99,102,103,105,106,108,112,113,114,116,117,118,127,128,129,130,134,138,141,143,144,146,147,156,169,171,177,194,195,197,199,203,212,218,221,224,231,234,235,236,237,238,249,250,252,264,276,293,302,307,323,324,325,339,340,342,345,361],placehold:[131,259,264,347],plai:[12,13,15,29,40,51,56,62,66,68,70,72,76,77,83,85,90,93,94,97,106,109,110,111,113,114,115,116,119,127,129,130,143,144,150,156,234,238,308,325,341],plain:[14,15,58,59,74,90,99,116,194,195,217,269,289,315,342,386],plaintext:225,plan:[3,15,16,45,53,67,76,86,88,93,101,105,108,119,120,121,122,123,144,146,339,388],plane:[108,127],planet:[91,103,133],plant:251,plate:[45,95,219],platform:[7,11,37,50,67,88,138,144],playabl:[112,130,384],player:[5,6,13,20,23,27,29,31,40,43,46,48,49,51,53,56,60,61,67,68,72,75,76,77,80,81,83,86,90,94,96,97,99,100,103,104,105,106,107,109,110,111,114,115,116,119,120,121,122,123,124,125,126,127,130,137,139,141,144,145,150,151,165,168,171,176,181,188,191,192,194,195,203,205,213,214,215,218,220,221,225,229,232,237,238,250,251,252,255,273,298,307,324,339,344,361,381,386],playernam:141,playerornpc:67,pleas:[0,5,8,11,17,20,27,42,45,46,50,62,72,73,78,79,99,105,112,113,124,125,126,130,132,134,138,141,142,143,144,181,286,315,351,357,381],pleasur:50,plenti:[15,63,76],plot:317,plu:[7,19,68,77,181],pluck:22,plug:[41,118,147,252],plugin:[39,53,56,60,75,76,79,102,103,133,142,192,221,282,388],plugin_handl:46,plugin_manag:46,plural:[31,51,90,237,264],png:[36,118],po1x1jbkiv:73,pobject:244,pocoo:361,poet:101,point:[2,3,5,6,7,8,10,11,12,14,15,16,19,20,22,23,27,34,37,39,40,43,44,45,56,58,59,61,64,66,68,71,73,74,76,79,80,81,83,85,88,91,92,93,94,96,97,98,99,103,104,105,106,107,110,112,114,115,116,118,122,127,130,131,134,138,143,144,146,150,156,162,166,171,179,180,181,194,204,212,215,221,227,234,250,251,252,264,266,268,278,284,288,302,304,312,323,325,332,333,335,339,345,353,361,386],pointer:[0,71,88,97],pointless:[34,44,48],poison:[111,231,236,269],pole:218,polici:[107,144,147,225,256,328,333],polit:[107,112,147],poll:[53,118,168,248,284,313],pommel:112,pong:296,pool:[20,44,135,278,329,342],poor:90,poorli:147,pop:[7,48,74,81,90,96,135],popen:294,popul:[2,64,68,86,89,91,94,110,135,164,172,173,174,175,195,197,202,218,221,229,234,235,236,237,238,241,248,249,250,277,278,332,339,343,344,346,353],popular:[60,67,77,89,101,119,133,147,149,386],popup:46,port:[2,66,67,76,119,134,135,137,138,140,142,146,151,158,176,293,296,304,316,325,329],portal:[5,7,9,24,34,38,39,46,53,59,75,102,103,127,133,144,147,151,153,154,158,181,198,279,281,284,322,323,324,325,348,354,361,388],portal_connect:325,portal_disconnect:325,portal_disconnect_al:325,portal_l:294,portal_pid:[294,361],portal_receive_adminserver2port:294,portal_receive_launcher2port:294,portal_receive_server2port:294,portal_receive_statu:294,portal_reset_serv:325,portal_restart_serv:325,portal_run:284,portal_service_plugin_modul:53,portal_services_plugin:[39,53,103],portal_services_plugin_modul:53,portal_sess:53,portal_session_sync:325,portal_sessions_sync:325,portal_shutdown:325,portal_st:284,portal_uptim:348,portallogobserv:354,portalsess:[40,53,302],portalsessiondata:325,portalsessionhandl:[53,153,279,292,303,325],portalsessionsdata:325,portion:[192,195,205],pose:[83,90,98,111,112,115,177,187,210,221],pose_transform:187,poser:187,posgresql:135,posit:[14,27,46,68,71,72,85,97,99,107,111,115,128,165,183,192,195,201,215,217,238,249,250,251,252,277,338,339,342,343,347,361,362],positive_integ:362,positiveinteg:355,posix:[354,361],possess:204,possibl:[0,5,8,9,11,13,20,22,23,26,27,30,31,37,39,40,42,43,48,54,55,62,66,67,68,70,72,73,74,76,77,81,85,89,90,97,101,102,103,106,107,109,111,112,113,114,115,116,118,128,131,135,138,143,146,153,156,160,162,164,171,179,180,192,194,202,209,212,215,218,220,221,229,231,245,248,250,252,258,259,264,267,268,269,274,278,289,309,313,323,325,334,336,338,341,343,344,345,347,357,358,361],post:[20,23,31,41,72,73,76,78,89,90,92,110,118,119,126,130,138,141,145,225,313,369,386],post_delet:41,post_init:41,post_join_channel:187,post_leave_channel:187,post_migr:41,post_sav:41,post_send_messag:187,post_text:205,post_url_continu:[157,185,261],postfix:220,postgr:[77,135],postgresql:[76,361],postgresql_psycopg2:135,postinit:46,posttext:203,postupd:[126,141],pot:[49,100],potato:[136,251],potenti:[0,13,14,48,56,62,72,86,95,107,111,112,115,116,144,145,166,188,225,226,258,259,264,268,355,358,361],potion:[108,111,112,335],power:[3,16,20,22,26,27,31,34,42,46,51,70,72,76,77,83,84,88,90,99,101,105,106,107,108,109,111,112,113,115,116,164,165,170,171,232,237,251,339,345,361],powerfulli:66,pperm:[31,49,86,104,130,141,168,176,218,258,264],pperm_abov:258,pprofil:284,pprogram:284,practial:16,practic:[0,2,11,14,15,22,23,31,34,40,42,66,68,73,77,78,83,89,90,104,105,106,107,108,111,112,113,128,138,144,339],pre:[22,34,62,71,72,110,112,137,138,141,144,156,171,178,220,259,264,268,269,312,313,343,357],pre_delet:41,pre_init:41,pre_join_channel:187,pre_leave_channel:187,pre_migr:41,pre_sav:[41,357],pre_send_messag:187,pre_text:205,preced:[20,42,51,62,86,113,164,166,186,232,264,269,334,347],preceed:99,precend:162,precis:[13,128,338],predefin:[127,328],predict:[45,106,130],prefer:[7,11,20,31,42,46,68,72,73,76,78,80,89,97,103,105,116,119,135,141,144,164,166,169,187,195,221,235,248,255,264],prefix:[3,6,45,55,58,68,135,147,157,163,180,187,205,220,254,261,289,296,332,338,353,354,358,361,365,381],prefix_str:81,preload_metadata:192,prelogout_loc:104,prematur:[5,19,194,276],prepai:144,prepar:[8,33,42,71,89,117,156,221,234,235,236,237,238,248,273,342,357],prepars:74,prepend:[214,221,264,338,339,345,361],prepopul:[332,386],preprocess:171,prerequisit:[2,67],prescrib:[76,89,111,112],presenc:[17,67,76,88,103,104,118,128,135,144,156,264,329,363],present:[3,6,11,27,39,40,68,70,71,79,91,92,96,97,111,115,116,134,195,203,205,219,220,229,232,251,269,343,361,367],preserv:[128,179,180,335,338,339,354,361],press:[0,3,7,15,16,20,22,27,31,56,59,67,68,99,103,106,119,138,146,151,195,241,244,245,249,282,345],press_button:244,pressabl:245,pressur:95,presto:99,presum:[91,114,165,354,355],pretend:143,pretext:203,pretti:[0,11,34,59,66,68,73,74,77,81,85,86,96,104,106,107,109,110,112,115,116,127,128,130,142,144,166,197,219,231,253,259,268,344,346,355,361],prettier:[66,381],prettifi:[89,361],prettili:91,pretty_corn:347,prettyt:[19,95,347],prev:[27,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113],prev_entri:27,prevent:[13,22,70,74,91,99,106,192,209,238,251,332,346,386],preview:74,previou:[3,13,15,20,22,27,28,31,33,39,41,48,50,58,62,66,68,83,86,90,91,92,96,97,98,101,102,104,105,106,109,112,113,116,128,146,186,231,232,250,266,276,345,354,386],previous:[8,20,23,26,30,37,39,62,71,97,99,105,118,130,142,166,169,171,194,215,289,305,309,316,325,336],prgmr:144,price:[112,144,192,249],primari:[17,45,104,130,146,221,264,333,358],primarili:[2,12,23,49,60,73,74,76,110,111,156,194,221,255,302,342,361],primarli:74,primary_kei:130,prime:[162,194],primer:48,primit:[112,171,268],princess:[72,109],principl:[0,12,22,27,31,34,51,53,67,73,74,76,84,89,96,101,103,104,107,111,112,116,129,144,145,165,168,194,250],print:[0,3,4,6,13,19,26,27,45,48,53,58,61,67,79,80,81,90,97,101,104,106,107,151,168,200,220,231,251,268,283,284,344,345,346,347,353,354,361],print_debug_info:345,print_help:251,print_usag:251,printabl:310,printout:[107,307],prio:[20,22,81,104,162,250],prior:[124,209,264],priorit:220,prioriti:[6,20,22,27,79,81,87,113,115,164,168,172,173,174,175,179,180,195,216,249,250,264,343,345,346],prison:[101,110],privat:[11,74,79,89,92,110,112,134,144,176,177,188,296,309],private_set:67,privatestaticroot:329,priveleg:105,privileg:[80,110,116,135,138,139,142,145,177,221,252,264,335],privkeyfil:304,privmsg:296,prize:109,proactiv:44,probabl:[9,13,22,27,34,50,58,60,68,70,73,76,77,79,80,81,83,89,92,96,104,112,113,115,118,127,130,131,135,140,144,192,195,213,219,250,286,296,304,351,361,362],problem:[0,2,6,8,13,14,16,19,31,61,65,68,72,74,77,78,80,81,88,92,93,98,106,108,110,112,113,135,136,143,144,146,147,151,156,165,210,264,293,339],problemat:[81,361],proce:[15,16,127,128,146,311,386],procedur:[232,304,307],proceed:[11,361],process:[2,3,5,7,11,13,14,15,16,22,27,34,36,55,56,59,66,67,68,71,74,76,77,79,81,83,85,86,97,103,106,110,112,113,114,120,130,134,135,143,144,146,156,162,164,171,181,194,215,221,232,251,257,259,264,268,274,284,289,293,294,301,304,307,312,313,322,323,325,338,339,342,345,355,360,361,362,386,388],process_languag:221,process_recog:221,process_sdesc:221,processed_result:361,processj:[333,353],processor:[5,24,72,112,122,151,153,154,170,181,215,337,388],procpool:361,produc:[11,22,27,62,111,116,168,171,218,220,249,252,264,268,269,283,315,333,335,344,345,353,361],produce_weapon:249,producion:19,product:[0,2,5,7,9,11,64,135,144,147,149,315,318,345],production_set:67,prof:5,profess:101,profession:[60,77,89,106,112,117],profil:[1,139,153,154,157,160,203,279,388],profile_templ:203,profunc:42,prog:251,progmat:88,program:[5,7,8,9,12,16,36,48,58,60,62,75,77,85,88,89,102,103,106,107,109,113,133,135,138,143,144,146,147,151,181,251,279,284,307,313,315],programiz:85,programm:[97,119],programmat:62,progress:[11,78,96,114,133,234,235,236,237,238,343],proident:28,project:[8,11,16,60,64,71,72,73,77,79,81,97,118,133,142,355,387],projectil:237,promis:0,promisqu:128,prompt:[0,3,45,46,56,59,67,72,77,93,106,119,135,136,137,138,143,146,150,166,232,282,296,307,312,313,339,345,388],promptli:15,prone:[9,165,335],pronoun:204,prop:110,propag:[134,288,357],proper:[2,8,11,16,19,46,64,77,80,85,87,88,89,96,97,110,111,112,113,115,116,130,135,146,147,171,194,195,211,220,344],properli:[7,8,9,10,11,32,45,60,65,67,83,90,91,92,124,128,130,166,192,194,226,250,258,278,304,361,386],properti:[4,6,8,14,29,31,32,33,39,42,44,58,68,72,75,76,81,85,88,89,94,98,102,104,108,112,114,115,116,127,128,151,156,157,158,160,166,168,171,179,181,182,185,187,189,192,195,203,207,209,218,221,230,231,232,234,236,237,238,248,249,250,251,252,254,256,258,259,261,263,264,268,269,271,273,275,276,280,289,291,296,302,316,323,324,325,332,333,335,336,340,342,345,355,356,357,358,361,367,381,386],propnam:116,propos:26,proprietari:135,propval:116,propvalu:116,prosimii:[130,131],prospect:110,prot:269,prot_func_modul:[42,267],protect:[20,144,171],protfunc:[153,154,265,268],protfunc_modul:268,protfunc_pars:268,protfunct:268,protkei:[42,267,268],proto:[293,304],proto_def:218,protocol:[19,22,24,30,36,39,40,46,52,56,75,77,102,103,133,136,142,144,147,151,156,158,166,169,204,225,243,264,279,281,284,286,289,293,294,295,296,297,298,299,300,302,303,304,306,307,308,309,311,312,313,315,322,323,324,325,343,357,361,388],protocol_flag:[306,307,311,323],protocol_kei:324,protocol_path:[302,325],protodef:218,prototocol:181,protototyp:[266,268,269],protototype_tag:42,prototoyp:267,prototyp:[24,70,75,76,102,103,110,126,153,154,171,181,218,235,236,249,388],prototype1:269,prototype2:269,prototype_:42,prototype_desc:[42,269],prototype_dict:171,prototype_diff:269,prototype_diff_from_object:269,prototype_from_object:269,prototype_kei:[42,171,268,269],prototype_keykei:171,prototype_lock:[42,269],prototype_modul:[42,171,268,269],prototype_par:[42,171,269],prototype_tag:269,prototype_to_str:268,prototypefunc:269,protpar:[268,269],protpart:268,provid:[2,6,8,11,13,17,22,37,42,45,46,49,50,60,66,68,74,76,79,81,83,86,92,97,105,106,107,108,111,112,113,117,118,128,130,131,140,143,144,146,147,156,166,171,176,187,192,195,197,203,205,208,215,218,219,232,234,235,236,237,238,251,252,258,264,276,304,327,334,345,355,356,357,361,362,369,370,381,386],provok:[3,133],proxi:[45,102,147,149,192,329,332],proxypass:134,proxypassrevers:134,prudent:2,prune:20,pseudo:[53,60,71,97,219,220],psionic:237,psql:135,psycopg2:135,pty:67,pub:86,pubkeyfil:304,publicli:[112,133,137],publish:[2,80,133,146],pudb:153,puff:88,pull:[2,9,11,20,22,73,74,77,81,103,118,146,213,245,249,286],pullrequest:73,pummel:109,punch:[20,98],punish:[112,238],puppet:[6,12,20,22,30,31,40,41,51,53,62,67,68,76,80,85,86,89,90,91,104,116,125,130,155,156,162,168,171,179,196,212,214,258,264,323,325,335,353,384,386],puppet_object:[12,156],purchas:96,pure:[45,59,62,70,88,112,128,273,284,333,338],pure_ascii:361,purg:[13,45,151,181],purpos:[13,36,43,56,79,101,107,116,128,130,144,158,162,166,200,209,304,333,342,345,361],pursu:[109,248],push:[55,68,74,105,128,146,147,213,241,244,245,249],pushd:138,put:[3,7,8,12,14,15,22,26,27,31,33,34,37,39,40,42,45,48,49,51,56,58,62,63,64,66,70,71,72,73,74,77,78,80,81,89,90,96,98,99,103,105,106,108,110,111,113,114,115,116,117,118,127,130,133,135,144,147,149,165,168,169,171,173,177,193,196,197,203,205,221,232,234,235,236,237,238,240,245,259,293,307,346,347,361],putti:144,puzzl:[109,133,153,154,190,249,250],puzzle_desc:249,puzzle_kei:250,puzzle_nam:218,puzzle_valu:250,puzzleedit:218,puzzlerecip:218,puzzlesystemcmdset:218,pvp:110,pwd:146,py3:293,pyc:103,pycharm:[1,74,119,388],pyflak:0,pylint:0,pyopenssl:139,pypath:361,pypath_prefix:361,pypath_to_realpath:361,pypi:[5,77,133,144,338],pypiwin32:[67,138],pyprof2calltre:5,pyramid:252,pyramidmapprovid:252,pyself:111,python2:[6,67,138],python37:138,python3:[77,138,143,150,231],python:[3,5,6,7,8,9,10,12,13,15,16,19,20,22,26,27,31,34,39,42,45,48,49,51,54,55,58,60,61,62,64,66,67,68,70,71,72,73,74,75,77,79,80,83,85,88,90,91,92,93,95,96,97,98,99,100,101,102,104,105,108,111,112,113,114,115,116,117,119,120,121,122,123,125,130,131,135,138,139,142,143,144,145,146,147,150,151,163,165,170,171,175,181,182,195,200,207,208,209,210,211,212,213,219,251,252,259,263,267,268,269,275,278,284,286,293,297,302,312,323,325,329,331,334,335,338,339,341,342,343,344,345,347,348,351,354,357,361,367,387],python_execut:77,python_path:[165,361],pythonista:133,pythonpath:[165,284,294,339],pytz:362,q_lycantrop:101,q_moonlit:101,q_recently_bitten:101,qualiti:[110,112,163],quell:[12,98,99,104,106,109,113,127,168,227],quell_color:171,queri:[11,13,23,42,43,50,56,58,77,85,88,93,108,113,119,160,189,221,255,256,263,264,267,268,269,273,291,304,319,333,334,335,336,346,352,358,361,362],query_al:333,query_categori:333,query_info:284,query_kei:333,query_statu:284,query_util:365,queryset:[37,43,77,188,214,255,268,290,332,334,346,365,370,386],queryset_maxs:346,querystr:365,querystring_auth:192,querystring_expir:192,quest:[76,89,93,109,110,111,124,138],question:[0,8,11,22,23,26,27,48,64,68,89,110,112,114,120,134,138,144,171,263,281,282,333,343,345,361],queu:284,queue:[2,115,329],qui:28,quick:[6,20,22,43,60,65,68,74,76,85,97,106,107,110,115,133,144,149,158,171,195,220,269,289,333,336,347,369],quicker:[33,58,66,73,112],quickli:[9,13,16,22,23,27,34,43,48,58,62,81,85,112,118,126,149,171,195,220,336,339],quickstart:[6,39,55,58,74,90,143,144,146,151,387,388],quiescentcallback:286,quiet:[81,96,108,156,169,171,176,195,197,212,221,264,346,361],quiethttp11clientfactori:286,quietli:[56,59,83,333],quirk:[1,136,165,388],quit:[3,5,8,9,12,17,22,26,27,40,48,53,66,68,70,74,76,79,80,84,85,89,96,98,99,101,104,106,107,108,109,112,113,130,135,137,143,168,183,195,201,203,209,237,304,343,345,346],quitfunc:[26,343],quitfunc_arg:343,quitsave_yesno:343,quo:44,quot:[19,25,26,31,42,62,106,111,125,135,171,183,201,221,343,353,357,361],qux:232,ra4d24e8a3cab:25,rabbit:112,race:[76,88,110,114,124,130,133,134,361],rack:249,radio:112,radiu:[71,72,85],rage:[109,231],ragetrait:231,rail:[77,127],railroad:127,rain:[37,109,112,129],raini:250,rais:[16,19,22,42,48,56,92,97,101,114,131,156,158,188,192,195,200,202,207,209,210,219,220,221,231,259,267,268,276,278,283,284,302,307,313,328,333,334,338,339,341,344,345,347,353,354,355,356,357,361,362,366],raise_error:[356,361],raise_except:333,ram:[13,144],ramalho:133,ran:[2,3,8,14,106],rand:37,randint:[42,97,104,114,115,116,126,234,235,236,237,238,267,269],random:[25,37,39,42,67,70,97,99,104,109,111,112,114,115,116,126,129,144,219,220,234,235,236,237,238,240,241,244,246,249,250,252,267,269,315,316,353,361],random_string_from_modul:361,random_string_gener:[153,154,190],randomli:[5,37,58,126,129,234,235,236,237,238,248,249,267,284,316],randomstringgener:219,randomstringgeneratorscript:219,rang:[3,5,8,20,26,42,59,71,72,85,88,97,99,109,111,115,125,126,136,138,147,171,199,203,230,231,235,238,334,343,353,381,386],rank:[51,258],raph:133,raphkost:133,rapidli:165,rapier:101,raptur:308,rare:[7,9,22,23,39,44,48,58,68,74,138,259,341],rascal:43,rate:[22,73,77,111,144,153,176,190,278,284,303,361],ratetarget:[111,230,231],rather:[0,5,6,8,9,11,12,13,14,22,34,37,39,43,44,58,63,64,68,72,73,74,76,77,81,83,85,86,89,97,99,103,106,108,111,112,113,115,117,119,131,141,151,156,160,164,168,171,172,176,179,181,194,205,209,212,217,221,231,234,235,236,237,238,253,258,264,266,269,332,333,335,338,347,353,356,357,360,386],ration:[111,194],raw:[22,30,42,49,56,58,62,74,77,86,88,99,106,107,112,117,119,156,163,166,171,179,180,182,221,225,231,251,264,289,304,307,312,313,323,338,343,345,353,355,361],raw_cmdnam:[98,163,180],raw_desc:202,raw_id_field:[185,261,271],raw_input:[96,345],raw_nick:33,raw_str:[22,27,96,98,156,158,162,163,166,182,203,216,232,264,266,323,333,345],raw_templ:33,raw_text:216,rawstr:[166,182],rcannot:68,re_bg:360,re_bgfg:360,re_blink:360,re_bold:360,re_color:360,re_dblspac:360,re_double_spac:360,re_fg:360,re_format:338,re_hilit:360,re_invers:360,re_mxplink:360,re_norm:360,re_str:360,re_ulin:360,re_underlin:360,re_unhilit:360,re_url:360,reach:[27,33,59,68,85,98,99,109,113,114,127,144,153,166,203,207,231,238,258,304,308,327,345,346,353,358,387],reachabl:[44,77],react:[27,44,124,125,248,264],reactiv:181,reactor:[295,322,329,359],read:[5,8,9,11,13,14,16,17,19,20,22,23,27,31,37,39,40,42,50,55,58,59,62,66,67,68,70,73,74,76,77,78,79,81,83,85,86,88,90,92,96,97,98,99,101,102,103,104,105,106,107,109,111,112,113,116,128,130,131,133,134,135,141,142,144,147,150,156,160,170,178,189,192,195,202,205,213,214,219,221,231,249,250,256,263,264,268,269,273,291,293,316,333,335,336,339,340,344,346,352,354,386],read_batchfil:339,read_default_fil:2,read_only_field:367,readabl:[5,19,44,45,60,62,71,74,193,249,338],readable_text:249,reader:[30,74,90,94,113,130,133,145,176,205,238,289,303],readi:[2,3,5,7,11,12,16,31,34,48,49,53,73,81,83,99,103,104,118,127,137,138,143,156,166,178,221,234,235,236,237,238,264,313,355,361],readili:[72,135],readin:344,readlin:[192,354],readm:[10,11,15,70,73,103,190,192,225],readonlypasswordhashfield:157,readthedoc:[133,365],real:[3,4,5,11,12,19,20,34,42,45,46,48,54,60,68,70,72,74,76,80,85,90,91,101,106,107,112,114,115,116,122,128,138,142,144,146,151,160,165,189,194,199,220,221,236,258,315,339,348],real_address:12,real_nam:12,real_seconds_until:[199,348],real_word:220,realist:[8,112,129],realiti:[72,76,80,88,110,128,133],realiz:[11,104,128],realli:[0,3,4,8,9,13,14,15,20,22,27,31,34,39,43,44,48,49,51,60,68,72,74,77,79,81,85,90,91,96,97,98,99,104,105,107,108,111,113,125,127,142,145,151,194,195,196,232,251,259,293,338,339,345,357],really_all_weapon:101,realm:304,realnam:34,realpython:48,realtim:[90,103,199],realtime_to_gametim:199,reason:[5,6,7,11,13,14,23,27,31,33,34,37,39,42,44,49,53,56,58,62,63,67,68,71,73,74,77,81,83,85,86,87,88,89,90,92,95,98,104,105,110,112,113,114,115,128,134,138,147,156,169,171,176,181,201,219,220,231,264,268,274,281,286,293,294,295,296,302,303,304,307,312,313,315,323,324,325,335,343,354,361,386],reasourc:42,reassign:71,reattach:[7,295,296],rebas:11,reboot:[9,13,19,26,32,37,40,44,58,76,82,103,115,144,146,150,156,165,181,198,203,231,248,249,264,273,274,275,276,278,284,324,325,343,345,361],reboot_evennia:284,rebuild:[9,90,138,146,296],rebuilt:22,rec:221,recach:250,recal:[249,386],recaptcha:130,receipt:[147,286],receiv:[3,8,20,22,23,27,28,33,40,46,56,61,62,73,86,90,97,103,124,130,156,164,165,182,183,187,188,189,201,212,214,215,221,225,231,264,286,289,293,295,296,302,312,313,322,323,341,346,358,361],receive_functioncal:293,receive_status_from_port:284,receivelock:258,receiver_account_set:160,receiver_object_set:263,receiver_script_set:273,recent:[17,79,81,101,116,140,327],recently_bitten:101,recev:313,recip:[44,66,82,112,218],recipi:[23,90,156,188,214,293],reckon:67,reclaim:37,recoc:111,recog:[33,111,221],recog_regex:221,recogerror:221,recoghandl:221,recogn:[8,30,34,50,98,99,107,112,131,138,144,151,221,231,329],recognit:[221,333,353],recommend:[0,2,5,8,11,27,34,42,45,49,58,59,60,64,67,73,74,76,81,90,92,93,100,106,110,112,114,133,135,136,138,144,150,181,205,209,224,251,259,264,286,339,345,358],recommonmark:74,reconfigur:144,reconnect:[156,158,281,284,293,295,296,322,325],reconnectingclientfactori:[281,295,296],record:[16,116,135,144,225,238,327,381],recours:49,recov:[19,82,83,88,231,234,235,236,237,238,259,361],recoveri:115,recreat:[9,37,72,103,135,138,158,165,339,340],rectangl:344,rectangular:[90,344],recur:77,recurs:[13,258,268],red:[14,15,20,31,33,42,62,99,103,105,106,107,128,171,181,241,244,245,249,353,362,370],red_button:[14,15,33,99,103,153,171,190,239,241,245],red_button_script:[153,190,239,244],red_kei:31,red_ros:101,redbutton:[14,15,33,99,103,171,241,244,245],redbuttonblind:245,redbuttonclos:245,redbuttondefault:241,redbuttonopen:245,redd:147,reddit:147,redefin:[22,34,68,76,264,381],redhat:[138,140],redirect:[40,53,64,68,92,103,130,134,195,345,386],redirectview:386,redistribut:23,redit:195,redo:[26,106,107,110,343],redon:288,redraw:304,reduc:[115,234,235,236,237,238,297],reduced_redund:192,reduct:192,redund:338,reel:165,reen:62,ref:[45,74,135,221,361,381],refactor:[89,264],refer:[7,8,10,11,14,20,22,23,27,31,33,34,39,40,42,45,51,53,58,59,63,66,67,68,70,71,72,73,77,88,89,91,92,93,98,101,103,104,105,106,107,111,114,115,119,128,130,131,133,134,144,146,151,156,165,171,176,180,194,203,212,215,219,221,234,235,236,237,238,258,264,275,278,286,296,316,324,332,334,351,357,358,386,387],referenc:[34,39,42,88,171,187,192,221,256,335,361],referenti:361,referr:144,refin:71,reflect:[106,109,111,386],reflow:50,reformat:[269,347,354],reformat_cel:347,reformat_column:[72,347],refresh:[0,131,304],refus:[49,112],regain:83,regard:[8,128,219,365],regardless:[8,20,22,31,37,40,45,49,51,56,62,90,94,110,114,127,156,164,194,204,212,221,241,245,264,276,278,301,304,307,322,324,333,336,339,351,354],regener:236,regex:[22,26,33,46,166,169,182,198,219,221,328,333,353,361],regex_nick:33,regex_tupl:221,regex_tuple_from_key_alia:221,regexfield:157,region:[65,90,144,169],region_nam:192,regist:[11,39,46,56,64,115,126,130,139,141,147,149,156,213,248,249,274,284,295,296,302,325,329,338,353,369,384,386],register_error:338,register_ev:213,registercompon:46,registertest:384,registr:[139,386],registri:[219,329],regress:268,regul:259,regular:[17,22,40,44,64,74,92,99,100,101,103,106,107,110,113,117,129,131,133,144,158,164,197,218,219,244,245,250,259,278,336,351,361,387],regulararticl:352,regulararticle_set:352,regularcategori:352,regularli:[9,37,96,126,129,145,199,244,248,250,275,276,278,287,317,348],reilli:133,reinforc:133,reiniti:151,reinstal:138,reinvent:89,reject:[203,219],rejectedregex:219,rel:[11,14,15,20,27,39,48,51,68,71,95,112,116,130,199,215,238,339,345],relai:[19,22,40,142,156,176,194,204,264,302,325,345,346,361],relat:[20,22,23,27,37,39,45,46,82,88,89,101,103,104,107,113,129,133,142,147,151,157,160,161,164,178,179,184,188,189,199,213,225,234,235,236,237,238,250,256,263,264,273,276,278,289,325,332,333,335,336,338,345,352,354,363,367,374,381],related_field:[157,185,254,261,271,332],related_nam:[160,189,256,263,273,333,335,336,352],relationship:[23,45,71],relay:158,releas:[67,73,76,82,103,132,133,138,144,181,387],relev:[13,15,22,31,34,41,43,45,62,64,65,67,68,73,74,84,90,91,113,115,116,117,130,133,156,157,162,164,194,195,231,258,259,275,276,298,316,323,324,325,332,338,343,345,355],relevant_choic:195,reli:[8,23,27,44,58,59,62,64,67,78,86,91,94,96,97,108,112,128,204,221,231,245,250,284,335,345],reliabl:[14,45,81,83,135,351],reliant:215,reload:[0,2,3,7,9,12,14,15,19,20,22,25,26,27,29,30,36,37,39,40,44,45,46,49,51,53,54,64,66,68,76,80,82,83,85,86,87,89,90,91,92,94,98,103,104,105,106,113,114,115,116,117,118,124,125,127,130,131,138,139,141,145,156,158,165,170,171,181,187,195,196,200,201,202,210,216,217,221,227,228,231,249,250,252,259,264,274,275,276,278,284,293,294,296,298,322,325,329,333,339,341,343,344,345,348,361,388],reload_evennia:284,reluct:112,remain:[6,14,20,22,26,27,41,42,51,61,84,90,97,103,104,105,113,144,151,163,165,171,173,177,187,196,199,202,234,235,236,237,238,248,264,276,284,312,313,345,346,353,370],remaind:[22,80,199],remaining_repeat:[37,276],remap:[74,106,333,353],rememb:[1,5,6,9,11,13,14,20,22,27,31,43,44,46,49,58,59,62,66,68,71,72,79,80,82,83,85,86,88,90,91,92,97,104,106,108,109,110,111,112,113,116,128,137,138,144,169,171,196,209,264,274,339,358],remind:[26,66,74,79],remit:169,remnisc:89,remot:[81,146,147,149,192,293,295,307],remov:[2,5,8,9,11,13,19,20,26,27,31,32,33,34,37,44,49,66,67,68,76,79,80,85,86,90,92,94,96,97,98,103,104,109,112,115,118,130,145,153,164,165,169,171,176,177,178,181,186,187,189,195,197,202,203,207,211,218,219,220,221,230,231,232,234,235,236,237,238,241,259,263,264,269,274,277,278,284,302,313,325,327,333,336,338,342,345,351,357,359,360,361,370],remove_backspac:360,remove_bel:360,remove_charact:115,remove_default:[20,165],remove_receiv:189,remove_send:189,removeth:333,renam:[67,90,94,98,99,106,107,113,118,171,177,264,335],render:[37,41,68,74,92,94,117,118,130,131,157,178,205,254,261,329,332,355,357,367,379,381,386],render_post:313,renew:[83,90],repair:[80,110],repeat:[3,5,37,59,66,72,91,106,110,112,115,118,125,127,143,151,156,158,194,199,219,232,273,276,284,289,308,333,341,345,348],repeatedli:[3,15,30,37,91,103,248,273,276,278,284,289,315],repeatlist:30,repetit:[91,115,219],replac:[2,20,22,26,27,30,31,33,34,39,40,42,46,62,64,67,68,72,74,81,83,84,86,89,92,93,98,103,106,108,111,113,115,118,119,131,135,146,156,163,164,165,166,169,177,178,182,194,196,198,201,202,203,207,210,212,217,218,220,221,241,245,250,251,259,264,266,268,269,296,299,312,313,323,333,338,343,344,345,347,353,360,361],replace_data:347,replace_timeslot:202,replace_whitespac:347,replacement_str:177,replacement_templ:177,replenish:[234,235,236,237,238],repli:[22,27,112,139,158,194,214,282,306,307,313,325,345],replic:[68,118],replica:104,repo:[7,11,74,89,102,110,133],report:[0,5,6,8,11,22,32,37,39,44,68,73,78,97,108,110,112,113,114,115,118,136,138,143,147,171,207,210,221,251,264,284,289,296,299,300,307,308,312,323,325,338,341,345,361],report_to:341,repositori:[2,10,55,67,81,102,132,134,135,146,269],repositri:55,repr:[97,346,361],reprehenderit:28,repres:[8,12,20,22,34,40,41,45,53,58,61,66,67,68,70,71,75,77,80,81,88,91,92,98,99,101,102,103,104,105,107,115,118,119,128,130,156,162,186,188,197,203,205,207,212,213,215,219,221,225,227,231,232,236,249,250,251,264,269,278,281,295,296,312,313,323,324,325,329,333,334,338,340,341,345,347,357,361],represen:104,represent:[12,13,33,40,53,58,59,61,77,82,90,104,114,128,188,207,210,221,268,273,293,312,313,336,342,348],reprocess:147,reproduc:[48,264],reput:[110,224],reqhash:[334,361],reqiur:203,request:[0,11,27,31,41,53,64,73,92,103,107,116,117,130,131,134,138,144,147,156,157,158,169,185,194,210,261,264,268,271,284,286,293,296,298,303,304,306,313,329,332,336,345,365,366,370,373,374,375,379,386],request_finish:41,request_start:41,requestavatarid:304,requestfactori:329,requestor:[156,327],requir:[2,5,8,13,15,16,22,26,29,31,32,34,37,42,44,45,46,48,58,62,63,67,68,70,71,72,73,74,79,90,92,96,98,110,112,113,115,118,125,128,129,130,131,132,133,134,135,137,140,141,143,144,149,150,151,157,170,171,176,181,188,189,192,200,201,202,203,215,216,217,219,221,231,232,236,237,250,251,254,255,258,261,264,268,284,295,296,309,317,328,332,334,339,344,345,346,347,351,356,357,358,361,381,386],require_singl:268,requr:42,rerout:[168,172,296],rerun:[14,15,27],resart:276,research:[112,133,209],resembl:[63,76,81],resend:22,reserv:[22,48,72,98,104,106,268,328,334,353,361],reset:[16,17,19,20,22,26,37,39,40,45,49,54,62,66,72,83,87,94,98,103,111,114,115,116,127,128,135,156,158,165,171,181,186,199,210,221,230,231,245,249,259,275,276,284,288,294,304,322,333,336,339,347,348,353,359,361],reset_cach:[333,336],reset_callcount:[37,276],reset_gametim:[19,348],reset_serv:288,reset_tim:202,resid:[60,102,245,259],residu:[181,236],resist:[269,361],resiz:[90,344,347],resolut:[62,112,115,231],resolv:[0,3,11,39,83,93,106,107,112,115,144,218,234,235,236,237,238,367],resolve_attack:[234,235,236,237,238],resolve_combat:115,resort:[22,90,137,221,361],resourc:[0,8,44,60,64,67,74,75,82,86,88,98,101,102,103,104,105,106,107,108,112,118,135,144,147,231,237,274,282,313,329,340,359,387],respawn:110,respect:[22,31,39,40,45,66,90,105,113,116,135,169,171,178,194,214,218,221,228,241,259,264,323,324,335,336,339,341,347,358,361,381],respond:[27,32,41,56,66,70,103,110,124,125,128,151,311,315],respons:[17,27,48,50,59,71,73,77,78,96,97,125,126,127,138,144,156,158,187,212,250,252,256,264,282,284,286,293,316,325,335,355,357,361,367],response_add:[157,185,261],rest:[7,17,22,27,33,39,58,72,83,88,95,96,103,104,106,107,109,110,112,114,116,138,150,163,179,180,231,234,235,236,237,238,333,338,347,365,366,367,368,369,370],rest_framework:[365,366,367,368,370],restart:[3,5,7,9,11,36,37,39,46,49,55,64,90,104,107,115,144,147,151,153,156,181,187,195,198,210,245,264,274,276,278,288,301,322,323,324,361],restartingwebsocketserverfactori:[158,295],restock:96,restor:[20,37,66,128,195,237,245,274,278],restrain:[171,231,258,344,361],restrict:[13,29,31,42,44,45,46,51,72,79,99,102,103,108,111,114,131,134,144,171,176,197,219,237,238,254,259,269,341,343,345,347,358],restructur:[74,88],result1:218,result2:[27,218],result:[6,8,11,13,19,20,22,27,31,39,40,42,44,48,59,62,64,74,84,87,90,97,98,101,102,104,105,106,108,111,112,113,114,115,116,118,125,128,131,135,144,156,163,164,166,171,178,187,189,194,200,203,215,218,219,220,221,224,231,234,235,236,237,238,250,255,259,264,267,268,269,276,284,293,316,333,335,338,343,344,345,347,351,353,354,355,358,361,362],result_nam:218,resum:[22,37,83,113],resurrect:248,resync:[158,293,323],ret:22,ret_index:361,retain:[6,19,20,48,72,107,204,231,256,269,330,335,339,341,354,361],retext:74,retract:194,retreat:238,retri:284,retriev:[6,22,30,43,58,60,65,66,92,116,156,160,162,165,171,181,186,188,202,209,231,255,258,263,268,282,289,290,296,302,311,333,336,342,351,356,358,361,365,366,369,370,386],retriv:[158,340],retroact:[45,90],retur:28,return_appear:[71,116,197,202,221,243,249,264],return_cmdset:178,return_detail:[202,250],return_key_and_categori:336,return_list:[333,336],return_map:72,return_minimap:72,return_obj:[13,33,333,336,356],return_par:269,return_prototyp:126,return_puppet:156,return_tagobj:336,return_tupl:[33,200,333],returnvalu:[22,48],reus:[106,108,351],rev342453534:361,reveal:[109,197],reverend:192,revers:[20,22,62,72,83,85,127,128,131,160,189,230,252,256,263,273,329,333,335,336,338,352,370],reverseerror:[284,293],reversemanytoonedescriptor:[160,263,352],reverseproxyresourc:329,revert:[11,128,144,168,255],review:[9,20,64,66,73,77,86,98,111],revis:110,revisit:[2,345],reviu:27,revok:90,revolutionari:11,rework:[83,104,110,216],rfc1073:300,rfc858:306,rfc:[300,306],rfind:338,rgb:[62,106],rgbmatch:338,rgh:106,rhel:134,rhostmush:[60,63,89],rhs:[81,90,179,180,182],rhs_split:[171,177,179,180],rhslist:[179,180],ricardo:361,riccardomurri:361,rich:[68,89,132,133,342],richard:133,rick:42,rid:[88,105],riddanc:49,riddick:203,ride:127,right:[3,4,8,9,15,18,22,27,29,30,31,33,37,42,46,48,55,62,66,70,72,74,76,80,81,82,83,85,86,88,89,90,96,97,98,101,102,103,104,106,107,109,110,113,116,124,127,128,130,131,134,135,138,143,144,157,165,168,171,179,180,187,192,196,202,203,205,210,211,218,238,241,245,248,249,252,259,267,269,273,324,338,339,343,347,361,362],right_justifi:[42,267],rigid:89,rindex:338,ring:[108,220],rise:[20,91],risen:91,risk:[74,89,110,112,116,138,144,170,181],rival:72,rjust:338,rm_attr:171,rnormal:62,rnote:181,road:[20,70,72,127,164],roam:[109,165,248],roar:72,robot:130,robust:[96,97,147],rock:[58,115,165],rocki:109,rod:165,role:[17,76,89,97,105,110,114,135,234],roleplai:[13,29,67,89,110,111,114,115,116,133,200,221,388],roll1:114,roll2:114,roll:[13,90,97,107,111,112,114,115,116,138,200,234,235,236,237,238,327],roll_challeng:114,roll_dic:200,roll_dmg:114,roll_hit:114,roll_init:[234,235,236,237,238],roll_result:200,roll_skil:114,roller:[111,114,115,200],rom:133,roof:171,room1:8,room56:14,room:[3,8,14,15,16,19,20,22,31,37,39,42,43,45,49,60,63,65,67,68,70,72,75,76,77,80,87,88,89,91,96,97,99,100,101,103,104,105,106,107,108,109,113,114,115,116,124,125,126,127,129,130,138,153,162,163,164,165,169,171,177,182,190,195,197,200,202,209,212,215,221,227,228,229,234,235,236,237,238,247,248,249,251,252,258,264,273,288,316,339,359,365,370,384,388],room_dict:215,room_flag:88,room_lava:88,room_typeclass:[252,359,384],roombuildingmenu:[68,195],roomnam:[90,171],roomref:127,rooms_with_five_object:101,roomviewset:370,root:[2,4,5,6,7,9,10,14,31,34,58,64,67,68,74,75,77,92,94,102,118,131,132,135,138,143,144,146,249,264,269,284,329,342,388],rose:[13,33,34,45,100,101,108],roster:[67,111,234,235,236,237,238],rosterentri:67,rot:8,rotat:[103,354],rotatelength:354,rough:[74,110],roughli:[90,110,361],round:[17,220,238,347],rounder:220,rout:[46,71,88,99,127,156],router:[144,369],routin:[221,319,358,361],row:[46,50,58,62,66,71,72,74,77,90,92,101,115,117,128,347,361],rpcharact:221,rpcommand:221,rpg:[90,93,103,104,110,114,200,238],rpi:133,rplanguag:[111,153,154,190,221],rpm:138,rpobject:221,rpsystem:[74,111,153,154,190,217,220],rpsystemcmdset:221,rred:338,rrg:112,rsa:[304,305],rspli8t:97,rsplit:[116,338],rss2chan:[98,145,176],rss:[9,76,133,149,153,158,176,184,279,289,292,302,388],rss_enabl:[145,176],rss_rate:158,rss_update_interv:176,rss_url:[145,158,176],rssbot:158,rssbotfactori:303,rsschan:176,rssfactori:303,rssreader:303,rst:74,rstrip:[97,338],rsyslog:224,rtest2:62,rtext:96,rthe:68,rthi:[62,106],rtype:329,rubbish:168,rubi:77,rudimentari:248,ruin:[109,202,250],rule:[4,8,11,14,15,22,29,31,49,62,76,80,90,103,107,110,111,128,133,195,219,220,231,234,235,238,256,339,388],rulebook:[112,115],rumour:109,run:[0,2,5,6,9,10,11,12,13,14,15,16,19,20,25,27,29,31,36,37,39,42,44,45,46,48,53,55,58,66,67,70,72,74,75,77,80,81,82,83,88,89,91,92,94,96,97,98,99,101,103,104,105,106,107,109,110,111,112,113,114,116,117,118,119,127,128,129,130,131,133,134,135,136,137,138,142,144,147,150,151,153,156,158,162,163,166,170,171,176,177,178,181,182,186,187,210,211,216,221,224,228,231,232,234,235,236,237,238,245,252,258,259,264,268,269,273,275,276,278,284,288,290,294,301,302,309,313,315,318,322,323,327,329,335,338,339,343,345,346,348,354,358,359,361,386,387,388],run_async:[48,361],run_connect_wizard:284,run_dummyrunn:284,run_exec:345,run_exec_then_goto:345,run_init_hook:322,run_initial_setup:322,run_menu:284,run_start_hook:[45,335],rundown:119,runexec:345,runexec_kwarg:345,runnabl:42,runner:[2,7,249,315],runsnak:5,runtest:[182,193,211,226,230,246,310,320,352,359,368,376,384],runtim:[19,22,49,91,166,195,251,348,361],runtimeerror:[114,156,158,207,210,213,219,220,231,268,276,302,333,345,353,361],runtimewarn:268,rusernam:27,rush:83,rusti:96,ruv:2,ryou:68,s3boto3storag:192,s3boto3storagefil:192,s3boto3storagetest:193,s3boto3testcas:193,sad:[130,307],safe:[0,6,11,13,20,34,39,70,77,84,88,95,111,112,130,149,156,168,194,245,259,278,293,325,329,335,339,342,351,361],safe_join:192,safer:[14,49],safest:[40,66,144,335],safeti:[12,34,45,88,111,116,144,171,194,263,339],sai:[0,5,8,9,11,15,17,19,20,22,27,31,34,42,45,46,48,49,53,62,63,65,66,68,70,77,81,83,85,86,87,88,89,90,91,92,97,98,99,101,104,106,107,111,112,113,114,115,116,124,125,128,132,138,144,165,177,194,196,200,203,212,213,220,221,231,232,245,250,264,345],said:[0,8,27,43,48,56,66,68,70,71,72,79,87,89,97,104,106,111,125,131,163,176,180,212,221,252,264,296,335],sake:[14,64,89,106,112,128,183,201,386],sale:96,same:[0,3,6,7,8,9,11,12,13,14,15,16,19,20,22,23,26,30,31,32,34,37,39,40,42,43,44,45,48,49,50,51,53,54,56,58,59,60,61,62,66,67,68,72,73,74,76,77,80,82,83,86,87,89,90,91,92,94,96,97,98,99,101,102,103,104,105,106,107,108,112,113,114,115,116,118,127,128,130,131,132,135,138,144,145,146,150,151,156,162,163,164,165,166,169,171,179,180,181,182,187,192,193,195,197,199,202,205,209,210,214,219,220,221,227,229,231,232,234,235,236,237,238,241,248,250,251,252,258,264,269,273,274,278,288,293,305,308,309,323,324,325,327,329,332,333,334,335,336,338,339,341,345,346,347,348,354,355,361,370,381,386],sampl:[2,88,134,146,232],san:205,sand:91,sandi:72,sane:[1,74,110,133,386],sanit:[381,386],saniti:[8,67,71,72,106,355],sarah:[63,177],sat:[65,80],satisfi:[60,179,333],satur:147,sauc:106,save:[2,3,6,11,16,19,22,23,26,27,32,33,34,37,40,41,42,43,44,45,58,66,67,68,70,77,80,83,86,88,98,100,103,104,106,115,116,130,136,137,146,147,151,156,157,168,171,181,185,187,188,189,193,195,210,259,261,263,264,266,268,271,274,276,277,278,282,289,302,316,317,322,329,332,333,335,342,343,351,355,356,357,361],save_a:[185,254,261,271,280],save_as_new:332,save_buff:343,save_data:355,save_for_next:[22,166],save_handl:355,save_kwarg:356,save_model:[157,185,261,271],save_nam:278,save_on_top:[185,254,261,271,280],save_prototyp:268,save_recip:218,savefunc:[26,343,356],savehandl:356,saver:342,saverdict:342,saverlist:342,saverset:342,saveyesnocmdset:343,saw:[48,70,92,104,106],say_text:125,saytext:221,scale:[7,62,74,89,103,110,114,135,220,387],scalewai:144,scam:112,scan:[134,162,248,250],scarf:197,scari:[104,106],scatter:[236,339],scedul:348,scenario:90,scene:[6,13,30,42,43,62,74,76,80,107,109,112,114,115,128,219,250,273,278,351],schedul:[19,91,199,210,348],schema:[11,45,58,77,79,361],scheme:[22,58,62,82,106,138,171,181,338],school:112,scienc:71,scientif:133,scissor:115,scm:67,scope:[30,76,77,83,110,111,112,113,131,219,341],score:[90,361],scraper:386,scratch:[9,10,53,70,89,90,111,112,116,118,138],scream:109,screen:[6,22,24,27,28,30,39,40,42,46,50,54,62,94,96,103,105,111,130,146,157,183,201,205,216,238,267,289,304,346,361,388],screenheight:[30,289],screenread:[30,289,312,313],screenshot:130,screenwidth:[30,166,289],script:[2,5,7,10,13,14,15,19,24,31,32,34,39,40,41,42,43,44,45,46,58,60,75,76,88,89,91,96,98,99,102,103,104,108,109,112,115,124,126,129,130,138,141,144,147,151,153,154,156,158,170,171,181,189,190,194,199,202,206,207,213,218,219,220,228,234,235,236,237,238,240,241,244,245,250,252,258,263,264,268,269,284,317,322,339,340,341,348,356,358,359,361,365,367,370,384,388],script_path:171,script_typeclass:[246,359,384],scriptattributeinlin:271,scriptbas:276,scriptclass:275,scriptdb:[45,75,153,271,273,331,365,367],scriptdb_db_attribut:271,scriptdb_db_tag:271,scriptdb_set:[160,263,333,336],scriptdbadmin:271,scriptdbfilterset:[365,370],scriptdbmanag:[272,273],scriptdbseri:[367,370],scriptdbviewset:370,scripthandl:[153,154,270],scriptkei:171,scriptmanag:272,scriptnam:340,scripttaginlin:271,scroll:[6,28,102,106,116,138,346],scrub:325,sdesc:[88,111,217,221],sdesc_regex:221,sdescerror:221,sdeschandl:221,sdk:138,sea:[72,109],seal:111,seamless:221,seamlessli:[36,37],search:[3,8,11,12,14,22,26,29,33,34,37,39,42,45,55,65,66,67,68,76,77,80,84,86,90,93,98,101,102,103,104,105,106,112,113,114,115,116,118,119,131,153,154,156,162,164,166,171,178,181,188,194,209,214,218,221,234,235,236,237,238,250,252,255,256,258,264,267,268,275,290,333,334,335,336,337,338,341,343,361,365],search_:[19,101,108],search_account:[41,90,108,153,264,358],search_account_tag:358,search_at_multimatch_input:264,search_at_result:[221,264],search_channel:[86,153,188,358],search_channel_tag:358,search_field:[185,254,261,271,280,332],search_for_obj:171,search_help:[153,255],search_help_entri:358,search_helpentri:255,search_index_entri:[166,168,169,170,171,176,177,178,179,180,181,182,183,186,194,195,196,197,200,201,202,203,204,208,214,215,216,217,218,221,227,228,229,232,234,235,236,237,238,241,248,249,250,251,256,264,343,345,346],search_messag:[153,188,358],search_mod:221,search_object:[13,14,19,45,72,104,106,108,127,153,156,358],search_object_attribut:108,search_objects_with_prototyp:268,search_prototyp:268,search_script:[37,153,358],search_script_tag:358,search_tag:[43,65,101,108,153,358],search_tag_account:43,search_tag_script:43,search_target:214,searchabl:[102,209],searchdata:[156,221,264,358],searchstr:29,season:[110,111,202],seat:110,sec:[30,48,83,91,199,296,348],secmsg:354,second:[8,13,15,19,20,22,27,31,37,39,42,44,48,50,58,59,62,66,68,74,80,81,83,85,86,91,92,95,96,97,98,104,106,108,111,115,116,126,127,128,129,131,138,144,147,151,156,158,163,171,199,209,210,213,215,221,228,231,234,235,236,237,238,240,245,248,258,264,269,276,278,284,289,298,303,316,327,338,341,345,348,354,361,362],secondari:[94,324],secondli:[34,100],secreci:11,secret:[67,103,110,135,139,141,200,284],secret_kei:[67,192],secret_key_nam:192,secret_set:[67,79,103,135,139,284],sect_insid:71,section:[0,2,5,8,13,16,20,22,25,27,29,31,34,45,46,53,58,61,67,68,72,74,79,80,81,83,85,90,91,92,93,99,101,102,104,105,106,108,112,119,130,135,138,143,144,146,150,202,220,269,338,339,362,365],sector:71,sector_typ:71,secur:[0,13,14,31,42,60,62,68,86,89,96,116,130,131,138,144,149,153,154,170,181,187,190,192,256,264,304,335,354,381,388],secure_attr:31,secure_url:192,security_token:192,security_token_nam:192,sed:2,sedcond:277,see:[0,3,4,5,7,8,9,10,11,12,13,14,15,19,20,21,22,23,25,26,27,28,29,30,31,33,34,37,39,40,42,44,45,46,48,49,51,53,55,58,59,60,61,62,64,66,67,68,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,94,95,97,98,99,101,102,103,104,105,106,107,109,111,112,113,115,116,117,118,119,124,125,126,127,128,129,130,131,134,135,138,139,141,142,143,144,145,146,147,151,156,166,168,170,171,177,178,179,180,182,187,189,190,192,194,195,201,205,207,214,218,219,220,221,225,228,229,231,232,234,235,236,237,238,240,241,244,248,251,252,258,263,264,277,282,284,286,287,295,296,297,298,300,304,305,307,309,311,312,313,315,316,324,325,329,333,338,341,342,343,344,345,347,353,356,357,361,375,381,386,387],seek:[109,259,354],seem:[20,42,46,68,79,85,86,88,110,113,116,119,127,136,138,143,151,333,339],seen:[8,11,20,23,27,37,40,53,66,68,70,71,72,83,89,90,92,94,97,98,101,104,105,107,113,119,126,127,128,195,268,296,347],sefsefiwwj3:67,segment:[127,329],seldomli:[166,182],select:[7,11,12,19,20,27,31,39,40,46,58,65,68,72,74,92,96,99,111,116,126,130,137,138,163,164,169,178,232,235,335,343,345,367],selet:345,self:[3,8,12,13,14,19,20,22,26,27,31,33,34,37,42,44,45,48,53,55,58,63,66,67,68,71,74,80,81,82,83,84,85,86,87,88,89,90,91,94,95,96,98,99,104,105,106,107,108,111,113,114,115,116,124,125,126,127,129,131,138,141,142,156,158,160,162,164,165,166,168,171,172,176,179,180,181,182,186,187,189,194,195,196,197,200,202,203,207,212,214,215,217,218,221,231,232,234,235,236,237,238,240,241,245,248,249,250,251,252,258,264,276,277,282,284,286,287,291,295,296,302,304,305,307,309,311,312,313,323,324,325,333,335,336,338,343,345,346,351,353,355,356,357,361,375],self_pid:361,selfaccount:90,sell:[96,111,112,132,194],semi:[5,99,106,129,220],semicolon:[31,259,341],send:[5,12,19,22,23,27,28,30,31,34,37,40,41,44,46,49,55,56,61,62,65,68,77,78,81,83,86,90,94,97,98,103,105,108,112,114,115,116,125,126,128,130,141,147,149,151,156,158,162,165,166,169,176,180,186,187,188,189,192,194,203,204,214,221,225,238,240,243,248,258,264,277,278,281,284,286,287,289,293,294,295,296,297,299,302,303,304,306,307,308,310,312,313,315,323,324,325,326,338,341,342,345,347,361],send_:[53,56,302],send_adminportal2serv:294,send_adminserver2port:281,send_authent:295,send_channel:[295,296],send_default:[53,56,295,296,302,304,307,312,313],send_defeated_to:248,send_emot:221,send_functioncal:293,send_game_detail:286,send_heartbeat:295,send_instruct:284,send_mail:214,send_msgportal2serv:294,send_msgserver2port:281,send_p:296,send_privmsg:296,send_prompt:[304,307,312,313],send_random_messag:240,send_reconnect:296,send_request_nicklist:296,send_status2launch:294,send_subscrib:295,send_text:[53,56,304,307,312,313],send_unsubscrib:295,sender:[23,41,86,156,158,176,187,188,189,194,221,243,264,295,326,351,358],sender_account_set:160,sender_extern:189,sender_object:326,sender_object_set:263,sender_script_set:273,sender_str:187,sendernam:176,senderobj:341,sendlin:[304,307,312],sendmessag:[53,203],sens:[20,31,34,37,48,58,68,73,88,90,107,113,127,164,241,341,342],sensibl:[144,288],sensit:[13,27,31,90,101,188,192,195,199,202,210,225,226,255,334,348,358],sensivit:219,sent:[23,27,30,40,41,46,56,59,61,62,81,90,92,97,103,106,156,158,162,178,182,187,188,189,195,201,203,210,212,214,225,243,246,251,264,281,284,286,289,293,294,295,296,304,308,312,323,325,333,345,353,358,367],sentenc:[70,97,213,220,221],sep:[338,361],sep_kei:[68,195],separ:[5,7,11,13,14,15,20,22,31,32,33,34,36,40,43,44,46,53,58,62,63,65,70,73,74,77,83,89,90,91,96,97,98,99,101,105,106,107,110,111,116,118,127,128,130,134,135,141,142,143,145,147,163,165,166,171,177,178,179,180,181,187,195,210,213,214,220,221,232,234,235,236,237,238,241,250,252,255,259,263,264,274,278,303,308,313,325,338,339,341,344,353,358,361],separatli:83,seq:33,sequenc:[14,15,16,22,31,33,34,48,61,74,77,94,103,109,112,113,128,166,170,199,216,221,259,282,288,338,339,345,347,360,361],sequenti:112,seri:[4,11,27,62,106,111,112,113,118,133,244,347],serial:[13,56,153,267,278,302,342,355,357,363,364,370],serializ:313,serializer_class:370,seriou:[85,151],serious:138,serv:[39,56,64,71,72,76,77,98,103,107,108,147,164,192,236,313,329,339,341,379],server:[0,2,5,6,7,8,9,11,12,13,14,16,19,20,22,23,25,27,30,31,32,34,37,41,42,44,45,46,48,49,51,53,54,56,58,59,61,62,64,66,67,72,73,74,75,76,77,78,79,80,81,82,83,86,88,89,90,91,92,94,97,98,102,104,105,106,107,109,112,113,114,115,118,119,125,127,130,131,132,133,137,138,139,140,141,142,143,146,147,151,153,154,156,158,165,169,171,176,181,183,187,190,192,195,198,201,202,210,216,217,221,222,223,224,227,228,231,245,248,249,252,264,273,274,275,276,278,330,335,339,341,342,345,348,351,354,361,363,367,387,388],server_connect:302,server_disconnect:302,server_disconnect_al:302,server_epoch:[19,348],server_l:294,server_logged_in:302,server_nam:39,server_pid:[294,361],server_receive_adminportal2serv:281,server_receive_msgportal2serv:281,server_receive_statu:281,server_reload:[274,278],server_run:284,server_runn:322,server_servic:361,server_services_plugin:[39,53,103],server_services_plugin_modul:53,server_session_class:40,server_session_sync:302,server_st:284,server_twistd_cmd:294,server_twisted_cmd:294,serverconf:[169,278],serverconfig:[277,278,290,291],serverconfigadmin:280,serverconfigmanag:[290,291],serverfactori:[294,304,307],serverload:181,serverlogobserv:354,servermsg:354,servernam:[30,39,67,79,134,137,144],serverprocess:181,serversess:[40,53,62,98,153,154,225,259,279,302,325,333],serversessionhandl:[40,53,325],serverset:[31,176,258],servic:[11,39,49,53,98,103,130,135,141,144,146,147,151,153,181,192,279,281,284,285,293,294,301,322,329,361],sessdata:[324,325],sessid:[12,22,40,116,263,264,281,293,294,302,325],session:[8,12,16,20,22,24,27,30,32,34,41,49,53,59,62,75,89,94,95,97,98,102,104,105,112,116,136,146,153,154,156,158,160,162,163,164,166,168,169,172,174,178,179,183,201,203,204,212,224,225,226,263,264,266,267,268,274,279,281,289,293,294,295,296,302,303,304,307,312,313,322,323,325,327,343,345,346,353,361,362,367,388],session_data:325,session_from_account:325,session_from_sessid:325,session_handl:[40,153],session_id:367,session_portal_partial_sync:325,session_portal_sync:325,sessioncmdset:[20,105,174],sessionhandl:[53,56,153,154,156,264,279,289,295,296,302,303,323,324],sessionid:302,sessionobject:353,sessions_from_account:325,sessions_from_charact:325,sessions_from_csessid:[302,325],sessions_from_puppet:325,sessionsmain:75,sesslen:264,set:[0,2,3,5,6,9,10,12,13,14,15,16,17,19,21,22,23,24,25,26,28,29,30,33,34,37,40,41,42,43,45,46,48,49,50,51,53,54,55,56,58,60,61,62,63,64,66,68,70,72,73,74,75,76,77,80,81,83,84,85,86,87,88,89,90,92,95,96,97,98,99,100,101,102,103,105,106,107,110,113,115,117,118,120,124,126,127,128,130,131,134,135,136,138,140,141,143,146,149,150,151,153,155,156,158,160,162,163,164,165,166,168,169,171,172,173,174,175,176,178,179,180,182,184,186,192,193,195,196,197,198,199,200,201,202,203,204,208,210,212,213,216,217,218,220,221,224,227,228,230,231,232,234,235,236,237,238,241,244,245,246,248,249,250,251,252,254,258,259,263,264,267,268,269,275,276,278,281,283,284,288,289,290,291,294,295,297,298,300,301,304,306,307,309,310,315,316,318,320,322,323,324,325,327,329,330,332,333,334,335,336,338,339,340,341,342,343,344,345,346,347,348,351,352,353,354,355,356,357,358,359,360,361,362,368,369,370,374,381,384,388],set_active_coordin:252,set_al:248,set_alias:166,set_attr:171,set_attribut:370,set_cach:333,set_class_from_typeclass:335,set_dead:248,set_descript:27,set_detail:[202,250],set_game_name_and_slogan:374,set_gamedir:284,set_kei:166,set_nam:27,set_pane_typ:46,set_password:156,set_task:210,set_trac:[3,153],set_webclient_set:374,setcolor:94,setdesc:[89,98,177,227],setgend:204,sethelp:[29,98,99,178],sethom:[98,171],setlock:227,setnam:53,setobjalia:171,setperm:169,setspe:228,sett:145,settabl:[30,58,104,307],setter:[85,231],settestattr:26,settingnam:31,settings_chang:41,settings_default:[8,23,39,79,102,153,154,361],settings_ful:39,settings_mixin:[153,279,314],settl:[72,115],setup:[0,5,6,8,11,16,39,53,55,58,63,74,90,96,110,115,126,138,141,143,146,151,156,168,176,182,193,199,211,230,241,246,250,264,276,288,301,310,315,319,320,322,329,333,335,351,352,359,368,384,387,388],setup_str:319,setuptool:[138,143],sever:[2,3,13,15,20,22,26,28,31,37,39,42,45,46,51,61,66,68,74,76,83,86,88,89,91,92,101,106,111,112,115,119,121,133,170,171,179,180,181,202,209,210,248,250,264,310,311,336,341],sex:204,shall:[128,131],shaman:[42,89],shape:[68,72,85,90,99,110,252,347],sharabl:42,share:[2,3,20,31,37,40,43,45,58,64,67,70,73,77,81,89,103,112,115,119,130,138,139,144,147,157,209,210,269,278,315,333,334,336,347,361,367,370,375],shared_field:367,sharedloginmiddlewar:375,sharedmemorymanag:[334,350],sharedmemorymodel:[189,256,333,335,351,352],sharedmemorymodelbas:[160,189,256,263,273,333,335,351,352],sharedmemorystest:352,shaw:133,she:[22,66,68,88,97,111,128,195,204,220],sheer:171,sheet:[27,46,74,111,112,130,131,135,344],sheet_lock:90,shell:[0,2,9,33,45,58,60,81,89,90,106,135,138,143,144,146,147,151,304],shield:[58,83],shift:[15,16,19,60,210,249,255,361],shiftroot:249,shine:[80,250],shini:361,ship:[72,76,77,99,109,133,143],shire:91,shirt:197,shoe:197,shoot:[80,237,238,344],shop:[27,60,89,112,388],shop_exit:96,shopcmdset:96,shopkeep:[93,111],shopnam:96,shopper:96,short_descript:137,shortcom:96,shortcut:[4,19,20,22,41,45,63,66,68,74,83,92,97,102,106,115,117,130,131,135,146,153,158,165,166,171,195,207,252,259,264,355,361],shorten:[3,45,70,269],shorter:[39,45,53,60,104,113,124,125,129,187,220,334,341,354],shortest:[85,221],shorthand:[34,128,171],shortli:[66,68,113],shortsword:101,shot:237,should:[0,3,5,6,7,8,9,10,11,12,13,14,15,16,19,20,22,23,27,29,30,31,34,37,39,40,41,42,43,44,45,46,48,49,50,51,53,54,55,56,58,59,60,61,62,63,64,65,66,67,68,70,72,73,74,76,77,79,81,83,85,86,89,90,91,92,94,95,96,97,98,99,101,103,104,105,106,107,108,109,110,111,113,114,115,116,117,118,119,127,128,130,131,134,135,136,138,139,142,143,144,145,146,147,150,151,156,158,160,162,164,165,166,168,170,171,172,175,178,179,181,182,186,187,189,192,193,195,197,199,202,207,210,212,213,214,215,217,218,219,220,221,224,230,231,234,235,236,237,238,241,245,248,250,251,258,259,263,264,266,267,268,269,273,275,276,277,278,282,283,284,288,291,295,301,304,307,308,310,312,313,316,322,323,324,325,328,330,332,333,335,336,338,339,341,342,343,345,346,347,348,353,354,355,356,357,359,361,362,381,384,386],should_join:187,should_leav:187,should_list_cmd:178,shoulddrop:[238,264],shoulder:[90,197],shouldget:[238,264],shouldgiv:[238,264],shouldmov:[212,234,235,236,237,238,264],shouldn:[5,14,66,68,80,83,86,90,128,178,195,210,213,237,315],shouldrot:354,shout:83,shove:80,show:[0,3,6,7,8,9,11,14,15,19,22,25,27,28,29,37,39,40,46,49,53,58,62,63,66,68,70,71,72,73,74,76,77,78,84,85,89,90,91,92,94,95,96,97,98,99,103,104,105,106,107,109,110,111,112,113,114,115,118,119,120,121,122,123,124,125,126,128,130,131,136,137,138,141,144,145,147,151,156,168,169,171,176,177,179,181,183,194,196,197,200,201,202,203,205,217,231,232,237,238,244,250,251,252,264,266,268,269,282,284,293,343,345,354,355,356,361,381],show_foot:346,show_map:71,show_non_edit:268,show_non_us:268,show_valu:205,show_version_info:284,show_warn:284,showcas:[20,72,103,109,215],shown:[25,27,29,42,62,66,67,68,71,79,81,83,86,89,91,104,113,127,130,137,169,176,178,180,195,197,219,221,249,264,284,345,346],showtim:91,shrink:[105,347],shrug:70,shuffl:19,shun:[0,60,144],shut:[5,37,39,46,66,79,83,106,146,156,181,264,276,278,284,286,293,294,301,302,322,325],shutdown:[5,20,37,40,49,51,90,98,151,156,158,181,278,284,293,294,301,322,323,335,341,345],shy:[0,63,110],sibl:[37,48,89,107],sid:169,side:[2,8,13,30,40,43,46,56,66,71,74,90,97,101,111,112,114,128,130,136,156,158,160,177,179,180,189,194,200,227,256,263,273,281,293,294,302,305,308,309,312,323,324,325,333,335,336,338,347,352],sidestep:51,sidewai:347,sigint:284,sign:[7,15,44,56,66,70,97,99,101,103,108,116,129,144,202,264,278,333,338,362],signal:[5,24,151,153,154,234,235,236,237,238,279,284,307,313,315,351,388],signal_acccount_post_first_login:41,signal_account_:41,signal_account_post_connect:41,signal_account_post_cr:41,signal_account_post_last_logout:41,signal_account_post_login:41,signal_account_post_login_fail:41,signal_account_post_logout:41,signal_account_post_renam:41,signal_channel_post_cr:41,signal_helpentry_post_cr:41,signal_object_:41,signal_object_post_cr:41,signal_object_post_puppet:41,signal_object_post_unpuppet:41,signal_script_post_cr:41,signal_typed_object_post_renam:41,signatur:[22,114,166,189,207,231,277,282,284,286,287,295,304,305,307,309,312,313,333,338,345,353,356,357,375],signature_vers:192,signed_integ:362,signedinteg:355,signedon:296,signifi:[15,258,333],signific:6,significantli:26,signup:79,silenc:286,silenced_system_check:8,silent:[48,91,125,169,288,296],silli:[34,42,101],silmarillion:108,silvren:[76,144],similar:[7,13,14,22,27,29,34,37,45,46,58,63,65,66,68,76,77,80,81,86,90,99,104,109,110,114,118,127,144,156,166,168,182,195,203,212,220,234,235,236,237,238,252,256,264,325,336,341,345,361,367,370,386],similarli:[43,90,91,144,231,235,251,332,367],simpl:[0,12,14,15,16,17,20,22,25,26,30,34,40,42,43,48,53,55,58,59,60,64,66,67,70,71,72,74,76,77,78,79,81,82,84,85,86,88,89,90,92,94,96,97,98,104,105,107,108,109,110,111,113,114,115,116,121,122,124,125,126,128,129,130,140,144,145,146,147,171,186,192,194,195,196,201,202,203,204,209,212,214,218,219,221,227,228,229,231,232,234,235,236,237,238,240,241,243,248,249,250,252,253,263,264,267,269,276,294,303,305,339,340,378,379,381,388],simpledoor:[153,154,190],simplemu:136,simpleobjectdbseri:367,simpler:[16,48,74,88,170,171,342,386],simpleresponsereceiv:286,simplest:[83,90,98,114,115,144,165,339,362],simpli:[8,9,11,13,14,17,20,27,31,37,39,42,43,45,49,53,56,62,65,68,71,73,74,76,80,81,83,85,86,90,94,96,99,102,105,110,111,113,114,116,125,127,129,134,135,138,141,142,147,156,164,165,166,182,183,186,187,195,201,202,211,212,215,221,228,232,234,235,236,237,238,241,243,249,256,264,302,333,335,339,340,344,346,361],simplic:[68,76,85,128,183,201,249],simplif:[112,115],simplifi:[48,72,92,104,115,125,146,207],simplist:[46,115,116,129,220,229],simul:[5,22,107,112,114,228],simultan:[59,90,112,115,361],sinc:[0,3,6,8,11,13,14,15,19,20,22,23,25,26,27,30,31,32,34,37,39,44,45,46,48,51,53,55,56,58,59,62,64,66,67,68,71,72,74,76,77,79,80,81,82,83,85,86,87,88,89,90,91,92,96,97,98,100,101,102,103,104,105,106,107,108,109,110,111,112,113,115,116,117,119,125,127,128,130,131,135,137,144,146,151,156,158,160,164,165,166,171,179,180,181,187,188,194,195,196,199,202,214,221,232,234,235,236,237,238,245,249,250,258,264,269,274,278,284,286,289,301,306,308,316,322,323,325,332,333,334,335,339,340,341,343,345,348,351,354,357,358,359,361,381],singl:[8,9,15,20,22,27,33,40,43,45,48,50,56,59,60,62,63,66,68,72,73,74,76,77,87,89,90,101,105,106,107,109,111,112,114,135,140,144,156,162,169,171,177,188,189,195,219,224,231,232,234,235,236,237,238,250,251,252,264,268,269,278,316,323,325,333,334,336,338,339,344,345,346,347,353,358,361,381],single_type_count:197,singleton:[32,40,44,186,274,277,340],singular:[74,90,264],sink:0,sint:28,sir:70,sit:[13,15,22,31,45,56,76,83,98,103,105,106,107,112,113,116,127,138,144,179,213,214,221,241,249,250,259,275,278,297,341,356,359],sitabl:45,sitat:250,site:[6,17,31,36,50,72,73,92,130,131,133,134,135,141,144,145,146,147,157,329,386],sitsondthi:113,sitsonthi:113,sittabl:388,sittablein:113,sitter:113,situ:[13,335,342],situat:[3,11,13,22,37,40,45,55,56,58,66,68,70,73,91,105,108,113,165,166,171,209,351],six:[97,114,200,232],sixti:91,sizabl:192,size:[3,6,46,50,60,71,72,90,136,153,192,193,252,286,300,338,344,346,347,351,354,361],size_limit:361,skeleton:[46,116],sketch:115,skill:[8,76,78,82,83,84,93,101,103,106,110,111,114,115,127,130,131,133,151,220,221,231,344],skill_combat:114,skillnam:114,skim:101,skin:42,skip:[7,11,20,22,42,44,59,71,86,91,98,99,101,103,105,107,110,143,146,156,170,171,192,215,264,333,342],skipkei:313,skippabl:63,skull:42,sky:[37,129],slack:133,slam:203,slash:[74,76,86,99,109,114,115,119,193,249],slate:[72,105],sleep:[22,48,83,114],slew:[114,143,339],slice:[168,338,346],slice_bright_bg:168,slice_bright_fg:168,slice_dark_bg:168,slice_dark_fg:168,slight:[97,134,199,210],slightli:[3,91,111,115,116,133,138,157,189,202,235,251,386],slip:360,slogan:67,slot:[90,131,202,203,231,235,237,269,361],slow:[19,111,115,188,228,248,252,297,303,338,358,361],slow_exit:[153,154,190],slower:[5,91,112,144],slowexit:228,slowli:[133,231,387],slug:[187,256,335,386],slugifi:386,small:[5,6,8,9,15,16,22,50,60,72,73,76,78,79,81,84,89,90,92,93,94,96,97,109,110,111,112,113,116,122,133,138,144,145,200,231,237,241,252,307,343,344,347,361],smaller:[14,15,46,50,74,231,347],smallest:[31,90,91,144,199,231,344,361],smallshield:58,smart:[86,97,252],smarter:42,smash:[241,245],smaug:[98,104,105,107],smell:110,smelli:42,smile:[22,104,111,177],smith:344,smithi:83,smoothi:218,smoothli:131,snake:118,snap:95,snapshot:11,snazzi:132,sneak:259,snippet:[14,20,31,42,48,62,76,77,80,98,111,181,293,308,360,361],snoop:147,snuff:0,soak:105,social:[76,112,141],socializechat:316,societi:101,sofa:113,soft:[52,77,79,220,388],softcod:[63,112],softli:132,softwar:[2,11,138,144],solar:91,soldier:[96,107],sole:[89,92,158],solid:[62,71,76],solo:[103,138],solut:[8,15,19,44,45,66,67,72,81,83,85,88,92,96,97,109,112,113,114,125,127,144,147,180,259],solv:[6,19,71,72,80,87,93,109,110,138,218,249],some:[0,1,2,3,6,7,8,9,11,13,14,15,16,19,20,22,26,27,30,31,33,34,37,39,40,41,42,43,44,45,46,49,50,53,56,58,60,61,62,66,67,68,70,71,72,73,74,76,77,78,79,80,81,82,83,89,90,91,92,93,95,96,97,98,99,100,101,103,104,105,107,108,109,110,113,114,115,116,117,118,119,120,124,125,127,128,130,131,132,133,134,135,136,138,142,143,144,147,149,150,151,156,165,166,171,173,177,180,181,187,188,192,194,195,196,201,210,212,213,219,220,227,231,232,235,236,237,238,244,245,249,250,251,252,259,264,268,269,273,286,288,293,296,322,333,335,338,339,344,345,348,351,354,355,361,370,381,386,388],some_long_text_output:346,some_modul:102,somebodi:66,someclass:102,somehow:[22,31,33,53,61,65,113,114,144,197,343],someon:[22,31,41,44,66,70,71,83,90,96,98,101,106,113,124,125,144,147,156,177,197,244,248,249,264],somepassword:135,someplac:248,someth:[5,8,9,13,15,19,22,27,28,29,31,34,37,39,41,42,44,45,46,48,49,53,56,58,60,62,63,64,66,67,68,70,71,72,74,77,78,79,81,83,84,85,86,87,88,89,90,91,92,95,96,97,98,99,101,104,106,107,108,109,110,113,114,116,117,130,131,134,135,139,141,142,143,144,149,156,164,166,171,177,178,179,194,195,197,204,212,213,215,219,221,228,231,234,235,236,237,238,249,250,251,252,259,264,323,335,339,345,346,355,361,386],sometim:[3,5,19,22,26,27,31,37,42,53,58,68,77,91,97,101,105,106,108,118,151,178],sometypeclass:100,somewhat:[8,68,79,86,89,195],somewher:[11,31,42,45,49,66,73,105,113,114,127,144,171,187,256,335,361],soon:[3,8,40,92,110,112,142,146,244,313,361],sophist:[19,48,60,76,115],sorl:79,sorri:[31,259],sort:[13,20,32,40,43,56,64,65,71,77,85,92,101,104,105,106,110,114,115,117,124,144,151,194,205,231,234,235,236,237,238,250,264,269,273,333,334,335,361,381,386],sort_kei:313,sought:[156,163,187,256,264,333,335],soul:72,sound:[11,31,37,39,44,56,68,72,73,83,90,95,101,110,111,113,220,308],sourc:[1,2,6,8,9,10,11,16,17,19,20,29,34,48,49,50,55,59,60,66,67,68,70,73,76,77,78,79,80,89,102,106,109,111,119,131,133,135,138,142,143,153,156,157,158,159,160,162,163,164,165,166,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,185,186,187,188,189,192,193,194,195,196,197,199,200,201,202,203,204,205,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,224,225,226,227,228,229,230,231,232,234,235,236,237,238,240,241,243,244,245,246,248,249,250,251,252,254,255,256,258,259,261,262,263,264,266,267,268,269,271,272,273,274,275,276,277,278,280,281,282,283,284,286,287,288,289,290,291,293,294,295,296,297,298,299,300,301,302,303,304,305,306,307,308,309,310,311,312,313,315,316,317,319,320,321,322,323,324,325,327,328,329,332,333,334,335,336,338,339,340,341,342,343,344,345,346,347,348,350,351,352,353,354,355,356,357,358,359,360,361,362,365,366,367,368,370,373,374,375,376,379,381,383,384,386,387],source_loc:[81,124,212,249,250,252,264],source_object:[183,186,201],sourceforg:[297,298,308,311],sourceurl:296,south:[66,68,71,72,87,113,127,171,215,316],south_north:72,southeast:171,southern:72,southwest:[99,171],space:[22,25,29,31,33,37,42,46,62,63,67,68,70,71,72,74,80,81,86,89,97,98,99,105,106,107,115,119,125,128,163,166,171,177,179,180,182,183,186,192,215,217,220,221,238,249,264,267,328,335,338,339,344,347,353,360,361],spaceship:127,spacestart:360,spaghetti:[14,345],spam:[49,82,93,115,147,327],spammi:[49,115],span:[17,50,60],spanish:55,spare:[234,235,236,237,238],sparkly_mag:101,spars:327,spatial:72,spawen:218,spawn:[5,46,75,76,98,102,109,112,126,153,169,171,218,235,236,266,267,268,269],spawner:[24,34,126,153,154,171,236,237,265,388],spd:131,speak:[16,51,61,66,70,86,112,124,125,128,130,177,212,221,258,264],speaker:[70,220,221],spear:42,special:[0,3,8,11,12,13,14,15,16,19,20,22,25,27,31,34,37,39,41,43,45,46,48,51,55,56,58,59,61,62,72,73,77,81,84,86,90,92,94,96,99,101,102,103,104,105,106,107,108,111,115,116,131,147,158,160,162,165,177,180,202,204,221,232,236,237,249,250,252,259,261,264,288,289,312,333,335,339,345,360],specif:[0,2,3,8,11,12,13,19,20,22,26,27,31,33,34,40,41,43,44,45,46,49,53,59,64,66,67,68,69,70,72,73,74,75,76,77,79,81,85,86,88,91,92,95,97,101,102,103,104,106,107,108,109,110,112,115,116,127,128,129,130,131,132,133,135,136,140,144,146,151,156,157,162,169,171,181,187,189,190,191,194,195,207,208,209,210,212,214,219,221,255,258,264,274,284,289,296,312,313,323,333,335,338,339,343,345,346,347,361,365,386,387],specifi:[8,13,19,20,27,29,32,37,40,42,43,44,49,50,51,56,58,59,62,68,70,71,72,74,80,83,85,90,91,97,99,100,104,105,107,108,113,116,117,118,131,137,138,144,145,146,147,162,163,171,178,187,195,197,198,200,202,203,207,209,210,214,218,219,221,231,232,235,236,237,252,258,259,264,267,268,269,274,295,321,333,336,338,339,341,344,345,346,348,355,356,357,361,365,367,381,386],spectacular:3,speech:[212,264],speechlock:258,speed:[5,13,33,58,91,95,112,115,131,228,269,302,336,358],spell:[16,42,43,51,82,89,232,237,269],spell_attack:237,spell_conjur:237,spell_heal:237,spell_nam:237,spellcast:111,spellnam:237,spend:[34,85,97,108,112,234,235,236,237,238],spend_act:[234,235,236,237,238],spend_item_us:236,spent:237,sphinx:74,spin:[91,144],spit:[106,115,117],splashscreen:201,splinter:109,split:[11,20,22,39,40,46,67,72,81,86,90,97,105,106,116,118,125,127,163,179,180,199,249,252,266,310,325,338,339,348],split_nested_attr:171,spoken:[66,70,111,142,212,220,221,264],spoof:332,spool:138,sport:33,spot:[77,89,156],spread:[42,78,101,113,114],spring:[95,202],sprint:228,sprofil:284,spyrit:136,sql:[2,45,58,77,88,89,108,319,388],sqlite3:[8,9,11,58,76,77,103,116,149,150,361],sqlite3_prep:322,sqlite:[9,58,135,322],sqllite:2,sqrt:85,squar:[63,74,85],squeez:58,src:[17,31,34,37,46,48,99,130,143,146,225],srcobj:[166,179],srun:288,srv:2,ssessionhandl:56,ssh:[40,53,56,67,76,77,81,144,151,153,279,292,323,324],ssh_interfac:144,ssh_port:144,sshd:147,sshfactori:304,sshprotocol:304,sshserverfactori:304,sshuserauthserv:304,ssl:[56,59,76,77,134,140,153,158,176,279,292,296,309,324],ssl_context:[305,309],ssl_interfac:144,ssl_port:144,sslcertificatefil:134,sslcertificatekeyfil:134,sslciphersuit:134,sslengin:134,ssllab:134,sslprotocol:[134,305,309],ssltest:134,sslv3:140,sstem:92,sta:344,stab:[83,109,249],stabil:[110,182,220],stabl:[53,73,88,146],stabli:[6,278],stack:[14,20,46,110,113,127,157,165,245,268,325,345,353],stackedinlin:157,stackexchang:8,stackful:353,stackoverflow:8,stacktrac:[268,353],staf:60,staff:[29,31,42,51,60,67,72,81,89,110,114,116,130,164,269,339],staff_onli:256,staffer:67,staffernam:67,stage:[2,11,12,72,88,110,116,130,157,185,261],stagger:296,stai:[20,27,45,71,97,106,127,128,138,144,149,252],stale:[45,146],stalker:386,stamina:[84,111,205,231,237],stamp:[19,40,45,46,156,160,169,181,263,273,316,321,335],stanc:[112,115,221],stand:[8,11,14,17,31,58,68,71,72,74,80,81,83,88,99,102,106,108,109,111,113,114,115,116,127,130,138,142,144,177,194,212,221,248,264,273,278,315,336,339,341,347],standalon:147,standard:[11,16,19,26,52,56,59,61,62,66,67,77,80,84,86,89,90,97,101,104,106,115,118,126,128,133,134,138,147,153,156,168,200,201,221,251,258,264,304,306,311,328,333,338,347,348,353,362,369,388],stander:113,stanza:294,stapl:112,star:171,stare:11,start:[3,5,6,7,8,9,10,11,12,14,15,16,19,20,22,23,26,27,30,31,32,33,37,39,40,41,42,45,46,49,50,53,54,55,56,58,60,62,66,71,72,74,76,77,78,79,80,81,83,85,86,87,89,91,92,97,99,101,102,103,104,107,110,111,112,113,114,115,116,117,118,126,127,129,130,133,135,137,139,142,143,144,145,147,149,156,158,163,164,170,171,176,177,179,180,181,182,186,194,195,200,202,203,204,205,210,212,215,216,220,221,231,232,234,235,236,237,238,244,245,248,250,252,264,266,267,273,275,276,277,278,281,284,286,288,289,294,295,296,297,301,302,303,308,309,315,321,322,325,329,334,338,339,340,341,343,345,346,347,348,353,354,361,387,388],start_all_dummy_cli:315,start_attack:248,start_bot_sess:325,start_delai:[37,115,126,127,245,273,276,278,341],start_driv:127,start_evennia:284,start_hunt:248,start_idl:248,start_lines1:284,start_lines2:284,start_loc_on_grid:71,start_olc:266,start_only_serv:284,start_ov:27,start_patrol:248,start_plugin_servic:53,start_portal_interact:284,start_serv:294,start_server_interact:284,start_sunrise_ev:91,start_text:232,start_turn:[234,235,236,237,238],startapp:[58,92,130,131],startclr:[62,353],startedconnect:[281,295,296],starter:[67,109,118,119],starthour:81,startnod:[27,96,203,266,345],startnode_input:[27,203,266,345],startproduc:286,startservic:[287,329],startswith:[32,86,171,338],starttupl:304,startup:[13,25,37,39,53,91,103,118,144,264,273,313,322,354],stat:[17,93,96,103,104,106,107,110,111,115,116,118,130,131,141,181,194,231,234,235,236,237,238,388],state:[3,11,13,14,15,20,22,26,27,31,37,40,46,62,76,77,88,103,104,107,109,112,115,127,128,146,151,156,162,164,168,175,183,186,216,227,234,235,236,237,238,241,245,248,250,269,273,275,276,278,284,304,333,343,345],state_unlog:175,statefultelnetprotocol:[307,315],statement:[3,14,15,19,20,27,48,58,71,76,90,101,106,125,264,339,360],static_overrid:[46,64,103,118],static_root:118,staticfil:192,statict:181,statictrait:231,station:[112,127],stationari:248,statist:[39,40,49,64,117,126,181,205,317,334,351],statu:[11,27,39,40,44,59,83,90,99,103,110,111,144,187,194,236,237,238,248,278,282,284,293,294,295,298,312],status:110,status_cod:286,stderr:251,stdin_open:146,stdout:[146,251,284,354],steadi:77,steal:[96,178],stealth:112,steer:127,step1:83,step2:83,step3:83,step:[2,6,7,9,14,15,20,22,26,37,58,60,66,70,74,79,80,83,85,86,90,92,93,95,96,97,112,114,116,120,127,128,131,134,135,138,146,170,195,230,250,276,278,288,300,311,315,316,325,335,339,342,343,345,346],stick:[16,22,27,61,74,138,169],still:[0,1,7,9,11,13,14,15,16,20,22,37,40,41,45,51,53,56,60,62,66,67,68,71,73,74,76,77,79,81,83,85,86,89,90,91,97,98,99,103,104,105,106,112,113,116,127,128,131,132,133,138,147,151,164,171,178,201,212,231,232,234,235,236,237,238,250,252,264,268,275,316,345,347,348,357,361],sting:72,stock:[23,76,96,225,381],stolen:[147,338],stone:[22,99,108],stop:[3,5,7,9,15,19,23,27,30,31,34,37,39,40,44,46,48,49,60,67,71,81,83,86,89,90,91,95,99,102,103,106,111,112,113,115,116,119,126,127,138,144,146,149,168,171,176,181,194,199,209,211,212,221,227,228,231,235,238,244,245,264,275,276,278,283,284,286,289,301,302,322,323,329,338,339,341,361,388],stop_driv:127,stop_evennia:284,stop_serv:294,stop_server_onli:284,stopproduc:286,stopservic:[287,329],storag:[13,14,22,37,45,58,77,82,83,88,96,102,114,130,135,160,181,186,189,192,193,213,220,231,252,259,263,264,268,269,273,276,278,291,327,331,333,335,340,355,356],storage_modul:340,storagecontain:37,storagescript:37,store:[4,6,8,9,11,12,14,16,19,20,22,23,26,31,33,34,37,39,40,43,44,45,46,53,58,61,64,66,67,70,71,73,76,77,80,82,83,85,86,87,88,89,90,92,95,96,97,98,101,103,104,105,106,107,110,113,114,115,116,118,127,130,131,135,143,146,156,158,160,165,168,169,171,172,174,179,180,186,189,192,194,202,203,210,217,219,220,221,225,228,229,231,236,240,249,250,252,258,259,263,267,268,269,270,274,275,276,277,278,284,288,289,290,291,294,296,297,298,300,308,311,316,322,323,324,325,327,329,333,334,335,336,338,340,341,342,343,344,345,346,351,353,355,356,357,361,381,386],store_kei:278,store_tru:251,stored_obj:81,storekei:[96,278],storenam:96,storeroom:96,storeroom_exit:96,storeroom_kei:96,storeroom_key_nam:96,stori:[6,67,117,130],storm:82,storypag:117,storytel:116,stove:264,str:[8,13,19,26,27,30,32,45,48,53,61,62,66,68,81,85,90,97,98,104,105,106,111,114,130,131,153,156,158,162,163,164,165,166,171,178,182,186,187,188,189,192,194,195,197,199,202,203,204,205,207,208,209,210,212,213,214,215,219,220,221,225,227,231,232,234,235,236,237,238,243,250,251,252,255,256,259,263,264,267,268,269,274,275,276,278,281,282,284,289,290,291,293,294,295,296,297,299,302,303,304,307,308,309,312,313,315,321,322,323,324,325,327,328,329,332,333,334,335,336,338,339,340,341,343,344,345,346,347,353,354,355,356,357,358,359,360,361,362,365,367,373,386],straight:[29,71,128],straightforward:[81,86,96,97,116,127],strang:[11,15,83,86,88,104,134,165],strangl:144,strap:112,strategi:[3,238],strattr:[13,333],strawberri:251,stream:[7,192,293,297,323],streamlin:[2,194],stren:106,strength:[13,31,89,90,103,104,111,112,114,115,131,231],stress:[5,315],stretch:72,stribg:361,strict:[48,268,338],stricter:268,strictli:[27,51,101,130,201,237,347],strike:[27,95,115,177,229,237,238],string1:361,string2:361,string:[3,5,6,8,13,14,16,19,20,22,23,24,25,26,27,29,32,33,34,39,42,43,44,45,46,49,51,55,56,58,59,61,62,63,67,68,71,72,74,76,81,83,86,89,90,91,95,98,99,101,103,104,105,106,107,108,111,112,113,115,130,131,135,137,141,144,156,158,160,162,163,166,169,171,177,178,179,180,181,182,186,187,188,189,192,194,195,197,201,203,212,213,214,215,218,219,220,221,225,226,231,232,234,235,236,237,238,248,252,255,256,257,258,259,263,264,267,268,269,273,276,278,284,286,289,293,296,304,307,308,310,316,321,323,325,328,332,333,334,335,336,338,339,341,342,343,344,345,346,347,353,354,355,357,358,359,360,361,362,367,386],string_from_modul:361,string_partial_match:361,string_similar:361,string_suggest:361,stringproduc:286,stringvalu:231,strip:[22,27,30,42,60,62,68,74,80,86,90,94,96,98,105,113,116,125,163,171,179,180,192,221,269,289,304,307,308,338,339,343,345,353,361],strip_ansi:[94,338,360],strip_control_sequ:361,strip_mxp:338,strip_raw_ansi:338,strip_raw_cod:338,stroll:228,strong:[31,62,116,360],strongest:31,strongli:[77,106,112,114,220],strr:219,struct:88,structur:[13,22,29,31,42,56,59,67,71,73,76,77,86,88,92,98,101,102,103,106,112,118,130,131,138,171,192,221,264,267,268,269,308,313,336,342,345,366,378,385,386],strvalu:[13,333,334],stuck:[27,98,109,113,138],stuff:[13,20,27,31,37,40,41,42,67,71,73,74,80,83,89,93,96,98,105,106,107,108,109,110,111,112,113,114,117,119,140,165,171,204,230,231,251,278,322,374],stumbl:6,stupid:108,stupidli:23,sturdi:344,stutter:60,style:[7,19,22,27,33,50,53,62,63,72,73,74,76,80,86,89,90,93,98,106,109,110,112,115,117,119,133,160,166,168,179,197,198,203,214,216,234,251,264,268,338,343,347,361],styled_foot:166,styled_head:[22,166],styled_separ:166,styled_t:[22,166],sub:[2,13,42,46,59,60,67,73,74,89,92,101,103,115,139,144,155,161,184,185,190,195,221,251,253,255,257,260,267,269,270,279,331,337,338,360,363],sub_ansi:338,sub_app:130,sub_brightbg:338,sub_dblspac:360,sub_mxp_link:360,sub_text:360,sub_xterm256:338,subclass:[19,40,42,45,77,101,103,125,171,195,252,263,273,294,307,313,332,335,352,357,361],subdir:8,subdirectori:[8,73],subdomain:[134,144,147],subfold:[58,64,103,106,131],subhead:74,subject:[2,58,85,94,101,144,204,214],sublim:119,submarin:127,submenu:[7,195,266],submenu_class:195,submenu_obj:195,submiss:[203,381],submit:[17,73,130,147,203,381,386],submitcmd:203,submodul:308,subnegoti:308,subnet:[49,169],subpackag:[8,59],subprocess:[81,361],subreddit:133,subscrib:[9,22,23,31,44,49,75,77,86,90,129,158,176,186,187,188,236,278,295,326],subscript:[22,44,90,129,133,176,185,188,189,278],subsequ:[13,22,48,106,115,176,339,361],subsequent_ind:347,subset:[8,43,88,103,112],subsid:45,substanti:192,substitut:[7,33,141,264,338,360],substr:[105,338],subsubhead:74,subsubsubhead:74,subsystem:[58,67,111,138,259],subtitl:17,subtract:[96,230,267],subturn:115,subword:361,succ:258,succe:[109,110,115,200],succeed:[200,251],success:[101,111,112,114,115,116,131,156,187,194,200,234,235,236,237,238,241,249,250,259,268,284,288,335,343,355,361,386],success_teleport_msg:250,success_teleport_to:250,success_url:386,successfuli:218,successfulli:[2,10,22,48,72,82,107,113,151,156,218,249,252,264,276,284,296,328,335,386],suddenli:[0,6,335],sudo:[138,146,147],sue:111,suffic:[17,89,106],suffici:[58,144,192],suffix:[6,19,62,338,353,354,361,370],suggest:[6,27,28,29,45,65,73,74,76,81,110,111,112,135,144,163,178,194,212,221,250,264,361],suggestion_cutoff:178,suggestion_maxnum:178,suit:[10,23,76,77,83,124,182,361,386],suitabl:[11,22,31,33,43,56,59,73,76,77,80,81,98,101,106,112,119,138,144,164,259,318,325,341],sum:[73,95,97,102,119,165],summar:[66,98,133],summari:[66,70,116,133,151,195],summer:[111,112,202],sun:91,sunris:91,sunt:28,super_long_text:346,superclass:157,superfici:220,superflu:360,supersus:259,superus:[12,14,15,51,67,72,79,80,81,86,90,94,99,103,104,105,106,109,112,113,119,131,135,138,150,156,160,170,181,187,197,215,227,248,258,259,264,269,284,335,339,341],supplement:27,suppli:[5,8,13,19,23,27,29,30,32,37,40,42,43,44,48,59,62,73,90,105,112,115,116,138,142,160,165,166,169,171,176,181,182,188,195,199,201,202,205,231,263,264,268,273,278,295,325,335,343,348,358,361],supporst:311,support:[0,3,12,13,22,26,27,30,33,42,53,54,55,56,58,61,62,67,71,73,74,77,78,79,87,88,89,90,94,97,102,105,106,108,110,111,112,116,119,128,134,135,138,139,143,144,145,146,147,149,151,168,177,192,198,199,200,202,213,251,258,264,267,268,269,278,289,297,298,299,300,304,306,307,308,309,311,313,324,333,338,342,345,346,347,353,358,361,373,388],supports_set:[30,289],suppos:[22,27,42,55,56,66,101,156,195],supposedli:[220,308],suppress:[136,306],suppress_ga:[153,279,292],suppressga:306,supress:306,sur:133,sure:[2,3,5,6,7,8,9,11,12,13,14,15,16,20,22,27,31,33,34,37,40,42,43,44,45,46,49,51,58,61,65,66,67,71,72,73,74,79,80,81,82,83,84,86,87,89,90,91,94,97,99,101,104,105,106,109,110,111,112,113,114,115,116,118,119,125,128,130,131,132,134,135,138,141,142,143,144,146,150,151,156,158,164,165,166,168,171,176,179,186,188,192,195,197,211,215,219,220,221,226,231,232,237,240,245,248,249,250,255,258,259,264,268,269,275,276,284,288,294,296,301,322,328,329,330,332,334,335,338,340,342,345,351,357,358,360,361,384,386],surfac:[90,95,147],surpris:[31,68,85,92,97,106],surround:[20,22,63,72,115,169,215,248,357,361],surviv:[13,19,20,26,27,32,37,40,44,82,104,115,128,158,165,181,195,231,273,274,278,341,343,345],survivor:112,suscept:[19,88,259],suspect:130,suspend:[7,146,147],suspens:37,suspici:27,suspicion:130,svg:192,svn:[2,60],swallow:[125,293,360],swap:[8,46,62,171,202,217,335,343],swap_autoind:343,swap_object:335,swap_typeclass:[45,156,335],swapcas:338,swapper:335,swedish:55,sweep:37,swiftli:48,swing:[22,82,83,95,105],switch1:63,switch2:63,switch_opt:[168,169,170,171,176,177,178,179,180,181,202],sword:[22,58,82,96,99,101,108,109,111,112,113,114,194,221,231,269,358,361],swordmanship:111,symbol:[7,15,16,22,60,71,101,143,215,232,252,346],symlink:[74,138],symmetr:347,sync:[11,40,56,77,186,302,307,322,323,324,325,333,342],sync_port:325,syncdata:[324,325],syncdb:8,synchron:354,syntact:[259,361],syntax:[6,14,15,16,22,31,55,62,63,68,70,76,80,83,86,90,91,97,99,104,116,131,135,153,154,166,170,171,179,180,182,195,200,202,203,251,259,264,284,296,323,335,337,338,353,388],syntaxerror:106,sys_cmd:164,syscmdkei:[22,75,153],syscommand:[153,161,167,264],syslog:224,sysroot:143,system:[0,2,5,6,8,9,11,12,13,19,20,23,24,30,32,33,37,39,40,41,42,43,44,45,48,51,53,55,56,58,60,62,63,65,66,67,68,69,70,71,72,73,74,75,76,77,79,80,82,83,85,86,87,88,91,94,96,102,103,104,106,109,113,118,119,127,128,129,131,133,135,138,143,144,147,150,151,153,157,158,160,161,162,164,166,167,168,170,178,180,182,184,187,188,189,192,194,195,197,201,208,209,210,211,212,213,214,216,217,218,220,221,224,225,226,232,234,235,236,237,238,244,250,252,253,256,258,259,263,264,266,269,270,276,284,307,313,321,331,335,339,341,344,345,354,387,388],system_command:22,systemat:85,systemctl:134,systemmultimatch:180,systemnoinput:180,systemnomatch:180,systemsendtochannel:180,tab:[0,2,7,15,46,62,67,84,92,106,107,119,338,347],tabl:[6,9,14,16,45,59,61,62,66,70,72,75,77,79,90,92,95,101,108,131,166,168,178,181,203,268,308,327,338,344,346,347,358,361,387],table_char:344,table_format:168,table_lin:347,table_str:90,tablea:344,tableb:344,tablechar:[90,344],tableclos:[59,308],tablecol:[346,347],tableopen:[59,308],tablet:50,tabletop:[90,114,133,234,238],tabsiz:[338,347],tabstop:360,tabularinlin:332,tack:[99,165],tackl:73,tactic:[112,114,115],taction:115,tag:[14,19,22,24,27,30,33,42,45,46,49,52,58,59,62,65,67,75,76,77,89,90,93,98,99,101,106,118,131,136,146,153,154,157,166,168,169,170,171,176,177,178,179,180,181,182,183,185,186,189,194,195,196,197,198,200,201,202,203,204,208,214,215,216,217,218,219,221,224,227,228,229,231,232,234,235,236,237,238,241,248,249,250,251,256,258,261,264,268,269,271,299,313,321,331,332,334,335,338,341,343,344,345,346,347,358,361,365,367,388],tag_categori:332,tag_data:332,tag_kei:332,tag_typ:[332,365],tagadmin:332,tagcount:101,tagform:332,tagformset:332,taghandl:[43,45,332,336],taginlin:[157,185,254,261,271,332],tagkei:[258,336,341],taglin:17,tagnam:269,tagseri:367,tagshandl:367,tagstr:[269,336],tagtyp:[43,334,336,358,365],tagtypefilt:365,tail:[55,103,144,146,284,354],tail_log_fil:[284,354],tail_log_funct:354,tailor:[79,92,381],take:[0,3,7,8,13,14,15,16,17,19,20,22,27,28,30,31,39,40,42,45,48,50,51,53,55,56,60,62,66,67,68,70,71,72,73,74,76,77,78,79,80,81,82,83,88,89,90,91,92,93,96,97,99,103,104,105,106,109,111,112,113,115,116,117,118,119,120,121,122,123,127,128,130,131,133,143,144,147,149,156,158,163,164,168,180,186,189,194,197,199,202,203,215,218,219,221,224,228,232,234,235,236,237,238,248,250,259,267,269,288,304,312,324,325,334,335,338,343,344,345,346,355,361,362],taken:[20,77,88,107,115,116,126,127,147,177,201,224,234,235,236,237,238,304,328,338,341],takeov:326,tale:117,talk:[11,19,22,23,53,70,73,86,90,97,106,112,135,144,177,194,220,221,229,250,281],talker:76,talki:[77,112],talking_npc:[153,154,190],talkingcmdset:229,talkingnpc:229,tall:[63,111,112,177,221],tallman:177,tang:98,tantal:15,target1:237,target2:237,target:[8,22,23,53,59,62,80,81,82,83,84,90,98,99,105,106,112,113,114,115,116,118,147,156,166,171,176,177,181,189,197,200,202,212,214,232,234,235,236,237,238,248,252,264,334,338,341,345,361],target_loc:[212,228,250,252,264],target_obj:259,targetlist:214,task:[2,5,19,37,43,53,66,86,97,103,151,208,210,232,277,278,361],task_handl:[153,277,361],task_id:[210,277],taskhandl:[153,154,270,361],tast:[23,68,109,130],tavern:221,tax:[5,143],taylor:133,tb_basic:[153,190,233],tb_equip:[153,190,233],tb_filenam:339,tb_item:[153,190,233],tb_iter:339,tb_magic:[153,190,233],tb_rang:[153,190,233],tbbasiccharact:234,tbbasicturnhandl:234,tbearmor:235,tbequipcharact:235,tbequipturnhandl:235,tbeweapon:235,tbitemscharact:236,tbitemscharactertest:236,tbitemsturnhandl:236,tbmagiccharact:237,tbmagicturnhandl:237,tbodi:131,tbrangecharact:238,tbrangeobject:238,tbrangeturnhandl:238,tchar:115,tcp:[76,147],tcpserver:[53,329],teach:93,team:[2,11,22,60,77,110,112],teardown:[8,182,211,230,246,310,359,368],teaser:144,tech:[93,119,120,121,122,123,133],technic:[13,27,43,45,48,51,53,56,60,62,67,77,78,79,85,99,135,144,192,194,333],techniqu:[83,112,113,338],technolog:112,tediou:[7,72],teenag:[80,147],tehom:[67,101],tehomcd:67,tel:[49,66,90,97,98,127,138,171],telepath:112,teleport:[15,49,65,90,96,99,109,171,177,250,258,339],teleportroom:250,televis:20,tell:[0,3,4,5,8,9,10,11,14,20,22,27,30,31,33,37,42,48,49,51,55,56,58,64,66,68,70,71,80,83,86,90,92,97,98,99,103,104,105,106,107,112,114,115,117,124,127,129,131,134,135,143,144,146,147,151,158,168,176,177,188,189,200,221,250,264,284,302,313,325,343,386],telnet:[16,40,46,53,56,62,67,76,77,81,84,106,119,133,138,143,146,147,150,151,153,181,279,292,297,298,299,300,304,305,306,308,309,311,315,323,324,360],telnet_:144,telnet_hostnam:137,telnet_interfac:144,telnet_oob:[59,153,279,292],telnet_port:[2,67,103,137,144,316],telnet_ssl:[153,279,292],telnetoob:308,telnetprotocol:[305,307,309],telnetserverfactori:307,teloutlock:258,telport:109,temp:189,tempat:203,templ:215,templat:[11,12,19,20,33,39,41,42,45,46,64,77,79,94,103,107,112,116,117,118,131,150,157,177,179,203,284,313,323,324,333,344,353,379,386],template_nam:386,template_overrid:[46,64,79,103,118],template_regex:[333,353],template_rend:41,template_str:33,templates_overrid:64,templatestr:344,templatetag:[153,363,380],templateview:386,tempmsg:[187,189],temporari:[8,11,13,109,151,165,189,192,213,234,235,236,237,238,278,345],temporarili:[0,6,8,20,27,37,99,104,111,144,176,181,187,210,218,231],tempt:[39,104,106,110,169],ten:[72,83,144],tend:[6,55,58,63,77,86,89,112,114,127,144,147,171,220,224],tent:72,term:[20,48,66,77,91,92,97,103,104,105,128,138,144,166,219],term_siz:[3,153],termin:[0,3,5,6,7,11,19,62,74,77,79,98,106,107,116,119,128,135,138,143,144,146,147,150,151,153,209,232,234,235,236,237,238,283,284,304,311,327,386],terminalrealm:304,terminals:304,terminalsessiontransport:304,terminalsessiontransport_getp:304,terrain:71,terribl:297,ters:37,test1:[13,30,347],test2010:98,test2028:98,test2:[13,22,30,62],test3:[13,347],test4:[13,347],test5:13,test6:13,test7:13,test8:13,test:[1,2,3,7,10,11,13,14,15,16,17,20,22,26,27,29,30,31,34,41,42,44,46,48,51,66,68,70,72,73,74,80,81,83,86,88,90,91,92,94,96,97,99,101,105,107,110,112,113,115,121,122,126,129,130,133,135,136,138,139,142,144,145,153,161,163,167,168,170,178,181,190,191,197,200,202,203,206,222,223,230,232,234,235,236,237,238,239,240,267,268,279,286,289,292,313,314,315,319,335,337,338,339,341,345,349,359,361,363,364,372,374,380,388],test_:8,test_about:182,test_accept:211,test_access:182,test_add:211,test_add_trait:230,test_add_valid:211,test_al:230,test_all_com:182,test_alternative_cal:8,test_amp_in:310,test_amp_out:310,test_at_repeat:246,test_attribute_command:182,test_audit:226,test_auto_creating_bucket:193,test_auto_creating_bucket_with_acl:193,test_ban:182,test_batch_command:182,test_bold:310,test_boundaries__bigmod:230,test_boundaries__change_boundari:230,test_boundaries__dis:230,test_boundaries__invers:230,test_boundaries__minmax:230,test_c_creates_button:320,test_c_creates_obj:320,test_c_dig:320,test_c_examin:320,test_c_help:320,test_c_login:320,test_c_login_no_dig:320,test_c_logout:320,test_c_look:320,test_c_mov:320,test_c_move_:320,test_c_move_n:320,test_c_soci:320,test_cach:230,test_cal:211,test_cas:8,test_cboot:182,test_cdesc:182,test_cdestroi:182,test_cemit:182,test_channel:182,test_channelcommand:182,test_char_cr:182,test_char_delet:182,test_clean_nam:193,test_clean_name_norm:193,test_clean_name_trailing_slash:193,test_clean_name_window:193,test_clear:230,test_clock:182,test_color:310,test_color_test:182,test_comparisons_numer:230,test_comparisons_trait:230,test_compress_content_len:193,test_connection_thread:193,test_content_typ:193,test_copi:182,test_creat:[182,368],test_curr:230,test_cwho:182,test_data_in:310,test_data_out:310,test_del:211,test_delet:[230,368],test_desc:[182,230],test_desc_default_to_room:182,test_destroi:182,test_destroy_sequ:182,test_dig:182,test_displayinput_nod:345,test_do_nested_lookup:182,test_dynamic_nod:345,test_edit:211,test_edit_valid:211,test_emit:182,test_empty_desc:182,test_end_nod:345,test_examin:182,test_exit:211,test_exit_command:182,test_find:182,test_floordiv:230,test_forc:182,test_general_context:376,test_generated_url_is_encod:193,test_get:[230,384],test_get_and_drop:182,test_get_authent:384,test_get_dis:384,test_giv:182,test_handl:211,test_hello_world:107,test_help:182,test_hom:182,test_ic:182,test_ic__nonaccess:182,test_ic__other_object:182,test_ident:310,test_idl:320,test_info_command:182,test_init:230,test_interrupt_command:182,test_invalid_access:384,test_inventori:182,test_ital:310,test_large_msg:310,test_list:[211,368],test_list_cmdset:182,test_location_leading_slash:193,test_lock:[182,211],test_look:182,test_look_nod:345,test_mask:226,test_memplot:320,test_menu:232,test_messag:321,test_mudlet_ttyp:310,test_mul_trait:230,test_multimatch:182,test_mux_command:182,test_mycmd_char:8,test_mycmd_room:8,test_nam:182,test_nested_attribute_command:182,test_nick:182,test_object:182,test_object_search:8,test_ooc:182,test_ooc_look:182,test_opt:182,test_override_class_vari:193,test_override_init_argu:193,test_pag:182,test_password:182,test_percentag:230,test_perm:182,test_pi:182,test_pickle_with_bucket:193,test_pickle_without_bucket:193,test_plain_ansi:310,test_pos:182,test_pos_shortcut:230,test_quel:182,test_queri:[153,279,314],test_quit:182,test_remov:230,test_repr:230,test_resourc:[8,153,154,182,211,226,246,310,337,368,384],test_retriev:368,test_return_valu:8,test_sai:182,test_script:182,test_send_random_messag:246,test_server_load:182,test_sess:182,test_set:230,test_set_attribut:368,test_set_game_name_and_slogan:376,test_set_help:182,test_set_hom:182,test_set_nod:345,test_set_obj_alia:182,test_set_webclient_set:376,test_simpl:8,test_simple_default:182,test_spawn:182,test_special_charact:193,test_split_nested_attr:182,test_start:211,test_start_nod:345,test_storage_delet:193,test_storage_exist:193,test_storage_exists_doesnt_create_bucket:193,test_storage_exists_fals:193,test_storage_listdir_bas:193,test_storage_listdir_subdir:193,test_storage_mtim:193,test_storage_open_no_overwrite_exist:193,test_storage_open_no_writ:193,test_storage_open_writ:193,test_storage_s:193,test_storage_sav:193,test_storage_save_gzip:193,test_storage_save_gzip_twic:193,test_storage_save_with_acl:193,test_storage_url:193,test_storage_url_slash:193,test_storage_write_beyond_buffer_s:193,test_strip_signing_paramet:193,test_sub_trait:230,test_tag:182,test_teleport:182,test_timer_r:230,test_timer_ratetarget:230,test_toggle_com:182,test_trait:[153,154,190],test_trait_db_connect:230,test_trait_getset:230,test_tunnel:182,test_tunnel_exit_typeclass:182,test_typeclass:182,test_upd:368,test_upp:8,test_valid_access:384,test_valid_access_multisession_0:384,test_valid_access_multisession_2:384,test_valid_char:384,test_validate_input__fail:230,test_validate_input__valid:230,test_valu:230,test_view_nod:345,test_wal:182,test_whisp:182,test_who:182,test_without_migr:8,testabl:8,testaccount:182,testadmin:182,testampserv:310,testapp:130,testbatchprocess:182,testbodyfunct:246,testbuild:182,testcas:[8,193,230,310,320,352,359,376],testcmdcallback:211,testcomm:182,testcommand:27,testdefaultcallback:211,testdummyrunnerset:320,tester:[101,144,302],testevenniarestapi:368,testeventhandl:211,testform:344,testgener:182,testgeneralcontext:376,testhelp:182,testid:22,testinterruptcommand:182,testirc:310,testmemplot:320,testmenu:[203,345],testmixedrefer:352,testmod:325,testmymodel:8,testnumerictraitoper:230,testobj:8,testobject:8,testobjectdelet:352,testok:97,testregularrefer:352,testrenam:98,testresult:268,testset:8,testsharedmemoryrefer:352,teststr:8,testsystem:182,testsystemcommand:182,testtabl:98,testtelnet:310,testtrait:230,testtraitcount:230,testtraitcountertim:230,testtraitgaug:230,testtraitgaugetim:230,testtraitstat:230,testunconnectedcommand:182,testvalu:13,testwebsocket:310,text2html:[153,154,337],text:[0,6,8,11,12,14,15,16,17,22,23,25,26,28,29,31,33,42,43,46,48,53,55,56,58,59,60,66,67,68,70,72,73,75,76,80,84,88,89,90,94,96,97,99,103,105,107,109,111,112,113,114,116,119,120,125,127,128,130,132,133,136,138,142,144,145,146,151,156,158,163,166,168,169,170,171,176,177,178,179,180,181,182,183,186,187,188,189,192,194,195,196,197,200,201,202,203,204,205,208,210,212,214,215,216,217,218,220,221,225,227,228,229,231,232,234,235,236,237,238,241,243,248,249,250,251,256,259,264,266,267,269,273,281,282,289,295,296,299,302,303,304,307,308,312,313,323,324,325,328,329,333,334,336,338,339,341,343,344,345,346,347,353,355,358,360,361,362,381,388],text_:74,text_color:205,text_descript:231,text_exit:[68,195],text_flow_pane1:46,text_flow_pane2:46,text_single_exit:68,textarea:[357,381],textbook:53,textbox:381,textfield:[58,130],textstr:30,texttag:[94,128,388],texttohtmlpars:360,textual:85,textwrap:347,textwrapp:347,than:[0,3,4,5,6,7,8,9,11,12,13,14,15,20,22,24,25,27,28,29,31,34,39,40,42,43,44,45,46,50,51,55,58,61,62,63,64,66,70,71,73,74,76,77,79,81,83,85,89,90,91,92,95,97,98,101,103,104,105,106,108,109,110,111,113,114,115,116,119,128,131,134,135,137,141,144,147,149,151,156,160,163,164,165,168,169,170,171,172,176,179,181,194,195,196,199,205,210,212,219,220,221,228,231,232,234,235,236,237,238,249,251,258,264,266,267,284,310,325,330,332,333,334,335,338,339,345,346,347,351,353,354,356,357,358,360,361,386],thank:[37,79,131,214,329],thankfulli:130,the_answ:108,the_one_r:108,thead:131,thei:[3,4,5,6,7,8,11,12,13,14,15,16,17,19,20,22,23,27,29,31,34,36,37,40,41,42,43,45,46,48,49,50,51,53,54,56,58,59,60,61,62,65,66,67,68,70,72,73,74,76,77,79,80,81,83,84,85,86,87,88,89,90,92,93,94,96,97,98,99,100,101,103,104,105,106,107,108,110,111,113,114,115,116,118,125,127,128,129,131,132,134,135,138,143,144,147,150,151,156,157,164,165,168,170,171,176,177,179,180,181,186,192,194,195,197,200,202,204,209,215,220,221,231,234,235,236,237,238,249,250,251,252,258,259,263,264,267,269,270,273,275,276,278,284,304,305,307,308,309,313,316,322,323,324,325,327,332,333,338,339,340,342,345,347,353,361,362,366,367,370,381,386],theirs:[115,196,204],them:[0,6,7,8,9,11,12,13,14,15,16,19,20,22,23,25,26,27,29,30,31,33,34,37,39,40,42,43,44,45,46,48,49,50,53,54,55,56,58,59,61,62,64,65,66,67,68,70,72,73,74,76,77,79,80,82,83,84,85,86,89,90,91,92,95,96,97,98,101,103,104,105,106,107,108,109,110,111,113,114,115,116,118,123,125,127,128,130,131,135,137,141,143,144,145,147,151,156,162,163,164,166,168,170,171,176,178,179,180,182,187,192,196,197,198,202,203,204,205,207,209,212,218,219,221,231,232,234,235,236,237,238,241,248,250,251,255,259,264,269,275,278,284,302,304,307,315,319,322,323,325,332,333,335,336,338,339,341,345,353,357,360,367,386],themat:110,theme:[103,110,112,131],themself:236,themselv:[6,8,13,20,22,27,31,34,37,41,45,51,61,65,66,71,74,76,80,82,90,92,94,96,103,111,112,113,114,116,127,129,142,171,221,264,273,276,284,334,336,357],theoret:[20,60],theori:[3,20,89,116,133,156,164],thereaft:33,therefor:[8,29,37,66,71,91,97,109,170,195,207],therein:[16,22,168,179,202,218],thereof:[221,264],thet:103,thi:[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,19,20,22,23,24,25,26,27,28,29,30,31,32,33,34,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,76,77,78,79,80,81,82,83,84,85,87,88,89,90,91,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,122,124,125,126,127,128,129,130,131,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,149,150,151,152,153,155,156,157,158,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,192,194,195,196,197,198,199,200,201,202,203,204,205,207,208,209,210,212,213,214,215,216,217,218,219,220,221,224,225,227,228,229,231,232,234,235,236,237,238,240,241,243,244,245,247,248,249,250,251,252,253,254,255,256,257,258,259,260,261,263,264,267,268,269,270,271,273,274,275,276,277,278,279,281,282,283,284,286,288,289,290,291,293,294,295,296,297,298,299,300,301,302,303,304,305,306,307,308,309,311,312,313,315,316,317,318,319,321,322,323,324,325,326,327,328,329,330,331,332,333,334,335,336,337,338,339,340,341,342,343,344,345,346,347,348,351,352,353,354,355,356,357,358,359,360,361,362,363,365,366,367,370,373,374,378,379,381,385,386,387],thie:27,thieveri:178,thin:[48,68,72,83,197,354],thing:[0,1,5,6,8,9,10,11,13,14,16,19,20,22,23,26,27,30,31,34,37,39,40,41,42,44,45,46,48,49,51,53,55,56,58,60,62,63,64,66,67,68,70,71,72,73,76,77,78,79,80,81,82,83,84,85,86,90,92,93,95,96,97,98,99,101,102,103,105,106,109,110,111,113,114,115,116,117,118,125,127,128,129,130,131,133,134,138,141,143,144,146,147,149,150,151,156,164,165,171,187,194,195,202,210,220,221,231,232,238,245,250,251,258,259,263,264,267,288,293,297,329,332,333,335,338,339,347,353,357,386],think:[6,20,23,27,42,43,44,62,64,70,72,73,76,78,83,91,94,97,98,99,106,108,110,113,114,119,120,121,122,123,133,149,325,386],third:[3,8,9,19,27,62,66,67,73,74,77,85,92,106,113,127,131,134,135,142,143,144,171,338],thirdnod:27,this_sign:326,thoma:[33,49,169],thorn:[13,34,108],thorough:0,those:[2,8,9,10,11,12,13,14,15,16,20,22,25,27,29,31,34,40,42,43,45,51,58,59,62,64,67,72,76,77,79,80,82,84,87,88,89,90,91,93,94,96,98,99,101,104,105,106,108,109,110,111,113,114,116,117,118,119,125,127,132,133,135,141,144,147,149,151,165,166,168,171,177,178,182,188,195,221,225,231,232,234,249,250,259,267,268,269,307,312,334,335,345,347,355,356,359,361,367,381,386],though:[0,6,8,9,11,12,13,14,15,16,19,20,27,34,37,39,48,49,63,68,73,77,84,85,86,89,91,92,94,97,98,100,102,104,106,109,111,112,113,115,116,127,128,133,135,138,142,143,144,146,147,151,156,166,195,196,205,234,235,237,238,244,250,251,264,269,338,361],thought:[31,32,85,106,110,112,133,135],thousand:[72,85,130,144],thread:[19,76,133,135,151,303,329,354,361],threadpool:329,threadsaf:332,threat:147,three:[14,20,22,27,31,33,34,49,50,56,62,64,66,68,70,74,79,81,92,96,100,106,108,111,121,130,131,144,163,232,237,259,275,338,345],threshold:[246,327,339],thrill:96,throttl:[153,154,156,279,289,302],through:[5,6,7,12,14,15,17,19,20,22,23,27,28,29,31,33,34,39,40,41,42,53,55,56,59,60,62,65,66,67,70,74,76,77,78,81,84,85,86,87,88,89,90,91,92,96,97,102,103,107,108,109,110,112,113,115,118,119,120,121,123,124,127,135,141,144,145,147,149,151,153,156,165,171,178,186,194,202,207,225,227,234,235,236,237,238,252,257,259,263,264,268,274,275,278,284,286,291,300,304,307,313,316,321,323,324,332,334,335,339,341,344,345,346,353,360,361,381,386],throughout:[13,27,39,71,76,99,236],throughput:[187,341],thrown:115,thrust:249,thu:[15,20,22,27,31,45,51,56,58,60,62,64,72,85,87,89,90,101,106,112,114,116,118,127,131,137,168,172,196,220,259,264,278,316,330,333,334,341],thud:204,thumb:[4,11,62],thumbnail:79,thunder:135,thunderstorm:109,thusli:143,tick:[11,22,27,44,74,77,129,135,236,248,250,278,316],ticker1:[44,278],ticker2:[44,278],ticker:[30,37,75,76,98,129,158,248,250,274,278,289],ticker_class:278,ticker_handl:[44,129,153,278],ticker_pool_class:278,ticker_storag:278,tickerhandl:[19,24,37,115,129,153,154,228,236,250,270,388],tickerpool:278,tickerpool_layout:278,ticket:78,tidbit:76,tidi:146,tie:115,tied:[77,108,165,178,197,241,245,256],tier:[144,192],ties:[64,71,173],tight:197,tightli:147,tild:101,tim:[197,203,205,232,234,235,236,237,238],time:[0,2,3,5,7,8,9,11,12,13,14,15,17,20,23,27,28,31,34,39,40,42,44,45,46,48,49,53,54,56,58,59,61,62,63,64,66,67,68,71,73,75,76,77,78,79,80,81,82,83,84,85,86,88,90,92,93,97,98,99,101,103,104,105,106,107,108,109,110,111,113,114,115,116,124,127,129,130,134,135,137,138,139,142,143,144,146,151,156,158,160,162,163,165,166,169,176,181,187,189,192,194,199,200,202,209,210,213,215,218,219,227,228,230,231,232,234,235,236,237,238,240,245,248,249,250,256,263,264,267,269,270,273,276,277,278,284,286,288,290,291,296,302,307,309,316,317,321,322,323,325,327,332,333,335,336,338,339,340,341,346,348,351,352,354,357,361],time_ev:213,time_factor:[19,91,199,348],time_format:361,time_game_epoch:[19,91,348],time_to_tupl:199,time_unit:[91,199],time_until_next_repeat:[37,276],timedelai:[83,277,359,361],timedelta:[355,362],timeeventscript:210,timefactor:91,timeformat:[354,361],timeit:5,timeout:[115,126,140,307,327,351],timer:[19,22,37,44,56,77,88,99,102,103,112,115,202,230,236,240,244,249,270,276,278,315,323,358],timerobject:37,timescript:348,timeslot:202,timestamp:[19,81,327,348],timestep:316,timestr:354,timetrac:[153,279,314],timetupl:91,timezon:[135,192,354,355,362],tin:107,tini:[85,94,135],tinker:6,tintin:[136,297,298,308,311],tinyfugu:136,tinymud:[60,89],tinymush:[60,63,89],tinymux:[60,89],tip:[43,73,78,133,147],tire:[99,165],titeuf87:252,titl:[17,23,46,68,92,145,176,178,195,255,338,341,386],titlebar:46,titleblock:92,tlen:141,tls:134,tlsv10:140,tlsv1:134,tmp:[2,138],to_be_impl:386,to_byt:361,to_cur:236,to_displai:195,to_dupl:164,to_execut:361,to_exit:66,to_fil:224,to_init:238,to_non:264,to_obj:[156,166,264],to_object:188,to_pickl:342,to_str:361,to_syslog:224,tobox:293,todai:[112,205],todo:[18,35,38,47,57,90,100,148],toe:[60,106],togeth:[11,15,20,22,29,34,36,45,52,56,66,67,68,71,74,77,83,89,90,101,103,106,107,108,109,110,111,112,113,114,115,116,117,122,128,134,141,144,162,171,173,187,202,217,218,220,221,249,250,263,269,293,312,325,332,338,339,353,358],toggl:[94,307],toggle_nop_keepal:307,togglecolor:94,toint:[42,267],token:[113,141,264,304,307,339,353],told:[9,61,62,87,97,103,106,116,144,357],tolkien:91,tom:[33,63,90,111,116,171,177,204,221,344],tommi:[31,33,51],ton:[89,95],tone:62,tonon:171,too:[3,5,7,9,11,13,14,15,17,19,22,27,31,32,45,49,56,62,66,67,68,70,71,74,79,80,81,83,85,86,89,90,96,97,98,99,102,104,105,108,110,111,112,113,114,115,116,119,127,130,138,169,171,190,232,237,241,258,276,289,293,327,329,339,344,345,346,347,358,361],took:[8,102,361],tool:[42,43,58,60,62,69,72,75,77,79,83,89,91,104,106,108,110,112,118,119,120,121,122,123,134,135,138,144,146,387],toolbox:133,tooltip:46,top:[0,5,10,11,14,20,22,26,28,29,37,39,43,45,46,67,68,72,74,83,85,89,90,92,96,98,102,105,106,107,116,124,130,131,133,138,143,151,160,165,189,195,197,199,217,221,232,251,252,256,263,273,284,326,333,335,336,339,346,347,354],topcistr:255,topic:[3,5,20,22,29,40,48,53,58,76,79,92,99,101,106,112,128,178,234,235,236,237,238,255,358,381,386],topicstr:255,tos:258,tostr:293,total:[5,19,31,37,39,40,62,91,95,97,111,125,181,192,200,321,347,348],total_num:351,touch:[6,39,62,74,103,104,134,137,147],tour:[97,103,119,120,121,122,123],toward:[3,22,37,53,68,72,97,110,112,205,215,238,248],tower:[72,202,250],tportlock:258,trace:[56,210,321,345],traceback:[6,8,14,19,37,62,64,89,98,106,116,130,151,210,217,267,293,335,339,353,354,361],tracemessag:321,track:[9,13,19,37,40,58,71,77,84,89,95,103,106,110,111,114,115,127,129,130,145,146,156,165,238,274,295,296,301,304,307,322,327,342,343,355],tracker:[11,78],trade:[70,111,112,194],tradehandl:194,trader:70,tradetimeout:194,tradit:[2,16,30,48,56,62,99,103,106,112,114,115,144,147,252,307,323,346],tradition:[56,89,110,112],traffic:[134,147,192,297],trail:193,train:[93,98,112,133,231],traindriv:127,traindrivingscript:127,trainobject:127,trainscript:127,trainstop:127,trainstoppedscript:127,trait1:231,trait2:231,trait:[19,74,112,114,153,154,190,230,269],trait_class_path:231,trait_data:231,trait_kei:231,trait_properti:231,trait_typ:231,traitexcept:231,traithandl:[230,231],traithandlertest:230,transact:[111,194],transfer:[96,130,165,295,305,309,347],transform:[2,101,187],transit:34,translat:[15,33,53,59,61,62,103,128,133,192,220,221,269,286,338],transmiss:224,transmit:[61,367,370],transpar:[40,46,128,263,278],transport:[293,304,313],transportfactori:304,transpos:128,trap:[15,95,109],traumat:27,travel:[56,59,71,95,228,252],travers:[13,31,34,71,87,96,127,192,212,227,228,248,249,252,258,264],traverse_:22,traversing_object:[212,227,228,252,264],travi:[1,388],travis_build_dir:10,treasur:[67,108,111,252],treat:[15,22,40,43,45,48,72,77,101,107,108,156,162,165,187,204,243,264,269,325,347,358],tree:[11,13,22,27,31,65,74,77,110,111,117,138,195,221,232,251,264,269,284,313,329,345,361],tree_select:[153,154,190],treestr:232,trembl:[104,107],treshold:351,trhr:192,tri:[13,15,22,31,33,40,41,49,56,61,83,90,97,98,105,108,110,112,113,115,130,136,144,163,181,194,196,203,241,249,250,288,327,361,362],trial:[7,310],tribal:72,trick:[68,105,113,133,134,335,381],tricki:[8,42,128],trickier:[67,92],trigger:[2,3,20,22,27,30,32,34,40,41,44,56,62,64,70,71,80,88,89,92,115,124,125,127,131,136,146,156,158,162,163,166,168,182,187,195,213,215,216,248,250,263,264,269,276,278,286,289,293,315,322,326,341,353],trim:338,tripl:[19,62,74,106,353,361],triumph:[109,112],trivial:[3,5,19,22,53,97,109,113],troll:49,troubl:[11,40,67,70,78,86,90,97,99,106,119,134,135,138,143,149,150,333],troubleshoot:[67,150],troublesom:[14,15,49],trove:[67,111],truestr:203,truli:[40,49,66,85,86,202],trunc:192,truncat:370,trust:[27,51,89,111,112,181,339],truth:3,truthfulli:22,truthi:98,try_num_prefix:163,ttarget:115,tto:307,tty:[67,146],ttype:[76,153,279,292,304,307],ttype_step:311,tuck:[72,241],tulip:108,tun:171,tune:[103,112,128],tunnel:[66,68,71,87,90,98,99,105,113,127,171,309],tup:[85,221],tupl:[3,13,27,31,33,42,58,59,85,86,98,101,113,115,131,144,153,156,163,169,171,179,180,188,192,194,195,199,200,204,207,215,221,236,237,243,252,258,259,264,267,268,269,278,281,293,294,304,305,309,316,323,325,333,336,338,340,341,343,345,348,353,354,356,361,368],tupled:354,turbo:143,turkish:156,turn:[8,11,19,20,22,26,27,31,37,40,41,48,49,54,56,59,62,64,66,72,74,77,86,89,90,94,98,104,105,106,107,108,109,111,112,113,124,125,127,128,130,133,144,151,156,166,176,181,182,187,213,215,221,232,234,235,236,237,238,248,250,264,269,284,289,297,304,307,315,325,331,332,335,339,341,345,346,347,353,361,388],turn_act:115,turn_end_check:[234,235,236,237,238],turnbattl:[153,154,190],turnchar:236,tut:[109,250],tutori:[3,17,20,21,22,25,27,37,43,44,48,50,62,64,68,71,72,73,74,76,77,79,81,82,83,85,86,89,90,94,95,97,98,99,101,103,104,105,106,107,111,117,128,130,133,138,141,144,150,195,228,235,249,250,387,388],tutorial_bridge_posist:250,tutorial_cmdset:250,tutorial_exampl:[14,15,37,99,103,106,153,154,190],tutorial_info:250,tutorial_world:[68,109,138,153,154,190],tutorialclimb:249,tutorialmirror:[106,243],tutorialobject:[248,249],tutorialread:249,tutorialroom:[248,250],tutorialroomcmdset:250,tutorialroomlook:250,tutorialweapon:[248,249],tutorialweaponrack:249,tutorialworld:[249,250],tutoru:106,tweak:[6,37,42,45,67,81,89,90,98,104,111,120,124,134,329,338],tweet:[93,388],tweet_output:126,tweet_stat:126,tweetstat:126,twenti:90,twice:[27,81,91,109,115,193,210,215,238,345],twist:[6,19,22,48,53,83,133,138,142,143,147,264,281,284,286,287,293,294,295,296,301,304,307,310,312,313,315,322,325,329,354],twistd:[7,138,151,301,322],twistedcli:53,twistedweb:147,twitch:[86,115],twitter:[76,126,149,388],twitter_api:141,two:[4,6,8,11,13,14,15,16,19,20,22,23,26,27,29,30,31,32,34,36,37,39,40,42,43,45,46,50,51,53,55,56,58,59,60,61,63,64,65,66,68,70,71,72,74,77,79,81,82,83,85,86,87,89,90,92,96,97,99,100,101,102,103,104,105,106,107,108,109,111,112,113,114,115,116,119,120,127,128,130,131,135,139,144,146,147,151,164,171,189,194,195,200,214,215,219,227,228,231,232,236,238,241,250,251,264,266,284,313,324,325,334,336,339,345,347,353,354,361,362],twowai:171,txt:[26,53,67,74,106,132,143,144,158,220,300,308,343],tying:144,typclass:221,type:[0,3,6,9,15,17,19,20,22,23,25,26,27,31,33,37,40,41,42,43,44,45,46,49,50,51,56,58,59,60,61,62,66,68,70,71,72,73,74,76,77,80,81,82,83,86,87,88,89,90,91,94,95,97,99,100,101,102,103,104,106,107,109,110,111,112,113,114,115,116,124,125,126,127,128,130,133,134,136,143,144,147,151,153,154,156,158,166,171,178,181,182,183,187,188,189,190,193,195,197,201,203,207,210,212,213,214,215,221,228,234,235,236,237,238,245,249,250,251,256,258,259,263,264,268,269,277,278,282,284,286,287,295,296,302,304,305,307,308,309,311,312,313,315,323,325,329,332,333,334,335,336,338,339,341,342,345,347,353,356,357,358,361,362,365,366,367,370,375,381],type_count:197,typecalass:333,typecalss:210,typeclas:104,typeclass:[0,8,12,13,14,19,22,23,24,31,32,34,37,40,41,42,43,49,54,55,56,66,67,68,71,72,74,80,81,85,87,88,90,91,92,93,95,96,97,99,100,101,102,107,111,114,115,116,119,124,125,126,127,129,130,131,153,154,156,157,158,159,160,165,171,176,185,187,188,189,190,197,202,206,209,210,213,218,221,227,228,229,234,235,236,237,238,244,250,252,254,255,258,259,261,262,263,264,268,269,271,272,273,274,276,278,322,340,341,358,359,361,365,367,370,381,384,386,388],typeclass_path:[37,45,160,171,273,334,335],typeclass_search:334,typeclasses:104,typeclassmanag:[159,188,262,272],typeclassmixin:386,typeclassserializermixin:367,typeclassviewsetmixin:370,typedobject:[45,86,160,166,186,189,221,252,263,264,273,333,334,335,336,356,361],typedobjectmanag:[188,255,334],typeerror:[3,200,313],typenam:[68,156,158,160,187,189,194,197,199,202,204,210,212,218,219,220,221,227,228,229,234,235,236,237,238,240,243,244,245,248,249,250,252,256,263,264,268,273,276,291,317,333,335,348,351,352],typeobject:336,types_count:197,typic:[8,19,76,97,231,237,238,367,370,386],typo:[73,74,78,147],ubbfwiuvdezxc0m:73,ubuntu:[6,11,134,138,144,147],ufw:147,ugli:[42,46,88,106,355],uid:[146,160,296,303,324,325],uit:[68,195],ulrik:90,ultima:133,umlaut:16,unabl:[141,205],unaccept:22,unaffect:[27,115,236],unari:230,unarm:235,unarmor:235,unauthenticated_respons:384,unavoid:44,unban:[49,98,169],unbias:200,unbroken:344,uncas:338,uncategor:358,unchang:[6,33,220,269,361],unclear:84,uncolor:[62,94],uncom:144,uncommit:11,uncompress:297,unconnect:[183,201],uncov:197,undefin:[2,43,58],under:[2,3,5,7,9,22,27,45,46,58,60,64,67,70,74,77,86,89,98,99,101,104,105,107,110,111,112,114,116,118,130,131,132,133,136,138,143,146,151,166,168,171,203,231,232,251,259,276,284,311,333,338,346,347,361,363,386],undergar:197,undergon:210,underli:[11,31,77,89,110],underlin:[347,360],underneath:[67,335],underpin:122,underscor:[6,27,30,59,62,66,74,106,164,361],underscror:164,understand:[0,3,11,16,20,22,39,40,42,48,56,61,62,71,72,73,74,76,79,81,83,84,85,86,87,93,94,97,98,101,103,104,105,106,107,110,111,112,113,116,118,130,131,133,136,138,147,163,164,219,220,221,329,338,361,388],understood:[8,56,72,97,112,312,313],undestand:81,undo:[26,147,343],undon:168,undoubtedli:89,unexpect:[8,97,128,345],unexpectedli:351,unfair:112,unfamiliar:[30,31,59,106,125,138,144],unformat:[27,345,348],unfortun:[79,86,110],unhappi:67,unhilit:360,unicod:[16,56,61,156,338,361],unicodeencodeerror:338,unifi:[130,324],uniform:40,unimpl:388,uninform:134,uninstal:138,uninstati:361,unintent:251,union:[20,27,104,164,241,345],uniqu:[2,8,12,14,20,22,25,31,32,37,40,42,43,45,46,49,53,56,70,74,76,77,89,99,101,104,108,116,141,144,156,162,164,166,171,176,181,183,187,188,196,199,201,209,215,219,220,221,227,232,235,236,248,250,255,264,268,269,278,281,293,294,302,315,316,324,325,333,334,335,336,341,343,355,358],unit:[1,2,10,19,20,23,41,73,76,77,91,95,133,188,199,213,230,236,286,341,348,361,374,388],unittest:[8,10,81,182,325,341,359],univers:[15,16,91,176],unix:[28,33,74,136,138,177,251,346,354,361],unixcommand:[153,154,190],unixcommandpars:251,unixtim:354,unjoin:194,unknown:[46,86,88,92,104,268,353,361],unleash:82,unless:[13,19,22,27,31,32,34,37,44,49,59,65,68,74,79,80,83,104,107,110,112,116,132,135,142,144,151,156,165,169,171,176,179,186,187,209,219,220,221,238,245,249,254,258,259,264,269,282,297,313,325,333,335,358,361,362],unlik:[41,73,77,112,114,144,156,195,236,335],unlimit:[252,276],unlink:[98,171],unload:359,unload_modul:359,unlock:[31,90,104,333],unlocks_red_chest:31,unlog:[169,174,175,183,187,201,325],unloggedin:[40,153,161,167,216,325],unloggedincmdset:[25,40,105,175,201,216],unlucki:49,unmask:221,unmodifi:[163,180,202,345],unmonitor:289,unmut:[186,187],unnam:[43,164],unneccesari:61,unnecessari:[2,110],unnecessarili:101,unneed:252,unpaced_data:293,unpack:[97,258],unpars:[30,33,163,312,313,353],unpaus:[37,146,276],unpickl:[56,293,333,342,357],unplay:[40,81],unpredict:361,unprivileg:269,unprogram:114,unpuppet:[41,116,168],unpuppet_al:156,unpuppet_object:[12,156],unquel:[31,99,106,168],unreal:133,unregist:64,unrel:[11,27,157],unrepeat:289,unreport:289,unrestrict:111,unsaf:[151,164,250],unsatisfactori:72,unsav:343,unsel:96,unset:[22,34,71,90,115,169,221,231,248,259,264,268,269,276,278,341,345,346,347,353,354],unsign:362,unsigned_integ:[355,362],unsignedinteg:355,unskil:231,unstabl:[146,387],unstrip:163,unsubscrib:[44,90,176,278,295],unsuit:[51,268,336],unsur:[16,55,73,98,115,138,141,144,228],unsurprisingli:106,untag:46,untest:[8,136,138],until:[0,2,5,6,11,13,14,20,22,27,33,37,44,46,48,49,58,62,77,83,84,99,101,106,107,109,110,111,112,113,116,118,128,134,138,194,197,199,213,215,230,231,234,235,236,237,238,248,249,250,264,276,284,313,315,338,339,348,361],untouch:[107,338],untrust:[14,112],unus:[22,94,112,156,162,166,187,202,232,238,243,264,276,307,323,328,334],unusu:147,unwield:235,unwieldli:165,upcom:[137,149],updat:[1,2,6,8,12,13,14,15,22,27,29,32,34,37,44,55,56,58,59,64,67,71,74,76,77,79,82,83,84,85,89,90,91,94,97,103,106,110,113,114,115,116,118,130,131,133,134,135,136,138,141,143,144,145,146,149,157,158,165,166,171,176,179,181,182,186,187,198,202,210,221,230,231,237,250,256,259,263,264,266,267,269,274,300,302,303,308,322,323,325,327,332,333,335,342,343,344,345,346,347,351,361,366,369,381,384,386,388],update_attribut:333,update_buff:343,update_cached_inst:351,update_charsheet:90,update_current_descript:202,update_default:322,update_flag:323,update_lock:366,update_method:46,update_po:71,update_session_count:323,update_undo:343,update_weath:250,updated_bi:207,updated_on:207,updatemethod:46,updateview:386,updatingtrait:231,upfir:7,upgrad:[77,138,143],upload:[77,79,138,144,146,192],upon:[15,31,58,61,83,110,116,124,144,146,147,203,225,234,235,236,237,238,275,286,295,327,386],upp:250,upper:[8,58,62,83,85,168,231,338],upper_bound:231,upper_bound_inclus:231,uppercas:[62,338],upping:62,upsel:144,upset:98,upsid:[86,252],upstart:[53,275],upstream:[0,9,39,77],uptim:[19,49,91,181,298,348],urfgar:42,uri:[187,256,335],url:[11,64,74,77,103,118,131,134,144,145,153,154,158,176,187,192,193,256,303,313,329,335,360,363,364,370,377,380,386],url_nam:[370,384],url_or_ref:74,url_path:370,url_protocol:192,url_to_online_repo:11,urlencod:92,urlpattern:[64,79,92,117,130,131],usabl:[54,62,79,106,111,116,171,195,205,236,258,327,345],usag:[3,5,22,27,29,42,44,49,63,66,68,74,77,80,82,83,84,86,90,94,95,96,97,98,105,106,113,114,115,116,127,135,141,144,150,166,168,169,170,171,176,177,178,181,182,183,186,194,195,196,197,199,200,201,202,203,204,214,215,217,218,220,221,225,227,228,229,234,235,236,237,238,241,248,249,250,251,252,258,267,284,345,347,351],use:[0,2,3,4,5,7,8,9,10,11,12,13,14,15,16,17,19,20,22,23,25,26,27,28,29,30,31,32,33,34,37,39,40,41,42,43,45,46,48,49,50,51,53,54,55,56,58,59,60,61,62,63,64,65,66,67,68,70,71,72,73,74,77,78,79,80,81,82,83,85,86,88,89,90,91,92,93,94,95,96,97,98,99,100,101,103,104,105,106,107,108,109,110,113,114,115,116,117,118,119,120,121,122,123,125,126,127,128,129,130,131,133,134,135,136,137,138,139,141,142,144,145,146,147,149,150,153,156,157,158,160,162,163,164,165,166,168,171,172,176,177,179,180,181,182,186,187,189,192,194,195,196,197,200,202,204,205,209,212,213,214,215,217,218,219,220,221,227,229,231,232,234,235,236,237,238,240,241,244,248,249,250,251,252,258,259,263,264,268,269,276,277,278,282,289,293,306,308,309,312,315,316,323,324,325,332,333,334,335,336,338,339,340,341,343,344,345,346,347,351,353,354,355,357,361,362,366,367,370,386],use_dbref:[221,264,358],use_destin:264,use_evt:346,use_i18n:55,use_item:236,use_nick:[156,221,264],use_required_attribut:[157,254,261,381],use_ssl:192,use_success_location_messag:218,use_success_messag:218,use_tz:192,use_xterm256:338,useabl:252,used:[5,8,9,11,12,13,14,16,17,19,20,23,25,26,27,28,29,30,31,32,33,34,37,39,40,41,42,43,44,45,46,48,50,51,53,56,58,59,60,61,62,63,64,66,67,68,70,72,74,76,77,83,84,86,88,89,90,91,92,95,96,97,99,100,101,102,103,104,105,106,107,108,109,112,113,114,115,116,117,118,119,125,126,127,128,130,131,133,135,136,137,138,142,144,146,147,151,153,156,157,158,162,164,165,166,168,171,176,178,179,180,181,182,187,192,194,195,197,199,201,202,203,204,205,207,209,210,212,213,214,215,219,220,221,228,231,232,234,235,236,237,238,248,249,250,251,252,255,257,258,259,261,264,267,269,275,276,277,278,279,281,282,286,289,290,293,294,295,296,297,298,299,300,301,302,304,306,307,308,311,312,313,316,323,325,326,332,333,334,335,336,337,338,339,341,342,343,345,346,347,353,354,355,356,357,358,361,362,367,370,374,381,386],used_kei:31,useful:[0,1,2,3,5,8,11,13,14,15,16,17,19,20,23,26,27,31,33,34,37,39,41,42,43,44,45,48,49,50,51,54,62,66,68,70,72,73,74,75,77,79,81,82,83,84,85,86,89,90,92,93,94,97,98,99,101,102,104,105,106,107,108,109,112,113,115,116,120,126,129,130,135,138,144,149,151,162,164,165,166,168,170,171,178,179,180,182,190,194,195,209,210,214,220,221,225,231,250,251,252,258,264,268,269,276,284,304,333,335,339,345,346,348,357,361,387],usefulli:105,useless:[104,113,248],uselock:258,user:[2,3,5,6,8,10,12,13,14,15,20,25,26,27,28,29,30,31,33,39,40,41,42,45,46,48,49,53,54,55,59,61,62,64,68,71,73,74,76,77,78,79,81,82,83,84,86,93,94,96,97,98,99,103,104,106,108,112,113,116,118,119,127,128,130,131,133,134,135,138,139,140,141,142,143,144,145,146,150,156,157,158,160,163,166,169,171,176,181,186,187,188,189,192,193,195,197,202,204,208,210,215,216,221,224,225,232,236,238,243,245,252,256,258,259,264,269,276,279,282,288,296,303,304,307,312,313,323,325,328,333,335,338,343,345,346,347,353,355,361,362,366,373,381,386,388],user_change_password:157,user_input:27,user_permiss:[157,160],useradmin:157,userauth:304,userchangeform:157,usercreationform:[157,381],usernam:[11,12,25,27,30,41,79,111,131,146,156,157,160,201,304,328,365,367,373,381],usernamefield:381,userpassword:[49,98,169],uses:[8,10,11,14,16,17,20,22,23,27,29,31,41,42,43,44,45,46,50,53,58,59,61,62,66,67,68,74,77,83,84,85,87,89,92,94,101,103,104,106,107,111,118,135,144,145,164,194,200,202,214,216,221,236,244,245,250,251,252,259,273,278,293,313,333,336,353,354,355,361,365,367],uses_databas:361,using:[0,2,5,6,9,11,12,13,14,15,16,19,20,22,23,26,27,29,30,31,33,34,37,40,41,42,43,44,45,46,48,49,51,56,58,59,60,62,63,65,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,88,89,90,91,94,96,97,98,99,100,101,102,103,106,107,110,111,112,113,114,115,116,124,125,126,127,128,129,130,131,132,133,134,135,136,138,140,141,142,144,146,147,150,151,156,160,162,165,166,168,170,171,176,179,180,181,186,192,194,195,196,199,200,202,203,205,209,215,216,218,220,221,227,228,229,231,232,234,235,236,237,238,241,248,250,251,252,259,264,267,268,269,273,276,277,278,295,296,297,302,303,307,313,316,326,327,329,333,335,336,338,339,343,345,346,348,353,354,355,356,357,358,359,361,363,369,370,381,386,387,388],usr:[77,138,143,146],usual:[0,5,6,7,8,11,12,13,19,20,22,23,26,27,28,30,31,33,34,37,40,42,43,44,45,51,53,62,66,67,68,70,73,74,77,79,80,81,83,84,86,89,91,94,97,98,100,101,103,104,106,107,108,109,112,113,118,128,130,134,135,138,140,142,144,146,151,156,158,163,164,165,166,168,171,177,181,182,186,187,189,199,209,210,212,213,219,220,221,231,250,251,259,263,264,269,276,284,286,291,316,323,332,333,335,340,341,345,346,354,356,358,361],utc:[135,362],utf8:[2,135],utf:[16,30,61,72,90,136,192,289,295,312,347,361],util:[6,8,13,14,15,23,26,27,28,34,37,46,48,50,58,62,69,71,72,86,89,90,91,94,96,100,102,119,124,130,131,134,138,147,153,154,157,170,182,187,189,190,192,199,202,203,206,210,211,226,228,231,237,246,254,256,261,264,266,268,276,277,291,310,315,332,333,334,335,363,368,381,384,388],utilis:345,uyi:220,v19:138,vagu:80,val1:267,val2:267,val:[13,59,156,168,267,308,361],valid:[0,3,6,10,13,14,20,22,27,34,37,42,59,62,84,87,90,92,97,103,106,116,130,131,144,147,151,153,154,156,163,165,171,179,180,181,188,194,195,203,207,210,211,215,219,221,230,231,232,237,244,245,249,250,251,252,259,264,266,267,268,269,274,275,276,277,278,279,282,284,308,312,323,334,336,339,341,345,355,356,357,358,360,361,362,367,381,386],valid_handl:355,validate_email_address:361,validate_input:231,validate_nam:264,validate_onli:259,validate_password:[27,156],validate_prototyp:268,validate_sess:325,validate_usernam:156,validationerror:[156,268,328,355,357],validator_config:156,validator_kei:355,validatorfunc:[153,154,337],valign:347,valu:[3,6,8,9,12,13,17,19,20,22,26,30,31,32,33,37,44,45,46,48,49,58,59,62,66,68,71,72,77,79,81,82,85,86,90,91,92,94,95,96,98,99,101,103,104,105,106,108,110,111,114,115,116,128,130,131,144,156,160,162,166,168,169,171,182,187,189,192,195,197,200,203,204,205,207,210,211,215,218,219,220,221,226,230,231,234,235,236,237,238,243,245,246,250,252,256,258,259,263,264,267,268,269,273,275,276,278,282,289,290,291,293,302,307,308,323,324,325,330,333,334,335,336,338,340,341,342,343,344,345,351,352,353,355,356,357,358,361,362,365,367,374,381,386],valuabl:109,value1:42,value2:42,value_displai:367,value_from_datadict:357,value_to_obj:268,value_to_obj_or_ani:268,value_to_str:357,valueerror:[42,86,97,116,192,195,217,219,333,338,341,353,361,362],valuei:72,values_list:101,valuex:72,vampir:101,vanilla:[0,45,58,67,71,88,90,104,110],vaniti:27,vari:[11,45,53,60,62,77,84,95,103,106,208,220,231,238,323,333,335],variabl:[4,6,7,13,14,20,22,27,31,39,42,46,54,59,61,64,66,70,71,74,76,77,82,86,88,90,92,97,98,101,104,105,106,107,117,127,130,131,146,147,156,160,162,166,168,171,176,179,180,181,182,192,198,202,203,207,209,210,213,218,231,250,258,263,264,268,269,281,284,294,297,298,300,304,306,316,323,330,338,339,345,361,374],variable_from_modul:361,variable_nam:[207,210],variablenam:361,varianc:220,variant:[13,43,76,106,165,195,201,228,295],variat:[91,101,112,113,114,115,164,202,220,245,361],varieti:[76,95,115,126,236,237],variou:[5,6,8,13,16,22,34,37,40,42,43,44,45,46,53,57,59,62,70,73,75,86,89,91,92,94,101,102,103,106,108,111,113,114,115,116,122,144,147,151,164,180,199,220,221,232,236,237,248,249,259,263,264,269,270,278,316,341,347,358,359],varnam:308,vast:[58,60,72,135],vastli:77,vcc:220,vccv:220,vccvccvc:220,vcpython27:67,vcv:220,vcvccv:220,vcvcvcc:220,vcvcvvccvcvv:220,vcvvccvvc:220,vector:361,vehicl:[80,388],velit:28,venu:[11,188],venv:[138,143],verb:[81,320],verbal:[212,264],verbatim:[99,106],verbatim_el:361,verbos:[0,8,74,115,221],verbose_nam:[130,335],veri:[0,3,5,6,8,9,11,12,13,14,15,17,19,20,22,25,26,27,28,29,30,31,39,41,42,43,44,45,46,48,53,58,59,60,62,63,65,66,67,68,70,71,72,73,74,76,77,78,79,80,82,83,85,86,88,89,90,93,96,97,99,101,103,104,106,107,108,109,110,111,112,113,114,115,116,119,127,129,131,132,133,134,135,140,142,144,151,156,158,164,166,182,187,189,195,197,209,210,219,220,221,227,228,229,232,237,245,248,251,252,255,263,288,334,336,341,343,345,361,386],verif:144,verifi:[2,11,27,104,138,144,171,192,203,237,309],verify_online_play:203,verify_or_create_ssl_key_and_cert:309,verify_ssl_key_and_cert:305,verifyfunc:203,versa:[40,53,59,115,176,293],version:[1,2,9,12,13,14,15,20,22,25,27,30,33,45,46,55,58,60,62,72,73,77,79,80,83,84,86,89,94,97,98,99,103,105,106,110,112,113,116,118,128,133,135,136,137,138,143,144,146,171,179,181,183,192,196,197,201,202,216,221,235,236,237,238,241,249,264,269,284,289,303,327,332,333,338,346,361,367,381,388],version_info:284,versionad:74,versionchang:74,versu:76,vertic:[46,249,347,361],very_strong:259,very_weak:31,vest:147,vet:42,veteran:133,vfill_char:347,via:[5,11,13,19,27,28,30,36,42,45,46,48,53,56,58,60,62,73,76,78,88,89,96,101,103,104,106,110,114,116,128,138,144,147,184,188,189,192,224,263,273,333,336,338,352],viabl:[112,248],vice:[40,53,59,115,176,293],vicin:[22,177,202,250],video:[46,62,103,133],vienv:67,view:[3,11,17,19,23,26,27,28,31,37,44,58,72,74,76,77,79,86,90,93,95,98,103,104,106,112,115,116,118,119,138,142,144,149,150,151,153,156,168,169,171,176,177,178,181,186,187,197,221,234,235,236,237,238,252,254,256,264,266,319,335,363,364,366,369,374,377,380,381,388],view_attr:171,view_lock:366,viewabl:[75,76,178],viewer:[74,81,92,221,252,258,264,335],viewport:3,viewset:[369,370],vim:[15,26,119,133,343],vincent:[86,195,202,216,219,251],violent:27,virtual:[76,79,86,89,133,138,144,181,202,348],virtual_env:143,virtualenv:[0,2,5,6,7,9,55,67,74,135,138,143,144,146,150,151],virtualhost:134,visibl:[2,11,14,20,40,45,62,74,81,92,94,110,111,113,116,137,138,144,150,177,221,258,264,296,329,345,361],visiblelock:258,vision:[13,90,110],visit:[68,71,72,130,131,144,251,345],visitor:[64,131,147],vista:138,visual:[5,46,62,81,89,138,156,178,205],vital:97,vlgeoff:199,vniftg:138,vnum:88,vocabulari:[70,361],voic:[22,69,70,388],volcano:108,volum:[72,80,110,146],volund:101,voluntari:73,volupt:28,vowel:220,vpad_char:347,vscode:119,vulner:[83,147],vvc:220,vvcc:220,vvccv:220,vvccvvcc:220,w001:8,wai:[3,5,6,7,8,9,11,12,13,14,15,16,19,20,22,29,30,31,32,33,34,36,37,39,40,41,42,43,44,45,48,49,51,53,56,58,59,61,62,63,65,66,67,68,70,71,72,73,74,76,77,78,80,82,84,85,86,87,88,89,90,91,92,93,95,96,97,98,99,100,101,102,103,104,107,108,109,110,112,113,114,115,116,118,124,125,127,128,129,130,133,135,137,138,142,143,144,145,147,150,151,156,163,164,171,178,187,194,199,200,202,203,205,209,212,213,220,227,228,231,232,234,235,236,237,238,241,248,249,251,259,264,276,278,284,289,293,304,325,329,330,331,334,336,339,344,345,347,351,354,357,369,386],wail:71,waist:197,wait:[3,19,22,27,37,48,66,81,82,83,99,109,111,112,127,158,209,213,231,234,235,236,237,238,276,284,294,313,315,327,341,361],wait_for_disconnect:294,wait_for_server_connect:294,wait_for_statu:284,wait_for_status_repli:284,waiter:284,wake:203,walias:171,walk:[15,20,66,70,71,80,85,91,96,110,112,113,228,229,232,252,339],walki:[77,112],wall:[72,98,106,109,113,169,177,202,249,250],wanna:[73,111,194],want:[0,3,4,5,6,7,8,9,11,12,13,14,15,16,19,20,22,23,25,26,27,29,30,31,32,33,34,37,39,40,41,42,44,45,46,48,49,51,53,54,55,56,58,59,60,61,62,64,65,66,67,68,70,71,72,73,74,77,78,79,80,81,82,83,84,85,86,87,89,90,91,92,94,95,96,97,98,99,101,102,103,104,105,106,107,108,110,111,113,114,116,117,118,119,120,121,122,123,125,127,128,129,130,131,132,134,135,136,137,138,141,142,143,144,145,147,149,150,151,156,164,165,166,168,177,182,186,194,195,201,202,203,205,212,219,221,224,231,232,234,235,236,237,238,245,250,252,254,258,259,264,269,276,278,300,302,308,315,325,330,332,333,335,343,346,351,357,361,369,381,386,387],wanted_id:31,ware:96,warehous:[224,339],wari:[62,252,264,335],warm:[37,151,288],warn:[5,9,19,20,39,40,65,72,77,97,103,106,131,134,135,138,144,164,186,192,225,283,284,309,354,387],warnmsg:354,warrior:[82,89,90,109,112,116],wasclean:[295,312],wasn:[3,66,131],wast:[15,44],watch:[7,15,32],water:[165,215,218],waterballon:218,wave:72,wcach:181,wcactu:237,wcommandnam:251,wcure:237,wdestin:171,weak:269,weakref:351,weaksharedmemorymodel:[291,351],weaksharedmemorymodelbas:[291,351],weakvalu:351,wealth:96,weapon:[27,42,58,77,83,95,96,98,100,101,105,109,110,111,114,115,235,248,249,269],weapon_ineffective_msg:248,weapon_prototyp:249,weaponrack_cmdset:249,weaponstr:105,weapoon:109,wear:[95,111,197,221,235],wearabl:197,wearer:197,wearstyl:197,weather:[37,43,44,65,72,84,93,103,109,110,114,250,388],weather_script:37,weatherroom:[129,250],web:[17,31,42,50,55,67,74,75,76,77,79,81,84,92,99,102,106,110,119,123,133,134,135,138,140,142,143,150,151,153,154,185,192,286,288,298,302,308,312,313,323,327,329,336,342,388],web_client_url:137,web_get_admin_url:[187,256,335],web_get_create_url:[187,256,335],web_get_delete_url:[187,256,335],web_get_detail_url:[187,256,335],web_get_puppet_url:335,web_get_update_url:[187,256,335],web_plugin:103,webclient:[24,40,53,56,59,62,64,75,77,84,92,103,106,136,137,147,151,153,154,181,192,279,289,292,308,313,324,363,374,375,384,388],webclient_ajax:[46,153,279,292],webclient_en:147,webclient_opt:289,webclientdata:313,webclienttest:384,webpag:[17,134,144,378],webport:2,webserv:[2,24,39,53,64,67,76,102,103,117,134,135,144,146,149,153,154,279,363,388],webserver_en:147,webserver_interfac:[140,144],webserver_port:144,webservic:147,websit:[17,46,67,75,76,77,89,92,93,103,117,118,130,133,140,144,145,147,153,154,157,313,329,363,375,388],websocket:[46,53,76,77,144,146,295,301,312,324],websocket_client_interfac:[140,144],websocket_client_port:144,websocket_client_url:[134,140,144],websocket_clos:312,websocketcli:312,websocketclientfactori:295,websocketclientprotocol:295,websocketserverfactori:301,websocketserverprotocol:312,weed:[0,164],week:[91,103,199,354,362],weeklylogfil:354,weigh:[95,315],weight:[60,74,110,135,205,220,334,388],weird:[98,112,113,361],welcom:[25,55,68,73,79,96,117,119,138,142],well:[0,7,8,9,11,12,13,17,22,26,27,28,29,30,34,39,40,42,45,49,50,51,53,54,59,60,61,64,67,68,70,71,73,74,76,77,79,80,81,85,86,87,89,90,91,92,94,96,97,101,104,105,106,107,108,109,111,112,113,115,116,118,125,126,130,131,135,141,143,145,147,150,160,164,165,166,171,176,181,184,194,197,202,209,217,220,221,231,232,236,237,238,244,248,264,273,279,284,293,295,296,302,319,327,332,333,334,338,342,345,348,357,361],went:[8,11,89,107,113,150,151,274,278],were:[3,8,13,14,20,22,27,37,39,42,45,46,48,58,60,73,74,77,87,90,92,95,96,97,101,103,104,105,106,107,112,116,128,136,146,156,163,164,165,219,232,264,268,331,335,339,358,361],weren:91,werewolf:81,werewolv:101,werkzeug:361,west:[71,72,81,87,99,171,215,250],west_east:72,west_exit:250,western:72,westward:250,wet:112,wether:[194,341],wevennia:68,wflame:237,wflushmem:181,wfull:237,what:[0,3,5,6,8,9,10,11,12,14,15,19,20,22,27,29,30,31,34,37,39,40,42,44,45,48,49,51,53,56,58,59,60,61,62,63,65,66,67,68,70,71,72,74,77,78,79,80,81,83,85,87,88,89,90,91,92,94,96,98,99,101,102,104,105,106,109,110,111,113,114,115,116,118,120,121,122,123,124,125,127,128,129,130,131,132,133,134,135,138,142,144,145,147,151,156,162,164,165,166,168,171,178,182,187,210,218,219,221,224,229,231,236,237,241,245,248,250,256,259,264,268,269,284,286,289,296,308,313,328,330,333,335,336,338,339,345,355,356,361,362,367,373,381,386,388],whatev:[8,11,12,13,15,19,22,27,34,37,53,68,70,72,77,80,88,90,95,97,106,107,110,111,116,130,131,132,135,146,150,156,158,165,171,203,237,243,248,249,264,269,273,274,295,304,307,312,325,333,346,355,386],wheel:[44,89,138,143,275],whelp:251,when:[0,1,2,3,5,6,7,8,9,11,12,13,14,15,16,17,19,20,22,23,25,26,27,28,29,30,31,32,33,34,37,39,40,41,42,43,45,46,48,49,51,53,54,55,56,58,59,60,61,62,63,66,67,68,70,71,72,73,74,77,79,80,83,84,85,86,87,88,89,90,91,92,95,96,97,98,99,101,102,103,104,105,106,107,108,109,110,111,112,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,132,133,134,135,136,138,139,143,144,145,146,147,150,151,153,156,158,160,162,164,165,166,168,170,171,176,177,179,180,181,183,187,188,189,192,193,194,195,196,197,199,200,201,202,203,204,205,210,211,212,213,214,215,216,217,218,219,220,221,227,229,231,232,234,235,236,237,238,240,241,244,245,246,248,249,250,251,252,255,256,258,259,263,264,266,268,269,273,274,276,277,278,281,284,286,290,291,293,294,295,296,297,298,299,300,302,304,305,306,307,308,309,312,313,315,316,322,323,324,325,326,327,333,335,336,338,339,341,342,343,344,345,346,347,351,352,353,354,356,361,381,386],when_stop:284,whenev:[7,9,13,22,30,31,32,33,37,41,42,48,54,55,61,68,70,72,77,81,104,113,124,144,145,146,156,165,186,187,248,249,250,264,274,276,286,303,323,324,325],where:[0,2,3,4,8,11,13,14,15,20,22,26,27,28,31,37,39,40,42,45,46,48,49,53,55,56,58,59,60,61,62,64,66,67,68,70,71,72,74,77,80,81,83,85,86,88,89,90,91,92,96,97,98,99,103,104,105,106,107,109,110,112,113,114,116,117,118,119,120,124,125,127,130,131,143,144,146,147,149,150,163,164,169,171,177,180,187,188,192,196,200,212,214,215,220,221,225,230,236,249,250,252,258,259,264,267,268,269,274,284,286,289,293,308,316,321,325,332,335,338,339,343,345,346,347,353,355,356,361,367,386],wherea:[0,3,5,6,9,13,14,20,22,23,31,40,42,45,49,51,53,58,61,62,76,80,88,94,96,106,115,147,220,241,245,278,313,333,351],whereabout:109,wherebi:237,wherev:[8,13,72,77,108,138,146,195,224,236],whether:[27,49,66,70,76,85,91,92,105,127,156,158,165,171,176,178,187,203,232,234,235,236,237,238,258,264,278,295,312,327,333,334,338,353,355,357,361],whewiu:67,which:[0,2,3,4,5,6,7,8,11,13,14,15,16,19,20,22,23,24,27,28,30,31,33,34,37,39,40,41,42,43,44,45,46,48,49,51,53,54,55,56,58,59,60,61,62,64,65,66,67,68,70,71,72,73,74,77,79,81,82,83,84,85,86,87,88,89,90,91,92,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,124,125,126,127,128,129,130,131,136,138,139,141,142,144,146,147,150,151,156,158,162,164,165,166,168,169,171,177,179,180,181,182,186,187,188,189,192,194,195,196,197,198,199,202,203,205,212,213,214,215,217,221,224,225,227,229,231,232,234,235,236,237,238,244,245,248,249,250,251,252,256,259,263,264,268,269,273,274,276,277,278,281,283,284,288,289,296,302,304,312,313,315,316,323,324,325,327,330,332,333,334,335,336,338,339,341,342,345,346,347,348,351,353,354,355,357,358,359,361,367,370,373,374,381,386],whichev:[19,110,144,147,250],whilst:[72,215],whimper:109,whisp:220,whisper:[70,98,177,212,213,220,221,264],white:[30,62,128,361],whitelist:30,whitenois:231,whitespac:[15,19,22,90,94,98,101,113,116,119,179,180,217,221,338,339,347,361],who:[13,23,27,31,33,42,45,48,49,62,70,71,76,79,80,86,88,90,101,105,106,107,109,110,111,113,114,115,116,127,129,130,147,158,166,168,171,176,186,187,194,203,210,221,234,235,236,237,238,249,256,258,259,264,269,335,343,366],whoever:130,whole:[33,43,50,63,71,72,76,79,89,98,110,112,113,116,171,181,238,347],wholist:187,whome:171,whomev:[62,114,127],whoopi:113,whose:[45,59,62,101,103,104,156,210,221,232,234,235,236,237,238,289,340,345,361],whould:345,why:[13,27,45,49,66,68,70,72,74,76,77,81,85,86,87,95,97,99,111,113,116,128,138,147,150,169,219,234,237,238,281,282,345],wide:[19,50,58,81,85,90,97,106,114,169,236,237,252,344,347,361],widen:[49,113],wider:[49,81,85,169,347],widest:361,widget:[157,254,261,332,357,367,381],width:[17,19,22,30,42,50,62,71,72,81,153,166,267,289,304,323,338,343,344,346,347,353,361],wield:[42,95,111,235],wifi:[144,147],wiki:[22,45,60,67,72,73,76,77,90,93,115,133,195,312,387,388],wiki_account_handl:79,wiki_account_signup_allow:79,wiki_can:79,wiki_can_admin:79,wiki_can_assign:79,wiki_can_assign_own:79,wiki_can_change_permiss:79,wiki_can_delet:79,wiki_can_moder:79,wiki_can_read:79,wiki_can_writ:79,wikiconfig:79,wikipedia:[8,11,16,61,76,77,115,312],wild:[11,60,101,110,128],wildcard:[33,49,89,169,171,361],wildcard_to_regexp:361,wilder:[153,154,190],wildernessexit:252,wildernessmap:252,wildernessmapprovid:252,wildernessroom:252,wildernessscript:252,wildli:220,will_suppress_ga:306,will_transform:101,will_ttyp:311,willing:[90,110,133],win10:138,win7:138,win8:138,win:[67,97,115,136],wind:[109,129],winder:112,window:[5,6,7,9,11,20,28,34,40,46,55,56,59,71,74,77,79,81,87,99,106,111,119,135,142,150,151,166,178,284,300,323,327,346,361],windowid:323,windows10:138,wine:[108,109],wingd:72,winpti:67,winter:202,wintertim:111,wintext:114,wip:74,wipe:[9,14,67,72,98,106,135,164,171,181,236],wire:[19,53,56,59,61,77,144,180,281,293,294,325,338],wis:90,wisdom:5,wise:[0,11,13,14,15,16,31,64,90,104,111,112,125],wiser:[99,113],wish:[2,11,22,85,118,126,143,195,238,338,360,381],with_tag:218,withdraw:[115,238],withdrawl:238,within:[0,6,11,13,20,22,27,44,46,48,62,67,68,71,73,74,77,85,88,90,101,103,106,108,113,115,118,124,125,126,128,131,134,136,144,146,156,160,162,171,194,202,205,207,225,255,264,269,327,333,334,338,353,354,361,381,386],without:[3,5,6,8,9,11,13,14,15,19,20,22,25,26,27,31,36,39,41,42,44,45,49,50,53,54,55,58,59,60,62,63,66,68,70,71,73,74,76,77,80,81,83,84,87,89,90,97,98,99,100,101,103,105,106,107,110,111,112,113,116,118,125,127,128,130,134,135,138,144,146,150,156,158,163,166,168,169,171,176,177,179,180,181,182,189,193,194,196,197,202,207,210,212,215,220,221,227,231,232,234,237,238,248,250,259,264,267,268,269,276,277,293,304,307,308,315,325,326,333,335,338,339,341,342,343,345,346,353,357,358],withstand:31,wiz:90,wizard:[42,112,269,282,284],wkei:171,wlocat:171,wlock:171,wmagic:237,wmass:237,wndb_:171,woah:[104,105],woman:[111,112],won:[3,8,12,13,14,16,20,45,46,48,49,56,58,62,66,68,70,72,74,79,80,83,86,89,92,94,96,97,98,101,105,106,110,112,114,116,131,132,135,138,146,165,203,219,240,241,244,245,329,338,353,357],wonder:[50,67,88,95],wont_suppress_ga:306,wont_ttyp:311,woo:98,wood:112,wooden:42,woosh:80,word:[5,6,11,15,19,22,26,34,55,59,70,71,72,78,91,92,97,98,104,106,111,118,119,128,142,163,179,180,183,201,213,220,221,296,343,358,361],word_fil:220,word_length_vari:220,wordi:220,work:[0,2,3,4,5,6,7,8,9,12,13,14,15,16,19,20,23,27,31,32,34,37,40,42,43,44,48,50,54,56,58,60,62,63,66,67,68,71,72,73,74,77,78,79,80,81,82,83,86,87,88,89,90,91,94,96,98,99,101,102,103,104,105,106,107,108,110,111,113,115,116,118,119,122,123,124,128,129,130,131,134,135,136,138,141,142,143,144,147,149,150,162,165,166,168,171,176,177,179,181,186,187,194,195,196,202,217,218,221,227,232,236,237,238,250,251,252,256,258,259,264,268,269,284,288,289,301,316,329,331,333,335,339,344,347,355,361,386],workaround:[11,138,146],workflow:157,world:[8,11,13,14,15,16,19,20,22,23,27,29,31,39,42,46,48,58,60,61,67,71,72,76,77,80,85,86,89,90,91,95,100,104,105,107,114,115,116,119,120,121,122,123,124,127,132,133,138,142,144,156,170,171,178,186,194,199,215,217,221,231,234,235,236,237,238,249,250,252,256,273,323,325,338,339,348],world_map:72,worm:[71,112],worm_has_map:71,worn:[197,235],worri:[2,8,13,16,27,39,61,62,66,76,85,86,101,109,113,116,194,245],wors:111,worst:110,worth:[5,27,45,66,80,83,97,111,112,130,133,134,194],worthi:110,worthless:144,would:[2,3,5,7,8,9,13,14,15,16,19,20,22,27,29,31,34,37,40,42,43,44,45,48,50,51,58,59,62,64,65,66,67,68,70,71,72,74,76,77,79,80,81,83,85,86,87,88,89,90,91,92,94,95,96,97,98,99,101,102,103,104,105,106,107,110,111,112,113,114,115,116,118,119,124,125,127,128,130,131,134,138,144,146,156,163,164,165,171,180,187,192,194,199,210,212,220,231,232,241,245,251,252,256,258,259,268,269,296,332,335,338,339,342,345,353,356,357,359],wouldn:[85,105,128],wound:237,wow:92,wpermiss:171,wprototype_desc:171,wprototype_kei:171,wprototype_lock:171,wprototype_par:171,wprototype_tag:171,wrap:[27,37,42,48,71,84,101,106,108,113,118,197,203,221,291,331,347,361],wrap_conflictual_object:357,wrapper:[5,19,27,30,40,45,48,58,83,156,160,187,188,189,227,231,256,263,264,273,277,289,291,323,332,333,335,336,338,347,351,352,354,361,386],wresid:181,write:[5,10,11,13,15,16,19,20,22,23,27,29,33,45,48,50,59,60,63,66,68,70,73,74,78,79,81,86,87,88,90,91,92,97,98,99,101,104,105,106,107,109,111,112,113,116,135,138,139,141,142,171,178,186,192,193,195,212,224,225,251,264,297,354,359,386,388],writeabl:143,written:[8,16,19,42,74,88,89,90,98,101,103,104,105,106,107,108,130,131,133,137,147,152,178,224,339,386],wrong:[0,3,8,86,94,96,106,111,138,151,164,171,181,221],wrote:[101,104],wserver:181,wservic:176,wsgi:[134,329],wsgi_resourc:329,wsgiwebserv:329,wsl:[74,138],wss:[134,140,144],wtypeclass:171,wwhere:[212,264],www:[9,60,67,68,74,76,77,85,130,133,134,144,153,299,300,306,308,360,381],wyou:95,x0c:171,x1b:[338,360],x2x:90,x4x:344,x5x:344,x6x:344,x7x:344,x8x:344,x9x:344,x_r:85,xcode:138,xforward:329,xgettext:55,xit:[68,195],xml:192,xmlcharrefreplac:338,xp_gain:114,xpo:347,xterm256:[30,46,56,76,94,106,168,198,205,289,304,307,338,388],xterm256_bg:338,xterm256_bg_sub:338,xterm256_fg:338,xterm256_fg_sub:338,xterm256_gbg:338,xterm256_gbg_sub:338,xterm256_gfg:338,xterm256_gfg_sub:338,xterm:[62,106,128],xterms256:62,xval:22,xxx:[3,81,219],xxxx:219,xxxxx1xxxxx:344,xxxxx3xxxxx:344,xxxxxxx2xxxxxxx:344,xxxxxxxxxx3xxxxxxxxxxx:90,xxxxxxxxxx4xxxxxxxxxxx:90,xxxxxxxxxxx:344,xxxxxxxxxxxxxx1xxxxxxxxxxxxxxx:90,xxxxxxxxxxxxxxxxxxxxxx:90,xxxxxxxxxxxxxxxxxxxxxxxxxxxxxx:90,xyz:33,y_r:85,yan:62,yank:26,year:[59,60,76,91,112,119,144,192,199,348,354,361,381],yearli:[91,144],yellow:[11,62,128,249],yer:111,yes:[22,27,48,70,85,128,171,213,282,343,361],yesno:[27,343],yet:[2,3,9,11,12,15,25,27,40,42,47,49,55,58,66,68,70,71,72,77,79,81,82,86,98,101,104,113,127,130,131,133,137,138,144,152,156,183,194,201,210,215,259,263,302,325,329,338,386],yield:[22,31,48,60,135,171,225,347,361],yml:[10,146],yogurt:218,you:[1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,19,20,22,23,25,26,27,29,30,31,32,33,34,36,37,39,40,41,42,43,44,45,46,48,49,50,51,53,54,55,56,58,59,60,61,62,63,64,65,66,67,68,70,71,72,73,74,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,106,107,108,110,111,113,114,115,116,117,118,120,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,141,142,143,144,145,146,147,149,150,151,156,165,166,168,171,176,177,178,179,180,181,182,183,186,192,194,195,196,197,198,199,202,203,205,208,209,210,212,213,214,215,216,217,218,219,220,221,224,225,227,228,229,231,232,234,235,236,237,238,240,241,244,245,249,250,251,252,254,258,259,264,269,275,276,278,286,295,296,297,313,315,325,327,329,330,333,335,338,339,341,344,345,347,348,357,358,361,365,367,369,370,381,386,387],your:[2,3,5,7,8,10,13,14,15,16,17,19,20,23,25,26,27,29,31,33,37,39,40,41,42,43,44,45,48,49,50,54,55,56,59,61,62,63,64,65,66,67,68,70,71,72,73,74,76,77,78,80,81,83,84,86,87,88,89,90,91,92,93,94,95,96,97,101,102,104,105,106,107,108,109,110,111,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,131,132,133,134,135,137,138,139,140,141,142,143,145,149,150,151,153,154,156,160,163,165,166,168,169,171,176,177,181,182,183,190,192,194,195,197,198,199,200,201,202,203,205,209,212,215,219,220,221,224,225,228,232,234,235,236,237,238,240,249,250,251,252,258,259,263,315,332,335,338,343,345,347,357,358,359,361,362,370,381,386,388],your_email:11,yourchar:106,yourgam:224,yourhost:140,yournam:[98,104,105,134],yourpassword:135,yourrepo:7,yourself:[0,3,10,11,12,15,20,27,31,34,37,45,50,51,58,60,64,66,68,72,73,76,90,92,97,105,106,108,111,112,113,114,116,132,135,138,144,171,177,194,204,221,227,231,237,240,345],yoursit:130,yourusernam:11,yourwebsit:130,yousuck:49,yousuckmor:49,youth:203,youtub:11,ypo:347,yrs:199,ythi:62,yum:[11,134,140],yvonn:90,z_r:85,zed:133,zero:[19,42,99,104,106,108,221,264,333,338],zip:[147,192],zlib:[143,293,297],zmud:[136,299],zone:[43,70,76,78,88,93,103,133,336,354,388],zope:6,zopeinterfac:138,zuggsoft:299},titles:["Coding Introduction","Coding and development help","Continuous Integration","Debugging","Things to remember about the flat API","Profiling","Quirks","Setting up PyCharm","Unit Testing","Updating Your Game","Using Travis","Version Control","Accounts","Attributes","Batch Code Processor","Batch Command Processor","Batch Processors","Bootstrap Components and Utilities","Channels","Coding Utils","Command Sets","Command System","Commands","Communications","Core Components","Connection Screen","EvEditor","EvMenu","EvMore","Help System","Inputfuncs","Locks","MonitorHandler","Nicks","Objects","Outputfuncs","Portal And Server","Scripts","Server component","Server Conf","Sessions","Signals","Spawner and Prototypes","Tags","TickerHandler","Typeclasses","Webclient","Webserver","Async Process","Banning","Bootstrap & Evennia","Building Permissions","Core Concepts","Custom Protocols","Guest Logins","Internationalization","Messagepath","Multisession modes","New Models","OOB","Soft Code","Text Encodings","TextTags","Using MUX as a Standard","Web Features","Zones","A voice operated elevator using events","Arxcode installing help","Building menus","Contributions","Dialogues in events","Dynamic In Game Map","Static In Game Map","Contributing","Contributing to Evennia Docs","API Summary","Evennia Introduction","Glossary","How To Get And Give Help","Add a wiki on your website","Building a mech tutorial","Coding FAQ","Command Cooldown","Command Duration","Command Prompt","Coordinates","Customize channels","Default Exit Errors","Evennia for Diku Users","Evennia for MUSH Users","Evennia for roleplaying sessions","Gametime Tutorial","Help System Tutorial","Tutorials and Howto\u2019s","Manually Configuring Color","Mass and weight for objects","NPC shop Tutorial","Parsing command arguments, theory and best practices","8. Our own commands","1. Using the game and building stuff","10. Creating things","12. Django Database queries","6. Overview of the Evennia library","4. Overview of your new Game Dir","7. Persistent objects and typeclasses","9. More about Commands","3. Starting to code Evennia","5. Python Classes and objects","11. Searching for things","2. The Tutorial World","On Planning a Game","Planning the use of some useful contribs","Planning our tutorial game","Making a sittable object","Implementing a game rule system","Turn based Combat System","Tutorial for basic MUSH like game","Add a simple new web page","Web Tutorial","Starting Tutorial (Part 1)","Evennia Starting Tutorial (Part 2)","Evennia Starting Tutorial (Part 3)","Evennia Starting Tutorial (Part 4)","Evennia Starting Tutorial (part 5)","Tutorial Aggressive NPCs","Tutorial NPCs listening","Tutorial Tweeting Game Stats","Tutorial Vehicles","Understanding Color Tags","Weather Tutorial","Web Character Generation","Web Character View Tutorial","Licensing","Links","Apache Config","Choosing An SQL Server","Client Support Grid","Evennia Game Index","Getting Started","Grapevine","HAProxy Config (Optional)","How to connect Evennia to Twitter","IRC","Installing on Android","Online Setup","RSS","Running Evennia in Docker","Security","The Evennia Default Settings file","Server Setup and Life","Setup quickstart","Start Stop Reload","Unimplemented","evennia","evennia","evennia.accounts","evennia.accounts.accounts","evennia.accounts.admin","evennia.accounts.bots","evennia.accounts.manager","evennia.accounts.models","evennia.commands","evennia.commands.cmdhandler","evennia.commands.cmdparser","evennia.commands.cmdset","evennia.commands.cmdsethandler","evennia.commands.command","evennia.commands.default","evennia.commands.default.account","evennia.commands.default.admin","evennia.commands.default.batchprocess","evennia.commands.default.building","evennia.commands.default.cmdset_account","evennia.commands.default.cmdset_character","evennia.commands.default.cmdset_session","evennia.commands.default.cmdset_unloggedin","evennia.commands.default.comms","evennia.commands.default.general","evennia.commands.default.help","evennia.commands.default.muxcommand","evennia.commands.default.syscommands","evennia.commands.default.system","evennia.commands.default.tests","evennia.commands.default.unloggedin","evennia.comms","evennia.comms.admin","evennia.comms.channelhandler","evennia.comms.comms","evennia.comms.managers","evennia.comms.models","evennia.contrib","evennia.contrib.awsstorage","evennia.contrib.awsstorage.aws_s3_cdn","evennia.contrib.awsstorage.tests","evennia.contrib.barter","evennia.contrib.building_menu","evennia.contrib.chargen","evennia.contrib.clothing","evennia.contrib.color_markups","evennia.contrib.custom_gametime","evennia.contrib.dice","evennia.contrib.email_login","evennia.contrib.extended_room","evennia.contrib.fieldfill","evennia.contrib.gendersub","evennia.contrib.health_bar","evennia.contrib.ingame_python","evennia.contrib.ingame_python.callbackhandler","evennia.contrib.ingame_python.commands","evennia.contrib.ingame_python.eventfuncs","evennia.contrib.ingame_python.scripts","evennia.contrib.ingame_python.tests","evennia.contrib.ingame_python.typeclasses","evennia.contrib.ingame_python.utils","evennia.contrib.mail","evennia.contrib.mapbuilder","evennia.contrib.menu_login","evennia.contrib.multidescer","evennia.contrib.puzzles","evennia.contrib.random_string_generator","evennia.contrib.rplanguage","evennia.contrib.rpsystem","evennia.contrib.security","evennia.contrib.security.auditing","evennia.contrib.security.auditing.outputs","evennia.contrib.security.auditing.server","evennia.contrib.security.auditing.tests","evennia.contrib.simpledoor","evennia.contrib.slow_exit","evennia.contrib.talking_npc","evennia.contrib.test_traits","evennia.contrib.traits","evennia.contrib.tree_select","evennia.contrib.turnbattle","evennia.contrib.turnbattle.tb_basic","evennia.contrib.turnbattle.tb_equip","evennia.contrib.turnbattle.tb_items","evennia.contrib.turnbattle.tb_magic","evennia.contrib.turnbattle.tb_range","evennia.contrib.tutorial_examples","evennia.contrib.tutorial_examples.bodyfunctions","evennia.contrib.tutorial_examples.cmdset_red_button","evennia.contrib.tutorial_examples.example_batch_code","evennia.contrib.tutorial_examples.mirror","evennia.contrib.tutorial_examples.red_button","evennia.contrib.tutorial_examples.red_button_scripts","evennia.contrib.tutorial_examples.tests","evennia.contrib.tutorial_world","evennia.contrib.tutorial_world.mob","evennia.contrib.tutorial_world.objects","evennia.contrib.tutorial_world.rooms","evennia.contrib.unixcommand","evennia.contrib.wilderness","evennia.help","evennia.help.admin","evennia.help.manager","evennia.help.models","evennia.locks","evennia.locks.lockfuncs","evennia.locks.lockhandler","evennia.objects","evennia.objects.admin","evennia.objects.manager","evennia.objects.models","evennia.objects.objects","evennia.prototypes","evennia.prototypes.menus","evennia.prototypes.protfuncs","evennia.prototypes.prototypes","evennia.prototypes.spawner","evennia.scripts","evennia.scripts.admin","evennia.scripts.manager","evennia.scripts.models","evennia.scripts.monitorhandler","evennia.scripts.scripthandler","evennia.scripts.scripts","evennia.scripts.taskhandler","evennia.scripts.tickerhandler","evennia.server","evennia.server.admin","evennia.server.amp_client","evennia.server.connection_wizard","evennia.server.deprecations","evennia.server.evennia_launcher","evennia.server.game_index_client","evennia.server.game_index_client.client","evennia.server.game_index_client.service","evennia.server.initial_setup","evennia.server.inputfuncs","evennia.server.manager","evennia.server.models","evennia.server.portal","evennia.server.portal.amp","evennia.server.portal.amp_server","evennia.server.portal.grapevine","evennia.server.portal.irc","evennia.server.portal.mccp","evennia.server.portal.mssp","evennia.server.portal.mxp","evennia.server.portal.naws","evennia.server.portal.portal","evennia.server.portal.portalsessionhandler","evennia.server.portal.rss","evennia.server.portal.ssh","evennia.server.portal.ssl","evennia.server.portal.suppress_ga","evennia.server.portal.telnet","evennia.server.portal.telnet_oob","evennia.server.portal.telnet_ssl","evennia.server.portal.tests","evennia.server.portal.ttype","evennia.server.portal.webclient","evennia.server.portal.webclient_ajax","evennia.server.profiling","evennia.server.profiling.dummyrunner","evennia.server.profiling.dummyrunner_settings","evennia.server.profiling.memplot","evennia.server.profiling.settings_mixin","evennia.server.profiling.test_queries","evennia.server.profiling.tests","evennia.server.profiling.timetrace","evennia.server.server","evennia.server.serversession","evennia.server.session","evennia.server.sessionhandler","evennia.server.signals","evennia.server.throttle","evennia.server.validators","evennia.server.webserver","evennia.settings_default","evennia.typeclasses","evennia.typeclasses.admin","evennia.typeclasses.attributes","evennia.typeclasses.managers","evennia.typeclasses.models","evennia.typeclasses.tags","evennia.utils","evennia.utils.ansi","evennia.utils.batchprocessors","evennia.utils.containers","evennia.utils.create","evennia.utils.dbserialize","evennia.utils.eveditor","evennia.utils.evform","evennia.utils.evmenu","evennia.utils.evmore","evennia.utils.evtable","evennia.utils.gametime","evennia.utils.idmapper","evennia.utils.idmapper.manager","evennia.utils.idmapper.models","evennia.utils.idmapper.tests","evennia.utils.inlinefuncs","evennia.utils.logger","evennia.utils.optionclasses","evennia.utils.optionhandler","evennia.utils.picklefield","evennia.utils.search","evennia.utils.test_resources","evennia.utils.text2html","evennia.utils.utils","evennia.utils.validatorfuncs","evennia.web","evennia.web.api","evennia.web.api.filters","evennia.web.api.permissions","evennia.web.api.serializers","evennia.web.api.tests","evennia.web.api.urls","evennia.web.api.views","evennia.web.urls","evennia.web.utils","evennia.web.utils.backends","evennia.web.utils.general_context","evennia.web.utils.middleware","evennia.web.utils.tests","evennia.web.webclient","evennia.web.webclient.urls","evennia.web.webclient.views","evennia.web.website","evennia.web.website.forms","evennia.web.website.templatetags","evennia.web.website.templatetags.addclass","evennia.web.website.tests","evennia.web.website.urls","evennia.web.website.views","Evennia Documentation","Toc"],titleterms:{"break":101,"case":[66,112],"class":[8,19,22,45,68,86,103,104,107,112],"default":[30,31,46,76,81,84,87,104,105,148,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183],"final":[71,143],"function":[3,31,34,37,62,68,75,106,108],"goto":27,"import":[0,4,74,86,102,106,107],"new":[6,8,37,45,58,62,79,90,92,103,104,112,117,130,150],"public":[137,149],"return":[27,40,101,106],"static":[72,231],"super":[51,105],"switch":86,"try":86,Adding:[20,30,43,53,58,66,67,79,81,85,86,87,99,105,127,130,231],And:[36,78],Are:112,Going:149,PMs:90,TLS:134,The:[0,5,13,14,15,26,27,42,48,50,51,56,64,68,69,70,71,83,86,90,92,93,96,109,110,115,116,117,148,150],Use:[0,147],Using:[5,8,10,28,32,42,43,58,63,65,71,93,99,144,231],Will:112,Yes:27,__init__:[102,104],_famili:101,_should:112,abl:112,abort:83,about:[4,9,44,45,83,105,107,112],absolut:102,abus:49,access:52,access_typ:31,account:[6,12,77,90,100,112,155,156,157,158,159,160,168],across:113,action:112,activ:[89,112,130],actual:[22,45],add:[79,81,117,135],add_choic:68,addclass:383,adding:8,addit:[67,85,86,87,146],address:81,admin:[6,64,77,157,169,185,254,261,271,280,332],administr:[110,112],advanc:[1,33,75,83,105,151],affect:258,aggress:124,alia:6,alias:[43,108],all:[81,92,104,112],allow:112,alpha:110,also:112,altern:[7,67],amount:112,amp:293,amp_client:281,amp_serv:294,analyz:5,android:143,ani:[14,76],annot:101,anoth:[74,86,105],ansi:[19,62,128,338],apach:134,api:[4,46,74,75,102,364,365,366,367,368,369,370],app:[92,130],appear:112,arbitrari:27,area:[72,116],arg:97,arg_regex:22,argument:[27,97,104,106],arm:80,around:99,arx:67,arxcod:67,ascii:19,ask:[22,27],assign:[22,51],assort:[15,20,22,27,43,48,53,125],async:48,asynchron:48,at_object_cr:104,attach:[7,41],attack:[112,116],attribut:[6,13,77,104,108,333],attributehandl:13,audit:[223,224,225,226],auto:29,automat:81,avail:[25,41],awai:1,aws_s3_cdn:192,awsstorag:[191,192,193],backend:373,ban:49,bank:112,barter:[111,112,194],base:[42,81,112,115],basic:[8,14,15,76,79,116,118,141],batch:[14,15,16,339],batchcod:14,batchprocess:170,batchprocessor:339,befor:0,best:97,beta:110,between:[14,27,45],block:[14,74,83],blockquot:74,board:112,bodyfunct:240,bold:74,boot:49,bootstrap:[17,50],border:17,bot:158,branch:[11,27],brief:[76,92],briefli:59,broken:112,bug:[6,74],build:[51,68,71,72,74,80,90,96,99,110,112,171],builder:[69,112],building_menu:[68,195],built:112,bulletin:112,busi:96,button:[17,99],calendar:91,call:[22,104],callback:[46,66,70],callbackhandl:207,caller:27,can:[13,68,76,107,108,112,140],cannot:112,capabl:112,capcha:130,card:17,care:147,carri:112,caveat:[14,15,45,62,143],certain:101,chair:[112,113],chang:[6,9,11,55,60,66,74,81,90,104,112,118,147],channel:[18,23,77,81,86,90,112],channelhandl:186,charact:[34,70,77,81,90,95,104,110,111,112,113,114,116,130,131,136],chargen:[116,196],cheat:3,check:[13,31],checker:0,checkpoint:130,children:107,choic:68,choos:135,clean:67,clickabl:62,client:[46,56,59,64,119,136,144,286],client_opt:30,clone:[11,67],cloth:[111,197],cloud9:144,cmdhandler:162,cmdparser:163,cmdset:[98,105,164],cmdset_account:172,cmdset_charact:173,cmdset_red_button:241,cmdset_sess:174,cmdset_unloggedin:175,cmdsethandl:165,code:[0,1,3,9,11,14,19,26,33,60,68,74,81,86,96,98,106,110,112,114,134,339],coin:112,collabor:89,color:[17,19,81,94,128],color_markup:198,colour:62,combat:[115,116],comfort:146,comm:[176,184,185,186,187,188,189],command:[3,6,8,15,20,21,22,24,25,29,59,68,75,81,82,83,84,86,87,90,91,94,96,97,98,103,104,105,106,113,115,116,119,127,141,146,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,208,339],comment:[71,87,107],commit:11,commun:[14,23],complet:31,complex:[68,101],compon:[17,24,38],comput:144,concept:[1,52,71,112,115],conclud:[85,116],conclus:[68,72,86,97,101,104,106,111,112,113],condit:81,conf:[39,103],config:[75,94,134,140],configur:[7,11,94,130,134,135,139,141,142,145,149],congratul:110,connect:[6,25,137,141,144],connection_wizard:282,contain:[146,340],content:[76,81],continu:[2,113],contrib:[8,68,73,111,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252],contribut:[69,73,74,75],control:11,convert:97,cooldown:82,coordin:85,copi:134,core:[24,52,75,77,88],counter:231,cprofil:5,craft:112,creat:[2,6,12,19,22,34,45,49,58,66,72,75,80,92,93,98,99,100,104,106,112,116,117,127,130,146,341],create_object:104,createnpc:116,creatur:146,credit:[104,109],crop:19,current:[3,91],custom:[8,27,31,40,46,48,53,61,64,68,79,86,89,91,94,98,149],custom_gametim:199,dai:112,data:[7,13,27,40,53],databas:[6,9,24,29,42,58,67,75,101,104],dbref:108,dbserial:342,deal:37,death:112,debug:[3,14,147],debugg:7,decid:112,decor:[27,48],dedent:19,dedic:130,deep:93,defaultobject:6,defeat:112,defin:[11,20,22,23,27,31,37,58],definit:31,delai:[19,48,83],delimit:81,demo:110,depend:[9,67],deploi:146,deprec:[74,283],desc:27,descer:89,descript:[112,146],design:96,detail:[92,130],detect:112,develop:[1,8,89,133,146,147,151],dialogu:70,dice:[90,111,200],dictionari:27,differ:[45,88,112],diku:88,dir:[103,119,149],direct:7,directori:[39,144],disabl:147,discuss:133,displai:[19,71,91,136],dive:93,django:[31,64,77,101,130,151],doc:[0,74],docker:146,docstr:107,document:[63,73,74,387],doe:112,don:[14,76,113,146],donat:73,done:109,down:[99,127,151],dummyrunn:[5,315],dummyrunner_set:316,durat:83,dure:151,dynam:[22,27,71],each:[108,112],echo:30,economi:112,edit:[26,68,74,116],editnpc:116,editor:[26,119],effect:258,elev:66,els:112,email_login:201,emul:88,encod:[16,61],encrypt:144,end:86,enemi:112,enforc:112,enjoi:134,enough:[109,112],enter:127,entir:66,entit:24,entiti:112,entri:[29,99],error:[37,87,98,106,151],eveditor:[26,343],evennia:[0,3,4,7,8,9,11,42,46,50,55,65,67,74,76,79,81,86,88,89,90,97,102,106,112,120,121,122,123,128,133,134,135,137,140,141,143,144,146,148,151,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,256,257,258,259,260,261,262,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,303,304,305,306,307,308,309,310,311,312,313,314,315,316,317,318,319,320,321,322,323,324,325,326,327,328,329,330,331,332,333,334,335,336,337,338,339,340,341,342,343,344,345,346,347,348,349,350,351,352,353,354,355,356,357,358,359,360,361,362,363,364,365,366,367,368,369,370,371,372,373,374,375,376,377,378,379,380,381,382,383,384,385,386,387],evennia_launch:284,evenniatest:8,event:[66,70,91],eventfunc:209,everi:84,everyth:68,evform:[90,344],evmenu:[27,81,345],evmor:[28,346],evtabl:[81,90,347],examin:[3,104],exampl:[3,8,26,27,31,37,46,60,70,85,102,114,115,144,339],example_batch_cod:242,except:113,execut:3,exist:[45,112],exit:[22,34,66,81,87],expand:[115,127,231],experi:112,explan:68,explor:[0,102],extend:[52,111],extended_room:202,extern:147,extra:[104,109],fail:112,familiar:[88,89],faq:[81,93],faster:8,featur:[52,64,74,76,92],feel:88,field:[77,101],fieldfil:203,fight:112,figur:98,file:[8,11,14,15,16,39,74,148,339],fill:19,filter:365,find:[1,85,106,108],firewal:147,first:[66,68,70,89,104,106],fix:11,flat:4,flexibl:74,flow:112,flower:112,folder:[0,11,67,153,161,190,222,279,337,363,380],foreground:151,forget:6,fork:[11,73],form:[17,112,130,381],formal:112,format:27,forum:133,framework:133,from:[4,27,46,76,79,81,99,106,130,144,146],front:118,full:[68,86,92],func:86,further:[48,118,134],futur:80,gain:112,game:[0,8,9,11,19,69,71,72,76,85,89,90,91,99,103,110,112,114,116,119,126,137,144,146,149,150],game_index_cli:[285,286,287],gamedir:74,gameplai:109,gametim:[91,348],gaug:231,gendersub:204,gener:[17,52,68,86,111,112,116,130,133,177],general_context:374,get:[27,78,93,99,101,138],get_client_opt:30,get_input:27,get_inputfunc:30,get_valu:30,git:[11,77],github:[74,77],give:[78,112],given:43,global:[37,75,97,112],glossari:77,gmcp:59,godhood:99,goldenlayout:46,good:107,googl:130,grant:90,grapevin:[139,295],graphic:106,grid:[71,136],group:101,guest:54,guid:67,had:109,handl:[49,92,112,147,151],handler:[41,75,115],haproxi:140,have:[93,107,112,116,119],head:74,health_bar:205,hello:106,help:[0,1,29,67,73,78,92,99,178,253,254,255,256],here:[0,76],hidden:112,hide:112,hierarchi:[90,112],hint:[109,134],hit:98,hold:105,hook:45,host:144,hous:99,how:[12,22,34,45,61,78,90,93,112,127,141,146],howto:93,html:[117,130],http:[134,140],human:112,idmapp:[349,350,351,352],imag:[146,147],implement:[112,114],improv:[92,112],index:[92,130,137],infinit:112,influenc:112,info:[133,151],inform:144,infrastructur:114,ingame_python:[206,207,208,209,210,211,212,213],ingo:56,inherit:[65,107],inherits_from:19,initi:[81,115,135,150],initial_setup:288,inlin:62,inlinefunc:[62,353],input:[22,27,59,106],inputfunc:[30,56,59,289],instal:[11,67,79,130,134,135,138,141,143,144,146,149,150],instanc:[22,45,58,107],instruct:59,integr:2,interact:[0,14,15,48,106],interfac:147,internation:55,interpret:7,introduct:[0,5,27,67,71,72,76,130],inventori:95,ipython:106,irc:[142,296],issu:136,ital:74,item:110,itself:113,join:86,jumbotron:17,just:[76,112],kei:[27,42,68,108],keyword:[70,104],kill:[112,151],kind:112,know:[76,147],known:[6,112],languag:55,larg:112,last:81,latest:[9,146],latin:81,launch:[26,27],layout:[50,86],learn:[0,76],leav:[86,127],legend:136,lesson:[119,120],let:[3,14,92,144],librari:102,licens:132,life:149,lift:49,like:[14,88,112,116],limit:[14,15,112],line:[3,26,80,101,106,113,119],link:[62,74,133],linux:[2,138,151],list:[3,74,104,105,112],list_nod:27,listen:125,literatur:133,live:151,local:[74,97,144],locat:108,lock:[13,31,105,127,257,258,259],lockdown:144,lockfunc:[113,258],lockhandl:259,log:[19,67,92,103,106,147,150],logfil:7,logger:354,login:[30,54],logo:118,longer:70,look:[88,99,112,116],lookup:[75,101],loop:104,loot:112,mac:[138,151],machin:144,magic:6,mai:112,mail:[11,214],main:[74,75,108,387],make:[8,11,19,80,89,90,98,99,104,106,112,113,116,127],manag:[46,79,159,188,255,262,272,290,334,350],manual:[94,112,137],map:[69,71,72],mapbuild:215,mapper:71,mariadb:135,mass:95,master:[11,90,112],match:[6,105],matter:112,mccp:297,mean:112,mech:80,mechan:112,memplot:317,menu:[19,27,68,69,96,266],menu_login:216,merg:20,messag:[56,59,66,81],messagepath:56,method:[6,22,86,94,104,106],middlewar:375,migrat:[9,77,79],mind:11,mini:8,minimap:72,mirror:243,mob:[93,112,248],mod_proxi:134,mod_ssl:134,mod_wsgi:134,mode:[14,15,40,57,77,144,151],model:[8,58,75,130,160,189,256,263,273,291,335,351],modif:90,modifi:[84,104,134],modul:[42,106,114,115,141,153,155,161,167,184,190,191,206,223,233,239,247,253,257,260,265,270,279,285,292,314,331,337,349,363,364,372,377,380,382],monitor:30,monitorhandl:[32,274],more:[9,31,50,64,74,75,83,89,94,105,112],most:0,move:[81,113,127],msdp:59,msg:[23,56,94],mssp:298,mud:[119,133],multi:[89,105,106,107,112],multidesc:[89,217],multipl:[13,112,113],multisess:[40,57,77],mush:[89,116],must:112,mutabl:[6,13],mux:[63,258],muxcommand:179,mxp:299,mysql:135,name:[6,49,59,104,112,258],naw:300,ndb:13,need:[66,76,105,112,119],nest:68,network:24,next:[89,138,141,150],nice:140,nick:33,night:112,node:27,non:[13,81,82,137],nop:136,note:[8,15,16,20,22,27,33,43,48,53,74,125,134],npc:[93,96,111,112,116,124,125],number:97,numer:112,object:[6,13,19,31,34,40,43,72,77,81,95,99,100,101,104,105,106,107,108,110,112,113,127,249,260,261,262,263,264],obtain:130,off:[81,112],offici:133,olc:42,older:46,onc:109,one:[85,112],onli:[74,101,112,151],onlin:[11,74,144],oob:59,oop:107,open:96,oper:[48,66],option:[27,68,90,97,140,144,147,151],optionclass:355,optionhandl:356,other:[22,39,106,108,112,133,135,144],our:[60,66,68,92,98,104,106,110,112,127,130],ourselv:104,out:[53,90,98,112],outgo:56,output:224,outputcommand:59,outputfunc:[35,59],outsid:144,overal:114,overload:[45,64,94],overrid:6,overview:[2,58,102,103,115,118],own:[12,22,30,34,46,53,98,106,112,144,146,231],packag:[153,161,190,222,279,337,363,380],page:[64,79,92,117,118],parent:[58,89],pars:[81,86,97,105,106],part3:93,part:[93,119,120,121,122,123],parti:133,pass:106,patch:73,path:[14,56,103],paus:[22,66,83],pax:67,pdb:3,penalti:112,percentag:231,perman:112,permiss:[31,43,51,90,366],perpetu:110,persist:[13,26,82,83,98,104],person:[99,112],physic:112,picklefield:357,pictur:130,pip:[77,79],plai:[112,140],plan:[0,72,110,111,112],player:[89,112],plugin:46,point:0,polici:63,port:[144,147],portal:[36,40,56,292,293,294,295,296,297,298,299,300,301,302,303,304,305,306,307,308,309,310,311,312,313],portalsess:56,portalsessionhandl:[56,302],post:112,postgresql:135,practic:97,prepar:2,prerequisit:143,prevent:81,prison:112,privileg:[79,112],problem:60,process:[48,52,151],processor:[14,15,16,339],product:[80,146],profil:[5,314,315,316,317,318,319,320,321],program:[3,76],project:[2,7],prompt:[27,84],prop:112,properti:[12,13,20,22,23,27,34,37,40,43,45,77,101],protfunc:[42,267],protocol:[53,59,76],prototyp:[42,265,266,267,268,269],proxi:[134,144],publicli:11,pudb:3,puppet:77,push:[11,99],put:[11,92],puzzl:218,pvp:112,pycharm:7,python:[0,14,69,76,89,103,106,107,133,141],quell:[31,51,105],queri:[45,101,104],queryset:[101,108],quest:112,quick:[2,112,138],quickli:140,quickstart:150,quiet:97,quirk:6,race:112,rais:113,random_string_gener:219,rate:231,read:[0,48,64,118],real:14,reboot:151,recapcha:130,receiv:[53,59],red_button:244,red_button_script:245,refer:[74,81],regist:144,regular:112,rel:[102,108],relat:[91,93],releas:[74,110],relev:144,reli:14,reload:[6,81,107,134,151],remark:116,rememb:[4,74,107],remind:92,remot:[11,144],remov:[43,81,105],repair:112,repeat:[27,30],replac:105,repo:67,report:74,repositori:[0,11,73,74,77],reput:112,request:74,requir:138,reset:[9,151],reshuffl:99,resourc:133,respawn:112,rest:[74,113],restart:[134,150],retriev:13,role:[90,112],roleplai:[90,112],roller:90,rom:88,room:[34,66,71,81,85,90,95,110,111,112,250],rpg:112,rplanguag:220,rpsystem:221,rss:[145,303],rule:[20,112,114,115],run:[3,7,8,22,76,79,143,146,149],runner:8,safeti:14,same:[27,70],save:13,schema:9,score:116,screen:25,script:[37,77,127,210,270,271,272,273,274,275,276,277,278],scripthandl:275,search:[19,20,43,58,75,85,97,108,358],season:112,secret:130,section:387,secur:[134,140,147,222,223,224,225,226],see:[6,92,150],select:81,self:97,send:[53,59,84,106],sent:84,separ:[68,112,113],serial:367,server:[24,36,38,39,40,52,55,103,116,134,135,144,149,150,225,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,303,304,305,306,307,308,309,310,311,312,313,314,315,316,317,318,319,320,321,322,323,324,325,326,327,328,329],serverconf:39,serversess:[56,323],serversessionhandl:56,servic:287,session:[40,56,77,81,90,324],sessionhandl:[40,325],set:[1,7,8,11,20,27,31,39,67,71,79,91,94,104,112,116,119,137,139,142,144,145,147,148],setpow:116,settings_default:330,settings_mixin:318,setup:[2,67,134,135,144,149,150],sever:[70,85,97],share:11,sharedmemorymodel:58,sheet:[3,90],shop:96,shortcut:[13,75],should:112,show:[93,116],shut:151,sidebar:74,signal:[41,326],similar:112,simpl:[3,5,8,27,31,68,83,112,117],simpledoor:227,singl:13,singleton:75,site:[64,77],sitekei:130,sittabl:113,skill:112,slow_exit:228,soft:60,softcod:[60,89],solut:60,solv:112,some:[85,86,88,106,111,112],someth:112,somewher:76,sort:112,sourc:[7,74],space:[17,104],spawn:[42,89],spawner:[42,269],special:[74,112],splithandl:46,spread:73,spuriou:136,sql:[101,135],sqlite3:135,ssh:[59,147,304],ssl:[144,305],stack:112,staff:112,standard:[63,76,91],start:[0,67,90,93,96,106,119,120,121,122,123,138,146,150,151],stat:126,statement:98,statu:[112,151],status:112,step:[3,11,67,89,99,110,130,139,141,142,143,145,150],stop:[150,151],storag:27,store:[13,27,42,81,112],string:[31,97],strip:97,structur:74,studi:66,stuff:[76,99,116],style:17,sub:68,subclass:34,succe:112,suit:8,summari:[49,75,76,98,105,107,108],superus:31,support:[59,76,136],suppress_ga:306,surround:3,swap:45,sword:105,synchron:48,syntax:[0,74,89,151,339],syscommand:180,system:[21,22,29,31,50,92,93,110,111,112,114,115,116,181],tabl:[19,58,74,81],tag:[43,85,108,128,336],talk:111,talking_npc:229,taskhandl:277,tb_basic:234,tb_equip:235,tb_item:236,tb_magic:237,tb_rang:238,teamciti:2,tech:110,technic:[74,76],telnet:[59,136,144,307],telnet_oob:308,telnet_ssl:309,templat:[2,92,130],templatetag:[382,383],tempmsg:23,temporari:27,term:107,termux:143,test:[5,8,76,106,116,182,193,211,226,246,310,320,352,368,376,384],test_queri:319,test_resourc:359,test_trait:230,text2html:360,text:[19,27,30,52,61,62,74,106,118],texttag:62,than:112,thei:112,them:112,theori:97,thi:[86,92],thing:[4,74,88,89,100,104,107,108,112,119],third:133,those:112,throttl:327,through:[3,73,146],ticker:[44,77],tickerhandl:[44,278],tie:90,time:[19,22,37,60,91,112],time_format:19,timer:5,timetrac:321,tip:11,to_byt:19,to_str:19,toc:388,togeth:[92,140],tool:[19,24,49,133],traceback:0,track:[11,112],train:127,trait:[111,231],translat:55,travi:10,treat:14,tree:112,tree_select:232,trick:11,troubleshoot:[138,143],ttype:311,tupl:[104,105],turn:[6,81,115],turnbattl:[111,233,234,235,236,237,238],tutori:[0,8,66,69,70,80,91,92,93,96,109,110,112,115,116,118,119,120,121,122,123,124,125,126,127,129,131],tutorial_exampl:[239,240,241,242,243,244,245,246],tutorial_world:[247,248,249,250],tweet:[126,141],twist:77,twitter:141,type:[12,13,34,231],typeclass:[6,45,65,75,77,89,94,98,103,104,108,113,212,231,331,332,333,334,335,336],under:11,understand:128,ungm:90,unimpl:152,uninstal:109,unit:8,unixcommand:251,unloggedin:183,unmonitor:30,unquel:105,unrepeat:30,updat:[9,11,45,81,104],upgrad:9,upload:147,upstream:[6,11],url:[79,92,117,130,369,371,378,385],usag:[14,15,26],use:[6,44,76,111,112],used:[22,81],useful:[22,111,133],user:[11,22,51,88,89,92,147],using:[3,8,66,104,108],util:[7,17,19,22,24,75,83,133,213,337,338,339,340,341,342,343,344,345,346,347,348,349,350,351,352,353,354,355,356,357,358,359,360,361,362,372,373,374,375,376],valid:[31,328],validatorfunc:362,valu:[27,42,112],vanilla:112,variabl:3,variant:113,vehicl:[93,127],verbatim:74,version:[11,74],versu:48,vhost:134,via:112,view:[29,64,92,117,130,131,370,379,386],virtualenv:77,voic:66,volum:112,wai:[1,27,83,105,106],want:[76,93,112,146],warn:74,weapon:112,weather:[112,129],web:[6,46,52,59,64,93,103,117,118,130,131,144,147,363,364,365,366,367,368,369,370,371,372,373,374,375,376,377,378,379,380,381,382,383,384,385,386],webclient:[46,312,377,378,379],webclient_ajax:313,webclient_gui:46,webserv:[47,147,329],websit:[64,79,380,381,382,383,384,385,386],websocket:[134,140],weight:[95,112],werewolf:101,what:[2,13,50,76,86,93,97,107,108,112,119,146],when:[4,44,81,113],where:[76,102,138],who:[22,98],wiki:79,wilder:252,willing:76,window:[67,138],wizard:137,word:73,work:[11,22,45,76,92,97,112,127,146],workaround:136,workflow:1,world:[69,93,99,103,106,109,110,112],write:[8,46,53],xterm256:[62,128],yield:[27,83],you:[0,76,105,109,112,119],your:[0,1,6,9,11,12,22,30,34,46,51,53,58,60,79,85,98,99,103,112,130,144,146,147,231],yourself:[99,110],zone:65}}) \ No newline at end of file diff --git a/docs/1.0-dev/toc.html b/docs/1.0-dev/toc.html index 3592c9ec7f..5ba63db1ef 100644 --- a/docs/1.0-dev/toc.html +++ b/docs/1.0-dev/toc.html @@ -128,7 +128,6 @@
        • ./Contributing
        • Contributing to Evennia Docs
        • Editing syntax
        • -
        • Technical
        • ./Evennia API
        • ./Evennia Introduction
        • ./Glossary
        • @@ -155,7 +154,9 @@
        • Howto/NPC shop Tutorial
        • Howto/Parsing commands tutorial
        • Howto/Starting/Part2/Game Planning
        • -
        • Howto/Starting/Part2/Some Useful Contribs
        • +
        • Howto/Starting/Part2/Planning Some Useful Contribs
        • +
        • Howto/Starting/Part2/Planning The Tutorial Game
        • +
        • Howto/Starting/Part3/A Sittable Object
        • Howto/Starting/Part3/Implementing a game rule system
        • Howto/Starting/Part3/Turn based Combat System
        • Howto/Starting/Part3/Tutorial for basic MUSH like game