diff --git a/docs/0.9.5/.buildinfo b/docs/0.9.5/.buildinfo index 076dc7e491..67b456126d 100644 --- a/docs/0.9.5/.buildinfo +++ b/docs/0.9.5/.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: f140591530688b855b515eab6acd0f93 +config: 99fc3d6e288394d1a2eefa2a31d00bca tags: 645f666f9bcd5a90fca523b33c5a78b7 diff --git a/docs/0.9.5/A-voice-operated-elevator-using-events.html b/docs/0.9.5/A-voice-operated-elevator-using-events.html index f7a3f0d952..09b243daee 100644 --- a/docs/0.9.5/A-voice-operated-elevator-using-events.html +++ b/docs/0.9.5/A-voice-operated-elevator-using-events.html @@ -566,11 +566,11 @@ shown in the next tutorial.
Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
("
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
mygame/typeclass
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
e
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
"""
-This module handles initial database propagation, which is only run the first
-time the game starts. It will create some default channels, objects, and
-other things.
+This module handles initial database propagation, which is only run the first time the game starts.
+It will create some default objects (notably give #1 its evennia-specific properties, and create the
+Limbo room). It will also hooks, and then perform an initial restart.
Everything starts at handle_setup()
"""
@@ -82,16 +82,22 @@
"""
-[docs]def get_god_account():
+def _get_superuser_account():
"""
- Creates the god user and don't take no for an answer.
+ Get the superuser (created at the command line) and don't take no for an answer.
+
+ Returns:
+ Account: The first superuser (User #1).
+
+ Raises:
+ AccountDB.DoesNotExist: If the superuser couldn't be found.
"""
try:
- god_account = AccountDB.objects.get(id=1)
+ superuser = AccountDB.objects.get(id=1)
except AccountDB.DoesNotExist:
raise AccountDB.DoesNotExist(ERROR_NO_SUPERUSER)
- return god_account
+ return superuser
[docs]def create_objects():
@@ -104,84 +110,68 @@
# Set the initial User's account object's username on the #1 object.
# This object is pure django and only holds name, email and password.
- god_account = get_god_account()
+ superuser = _get_superuser_account()
+ from evennia.objects.models import ObjectDB
# Create an Account 'user profile' object to hold eventual
# mud-specific settings for the AccountDB object.
account_typeclass = settings.BASE_ACCOUNT_TYPECLASS
- # run all creation hooks on god_account (we must do so manually
+ # run all creation hooks on superuser (we must do so manually
# since the manage.py command does not)
- god_account.swap_typeclass(account_typeclass, clean_attributes=True)
- god_account.basetype_setup()
- god_account.at_account_creation()
- god_account.locks.add(
+ superuser.swap_typeclass(account_typeclass, clean_attributes=True)
+ superuser.basetype_setup()
+ superuser.at_account_creation()
+ superuser.locks.add(
"examine:perm(Developer);edit:false();delete:false();boot:false();msg:all()"
)
# this is necessary for quelling to work correctly.
- god_account.permissions.add("Developer")
+ superuser.permissions.add("Developer")
# Limbo is the default "nowhere" starting room
# Create the in-game god-character for account #1 and set
# it to exist in Limbo.
character_typeclass = settings.BASE_CHARACTER_TYPECLASS
- god_character = create.create_object(character_typeclass, key=god_account.username, nohome=True)
+ try:
+ superuser_character = ObjectDB.objects.get(id=1)
+ except ObjectDB.DoesNotExist:
+ superuser_character = create.create_object(
+ character_typeclass, key=superuser.username, nohome=True)
- god_character.id = 1
- god_character.save()
- god_character.db.desc = _("This is User #1.")
- god_character.locks.add(
+ superuser_character.db_typeclass_path = character_typeclass
+ superuser_character.db.desc = _("This is User #1.")
+ superuser_character.locks.add(
"examine:perm(Developer);edit:false();delete:false();boot:false();msg:all();puppet:false()"
)
# we set this low so that quelling is more useful
- god_character.permissions.add("Player")
+ superuser_character.permissions.add("Player")
+ superuser_character.save()
- god_account.attributes.add("_first_login", True)
- god_account.attributes.add("_last_puppet", god_character)
+ superuser.attributes.add("_first_login", True)
+ superuser.attributes.add("_last_puppet", superuser_character)
try:
- god_account.db._playable_characters.append(god_character)
+ superuser.db._playable_characters.append(superuser_character)
except AttributeError:
- god_account.db_playable_characters = [god_character]
+ superuser.db_playable_characters = [superuser_character]
room_typeclass = settings.BASE_ROOM_TYPECLASS
- limbo_obj = create.create_object(room_typeclass, _("Limbo"), nohome=True)
- limbo_obj.id = 2
- limbo_obj.save()
+ try:
+ limbo_obj = ObjectDB.objects.get(id=2)
+ except ObjectDB.DoesNotExist:
+ limbo_obj = create.create_object(room_typeclass, _("Limbo"), nohome=True)
+
+ limbo_obj.db_typeclass_path = room_typeclass
limbo_obj.db.desc = LIMBO_DESC.strip()
limbo_obj.save()
# Now that Limbo exists, try to set the user up in Limbo (unless
# the creation hooks already fixed this).
- if not god_character.location:
- god_character.location = limbo_obj
- if not god_character.home:
- god_character.home = limbo_obj
-
-
-[docs]def create_channels():
- """
- Creates some sensible default channels.
-
- """
- logger.log_info("Initial setup: Creating default channels ...")
-
- goduser = get_god_account()
-
- channel_mudinfo = settings.CHANNEL_MUDINFO
- if channel_mudinfo:
- channel = create.create_channel(**channel_mudinfo)
- channel.connect(goduser)
-
- channel_connectinfo = settings.CHANNEL_CONNECTINFO
- if channel_connectinfo:
- channel = create.create_channel(**channel_connectinfo)
-
- for channeldict in settings.DEFAULT_CHANNELS:
- channel = create.create_channel(**channeldict)
- channel.connect(goduser)
-
+ if not superuser_character.location:
+ superuser_character.location = limbo_obj
+ if not superuser_character.home:
+ superuser_character.home = limbo_objweb_get_detail_url()[source]¶Returns the URI path for a View that allows users to view details for +this object.
+ex. Oscar (Character) = ‘/characters/oscar/1/’
+For this to work, the developer must have defined a named view somewhere +in urls.py that follows the format ‘modelname-action’, so in this case +a named view of ‘character-detail’ would be referenced by this method.
+ex.
+url(r'characters/(?P<slug>[\w\d\-]+)/(?P<pk>[0-9]+)/$',
+ CharDetailView.as_view(), name='character-detail')
+If no View has been created and defined in urls.py, returns an +HTML anchor.
+This method is naive and simply returns a path. Securing access to +the actual view and limiting who can view this object is the developer’s +responsibility.
+path (str) – URI path to object detail page, if defined.
+web_get_admin_url()[source]¶Returns the URI path for the Django Admin page for this object.
+ex. Account#1 = ‘/admin/accounts/accountdb/1/change/’
+path (str) – URI path to Django Admin page for object.
+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 '}¶
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 '}¶
search_index_entry = {'aliases': 'swap type parent 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 "}¶search_index_entry = {'aliases': 'type parent swap 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 "}¶
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 '}¶
search_index_entry = {'aliases': 'channels chan', 'category': 'comms', 'key': 'channel', 'tags': '', 'text': "\n Use and manage in-game channels.\n\n Usage:\n channel channelname <msg>\n channel channel name = <msg>\n channel (show all subscription)\n channel/all (show available channels)\n channel/alias channelname = alias[;alias...]\n channel/unalias alias\n channel/who channelname\n channel/history channelname [= index]\n channel/sub channelname [= alias[;alias...]]\n channel/unsub channelname[,channelname, ...]\n channel/mute channelname[,channelname,...]\n channel/unmute channelname[,channelname,...]\n\n channel/create channelname[;alias;alias[:typeclass]] [= description]\n channel/destroy channelname [= reason]\n channel/desc channelname = description\n channel/lock channelname = lockstring\n channel/unlock channelname = lockstring\n channel/ban channelname (list bans)\n channel/ban[/quiet] channelname[, channelname, ...] = subscribername [: reason]\n channel/unban[/quiet] channelname[, channelname, ...] = subscribername\n channel/boot[/quiet] channelname[,channelname,...] = subscribername [: reason]\n\n # subtopics\n\n ## sending\n\n Usage: channel channelname msg\n channel channel name = msg (with space in channel name)\n\n This sends a message to the channel. Note that you will rarely use this\n command like this; instead you can use the alias\n\n channelname <msg>\n channelalias <msg>\n\n For example\n\n public Hello World\n pub Hello World\n\n (this shortcut doesn't work for aliases containing spaces)\n\n See channel/alias for help on setting channel aliases.\n\n ## alias and unalias\n\n Usage: channel/alias channel = alias[;alias[;alias...]]\n channel/unalias alias\n channel - this will list your subs and aliases to each channel\n\n Set one or more personal aliases for referencing a channel. For example:\n\n channel/alias warrior's guild = warrior;wguild;warchannel;warrior guild\n\n You can now send to the channel using all of these:\n\n warrior's guild Hello\n warrior Hello\n wguild Hello\n warchannel Hello\n\n Note that this will not work if the alias has a space in it. So the\n 'warrior guild' alias must be used with the `channel` command:\n\n channel warrior guild = Hello\n\n Channel-aliases can be removed one at a time, using the '/unalias' switch.\n\n ## who\n\n Usage: channel/who channelname\n\n List the channel's subscribers. Shows who are currently offline or are\n muting the channel. Subscribers who are 'muting' will not see messages sent\n to the channel (use channel/mute to mute a channel).\n\n ## history\n\n Usage: channel/history channel [= index]\n\n This will display the last |c20|n lines of channel history. By supplying an\n index number, you will step that many lines back before viewing those 20 lines.\n\n For example:\n\n channel/history public = 35\n\n will go back 35 lines and show the previous 20 lines from that point (so\n lines -35 to -55).\n\n ## sub and unsub\n\n Usage: channel/sub channel [=alias[;alias;...]]\n channel/unsub channel\n\n This subscribes you to a channel and optionally assigns personal shortcuts\n for you to use to send to that channel (see aliases). When you unsub, all\n your personal aliases will also be removed.\n\n ## mute and unmute\n\n Usage: channel/mute channelname\n channel/unmute channelname\n\n Muting silences all output from the channel without actually\n un-subscribing. Other channel members will see that you are muted in the /who\n list. Sending a message to the channel will automatically unmute you.\n\n ## create and destroy\n\n Usage: channel/create channelname[;alias;alias[:typeclass]] [= description]\n channel/destroy channelname [= reason]\n\n Creates a new channel (or destroys one you control). You will automatically\n join the channel you create and everyone will be kicked and loose all aliases\n to a destroyed channel.\n\n ## lock and unlock\n\n Usage: channel/lock channelname = lockstring\n channel/unlock channelname = lockstring\n\n Note: this is an admin command.\n\n A lockstring is on the form locktype:lockfunc(). Channels understand three\n locktypes:\n listen - who may listen or join the channel.\n send - who may send messages to the channel\n control - who controls the channel. This is usually the one creating\n the channel.\n\n Common lockfuncs are all() and perm(). To make a channel everyone can\n listen to but only builders can talk on, use this:\n\n listen:all()\n send: perm(Builders)\n\n ## boot and ban\n\n Usage:\n channel/boot[/quiet] channelname[,channelname,...] = subscribername [: reason]\n channel/ban channelname[, channelname, ...] = subscribername [: reason]\n channel/unban channelname[, channelname, ...] = subscribername\n channel/unban channelname\n channel/ban channelname (list bans)\n\n Booting will kick a named subscriber from channel(s) temporarily. The\n 'reason' will be passed to the booted user. Unless the /quiet switch is\n used, the channel will also be informed of the action. A booted user is\n still able to re-connect, but they'll have to set up their aliases again.\n\n Banning will blacklist a user from (re)joining the provided channels. It\n will then proceed to boot them from those channels if they were connected.\n The 'reason' and `/quiet` works the same as for booting.\n\n Example:\n boot mychannel1 = EvilUser : Kicking you to cool down a bit.\n ban mychannel1,mychannel2= EvilUser : Was banned for spamming.\n\n "}¶search_index_entry = {'aliases': 'chan channels', 'category': 'comms', 'key': 'channel', 'tags': '', 'text': "\n Use and manage in-game channels.\n\n Usage:\n channel channelname <msg>\n channel channel name = <msg>\n channel (show all subscription)\n channel/all (show available channels)\n channel/alias channelname = alias[;alias...]\n channel/unalias alias\n channel/who channelname\n channel/history channelname [= index]\n channel/sub channelname [= alias[;alias...]]\n channel/unsub channelname[,channelname, ...]\n channel/mute channelname[,channelname,...]\n channel/unmute channelname[,channelname,...]\n\n channel/create channelname[;alias;alias[:typeclass]] [= description]\n channel/destroy channelname [= reason]\n channel/desc channelname = description\n channel/lock channelname = lockstring\n channel/unlock channelname = lockstring\n channel/ban channelname (list bans)\n channel/ban[/quiet] channelname[, channelname, ...] = subscribername [: reason]\n channel/unban[/quiet] channelname[, channelname, ...] = subscribername\n channel/boot[/quiet] channelname[,channelname,...] = subscribername [: reason]\n\n # subtopics\n\n ## sending\n\n Usage: channel channelname msg\n channel channel name = msg (with space in channel name)\n\n This sends a message to the channel. Note that you will rarely use this\n command like this; instead you can use the alias\n\n channelname <msg>\n channelalias <msg>\n\n For example\n\n public Hello World\n pub Hello World\n\n (this shortcut doesn't work for aliases containing spaces)\n\n See channel/alias for help on setting channel aliases.\n\n ## alias and unalias\n\n Usage: channel/alias channel = alias[;alias[;alias...]]\n channel/unalias alias\n channel - this will list your subs and aliases to each channel\n\n Set one or more personal aliases for referencing a channel. For example:\n\n channel/alias warrior's guild = warrior;wguild;warchannel;warrior guild\n\n You can now send to the channel using all of these:\n\n warrior's guild Hello\n warrior Hello\n wguild Hello\n warchannel Hello\n\n Note that this will not work if the alias has a space in it. So the\n 'warrior guild' alias must be used with the `channel` command:\n\n channel warrior guild = Hello\n\n Channel-aliases can be removed one at a time, using the '/unalias' switch.\n\n ## who\n\n Usage: channel/who channelname\n\n List the channel's subscribers. Shows who are currently offline or are\n muting the channel. Subscribers who are 'muting' will not see messages sent\n to the channel (use channel/mute to mute a channel).\n\n ## history\n\n Usage: channel/history channel [= index]\n\n This will display the last |c20|n lines of channel history. By supplying an\n index number, you will step that many lines back before viewing those 20 lines.\n\n For example:\n\n channel/history public = 35\n\n will go back 35 lines and show the previous 20 lines from that point (so\n lines -35 to -55).\n\n ## sub and unsub\n\n Usage: channel/sub channel [=alias[;alias;...]]\n channel/unsub channel\n\n This subscribes you to a channel and optionally assigns personal shortcuts\n for you to use to send to that channel (see aliases). When you unsub, all\n your personal aliases will also be removed.\n\n ## mute and unmute\n\n Usage: channel/mute channelname\n channel/unmute channelname\n\n Muting silences all output from the channel without actually\n un-subscribing. Other channel members will see that you are muted in the /who\n list. Sending a message to the channel will automatically unmute you.\n\n ## create and destroy\n\n Usage: channel/create channelname[;alias;alias[:typeclass]] [= description]\n channel/destroy channelname [= reason]\n\n Creates a new channel (or destroys one you control). You will automatically\n join the channel you create and everyone will be kicked and loose all aliases\n to a destroyed channel.\n\n ## lock and unlock\n\n Usage: channel/lock channelname = lockstring\n channel/unlock channelname = lockstring\n\n Note: this is an admin command.\n\n A lockstring is on the form locktype:lockfunc(). Channels understand three\n locktypes:\n listen - who may listen or join the channel.\n send - who may send messages to the channel\n control - who controls the channel. This is usually the one creating\n the channel.\n\n Common lockfuncs are all() and perm(). To make a channel everyone can\n listen to but only builders can talk on, use this:\n\n listen:all()\n send: perm(Builders)\n\n ## boot and ban\n\n Usage:\n channel/boot[/quiet] channelname[,channelname,...] = subscribername [: reason]\n channel/ban channelname[, channelname, ...] = subscribername [: reason]\n channel/unban channelname[, channelname, ...] = subscribername\n channel/unban channelname\n channel/ban channelname (list bans)\n\n Booting will kick a named subscriber from channel(s) temporarily. The\n 'reason' will be passed to the booted user. Unless the /quiet switch is\n used, the channel will also be informed of the action. A booted user is\n still able to re-connect, but they'll have to set up their aliases again.\n\n Banning will blacklist a user from (re)joining the provided channels. It\n will then proceed to boot them from those channels if they were connected.\n The 'reason' and `/quiet` works the same as for booting.\n\n Example:\n boot mychannel1 = EvilUser : Kicking you to cool down a bit.\n ban mychannel1,mychannel2= EvilUser : Was banned for spamming.\n\n "}¶
search_index_entry = {'aliases': 'chanalias aliaschan', 'category': 'comms', 'key': 'addcom', 'tags': '', 'text': '\n Add a channel alias and/or subscribe to a channel\n\n Usage:\n addcom [alias=] <channel>\n\n Joins a given channel. If alias is given, this will allow you to\n refer to the channel by this alias rather than the full channel\n name. Subsequent calls of this command can be used to add multiple\n aliases to an already joined channel.\n '}¶search_index_entry = {'aliases': 'aliaschan chanalias', 'category': 'comms', 'key': 'addcom', 'tags': '', 'text': '\n Add a channel alias and/or subscribe to a channel\n\n Usage:\n addcom [alias=] <channel>\n\n Joins a given channel. If alias is given, this will allow you to\n refer to the channel by this alias rather than the full channel\n name. Subsequent calls of this command can be used to add multiple\n aliases to an already joined channel.\n '}¶
search_index_entry = {'aliases': 'delchanalias delaliaschan', 'category': 'comms', 'key': 'delcom', 'tags': '', 'text': "\n remove a channel alias and/or unsubscribe from channel\n\n Usage:\n delcom <alias or channel>\n delcom/all <channel>\n\n If the full channel name is given, unsubscribe from the\n channel. If an alias is given, remove the alias but don't\n unsubscribe. If the 'all' switch is used, remove all aliases\n for that channel.\n "}¶search_index_entry = {'aliases': 'delaliaschan delchanalias', 'category': 'comms', 'key': 'delcom', 'tags': '', 'text': "\n remove a channel alias and/or unsubscribe from channel\n\n Usage:\n delcom <alias or channel>\n delcom/all <channel>\n\n If the full channel name is given, unsubscribe from the\n channel. If an alias is given, remove the alias but don't\n unsubscribe. If the 'all' switch is used, remove all aliases\n for that channel.\n "}¶
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 '}¶
search_index_entry = {'aliases': 'nickname nicks', 'category': 'general', 'key': 'nick', 'tags': '', 'text': '\n define a personal alias/nick by defining a string to\n match and replace it with another on the fly\n\n Usage:\n nick[/switches] <string> [= [replacement_string]]\n nick[/switches] <template> = <replacement_template>\n nick/delete <string> or number\n nicks\n\n Switches:\n inputline - replace on the inputline (default)\n object - replace on object-lookup\n account - replace on account-lookup\n list - show all defined aliases (also "nicks" works)\n delete - remove nick by index in /list\n clearall - clear all nicks\n\n Examples:\n nick hi = say Hello, I\'m Sarah!\n nick/object tom = the tall man\n nick build $1 $2 = create/drop $1;$2\n nick tell $1 $2=page $1=$2\n nick tm?$1=page tallman=$1\n nick tm\\=$1=page tallman=$1\n\n A \'nick\' is a personal string replacement. Use $1, $2, ... to catch arguments.\n Put the last $-marker without an ending space to catch all remaining text. You\n can also use unix-glob matching for the left-hand side <string>:\n\n * - matches everything\n ? - matches 0 or 1 single characters\n [abcd] - matches these chars in any order\n [!abcd] - matches everything not among these chars\n \\= - escape literal \'=\' you want in your <string>\n\n Note that no objects are actually renamed or changed by this command - your nicks\n are only available to you. If you want to permanently add keywords to an object\n for everyone to use, you need build privileges and the alias command.\n\n '}¶search_index_entry = {'aliases': 'nicks nickname', 'category': 'general', 'key': 'nick', 'tags': '', 'text': '\n define a personal alias/nick by defining a string to\n match and replace it with another on the fly\n\n Usage:\n nick[/switches] <string> [= [replacement_string]]\n nick[/switches] <template> = <replacement_template>\n nick/delete <string> or number\n nicks\n\n Switches:\n inputline - replace on the inputline (default)\n object - replace on object-lookup\n account - replace on account-lookup\n list - show all defined aliases (also "nicks" works)\n delete - remove nick by index in /list\n clearall - clear all nicks\n\n Examples:\n nick hi = say Hello, I\'m Sarah!\n nick/object tom = the tall man\n nick build $1 $2 = create/drop $1;$2\n nick tell $1 $2=page $1=$2\n nick tm?$1=page tallman=$1\n nick tm\\=$1=page tallman=$1\n\n A \'nick\' is a personal string replacement. Use $1, $2, ... to catch arguments.\n Put the last $-marker without an ending space to catch all remaining text. You\n can also use unix-glob matching for the left-hand side <string>:\n\n * - matches everything\n ? - matches 0 or 1 single characters\n [abcd] - matches these chars in any order\n [!abcd] - matches everything not among these chars\n \\= - escape literal \'=\' you want in your <string>\n\n Note that no objects are actually renamed or changed by this command - your nicks\n are only available to you. If you want to permanently add keywords to an object\n for everyone to use, you need build privileges and the alias command.\n\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 '}¶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': '" \'', '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 '}¶
Notes
-By default, the ‘view’ lock will be checked, and if no such lock is defined, the ‘read’ +
The .auto_help propery is checked for commands. For all help entries, +the ‘view’ lock will be checked, and if no such lock is defined, the ‘read’ lock will be used. If neither lock is defined, the help entry is assumed to be accessible to all.
@@ -455,11 +456,11 @@ the user will be able to enter a partial match to access it.aliases = ['db', 'listobjects', 'stats', 'listobjs']¶aliases = ['stats', 'listobjs', 'listobjects', 'db']¶
search_index_entry = {'aliases': 'db listobjects stats listobjs', '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': 'stats listobjs listobjects db', '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': 'serverprocess serverload', 'category': 'system', 'key': 'server', 'tags': '', 'text': "\n show server load and memory statistics\n\n Usage:\n server[/mem]\n\n Switches:\n mem - return only a string of the current memory usage\n flushmem - flush the idmapper cache\n\n This command shows server load statistics and dynamic memory\n usage. It also allows to flush the cache of accessed database\n objects.\n\n Some Important statistics in the table:\n\n |wServer load|n is an average of processor usage. It's usually\n between 0 (no usage) and 1 (100% usage), but may also be\n temporarily higher if your computer has multiple CPU cores.\n\n The |wResident/Virtual memory|n displays the total memory used by\n the server process.\n\n Evennia |wcaches|n all retrieved database entities when they are\n loaded by use of the idmapper functionality. This allows Evennia\n to maintain the same instances of an entity and allowing\n non-persistent storage schemes. The total amount of cached objects\n are displayed plus a breakdown of database object types.\n\n The |wflushmem|n switch allows to flush the object cache. Please\n note that due to how Python's memory management works, releasing\n caches may not show you a lower Residual/Virtual memory footprint,\n the released memory will instead be re-used by the program.\n\n "}¶search_index_entry = {'aliases': 'serverload serverprocess', 'category': 'system', 'key': 'server', 'tags': '', 'text': "\n show server load and memory statistics\n\n Usage:\n server[/mem]\n\n Switches:\n mem - return only a string of the current memory usage\n flushmem - flush the idmapper cache\n\n This command shows server load statistics and dynamic memory\n usage. It also allows to flush the cache of accessed database\n objects.\n\n Some Important statistics in the table:\n\n |wServer load|n is an average of processor usage. It's usually\n between 0 (no usage) and 1 (100% usage), but may also be\n temporarily higher if your computer has multiple CPU cores.\n\n The |wResident/Virtual memory|n displays the total memory used by\n the server process.\n\n Evennia |wcaches|n all retrieved database entities when they are\n loaded by use of the idmapper functionality. This allows Evennia\n to maintain the same instances of an entity and allowing\n non-persistent storage schemes. The total amount of cached objects\n are displayed plus a breakdown of database object types.\n\n The |wflushmem|n switch allows to flush the object cache. Please\n note that due to how Python's memory management works, releasing\n caches may not show you a lower Residual/Virtual memory footprint,\n the released memory will instead be re-used by the program.\n\n "}¶
search_index_entry = {'aliases': 'co conn 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 '}¶search_index_entry = {'aliases': 'con co conn', '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': 'cr cre', 'category': 'general', 'key': 'create', 'tags': '', 'text': '\n create a new account account\n\n Usage (at login screen):\n create <accountname> <password>\n create "account name" "pass word"\n\n This creates a new account account.\n\n If you have spaces in your name, enclose it in double quotes.\n '}¶search_index_entry = {'aliases': 'cre cr', 'category': 'general', 'key': 'create', 'tags': '', 'text': '\n create a new account account\n\n Usage (at login screen):\n create <accountname> <password>\n create "account name" "pass word"\n\n This creates a new account account.\n\n If you have spaces in your name, enclose it in double quotes.\n '}¶
search_index_entry = {'aliases': 'qu q', 'category': 'general', 'key': 'quit', 'tags': '', 'text': '\n quit when in unlogged-in state\n\n Usage:\n quit\n\n We maintain a different version of the quit command\n here for unconnected accounts for the sake of simplicity. The logged in\n version is a bit more complicated.\n '}¶search_index_entry = {'aliases': 'q qu', 'category': 'general', 'key': 'quit', 'tags': '', 'text': '\n quit when in unlogged-in state\n\n Usage:\n quit\n\n We maintain a different version of the quit command\n here for unconnected accounts for the sake of simplicity. The logged in\n version is a bit more complicated.\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 '}¶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': '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 '}¶
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 '}¶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': '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 "}¶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': 'co conn 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 '}¶search_index_entry = {'aliases': 'con co conn', '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': 'cr cre', 'category': 'general', 'key': 'create', 'tags': '', 'text': '\n Create a new account.\n\n Usage (at login screen):\n create "accountname" <email> <password>\n\n This creates a new account account.\n\n '}¶search_index_entry = {'aliases': 'cre cr', 'category': 'general', 'key': 'create', 'tags': '', 'text': '\n Create a new account.\n\n Usage (at login screen):\n create "accountname" <email> <password>\n\n This creates a new account account.\n\n '}¶
search_index_entry = {'aliases': 'qu q', 'category': 'general', 'key': 'quit', 'tags': '', 'text': '\n We maintain a different version of the `quit` command\n here for unconnected accounts for the sake of simplicity. The logged in\n version is a bit more complicated.\n '}¶search_index_entry = {'aliases': 'q qu', 'category': 'general', 'key': 'quit', 'tags': '', 'text': '\n We maintain a different version of the `quit` command\n here for unconnected accounts for the sake of simplicity. The logged in\n version is a bit more complicated.\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 '}¶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': '@callback @calls @callbacks', 'category': 'building', 'key': '@call', 'tags': '', 'text': '\n Command to edit callbacks.\n '}¶search_index_entry = {'aliases': '@calls @callbacks @callback', 'category': 'building', 'key': '@call', 'tags': '', 'text': '\n Command to edit callbacks.\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 '}¶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 '}¶
aliases = ['press button', 'press', 'push']¶
search_index_entry = {'aliases': 'press button press push', 'category': 'general', 'key': 'push button', 'tags': '', 'text': '\n Push the red button (lid closed)\n\n Usage:\n push button\n\n '}¶
aliases = ['smash', 'break lid', 'smash lid']¶
search_index_entry = {'aliases': 'smash break lid smash lid', 'category': 'general', 'key': 'smash glass', 'tags': '', 'text': '\n Smash the protective glass.\n\n Usage:\n smash glass\n\n Try to smash the glass of the button.\n\n '}¶
aliases = ['press button', 'press', 'push']¶
search_index_entry = {'aliases': 'press button press push', 'category': 'general', 'key': 'push button', 'tags': '', 'text': '\n Push the red button\n\n Usage:\n push button\n\n '}¶
aliases = ['listen', 'examine', 'get', 'ex', 'feel', 'l']¶
search_index_entry = {'aliases': 'listen examine get ex feel l', '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': '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 '}¶search_index_entry = {'aliases': 'shiftroot move pull push', '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 '}¶
aliases = ['push button', 'button', 'press button']¶aliases = ['press button', 'button', 'push button']¶
search_index_entry = {'aliases': 'push button button press button', 'category': 'tutorialworld', 'key': 'press', 'tags': '', 'text': '\n Presses a button.\n '}¶search_index_entry = {'aliases': 'press button button push button', 'category': 'tutorialworld', 'key': 'press', 'tags': '', 'text': '\n Presses a button.\n '}¶
aliases = ['fight', 'pierce', 'parry', 'hit', 'defend', 'bash', 'kill', 'stab', 'slash', 'thrust', 'chop']¶aliases = ['stab', 'parry', 'fight', 'bash', 'pierce', 'chop', 'slash', 'thrust', 'kill', 'defend', 'hit']¶
search_index_entry = {'aliases': 'fight pierce parry hit defend bash kill stab slash thrust 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': 'stab parry fight bash pierce chop slash thrust kill defend hit', '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': '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 '}¶
aliases = ['fiddle', 'l', 'search', 'feel', 'feel around']¶aliases = ['search', 'fiddle', 'feel', 'l', 'feel around']¶
search_index_entry = {'aliases': 'fiddle l search feel feel around', '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': 'search fiddle feel l feel around', '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 '}¶
This module handles initial database propagation, which is only run the first -time the game starts. It will create some default channels, objects, and -other things.
+This module handles initial database propagation, which is only run the first time the game starts. +It will create some default objects (notably give #1 its evennia-specific properties, and create the +Limbo room). It will also hooks, and then perform an initial restart.
Everything starts at handle_setup()
-evennia.server.initial_setup.get_god_account()[source]¶Creates the god user and don’t take no for an answer.
-evennia.server.initial_setup.create_channels()[source]¶Creates some sensible default channels.
-evennia.server.initial_setup.at_initial_setup()[source]¶evennia.server.initial_setup.handle_setup(last_step)[source]¶evennia.server.initial_setup.handle_setup(last_step=None)[source]¶
Main logic for the module. It allows for restarting the initialization at any point if one of the modules should crash.
last_step (int) – The last stored successful step, for starting -over on errors. If < 0, initialization has finished and no -steps need to be redone.
+last_step (str, None) – The last stored successful step, for starting +over on errors. None if starting from scratch. If this is ‘done’, +the function will exit immediately.
create_default_channels()[source]¶check so default channels exist on every restart, create if not.
aliases = [':p', ':q', ':j', ':A', ':fi', ':I', ':<', ':dd', ':y', ':dw', ':i', ':!', ':x', ':DD', ':s', ':f', '::', ':echo', ':r', ':S', ':', ':>', ':fd', ':::', ':wq', ':UU', ':uu', ':w', ':=', ':u', ':h', ':q!']¶aliases = [':::', ':h', ':dd', ':uu', ':A', ':wq', ':', ':f', ':x', ':!', ':dw', ':y', ':i', ':s', ':w', ':p', ':S', ':=', ':UU', ':I', ':echo', ':fi', ':u', '::', ':q', ':q!', ':<', ':j', ':r', ':>', ':fd', ':DD']¶
search_index_entry = {'aliases': ':p :q :j :A :fi :I :< :dd :y :dw :i :! :x :DD :s :f :: :echo :r :S : :> :fd ::: :wq :UU :uu :w := :u :h :q!', 'category': 'general', 'key': ':editor_command_group', 'tags': '', 'text': '\n Commands for the editor\n '}¶search_index_entry = {'aliases': '::: :h :dd :uu :A :wq : :f :x :! :dw :y :i :s :w :p :S := :UU :I :echo :fi :u :: :q :q! :< :j :r :> :fd :DD', 'category': 'general', 'key': ':editor_command_group', 'tags': '', 'text': '\n Commands for the editor\n '}¶
aliases = ['a', 'n', 'abort', '__nomatch_command', 'yes', 'y', 'no']¶
search_index_entry = {'aliases': 'a n abort __nomatch_command yes y no', 'category': 'general', 'key': '__noinput_command', 'tags': '', 'text': '\n Handle a prompt for yes or no. Press [return] for the default choice.\n\n '}¶
aliases = ['a', 'b', 'quit', 'q', 't', 'top', 'end', 'next', 'n', 'abort', 'back', 'e']¶aliases = ['a', 'next', 't', 'n', 'abort', 'back', 'b', 'quit', 'top', 'q', 'e', 'end']¶
search_index_entry = {'aliases': 'a b quit q t top end next n abort back e', 'category': 'general', 'key': '__noinput_command', 'tags': '', 'text': '\n Manipulate the text paging\n '}¶search_index_entry = {'aliases': 'a next t n abort back b quit top q e end', 'category': 'general', 'key': '__noinput_command', 'tags': '', 'text': '\n Manipulate the text paging\n '}¶
evennia.web.website.tests.HelpListTest(methodName='runTest')[source]¶Bases: evennia.web.website.tests.EvenniaWebTest
url_name = 'help'¶evennia.web.website.tests.HelpDetailTest(methodName='runTest')[source]¶Bases: evennia.web.website.tests.EvenniaWebTest
url_name = 'help-entry-detail'¶evennia.web.website.tests.HelpLockedDetailTest(methodName='runTest')[source]¶Bases: evennia.web.website.tests.EvenniaWebTest
url_name = 'help-entry-detail'¶evennia.web.website.tests.CharacterCreateView(methodName='runTest')[source]¶When new to Evennia it can be hard to find things or figure out what is available. Evennia offers a special interactive python shell that allows you to experiment and try out things. It’s recommended -to use ipython for this since the vanilla python prompt is very limited. Here +to use ipython for this since the vanilla python prompt is very limited. Here are some simple commands to get started:
# [open a new console/terminal]
# [activate your evennia virtualenv in this console/terminal]
@@ -119,7 +119,7 @@ should just gracefully tell you what errors it finds, it can nevertheless be a g
check your code for simple syntax errors before you load it into the running server. There are
many python syntax checkers out there. A fast and easy one is
pyflakes, a more verbose one is
-pylint. You can also check so that your code looks up to snuff using
+pylint. You can also check so that your code looks up to snuff using
pep8. Even with a syntax checker you will not be able to catch
every possible problem - some bugs or problems will only appear when you actually run the code. But
using such a checker can be a good start to weed out the simple problems.
@@ -164,7 +164,7 @@ temporarily fall back to the safe does help you, promise! Evennia’s documentation is pretty thorough
and knowing what is possible can often give you a lot of new cool game ideas. That said, if you
can’t find the answer in the docs, don’t be shy to ask questions! The discussion
-group and the irc
+group and the irc
chat are also there for you.
@@ -225,11 +225,11 @@ chat are also there for you.
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/Coding/Coding-Overview.html b/docs/1.0-dev/Coding/Coding-Overview.html
index a8106beeb3..4eb4109a3e 100644
--- a/docs/1.0-dev/Coding/Coding-Overview.html
+++ b/docs/1.0-dev/Coding/Coding-Overview.html
@@ -136,11 +136,11 @@ to you, but some things may still be useful.
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/Coding/Continuous-Integration.html b/docs/1.0-dev/Coding/Continuous-Integration.html
index d3efae448a..798b5b3ebb 100644
--- a/docs/1.0-dev/Coding/Continuous-Integration.html
+++ b/docs/1.0-dev/Coding/Continuous-Integration.html
@@ -403,11 +403,11 @@ build steps could be added or removed at this point, adding some features like U
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/Coding/Debugging.html b/docs/1.0-dev/Coding/Debugging.html
index 3d4dc0c5a7..a3c859bce5 100644
--- a/docs/1.0-dev/Coding/Debugging.html
+++ b/docs/1.0-dev/Coding/Debugging.html
@@ -359,11 +359,11 @@ topic here.
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/Coding/Flat-API.html b/docs/1.0-dev/Coding/Flat-API.html
index 25afd9fbc9..ae7fee0ce3 100644
--- a/docs/1.0-dev/Coding/Flat-API.html
+++ b/docs/1.0-dev/Coding/Flat-API.html
@@ -112,11 +112,11 @@ package imports from.
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/Coding/Profiling.html b/docs/1.0-dev/Coding/Profiling.html
index ea049ba60e..73fdc39535 100644
--- a/docs/1.0-dev/Coding/Profiling.html
+++ b/docs/1.0-dev/Coding/Profiling.html
@@ -374,11 +374,11 @@ For this, actual real-game testing is required.
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/Coding/Quirks.html b/docs/1.0-dev/Coding/Quirks.html
index 197e916448..bbf27872e5 100644
--- a/docs/1.0-dev/Coding/Quirks.html
+++ b/docs/1.0-dev/Coding/Quirks.html
@@ -197,11 +197,11 @@ instructions, use the following command to fix it:
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/Coding/Setting-up-PyCharm.html b/docs/1.0-dev/Coding/Setting-up-PyCharm.html
index a9743ac680..22fd1d44ce 100644
--- a/docs/1.0-dev/Coding/Setting-up-PyCharm.html
+++ b/docs/1.0-dev/Coding/Setting-up-PyCharm.html
@@ -201,11 +201,11 @@ still running in interactive mode.
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/Coding/Unit-Testing.html b/docs/1.0-dev/Coding/Unit-Testing.html
index 0a0bf2c2b9..d842b71cb6 100644
--- a/docs/1.0-dev/Coding/Unit-Testing.html
+++ b/docs/1.0-dev/Coding/Unit-Testing.html
@@ -43,7 +43,7 @@
Unit testing means testing components of a program in isolation from each other to make sure every
part works on its own before using it with others. Extensive testing helps avoid new updates causing
unexpected side effects as well as alleviates general code rot (a more comprehensive wikipedia
-article on unit testing can be found here).
+article on unit testing can be found here).
A typical unit test set calls some function or method with a given input, looks at the result and
makes sure that this result looks as expected. Rather than having lots of stand-alone test programs,
Evennia makes use of a central test runner. This is a program that gathers all available tests all
@@ -147,7 +147,7 @@ optionally do cleanup after each test.
self.assertEqual(expected_return, actual_return)
You might also want to read the documentation for the unittest
+ You might also want to read the documentation for the unittest
module.Using the EvenniaTest class¶
@@ -575,11 +575,11 @@ will get much more information to help you fix the bug.
Very commonly we make changes to the Evennia code to improve things. There are many ways to get told when to update: You can subscribe to the RSS feed or manually check up on the feeds from -http://www.evennia.com. You can also simply fetch the latest regularly.
+https://www.evennia.com. You can also simply fetch the latest regularly.When you’re wanting to apply updates, simply cd to your cloned evennia root directory and type:
git pull
e
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/Coding/Using-Travis.html b/docs/1.0-dev/Coding/Using-Travis.html
index e1e0b7c550..40418330a5 100644
--- a/docs/1.0-dev/Coding/Using-Travis.html
+++ b/docs/1.0-dev/Coding/Using-Travis.html
@@ -40,10 +40,10 @@
Using Travis¶
-Evennia uses Travis CI to check that it’s building successfully after every
+
Evennia uses Travis CI to check that it’s building successfully after every
commit to its Github repository (you can for example see the build: passing badge at the top of
Evennia’s Readme file). If your game is open source on Github
-you may also use Travis for free. See [the Travis docs](http://docs.travis-ci.com/user/getting-
+you may also use Travis for free. See [the Travis docs](https://docs.travis-ci.com/user/getting-
started/) for how to get started.
After logging in you will get to point Travis to your repository on github. One further thing you
need to set up yourself is a Travis config file named .travis.yml (note the initial period .).
@@ -115,11 +115,11 @@ fitting your game.
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/Coding/Version-Control.html b/docs/1.0-dev/Coding/Version-Control.html
index 4ccee829d0..def45e2105 100644
--- a/docs/1.0-dev/Coding/Version-Control.html
+++ b/docs/1.0-dev/Coding/Version-Control.html
@@ -45,7 +45,7 @@ able to easily backtrack these changes, share your development efforts and more.
contributing to Evennia itself, and only wish to develop your own MU* using Evennia, having a
version control system in place is a good idea (and standard coding practice). For an introduction
to the concept, start with the Wikipedia article
-here. Evennia uses the version control system
+here. Evennia uses the version control system
Git and this is what will be covered henceforth. Note that this page also
deals with commands for Linux operating systems, and the steps below may vary for other systems,
however where possible links will be provided for alternative instructions.
@@ -55,7 +55,7 @@ documentation.
Setting up Git¶
If you have gotten Evennia installed, you will have Git already and can skip to Step 2 below.
Otherwise you will need to install Git on your platform. You can find expanded instructions for
-installation here.
+installation here.
Step 1: Install Git¶
@@ -69,9 +69,9 @@ installation Git for Windows.
+Windows: It is recommended to use Git for Windows.
Mac: Mac platforms offer two methods for installation, one via MacPorts, which you can find
-out about here, or
+out about here, or
you can use the Git OSX Installer.
@@ -303,7 +303,7 @@ branch.
If everything went well, your myfixes branch will now have the latest version of Evennia merged
with whatever changes you have done. Use git log to see what has changed. You may need to restart
the server or run manage.py migrate if the database schema changed (this will be seen in the
-commit log and on the mailing list). See the Git manuals for
+commit log and on the mailing list). See the Git manuals for
learning more about useful day-to-day commands, and special situations such as dealing with merge
collisions.
@@ -532,11 +532,11 @@ understand the underlying ideas behind GIT
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/Components/Accounts.html b/docs/1.0-dev/Components/Accounts.html
index 1a834adc80..66a3ef1ae2 100644
--- a/docs/1.0-dev/Components/Accounts.html
+++ b/docs/1.0-dev/Components/Accounts.html
@@ -187,11 +187,11 @@ any.
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/Components/Attributes.html b/docs/1.0-dev/Components/Attributes.html
index 1cfb0d45ac..8d16aa1262 100644
--- a/docs/1.0-dev/Components/Attributes.html
+++ b/docs/1.0-dev/Components/Attributes.html
@@ -235,7 +235,7 @@ below.
instances without the __iter__ method.
You can generally store any non-iterable Python entity that can be
-pickled.
+pickled.
Single database objects/typeclasses can be stored as any other in the Attribute. These can
normally not be pickled, but Evennia will behind the scenes convert them to an internal
representation using their classname, database-id and creation-date with a microsecond precision,
@@ -384,7 +384,7 @@ function evennia.ut
The result of this operation will be a structure only consisting of normal Python mutables (list
instead of _SaverList and so on).
Remember, this is only valid for mutable iterables.
-Immutable objects (strings, numbers, tuples etc) are
+Immutable objects (strings, numbers, tuples etc) are
already disconnected from the database from the onset.
1
2
@@ -516,11 +516,11 @@ those will check for the Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/Components/Batch-Code-Processor.html b/docs/1.0-dev/Components/Batch-Code-Processor.html
index 029a1c42bd..ec01c946c7 100644
--- a/docs/1.0-dev/Components/Batch-Code-Processor.html
+++ b/docs/1.0-dev/Components/Batch-Code-Processor.html
@@ -373,11 +373,11 @@ executed. When the code runs it has no knowledge of what file those strings wher
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/Components/Batch-Command-Processor.html b/docs/1.0-dev/Components/Batch-Command-Processor.html
index aea9542c24..7198f6f555 100644
--- a/docs/1.0-dev/Components/Batch-Command-Processor.html
+++ b/docs/1.0-dev/Components/Batch-Command-Processor.html
@@ -248,7 +248,7 @@ Processor
)
evennia mode. This is an Emacs major mode found in evennia/utils/evennia-mode.el. It offers
correct syntax highlighting and indentation with <tab> when editing .ev files in Emacs. See the
header of that file for installation instructions.
-VIM users can use amfl’s vim-evennia
+
VIM users can use amfl’s vim-evennia
mode instead, see its readme for install instructions.
@@ -297,11 +297,11 @@ mode instead, see its readme for install instructions.
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/Components/Batch-Processors.html b/docs/1.0-dev/Components/Batch-Processors.html
index 582e4b1cdb..fe88c4a12f 100644
--- a/docs/1.0-dev/Components/Batch-Processors.html
+++ b/docs/1.0-dev/Components/Batch-Processors.html
@@ -80,13 +80,13 @@ encodings below.
A note on File Encodings¶
As mentioned, both the processors take text files as input and then proceed to process them. As long
-as you stick to the standard ASCII character set (which means
+as you stick to the standard ASCII character set (which means
the normal English characters, basically) you should not have to worry much about this section.
Many languages however use characters outside the simple ASCII table. Common examples are various
apostrophes and umlauts but also completely different symbols like those of the greek or cyrillic
alphabets.
First, we should make it clear that Evennia itself handles international characters just fine. It
-(and Django) uses unicode strings internally.
+(and Django) uses unicode strings internally.
The problem is that when reading a text file like the batchfile, we need to know how to decode the
byte-data stored therein to universal unicode. That means we need an encoding (a mapping) for how
the file stores its data. There are many, many byte-encodings used around the world, with opaque
@@ -104,7 +104,7 @@ need to add the editor’s encoding to Evennia’s Text Encodings and also in the
-Wikipedia article here.
+Wikipedia article here.
A footnote for the batch-code processor: Just because Evennia can parse your file and your
fancy special characters, doesn’t mean that Python allows their use. Python syntax only allows
international characters inside strings. In all other source code only ASCII set characters are
@@ -151,11 +151,11 @@ allowed.
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/Components/Bootstrap-Components-and-Utilities.html b/docs/1.0-dev/Components/Bootstrap-Components-and-Utilities.html
index 377261e044..fa3c610c28 100644
--- a/docs/1.0-dev/Components/Bootstrap-Components-and-Utilities.html
+++ b/docs/1.0-dev/Components/Bootstrap-Components-and-Utilities.html
@@ -185,11 +185,11 @@ over Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/Components/Channels.html b/docs/1.0-dev/Components/Channels.html
index 43bcf1e640..ed10377fcb 100644
--- a/docs/1.0-dev/Components/Channels.html
+++ b/docs/1.0-dev/Components/Channels.html
@@ -480,11 +480,11 @@ subscribers (and thus wipe all their aliases).
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/Components/Coding-Utils.html b/docs/1.0-dev/Components/Coding-Utils.html
index 339ab16bc5..811e103195 100644
--- a/docs/1.0-dev/Components/Coding-Utils.html
+++ b/docs/1.0-dev/Components/Coding-Utils.html
@@ -267,7 +267,7 @@ it’s needed, but checking the current time and calculating on the fly what val
object inherits from parent at any distance (as opposed to Python’s in-built is_instance() that
will only catch immediate dependence). This function also accepts as input any combination of
classes, instances or python-paths-to-classes.
-Note that Python code should usually work with duck
+Note that Python code should usually work with duck
typing. But in Evennia’s case it can sometimes be useful
to check if an object inherits from a given Typeclass as a way of identification. Say
for example that we have a typeclass Animal. This has a subclass Felines which in turn has a
@@ -442,11 +442,11 @@ instructions.
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/Components/Command-Sets.html b/docs/1.0-dev/Components/Command-Sets.html
index 559d0198ae..95f520df47 100644
--- a/docs/1.0-dev/Components/Command-Sets.html
+++ b/docs/1.0-dev/Components/Command-Sets.html
@@ -322,7 +322,7 @@ game), whereas commands 3 and 4 are unique to B. To describe a
would write A1,A2 + B1,B2,B3,B4 = ? where ? is a list of commands that depend on which merge
type A has, and which relative priorities the two sets have. By convention, we read this
statement as “New command set A is merged onto the old command set B to form ?”.
-Below are the available merge types and how they work. Names are partly borrowed from Set
+Below are the available merge types and how they work. Names are partly borrowed from Set
theory.
Union (default) - The two cmdsets are merged so that as many commands as possible from each
@@ -487,11 +487,11 @@ commands having any combination of the keys and/or aliases “kick”, “punch
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/Components/Command-System.html b/docs/1.0-dev/Components/Command-System.html
index 2161e37fae..16d5affca4 100644
--- a/docs/1.0-dev/Components/Command-System.html
+++ b/docs/1.0-dev/Components/Command-System.html
@@ -83,11 +83,11 @@
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/Components/Commands.html b/docs/1.0-dev/Components/Commands.html
index 9d5ca86901..781eb4001e 100644
--- a/docs/1.0-dev/Components/Commands.html
+++ b/docs/1.0-dev/Components/Commands.html
@@ -277,10 +277,10 @@ do whatever the command is supposed to do. This is the main body of the command.
from this method will be returned from the execution as a Twisted Deferred.
at_post_cmd() is called after func() to handle eventual cleanup.
-Finally, you should always make an informative doc
-string (__doc__) at the top of your
-class. This string is dynamically read by the Help System to create the help entry
-for this command. You should decide on a way to format your help and stick to that.
+Finally, you should always make an informative doc
+string (__doc__) at the top of
+your class. This string is dynamically read by the Help System to create the help
+entry for this command. You should decide on a way to format your help and stick to that.
Below is how you define a simple alternative “smile” command:
1
2
@@ -381,7 +381,7 @@ that the alias :get stone works but getstone gives you a ‘command not
found’ error) you can do so with the arg_regex property.
-The arg_regex is a raw regular expression string. The
+
The arg_regex is a raw regular expression string. The
regex will be compiled by the system at runtime. This allows you to customize how the part
immediately following the command name (or alias) must look in order for the parser to match for
this command. Some examples:
@@ -780,7 +780,7 @@ doing useful things.
Assorted notes¶
The return value of Command.func() is a Twisted
-deferred.
+deferred.
Evennia does not use this return value at all by default. If you do, you must
thus do so asynchronously, using callbacks.
1
@@ -860,11 +860,11 @@ on.
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/Components/Communications.html b/docs/1.0-dev/Components/Communications.html
index dfe36284d9..27dbb2251b 100644
--- a/docs/1.0-dev/Components/Communications.html
+++ b/docs/1.0-dev/Components/Communications.html
@@ -80,11 +80,11 @@ and is a building block for implementing other game systems. It’s used by the
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/Components/Components-Overview.html b/docs/1.0-dev/Components/Components-Overview.html
index dc9bc4d303..689163fe1a 100644
--- a/docs/1.0-dev/Components/Components-Overview.html
+++ b/docs/1.0-dev/Components/Components-Overview.html
@@ -179,11 +179,11 @@ than, the doc-strings of each component in the Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/Components/Connection-Screen.html b/docs/1.0-dev/Components/Connection-Screen.html
index 05a4fd2905..bd65fab1cf 100644
--- a/docs/1.0-dev/Components/Connection-Screen.html
+++ b/docs/1.0-dev/Components/Connection-Screen.html
@@ -113,11 +113,11 @@ tutorial section on how to add new commands to a default command set.
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/Components/EvEditor.html b/docs/1.0-dev/Components/EvEditor.html
index cf054be212..282efd8db6 100644
--- a/docs/1.0-dev/Components/EvEditor.html
+++ b/docs/1.0-dev/Components/EvEditor.html
@@ -321,11 +321,11 @@ editor can be useful if you want to test the code you have typed but add new lin
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/Components/EvMenu.html b/docs/1.0-dev/Components/EvMenu.html
index c59ca1e7b2..e9438ff69c 100644
--- a/docs/1.0-dev/Components/EvMenu.html
+++ b/docs/1.0-dev/Components/EvMenu.html
@@ -1351,11 +1351,11 @@ until the exit node.
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/Components/EvMore.html b/docs/1.0-dev/Components/EvMore.html
index e9073533df..955a888d27 100644
--- a/docs/1.0-dev/Components/EvMore.html
+++ b/docs/1.0-dev/Components/EvMore.html
@@ -114,11 +114,11 @@ paging.
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/Components/FuncParser.html b/docs/1.0-dev/Components/FuncParser.html
index 2297344098..4f7380c45d 100644
--- a/docs/1.0-dev/Components/FuncParser.html
+++ b/docs/1.0-dev/Components/FuncParser.html
@@ -514,11 +514,11 @@ all the defaults (like Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/Components/Help-System.html b/docs/1.0-dev/Components/Help-System.html
index 99ea4b7b95..ffda81241d 100644
--- a/docs/1.0-dev/Components/Help-System.html
+++ b/docs/1.0-dev/Components/Help-System.html
@@ -537,11 +537,11 @@ at that point).
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/Components/Inputfuncs.html b/docs/1.0-dev/Components/Inputfuncs.html
index 890b07ba8e..f9ac0535e8 100644
--- a/docs/1.0-dev/Components/Inputfuncs.html
+++ b/docs/1.0-dev/Components/Inputfuncs.html
@@ -274,11 +274,11 @@ add more. By default the following fields/attributes can be monitored:
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/Components/Locks.html b/docs/1.0-dev/Components/Locks.html
index 94651ab753..006afd94c1 100644
--- a/docs/1.0-dev/Components/Locks.html
+++ b/docs/1.0-dev/Components/Locks.html
@@ -499,11 +499,11 @@ interface. It’s stand-alone from the permissions described above.
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/Components/MonitorHandler.html b/docs/1.0-dev/Components/MonitorHandler.html
index 9c80681bf9..7a434f04aa 100644
--- a/docs/1.0-dev/Components/MonitorHandler.html
+++ b/docs/1.0-dev/Components/MonitorHandler.html
@@ -171,11 +171,11 @@ the monitor to remove:
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/Components/Msg.html b/docs/1.0-dev/Components/Msg.html
index 7d6e5bb146..88ecb757e9 100644
--- a/docs/1.0-dev/Components/Msg.html
+++ b/docs/1.0-dev/Components/Msg.html
@@ -177,11 +177,11 @@ it.
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/Components/Nicks.html b/docs/1.0-dev/Components/Nicks.html
index fa632875c0..ae96ead358 100644
--- a/docs/1.0-dev/Components/Nicks.html
+++ b/docs/1.0-dev/Components/Nicks.html
@@ -210,11 +210,11 @@ basically the unchanged strings you enter to the Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/Components/Objects.html b/docs/1.0-dev/Components/Objects.html
index c98fdbbaab..8c4eafed4c 100644
--- a/docs/1.0-dev/Components/Objects.html
+++ b/docs/1.0-dev/Components/Objects.html
@@ -279,11 +279,11 @@ and display this as an error message. If this is not found, the Exit will instea
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/Components/Outputfuncs.html b/docs/1.0-dev/Components/Outputfuncs.html
index 4c5e970eeb..91374df26f 100644
--- a/docs/1.0-dev/Components/Outputfuncs.html
+++ b/docs/1.0-dev/Components/Outputfuncs.html
@@ -74,11 +74,11 @@
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/Components/Permissions.html b/docs/1.0-dev/Components/Permissions.html
index 2dcf41783c..c5c3eaf6cd 100644
--- a/docs/1.0-dev/Components/Permissions.html
+++ b/docs/1.0-dev/Components/Permissions.html
@@ -202,11 +202,11 @@ superuser can quell their powers this way, making them affectable by locks.
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/Components/Portal-And-Server.html b/docs/1.0-dev/Components/Portal-And-Server.html
index 8a370d866c..34b183fb72 100644
--- a/docs/1.0-dev/Components/Portal-And-Server.html
+++ b/docs/1.0-dev/Components/Portal-And-Server.html
@@ -82,11 +82,11 @@ This allows the two programs to communicate seamlessly.
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/Components/Prototypes.html b/docs/1.0-dev/Components/Prototypes.html
index 5ca75d0520..23e4728352 100644
--- a/docs/1.0-dev/Components/Prototypes.html
+++ b/docs/1.0-dev/Components/Prototypes.html
@@ -411,11 +411,11 @@ the api docs.
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/Components/Scripts.html b/docs/1.0-dev/Components/Scripts.html
index 6191fe49b1..ae157560d0 100644
--- a/docs/1.0-dev/Components/Scripts.html
+++ b/docs/1.0-dev/Components/Scripts.html
@@ -595,11 +595,11 @@ traceback occurred in your script.
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/Components/Server-Conf.html b/docs/1.0-dev/Components/Server-Conf.html
index c5859e37ba..f8e296e61b 100644
--- a/docs/1.0-dev/Components/Server-Conf.html
+++ b/docs/1.0-dev/Components/Server-Conf.html
@@ -115,10 +115,10 @@ statistics such as number of online accounts and online status.
portal_services_plugin.py - this allows for adding your own custom services/protocols to the
Portal. It must define one particular function that will be called by Evennia at startup. There can
be any number of service plugin modules, all will be imported and used if defined. More info can be
-found here.
+found here.
server_services_plugin.py - this is equivalent to the previous one, but used for adding new
services to the Server instead. More info can be found
-here.
+here.
Some other Evennia systems can be customized by plugin modules but has no explicit template in
conf/:
@@ -184,11 +184,11 @@ know about if you are an Evennia developer.
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/Components/Server.html b/docs/1.0-dev/Components/Server.html
index 3c713b6945..3674ffbe41 100644
--- a/docs/1.0-dev/Components/Server.html
+++ b/docs/1.0-dev/Components/Server.html
@@ -74,11 +74,11 @@
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/Components/Sessions.html b/docs/1.0-dev/Components/Sessions.html
index 26550b612a..02e188b4ce 100644
--- a/docs/1.0-dev/Components/Sessions.html
+++ b/docs/1.0-dev/Components/Sessions.html
@@ -264,11 +264,11 @@ module for details on the capabilities of the Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/Components/Signals.html b/docs/1.0-dev/Components/Signals.html
index c12bf20c21..43d7666147 100644
--- a/docs/1.0-dev/Components/Signals.html
+++ b/docs/1.0-dev/Components/Signals.html
@@ -197,11 +197,11 @@ decorator (only relevant for unit testing)
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/Components/Tags.html b/docs/1.0-dev/Components/Tags.html
index 2c83d147b0..bf5e0a2d67 100644
--- a/docs/1.0-dev/Components/Tags.html
+++ b/docs/1.0-dev/Components/Tags.html
@@ -277,11 +277,11 @@ is found in the Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/Components/TickerHandler.html b/docs/1.0-dev/Components/TickerHandler.html
index 1376cdc0c7..3c33a23d08 100644
--- a/docs/1.0-dev/Components/TickerHandler.html
+++ b/docs/1.0-dev/Components/TickerHandler.html
@@ -204,11 +204,11 @@ same time without input from something else.
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/Components/Typeclasses.html b/docs/1.0-dev/Components/Typeclasses.html
index 94a5dcfafc..a3054d0515 100644
--- a/docs/1.0-dev/Components/Typeclasses.html
+++ b/docs/1.0-dev/Components/Typeclasses.html
@@ -429,11 +429,11 @@ comments for examples and solutions.
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/Components/Web-API.html b/docs/1.0-dev/Components/Web-API.html
index 87910bcb6b..3773003dd5 100644
--- a/docs/1.0-dev/Components/Web-API.html
+++ b/docs/1.0-dev/Components/Web-API.html
@@ -193,11 +193,11 @@ copy over evennia/w
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/Components/Web-Admin.html b/docs/1.0-dev/Components/Web-Admin.html
index a00c65c4cb..4e740c698b 100644
--- a/docs/1.0-dev/Components/Web-Admin.html
+++ b/docs/1.0-dev/Components/Web-Admin.html
@@ -246,11 +246,11 @@ following to your m
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/Components/Webclient.html b/docs/1.0-dev/Components/Webclient.html
index 5299ff57b6..c4ad793ae2 100644
--- a/docs/1.0-dev/Components/Webclient.html
+++ b/docs/1.0-dev/Components/Webclient.html
@@ -339,11 +339,11 @@ window.plugin_handler.add("myplugin", myplugin);
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/Components/Webserver.html b/docs/1.0-dev/Components/Webserver.html
index 72c4684d2e..838de8881c 100644
--- a/docs/1.0-dev/Components/Webserver.html
+++ b/docs/1.0-dev/Components/Webserver.html
@@ -153,11 +153,11 @@ come back or you reload it manually in your browser.
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/Components/Website.html b/docs/1.0-dev/Components/Website.html
index db7e078b46..95144d5296 100644
--- a/docs/1.0-dev/Components/Website.html
+++ b/docs/1.0-dev/Components/Website.html
@@ -504,11 +504,11 @@ on the Django website - it covers all you need.
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/Concepts/Async-Process.html b/docs/1.0-dev/Concepts/Async-Process.html
index 0f594a740f..e44cf79213 100644
--- a/docs/1.0-dev/Concepts/Async-Process.html
+++ b/docs/1.0-dev/Concepts/Async-Process.html
@@ -291,7 +291,7 @@ expected, but they may appear with delays or in groups.
Further reading¶
Technically, run_async is just a very thin and simplified wrapper around a
-Twisted Deferred object; the
+Twisted Deferred object; the
wrapper sets
up a default errback also if none is supplied. If you know what you are doing there is nothing
stopping you from bypassing the utility function, building a more sophisticated callback chain after
@@ -343,11 +343,11 @@ your own liking.
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/Concepts/Banning.html b/docs/1.0-dev/Concepts/Banning.html
index 2446d28cd7..abf8d3e011 100644
--- a/docs/1.0-dev/Concepts/Banning.html
+++ b/docs/1.0-dev/Concepts/Banning.html
@@ -229,11 +229,11 @@ objects on the fly. For advanced users.
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/Concepts/Bootstrap-&-Evennia.html b/docs/1.0-dev/Concepts/Bootstrap-&-Evennia.html
index e19df1f827..2ffb95b597 100644
--- a/docs/1.0-dev/Concepts/Bootstrap-&-Evennia.html
+++ b/docs/1.0-dev/Concepts/Bootstrap-&-Evennia.html
@@ -181,11 +181,11 @@ started/introduction/) or read one of our other web tutorials.
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/Concepts/Building-Permissions.html b/docs/1.0-dev/Concepts/Building-Permissions.html
index cab2f61f8a..86baf79581 100644
--- a/docs/1.0-dev/Concepts/Building-Permissions.html
+++ b/docs/1.0-dev/Concepts/Building-Permissions.html
@@ -151,11 +151,11 @@ levels. Note that you cannot escalate your permissions this way; If the Characte
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/Concepts/Clickable-Links.html b/docs/1.0-dev/Concepts/Clickable-Links.html
index f28dcd9b9c..9d3405e8be 100644
--- a/docs/1.0-dev/Concepts/Clickable-Links.html
+++ b/docs/1.0-dev/Concepts/Clickable-Links.html
@@ -90,11 +90,11 @@ will be shown.
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/Concepts/Colors.html b/docs/1.0-dev/Concepts/Colors.html
index 1e12477156..fd5694576a 100644
--- a/docs/1.0-dev/Concepts/Colors.html
+++ b/docs/1.0-dev/Concepts/Colors.html
@@ -258,11 +258,11 @@ use of ANSI color tags and the pitfalls of mixing ANSI and Xterms256 color tags
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/Concepts/Concepts-Overview.html b/docs/1.0-dev/Concepts/Concepts-Overview.html
index 5666c43073..6fcda6ca12 100644
--- a/docs/1.0-dev/Concepts/Concepts-Overview.html
+++ b/docs/1.0-dev/Concepts/Concepts-Overview.html
@@ -138,11 +138,11 @@
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/Concepts/Custom-Protocols.html b/docs/1.0-dev/Concepts/Custom-Protocols.html
index aadc2a3a3d..a8d02cf4d8 100644
--- a/docs/1.0-dev/Concepts/Custom-Protocols.html
+++ b/docs/1.0-dev/Concepts/Custom-Protocols.html
@@ -420,11 +420,11 @@ ways.
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/Concepts/Guest-Logins.html b/docs/1.0-dev/Concepts/Guest-Logins.html
index 16d4e7b8c8..8020d6a2d2 100644
--- a/docs/1.0-dev/Concepts/Guest-Logins.html
+++ b/docs/1.0-dev/Concepts/Guest-Logins.html
@@ -98,11 +98,11 @@ of nine names from
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/Concepts/Internationalization.html b/docs/1.0-dev/Concepts/Internationalization.html
index ab81cd90e8..2d9a2814f6 100644
--- a/docs/1.0-dev/Concepts/Internationalization.html
+++ b/docs/1.0-dev/Concepts/Internationalization.html
@@ -260,11 +260,11 @@ instead.
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/Concepts/Messagepath.html b/docs/1.0-dev/Concepts/Messagepath.html
index 8f5debf96a..f537bd860f 100644
--- a/docs/1.0-dev/Concepts/Messagepath.html
+++ b/docs/1.0-dev/Concepts/Messagepath.html
@@ -294,11 +294,11 @@ may trigger changes in the GUI or play a sound etc.
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/Concepts/Multisession-modes.html b/docs/1.0-dev/Concepts/Multisession-modes.html
index c622c0c3af..6080619a58 100644
--- a/docs/1.0-dev/Concepts/Multisession-modes.html
+++ b/docs/1.0-dev/Concepts/Multisession-modes.html
@@ -74,11 +74,11 @@
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/Concepts/New-Models.html b/docs/1.0-dev/Concepts/New-Models.html
index af4289634b..dce416b103 100644
--- a/docs/1.0-dev/Concepts/New-Models.html
+++ b/docs/1.0-dev/Concepts/New-Models.html
@@ -361,11 +361,11 @@ lot more information about querying the database.
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/Concepts/OOB.html b/docs/1.0-dev/Concepts/OOB.html
index 1692c33660..db3ede0823 100644
--- a/docs/1.0-dev/Concepts/OOB.html
+++ b/docs/1.0-dev/Concepts/OOB.html
@@ -112,16 +112,16 @@ translations described below.
Telnet + GMCP¶
-GMCP, the Generic Mud Communication Protocol sends data on the
+
GMCP, the Generic Mud Communication Protocol sends data on the
form cmdname + JSONdata. Here the cmdname is expected to be on the form “Package.Subpackage”.
There could also be additional Sub-sub packages etc. The names of these ‘packages’ and ‘subpackages’
are not that well standardized beyond what individual MUDs or companies have chosen to go with over
the years. You can decide on your own package names, but here are what others are using:
-
-
-
-
+
+
+
+
Evennia will translate underscores to . and capitalize to fit the specification. So the
outputcommand foo_bar will become a GMCP command-name Foo.Bar. A GMCP command “Foo.Bar” will be
@@ -259,11 +259,11 @@ same example ("
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/Concepts/Soft-Code.html b/docs/1.0-dev/Concepts/Soft-Code.html
index 473b63dedc..a2f6952ec3 100644
--- a/docs/1.0-dev/Concepts/Soft-Code.html
+++ b/docs/1.0-dev/Concepts/Soft-Code.html
@@ -72,8 +72,8 @@ This shorter version looks like this:
(me, which is yourself in this case). This should yield the same output as the first example.
If you are still curious about how Softcode works, take a look at some external resources:
-http://www.tinymux.com/wiki/index.php/Softcode
-http://www.duh.com/discordia/mushman/man2x1
+https://wiki.tinymux.org/index.php/Softcode
+https://www.duh.com/discordia/mushman/man2x1
@@ -166,11 +166,11 @@ pseudo-softcode plugin aimed at developers wanting to script their game from ins
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/Concepts/Text-Encodings.html b/docs/1.0-dev/Concepts/Text-Encodings.html
index 6c4940bc71..1fc5ce4739 100644
--- a/docs/1.0-dev/Concepts/Text-Encodings.html
+++ b/docs/1.0-dev/Concepts/Text-Encodings.html
@@ -95,7 +95,7 @@ error message.
unneccesary overhead. Try to guess the most common encodings you players will
use and make sure these are tried first. The International UTF-8 encoding is
what Evennia assumes by default (and also what Python/Django use normally). See
-the Wikipedia article here for more help.
+the Wikipedia article here for more help.
@@ -138,11 +138,11 @@ the Wikipedia article Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/Concepts/TextTags.html b/docs/1.0-dev/Concepts/TextTags.html
index 5b55f2754b..5a5f244ecc 100644
--- a/docs/1.0-dev/Concepts/TextTags.html
+++ b/docs/1.0-dev/Concepts/TextTags.html
@@ -114,11 +114,11 @@ circumstances. The parser is run on all outgoing messages if Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/Concepts/Using-MUX-as-a-Standard.html b/docs/1.0-dev/Concepts/Using-MUX-as-a-Standard.html
index 3e3f144a9f..5e7c570e30 100644
--- a/docs/1.0-dev/Concepts/Using-MUX-as-a-Standard.html
+++ b/docs/1.0-dev/Concepts/Using-MUX-as-a-Standard.html
@@ -44,10 +44,10 @@
you could emulate that with Evennia. If you are ambitious you could even design a whole new style,
perfectly fitting your own dreams of the ideal game.
We do offer a default however. The default Evennia setup tends to resemble
-MUX2, and its cousins PennMUSH,
-TinyMUSH, and RhostMUSH. While the
-reason for this similarity is partly historical, these codebases offer very mature feature sets for
-administration and building.
+MUX2, and its cousins PennMUSH,
+TinyMUSH, and RhostMUSH.
+While the reason for this similarity is partly historical, these codebases offer very mature feature
+sets for administration and building.
Evennia is not a MUX system though. It works very differently in many ways. For example, Evennia
deliberately lacks an online softcode language (a policy explained on our softcode policy
page). Evennia also does not shy from using its own syntax when deemed appropriate: the
@@ -193,11 +193,11 @@ something to the effect of
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/Concepts/Web-Features.html b/docs/1.0-dev/Concepts/Web-Features.html
index 2f671570f9..455a4393e7 100644
--- a/docs/1.0-dev/Concepts/Web-Features.html
+++ b/docs/1.0-dev/Concepts/Web-Features.html
@@ -219,11 +219,11 @@ implementation, the relevant django “applications” in default Evennia are Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/Concepts/Zones.html b/docs/1.0-dev/Concepts/Zones.html
index 374338bd6b..555d5e9994 100644
--- a/docs/1.0-dev/Concepts/Zones.html
+++ b/docs/1.0-dev/Concepts/Zones.html
@@ -128,11 +128,11 @@ properly search the inheritance tree.
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/Contribs/A-voice-operated-elevator-using-events.html b/docs/1.0-dev/Contribs/A-voice-operated-elevator-using-events.html
index 4159109d39..a120fde4ac 100644
--- a/docs/1.0-dev/Contribs/A-voice-operated-elevator-using-events.html
+++ b/docs/1.0-dev/Contribs/A-voice-operated-elevator-using-events.html
@@ -567,11 +567,11 @@ shown in the next tutorial.
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/Contribs/Arxcode-installing-help.html b/docs/1.0-dev/Contribs/Arxcode-installing-help.html
index f5c63decca..6a1b5db063 100644
--- a/docs/1.0-dev/Contribs/Arxcode-installing-help.html
+++ b/docs/1.0-dev/Contribs/Arxcode-installing-help.html
@@ -42,8 +42,8 @@
Arxcode installing help¶
Introduction¶
-Arx - After the Reckoning is a big and very popular
-Evennia-based game. Arx is heavily roleplaying-centric, relying on game
+
Arx - After the Reckoning is a big and very popular
+Evennia-based game. Arx is heavily roleplaying-centric, relying on game
masters to drive the story. Technically it’s maybe best described as “a MUSH, but with more coded
systems”. In August of 2018, the game’s developer, Tehom, generously released the source code of
Arx on github. This is a treasure-trove for developers wanting
@@ -59,7 +59,7 @@ better match with the vanilla Evennia install.
Installing Evennia¶
Firstly, set aside a folder/directory on your drive for everything to follow.
-You need to start by installing Evennia by following most of the
+
You need to start by installing Evennia by following most of the
Getting Started Instructions for your OS. The difference is that you need to git clone https://github.com/TehomCD/evennia.git instead of Evennia’s repo because Arx uses TehomCD’s older
Evennia 0.8 fork, notably still using Python2. This detail is
important if referring to newer Evennia documentation.
@@ -231,7 +231,7 @@ process is a little bit trickier.
Git for Windows https://git-scm.com/download/win
Anaconda for Windows https://www.anaconda.com/distribution/
-VC++ Compiler for Python 2.7 http://aka.ms/vcpython27
+VC++ Compiler for Python 2.7 https://aka.ms/vcpython27
conda update conda
conda create -n arx python=2.7
@@ -325,11 +325,11 @@ on localhost at port 4000, and the webserver at http://localhost:4001/
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/Contribs/Building-menus.html b/docs/1.0-dev/Contribs/Building-menus.html
index 73cec8beeb..48a81a9a3b 100644
--- a/docs/1.0-dev/Contribs/Building-menus.html
+++ b/docs/1.0-dev/Contribs/Building-menus.html
@@ -285,7 +285,7 @@ the RoomBuildingMen
probably not appear in your MUD client):
> look
Limbo(#2)
-Welcome to your new Evennia-based game! Visit http://www.evennia.com if you need
+Welcome to your new Evennia-based game! Visit https://www.evennia.com if you need
help, want to contribute, report issues or just join the community.
As Account #1 you can create a demo/tutorial area with @batchcommand tutorial_world.build.
@@ -337,7 +337,7 @@ Closing the building menu.
> look
A beautiful meadow(#2)
-Welcome to your new Evennia-based game! Visit http://www.evennia.com if you need
+Welcome to your new Evennia-based game! Visit https://www.evennia.com if you need
help, want to contribute, report issues or just join the community.
As Account #1 you can create a demo/tutorial area with @batchcommand tutorial_world.build.
@@ -467,7 +467,7 @@ Building menu: A beautiful meadow
[K]ey: A beautiful meadow
[D]escription:
- Welcome to your new Evennia-based game! Visit http://www.evennia.com if you need
+ Welcome to your new Evennia-based game! Visit https://www.evennia.com if you need
help, want to contribute, report issues or just join the community.
As Account #1 you can create a demo/tutorial area with @batchcommand tutorial_world.build.
[Q]uit this editor
@@ -475,7 +475,7 @@ As Account #1 you can create a demo/tutorial area with @batchcommand tutorial_wo
> d
----------Line Editor [editor]----------------------------------------------------
-01| Welcome to your new |wEvennia|n-based game! Visit http://www.evennia.com if you need
+01| Welcome to your new |wEvennia|n-based game! Visit https://www.evennia.com if you need
02| help, want to contribute, report issues or just join the community.
03| As Account #1 you can create a demo/tutorial area with |w@batchcommand tutorial_world.build|n.
@@ -1677,11 +1677,11 @@ exhaustive but user-friendly.
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/Contribs/Contrib-Overview.html b/docs/1.0-dev/Contribs/Contrib-Overview.html
index 0532e49798..6ed8a8f132 100644
--- a/docs/1.0-dev/Contribs/Contrib-Overview.html
+++ b/docs/1.0-dev/Contribs/Contrib-Overview.html
@@ -431,11 +431,11 @@ want to solve the puzzles and mystery yourself).
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/Contribs/Crafting.html b/docs/1.0-dev/Contribs/Crafting.html
index 91b2ccd56a..d2448664b6 100644
--- a/docs/1.0-dev/Contribs/Crafting.html
+++ b/docs/1.0-dev/Contribs/Crafting.html
@@ -333,11 +333,11 @@ from this rather than the more opinionated Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/Contribs/Dialogues-in-events.html b/docs/1.0-dev/Contribs/Dialogues-in-events.html
index 40afc07c1b..5bc7728ecc 100644
--- a/docs/1.0-dev/Contribs/Dialogues-in-events.html
+++ b/docs/1.0-dev/Contribs/Dialogues-in-events.html
@@ -338,11 +338,11 @@ events).
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/Contribs/Dynamic-In-Game-Map.html b/docs/1.0-dev/Contribs/Dynamic-In-Game-Map.html
index 36e40f2e4c..b211b0d44b 100644
--- a/docs/1.0-dev/Contribs/Dynamic-In-Game-Map.html
+++ b/docs/1.0-dev/Contribs/Dynamic-In-Game-Map.html
@@ -812,11 +812,11 @@ also look into up/down directions and figure out how to display that in a good w
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/Contribs/Static-In-Game-Map.html b/docs/1.0-dev/Contribs/Static-In-Game-Map.html
index 24d0c55dbb..8541b436bc 100644
--- a/docs/1.0-dev/Contribs/Static-In-Game-Map.html
+++ b/docs/1.0-dev/Contribs/Static-In-Game-Map.html
@@ -99,10 +99,10 @@ external to the game itself.
you’ve ever selected the Wingdings font in Microsoft Word
you will know there are a multitude of other characters around to use. When creating your game with
Evennia you have access to the UTF-8 character encoding which
-put at your disposal thousands of letters, number and geometric shapes.
+put at your disposal thousands of letters, number and geometric shapes.
For this exercise, we’ve copy-and-pasted from the pallet of special characters used over at
-Dwarf Fortress to create what is hopefully a
-pleasing and easy to understood landscape:
+Dwarf Fortress to create what is hopefully
+a pleasing and easy to understood landscape:
≈≈↑↑↑↑↑∩∩
≈≈↑╔═╗↑∩∩ Places the account can visit are indicated by "O".
≈≈↑║O║↑∩∩ Up the top is a castle visitable by the account.
@@ -695,11 +695,11 @@ Tutorial), Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/Contribs/XYZGrid.html b/docs/1.0-dev/Contribs/XYZGrid.html
index b5abbe1a36..85a8bc4b1d 100644
--- a/docs/1.0-dev/Contribs/XYZGrid.html
+++ b/docs/1.0-dev/Contribs/XYZGrid.html
@@ -1556,11 +1556,11 @@ apply the changes.
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/Contributing-Docs.html b/docs/1.0-dev/Contributing-Docs.html
index f1dcb843fb..30e0654fef 100644
--- a/docs/1.0-dev/Contributing-Docs.html
+++ b/docs/1.0-dev/Contributing-Docs.html
@@ -742,8 +742,8 @@ to understand our friendly Google-style docstrings used in classes and functions
recommonmark
commonmark
commonmark-help
-sphinx-autodoc
-sphinx-napoleon
+sphinx-autodoc
+sphinx-napoleon
[getting-started]: Setup/Setup-Quickstart
[contributing]: ./Contributing
ReST
@@ -838,11 +838,11 @@ to understand our friendly Google-style docstrings used in classes and functions
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/Contributing.html b/docs/1.0-dev/Contributing.html
index 3185102cdc..5655b9af09 100644
--- a/docs/1.0-dev/Contributing.html
+++ b/docs/1.0-dev/Contributing.html
@@ -90,7 +90,7 @@ the develop<
above. But for small, well isolated fixes you are also welcome to submit your suggested Evennia
fixes/addendums as a [patch][patch].
You can include your patch in an Issue or a Mailing list post. Please avoid pasting the full patch
-text directly in your post though, best is to use a site like Pastebin and
+text directly in your post though, best is to use a site like Pastebin and
just supply the link.
@@ -197,11 +197,11 @@ UBBFWIuVDEZxC0M_2pM6ywO&dispatch=5885d80a13c0db1f8e263663d3faee8d66f31424b43
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/Evennia-API.html b/docs/1.0-dev/Evennia-API.html
index 40cdc76f8f..339db78fc9 100644
--- a/docs/1.0-dev/Evennia-API.html
+++ b/docs/1.0-dev/Evennia-API.html
@@ -222,11 +222,11 @@ game-specific contributions and plugins (Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/Evennia-Introduction.html b/docs/1.0-dev/Evennia-Introduction.html
index d8b2edadb0..023183c2de 100644
--- a/docs/1.0-dev/Evennia-Introduction.html
+++ b/docs/1.0-dev/Evennia-Introduction.html
@@ -54,10 +54,10 @@ Domain) is a multiplayer real-time virtual world described primarily in text. MU
of role-playing games, hack and slash, player versus player, interactive fiction and online chat.
Players can read or view descriptions of rooms, objects, other players, non-player characters, and
actions performed in the virtual world. Players typically interact with each other and the world by
-typing commands that resemble a natural language. - Wikipedia
+typing commands that resemble a natural language. - Wikipedia
If you are reading this, it’s quite likely you are dreaming of creating and running a text-based
-massively-multiplayer game (MUD/MUX/MUSH etc) of your very own. You
+massively-multiplayer game (MUD/MUX/MUSH etc) of your very own. You
might just be starting to think about it, or you might have lugged around that perfect game in
your mind for years … you know just how good it would be, if you could only make it come to
reality. We know how you feel. That is, after all, why Evennia came to be.
@@ -120,17 +120,17 @@ page for some reading suggestions. To efficiently code your dream game in
Evennia you don’t need to be a Python guru, but you do need to be able to read example code
containing at least these basic Python features:
-Importing and using python modules
-Using variables, conditional
+Importing and using python modules
+Using variables, conditional
statements,
-loops and
-functions
-Using lists, dictionaries and list
+loops and
+functions
+
-
-Have a basic understanding of object-oriented
+
+Have a basic understanding of object-oriented
programming, using
-Classes, their methods and properties
+Classes, their methods and properties
Obviously, the more things you feel comfortable with, the easier time you’ll have to find your way.
With just basic knowledge you should be able to define your own Commands, create custom
@@ -158,10 +158,10 @@ structure.
Get engaged in the community. Make an introductory post to our mailing
list/forum and get to know people. It’s also
-highly recommended you hop onto our Developer
+highly recommended you hop onto our Developer
chat
on IRC. This allows you to chat directly with other developers new and old as well as with the devs
-of Evennia itself. This chat is logged (you can find links on http://www.evennia.com) and can also
+of Evennia itself. This chat is logged (you can find links on https://www.evennia.com) and can also
be searched from the same place for discussion topics you are interested in.
Read the Game Planning wiki page. It gives some ideas for your work flow and the
state of mind you should aim for - including cutting down the scope of your game for its first
@@ -226,11 +226,11 @@ your own game, you will end up with a small (very small) game that you can build
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/Glossary.html b/docs/1.0-dev/Glossary.html
index c660aedcad..7223614ebf 100644
--- a/docs/1.0-dev/Glossary.html
+++ b/docs/1.0-dev/Glossary.html
@@ -462,11 +462,11 @@ activated whenever you want to use the Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/How-To-Get-And-Give-Help.html b/docs/1.0-dev/How-To-Get-And-Give-Help.html
index 0c50e89d08..0316cc3f38 100644
--- a/docs/1.0-dev/How-To-Get-And-Give-Help.html
+++ b/docs/1.0-dev/How-To-Get-And-Give-Help.html
@@ -57,11 +57,11 @@
the list of known issue if you can’t find your issue in the list, make a
new one here.
If you need help, want to start a discussion or get some input on something you are working on,
-make a post to the discussions group This is technically a ‘mailing list’, but you don’t
+make a post to the discussions group This is technically a ‘mailing list’, but you don’t
need to use e-mail; you can post and read all messages just as easily from your browser via the
online interface.
If you want more direct discussions with developers and other users, consider dropping into our
-IRC chat channel #evennia on the Freenode network. There is also a Discord channel
+IRC chat channel #evennia on the Freenode network. There is also a Discord channel
bridged into the IRC if you prefer that. Please that you have to be
patient if you don’t get any response immediately; we are all in very different time zones and many
have busy personal lives. So you might have to hang around for a while - you’ll get noticed
@@ -73,7 +73,7 @@ eventually!
Evennia is open-source and non-commercial. It relies on the time donated by its users and developers in order to progress.
Spread the word! If you like Evennia, consider writing a blog post about it.
-
+
Report problems you find or features you’d like to our issue tracker.
@@ -85,7 +85,7 @@ eventually!
Look through this online documentation and see if you can help improve or expand the
documentation (even small things like fixing typos!). See here on how you
contribute to the docs.
-Send a message to our discussion group and/or our IRC chat asking about what
+
Send a message to our discussion group and/or our IRC chat asking about what
needs doing, along with what your interests and skills are.
Take a look at our issue tracker and see if there’s something you feel like taking on.
here are bugs that need fixes. At any given time there may also be some
@@ -147,11 +147,11 @@ issues by putting up a monetary Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/Howto/Add-a-wiki-on-your-website.html b/docs/1.0-dev/Howto/Add-a-wiki-on-your-website.html
index f5e42e0e27..4d1ac1e9c8 100644
--- a/docs/1.0-dev/Howto/Add-a-wiki-on-your-website.html
+++ b/docs/1.0-dev/Howto/Add-a-wiki-on-your-website.html
@@ -46,13 +46,13 @@
This tutorial will provide a step-by-step process to installing a wiki on your website.
Fortunately, you don’t have to create the features manually, since it has been done by others, and
we can integrate their work quite easily with Django. I have decided to focus on
-the Django-wiki.
+the Django-wiki.
Note: this article has been updated for Evennia 0.9. If you’re not yet using this version, be
careful, as the django wiki doesn’t support Python 2 anymore. (Remove this note when enough time
has passed.)
-The Django-wiki offers a lot of features associated with
+
The Django-wiki offers a lot of features associated with
wikis, is
actively maintained (at this time, anyway), and isn’t too difficult to install in Evennia. You can
see a demonstration of Django-wiki here.
@@ -401,11 +401,11 @@ necessary. If you’re interested in supporting this little project, you are mo
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/Howto/Building-a-mech-tutorial.html b/docs/1.0-dev/Howto/Building-a-mech-tutorial.html
index 23b386757d..fd630d1b42 100644
--- a/docs/1.0-dev/Howto/Building-a-mech-tutorial.html
+++ b/docs/1.0-dev/Howto/Building-a-mech-tutorial.html
@@ -376,11 +376,11 @@ shooting goodness would be made available to you only when you enter it.
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/Howto/Coding-FAQ.html b/docs/1.0-dev/Howto/Coding-FAQ.html
index 4c37018c6a..511e8590ed 100644
--- a/docs/1.0-dev/Howto/Coding-FAQ.html
+++ b/docs/1.0-dev/Howto/Coding-FAQ.html
@@ -583,11 +583,11 @@ discussion where some suitable fonts are suggested.
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/Howto/Command-Cooldown.html b/docs/1.0-dev/Howto/Command-Cooldown.html
index 44d73ac133..3a0b2fed13 100644
--- a/docs/1.0-dev/Howto/Command-Cooldown.html
+++ b/docs/1.0-dev/Howto/Command-Cooldown.html
@@ -217,11 +217,11 @@ other types of attacks for a while before the warrior can recover.
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/Howto/Command-Duration.html b/docs/1.0-dev/Howto/Command-Duration.html
index 150e95bbef..553be52df3 100644
--- a/docs/1.0-dev/Howto/Command-Duration.html
+++ b/docs/1.0-dev/Howto/Command-Duration.html
@@ -195,7 +195,7 @@ here.
alternative to some more familiar thing like time.sleep(10). This is not the case. If you do
time.sleep(10) you will in fact freeze the entire server for ten seconds! The utils.delay()is
a thin wrapper around a Twisted
-Deferred that will delay
+Deferred that will delay
execution until 10 seconds have passed, but will do so asynchronously, without bothering anyone else
(not even you - you can continue to do stuff normally while it waits to continue).
The point to remember here is that the delay() call will not “pause” at that point when it is
@@ -704,11 +704,11 @@ callback when the server comes back up (it will resume the countdown and ignore
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/Howto/Command-Prompt.html b/docs/1.0-dev/Howto/Command-Prompt.html
index 45e741992e..793732b6d0 100644
--- a/docs/1.0-dev/Howto/Command-Prompt.html
+++ b/docs/1.0-dev/Howto/Command-Prompt.html
@@ -262,11 +262,11 @@ directly the easiest way is to just wrap those with a multiple inheritance to yo
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/Howto/Coordinates.html b/docs/1.0-dev/Howto/Coordinates.html
index dda9a31271..3d5f8408e2 100644
--- a/docs/1.0-dev/Howto/Coordinates.html
+++ b/docs/1.0-dev/Howto/Coordinates.html
@@ -565,11 +565,11 @@ square (E, G, M and O) are not in this circle. So we remove them.
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/Howto/Default-Exit-Errors.html b/docs/1.0-dev/Howto/Default-Exit-Errors.html
index e25ed18591..457c8f11c2 100644
--- a/docs/1.0-dev/Howto/Default-Exit-Errors.html
+++ b/docs/1.0-dev/Howto/Default-Exit-Errors.html
@@ -239,11 +239,11 @@ matching “north” exit-command.
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/Howto/Evennia-for-Diku-Users.html b/docs/1.0-dev/Howto/Evennia-for-Diku-Users.html
index 384e9dd2bd..62565b273c 100644
--- a/docs/1.0-dev/Howto/Evennia-for-Diku-Users.html
+++ b/docs/1.0-dev/Howto/Evennia-for-Diku-Users.html
@@ -344,11 +344,11 @@ your mob.
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/Howto/Evennia-for-MUSH-Users.html b/docs/1.0-dev/Howto/Evennia-for-MUSH-Users.html
index 37738182cd..af5c3d2d1e 100644
--- a/docs/1.0-dev/Howto/Evennia-for-MUSH-Users.html
+++ b/docs/1.0-dev/Howto/Evennia-for-MUSH-Users.html
@@ -40,7 +40,7 @@
Evennia for MUSH Users¶
-This page is adopted from an article originally posted for the MUSH community here on
+This page is adopted from an article originally posted for the MUSH community here on
musoapbox.net.
MUSHes are text multiplayer games traditionally used for
heavily roleplay-focused game styles. They are often (but not always) utilizing game masters and
@@ -184,7 +184,7 @@ commands) are available to the player from moment to moment depending on circums
Note that Python cares about indentation, so make sure to indent with the same number of spaces as
shown above!
-So what happens above? We import the
+So what happens above? We import the
module
evennia/contrib/multidescer.py at the top. Once imported we can access stuff inside that module
using full stop (.). The multidescer is defined as a class CmdMultiDesc (we could find this out
@@ -256,7 +256,7 @@ Tutorial). You may also find it useful to shop through the many more tutorials
to try out. If you feel you want a more visual overview you can also look at
Evennia in pictures.
-… And of course, if you need further help you can always drop into the Evennia
+… And of course, if you need further help you can always drop into the Evennia
chatroom
or post a question in our forum/mailing list!
@@ -309,11 +309,11 @@ or post a question in our Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/Howto/Evennia-for-roleplaying-sessions.html b/docs/1.0-dev/Howto/Evennia-for-roleplaying-sessions.html
index 381813a681..728d6e1ae6 100644
--- a/docs/1.0-dev/Howto/Evennia-for-roleplaying-sessions.html
+++ b/docs/1.0-dev/Howto/Evennia-for-roleplaying-sessions.html
@@ -1132,11 +1132,11 @@ when the message was sent.
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/Howto/Gametime-Tutorial.html b/docs/1.0-dev/Howto/Gametime-Tutorial.html
index 7490210093..d595f83286 100644
--- a/docs/1.0-dev/Howto/Gametime-Tutorial.html
+++ b/docs/1.0-dev/Howto/Gametime-Tutorial.html
@@ -457,11 +457,11 @@ same way as described for the default one above.
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/Howto/Help-System-Tutorial.html b/docs/1.0-dev/Howto/Help-System-Tutorial.html
index ae83134848..8f79cccb4a 100644
--- a/docs/1.0-dev/Howto/Help-System-Tutorial.html
+++ b/docs/1.0-dev/Howto/Help-System-Tutorial.html
@@ -658,11 +658,11 @@ themselves links to display their details.
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/Howto/Howto-Overview.html b/docs/1.0-dev/Howto/Howto-Overview.html
index b40fac70f1..33102d548b 100644
--- a/docs/1.0-dev/Howto/Howto-Overview.html
+++ b/docs/1.0-dev/Howto/Howto-Overview.html
@@ -235,11 +235,11 @@ in mind for your own game, this will give you a good start.
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/Howto/Manually-Configuring-Color.html b/docs/1.0-dev/Howto/Manually-Configuring-Color.html
index 3eda415455..bf9ff04a3a 100644
--- a/docs/1.0-dev/Howto/Manually-Configuring-Color.html
+++ b/docs/1.0-dev/Howto/Manually-Configuring-Color.html
@@ -295,11 +295,11 @@ regardless of if Evennia thinks their client supports it or not.
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/Howto/Mass-and-weight-for-objects.html b/docs/1.0-dev/Howto/Mass-and-weight-for-objects.html
index 6c3c5727bc..8bd2bfcb4a 100644
--- a/docs/1.0-dev/Howto/Mass-and-weight-for-objects.html
+++ b/docs/1.0-dev/Howto/Mass-and-weight-for-objects.html
@@ -206,11 +206,11 @@ the following message in the elevator’s appearance: Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/Howto/NPC-shop-Tutorial.html b/docs/1.0-dev/Howto/NPC-shop-Tutorial.html
index 789bd56c06..a6a66e32a0 100644
--- a/docs/1.0-dev/Howto/NPC-shop-Tutorial.html
+++ b/docs/1.0-dev/Howto/NPC-shop-Tutorial.html
@@ -555,11 +555,11 @@ it well stocked.
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/Howto/Parsing-commands-tutorial.html b/docs/1.0-dev/Howto/Parsing-commands-tutorial.html
index dbea3908f7..ff636a16a1 100644
--- a/docs/1.0-dev/Howto/Parsing-commands-tutorial.html
+++ b/docs/1.0-dev/Howto/Parsing-commands-tutorial.html
@@ -1067,11 +1067,11 @@ code.
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/Howto/Starting/Part1/Adding-Commands.html b/docs/1.0-dev/Howto/Starting/Part1/Adding-Commands.html
index 92d9b3a4f7..d407c7aa91 100644
--- a/docs/1.0-dev/Howto/Starting/Part1/Adding-Commands.html
+++ b/docs/1.0-dev/Howto/Starting/Part1/Adding-Commands.html
@@ -552,11 +552,11 @@ get into how we replace and extend Evennia’s default Commands.
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/Howto/Starting/Part1/Building-Quickstart.html b/docs/1.0-dev/Howto/Starting/Part1/Building-Quickstart.html
index b8aec19f43..e3cc7fef6b 100644
--- a/docs/1.0-dev/Howto/Starting/Part1/Building-Quickstart.html
+++ b/docs/1.0-dev/Howto/Starting/Part1/Building-Quickstart.html
@@ -394,11 +394,11 @@ example. Evennia comes with a tutorial world for you to explore. We will try tha
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/Howto/Starting/Part1/Creating-Things.html b/docs/1.0-dev/Howto/Starting/Part1/Creating-Things.html
index 198e2ed988..dd2f79303c 100644
--- a/docs/1.0-dev/Howto/Starting/Part1/Creating-Things.html
+++ b/docs/1.0-dev/Howto/Starting/Part1/Creating-Things.html
@@ -144,11 +144,11 @@ You can find the parent class for Accounts in Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/Howto/Starting/Part1/Django-queries.html b/docs/1.0-dev/Howto/Starting/Part1/Django-queries.html
index 8c5a54ca86..7089138c72 100644
--- a/docs/1.0-dev/Howto/Starting/Part1/Django-queries.html
+++ b/docs/1.0-dev/Howto/Starting/Part1/Django-queries.html
@@ -530,11 +530,11 @@ to understand how to plan what our tutorial game will be about.
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/Howto/Starting/Part1/Evennia-Library-Overview.html b/docs/1.0-dev/Howto/Starting/Part1/Evennia-Library-Overview.html
index 1ff38fc7df..5e07bdbd62 100644
--- a/docs/1.0-dev/Howto/Starting/Part1/Evennia-Library-Overview.html
+++ b/docs/1.0-dev/Howto/Starting/Part1/Evennia-Library-Overview.html
@@ -221,11 +221,11 @@ to look it up in the docs:
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/Howto/Starting/Part1/Gamedir-Overview.html b/docs/1.0-dev/Howto/Starting/Part1/Gamedir-Overview.html
index 9d18e192fb..85472a9fca 100644
--- a/docs/1.0-dev/Howto/Starting/Part1/Gamedir-Overview.html
+++ b/docs/1.0-dev/Howto/Starting/Part1/Gamedir-Overview.html
@@ -319,11 +319,11 @@ equipment, stats and looks.
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/Howto/Starting/Part1/Learning-Typeclasses.html b/docs/1.0-dev/Howto/Starting/Part1/Learning-Typeclasses.html
index e1d5fbe738..8792ea0cce 100644
--- a/docs/1.0-dev/Howto/Starting/Part1/Learning-Typeclasses.html
+++ b/docs/1.0-dev/Howto/Starting/Part1/Learning-Typeclasses.html
@@ -816,11 +816,11 @@ this tutorial. But that’s enough of them for now. It’s time to take some act
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/Howto/Starting/Part1/More-on-Commands.html b/docs/1.0-dev/Howto/Starting/Part1/More-on-Commands.html
index 8f072801c1..859427787c 100644
--- a/docs/1.0-dev/Howto/Starting/Part1/More-on-Commands.html
+++ b/docs/1.0-dev/Howto/Starting/Part1/More-on-Commands.html
@@ -738,11 +738,11 @@ command on ourselves.
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/Howto/Starting/Part1/Python-basic-introduction.html b/docs/1.0-dev/Howto/Starting/Part1/Python-basic-introduction.html
index cbbf624350..83251a0153 100644
--- a/docs/1.0-dev/Howto/Starting/Part1/Python-basic-introduction.html
+++ b/docs/1.0-dev/Howto/Starting/Part1/Python-basic-introduction.html
@@ -49,8 +49,8 @@
Starting to code Evennia¶
-Time to dip our toe into some coding! Evennia is written and extended in Python, which
-is a mature and professional programming language that is very fast to work with.
+Time to dip our toe into some coding! Evennia is written and extended in Python,
+which is a mature and professional programming language that is very fast to work with.
That said, even though Python is widely considered easy to learn, we can only cover the most immediately
important aspects of Python in this series of starting tutorials. Hopefully we can get you started
but then you’ll need to continue learning from there. See our link section for finding
@@ -719,11 +719,11 @@ Now let’s look at the rest of the stuff you’ve got going on inside that Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/Howto/Starting/Part1/Python-classes-and-objects.html b/docs/1.0-dev/Howto/Starting/Part1/Python-classes-and-objects.html
index 5e92ae2472..0faf032d3a 100644
--- a/docs/1.0-dev/Howto/Starting/Part1/Python-classes-and-objects.html
+++ b/docs/1.0-dev/Howto/Starting/Part1/Python-classes-and-objects.html
@@ -537,11 +537,11 @@ provides. But first we need to learn just where to find everything.
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/Howto/Starting/Part1/Searching-Things.html b/docs/1.0-dev/Howto/Starting/Part1/Searching-Things.html
index cf6a945c4c..7ac93a5c63 100644
--- a/docs/1.0-dev/Howto/Starting/Part1/Searching-Things.html
+++ b/docs/1.0-dev/Howto/Starting/Part1/Searching-Things.html
@@ -372,11 +372,11 @@ Django queries and querysets in earnest.
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/Howto/Starting/Part1/Starting-Part1.html b/docs/1.0-dev/Howto/Starting/Part1/Starting-Part1.html
index 326cbe9286..7d45f501b2 100644
--- a/docs/1.0-dev/Howto/Starting/Part1/Starting-Part1.html
+++ b/docs/1.0-dev/Howto/Starting/Part1/Starting-Part1.html
@@ -225,11 +225,11 @@ the log again just run
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/Howto/Starting/Part1/Tutorial-World-Introduction.html b/docs/1.0-dev/Howto/Starting/Part1/Tutorial-World-Introduction.html
index 1f7b074b1b..dca36c6316 100644
--- a/docs/1.0-dev/Howto/Starting/Part1/Tutorial-World-Introduction.html
+++ b/docs/1.0-dev/Howto/Starting/Part1/Tutorial-World-Introduction.html
@@ -207,11 +207,11 @@ move on with how to access this power through code.
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
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 f362aec366..59b637c584 100644
--- a/docs/1.0-dev/Howto/Starting/Part2/Game-Planning.html
+++ b/docs/1.0-dev/Howto/Starting/Part2/Game-Planning.html
@@ -235,7 +235,7 @@ pre-alpha games are allowed in the index so don’t be shy)!
Beta Release/Perpetual Beta¶
Once things stabilize in Alpha you can move to Beta and let more people in. Many MUDs are in
-perpetual beta, meaning they are never considered
+perpetual beta, meaning they are never considered
“finished”, but just repeat the cycle of Planning, Coding, Testing and Building over and over as new
features get implemented or Players come with suggestions. As the game designer it is now up to you
to gradually perfect your vision.
@@ -311,11 +311,11 @@ have made their dream game a reality!
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/Howto/Starting/Part2/Planning-Some-Useful-Contribs.html b/docs/1.0-dev/Howto/Starting/Part2/Planning-Some-Useful-Contribs.html
index a420f63b3e..6bb50d8128 100644
--- a/docs/1.0-dev/Howto/Starting/Part2/Planning-Some-Useful-Contribs.html
+++ b/docs/1.0-dev/Howto/Starting/Part2/Planning-Some-Useful-Contribs.html
@@ -330,11 +330,11 @@ back to your planning and adjust it as you learn what works and what does not.
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/Howto/Starting/Part2/Planning-The-Tutorial-Game.html b/docs/1.0-dev/Howto/Starting/Part2/Planning-The-Tutorial-Game.html
index 43653defdf..9a3ddadbc2 100644
--- a/docs/1.0-dev/Howto/Starting/Part2/Planning-The-Tutorial-Game.html
+++ b/docs/1.0-dev/Howto/Starting/Part2/Planning-The-Tutorial-Game.html
@@ -547,11 +547,11 @@ to code themselves. So in the next lesson we will check out what help we have fr
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/Howto/Starting/Part2/Planning-Where-Do-I-Begin.html b/docs/1.0-dev/Howto/Starting/Part2/Planning-Where-Do-I-Begin.html
index 2e99bbe29f..e468394ce2 100644
--- a/docs/1.0-dev/Howto/Starting/Part2/Planning-Where-Do-I-Begin.html
+++ b/docs/1.0-dev/Howto/Starting/Part2/Planning-Where-Do-I-Begin.html
@@ -237,11 +237,11 @@ then try to answer those questions for the sake of creating our little tutorial
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/Howto/Starting/Part2/Starting-Part2.html b/docs/1.0-dev/Howto/Starting/Part2/Starting-Part2.html
index 3f868ad3db..a3c37ce44e 100644
--- a/docs/1.0-dev/Howto/Starting/Part2/Starting-Part2.html
+++ b/docs/1.0-dev/Howto/Starting/Part2/Starting-Part2.html
@@ -127,11 +127,11 @@ and “what to think about” when creating a multiplayer online text game.
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/Howto/Starting/Part3/A-Sittable-Object.html b/docs/1.0-dev/Howto/Starting/Part3/A-Sittable-Object.html
index 4736b65635..fe7ff69525 100644
--- a/docs/1.0-dev/Howto/Starting/Part3/A-Sittable-Object.html
+++ b/docs/1.0-dev/Howto/Starting/Part3/A-Sittable-Object.html
@@ -1170,11 +1170,11 @@ mixing them, or even try a third solution that better fits what you have in mind
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/Howto/Starting/Part3/Implementing-a-game-rule-system.html b/docs/1.0-dev/Howto/Starting/Part3/Implementing-a-game-rule-system.html
index aa8cd772a3..69b6c1a8f9 100644
--- a/docs/1.0-dev/Howto/Starting/Part3/Implementing-a-game-rule-system.html
+++ b/docs/1.0-dev/Howto/Starting/Part3/Implementing-a-game-rule-system.html
@@ -86,7 +86,7 @@ to look at the Ainneve custom django model. Which is the better depends on your game and the
complexity of your system.
-Make a clear API into your
+
Make a clear API into your
rules. That is, make methods/functions that you feed with, say, your Character and which skill you
want to check. That is, you want something similar to this:
1
@@ -451,11 +451,11 @@ your rules
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/Howto/Starting/Part3/Starting-Part3.html b/docs/1.0-dev/Howto/Starting/Part3/Starting-Part3.html
index 67b1dee15e..d2da9358ea 100644
--- a/docs/1.0-dev/Howto/Starting/Part3/Starting-Part3.html
+++ b/docs/1.0-dev/Howto/Starting/Part3/Starting-Part3.html
@@ -127,11 +127,11 @@ with using Evennia. This be of much use when doing your own thing later.
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/Howto/Starting/Part3/Turn-based-Combat-System.html b/docs/1.0-dev/Howto/Starting/Part3/Turn-based-Combat-System.html
index 141ee2035f..9107e61823 100644
--- a/docs/1.0-dev/Howto/Starting/Part3/Turn-based-Combat-System.html
+++ b/docs/1.0-dev/Howto/Starting/Part3/Turn-based-Combat-System.html
@@ -910,11 +910,11 @@ show others what’s going on.
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/Howto/Starting/Part3/Tutorial-for-basic-MUSH-like-game.html b/docs/1.0-dev/Howto/Starting/Part3/Tutorial-for-basic-MUSH-like-game.html
index 2372793399..d3b1009746 100644
--- a/docs/1.0-dev/Howto/Starting/Part3/Tutorial-for-basic-MUSH-like-game.html
+++ b/docs/1.0-dev/Howto/Starting/Part3/Tutorial-for-basic-MUSH-like-game.html
@@ -41,7 +41,7 @@
Tutorial for basic MUSH like game¶
This tutorial lets you code a small but complete and functioning MUSH-like game in Evennia. A
-MUSH is, for our purposes, a class of roleplay-centric games
+MUSH is, for our purposes, a class of roleplay-centric games
focused on free form storytelling. Even if you are not interested in MUSH:es, this is still a good
first game-type to try since it’s not so code heavy. You will be able to use the same principles for
building other types of games.
@@ -969,11 +969,11 @@ as the Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/Howto/Starting/Part4/Starting-Part4.html b/docs/1.0-dev/Howto/Starting/Part4/Starting-Part4.html
index 7ba1702680..aa20e44530 100644
--- a/docs/1.0-dev/Howto/Starting/Part4/Starting-Part4.html
+++ b/docs/1.0-dev/Howto/Starting/Part4/Starting-Part4.html
@@ -94,11 +94,11 @@ and batchcode processors.
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/Howto/Starting/Part5/Add-a-simple-new-web-page.html b/docs/1.0-dev/Howto/Starting/Part5/Add-a-simple-new-web-page.html
index 1e13fa3151..5aba4bff19 100644
--- a/docs/1.0-dev/Howto/Starting/Part5/Add-a-simple-new-web-page.html
+++ b/docs/1.0-dev/Howto/Starting/Part5/Add-a-simple-new-web-page.html
@@ -194,11 +194,11 @@ to.
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/Howto/Starting/Part5/Starting-Part5.html b/docs/1.0-dev/Howto/Starting/Part5/Starting-Part5.html
index b16d448acd..dd4ef52845 100644
--- a/docs/1.0-dev/Howto/Starting/Part5/Starting-Part5.html
+++ b/docs/1.0-dev/Howto/Starting/Part5/Starting-Part5.html
@@ -92,11 +92,11 @@ to bring your game online so you can invite your first players.
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/Howto/Starting/Part5/Web-Tutorial.html b/docs/1.0-dev/Howto/Starting/Part5/Web-Tutorial.html
index 1537527cd0..dc413b0150 100644
--- a/docs/1.0-dev/Howto/Starting/Part5/Web-Tutorial.html
+++ b/docs/1.0-dev/Howto/Starting/Part5/Web-Tutorial.html
@@ -54,10 +54,10 @@ and easily.
you might have an app for conducting polls, or an app for showing news posts or, like us, one for
creating a web client.
Each of these applications has a urls.py file, which specifies what
-URLs are used by the app, a views.py file
+URLs are used by the app, a views.py file
for the code that the URLs activate, a templates directory for displaying the results of that code
-in HTML for the user, and a static folder that holds assets
-like CSS, Javascript,
+in HTML for the user, and a static folder that holds assets
+like CSS, Javascript,
and Image files (You may note your mygame/web folder does not have a static or template folder.
This is intended and explained further below). Django applications may also have a models.py file
for storing information in the database. We will not change any models here, take a look at the
@@ -189,11 +189,11 @@ works and what possibilities exist.
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/Howto/Tutorial-Aggressive-NPCs.html b/docs/1.0-dev/Howto/Tutorial-Aggressive-NPCs.html
index 735a75ca73..af92ba467e 100644
--- a/docs/1.0-dev/Howto/Tutorial-Aggressive-NPCs.html
+++ b/docs/1.0-dev/Howto/Tutorial-Aggressive-NPCs.html
@@ -216,11 +216,11 @@ AI code).
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/Howto/Tutorial-NPCs-listening.html b/docs/1.0-dev/Howto/Tutorial-NPCs-listening.html
index 37824af293..57b08b7551 100644
--- a/docs/1.0-dev/Howto/Tutorial-NPCs-listening.html
+++ b/docs/1.0-dev/Howto/Tutorial-NPCs-listening.html
@@ -224,11 +224,11 @@ Which way to go depends on the design requirements of your particular game.
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/Howto/Tutorial-Tweeting-Game-Stats.html b/docs/1.0-dev/Howto/Tutorial-Tweeting-Game-Stats.html
index 0f8f3390a3..915fab75a9 100644
--- a/docs/1.0-dev/Howto/Tutorial-Tweeting-Game-Stats.html
+++ b/docs/1.0-dev/Howto/Tutorial-Tweeting-Game-Stats.html
@@ -229,11 +229,11 @@ as mygame/typeclass
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/Howto/Tutorial-Vehicles.html b/docs/1.0-dev/Howto/Tutorial-Vehicles.html
index 7a8d720dac..8a2155e1f2 100644
--- a/docs/1.0-dev/Howto/Tutorial-Vehicles.html
+++ b/docs/1.0-dev/Howto/Tutorial-Vehicles.html
@@ -626,11 +626,11 @@ direction to which room it goes.
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/Howto/Understanding-Color-Tags.html b/docs/1.0-dev/Howto/Understanding-Color-Tags.html
index 7d9841c100..e40a264734 100644
--- a/docs/1.0-dev/Howto/Understanding-Color-Tags.html
+++ b/docs/1.0-dev/Howto/Understanding-Color-Tags.html
@@ -240,11 +240,11 @@ push it over the limit, so to speak.
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/Howto/Weather-Tutorial.html b/docs/1.0-dev/Howto/Weather-Tutorial.html
index 5bcb23c6ad..1698a066d3 100644
--- a/docs/1.0-dev/Howto/Weather-Tutorial.html
+++ b/docs/1.0-dev/Howto/Weather-Tutorial.html
@@ -137,11 +137,11 @@ weather came before it. Expanding it to be more realistic is a useful exercise.<
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/Howto/Web-Character-Generation.html b/docs/1.0-dev/Howto/Web-Character-Generation.html
index 7e3c71b36a..9b98321850 100644
--- a/docs/1.0-dev/Howto/Web-Character-Generation.html
+++ b/docs/1.0-dev/Howto/Web-Character-Generation.html
@@ -967,11 +967,11 @@ to see what happens. And do the same while checking the checkbox!
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/Howto/Web-Character-View-Tutorial.html b/docs/1.0-dev/Howto/Web-Character-View-Tutorial.html
index 69ba82a518..2024d602d9 100644
--- a/docs/1.0-dev/Howto/Web-Character-View-Tutorial.html
+++ b/docs/1.0-dev/Howto/Web-Character-View-Tutorial.html
@@ -354,11 +354,11 @@ here.
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/Licensing.html b/docs/1.0-dev/Licensing.html
index a6e2fd667b..7735d7150b 100644
--- a/docs/1.0-dev/Licensing.html
+++ b/docs/1.0-dev/Licensing.html
@@ -40,7 +40,7 @@
Licensing¶
-Evennia is licensed under the very friendly BSD
+
Evennia is licensed under the very friendly BSD
(3-clause) license. You can find the license as
LICENSE.txt in the Evennia
repository’s root.
@@ -93,11 +93,11 @@ as Evennia itself, unless the individual contributor has specifically defined ot
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/Links.html b/docs/1.0-dev/Links.html
index 52cd4b983b..51a83a2b5b 100644
--- a/docs/1.0-dev/Links.html
+++ b/docs/1.0-dev/Links.html
@@ -48,15 +48,15 @@
Official Evennia links¶
-evennia.com - Main Evennia portal page. Links to all corners of Evennia.
+evennia.com - Main Evennia portal page. Links to all corners of Evennia.
Evennia github page - Download code and read documentation.
-Evennia official chat
+
Our official IRC chat #evennia at irc.freenode.net:6667.
-Evennia forums/mailing list - Web interface to our
+
Evennia forums/mailing list - Web interface to our
google group.
-Evennia development blog - Musings from the lead developer.
-Evennia’s manual on ReadTheDocs - Read and download
+
Evennia development blog - Musings from the lead developer.
+Evennia’s manual on ReadTheDocs - Read and download
offline in html, PDF or epub formats.
Evennia Game Index - An automated listing of Evennia games.
@@ -65,7 +65,7 @@ offline in html, PDF or epub formats.
-Evennia subreddit (not much there yet though)
+Evennia subreddit (not much there yet though)
@@ -87,7 +87,7 @@ a bridge to the official Evennia IRC channel.
Evennia game dir with batchcode to build the custom Hackers style cyberspace zone with puzzles and
challenges used during the conference.
Arx sources - Open-source code release of the very popular
-Arx Evennia game. [Here are instructions for installing](Arxcode-
+Arx Evennia game. [Here are instructions for installing](Arxcode-
installing-help)
Evennia-wiki - An Evennia-specific Wiki for your
website.
@@ -101,12 +101,12 @@ here.
The world of Cool battles sources - Open source
turn-based battle system for Evennia. It also has a live demo.
nextRPI - A github project for making a toolbox for people
-to make RPI-style Evennia games.
+to make RPI-style Evennia games.
Muddery - A mud framework under development, based on an
older fork of Evennia. It has some specific design goals for building and extending the game based
on input files.
vim-evennia - A mode for editing batch-build files (.ev)
-files in the vim text editor (Emacs users can use evennia-
+files in the vim text editor (Emacs users can use evennia-
mode.el).
@@ -118,11 +118,11 @@ Tutorial videos explaining installing Evennia, basic Python etc.
container for quick install and deployment in just a few commands.
Evennia’s docs in Chinese - A translated mirror of a slightly older
Evennia version. Announcement here.
-Evennia for MUSHers - An article describing
+
Evennia for MUSHers - An article describing
Evennia for those used to the MUSH way of doing things.
Language Understanding for Text games using Deep reinforcement
learning
-(PDF) - MIT research paper using Evennia
+(PDF) - MIT research paper using Evennia
to train AIs.
@@ -139,7 +139,7 @@ Python objects.
MUD Coder’s Guild - A blog and associated Slack
channel with discussions on MUD development.
-MuSoapbox - Very active Mu* game community mainly focused on MUSH-
+
MuSoapbox - Very active Mu* game community mainly focused on MUSH-
type gaming.
Imaginary Realities - An e-magazine on game and MUD
design that has several articles about Evennia. There is also an archive of older
@@ -160,16 +160,16 @@ Influential mailing list active 1996-2004. Advanced game design discussions.
Mud-dev wiki - A (very) slowly growing resource on MUD creation.
Mud Client/Server Interaction - A page on classic MUD
telnet protocols.
-[Mud Tech’s fun/cool but …](http://gc-taylor.com/blog/2013/01/08/mud-tech-funcool-dont-forget-
+
[Mud Tech’s fun/cool but …](https://gc-taylor.com/blog/2013/01/08/mud-tech-funcool-dont-forget-
ship-damned-thing/) - Greg Taylor gives good advice on mud design.
-Lost Library of MOO - Archive of scientific articles on mudding (in
+
Lost Library of MOO - Archive of scientific articles on mudding (in
particular moo).
Nick Gammon’s hints thread -
Contains a very useful list of things to think about when starting your new MUD.
Lost Garden - A game development blog with long and interesting
articles (not MUD-specific)
What Games Are - A blog about general game design (not MUD-specific)
-The Alexandrian - A blog about tabletop roleplaying and board games,
+
The Alexandrian - A blog about tabletop roleplaying and board games,
but with lots of general discussion about rule systems and game balance that could be applicable
also for MUDs.
[Raph Koster’s laws of game design](https://www.raphkoster.com/games/laws-of-online-world-
@@ -180,7 +180,7 @@ when designing a virtual multiplayer world (Raph is known for Ultima Online<
Literature¶
-Richard Bartle Designing Virtual Worlds ([amazon page](http://www.amazon.com/Designing-Virtual-
+
Richard Bartle Designing Virtual Worlds ([amazon page](https://www.amazon.com/Designing-Virtual-
Worlds-Richard-Bartle/dp/0131018167)) - Essential reading for the design of any persistent game
world, written by the co-creator of the original game MUD. Published in 2003 but it’s still as
relevant now as when it came out. Covers everything you need to know and then some.
@@ -188,15 +188,15 @@ relevant now as when it came out. Covers everything you need to know and then so
the imposing name this book is for the absolute Python/programming beginner. One learns the language
by gradually creating a small text game! It has been used by multiple users before moving on to
Evennia. Update: This used to be free to read online, this is no longer the case.
-David M. Beazley Python Essential Reference (4th ed) (amazon
+David M. Beazley Python Essential Reference (4th ed) (amazon
page) - Our
recommended book on Python; it not only efficiently summarizes the language but is also an excellent
reference to the standard library for more experienced Python coders.
-Luciano Ramalho, Fluent Python (o’reilly
+Luciano Ramalho, Fluent Python (o’reilly
page) - This is an excellent book for experienced
Python coders willing to take their code to the next level. A great read with a lot of useful info
also for veteran Pythonistas.
-Richard Cantillon An Essay on Economic Theory (free
+Richard Cantillon An Essay on Economic Theory (free
pdf) - A very good English
translation of Essai sur la Nature du Commerce en Général, one of the foundations of modern
economic theory. Written in 1730 but the translation is annotated and the essay is actually very
@@ -207,31 +207,31 @@ economic system.
Frameworks¶
Tools¶
-
-
-Learn GIT in 15 minutes (interactive tutorial)
+
+
+Learn GIT in 15 minutes (interactive tutorial)
Python Info¶
-
-
-
-
-
-
+
+
+
+
+
+
Jetbrains Python academy - free online
programming curriculum for different skill levels
@@ -287,11 +287,11 @@ programming curriculum for different skill levels
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/Setup/Apache-Config.html b/docs/1.0-dev/Setup/Apache-Config.html
index 684c929f9d..69ecc65838 100644
--- a/docs/1.0-dev/Setup/Apache-Config.html
+++ b/docs/1.0-dev/Setup/Apache-Config.html
@@ -100,7 +100,7 @@ modifications after copying the file there.
Enjoy¶
With any luck, you’ll be able to point your browser at your domain or subdomain that you set up in
your vhost and see the nifty default Evennia webpage. If not, read the hopefully informative error
-message and work from there. Questions may be directed to our Evennia Community
+message and work from there. Questions may be directed to our Evennia Community
site.
@@ -270,11 +270,11 @@ port but this should be applicable also to other types of proxies (like nginx).<
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/Setup/Choosing-An-SQL-Server.html b/docs/1.0-dev/Setup/Choosing-An-SQL-Server.html
index 9dc05773db..5a0ebb2624 100644
--- a/docs/1.0-dev/Setup/Choosing-An-SQL-Server.html
+++ b/docs/1.0-dev/Setup/Choosing-An-SQL-Server.html
@@ -46,9 +46,9 @@
PostgreSQL
MySQL / MariaDB
-Since Evennia uses Django, most of our notes are based off of what we
+
Since Evennia uses Django, most of our notes are based off of what we
know from the community and their documentation. While the information below may be useful, you can
-always find the most up-to-date and “correct” information at Django’s Notes about supported
+always find the most up-to-date and “correct” information at Django’s Notes about supported
Databases page.
SQLite3¶
@@ -383,7 +383,7 @@ database.
Others¶
No testing has been performed with Oracle, but it is also supported through Django. There are
-community maintained drivers for MS SQL and possibly a few
+community maintained drivers for MS SQL and possibly a few
others. If you try other databases out, consider expanding this page with instructions.
@@ -442,11 +442,11 @@ others. If you try other databases out, consider expanding this page with instru
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/Setup/Client-Support-Grid.html b/docs/1.0-dev/Setup/Client-Support-Grid.html
index 7083ad16dd..3830c9b732 100644
--- a/docs/1.0-dev/Setup/Client-Support-Grid.html
+++ b/docs/1.0-dev/Setup/Client-Support-Grid.html
@@ -78,7 +78,7 @@ new MUSHclient (Win)
+MUSHclient (Win)
4.94
NAWS reports full text area
@@ -90,12 +90,12 @@ new
+
2.0.0b16
No MXP, MCCP support. Win 32bit does not understand
“localhost”, must use 127.0.0.1.
-
+
3.4+
No known issues. Some older versions showed <> as html
under MXP.
@@ -104,7 +104,7 @@ under MXP.
full
Discontinued. NAWS reports pixel size.
-Atlantis (Mac)
+Atlantis (Mac)
0.9.9.4
No known issues.
@@ -125,7 +125,7 @@ under MXP.
1.3.1
UNTESTED
-BlowTorch (Andr)
+BlowTorch (Andr)
1.1.3
Telnet NOP displays as spurious character.
@@ -143,7 +143,7 @@ fails.
0.4
No MXP, OOB support.
-
+
5.2
Does not support ANSI within MXP text.
@@ -224,11 +224,11 @@ parameter to disable it for that Evennia account permanently.
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/Setup/Evennia-Game-Index.html b/docs/1.0-dev/Setup/Evennia-Game-Index.html
index 452a284f8a..d4da0aa95d 100644
--- a/docs/1.0-dev/Setup/Evennia-Game-Index.html
+++ b/docs/1.0-dev/Setup/Evennia-Game-Index.html
@@ -100,7 +100,7 @@ earlier version), you can also configure your index entry in your settings file
# optional
'long_description':
"Longer description that can use Markdown like *bold*, _italic_"
- "and [linkname](http://link.com). Use \n for line breaks."
+ "and [linkname](https://link.com). Use \n for line breaks."
'telnet_hostname': 'dummy.com',
'telnet_port': '1234',
'web_client_url': 'dummy.com/webclient',
@@ -167,11 +167,11 @@ if you are not ready for players yet.
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/Setup/Extended-Installation.html b/docs/1.0-dev/Setup/Extended-Installation.html
index 889b2d1013..56abe47c01 100644
--- a/docs/1.0-dev/Setup/Extended-Installation.html
+++ b/docs/1.0-dev/Setup/Extended-Installation.html
@@ -88,26 +88,26 @@ everything in the following sections.
Linux/Unix
Windows (Vista, Win7, Win8, Win10)
Mac OSX (>=10.5 recommended)
-Python (v3.7, 3.8 and 3.9 are tested)
+Python (v3.7, 3.8 and 3.9 are tested)
-virtualenv for making isolated
+
virtualenv for making isolated
Python environments. Installed with pip install virtualenv.
-GIT - version control software for getting and
+
GIT - version control software for getting and
updating Evennia itself - Mac users can use the
-git-osx-installer or the
-MacPorts version.
-Twisted (v19.0+)
+git-osx-installer or the
+MacPorts version.
+Twisted (v19.0+)
-ZopeInterface (v3.0+) - usually included in
+
ZopeInterface (v3.0+) - usually included in
Twisted packages
Linux/Mac users may need the gcc and python-dev packages or equivalent.
Windows users need MS Visual C++ and maybe
pypiwin32.
-Django (v2.2.x), be warned that latest dev
+
Django (v2.2.x), be warned that latest dev
version is usually untested with Evennia)
@@ -208,17 +208,17 @@ created. Check out
Mac Install¶
The Evennia server is a terminal program. Open the terminal e.g. from
-Applications->Utilities->Terminal. Here is an introduction to the Mac
+Applications->Utilities->Terminal. Here is an introduction to the Mac
terminal
if you are unsure how it works. If you run into any issues during the
installation, please check out Mac Troubleshooting.
Python should already be installed but you must make sure it’s a high enough version.
-(This discusses
+(This discusses
how you may upgrade it). Remember that you need Python3.7, not Python2.7!
GIT can be obtained with
-git-osx-installer or via
-MacPorts as described
+git-osx-installer or via
+MacPorts as described
here.
If you run into issues with installing Twisted later you may need to
install gcc and the Python headers.
@@ -308,7 +308,7 @@ You should then follow the Linux install instructions above.
The Evennia server itself is a command line program. In the Windows launch
menu, start All Programs -> Accessories -> command prompt and you will get
-the Windows command line interface. Here is one of many tutorials on using the Windows command
+the Windows command line interface. Here is one of many tutorials on using the Windows command
line
if you are unfamiliar with it.
@@ -321,7 +321,7 @@ to check-mark all install options, especially the one about making Pyth
available on the path (you may have to scroll to see it). This allows you to
just write python in any console without first finding where the python
program actually sits on your hard drive.
-You need to also get GIT and install it. You
+
You need to also get GIT and install it. You
can use the default install options but when you get asked to “Adjust your PATH
environment”, you should select the second option “Use Git from the Windows
Command Prompt”, which gives you more freedom as to where you can use the
@@ -457,7 +457,7 @@ Evennia has no major game systems out of the box, we do supply a range of option
you can use or borrow from. They range from dice rolling and alternative color schemes to barter and
combat systems. You can find the growing list of contribs
here.
-If you have any questions, you can always ask in the developer
+If you have any questions, you can always ask in the developer
chat
#evennia on irc.freenode.net or by posting to the Evennia
forums. You can also join the Discord
@@ -584,11 +584,11 @@ you should update the line to the real location.
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/Setup/Grapevine.html b/docs/1.0-dev/Setup/Grapevine.html
index 8d182f3aa8..0f8163e35e 100644
--- a/docs/1.0-dev/Setup/Grapevine.html
+++ b/docs/1.0-dev/Setup/Grapevine.html
@@ -40,7 +40,7 @@
Grapevine¶
-Grapevine is a new chat network for MU**** games. By
+
Grapevine is a new chat network for MU**** games. By
connecting an in-game channel to the grapevine network, players on your game
can chat with players in other games, also non-Evennia ones.
@@ -142,11 +142,11 @@ it to your channel in-game.
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/Setup/HAProxy-Config.html b/docs/1.0-dev/Setup/HAProxy-Config.html
index 8a03a6d5a0..defd94d267 100644
--- a/docs/1.0-dev/Setup/HAProxy-Config.html
+++ b/docs/1.0-dev/Setup/HAProxy-Config.html
@@ -329,11 +329,11 @@ uncommented in the config file, it will now start as a background process.
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/Setup/How-to-connect-Evennia-to-Twitter.html b/docs/1.0-dev/Setup/How-to-connect-Evennia-to-Twitter.html
index b7c7a43579..506bf1eefb 100644
--- a/docs/1.0-dev/Setup/How-to-connect-Evennia-to-Twitter.html
+++ b/docs/1.0-dev/Setup/How-to-connect-Evennia-to-Twitter.html
@@ -40,7 +40,7 @@
How to connect Evennia to Twitter¶
-Twitter is an online social networking service that enables
+
Twitter is an online social networking service that enables
users to send and read short 280-character messages called “tweets”. Following is a short tutorial
explaining how to enable users to send tweets from inside Evennia.
@@ -224,11 +224,11 @@ help.
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/Setup/IRC.html b/docs/1.0-dev/Setup/IRC.html
index a1207360ba..b72fac4bff 100644
--- a/docs/1.0-dev/Setup/IRC.html
+++ b/docs/1.0-dev/Setup/IRC.html
@@ -43,12 +43,12 @@
Disambiguation: This page is related to using IRC inside an Evennia game. To join the official
Evennia IRC chat, connect to irc.freenode.net and join #evennia. Alternatively, you can join our
Discord, which is mirrored to IRC.
-IRC (Internet Relay Chat) is a long standing
+
IRC (Internet Relay Chat) is a long standing
chat protocol used by many open-source projects for communicating in real time. By connecting one of
Evennia’s Channels to an IRC channel you can communicate also with people not on
an mud themselves. You can also use IRC if you are only running your Evennia MUD locally on your
computer (your game doesn’t need to be open to the public)! All you need is an internet connection.
-For IRC operation you also need twisted.words.
+For IRC operation you also need twisted.words.
This is available simply as a package python-twisted-words in many Linux distros, or directly
downloadable from the link.
@@ -74,7 +74,7 @@ if you like), but for testing, let’s set up a new channel Here is a list
of some of the biggest
+nets. Here is a list of some of the biggest
ones, the one you choose is not really very important unless you want to connect to a particular
channel (also make sure that the network allows for “bots” to connect).
For testing, we choose the Freenode network, irc.freenode.net. We will connect to a test
@@ -160,11 +160,11 @@ name of the IRC channel you used (#evennia here).
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/Setup/Installing-on-Android.html b/docs/1.0-dev/Setup/Installing-on-Android.html
index 997a38bae1..8aea37c947 100644
--- a/docs/1.0-dev/Setup/Installing-on-Android.html
+++ b/docs/1.0-dev/Setup/Installing-on-Android.html
@@ -211,11 +211,11 @@ killed if your phone is heavily taxed. Termux seems to keep a notification up to
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/Setup/Online-Setup.html b/docs/1.0-dev/Setup/Online-Setup.html
index 26c0b28692..445c0d0544 100644
--- a/docs/1.0-dev/Setup/Online-Setup.html
+++ b/docs/1.0-dev/Setup/Online-Setup.html
@@ -73,7 +73,7 @@ start tailing the logs again.
Make sure you can connect with your web browser to http://localhost:4001 or, alternatively,
-http:127.0.0.1:4001 which is the same thing. You should get your Evennia web site and be able to
+http://127.0.0.1:4001 which is the same thing. You should get your Evennia web site and be able to
play the game in the web client. Also check so that you can connect with a mud client to host
localhost, port 4000 or host 127.0.0.1, port 4000.
Google for “my ip” or use any online service to figure out
@@ -384,7 +384,7 @@ your game. What you need is to alias it to a more sensible domain name - an alia
around also when the IP changes.
To set up a domain name alias, we recommend starting with a free domain name from
-FreeDNS. Once you register there (it’s free) you have access to tens
+FreeDNS. Once you register there (it’s free) you have access to tens
of thousands domain names that people have “donated” to allow you to use for your own sub domain.
For example, strangled.net is one of those available domains. So tying our IP address to
strangled.net using the subdomain evennia would mean that one could henceforth direct people to
@@ -395,7 +395,7 @@ and tell FreeDNS that. There are many alternatives to be found from FreeDNS:s ho
works on multiple platforms is inadyn. Get it from their page or,
in Linux, through something like apt-get install inadyn.
Next, you login to your account on FreeDNS and go to the
-Dynamic page. You should have a list of your subdomains. Click
+Dynamic page. You should have a list of your subdomains. Click
the Direct URL link and you’ll get a page with a text message. Ignore that and look at the URL of
the page. It should be ending in a lot of random letters. Everything after the question mark is your
unique “hash”. Copy this string.
@@ -472,7 +472,7 @@ region. You may find useful offers for “low cost” VPS hosting on [Low End Bo
Evennia users:
Hosting name | Type | Lowest price | Comments
:————–:|:——-:—————
-silvren.com | Shell account | Free for MU* | Private hobby provider so don’t assume backups
+silvren.com | Shell account | Free for MU* | Private hobby provider so don’t assume backups
or expect immediate support. To ask for an account, connect with a MUD client to iweb.localecho.net,
port 4201 and ask for “Jarin”.
[Digital Ocean][2] | VPS | $5/month | You can get a $50 credit if you use the referral link
@@ -494,7 +494,7 @@ servers with this option as they don’t have a lot of support.
Please help us expand this list.
2
3
-4
+4
5
6
7
@@ -584,11 +584,11 @@ https://aws.amazon.com/cloud9/
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/Setup/RSS.html b/docs/1.0-dev/Setup/RSS.html
index 393df4ae90..22c4b27c78 100644
--- a/docs/1.0-dev/Setup/RSS.html
+++ b/docs/1.0-dev/Setup/RSS.html
@@ -40,7 +40,7 @@
RSS¶
-RSS is a format for easily tracking updates on websites. The
+
RSS is a format for easily tracking updates on websites. The
principle is simple - whenever a site is updated, a small text file is updated. An RSS reader can
then regularly go online, check this file for updates and let the user know what’s new.
Evennia allows for connecting any number of RSS feeds to any number of in-game channels. Updates to
@@ -48,10 +48,10 @@ the feed will be conveniently echoed to the channel. There are many potential us
example the MUD might use a separate website to host its forums. Through RSS, the players can then
be notified when new posts are made. Another example is to let everyone know you updated your dev
blog. Admins might also want to track the latest Evennia updates through our own RSS feed
-here.
+here.
Configuring RSS¶
-To use RSS, you first need to install the feedparser python
+
To use RSS, you first need to install the feedparser python
module.
pip install feedparser
@@ -127,11 +127,11 @@ same channels as Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/Setup/Running-Evennia-in-Docker.html b/docs/1.0-dev/Setup/Running-Evennia-in-Docker.html
index 3b914c144c..315f2c84f1 100644
--- a/docs/1.0-dev/Setup/Running-Evennia-in-Docker.html
+++ b/docs/1.0-dev/Setup/Running-Evennia-in-Docker.html
@@ -368,11 +368,11 @@ line.
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/Setup/Security.html b/docs/1.0-dev/Setup/Security.html
index 4c94a51a63..dcf90da29b 100644
--- a/docs/1.0-dev/Setup/Security.html
+++ b/docs/1.0-dev/Setup/Security.html
@@ -239,11 +239,11 @@ ISP snooping.
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/Setup/Settings-File.html b/docs/1.0-dev/Setup/Settings-File.html
index 6f776d6427..b852cbda0a 100644
--- a/docs/1.0-dev/Setup/Settings-File.html
+++ b/docs/1.0-dev/Setup/Settings-File.html
@@ -74,11 +74,11 @@
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/Setup/Setup-Overview.html b/docs/1.0-dev/Setup/Setup-Overview.html
index 350d144993..a885a57495 100644
--- a/docs/1.0-dev/Setup/Setup-Overview.html
+++ b/docs/1.0-dev/Setup/Setup-Overview.html
@@ -140,11 +140,11 @@
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/Setup/Setup-Quickstart.html b/docs/1.0-dev/Setup/Setup-Quickstart.html
index ac5b2e8fb7..2c450f22fa 100644
--- a/docs/1.0-dev/Setup/Setup-Quickstart.html
+++ b/docs/1.0-dev/Setup/Setup-Quickstart.html
@@ -187,11 +187,11 @@ a web browser at http
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/Setup/Start-Stop-Reload.html b/docs/1.0-dev/Setup/Start-Stop-Reload.html
index de45d6fb58..71ff1418ea 100644
--- a/docs/1.0-dev/Setup/Start-Stop-Reload.html
+++ b/docs/1.0-dev/Setup/Start-Stop-Reload.html
@@ -278,11 +278,11 @@ In-game you should now get the message that the Server has successfully restarte
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/Unimplemented.html b/docs/1.0-dev/Unimplemented.html
index 440a4b4456..7049afd1d1 100644
--- a/docs/1.0-dev/Unimplemented.html
+++ b/docs/1.0-dev/Unimplemented.html
@@ -92,11 +92,11 @@
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/_modules/django/conf.html b/docs/1.0-dev/_modules/django/conf.html
index 9fe8253982..a42ba00f69 100644
--- a/docs/1.0-dev/_modules/django/conf.html
+++ b/docs/1.0-dev/_modules/django/conf.html
@@ -337,11 +337,11 @@
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/_modules/django/db/models/fields/related_descriptors.html b/docs/1.0-dev/_modules/django/db/models/fields/related_descriptors.html
index 363fffec35..ea831bd650 100644
--- a/docs/1.0-dev/_modules/django/db/models/fields/related_descriptors.html
+++ b/docs/1.0-dev/_modules/django/db/models/fields/related_descriptors.html
@@ -1269,11 +1269,11 @@
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/_modules/django/db/models/manager.html b/docs/1.0-dev/_modules/django/db/models/manager.html
index c2a0d77d32..fda1251f3e 100644
--- a/docs/1.0-dev/_modules/django/db/models/manager.html
+++ b/docs/1.0-dev/_modules/django/db/models/manager.html
@@ -267,11 +267,11 @@
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/_modules/django/db/models/query.html b/docs/1.0-dev/_modules/django/db/models/query.html
index 96449ec776..7bee1dde77 100644
--- a/docs/1.0-dev/_modules/django/db/models/query.html
+++ b/docs/1.0-dev/_modules/django/db/models/query.html
@@ -2078,11 +2078,11 @@
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/_modules/django/db/models/query_utils.html b/docs/1.0-dev/_modules/django/db/models/query_utils.html
index 388c877aaf..5b73ec1db2 100644
--- a/docs/1.0-dev/_modules/django/db/models/query_utils.html
+++ b/docs/1.0-dev/_modules/django/db/models/query_utils.html
@@ -410,11 +410,11 @@
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/_modules/django/utils/deconstruct.html b/docs/1.0-dev/_modules/django/utils/deconstruct.html
index a88dced5a2..ba29b6d126 100644
--- a/docs/1.0-dev/_modules/django/utils/deconstruct.html
+++ b/docs/1.0-dev/_modules/django/utils/deconstruct.html
@@ -119,11 +119,11 @@
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/_modules/django/utils/functional.html b/docs/1.0-dev/_modules/django/utils/functional.html
index f3832adc17..c230161aed 100644
--- a/docs/1.0-dev/_modules/django/utils/functional.html
+++ b/docs/1.0-dev/_modules/django/utils/functional.html
@@ -487,11 +487,11 @@
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/_modules/evennia.html b/docs/1.0-dev/_modules/evennia.html
index ddc37efd9e..820a651137 100644
--- a/docs/1.0-dev/_modules/evennia.html
+++ b/docs/1.0-dev/_modules/evennia.html
@@ -499,11 +499,11 @@
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/_modules/evennia/accounts/accounts.html b/docs/1.0-dev/_modules/evennia/accounts/accounts.html
index 983d719efc..de93f87171 100644
--- a/docs/1.0-dev/_modules/evennia/accounts/accounts.html
+++ b/docs/1.0-dev/_modules/evennia/accounts/accounts.html
@@ -1817,9 +1817,10 @@
"""
super().at_server_shutdown()
characters = self.db._playable_characters
- for character in characters:
- if character:
- character.delete()
+ if characters:
+ for character in characters:
+ if character:
+ character.delete()
[docs] def at_post_disconnect(self, **kwargs):
"""
@@ -1861,11 +1862,11 @@
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/_modules/evennia/accounts/bots.html b/docs/1.0-dev/_modules/evennia/accounts/bots.html
index 06e22e6118..d52e40f8f6 100644
--- a/docs/1.0-dev/_modules/evennia/accounts/bots.html
+++ b/docs/1.0-dev/_modules/evennia/accounts/bots.html
@@ -645,11 +645,11 @@
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/_modules/evennia/accounts/manager.html b/docs/1.0-dev/_modules/evennia/accounts/manager.html
index fa5685e912..a53d500d3e 100644
--- a/docs/1.0-dev/_modules/evennia/accounts/manager.html
+++ b/docs/1.0-dev/_modules/evennia/accounts/manager.html
@@ -254,11 +254,11 @@
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/_modules/evennia/accounts/models.html b/docs/1.0-dev/_modules/evennia/accounts/models.html
index 9f5f9befa8..5f3b759b0d 100644
--- a/docs/1.0-dev/_modules/evennia/accounts/models.html
+++ b/docs/1.0-dev/_modules/evennia/accounts/models.html
@@ -247,11 +247,11 @@
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/_modules/evennia/commands/cmdhandler.html b/docs/1.0-dev/_modules/evennia/commands/cmdhandler.html
index 86ef040857..a5817efd68 100644
--- a/docs/1.0-dev/_modules/evennia/commands/cmdhandler.html
+++ b/docs/1.0-dev/_modules/evennia/commands/cmdhandler.html
@@ -841,11 +841,11 @@
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/_modules/evennia/commands/cmdparser.html b/docs/1.0-dev/_modules/evennia/commands/cmdparser.html
index 856496d053..9de5966c1a 100644
--- a/docs/1.0-dev/_modules/evennia/commands/cmdparser.html
+++ b/docs/1.0-dev/_modules/evennia/commands/cmdparser.html
@@ -291,11 +291,11 @@
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/_modules/evennia/commands/cmdset.html b/docs/1.0-dev/_modules/evennia/commands/cmdset.html
index db7417261f..70dc699b72 100644
--- a/docs/1.0-dev/_modules/evennia/commands/cmdset.html
+++ b/docs/1.0-dev/_modules/evennia/commands/cmdset.html
@@ -741,11 +741,11 @@
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/_modules/evennia/commands/cmdsethandler.html b/docs/1.0-dev/_modules/evennia/commands/cmdsethandler.html
index 69ae7db440..22f84470cf 100644
--- a/docs/1.0-dev/_modules/evennia/commands/cmdsethandler.html
+++ b/docs/1.0-dev/_modules/evennia/commands/cmdsethandler.html
@@ -731,11 +731,11 @@
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/_modules/evennia/commands/command.html b/docs/1.0-dev/_modules/evennia/commands/command.html
index c84cc2761f..d42112183c 100644
--- a/docs/1.0-dev/_modules/evennia/commands/command.html
+++ b/docs/1.0-dev/_modules/evennia/commands/command.html
@@ -51,6 +51,8 @@
import inspect
from django.conf import settings
+from django.urls import reverse
+from django.utils.text import slugify
from evennia.locks.lockhandler import LockHandler
from evennia.utils.utils import is_iter, fill, lazy_property, make_iter
@@ -556,6 +558,53 @@
"""
return self.__doc__
+[docs] def web_get_detail_url(self):
+ """
+ Returns the URI path for a View that allows users to view details for
+ this object.
+
+ ex. Oscar (Character) = '/characters/oscar/1/'
+
+ For this to work, the developer must have defined a named view somewhere
+ in urls.py that follows the format 'modelname-action', so in this case
+ a named view of 'character-detail' would be referenced by this method.
+
+ ex.
+ ::
+ url(r'characters/(?P<slug>[\w\d\-]+)/(?P<pk>[0-9]+)/$',
+ CharDetailView.as_view(), name='character-detail')
+
+ If no View has been created and defined in urls.py, returns an
+ HTML anchor.
+
+ This method is naive and simply returns a path. Securing access to
+ the actual view and limiting who can view this object is the developer's
+ responsibility.
+
+ Returns:
+ path (str): URI path to object detail page, if defined.
+
+ """
+ try:
+ return reverse(
+ 'help-entry-detail',
+ kwargs={"category": slugify(self.help_category), "topic": slugify(self.key)},
+ )
+ except Exception as e:
+ return "#"
+
+[docs] def web_get_admin_url(self):
+ """
+ Returns the URI path for the Django Admin page for this object.
+
+ ex. Account#1 = '/admin/accounts/accountdb/1/change/'
+
+ Returns:
+ path (str): URI path to Django Admin page for object.
+
+ """
+ return False
+
[docs] def client_width(self):
"""
Get the client screenwidth for the session using this command.
@@ -743,11 +792,11 @@
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
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 a50b28e984..9f43d1f2a9 100644
--- a/docs/1.0-dev/_modules/evennia/commands/default/account.html
+++ b/docs/1.0-dev/_modules/evennia/commands/default/account.html
@@ -1119,11 +1119,11 @@
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/_modules/evennia/commands/default/admin.html b/docs/1.0-dev/_modules/evennia/commands/default/admin.html
index cf37853c6e..319a290f02 100644
--- a/docs/1.0-dev/_modules/evennia/commands/default/admin.html
+++ b/docs/1.0-dev/_modules/evennia/commands/default/admin.html
@@ -660,11 +660,11 @@
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
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 d59bfb7ba6..1478253c3a 100644
--- a/docs/1.0-dev/_modules/evennia/commands/default/batchprocess.html
+++ b/docs/1.0-dev/_modules/evennia/commands/default/batchprocess.html
@@ -886,11 +886,11 @@
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
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 709818a386..feb1478742 100644
--- a/docs/1.0-dev/_modules/evennia/commands/default/building.html
+++ b/docs/1.0-dev/_modules/evennia/commands/default/building.html
@@ -694,6 +694,7 @@
if not (obj.access(self.caller, "control") or obj.access(self.caller, "edit")):
self.caller.msg("You don't have permission to edit the description of %s." % obj.key)
+ return
self.caller.db.evmenu_target = obj
# launch the editor
@@ -726,7 +727,7 @@
return
desc = self.rhs or ""
else:
- obj = caller.location or self.msg("|rYou can't describe oblivion.|n")
+ obj = caller.location or self.msg("|rYou don't have a location to describe.|n")
if not obj:
return
desc = self.args
@@ -3891,11 +3892,11 @@
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/_modules/evennia/commands/default/cmdset_account.html b/docs/1.0-dev/_modules/evennia/commands/default/cmdset_account.html
index 759184ca32..123cf21319 100644
--- a/docs/1.0-dev/_modules/evennia/commands/default/cmdset_account.html
+++ b/docs/1.0-dev/_modules/evennia/commands/default/cmdset_account.html
@@ -142,11 +142,11 @@
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/_modules/evennia/commands/default/cmdset_character.html b/docs/1.0-dev/_modules/evennia/commands/default/cmdset_character.html
index 33216f5e22..c4fdc9dfc7 100644
--- a/docs/1.0-dev/_modules/evennia/commands/default/cmdset_character.html
+++ b/docs/1.0-dev/_modules/evennia/commands/default/cmdset_character.html
@@ -158,11 +158,11 @@
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/_modules/evennia/commands/default/cmdset_session.html b/docs/1.0-dev/_modules/evennia/commands/default/cmdset_session.html
index e7ad557b45..2b1602a747 100644
--- a/docs/1.0-dev/_modules/evennia/commands/default/cmdset_session.html
+++ b/docs/1.0-dev/_modules/evennia/commands/default/cmdset_session.html
@@ -83,11 +83,11 @@
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/_modules/evennia/commands/default/cmdset_unloggedin.html b/docs/1.0-dev/_modules/evennia/commands/default/cmdset_unloggedin.html
index 86f69f2b5f..7d55665fba 100644
--- a/docs/1.0-dev/_modules/evennia/commands/default/cmdset_unloggedin.html
+++ b/docs/1.0-dev/_modules/evennia/commands/default/cmdset_unloggedin.html
@@ -92,11 +92,11 @@
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/_modules/evennia/commands/default/comms.html b/docs/1.0-dev/_modules/evennia/commands/default/comms.html
index 2ea04614ef..f52ff8e149 100644
--- a/docs/1.0-dev/_modules/evennia/commands/default/comms.html
+++ b/docs/1.0-dev/_modules/evennia/commands/default/comms.html
@@ -2409,11 +2409,11 @@
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
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 0f26b22b2e..6f3df7712c 100644
--- a/docs/1.0-dev/_modules/evennia/commands/default/general.html
+++ b/docs/1.0-dev/_modules/evennia/commands/default/general.html
@@ -796,11 +796,11 @@
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/_modules/evennia/commands/default/help.html b/docs/1.0-dev/_modules/evennia/commands/default/help.html
index a164a0c079..8d6f4d8698 100644
--- a/docs/1.0-dev/_modules/evennia/commands/default/help.html
+++ b/docs/1.0-dev/_modules/evennia/commands/default/help.html
@@ -376,11 +376,15 @@
bool: If command should be listed or not.
Notes:
- By default, the 'view' lock will be checked, and if no such lock is defined, the 'read'
+ The `.auto_help` propery is checked for commands. For all help entries,
+ the 'view' lock will be checked, and if no such lock is defined, the 'read'
lock will be used. If neither lock is defined, the help entry is assumed to be
accessible to all.
"""
+ if hasattr(cmd_or_topic, "auto_help") and not cmd_or_topic.auto_help:
+ return False
+
has_view = (
"view:" in cmd_or_topic.locks
if inherits_from(cmd_or_topic, "evennia.commands.command.Command")
@@ -858,9 +862,9 @@
"with access to that command.")
elif inherits_from(match, "evennia.help.filehelp.FileHelpEntry"):
warning = (f"'{querystr}' matches (or partially matches) the name/alias of the "
- "file-based help file '{match.key}'. File-help entries cannot be "
+ f"file-based help topic '{match.key}'. File-help entries cannot be "
"modified from in-game (they are files on-disk). If you continue, "
- "your help entry *may* shadow the file-based one's name partly or "
+ "your help entry may shadow the file-based one's name partly or "
"completely.")
if warning:
# show a warning for a clashing help-entry type. Even if user accepts this
@@ -998,11 +1002,11 @@
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
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 4e91bafe31..db0656d659 100644
--- a/docs/1.0-dev/_modules/evennia/commands/default/muxcommand.html
+++ b/docs/1.0-dev/_modules/evennia/commands/default/muxcommand.html
@@ -335,11 +335,11 @@
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/_modules/evennia/commands/default/syscommands.html b/docs/1.0-dev/_modules/evennia/commands/default/syscommands.html
index be074915f0..2643138d69 100644
--- a/docs/1.0-dev/_modules/evennia/commands/default/syscommands.html
+++ b/docs/1.0-dev/_modules/evennia/commands/default/syscommands.html
@@ -170,11 +170,11 @@
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
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 8c5bc02065..46de835496 100644
--- a/docs/1.0-dev/_modules/evennia/commands/default/system.html
+++ b/docs/1.0-dev/_modules/evennia/commands/default/system.html
@@ -1494,11 +1494,11 @@
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
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 d0d938855e..e12fcc2634 100644
--- a/docs/1.0-dev/_modules/evennia/commands/default/tests.html
+++ b/docs/1.0-dev/_modules/evennia/commands/default/tests.html
@@ -2286,11 +2286,11 @@
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/_modules/evennia/commands/default/unloggedin.html b/docs/1.0-dev/_modules/evennia/commands/default/unloggedin.html
index 9a94e1dcfb..0c95c55b06 100644
--- a/docs/1.0-dev/_modules/evennia/commands/default/unloggedin.html
+++ b/docs/1.0-dev/_modules/evennia/commands/default/unloggedin.html
@@ -562,11 +562,11 @@
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/_modules/evennia/comms/comms.html b/docs/1.0-dev/_modules/evennia/comms/comms.html
index a8e00097d4..74183e1135 100644
--- a/docs/1.0-dev/_modules/evennia/comms/comms.html
+++ b/docs/1.0-dev/_modules/evennia/comms/comms.html
@@ -912,11 +912,11 @@
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/_modules/evennia/comms/managers.html b/docs/1.0-dev/_modules/evennia/comms/managers.html
index e72c52c776..25f75d75a7 100644
--- a/docs/1.0-dev/_modules/evennia/comms/managers.html
+++ b/docs/1.0-dev/_modules/evennia/comms/managers.html
@@ -465,11 +465,11 @@
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/_modules/evennia/comms/models.html b/docs/1.0-dev/_modules/evennia/comms/models.html
index f5be0ef1e2..3be18b0dfd 100644
--- a/docs/1.0-dev/_modules/evennia/comms/models.html
+++ b/docs/1.0-dev/_modules/evennia/comms/models.html
@@ -778,11 +778,11 @@
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/_modules/evennia/contrib/awsstorage/aws_s3_cdn.html b/docs/1.0-dev/_modules/evennia/contrib/awsstorage/aws_s3_cdn.html
index deb0b19320..800d8cf646 100644
--- a/docs/1.0-dev/_modules/evennia/contrib/awsstorage/aws_s3_cdn.html
+++ b/docs/1.0-dev/_modules/evennia/contrib/awsstorage/aws_s3_cdn.html
@@ -928,11 +928,11 @@
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/_modules/evennia/contrib/awsstorage/tests.html b/docs/1.0-dev/_modules/evennia/contrib/awsstorage/tests.html
index 270b7acce6..dba8b2c0cf 100644
--- a/docs/1.0-dev/_modules/evennia/contrib/awsstorage/tests.html
+++ b/docs/1.0-dev/_modules/evennia/contrib/awsstorage/tests.html
@@ -673,11 +673,11 @@
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/_modules/evennia/contrib/barter.html b/docs/1.0-dev/_modules/evennia/contrib/barter.html
index 493b58340d..56ff3acf8e 100644
--- a/docs/1.0-dev/_modules/evennia/contrib/barter.html
+++ b/docs/1.0-dev/_modules/evennia/contrib/barter.html
@@ -962,11 +962,11 @@
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/_modules/evennia/contrib/building_menu.html b/docs/1.0-dev/_modules/evennia/contrib/building_menu.html
index 530a5b501c..b297839cbe 100644
--- a/docs/1.0-dev/_modules/evennia/contrib/building_menu.html
+++ b/docs/1.0-dev/_modules/evennia/contrib/building_menu.html
@@ -1332,11 +1332,11 @@
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/_modules/evennia/contrib/chargen.html b/docs/1.0-dev/_modules/evennia/contrib/chargen.html
index 72577be3de..5a5478ce0a 100644
--- a/docs/1.0-dev/_modules/evennia/contrib/chargen.html
+++ b/docs/1.0-dev/_modules/evennia/contrib/chargen.html
@@ -259,11 +259,11 @@
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/_modules/evennia/contrib/clothing.html b/docs/1.0-dev/_modules/evennia/contrib/clothing.html
index 159ee6afb6..19e5770b24 100644
--- a/docs/1.0-dev/_modules/evennia/contrib/clothing.html
+++ b/docs/1.0-dev/_modules/evennia/contrib/clothing.html
@@ -809,11 +809,11 @@
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/_modules/evennia/contrib/crafting/crafting.html b/docs/1.0-dev/_modules/evennia/contrib/crafting/crafting.html
index a61ea8df5c..8289c88a0b 100644
--- a/docs/1.0-dev/_modules/evennia/contrib/crafting/crafting.html
+++ b/docs/1.0-dev/_modules/evennia/contrib/crafting/crafting.html
@@ -1126,11 +1126,11 @@
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/_modules/evennia/contrib/crafting/example_recipes.html b/docs/1.0-dev/_modules/evennia/contrib/crafting/example_recipes.html
index 739a5b117a..315bc583b7 100644
--- a/docs/1.0-dev/_modules/evennia/contrib/crafting/example_recipes.html
+++ b/docs/1.0-dev/_modules/evennia/contrib/crafting/example_recipes.html
@@ -367,11 +367,11 @@
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/_modules/evennia/contrib/crafting/tests.html b/docs/1.0-dev/_modules/evennia/contrib/crafting/tests.html
index 1f8b3bb110..41151ebe08 100644
--- a/docs/1.0-dev/_modules/evennia/contrib/crafting/tests.html
+++ b/docs/1.0-dev/_modules/evennia/contrib/crafting/tests.html
@@ -753,11 +753,11 @@
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/_modules/evennia/contrib/custom_gametime.html b/docs/1.0-dev/_modules/evennia/contrib/custom_gametime.html
index 864683ec4b..297a1995e1 100644
--- a/docs/1.0-dev/_modules/evennia/contrib/custom_gametime.html
+++ b/docs/1.0-dev/_modules/evennia/contrib/custom_gametime.html
@@ -374,11 +374,11 @@
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/_modules/evennia/contrib/dice.html b/docs/1.0-dev/_modules/evennia/contrib/dice.html
index 7b3af127c9..43f89f9b02 100644
--- a/docs/1.0-dev/_modules/evennia/contrib/dice.html
+++ b/docs/1.0-dev/_modules/evennia/contrib/dice.html
@@ -327,11 +327,11 @@
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/_modules/evennia/contrib/email_login.html b/docs/1.0-dev/_modules/evennia/contrib/email_login.html
index bc2d1a9e03..1e5b394c3a 100644
--- a/docs/1.0-dev/_modules/evennia/contrib/email_login.html
+++ b/docs/1.0-dev/_modules/evennia/contrib/email_login.html
@@ -428,11 +428,11 @@
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/_modules/evennia/contrib/evscaperoom/commands.html b/docs/1.0-dev/_modules/evennia/contrib/evscaperoom/commands.html
index da2ace9c35..0ab48f65f5 100644
--- a/docs/1.0-dev/_modules/evennia/contrib/evscaperoom/commands.html
+++ b/docs/1.0-dev/_modules/evennia/contrib/evscaperoom/commands.html
@@ -846,11 +846,11 @@
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/_modules/evennia/contrib/evscaperoom/menu.html b/docs/1.0-dev/_modules/evennia/contrib/evscaperoom/menu.html
index 9b991a21cd..0e7aaece44 100644
--- a/docs/1.0-dev/_modules/evennia/contrib/evscaperoom/menu.html
+++ b/docs/1.0-dev/_modules/evennia/contrib/evscaperoom/menu.html
@@ -419,11 +419,11 @@
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/_modules/evennia/contrib/evscaperoom/objects.html b/docs/1.0-dev/_modules/evennia/contrib/evscaperoom/objects.html
index f723e86e4d..461ea37a9d 100644
--- a/docs/1.0-dev/_modules/evennia/contrib/evscaperoom/objects.html
+++ b/docs/1.0-dev/_modules/evennia/contrib/evscaperoom/objects.html
@@ -1146,11 +1146,11 @@
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/_modules/evennia/contrib/evscaperoom/room.html b/docs/1.0-dev/_modules/evennia/contrib/evscaperoom/room.html
index 59f7eaa555..69e9a9308a 100644
--- a/docs/1.0-dev/_modules/evennia/contrib/evscaperoom/room.html
+++ b/docs/1.0-dev/_modules/evennia/contrib/evscaperoom/room.html
@@ -305,11 +305,11 @@
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/_modules/evennia/contrib/evscaperoom/state.html b/docs/1.0-dev/_modules/evennia/contrib/evscaperoom/state.html
index 1b1b14e4ee..1107fdde44 100644
--- a/docs/1.0-dev/_modules/evennia/contrib/evscaperoom/state.html
+++ b/docs/1.0-dev/_modules/evennia/contrib/evscaperoom/state.html
@@ -373,11 +373,11 @@
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/_modules/evennia/contrib/evscaperoom/tests.html b/docs/1.0-dev/_modules/evennia/contrib/evscaperoom/tests.html
index a04b467659..45f4a9f130 100644
--- a/docs/1.0-dev/_modules/evennia/contrib/evscaperoom/tests.html
+++ b/docs/1.0-dev/_modules/evennia/contrib/evscaperoom/tests.html
@@ -370,11 +370,11 @@
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/_modules/evennia/contrib/evscaperoom/utils.html b/docs/1.0-dev/_modules/evennia/contrib/evscaperoom/utils.html
index 5001756c80..6c66608f8e 100644
--- a/docs/1.0-dev/_modules/evennia/contrib/evscaperoom/utils.html
+++ b/docs/1.0-dev/_modules/evennia/contrib/evscaperoom/utils.html
@@ -260,11 +260,11 @@
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/_modules/evennia/contrib/extended_room.html b/docs/1.0-dev/_modules/evennia/contrib/extended_room.html
index ed8fce71c5..38e85c5f40 100644
--- a/docs/1.0-dev/_modules/evennia/contrib/extended_room.html
+++ b/docs/1.0-dev/_modules/evennia/contrib/extended_room.html
@@ -658,11 +658,11 @@
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/_modules/evennia/contrib/fieldfill.html b/docs/1.0-dev/_modules/evennia/contrib/fieldfill.html
index 4c6187cbf2..a7b1efd42d 100644
--- a/docs/1.0-dev/_modules/evennia/contrib/fieldfill.html
+++ b/docs/1.0-dev/_modules/evennia/contrib/fieldfill.html
@@ -781,11 +781,11 @@
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/_modules/evennia/contrib/gendersub.html b/docs/1.0-dev/_modules/evennia/contrib/gendersub.html
index b612ae9351..4c1d7880b9 100644
--- a/docs/1.0-dev/_modules/evennia/contrib/gendersub.html
+++ b/docs/1.0-dev/_modules/evennia/contrib/gendersub.html
@@ -222,11 +222,11 @@
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/_modules/evennia/contrib/health_bar.html b/docs/1.0-dev/_modules/evennia/contrib/health_bar.html
index fe4be7c300..1e4138d3b8 100644
--- a/docs/1.0-dev/_modules/evennia/contrib/health_bar.html
+++ b/docs/1.0-dev/_modules/evennia/contrib/health_bar.html
@@ -185,11 +185,11 @@
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/_modules/evennia/contrib/ingame_python/callbackhandler.html b/docs/1.0-dev/_modules/evennia/contrib/ingame_python/callbackhandler.html
index a833b5ae89..faf458077f 100644
--- a/docs/1.0-dev/_modules/evennia/contrib/ingame_python/callbackhandler.html
+++ b/docs/1.0-dev/_modules/evennia/contrib/ingame_python/callbackhandler.html
@@ -290,11 +290,11 @@
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/_modules/evennia/contrib/ingame_python/commands.html b/docs/1.0-dev/_modules/evennia/contrib/ingame_python/commands.html
index 27144a5828..34e3ce63cd 100644
--- a/docs/1.0-dev/_modules/evennia/contrib/ingame_python/commands.html
+++ b/docs/1.0-dev/_modules/evennia/contrib/ingame_python/commands.html
@@ -648,11 +648,11 @@
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/_modules/evennia/contrib/ingame_python/eventfuncs.html b/docs/1.0-dev/_modules/evennia/contrib/ingame_python/eventfuncs.html
index 09633ce39d..2261eafbed 100644
--- a/docs/1.0-dev/_modules/evennia/contrib/ingame_python/eventfuncs.html
+++ b/docs/1.0-dev/_modules/evennia/contrib/ingame_python/eventfuncs.html
@@ -156,11 +156,11 @@
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/_modules/evennia/contrib/ingame_python/scripts.html b/docs/1.0-dev/_modules/evennia/contrib/ingame_python/scripts.html
index 3940a2aacb..0175c1f3fd 100644
--- a/docs/1.0-dev/_modules/evennia/contrib/ingame_python/scripts.html
+++ b/docs/1.0-dev/_modules/evennia/contrib/ingame_python/scripts.html
@@ -734,11 +734,11 @@
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/_modules/evennia/contrib/ingame_python/tests.html b/docs/1.0-dev/_modules/evennia/contrib/ingame_python/tests.html
index 8b0c295d42..d21930e74c 100644
--- a/docs/1.0-dev/_modules/evennia/contrib/ingame_python/tests.html
+++ b/docs/1.0-dev/_modules/evennia/contrib/ingame_python/tests.html
@@ -608,11 +608,11 @@
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/_modules/evennia/contrib/ingame_python/utils.html b/docs/1.0-dev/_modules/evennia/contrib/ingame_python/utils.html
index 4e6b0b5dba..75d6fcf083 100644
--- a/docs/1.0-dev/_modules/evennia/contrib/ingame_python/utils.html
+++ b/docs/1.0-dev/_modules/evennia/contrib/ingame_python/utils.html
@@ -327,11 +327,11 @@
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/_modules/evennia/contrib/mail.html b/docs/1.0-dev/_modules/evennia/contrib/mail.html
index f7cd0fca78..c04a9ffb55 100644
--- a/docs/1.0-dev/_modules/evennia/contrib/mail.html
+++ b/docs/1.0-dev/_modules/evennia/contrib/mail.html
@@ -424,11 +424,11 @@
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/_modules/evennia/contrib/multidescer.html b/docs/1.0-dev/_modules/evennia/contrib/multidescer.html
index b2427e51f6..8c023a8bba 100644
--- a/docs/1.0-dev/_modules/evennia/contrib/multidescer.html
+++ b/docs/1.0-dev/_modules/evennia/contrib/multidescer.html
@@ -335,11 +335,11 @@
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/_modules/evennia/contrib/puzzles.html b/docs/1.0-dev/_modules/evennia/contrib/puzzles.html
index e4e40a879a..8e875e6468 100644
--- a/docs/1.0-dev/_modules/evennia/contrib/puzzles.html
+++ b/docs/1.0-dev/_modules/evennia/contrib/puzzles.html
@@ -879,11 +879,11 @@
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/_modules/evennia/contrib/random_string_generator.html b/docs/1.0-dev/_modules/evennia/contrib/random_string_generator.html
index 221fca73ac..7cb8af425a 100644
--- a/docs/1.0-dev/_modules/evennia/contrib/random_string_generator.html
+++ b/docs/1.0-dev/_modules/evennia/contrib/random_string_generator.html
@@ -419,11 +419,11 @@
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/_modules/evennia/contrib/rplanguage.html b/docs/1.0-dev/_modules/evennia/contrib/rplanguage.html
index 6aab95588d..e946a59c3c 100644
--- a/docs/1.0-dev/_modules/evennia/contrib/rplanguage.html
+++ b/docs/1.0-dev/_modules/evennia/contrib/rplanguage.html
@@ -651,11 +651,11 @@
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/_modules/evennia/contrib/rpsystem.html b/docs/1.0-dev/_modules/evennia/contrib/rpsystem.html
index 485fa3a3ba..2a88322080 100644
--- a/docs/1.0-dev/_modules/evennia/contrib/rpsystem.html
+++ b/docs/1.0-dev/_modules/evennia/contrib/rpsystem.html
@@ -1692,11 +1692,11 @@
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/_modules/evennia/contrib/security/auditing/outputs.html b/docs/1.0-dev/_modules/evennia/contrib/security/auditing/outputs.html
index b65a72aae3..665256cb0e 100644
--- a/docs/1.0-dev/_modules/evennia/contrib/security/auditing/outputs.html
+++ b/docs/1.0-dev/_modules/evennia/contrib/security/auditing/outputs.html
@@ -125,11 +125,11 @@
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/_modules/evennia/contrib/security/auditing/server.html b/docs/1.0-dev/_modules/evennia/contrib/security/auditing/server.html
index 4648a00cd7..f6649c5936 100644
--- a/docs/1.0-dev/_modules/evennia/contrib/security/auditing/server.html
+++ b/docs/1.0-dev/_modules/evennia/contrib/security/auditing/server.html
@@ -314,11 +314,11 @@
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/_modules/evennia/contrib/security/auditing/tests.html b/docs/1.0-dev/_modules/evennia/contrib/security/auditing/tests.html
index e6bdab6e16..82832fd242 100644
--- a/docs/1.0-dev/_modules/evennia/contrib/security/auditing/tests.html
+++ b/docs/1.0-dev/_modules/evennia/contrib/security/auditing/tests.html
@@ -179,11 +179,11 @@
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/_modules/evennia/contrib/simpledoor.html b/docs/1.0-dev/_modules/evennia/contrib/simpledoor.html
index f4579e4077..7b187c0ed7 100644
--- a/docs/1.0-dev/_modules/evennia/contrib/simpledoor.html
+++ b/docs/1.0-dev/_modules/evennia/contrib/simpledoor.html
@@ -237,11 +237,11 @@
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/_modules/evennia/contrib/slow_exit.html b/docs/1.0-dev/_modules/evennia/contrib/slow_exit.html
index 3fb5d70310..2b440186dc 100644
--- a/docs/1.0-dev/_modules/evennia/contrib/slow_exit.html
+++ b/docs/1.0-dev/_modules/evennia/contrib/slow_exit.html
@@ -209,11 +209,11 @@
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/_modules/evennia/contrib/talking_npc.html b/docs/1.0-dev/_modules/evennia/contrib/talking_npc.html
index 8ca5174657..868de03fca 100644
--- a/docs/1.0-dev/_modules/evennia/contrib/talking_npc.html
+++ b/docs/1.0-dev/_modules/evennia/contrib/talking_npc.html
@@ -198,11 +198,11 @@
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/_modules/evennia/contrib/test_traits.html b/docs/1.0-dev/_modules/evennia/contrib/test_traits.html
index a9ed1ba92a..3d40724888 100644
--- a/docs/1.0-dev/_modules/evennia/contrib/test_traits.html
+++ b/docs/1.0-dev/_modules/evennia/contrib/test_traits.html
@@ -970,11 +970,11 @@
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/_modules/evennia/contrib/traits.html b/docs/1.0-dev/_modules/evennia/contrib/traits.html
index 3df6663e99..351ccef9d6 100644
--- a/docs/1.0-dev/_modules/evennia/contrib/traits.html
+++ b/docs/1.0-dev/_modules/evennia/contrib/traits.html
@@ -1492,11 +1492,11 @@
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/_modules/evennia/contrib/tree_select.html b/docs/1.0-dev/_modules/evennia/contrib/tree_select.html
index 0e5d378012..fe9423221d 100644
--- a/docs/1.0-dev/_modules/evennia/contrib/tree_select.html
+++ b/docs/1.0-dev/_modules/evennia/contrib/tree_select.html
@@ -642,11 +642,11 @@
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/_modules/evennia/contrib/turnbattle/tb_basic.html b/docs/1.0-dev/_modules/evennia/contrib/turnbattle/tb_basic.html
index a4688a5cdb..0d50af3354 100644
--- a/docs/1.0-dev/_modules/evennia/contrib/turnbattle/tb_basic.html
+++ b/docs/1.0-dev/_modules/evennia/contrib/turnbattle/tb_basic.html
@@ -847,11 +847,11 @@
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/_modules/evennia/contrib/turnbattle/tb_equip.html b/docs/1.0-dev/_modules/evennia/contrib/turnbattle/tb_equip.html
index 38af164c36..5bbfd7bb06 100644
--- a/docs/1.0-dev/_modules/evennia/contrib/turnbattle/tb_equip.html
+++ b/docs/1.0-dev/_modules/evennia/contrib/turnbattle/tb_equip.html
@@ -1203,11 +1203,11 @@
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/_modules/evennia/contrib/turnbattle/tb_items.html b/docs/1.0-dev/_modules/evennia/contrib/turnbattle/tb_items.html
index ab30902f75..9200ef1030 100644
--- a/docs/1.0-dev/_modules/evennia/contrib/turnbattle/tb_items.html
+++ b/docs/1.0-dev/_modules/evennia/contrib/turnbattle/tb_items.html
@@ -1522,11 +1522,11 @@
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/_modules/evennia/contrib/turnbattle/tb_magic.html b/docs/1.0-dev/_modules/evennia/contrib/turnbattle/tb_magic.html
index 89d66b917c..d0b8ea0a24 100644
--- a/docs/1.0-dev/_modules/evennia/contrib/turnbattle/tb_magic.html
+++ b/docs/1.0-dev/_modules/evennia/contrib/turnbattle/tb_magic.html
@@ -1444,11 +1444,11 @@
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
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 7fa739804b..bfd520efcd 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
@@ -1500,11 +1500,11 @@
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/_modules/evennia/contrib/tutorial_examples/bodyfunctions.html b/docs/1.0-dev/_modules/evennia/contrib/tutorial_examples/bodyfunctions.html
index 907ae91dcc..3e9bc4a27e 100644
--- a/docs/1.0-dev/_modules/evennia/contrib/tutorial_examples/bodyfunctions.html
+++ b/docs/1.0-dev/_modules/evennia/contrib/tutorial_examples/bodyfunctions.html
@@ -131,11 +131,11 @@
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
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 64ba7dfb6d..9bd99624ea 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
@@ -127,11 +127,11 @@
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/_modules/evennia/contrib/tutorial_examples/red_button.html b/docs/1.0-dev/_modules/evennia/contrib/tutorial_examples/red_button.html
index 58fc1e8890..4cba4c6d20 100644
--- a/docs/1.0-dev/_modules/evennia/contrib/tutorial_examples/red_button.html
+++ b/docs/1.0-dev/_modules/evennia/contrib/tutorial_examples/red_button.html
@@ -642,11 +642,11 @@
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/_modules/evennia/contrib/tutorial_examples/tests.html b/docs/1.0-dev/_modules/evennia/contrib/tutorial_examples/tests.html
index abd0718c67..0d729fc981 100644
--- a/docs/1.0-dev/_modules/evennia/contrib/tutorial_examples/tests.html
+++ b/docs/1.0-dev/_modules/evennia/contrib/tutorial_examples/tests.html
@@ -136,11 +136,11 @@
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/_modules/evennia/contrib/tutorial_world/intro_menu.html b/docs/1.0-dev/_modules/evennia/contrib/tutorial_world/intro_menu.html
index 89fadacb9d..1cd466d4f5 100644
--- a/docs/1.0-dev/_modules/evennia/contrib/tutorial_world/intro_menu.html
+++ b/docs/1.0-dev/_modules/evennia/contrib/tutorial_world/intro_menu.html
@@ -847,11 +847,11 @@
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/_modules/evennia/contrib/tutorial_world/mob.html b/docs/1.0-dev/_modules/evennia/contrib/tutorial_world/mob.html
index 98a187963a..51f9662f19 100644
--- a/docs/1.0-dev/_modules/evennia/contrib/tutorial_world/mob.html
+++ b/docs/1.0-dev/_modules/evennia/contrib/tutorial_world/mob.html
@@ -501,11 +501,11 @@
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/_modules/evennia/contrib/tutorial_world/objects.html b/docs/1.0-dev/_modules/evennia/contrib/tutorial_world/objects.html
index ca3978fc26..8c09206862 100644
--- a/docs/1.0-dev/_modules/evennia/contrib/tutorial_world/objects.html
+++ b/docs/1.0-dev/_modules/evennia/contrib/tutorial_world/objects.html
@@ -1249,11 +1249,11 @@
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/_modules/evennia/contrib/tutorial_world/rooms.html b/docs/1.0-dev/_modules/evennia/contrib/tutorial_world/rooms.html
index 72c5de5f6a..a86d2d0952 100644
--- a/docs/1.0-dev/_modules/evennia/contrib/tutorial_world/rooms.html
+++ b/docs/1.0-dev/_modules/evennia/contrib/tutorial_world/rooms.html
@@ -1233,11 +1233,11 @@
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/_modules/evennia/contrib/unixcommand.html b/docs/1.0-dev/_modules/evennia/contrib/unixcommand.html
index 0ffaaaa676..b21ebff2c8 100644
--- a/docs/1.0-dev/_modules/evennia/contrib/unixcommand.html
+++ b/docs/1.0-dev/_modules/evennia/contrib/unixcommand.html
@@ -360,11 +360,11 @@
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/_modules/evennia/contrib/wilderness.html b/docs/1.0-dev/_modules/evennia/contrib/wilderness.html
index f8c9676c25..cd11ca768e 100644
--- a/docs/1.0-dev/_modules/evennia/contrib/wilderness.html
+++ b/docs/1.0-dev/_modules/evennia/contrib/wilderness.html
@@ -842,11 +842,11 @@
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/_modules/evennia/contrib/xyzgrid/commands.html b/docs/1.0-dev/_modules/evennia/contrib/xyzgrid/commands.html
index a7b8f2ad6e..7019b2747c 100644
--- a/docs/1.0-dev/_modules/evennia/contrib/xyzgrid/commands.html
+++ b/docs/1.0-dev/_modules/evennia/contrib/xyzgrid/commands.html
@@ -539,11 +539,11 @@
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/_modules/evennia/contrib/xyzgrid/example.html b/docs/1.0-dev/_modules/evennia/contrib/xyzgrid/example.html
index 37e93a50a7..c5e5aa9683 100644
--- a/docs/1.0-dev/_modules/evennia/contrib/xyzgrid/example.html
+++ b/docs/1.0-dev/_modules/evennia/contrib/xyzgrid/example.html
@@ -340,11 +340,11 @@
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/_modules/evennia/contrib/xyzgrid/launchcmd.html b/docs/1.0-dev/_modules/evennia/contrib/xyzgrid/launchcmd.html
index 40b9663980..aacd73264c 100644
--- a/docs/1.0-dev/_modules/evennia/contrib/xyzgrid/launchcmd.html
+++ b/docs/1.0-dev/_modules/evennia/contrib/xyzgrid/launchcmd.html
@@ -230,7 +230,10 @@
xymap_data = xyzgrid.grid
if not xymap_data:
- print("The XYZgrid is currently empty. Use 'add' to add paths to your map data.")
+ if xyzgrid.db.map_data:
+ print("Grid could not load due to errors.")
+ else:
+ print("The XYZgrid is currently empty. Use 'add' to add paths to your map data.")
return
if not suboptions:
@@ -307,7 +310,12 @@
print(f" XYMaps from {path}:\n {mapnames}")
xymap_data_list.extend(maps)
grid.add_maps(*xymap_data_list)
- print(f"Added (or readded) {len(xymap_data_list)} XYMaps to grid.")
+ try:
+ grid.reload()
+ except Exception as err:
+ print(err)
+ else:
+ print(f"Added (or readded) {len(xymap_data_list)} XYMaps to grid.")
def _option_spawn(*suboptions):
@@ -477,11 +485,11 @@
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/_modules/evennia/contrib/xyzgrid/tests.html b/docs/1.0-dev/_modules/evennia/contrib/xyzgrid/tests.html
index 3ad955b0cf..e2c5a5ee73 100644
--- a/docs/1.0-dev/_modules/evennia/contrib/xyzgrid/tests.html
+++ b/docs/1.0-dev/_modules/evennia/contrib/xyzgrid/tests.html
@@ -1358,11 +1358,11 @@
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/_modules/evennia/contrib/xyzgrid/utils.html b/docs/1.0-dev/_modules/evennia/contrib/xyzgrid/utils.html
index e29594f83f..c92402b682 100644
--- a/docs/1.0-dev/_modules/evennia/contrib/xyzgrid/utils.html
+++ b/docs/1.0-dev/_modules/evennia/contrib/xyzgrid/utils.html
@@ -120,11 +120,11 @@
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/_modules/evennia/contrib/xyzgrid/xymap.html b/docs/1.0-dev/_modules/evennia/contrib/xyzgrid/xymap.html
index 76dcaeba2d..30b2ec1c5f 100644
--- a/docs/1.0-dev/_modules/evennia/contrib/xyzgrid/xymap.html
+++ b/docs/1.0-dev/_modules/evennia/contrib/xyzgrid/xymap.html
@@ -298,8 +298,10 @@
return "\n".join("".join(line) for line in self.display_map[::-1])
def __repr__(self):
- return (f"<XYMap(Z={self.Z}), {self.max_X + 1}x{self.max_Y + 1}, "
- f"{len(self.node_index_map)} nodes>")
+ nnodes = 0
+ if self.node_index_map:
+ nnodes = len(self.node_index_map)
+ return (f"<XYMap(Z={self.Z}), {self.max_X + 1}x{self.max_Y + 1}, {nnodes} nodes>")
[docs] def log(self, msg):
if self.xyzgrid:
@@ -991,11 +993,11 @@
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/_modules/evennia/contrib/xyzgrid/xymap_legend.html b/docs/1.0-dev/_modules/evennia/contrib/xyzgrid/xymap_legend.html
index e321e16d9f..18517a3bf6 100644
--- a/docs/1.0-dev/_modules/evennia/contrib/xyzgrid/xymap_legend.html
+++ b/docs/1.0-dev/_modules/evennia/contrib/xyzgrid/xymap_legend.html
@@ -1353,11 +1353,11 @@
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/_modules/evennia/contrib/xyzgrid/xyzgrid.html b/docs/1.0-dev/_modules/evennia/contrib/xyzgrid/xyzgrid.html
index 98b2c50a52..3bd0c254ed 100644
--- a/docs/1.0-dev/_modules/evennia/contrib/xyzgrid/xyzgrid.html
+++ b/docs/1.0-dev/_modules/evennia/contrib/xyzgrid/xyzgrid.html
@@ -163,9 +163,7 @@
"""
map_data_list = variable_from_module(module_path, "XYMAP_DATA_LIST")
if not map_data_list:
- map_data_list = variable_from_module(module_path, "XYMAP_DATA")
- if map_data_list:
- map_data_list = make_iter(map_data_list)
+ map_data_list = [variable_from_module(module_path, "XYMAP_DATA")]
# inject the python path in the map data
for mapdata in map_data_list:
mapdata['module_path'] = module_path
@@ -310,11 +308,14 @@
xymap.spawn_links(xy=(x, y), directions=directions)
-[docs]def get_xyzgrid():
+[docs]def get_xyzgrid(print_errors=True):
"""
Helper for getting the grid. This will create the XYZGrid global script if it didn't
previously exist.
+ Args:
+ print_errors (bool, optional): Print errors directly to console rather than to log.
+
"""
xyzgrid = XYZGrid.objects.all()
if not xyzgrid:
@@ -332,7 +333,10 @@
if not xyzgrid.ndb.loaded:
xyzgrid.reload()
except Exception as err:
- xyzgrid.log(str(err))
+ if print_errors:
+ print(err)
+ else:
+ xyzgrid.log(str(err))
return xyzgrid
@@ -359,11 +363,11 @@
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/_modules/evennia/contrib/xyzgrid/xyzroom.html b/docs/1.0-dev/_modules/evennia/contrib/xyzgrid/xyzroom.html
index c0471b2958..c107c7b26c 100644
--- a/docs/1.0-dev/_modules/evennia/contrib/xyzgrid/xyzroom.html
+++ b/docs/1.0-dev/_modules/evennia/contrib/xyzgrid/xyzroom.html
@@ -654,11 +654,11 @@
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/_modules/evennia/help/filehelp.html b/docs/1.0-dev/_modules/evennia/help/filehelp.html
index c30fc6abfd..8904c85943 100644
--- a/docs/1.0-dev/_modules/evennia/help/filehelp.html
+++ b/docs/1.0-dev/_modules/evennia/help/filehelp.html
@@ -109,6 +109,8 @@
from dataclasses import dataclass
from django.conf import settings
+from django.urls import reverse
+from django.utils.text import slugify
from evennia.utils.utils import (
variable_from_module, make_iter, all_from_module)
from evennia.utils import logger
@@ -157,6 +159,53 @@
def locks(self):
return LockHandler(self)
+[docs] def web_get_detail_url(self):
+ """
+ Returns the URI path for a View that allows users to view details for
+ this object.
+
+ ex. Oscar (Character) = '/characters/oscar/1/'
+
+ For this to work, the developer must have defined a named view somewhere
+ in urls.py that follows the format 'modelname-action', so in this case
+ a named view of 'character-detail' would be referenced by this method.
+
+ ex.
+ ::
+ url(r'characters/(?P<slug>[\w\d\-]+)/(?P<pk>[0-9]+)/$',
+ CharDetailView.as_view(), name='character-detail')
+
+ If no View has been created and defined in urls.py, returns an
+ HTML anchor.
+
+ This method is naive and simply returns a path. Securing access to
+ the actual view and limiting who can view this object is the developer's
+ responsibility.
+
+ Returns:
+ path (str): URI path to object detail page, if defined.
+
+ """
+ try:
+ return reverse(
+ 'help-entry-detail',
+ kwargs={"category": slugify(self.help_category), "topic": slugify(self.key)},
+ )
+ except Exception:
+ return "#"
+
+[docs] def web_get_admin_url(self):
+ """
+ Returns the URI path for the Django Admin page for this object.
+
+ ex. Account#1 = '/admin/accounts/accountdb/1/change/'
+
+ Returns:
+ path (str): URI path to Django Admin page for object.
+
+ """
+ return False
+
[docs] def access(self, accessing_obj, access_type="view", default=True):
"""
Determines if another object has permission to access this help entry.
@@ -274,11 +323,11 @@
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/_modules/evennia/help/manager.html b/docs/1.0-dev/_modules/evennia/help/manager.html
index 9db6127e4a..96a14393ca 100644
--- a/docs/1.0-dev/_modules/evennia/help/manager.html
+++ b/docs/1.0-dev/_modules/evennia/help/manager.html
@@ -216,11 +216,11 @@
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/_modules/evennia/help/models.html b/docs/1.0-dev/_modules/evennia/help/models.html
index 3e24f6c600..c401463d21 100644
--- a/docs/1.0-dev/_modules/evennia/help/models.html
+++ b/docs/1.0-dev/_modules/evennia/help/models.html
@@ -98,6 +98,7 @@
db_key = models.CharField(
"help key", max_length=255, unique=True, help_text="key to search for"
)
+
# help category
db_help_category = models.CharField(
"help category",
@@ -105,6 +106,7 @@
default="General",
help_text="organizes help entries in lists",
)
+
# the actual help entry text, in any formatting.
db_entrytext = models.TextField(
"help entry", blank=True, help_text="the main body of help text"
@@ -263,6 +265,7 @@
path (str): URI path to object detail page, if defined.
"""
+
try:
return reverse(
"%s-detail" % slugify(self._meta.verbose_name),
@@ -369,11 +372,11 @@
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/_modules/evennia/help/utils.html b/docs/1.0-dev/_modules/evennia/help/utils.html
index 2b21aa4478..2dd26b5262 100644
--- a/docs/1.0-dev/_modules/evennia/help/utils.html
+++ b/docs/1.0-dev/_modules/evennia/help/utils.html
@@ -296,11 +296,11 @@
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/_modules/evennia/locks/lockfuncs.html b/docs/1.0-dev/_modules/evennia/locks/lockfuncs.html
index e64d1c4e4e..f44031f1e1 100644
--- a/docs/1.0-dev/_modules/evennia/locks/lockfuncs.html
+++ b/docs/1.0-dev/_modules/evennia/locks/lockfuncs.html
@@ -686,11 +686,11 @@
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/_modules/evennia/locks/lockhandler.html b/docs/1.0-dev/_modules/evennia/locks/lockhandler.html
index 2a6afd700a..c1a4090e4f 100644
--- a/docs/1.0-dev/_modules/evennia/locks/lockhandler.html
+++ b/docs/1.0-dev/_modules/evennia/locks/lockhandler.html
@@ -846,11 +846,11 @@
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/_modules/evennia/objects/manager.html b/docs/1.0-dev/_modules/evennia/objects/manager.html
index 06106afa97..fe1eaad6bd 100644
--- a/docs/1.0-dev/_modules/evennia/objects/manager.html
+++ b/docs/1.0-dev/_modules/evennia/objects/manager.html
@@ -665,11 +665,11 @@
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/_modules/evennia/objects/models.html b/docs/1.0-dev/_modules/evennia/objects/models.html
index 9d2b4eddd3..ffa285360c 100644
--- a/docs/1.0-dev/_modules/evennia/objects/models.html
+++ b/docs/1.0-dev/_modules/evennia/objects/models.html
@@ -457,11 +457,11 @@
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/_modules/evennia/objects/objects.html b/docs/1.0-dev/_modules/evennia/objects/objects.html
index 54cb0a73b7..0d3885f381 100644
--- a/docs/1.0-dev/_modules/evennia/objects/objects.html
+++ b/docs/1.0-dev/_modules/evennia/objects/objects.html
@@ -2827,11 +2827,11 @@
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/_modules/evennia/prototypes/menus.html b/docs/1.0-dev/_modules/evennia/prototypes/menus.html
index 31be042599..729b7a7efc 100644
--- a/docs/1.0-dev/_modules/evennia/prototypes/menus.html
+++ b/docs/1.0-dev/_modules/evennia/prototypes/menus.html
@@ -2823,11 +2823,11 @@
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/_modules/evennia/prototypes/protfuncs.html b/docs/1.0-dev/_modules/evennia/prototypes/protfuncs.html
index 1f36b9a99e..2ceddd9c6e 100644
--- a/docs/1.0-dev/_modules/evennia/prototypes/protfuncs.html
+++ b/docs/1.0-dev/_modules/evennia/prototypes/protfuncs.html
@@ -124,11 +124,11 @@
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/_modules/evennia/prototypes/prototypes.html b/docs/1.0-dev/_modules/evennia/prototypes/prototypes.html
index b9cc7fac6d..c07a813052 100644
--- a/docs/1.0-dev/_modules/evennia/prototypes/prototypes.html
+++ b/docs/1.0-dev/_modules/evennia/prototypes/prototypes.html
@@ -1127,11 +1127,11 @@
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/_modules/evennia/prototypes/spawner.html b/docs/1.0-dev/_modules/evennia/prototypes/spawner.html
index e2b05f59bf..bd87556197 100644
--- a/docs/1.0-dev/_modules/evennia/prototypes/spawner.html
+++ b/docs/1.0-dev/_modules/evennia/prototypes/spawner.html
@@ -925,7 +925,8 @@
protparents = {prot["prototype_key"].lower(): prot for prot in protlib.search_prototype()}
if not kwargs.get("only_validate"):
- # homogenization to be more lenient about prototype format when entering the prototype manually
+ # homogenization to be more lenient about prototype format when entering the prototype
+ # manually
prototypes = [protlib.homogenize_prototype(prot) for prot in prototypes]
# overload module's protparents with specifically given protparents
@@ -934,7 +935,7 @@
for key, protparent in kwargs.get("prototype_parents", {}).items():
key = str(key).lower()
protparent["prototype_key"] = str(protparent.get("prototype_key", key)).lower()
- protparents[key] = protparent
+ protparents[key] = protlib.homogenize_prototype(protparent)
if "return_parents" in kwargs:
# only return the parents
@@ -1074,11 +1075,11 @@
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/_modules/evennia/scripts/manager.html b/docs/1.0-dev/_modules/evennia/scripts/manager.html
index e86c0153de..c0c89b3b2e 100644
--- a/docs/1.0-dev/_modules/evennia/scripts/manager.html
+++ b/docs/1.0-dev/_modules/evennia/scripts/manager.html
@@ -261,11 +261,11 @@
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/_modules/evennia/scripts/models.html b/docs/1.0-dev/_modules/evennia/scripts/models.html
index b57915842b..5e8a27ee6c 100644
--- a/docs/1.0-dev/_modules/evennia/scripts/models.html
+++ b/docs/1.0-dev/_modules/evennia/scripts/models.html
@@ -246,11 +246,11 @@
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/_modules/evennia/scripts/monitorhandler.html b/docs/1.0-dev/_modules/evennia/scripts/monitorhandler.html
index ffcd7c8a17..83ee4624de 100644
--- a/docs/1.0-dev/_modules/evennia/scripts/monitorhandler.html
+++ b/docs/1.0-dev/_modules/evennia/scripts/monitorhandler.html
@@ -272,11 +272,11 @@
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/_modules/evennia/scripts/scripthandler.html b/docs/1.0-dev/_modules/evennia/scripts/scripthandler.html
index ae830725c3..53762f81c0 100644
--- a/docs/1.0-dev/_modules/evennia/scripts/scripthandler.html
+++ b/docs/1.0-dev/_modules/evennia/scripts/scripthandler.html
@@ -220,11 +220,11 @@
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/_modules/evennia/scripts/scripts.html b/docs/1.0-dev/_modules/evennia/scripts/scripts.html
index b56607bf8d..a79882d484 100644
--- a/docs/1.0-dev/_modules/evennia/scripts/scripts.html
+++ b/docs/1.0-dev/_modules/evennia/scripts/scripts.html
@@ -478,12 +478,20 @@
# autostart the script
self._start_task(force_restart=True)
- def delete(self):
+ def delete(self, stop_task=True):
"""
- Delete the Script. Makes sure to stop any timer tasks first.
+ Delete the Script. Normally stops any timer task. This fires at_script_delete before
+ deletion.
+
+ Args:
+ stop_task (bool, optional): If unset, the task will not be stopped
+ when this method is called. The main reason for setting this to False
+ is if wanting to delete the script from the at_stop method - setting
+ this will then avoid an infinite recursion.
"""
- self._stop_task()
+ if stop_task:
+ self._stop_task()
self.at_script_delete()
super().delete()
@@ -842,11 +850,11 @@
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/_modules/evennia/scripts/taskhandler.html b/docs/1.0-dev/_modules/evennia/scripts/taskhandler.html
index 191945c1af..ea6217ec7d 100644
--- a/docs/1.0-dev/_modules/evennia/scripts/taskhandler.html
+++ b/docs/1.0-dev/_modules/evennia/scripts/taskhandler.html
@@ -675,11 +675,11 @@
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/_modules/evennia/scripts/tickerhandler.html b/docs/1.0-dev/_modules/evennia/scripts/tickerhandler.html
index 811f5edb4c..8c5655b4a6 100644
--- a/docs/1.0-dev/_modules/evennia/scripts/tickerhandler.html
+++ b/docs/1.0-dev/_modules/evennia/scripts/tickerhandler.html
@@ -708,11 +708,11 @@
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/_modules/evennia/server/amp_client.html b/docs/1.0-dev/_modules/evennia/server/amp_client.html
index 44e7e6f075..d0ec60062b 100644
--- a/docs/1.0-dev/_modules/evennia/server/amp_client.html
+++ b/docs/1.0-dev/_modules/evennia/server/amp_client.html
@@ -317,11 +317,11 @@
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/_modules/evennia/server/connection_wizard.html b/docs/1.0-dev/_modules/evennia/server/connection_wizard.html
index 2220de49ce..4741a0b33c 100644
--- a/docs/1.0-dev/_modules/evennia/server/connection_wizard.html
+++ b/docs/1.0-dev/_modules/evennia/server/connection_wizard.html
@@ -586,11 +586,11 @@
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/_modules/evennia/server/deprecations.html b/docs/1.0-dev/_modules/evennia/server/deprecations.html
index af0dd89200..00df6b86ae 100644
--- a/docs/1.0-dev/_modules/evennia/server/deprecations.html
+++ b/docs/1.0-dev/_modules/evennia/server/deprecations.html
@@ -224,11 +224,11 @@
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/_modules/evennia/server/evennia_launcher.html b/docs/1.0-dev/_modules/evennia/server/evennia_launcher.html
index 9f363a2459..703d621c54 100644
--- a/docs/1.0-dev/_modules/evennia/server/evennia_launcher.html
+++ b/docs/1.0-dev/_modules/evennia/server/evennia_launcher.html
@@ -2419,11 +2419,11 @@
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/_modules/evennia/server/game_index_client/client.html b/docs/1.0-dev/_modules/evennia/server/game_index_client/client.html
index 3d6cc1ae61..942da33379 100644
--- a/docs/1.0-dev/_modules/evennia/server/game_index_client/client.html
+++ b/docs/1.0-dev/_modules/evennia/server/game_index_client/client.html
@@ -244,11 +244,11 @@
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/_modules/evennia/server/game_index_client/service.html b/docs/1.0-dev/_modules/evennia/server/game_index_client/service.html
index 69fcf9fc8d..86d462858b 100644
--- a/docs/1.0-dev/_modules/evennia/server/game_index_client/service.html
+++ b/docs/1.0-dev/_modules/evennia/server/game_index_client/service.html
@@ -123,11 +123,11 @@
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/_modules/evennia/server/initial_setup.html b/docs/1.0-dev/_modules/evennia/server/initial_setup.html
index 84b5d84469..f66cb2f644 100644
--- a/docs/1.0-dev/_modules/evennia/server/initial_setup.html
+++ b/docs/1.0-dev/_modules/evennia/server/initial_setup.html
@@ -41,9 +41,9 @@
Source code for evennia.server.initial_setup
"""
-This module handles initial database propagation, which is only run the first
-time the game starts. It will create some default channels, objects, and
-other things.
+This module handles initial database propagation, which is only run the first time the game starts.
+It will create some default objects (notably give #1 its evennia-specific properties, and create the
+Limbo room). It will also hooks, and then perform an initial restart.
Everything starts at handle_setup()
"""
@@ -83,16 +83,22 @@
"""
-[docs]def get_god_account():
+def _get_superuser_account():
"""
- Creates the god user and don't take no for an answer.
+ Get the superuser (created at the command line) and don't take no for an answer.
+
+ Returns:
+ Account: The first superuser (User #1).
+
+ Raises:
+ AccountDB.DoesNotExist: If the superuser couldn't be found.
"""
try:
- god_account = AccountDB.objects.get(id=1)
+ superuser = AccountDB.objects.get(id=1)
except AccountDB.DoesNotExist:
raise AccountDB.DoesNotExist(ERROR_NO_SUPERUSER)
- return god_account
+ return superuser
[docs]def create_objects():
@@ -105,84 +111,68 @@
# Set the initial User's account object's username on the #1 object.
# This object is pure django and only holds name, email and password.
- god_account = get_god_account()
+ superuser = _get_superuser_account()
+ from evennia.objects.models import ObjectDB
# Create an Account 'user profile' object to hold eventual
# mud-specific settings for the AccountDB object.
account_typeclass = settings.BASE_ACCOUNT_TYPECLASS
- # run all creation hooks on god_account (we must do so manually
+ # run all creation hooks on superuser (we must do so manually
# since the manage.py command does not)
- god_account.swap_typeclass(account_typeclass, clean_attributes=True)
- god_account.basetype_setup()
- god_account.at_account_creation()
- god_account.locks.add(
+ superuser.swap_typeclass(account_typeclass, clean_attributes=True)
+ superuser.basetype_setup()
+ superuser.at_account_creation()
+ superuser.locks.add(
"examine:perm(Developer);edit:false();delete:false();boot:false();msg:all()"
)
# this is necessary for quelling to work correctly.
- god_account.permissions.add("Developer")
+ superuser.permissions.add("Developer")
# Limbo is the default "nowhere" starting room
# Create the in-game god-character for account #1 and set
# it to exist in Limbo.
character_typeclass = settings.BASE_CHARACTER_TYPECLASS
- god_character = create.create_object(character_typeclass, key=god_account.username, nohome=True)
+ try:
+ superuser_character = ObjectDB.objects.get(id=1)
+ except ObjectDB.DoesNotExist:
+ superuser_character = create.create_object(
+ character_typeclass, key=superuser.username, nohome=True)
- god_character.id = 1
- god_character.save()
- god_character.db.desc = _("This is User #1.")
- god_character.locks.add(
+ superuser_character.db_typeclass_path = character_typeclass
+ superuser_character.db.desc = _("This is User #1.")
+ superuser_character.locks.add(
"examine:perm(Developer);edit:false();delete:false();boot:false();msg:all();puppet:false()"
)
# we set this low so that quelling is more useful
- god_character.permissions.add("Player")
+ superuser_character.permissions.add("Player")
+ superuser_character.save()
- god_account.attributes.add("_first_login", True)
- god_account.attributes.add("_last_puppet", god_character)
+ superuser.attributes.add("_first_login", True)
+ superuser.attributes.add("_last_puppet", superuser_character)
try:
- god_account.db._playable_characters.append(god_character)
+ superuser.db._playable_characters.append(superuser_character)
except AttributeError:
- god_account.db_playable_characters = [god_character]
+ superuser.db_playable_characters = [superuser_character]
room_typeclass = settings.BASE_ROOM_TYPECLASS
- limbo_obj = create.create_object(room_typeclass, _("Limbo"), nohome=True)
- limbo_obj.id = 2
- limbo_obj.save()
+ try:
+ limbo_obj = ObjectDB.objects.get(id=2)
+ except ObjectDB.DoesNotExist:
+ limbo_obj = create.create_object(room_typeclass, _("Limbo"), nohome=True)
+
+ limbo_obj.db_typeclass_path = room_typeclass
limbo_obj.db.desc = LIMBO_DESC.strip()
limbo_obj.save()
# Now that Limbo exists, try to set the user up in Limbo (unless
# the creation hooks already fixed this).
- if not god_character.location:
- god_character.location = limbo_obj
- if not god_character.home:
- god_character.home = limbo_obj
-
-
-[docs]def create_channels():
- """
- Creates some sensible default channels.
-
- """
- logger.log_info("Initial setup: Creating default channels ...")
-
- goduser = get_god_account()
-
- channel_mudinfo = settings.CHANNEL_MUDINFO
- if channel_mudinfo:
- channel = create.create_channel(**channel_mudinfo)
- channel.connect(goduser)
-
- channel_connectinfo = settings.CHANNEL_CONNECTINFO
- if channel_connectinfo:
- channel = create.create_channel(**channel_connectinfo)
-
- for channeldict in settings.DEFAULT_CHANNELS:
- channel = create.create_channel(**channeldict)
- channel.connect(goduser)
-
+ if not superuser_character.location:
+ superuser_character.location = limbo_obj
+ if not superuser_character.home:
+ superuser_character.home = limbo_obj
-[docs]def handle_setup(last_step):
+[docs]def handle_setup(last_step=None):
"""
Main logic for the module. It allows for restarting the
initialization at any point if one of the modules should crash.
Args:
- last_step (int): The last stored successful step, for starting
- over on errors. If `< 0`, initialization has finished and no
- steps need to be redone.
+ last_step (str, None): The last stored successful step, for starting
+ over on errors. None if starting from scratch. If this is 'done',
+ the function will exit immediately.
"""
-
- if last_step < 0:
+ if last_step in('done', -1):
# this means we don't need to handle setup since
- # it already ran sucessfully once.
+ # it already ran sucessfully once. -1 is the legacy
+ # value for existing databases.
return
- # if None, set it to 0
- last_step = last_step or 0
- # setting up the list of functions to run
- setup_queue = [create_objects, create_channels, at_initial_setup, collectstatic, reset_server]
+ # setup sequence
+ setup_sequence = {
+ 'create_objects': create_objects,
+ 'at_initial_setup': at_initial_setup,
+ 'collectstatic': collectstatic,
+ 'done': reset_server,
+ }
- # step through queue, from last completed function
- for num, setup_func in enumerate(setup_queue[last_step:]):
- # run the setup function. Note that if there is a
- # traceback we let it stop the system so the config
- # step is not saved.
+ # determine the sequence so we can skip ahead
+ steps = list(setup_sequence)
+ steps = steps[steps.index(last_step) + 1 if last_step is not None else 0:]
+ # step through queue from last completed function. Once completed,
+ # the 'done' key should be set.
+ for stepname in steps:
try:
- setup_func()
+ setup_sequence[stepname]()
except Exception:
- if last_step + num == 1:
- from evennia.objects.models import ObjectDB
-
- for obj in ObjectDB.objects.all():
- obj.delete()
- elif last_step + num == 2:
- from evennia.comms.models import ChannelDB
-
- ChannelDB.objects.all().delete()
+ # we re-raise to make sure to stop startup
raise
- # save this step
- ServerConfig.objects.conf("last_initial_setup_step", last_step + num + 1)
- # We got through the entire list. Set last_step to -1 so we don't
- # have to run this again.
- ServerConfig.objects.conf("last_initial_setup_step", -1)
+ else:
+ # save the step
+ ServerConfig.objects.conf("last_initial_setup_step", stepname)
+ if stepname == 'done':
+ # always exit on 'done'
+ break
@@ -301,11 +288,11 @@
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/_modules/evennia/server/inputfuncs.html b/docs/1.0-dev/_modules/evennia/server/inputfuncs.html
index 0ca16f5371..7d315c46be 100644
--- a/docs/1.0-dev/_modules/evennia/server/inputfuncs.html
+++ b/docs/1.0-dev/_modules/evennia/server/inputfuncs.html
@@ -682,11 +682,11 @@
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/_modules/evennia/server/manager.html b/docs/1.0-dev/_modules/evennia/server/manager.html
index 9d39e9c68f..d4a3e04ac1 100644
--- a/docs/1.0-dev/_modules/evennia/server/manager.html
+++ b/docs/1.0-dev/_modules/evennia/server/manager.html
@@ -118,11 +118,11 @@
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/_modules/evennia/server/models.html b/docs/1.0-dev/_modules/evennia/server/models.html
index 2fcfdb8116..c5da33c268 100644
--- a/docs/1.0-dev/_modules/evennia/server/models.html
+++ b/docs/1.0-dev/_modules/evennia/server/models.html
@@ -198,11 +198,11 @@
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/_modules/evennia/server/portal/amp.html b/docs/1.0-dev/_modules/evennia/server/portal/amp.html
index 7ebfde72aa..572d8fabaa 100644
--- a/docs/1.0-dev/_modules/evennia/server/portal/amp.html
+++ b/docs/1.0-dev/_modules/evennia/server/portal/amp.html
@@ -613,11 +613,11 @@
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/_modules/evennia/server/portal/amp_server.html b/docs/1.0-dev/_modules/evennia/server/portal/amp_server.html
index 922627b500..283e355267 100644
--- a/docs/1.0-dev/_modules/evennia/server/portal/amp_server.html
+++ b/docs/1.0-dev/_modules/evennia/server/portal/amp_server.html
@@ -550,11 +550,11 @@
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/_modules/evennia/server/portal/grapevine.html b/docs/1.0-dev/_modules/evennia/server/portal/grapevine.html
index ee96b00777..18523e5a5c 100644
--- a/docs/1.0-dev/_modules/evennia/server/portal/grapevine.html
+++ b/docs/1.0-dev/_modules/evennia/server/portal/grapevine.html
@@ -424,11 +424,11 @@
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/_modules/evennia/server/portal/irc.html b/docs/1.0-dev/_modules/evennia/server/portal/irc.html
index 82bf6e735a..115eb024a8 100644
--- a/docs/1.0-dev/_modules/evennia/server/portal/irc.html
+++ b/docs/1.0-dev/_modules/evennia/server/portal/irc.html
@@ -543,11 +543,11 @@
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/_modules/evennia/server/portal/mccp.html b/docs/1.0-dev/_modules/evennia/server/portal/mccp.html
index 72be2d0bb5..752e3bb54d 100644
--- a/docs/1.0-dev/_modules/evennia/server/portal/mccp.html
+++ b/docs/1.0-dev/_modules/evennia/server/portal/mccp.html
@@ -154,11 +154,11 @@
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/_modules/evennia/server/portal/mssp.html b/docs/1.0-dev/_modules/evennia/server/portal/mssp.html
index abdd91b6eb..85d9f91261 100644
--- a/docs/1.0-dev/_modules/evennia/server/portal/mssp.html
+++ b/docs/1.0-dev/_modules/evennia/server/portal/mssp.html
@@ -199,11 +199,11 @@
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/_modules/evennia/server/portal/mxp.html b/docs/1.0-dev/_modules/evennia/server/portal/mxp.html
index 3e431b0b1e..e4e595afd3 100644
--- a/docs/1.0-dev/_modules/evennia/server/portal/mxp.html
+++ b/docs/1.0-dev/_modules/evennia/server/portal/mxp.html
@@ -151,11 +151,11 @@
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/_modules/evennia/server/portal/naws.html b/docs/1.0-dev/_modules/evennia/server/portal/naws.html
index 2fab77f171..bd10a54e4b 100644
--- a/docs/1.0-dev/_modules/evennia/server/portal/naws.html
+++ b/docs/1.0-dev/_modules/evennia/server/portal/naws.html
@@ -149,11 +149,11 @@
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
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 282ed7a6de..b6892ff92e 100644
--- a/docs/1.0-dev/_modules/evennia/server/portal/portal.html
+++ b/docs/1.0-dev/_modules/evennia/server/portal/portal.html
@@ -510,11 +510,11 @@
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/_modules/evennia/server/portal/portalsessionhandler.html b/docs/1.0-dev/_modules/evennia/server/portal/portalsessionhandler.html
index bc53fd2443..7a1221de6e 100644
--- a/docs/1.0-dev/_modules/evennia/server/portal/portalsessionhandler.html
+++ b/docs/1.0-dev/_modules/evennia/server/portal/portalsessionhandler.html
@@ -548,11 +548,11 @@
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/_modules/evennia/server/portal/rss.html b/docs/1.0-dev/_modules/evennia/server/portal/rss.html
index 496430cc4a..28e36fada7 100644
--- a/docs/1.0-dev/_modules/evennia/server/portal/rss.html
+++ b/docs/1.0-dev/_modules/evennia/server/portal/rss.html
@@ -229,11 +229,11 @@
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/_modules/evennia/server/portal/ssh.html b/docs/1.0-dev/_modules/evennia/server/portal/ssh.html
index 00ed76121a..016bafbd47 100644
--- a/docs/1.0-dev/_modules/evennia/server/portal/ssh.html
+++ b/docs/1.0-dev/_modules/evennia/server/portal/ssh.html
@@ -593,11 +593,11 @@
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/_modules/evennia/server/portal/ssl.html b/docs/1.0-dev/_modules/evennia/server/portal/ssl.html
index 5dd655dced..b8fdc8d6cf 100644
--- a/docs/1.0-dev/_modules/evennia/server/portal/ssl.html
+++ b/docs/1.0-dev/_modules/evennia/server/portal/ssl.html
@@ -185,11 +185,11 @@
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/_modules/evennia/server/portal/suppress_ga.html b/docs/1.0-dev/_modules/evennia/server/portal/suppress_ga.html
index 1a3d0eb6f0..2ffa1f6210 100644
--- a/docs/1.0-dev/_modules/evennia/server/portal/suppress_ga.html
+++ b/docs/1.0-dev/_modules/evennia/server/portal/suppress_ga.html
@@ -133,11 +133,11 @@
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/_modules/evennia/server/portal/telnet.html b/docs/1.0-dev/_modules/evennia/server/portal/telnet.html
index 649632fc09..dc7646f13e 100644
--- a/docs/1.0-dev/_modules/evennia/server/portal/telnet.html
+++ b/docs/1.0-dev/_modules/evennia/server/portal/telnet.html
@@ -575,11 +575,11 @@
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/_modules/evennia/server/portal/telnet_oob.html b/docs/1.0-dev/_modules/evennia/server/portal/telnet_oob.html
index 8408230483..1aa362351b 100644
--- a/docs/1.0-dev/_modules/evennia/server/portal/telnet_oob.html
+++ b/docs/1.0-dev/_modules/evennia/server/portal/telnet_oob.html
@@ -504,11 +504,11 @@
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/_modules/evennia/server/portal/telnet_ssl.html b/docs/1.0-dev/_modules/evennia/server/portal/telnet_ssl.html
index 3c8ac79dc1..62b401e280 100644
--- a/docs/1.0-dev/_modules/evennia/server/portal/telnet_ssl.html
+++ b/docs/1.0-dev/_modules/evennia/server/portal/telnet_ssl.html
@@ -217,11 +217,11 @@
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/_modules/evennia/server/portal/tests.html b/docs/1.0-dev/_modules/evennia/server/portal/tests.html
index b2196885d4..4ae02fa1e0 100644
--- a/docs/1.0-dev/_modules/evennia/server/portal/tests.html
+++ b/docs/1.0-dev/_modules/evennia/server/portal/tests.html
@@ -386,11 +386,11 @@
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/_modules/evennia/server/portal/ttype.html b/docs/1.0-dev/_modules/evennia/server/portal/ttype.html
index 224a892e47..536cd9b26b 100644
--- a/docs/1.0-dev/_modules/evennia/server/portal/ttype.html
+++ b/docs/1.0-dev/_modules/evennia/server/portal/ttype.html
@@ -252,11 +252,11 @@
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
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 9a3936177d..5f83121aa7 100644
--- a/docs/1.0-dev/_modules/evennia/server/portal/webclient.html
+++ b/docs/1.0-dev/_modules/evennia/server/portal/webclient.html
@@ -373,11 +373,11 @@
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/_modules/evennia/server/portal/webclient_ajax.html b/docs/1.0-dev/_modules/evennia/server/portal/webclient_ajax.html
index 898013f913..9dea6d386e 100644
--- a/docs/1.0-dev/_modules/evennia/server/portal/webclient_ajax.html
+++ b/docs/1.0-dev/_modules/evennia/server/portal/webclient_ajax.html
@@ -536,11 +536,11 @@
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/_modules/evennia/server/profiling/dummyrunner.html b/docs/1.0-dev/_modules/evennia/server/profiling/dummyrunner.html
index bfef7e1c8f..af2de239b3 100644
--- a/docs/1.0-dev/_modules/evennia/server/profiling/dummyrunner.html
+++ b/docs/1.0-dev/_modules/evennia/server/profiling/dummyrunner.html
@@ -691,11 +691,11 @@
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/_modules/evennia/server/profiling/dummyrunner_settings.html b/docs/1.0-dev/_modules/evennia/server/profiling/dummyrunner_settings.html
index 908cf383b1..7dfdb54e03 100644
--- a/docs/1.0-dev/_modules/evennia/server/profiling/dummyrunner_settings.html
+++ b/docs/1.0-dev/_modules/evennia/server/profiling/dummyrunner_settings.html
@@ -401,11 +401,11 @@
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/_modules/evennia/server/profiling/memplot.html b/docs/1.0-dev/_modules/evennia/server/profiling/memplot.html
index 162146e9e8..c1df48cb2a 100644
--- a/docs/1.0-dev/_modules/evennia/server/profiling/memplot.html
+++ b/docs/1.0-dev/_modules/evennia/server/profiling/memplot.html
@@ -181,11 +181,11 @@
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/_modules/evennia/server/profiling/test_queries.html b/docs/1.0-dev/_modules/evennia/server/profiling/test_queries.html
index 9b16e2c6d3..2b4040c39d 100644
--- a/docs/1.0-dev/_modules/evennia/server/profiling/test_queries.html
+++ b/docs/1.0-dev/_modules/evennia/server/profiling/test_queries.html
@@ -108,11 +108,11 @@
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/_modules/evennia/server/profiling/tests.html b/docs/1.0-dev/_modules/evennia/server/profiling/tests.html
index 3a7d4d4316..9a78c7eb5d 100644
--- a/docs/1.0-dev/_modules/evennia/server/profiling/tests.html
+++ b/docs/1.0-dev/_modules/evennia/server/profiling/tests.html
@@ -223,11 +223,11 @@
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/_modules/evennia/server/profiling/timetrace.html b/docs/1.0-dev/_modules/evennia/server/profiling/timetrace.html
index 3995ea2ac9..f95904831f 100644
--- a/docs/1.0-dev/_modules/evennia/server/profiling/timetrace.html
+++ b/docs/1.0-dev/_modules/evennia/server/profiling/timetrace.html
@@ -105,11 +105,11 @@
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/_modules/evennia/server/server.html b/docs/1.0-dev/_modules/evennia/server/server.html
index e0f43d4ead..6fd2e3c753 100644
--- a/docs/1.0-dev/_modules/evennia/server/server.html
+++ b/docs/1.0-dev/_modules/evennia/server/server.html
@@ -52,6 +52,7 @@
import time
import sys
import os
+import traceback
from twisted.web import static
from twisted.application import internet, service
@@ -373,25 +374,60 @@
to the portal has been established.
This attempts to run the initial_setup script of the server.
It returns if this is not the first time the server starts.
- Once finished the last_initial_setup_step is set to -1.
+ Once finished the last_initial_setup_step is set to 'done'
+
"""
global INFO_DICT
initial_setup = importlib.import_module(settings.INITIAL_SETUP_MODULE)
last_initial_setup_step = ServerConfig.objects.conf("last_initial_setup_step")
- if not last_initial_setup_step:
- # None is only returned if the config does not exist,
- # i.e. this is an empty DB that needs populating.
- INFO_DICT["info"] = " Server started for the first time. Setting defaults."
- initial_setup.handle_setup(0)
- elif int(last_initial_setup_step) >= 0:
- # a positive value means the setup crashed on one of its
- # modules and setup will resume from this step, retrying
- # the last failed module. When all are finished, the step
- # is set to -1 to show it does not need to be run again.
- INFO_DICT["info"] = " Resuming initial setup from step {last}.".format(
- last=last_initial_setup_step
- )
- initial_setup.handle_setup(int(last_initial_setup_step))
+ try:
+ if not last_initial_setup_step:
+ # None is only returned if the config does not exist,
+ # i.e. this is an empty DB that needs populating.
+ INFO_DICT["info"] = " Server started for the first time. Setting defaults."
+ initial_setup.handle_setup()
+ elif last_initial_setup_step not in ('done', -1):
+ # last step crashed, so we weill resume from this step.
+ # modules and setup will resume from this step, retrying
+ # the last failed module. When all are finished, the step
+ # is set to 'done' to show it does not need to be run again.
+ INFO_DICT["info"] = " Resuming initial setup from step '{last}'.".format(
+ last=last_initial_setup_step
+ )
+ initial_setup.handle_setup(last_initial_setup_step)
+ except Exception:
+ # stop server if this happens.
+ print(traceback.format_exc())
+ print("Error in initial setup. Stopping Server + Portal.")
+ self.sessions.portal_shutdown()
+
+[docs] def create_default_channels(self):
+ """
+ check so default channels exist on every restart, create if not.
+
+ """
+
+ from evennia.comms.models import ChannelDB
+ from evennia.accounts.models import AccountDB
+ from evennia.utils.create import create_channel
+
+ superuser = AccountDB.objects.get(id=1)
+ # mudinfo
+ mudinfo_chan = settings.CHANNEL_MUDINFO
+ if mudinfo_chan:
+ if not ChannelDB.objects.filter(db_key=mudinfo_chan["key"]):
+ channel = create_channel(**mudinfo_chan)
+ channel.connect(superuser)
+ # connectinfo
+ connectinfo_chan = settings.CHANNEL_MUDINFO
+ if connectinfo_chan:
+ if not ChannelDB.objects.filter(db_key=mudinfo_chan["key"]):
+ channel = create_channel(**connectinfo_chan)
+ # default channels
+ for chan_info in settings.DEFAULT_CHANNELS:
+ if not ChannelDB.objects.filter(db_key=chan_info["key"]):
+ channel = create_channel(**chan_info)
+ channel.connect(superuser)
[docs] def run_init_hooks(self, mode):
"""
@@ -576,28 +612,8 @@
TASK_HANDLER.load()
TASK_HANDLER.create_delays()
- # check so default channels exist
- from evennia.comms.models import ChannelDB
- from evennia.accounts.models import AccountDB
- from evennia.utils.create import create_channel
-
- god_account = AccountDB.objects.get(id=1)
- # mudinfo
- mudinfo_chan = settings.CHANNEL_MUDINFO
- if mudinfo_chan:
- if not ChannelDB.objects.filter(db_key=mudinfo_chan["key"]):
- channel = create_channel(**mudinfo_chan)
- channel.connect(god_account)
- # connectinfo
- connectinfo_chan = settings.CHANNEL_MUDINFO
- if connectinfo_chan:
- if not ChannelDB.objects.filter(db_key=mudinfo_chan["key"]):
- channel = create_channel(**connectinfo_chan)
- # default channels
- for chan_info in settings.DEFAULT_CHANNELS:
- if not ChannelDB.objects.filter(db_key=chan_info["key"]):
- channel = create_channel(**chan_info)
- channel.connect(god_account)
+ # create/update channels
+ self.create_default_channels()
# delete the temporary setting
ServerConfig.objects.conf("server_restart_mode", delete=True)
@@ -801,11 +817,11 @@
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/_modules/evennia/server/serversession.html b/docs/1.0-dev/_modules/evennia/server/serversession.html
index 85c2df5816..43c8536265 100644
--- a/docs/1.0-dev/_modules/evennia/server/serversession.html
+++ b/docs/1.0-dev/_modules/evennia/server/serversession.html
@@ -502,11 +502,11 @@
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/_modules/evennia/server/session.html b/docs/1.0-dev/_modules/evennia/server/session.html
index a889e41a7b..b90208d6da 100644
--- a/docs/1.0-dev/_modules/evennia/server/session.html
+++ b/docs/1.0-dev/_modules/evennia/server/session.html
@@ -239,11 +239,11 @@
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/_modules/evennia/server/sessionhandler.html b/docs/1.0-dev/_modules/evennia/server/sessionhandler.html
index ea8c98fd26..53afd84c3d 100644
--- a/docs/1.0-dev/_modules/evennia/server/sessionhandler.html
+++ b/docs/1.0-dev/_modules/evennia/server/sessionhandler.html
@@ -930,11 +930,11 @@
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/_modules/evennia/server/throttle.html b/docs/1.0-dev/_modules/evennia/server/throttle.html
index 78dcb1c38f..78688efb4d 100644
--- a/docs/1.0-dev/_modules/evennia/server/throttle.html
+++ b/docs/1.0-dev/_modules/evennia/server/throttle.html
@@ -288,11 +288,11 @@
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/_modules/evennia/server/validators.html b/docs/1.0-dev/_modules/evennia/server/validators.html
index 74338fbf35..7368e84deb 100644
--- a/docs/1.0-dev/_modules/evennia/server/validators.html
+++ b/docs/1.0-dev/_modules/evennia/server/validators.html
@@ -155,11 +155,11 @@
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/_modules/evennia/server/webserver.html b/docs/1.0-dev/_modules/evennia/server/webserver.html
index b7356396b4..33430144e8 100644
--- a/docs/1.0-dev/_modules/evennia/server/webserver.html
+++ b/docs/1.0-dev/_modules/evennia/server/webserver.html
@@ -365,11 +365,11 @@
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/_modules/evennia/typeclasses/attributes.html b/docs/1.0-dev/_modules/evennia/typeclasses/attributes.html
index f144dcd022..9fada3cc56 100644
--- a/docs/1.0-dev/_modules/evennia/typeclasses/attributes.html
+++ b/docs/1.0-dev/_modules/evennia/typeclasses/attributes.html
@@ -1631,11 +1631,11 @@
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/_modules/evennia/typeclasses/managers.html b/docs/1.0-dev/_modules/evennia/typeclasses/managers.html
index 223469388a..ebfc076a97 100644
--- a/docs/1.0-dev/_modules/evennia/typeclasses/managers.html
+++ b/docs/1.0-dev/_modules/evennia/typeclasses/managers.html
@@ -921,11 +921,11 @@
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/_modules/evennia/typeclasses/models.html b/docs/1.0-dev/_modules/evennia/typeclasses/models.html
index 7f589b1357..ef3422ec5f 100644
--- a/docs/1.0-dev/_modules/evennia/typeclasses/models.html
+++ b/docs/1.0-dev/_modules/evennia/typeclasses/models.html
@@ -1112,11 +1112,11 @@
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/_modules/evennia/typeclasses/tags.html b/docs/1.0-dev/_modules/evennia/typeclasses/tags.html
index 0fb7426b87..c7bbcba2a3 100644
--- a/docs/1.0-dev/_modules/evennia/typeclasses/tags.html
+++ b/docs/1.0-dev/_modules/evennia/typeclasses/tags.html
@@ -603,11 +603,11 @@
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/_modules/evennia/utils/ansi.html b/docs/1.0-dev/_modules/evennia/utils/ansi.html
index db4d7a50bc..570515586c 100644
--- a/docs/1.0-dev/_modules/evennia/utils/ansi.html
+++ b/docs/1.0-dev/_modules/evennia/utils/ansi.html
@@ -1539,11 +1539,11 @@
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/_modules/evennia/utils/batchprocessors.html b/docs/1.0-dev/_modules/evennia/utils/batchprocessors.html
index 22eb955621..b307c19473 100644
--- a/docs/1.0-dev/_modules/evennia/utils/batchprocessors.html
+++ b/docs/1.0-dev/_modules/evennia/utils/batchprocessors.html
@@ -504,11 +504,11 @@
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/_modules/evennia/utils/containers.html b/docs/1.0-dev/_modules/evennia/utils/containers.html
index bf22957382..d15cebf5f2 100644
--- a/docs/1.0-dev/_modules/evennia/utils/containers.html
+++ b/docs/1.0-dev/_modules/evennia/utils/containers.html
@@ -306,11 +306,11 @@
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/_modules/evennia/utils/create.html b/docs/1.0-dev/_modules/evennia/utils/create.html
index ea8e446d28..9a5974fe38 100644
--- a/docs/1.0-dev/_modules/evennia/utils/create.html
+++ b/docs/1.0-dev/_modules/evennia/utils/create.html
@@ -651,11 +651,11 @@
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/_modules/evennia/utils/dbserialize.html b/docs/1.0-dev/_modules/evennia/utils/dbserialize.html
index 94b407a4b0..b6a38ee290 100644
--- a/docs/1.0-dev/_modules/evennia/utils/dbserialize.html
+++ b/docs/1.0-dev/_modules/evennia/utils/dbserialize.html
@@ -821,11 +821,11 @@
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/_modules/evennia/utils/eveditor.html b/docs/1.0-dev/_modules/evennia/utils/eveditor.html
index 4ab097fa02..87aa2e37d2 100644
--- a/docs/1.0-dev/_modules/evennia/utils/eveditor.html
+++ b/docs/1.0-dev/_modules/evennia/utils/eveditor.html
@@ -1206,11 +1206,11 @@
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/_modules/evennia/utils/evform.html b/docs/1.0-dev/_modules/evennia/utils/evform.html
index 6c6c73f521..8e062e752d 100644
--- a/docs/1.0-dev/_modules/evennia/utils/evform.html
+++ b/docs/1.0-dev/_modules/evennia/utils/evform.html
@@ -533,11 +533,11 @@
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/_modules/evennia/utils/evmenu.html b/docs/1.0-dev/_modules/evennia/utils/evmenu.html
index fd8e0ffe21..142d5e6324 100644
--- a/docs/1.0-dev/_modules/evennia/utils/evmenu.html
+++ b/docs/1.0-dev/_modules/evennia/utils/evmenu.html
@@ -2182,11 +2182,11 @@
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/_modules/evennia/utils/evmore.html b/docs/1.0-dev/_modules/evennia/utils/evmore.html
index a402efea82..682e1418e0 100644
--- a/docs/1.0-dev/_modules/evennia/utils/evmore.html
+++ b/docs/1.0-dev/_modules/evennia/utils/evmore.html
@@ -81,7 +81,8 @@
from django.conf import settings
from django.db.models.query import QuerySet
from django.core.paginator import Paginator
-from evennia import Command, CmdSet
+from evennia.commands.command import Command
+from evennia.commands.cmdset import CmdSet
from evennia.commands import cmdhandler
from evennia.utils.ansi import ANSIString
from evennia.utils.utils import make_iter, inherits_from, justify, dedent
@@ -619,11 +620,11 @@
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/_modules/evennia/utils/evtable.html b/docs/1.0-dev/_modules/evennia/utils/evtable.html
index 348c9cf257..f35b29ecf8 100644
--- a/docs/1.0-dev/_modules/evennia/utils/evtable.html
+++ b/docs/1.0-dev/_modules/evennia/utils/evtable.html
@@ -1828,11 +1828,11 @@
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/_modules/evennia/utils/funcparser.html b/docs/1.0-dev/_modules/evennia/utils/funcparser.html
index ad2d835e5b..8e3fd3f400 100644
--- a/docs/1.0-dev/_modules/evennia/utils/funcparser.html
+++ b/docs/1.0-dev/_modules/evennia/utils/funcparser.html
@@ -1246,11 +1246,11 @@
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/_modules/evennia/utils/gametime.html b/docs/1.0-dev/_modules/evennia/utils/gametime.html
index f5f5260474..7f94788bdd 100644
--- a/docs/1.0-dev/_modules/evennia/utils/gametime.html
+++ b/docs/1.0-dev/_modules/evennia/utils/gametime.html
@@ -338,11 +338,11 @@
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/_modules/evennia/utils/idmapper/manager.html b/docs/1.0-dev/_modules/evennia/utils/idmapper/manager.html
index 86b74fc056..3e6be69316 100644
--- a/docs/1.0-dev/_modules/evennia/utils/idmapper/manager.html
+++ b/docs/1.0-dev/_modules/evennia/utils/idmapper/manager.html
@@ -98,11 +98,11 @@
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/_modules/evennia/utils/idmapper/models.html b/docs/1.0-dev/_modules/evennia/utils/idmapper/models.html
index 78c8145d1b..9c75aa87d7 100644
--- a/docs/1.0-dev/_modules/evennia/utils/idmapper/models.html
+++ b/docs/1.0-dev/_modules/evennia/utils/idmapper/models.html
@@ -742,11 +742,11 @@
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/_modules/evennia/utils/idmapper/tests.html b/docs/1.0-dev/_modules/evennia/utils/idmapper/tests.html
index bc4cc624ea..9cc3d215dd 100644
--- a/docs/1.0-dev/_modules/evennia/utils/idmapper/tests.html
+++ b/docs/1.0-dev/_modules/evennia/utils/idmapper/tests.html
@@ -143,11 +143,11 @@
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/_modules/evennia/utils/logger.html b/docs/1.0-dev/_modules/evennia/utils/logger.html
index 445134eda2..daa8dcf5f8 100644
--- a/docs/1.0-dev/_modules/evennia/utils/logger.html
+++ b/docs/1.0-dev/_modules/evennia/utils/logger.html
@@ -652,11 +652,11 @@
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/_modules/evennia/utils/optionclasses.html b/docs/1.0-dev/_modules/evennia/utils/optionclasses.html
index 6ef26d3c27..fb4a5ee5cb 100644
--- a/docs/1.0-dev/_modules/evennia/utils/optionclasses.html
+++ b/docs/1.0-dev/_modules/evennia/utils/optionclasses.html
@@ -388,11 +388,11 @@
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/_modules/evennia/utils/optionhandler.html b/docs/1.0-dev/_modules/evennia/utils/optionhandler.html
index d17c39b850..155d39c342 100644
--- a/docs/1.0-dev/_modules/evennia/utils/optionhandler.html
+++ b/docs/1.0-dev/_modules/evennia/utils/optionhandler.html
@@ -249,11 +249,11 @@
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/_modules/evennia/utils/picklefield.html b/docs/1.0-dev/_modules/evennia/utils/picklefield.html
index 9a5314ce9a..fd4bfb5811 100644
--- a/docs/1.0-dev/_modules/evennia/utils/picklefield.html
+++ b/docs/1.0-dev/_modules/evennia/utils/picklefield.html
@@ -367,11 +367,11 @@
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/_modules/evennia/utils/search.html b/docs/1.0-dev/_modules/evennia/utils/search.html
index bb8854f451..fd926bace0 100644
--- a/docs/1.0-dev/_modules/evennia/utils/search.html
+++ b/docs/1.0-dev/_modules/evennia/utils/search.html
@@ -429,11 +429,11 @@
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/_modules/evennia/utils/test_resources.html b/docs/1.0-dev/_modules/evennia/utils/test_resources.html
index c4c3fc03bc..1aac492411 100644
--- a/docs/1.0-dev/_modules/evennia/utils/test_resources.html
+++ b/docs/1.0-dev/_modules/evennia/utils/test_resources.html
@@ -240,11 +240,11 @@
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/_modules/evennia/utils/text2html.html b/docs/1.0-dev/_modules/evennia/utils/text2html.html
index 3b75f4a9d2..a5e5e2c859 100644
--- a/docs/1.0-dev/_modules/evennia/utils/text2html.html
+++ b/docs/1.0-dev/_modules/evennia/utils/text2html.html
@@ -450,11 +450,11 @@
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/_modules/evennia/utils/utils.html b/docs/1.0-dev/_modules/evennia/utils/utils.html
index be47a60403..70ab70a261 100644
--- a/docs/1.0-dev/_modules/evennia/utils/utils.html
+++ b/docs/1.0-dev/_modules/evennia/utils/utils.html
@@ -1985,6 +1985,7 @@
else:
row += " " * max(0, width - lrow)
rows.append(row)
+ row = ""
ic = 0
else:
# add a new slot
@@ -2635,11 +2636,11 @@
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/_modules/evennia/utils/validatorfuncs.html b/docs/1.0-dev/_modules/evennia/utils/validatorfuncs.html
index c5f03d293a..4a18592410 100644
--- a/docs/1.0-dev/_modules/evennia/utils/validatorfuncs.html
+++ b/docs/1.0-dev/_modules/evennia/utils/validatorfuncs.html
@@ -323,11 +323,11 @@
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/_modules/evennia/utils/verb_conjugation/conjugate.html b/docs/1.0-dev/_modules/evennia/utils/verb_conjugation/conjugate.html
index ccaf92b979..32e7bfc0f3 100644
--- a/docs/1.0-dev/_modules/evennia/utils/verb_conjugation/conjugate.html
+++ b/docs/1.0-dev/_modules/evennia/utils/verb_conjugation/conjugate.html
@@ -452,11 +452,11 @@
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/_modules/evennia/utils/verb_conjugation/tests.html b/docs/1.0-dev/_modules/evennia/utils/verb_conjugation/tests.html
index c63910b6c3..887e0e47bc 100644
--- a/docs/1.0-dev/_modules/evennia/utils/verb_conjugation/tests.html
+++ b/docs/1.0-dev/_modules/evennia/utils/verb_conjugation/tests.html
@@ -306,11 +306,11 @@
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/_modules/evennia/web/admin/accounts.html b/docs/1.0-dev/_modules/evennia/web/admin/accounts.html
index 64298cd297..cb461a9e0c 100644
--- a/docs/1.0-dev/_modules/evennia/web/admin/accounts.html
+++ b/docs/1.0-dev/_modules/evennia/web/admin/accounts.html
@@ -100,8 +100,8 @@
label="Typeclass",
help_text="This is the Python-path to the class implementing the actual account functionality. "
"You usually don't need to change this from the default.<BR>"
- "If your custom class is not found here, it may not be imported as part of Evennia's startup.",
- choices=adminutils.get_and_load_typeclasses(parent=AccountDB),
+ "If your custom class is not found here, it may not be imported into Evennia yet.",
+ choices=lambda: adminutils.get_and_load_typeclasses(parent=AccountDB),
)
db_lock_storage = forms.CharField(
@@ -478,11 +478,11 @@
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/_modules/evennia/web/admin/attributes.html b/docs/1.0-dev/_modules/evennia/web/admin/attributes.html
index 0759591a51..d6bb78f396 100644
--- a/docs/1.0-dev/_modules/evennia/web/admin/attributes.html
+++ b/docs/1.0-dev/_modules/evennia/web/admin/attributes.html
@@ -272,11 +272,11 @@
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/_modules/evennia/web/admin/comms.html b/docs/1.0-dev/_modules/evennia/web/admin/comms.html
index 21ca265236..0c6af60270 100644
--- a/docs/1.0-dev/_modules/evennia/web/admin/comms.html
+++ b/docs/1.0-dev/_modules/evennia/web/admin/comms.html
@@ -349,11 +349,11 @@
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/_modules/evennia/web/admin/frontpage.html b/docs/1.0-dev/_modules/evennia/web/admin/frontpage.html
index 51791b9c17..5a4d5aaaf6 100644
--- a/docs/1.0-dev/_modules/evennia/web/admin/frontpage.html
+++ b/docs/1.0-dev/_modules/evennia/web/admin/frontpage.html
@@ -92,11 +92,11 @@
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/_modules/evennia/web/admin/help.html b/docs/1.0-dev/_modules/evennia/web/admin/help.html
index df3eb7e0ea..c7c8c56f1e 100644
--- a/docs/1.0-dev/_modules/evennia/web/admin/help.html
+++ b/docs/1.0-dev/_modules/evennia/web/admin/help.html
@@ -128,11 +128,11 @@
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/_modules/evennia/web/admin/objects.html b/docs/1.0-dev/_modules/evennia/web/admin/objects.html
index 16b12c5998..682a758891 100644
--- a/docs/1.0-dev/_modules/evennia/web/admin/objects.html
+++ b/docs/1.0-dev/_modules/evennia/web/admin/objects.html
@@ -105,8 +105,8 @@
help_text="This is the Python-path to the class implementing the actual functionality. "
f"<BR>If you are creating a Character you usually need <B>{settings.BASE_CHARACTER_TYPECLASS}</B> "
"or a subclass of that. <BR>If your custom class is not found in the list, it may not be imported "
- "as part of Evennia's startup.",
- choices=adminutils.get_and_load_typeclasses(parent=ObjectDB))
+ "into Evennia yet.",
+ choices=lambda: adminutils.get_and_load_typeclasses(parent=ObjectDB))
db_lock_storage = forms.CharField( label="Locks",
required=False,
@@ -416,11 +416,11 @@
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/_modules/evennia/web/admin/scripts.html b/docs/1.0-dev/_modules/evennia/web/admin/scripts.html
index e18cf4790c..9b177c37a4 100644
--- a/docs/1.0-dev/_modules/evennia/web/admin/scripts.html
+++ b/docs/1.0-dev/_modules/evennia/web/admin/scripts.html
@@ -64,8 +64,8 @@
db_typeclass_path = forms.ChoiceField(
label="Typeclass",
help_text="This is the Python-path to the class implementing the actual script functionality. "
- "<BR>If your custom class is not found here, it may not be imported as part of Evennia's startup.",
- choices=adminutils.get_and_load_typeclasses(
+ "<BR>If your custom class is not found here, it may not be imported into Evennia yet.",
+ choices=lambda: adminutils.get_and_load_typeclasses(
parent=ScriptDB, excluded_parents=["evennia.prototypes.prototypes.DbPrototype"])
)
@@ -102,7 +102,6 @@
"""
model = ScriptDB.db_tags.through
- form = ScriptForm
related_field = "scriptdb"
@@ -111,9 +110,7 @@
Inline attribute tags.
"""
-
model = ScriptDB.db_attributes.through
- form = ScriptForm
related_field = "scriptdb"
@@ -225,11 +222,11 @@
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/_modules/evennia/web/admin/server.html b/docs/1.0-dev/_modules/evennia/web/admin/server.html
index ab89f36f49..9eab6ae9d3 100644
--- a/docs/1.0-dev/_modules/evennia/web/admin/server.html
+++ b/docs/1.0-dev/_modules/evennia/web/admin/server.html
@@ -90,11 +90,11 @@
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/_modules/evennia/web/admin/tags.html b/docs/1.0-dev/_modules/evennia/web/admin/tags.html
index 8bcceed264..e18888f5ba 100644
--- a/docs/1.0-dev/_modules/evennia/web/admin/tags.html
+++ b/docs/1.0-dev/_modules/evennia/web/admin/tags.html
@@ -299,11 +299,11 @@
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/_modules/evennia/web/admin/utils.html b/docs/1.0-dev/_modules/evennia/web/admin/utils.html
index 67e888250f..d08e20c612 100644
--- a/docs/1.0-dev/_modules/evennia/web/admin/utils.html
+++ b/docs/1.0-dev/_modules/evennia/web/admin/utils.html
@@ -144,11 +144,11 @@
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/_modules/evennia/web/api/filters.html b/docs/1.0-dev/_modules/evennia/web/api/filters.html
index e7db1ed012..9c4048d203 100644
--- a/docs/1.0-dev/_modules/evennia/web/api/filters.html
+++ b/docs/1.0-dev/_modules/evennia/web/api/filters.html
@@ -212,11 +212,11 @@
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/_modules/evennia/web/api/permissions.html b/docs/1.0-dev/_modules/evennia/web/api/permissions.html
index 43140acc87..de3b005b16 100644
--- a/docs/1.0-dev/_modules/evennia/web/api/permissions.html
+++ b/docs/1.0-dev/_modules/evennia/web/api/permissions.html
@@ -158,11 +158,11 @@
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/_modules/evennia/web/api/root.html b/docs/1.0-dev/_modules/evennia/web/api/root.html
index b82a297050..a7a46f5e77 100644
--- a/docs/1.0-dev/_modules/evennia/web/api/root.html
+++ b/docs/1.0-dev/_modules/evennia/web/api/root.html
@@ -82,11 +82,11 @@
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/_modules/evennia/web/api/serializers.html b/docs/1.0-dev/_modules/evennia/web/api/serializers.html
index 32346e30fc..fc2ec463d7 100644
--- a/docs/1.0-dev/_modules/evennia/web/api/serializers.html
+++ b/docs/1.0-dev/_modules/evennia/web/api/serializers.html
@@ -401,11 +401,11 @@
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/_modules/evennia/web/api/tests.html b/docs/1.0-dev/_modules/evennia/web/api/tests.html
index 6bb4bcef81..64b793a3de 100644
--- a/docs/1.0-dev/_modules/evennia/web/api/tests.html
+++ b/docs/1.0-dev/_modules/evennia/web/api/tests.html
@@ -244,11 +244,11 @@
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/_modules/evennia/web/api/views.html b/docs/1.0-dev/_modules/evennia/web/api/views.html
index 63cbc1392d..4180fe3f86 100644
--- a/docs/1.0-dev/_modules/evennia/web/api/views.html
+++ b/docs/1.0-dev/_modules/evennia/web/api/views.html
@@ -238,11 +238,11 @@
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/_modules/evennia/web/templatetags/addclass.html b/docs/1.0-dev/_modules/evennia/web/templatetags/addclass.html
index 7e9f6c6ba1..9dab4a1a54 100644
--- a/docs/1.0-dev/_modules/evennia/web/templatetags/addclass.html
+++ b/docs/1.0-dev/_modules/evennia/web/templatetags/addclass.html
@@ -82,11 +82,11 @@
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/_modules/evennia/web/utils/adminsite.html b/docs/1.0-dev/_modules/evennia/web/utils/adminsite.html
index b06a12fd67..1686052631 100644
--- a/docs/1.0-dev/_modules/evennia/web/utils/adminsite.html
+++ b/docs/1.0-dev/_modules/evennia/web/utils/adminsite.html
@@ -102,11 +102,11 @@
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/_modules/evennia/web/utils/backends.html b/docs/1.0-dev/_modules/evennia/web/utils/backends.html
index 80cae8bf55..b2d224aee8 100644
--- a/docs/1.0-dev/_modules/evennia/web/utils/backends.html
+++ b/docs/1.0-dev/_modules/evennia/web/utils/backends.html
@@ -108,11 +108,11 @@
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/_modules/evennia/web/utils/general_context.html b/docs/1.0-dev/_modules/evennia/web/utils/general_context.html
index e4481f766a..a4989be79a 100644
--- a/docs/1.0-dev/_modules/evennia/web/utils/general_context.html
+++ b/docs/1.0-dev/_modules/evennia/web/utils/general_context.html
@@ -169,11 +169,11 @@
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/_modules/evennia/web/utils/middleware.html b/docs/1.0-dev/_modules/evennia/web/utils/middleware.html
index 73cb12f5fc..5a82e604ae 100644
--- a/docs/1.0-dev/_modules/evennia/web/utils/middleware.html
+++ b/docs/1.0-dev/_modules/evennia/web/utils/middleware.html
@@ -137,11 +137,11 @@
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/_modules/evennia/web/utils/tests.html b/docs/1.0-dev/_modules/evennia/web/utils/tests.html
index 6a92f4e70a..8184f0e937 100644
--- a/docs/1.0-dev/_modules/evennia/web/utils/tests.html
+++ b/docs/1.0-dev/_modules/evennia/web/utils/tests.html
@@ -137,11 +137,11 @@
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/_modules/evennia/web/webclient/views.html b/docs/1.0-dev/_modules/evennia/web/webclient/views.html
index f61b0dee7e..89dda80014 100644
--- a/docs/1.0-dev/_modules/evennia/web/webclient/views.html
+++ b/docs/1.0-dev/_modules/evennia/web/webclient/views.html
@@ -95,11 +95,11 @@
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/_modules/evennia/web/website/forms.html b/docs/1.0-dev/_modules/evennia/web/website/forms.html
index 9fd409bede..440ae0d63e 100644
--- a/docs/1.0-dev/_modules/evennia/web/website/forms.html
+++ b/docs/1.0-dev/_modules/evennia/web/website/forms.html
@@ -240,11 +240,11 @@
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/_modules/evennia/web/website/tests.html b/docs/1.0-dev/_modules/evennia/web/website/tests.html
index ef0e56b6d1..27c4c939c5 100644
--- a/docs/1.0-dev/_modules/evennia/web/website/tests.html
+++ b/docs/1.0-dev/_modules/evennia/web/website/tests.html
@@ -45,7 +45,11 @@
from django.test import Client, override_settings
from django.urls import reverse
from evennia.utils import class_from_module
+from evennia.utils.create import create_help_entry
from evennia.utils.test_resources import EvenniaTest
+from evennia.help import filehelp
+
+_FILE_HELP_ENTRIES = None
+
+
+
+HELP_ENTRY_DICTS = [
+ {
+ "key": "unit test file entry",
+ "category": "General",
+ "text": "cache test file entry text"
+ }
+]
+
+[docs]class HelpDetailTest(EvenniaWebTest):
+ url_name = "help-entry-detail"
+
+[docs] def setUp(self):
+ super().setUp()
+
+ # create a db help entry
+ create_help_entry('unit test db entry', 'unit test db entry text', category="General")
+
+[docs] def get_kwargs(self):
+ return {"category": slugify("general"),
+ "topic": slugify('unit test db entry')}
+
+[docs] def test_view(self):
+ response = self.client.get(reverse(self.url_name, kwargs=self.get_kwargs()), follow=True)
+ self.assertEqual(response.context["entry_text"], 'unit test db entry text')
+
+[docs] def test_object_cache(self):
+ # clear file help entries, use local HELP_ENTRY_DICTS to recreate new entries
+ global _FILE_HELP_ENTRIES
+ if _FILE_HELP_ENTRIES is None:
+ from evennia.help.filehelp import FILE_HELP_ENTRIES as _FILE_HELP_ENTRIES
+ help_module = 'evennia.web.website.tests'
+ self.file_help_store = _FILE_HELP_ENTRIES.__init__(help_file_modules=[help_module])
+
+ # request access to an entry
+ response = self.client.get(reverse(self.url_name, kwargs=self.get_kwargs()), follow=True)
+ self.assertEqual(response.context["entry_text"], 'unit test db entry text')
+ # request a second entry, verifing the cached object is not provided on a new topic request
+ entry_two_args = {"category": slugify("general"), "topic": slugify('unit test file entry')}
+ response = self.client.get(reverse(self.url_name, kwargs=entry_two_args), follow=True)
+ self.assertEqual(response.context["entry_text"], 'cache test file entry text')
+
+
+[docs]class HelpLockedDetailTest(EvenniaWebTest):
+ url_name = "help-entry-detail"
+
+[docs] def setUp(self):
+ super(HelpLockedDetailTest, self).setUp()
+
+ # create a db entry with a lock
+ self.db_help_entry = create_help_entry('unit test locked topic', 'unit test locked entrytext',
+ category="General", locks='read:perm(Developer)')
+
+[docs] def get_kwargs(self):
+ return {"category": slugify("general"),
+ "topic": slugify('unit test locked topic')}
+
+[docs] def test_locked_entry(self):
+ # request access to an entry for permission the account does not have
+ response = self.client.get(reverse(self.url_name, kwargs=self.get_kwargs()), follow=True)
+ self.assertEqual(response.context["entry_text"], 'Failed to find entry.')
+
+[docs] def test_lock_with_perm(self):
+ # log TestAccount in, grant permission required, read the entry
+ self.login()
+ self.account.permissions.add("Developer")
+ response = self.client.get(reverse(self.url_name, kwargs=self.get_kwargs()), follow=True)
+ self.assertEqual(response.context["entry_text"], 'unit test locked entrytext')
+
+
[docs]class CharacterCreateView(EvenniaWebTest):
url_name = "character-create"
unauthenticated_response = 302
@@ -355,11 +432,11 @@
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/_modules/evennia/web/website/views/accounts.html b/docs/1.0-dev/_modules/evennia/web/website/views/accounts.html
index df60de1302..5b81f21314 100644
--- a/docs/1.0-dev/_modules/evennia/web/website/views/accounts.html
+++ b/docs/1.0-dev/_modules/evennia/web/website/views/accounts.html
@@ -141,11 +141,11 @@
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/_modules/evennia/web/website/views/channels.html b/docs/1.0-dev/_modules/evennia/web/website/views/channels.html
index 20b9d8a01e..dcecab3301 100644
--- a/docs/1.0-dev/_modules/evennia/web/website/views/channels.html
+++ b/docs/1.0-dev/_modules/evennia/web/website/views/channels.html
@@ -240,11 +240,11 @@
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/_modules/evennia/web/website/views/characters.html b/docs/1.0-dev/_modules/evennia/web/website/views/characters.html
index fe55b67eff..43e1861dea 100644
--- a/docs/1.0-dev/_modules/evennia/web/website/views/characters.html
+++ b/docs/1.0-dev/_modules/evennia/web/website/views/characters.html
@@ -319,11 +319,11 @@
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/_modules/evennia/web/website/views/errors.html b/docs/1.0-dev/_modules/evennia/web/website/views/errors.html
index ac64492a18..53bcfa2318 100644
--- a/docs/1.0-dev/_modules/evennia/web/website/views/errors.html
+++ b/docs/1.0-dev/_modules/evennia/web/website/views/errors.html
@@ -81,11 +81,11 @@
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/_modules/evennia/web/website/views/help.html b/docs/1.0-dev/_modules/evennia/web/website/views/help.html
index ba5cf23d37..65631c30b1 100644
--- a/docs/1.0-dev/_modules/evennia/web/website/views/help.html
+++ b/docs/1.0-dev/_modules/evennia/web/website/views/help.html
@@ -43,17 +43,162 @@
"""
Views to manipulate help entries.
+Multi entry object type supported added by DaveWithTheNiceHat 2021
+ Pull Request #2429
"""
-
from django.utils.text import slugify
-from django.views.generic import ListView
+from django.conf import settings
+from evennia.utils.utils import inherits_from
+from django.views.generic import ListView, DetailView
from django.http import HttpResponseBadRequest
-from django.db.models.functions import Lower
from evennia.help.models import HelpEntry
-from .mixins import TypeclassMixin, EvenniaDetailView
+from evennia.help.filehelp import FILE_HELP_ENTRIES
+from evennia.utils.ansi import strip_ansi
+
+DEFAULT_HELP_CATEGORY = settings.DEFAULT_HELP_CATEGORY
-[docs]class HelpMixin(TypeclassMixin):
+[docs]def get_help_category(help_entry, slugify_cat=True):
+ """Returns help category.
+
+ Args:
+ help_entry (HelpEntry, FileHelpEntry or Command): Help entry instance.
+ slugify_cat (bool): If true the return string is slugified. Default is True.
+
+ Notes:
+ If an entry does not have a `help_category` attribute, DEFAULT_HELP_CATEGORY from the
+ settings file is used.
+ If the entry does not have attribute 'web_help_entries'. One is created with a slugified
+ copy of the attribute help_category. This attribute is used for sorting the entries for the
+ help index (ListView) page.
+
+ Returns:
+ help_category (str): The category for the help entry.
+ """
+ help_category = getattr(help_entry, 'help_category', None)
+ if not help_category:
+ help_category = getattr(help_entry, 'db_help_category', DEFAULT_HELP_CATEGORY)
+ # if one does not exist, create a category for ease of use with web views html templates
+ if not hasattr(help_entry, 'web_help_category'):
+ setattr(help_entry, 'web_help_category', slugify(help_category))
+ help_category = help_category.lower()
+ return slugify(help_category) if slugify_cat else help_category
+
+
+[docs]def get_help_topic(help_entry):
+ """Get the topic of the help entry.
+
+ Args:
+ help_entry (HelpEntry, FileHelpEntry or Command): Help entry instance.
+
+ Returns:
+ help_topic (str): The topic of the help entry. Default is 'unknown_topic'.
+ """
+ help_topic = getattr(help_entry, 'key', None)
+ # if object has no key, assume it is a db help entry.
+ if not help_topic:
+ help_topic = getattr(help_entry, 'db_key', 'unknown_topic')
+ # if one does not exist, create a key for ease of use with web views html templates
+ if not hasattr(help_entry, 'web_help_key'):
+ setattr(help_entry, 'web_help_key', slugify(help_topic))
+ return help_topic.lower()
+
+
+[docs]def can_read_topic(cmd_or_topic, account):
+ """Check if an account or puppet has read access to a help entry.
+
+ Args:
+ cmd_or_topic (Command, HelpEntry or FileHelpEntry): The topic/command to test.
+ account: the account or puppet checking for access.
+
+ Returns:
+ bool: If command can be viewed or not.
+
+ Notes:
+ This uses the 'read' lock. If no 'read' lock is defined, the topic is assumed readable
+ by all.
+ Even if this returns False, the entry will still be visible in the help index unless
+ `can_list_topic` is also returning False.
+ """
+ if inherits_from(cmd_or_topic, "evennia.commands.command.Command"):
+ return cmd_or_topic.auto_help and cmd_or_topic.access(account, 'read', default=True)
+ else:
+ return cmd_or_topic.access(account, 'read', default=True)
+
+
+[docs]def collect_topics(account):
+ """Collect help topics from all sources (cmd/db/file).
+
+ Args:
+ account (Character or Account): Account or Character to collect help topics from.
+
+ Returns:
+ cmd_help_topics (dict): contains Command instances.
+ db_help_topics (dict): contains HelpEntry instances.
+ file_help_topics (dict): contains FileHelpEntry instances
+ """
+
+ # collect commands of account and all puppets
+ # skip a command if an entry is recorded with the same topics, category and help entry
+ cmd_help_topics = []
+ if not str(account) == 'AnonymousUser':
+ # create list of account and account's puppets
+ puppets = account.db._playable_characters + [account]
+ # add the account's and puppets' commands to cmd_help_topics list
+ for puppet in puppets:
+ for cmdset in puppet.cmdset.get():
+ # removing doublets in cmdset, caused by cmdhandler
+ # having to allow doublet commands to manage exits etc.
+ cmdset.make_unique(puppet)
+ # retrieve all available commands and database / file-help topics.
+ # also check the 'cmd:' lock here
+ for cmd in cmdset:
+ # skip the command if the puppet does not have access
+ if not cmd.access(puppet, 'cmd'):
+ continue
+ # skip the command if the puppet does not have read access
+ if not can_read_topic(cmd, puppet):
+ continue
+ # skip the command if it's help entry already exists in the topic list
+ entry_exists = False
+ for verify_cmd in cmd_help_topics:
+ if (
+ verify_cmd.key and cmd.key and
+ verify_cmd.help_category == cmd.help_category and
+ verify_cmd.__doc__ == cmd.__doc__
+ ):
+ entry_exists = True
+ break
+ if entry_exists:
+ continue
+ # add this command to the list
+ cmd_help_topics.append(cmd)
+
+ # Verify account has read access to filehelp entries and gather them into a dictionary
+ file_help_topics = {
+ topic.key.lower().strip(): topic
+ for topic in FILE_HELP_ENTRIES.all()
+ if can_read_topic(topic, account)
+ }
+
+ # Verify account has read access to database entries and gather them into a dictionary
+ db_help_topics = {
+ topic.key.lower().strip(): topic
+ for topic in HelpEntry.objects.all()
+ if can_read_topic(topic, account)
+ }
+
+ # Collect commands into a dictionary, read access verified at puppet level
+ cmd_help_topics = {
+ cmd.auto_help_display_key
+ if hasattr(cmd, "auto_help_display_key") else cmd.key: cmd
+ for cmd in cmd_help_topics
+ }
+
+ return cmd_help_topics, db_help_topics, file_help_topics
+
+
+[docs]class HelpMixin():
"""
This is a "mixin", a modifier of sorts.
@@ -62,9 +207,6 @@
"""
- # -- Django constructs --
- model = HelpEntry
-
# -- Evennia constructs --
page_title = "Help"
@@ -74,25 +216,24 @@
and other documentation that the current user is allowed to see.
Returns:
- queryset (QuerySet): List of Help entries available to the user.
+ queryset (list): List of Help entries available to the user.
"""
account = self.request.user
- # Get list of all HelpEntries
- entries = self.typeclass.objects.all().iterator()
+ # collect all help entries
+ cmd_help_topics, db_help_topics, file_help_topics = collect_topics(account)
- # Now figure out which ones the current user is allowed to see
- bucket = [entry.id for entry in entries if entry.access(account, "view")]
+ # merge the entries
+ file_db_help_topics = {**file_help_topics, **db_help_topics}
+ all_topics = {**file_db_help_topics, **cmd_help_topics}
+ all_entries = list(all_topics.values())
- # Re-query and set a sorted list
- filtered = (
- self.typeclass.objects.filter(id__in=bucket)
- .order_by(Lower("db_key"))
- .order_by(Lower("db_help_category"))
- )
+ # sort the entries
+ all_entries.sort(key=get_help_topic) # sort alphabetically
+ all_entries.sort(key=get_help_category) # group by categories
- return filtered
+ return all_entries
-[docs]class HelpDetailView(HelpMixin, EvenniaDetailView):
+[docs]class HelpDetailView(HelpMixin, DetailView):
"""
Returns the detail page for a given help entry.
"""
# -- Django constructs --
+ # the html template to use when contructing the detail page for a help topic
template_name = "website/help_detail.html"
+ @property
+ def page_title(self):
+ # Makes sure the page has a sensible title.
+ obj = self.get_object()
+ topic = get_help_topic(obj)
+ return f'{topic} detail'
+
[docs] def get_context_data(self, **kwargs):
"""
Adds navigational data to the template to let browsers go to the next
@@ -130,19 +279,23 @@
"""
context = super().get_context_data(**kwargs)
+ # get a full query set
+ full_set = self.get_queryset()
+
# Get the object in question
- obj = self.get_object()
+ obj = self.get_object(full_set)
- # Get queryset and filter out non-related categories
- queryset = (
- self.get_queryset()
- .filter(db_help_category=obj.db_help_category)
- .order_by(Lower("db_key"))
- )
- context["topic_list"] = queryset
+ # filter non related categories from the query set
+ obj_category = get_help_category(obj)
+ category_set = []
+ for entry in full_set:
+ entry_category = get_help_category(entry)
+ if entry_category.lower() == obj_category.lower():
+ category_set.append(entry)
+ context["topic_list"] = category_set
- # Find the index position of the given obj in the queryset
- objs = list(queryset)
+ # Find the index position of the given obj in the category set
+ objs = list(category_set)
for i, x in enumerate(objs):
if obj is x:
break
@@ -160,12 +313,16 @@
except:
context["topic_previous"] = None
- # Format the help entry using HTML instead of newlines
- text = obj.db_entrytext
- text = text.replace("\r\n\r\n", "\n\n")
- text = text.replace("\r\n", "\n")
- text = text.replace("\n", "<br />")
- context["entry_text"] = text
+ # Get the help entry text
+ text = 'Failed to find entry.'
+ if inherits_from(obj, "evennia.commands.command.Command"):
+ text = obj.__doc__
+ elif inherits_from(obj, "evennia.help.models.HelpEntry"):
+ text = obj.db_entrytext
+ elif inherits_from(obj, "evennia.help.filehelp.FileHelpEntry"):
+ text = obj.entrytext
+ text = strip_ansi(text) # remove ansii markups
+ context["entry_text"] = text.strip()
return context
@@ -174,32 +331,46 @@
Override of Django hook that retrieves an object by category and topic
instead of pk and slug.
+ Args:
+ queryset (list): A list of help entry objects.
+
Returns:
- entry (HelpEntry): HelpEntry requested in the URL.
+ entry (HelpEntry, FileHelpEntry or Command): HelpEntry requested in the URL.
"""
+
+ if hasattr(self, 'obj'):
+ return getattr(self, 'obj', None)
+
# Get the queryset for the help entries the user can access
if not queryset:
queryset = self.get_queryset()
- # Find the object in the queryset
+ # get the category and topic requested
category = slugify(self.kwargs.get("category", ""))
topic = slugify(self.kwargs.get("topic", ""))
- obj = next(
- (
- x
- for x in queryset
- if slugify(x.db_help_category) == category and slugify(x.db_key) == topic
- ),
- None,
- )
+
+ # Find the object in the queryset
+ obj = None
+ for entry in queryset:
+ # continue to next entry if the topics do not match
+ entry_topic = get_help_topic(entry)
+ if not slugify(entry_topic) == topic:
+ continue
+ # if the category also matches, object requested is found
+ entry_category = get_help_category(entry)
+ if slugify(entry_category) == category:
+ obj = entry
+ break
# Check if this object was requested in a valid manner
if not obj:
return HttpResponseBadRequest(
- "No %(verbose_name)s found matching the query"
- % {"verbose_name": queryset.model._meta.verbose_name}
+ f"No ({category}/{topic})s found matching the query."
)
+ else:
+ # cache the object if one was found
+ self.obj = obj
return obj
@@ -227,11 +398,11 @@
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/_modules/evennia/web/website/views/index.html b/docs/1.0-dev/_modules/evennia/web/website/views/index.html
index 35f2e7a8d3..5ab9807359 100644
--- a/docs/1.0-dev/_modules/evennia/web/website/views/index.html
+++ b/docs/1.0-dev/_modules/evennia/web/website/views/index.html
@@ -179,11 +179,11 @@
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/_modules/evennia/web/website/views/mixins.html b/docs/1.0-dev/_modules/evennia/web/website/views/mixins.html
index fc87db128e..5be8e074c8 100644
--- a/docs/1.0-dev/_modules/evennia/web/website/views/mixins.html
+++ b/docs/1.0-dev/_modules/evennia/web/website/views/mixins.html
@@ -156,11 +156,11 @@
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/_modules/evennia/web/website/views/objects.html b/docs/1.0-dev/_modules/evennia/web/website/views/objects.html
index 5be0d77395..d47aa8e141 100644
--- a/docs/1.0-dev/_modules/evennia/web/website/views/objects.html
+++ b/docs/1.0-dev/_modules/evennia/web/website/views/objects.html
@@ -333,11 +333,11 @@
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/_modules/functools.html b/docs/1.0-dev/_modules/functools.html
index 4ad288a896..021d5639f4 100644
--- a/docs/1.0-dev/_modules/functools.html
+++ b/docs/1.0-dev/_modules/functools.html
@@ -1044,11 +1044,11 @@
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/_modules/index.html b/docs/1.0-dev/_modules/index.html
index 8b034fc803..f9ba093186 100644
--- a/docs/1.0-dev/_modules/index.html
+++ b/docs/1.0-dev/_modules/index.html
@@ -296,11 +296,11 @@
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/_modules/rest_framework/test.html b/docs/1.0-dev/_modules/rest_framework/test.html
index 989f62ebfb..170e35883a 100644
--- a/docs/1.0-dev/_modules/rest_framework/test.html
+++ b/docs/1.0-dev/_modules/rest_framework/test.html
@@ -460,11 +460,11 @@
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/_sources/Coding/Coding-Introduction.md.txt b/docs/1.0-dev/_sources/Coding/Coding-Introduction.md.txt
index 6e0bb6754f..0bbf340739 100644
--- a/docs/1.0-dev/_sources/Coding/Coding-Introduction.md.txt
+++ b/docs/1.0-dev/_sources/Coding/Coding-Introduction.md.txt
@@ -20,7 +20,7 @@ take a look at our [Python introduction](../Howto/Starting/Part1/Python-basic-in
When new to Evennia it can be hard to find things or figure out what is available. Evennia offers a
special interactive python shell that allows you to experiment and try out things. It's recommended
-to use [ipython](http://ipython.org/) for this since the vanilla python prompt is very limited. Here
+to use [ipython](https://ipython.org/) for this since the vanilla python prompt is very limited. Here
are some simple commands to get started:
# [open a new console/terminal]
@@ -84,7 +84,7 @@ should just gracefully tell you what errors it finds, it can nevertheless be a g
check your code for simple syntax errors *before* you load it into the running server. There are
many python syntax checkers out there. A fast and easy one is
[pyflakes](https://pypi.python.org/pypi/pyflakes), a more verbose one is
-[pylint](http://www.pylint.org/). You can also check so that your code looks up to snuff using
+[pylint](https://www.pylint.org/). You can also check so that your code looks up to snuff using
[pep8](https://pypi.python.org/pypi/pep8). Even with a syntax checker you will not be able to catch
every possible problem - some bugs or problems will only appear when you actually run the code. But
using such a checker can be a good start to weed out the simple problems.
@@ -131,7 +131,7 @@ call, but reading docs really *does* help you, promise! Evennia's documentation
and knowing what is possible can often give you a lot of new cool game ideas. That said, if you
can't find the answer in the docs, don't be shy to ask questions! The [discussion
group](https://sites.google.com/site/evenniaserver/discussions) and the [irc
-chat](http://webchat.freenode.net/?channels=evennia) are also there for you.
+chat](https://webchat.freenode.net/?channels=evennia) are also there for you.
### The most important point
diff --git a/docs/1.0-dev/_sources/Coding/Unit-Testing.md.txt b/docs/1.0-dev/_sources/Coding/Unit-Testing.md.txt
index 67ad814f3e..42df6764f2 100644
--- a/docs/1.0-dev/_sources/Coding/Unit-Testing.md.txt
+++ b/docs/1.0-dev/_sources/Coding/Unit-Testing.md.txt
@@ -4,7 +4,7 @@
*Unit testing* means testing components of a program in isolation from each other to make sure every
part works on its own before using it with others. Extensive testing helps avoid new updates causing
unexpected side effects as well as alleviates general code rot (a more comprehensive wikipedia
-article on unit testing can be found [here](http://en.wikipedia.org/wiki/Unit_test)).
+article on unit testing can be found [here](https://en.wikipedia.org/wiki/Unit_test)).
A typical unit test set calls some function or method with a given input, looks at the result and
makes sure that this result looks as expected. Rather than having lots of stand-alone test programs,
@@ -99,7 +99,7 @@ Example of a `TestCase` class:
```
You might also want to read the [documentation for the unittest
-module](http://docs.python.org/library/unittest.html).
+module](https://docs.python.org/library/unittest.html).
### Using the EvenniaTest class
diff --git a/docs/1.0-dev/_sources/Coding/Updating-Your-Game.md.txt b/docs/1.0-dev/_sources/Coding/Updating-Your-Game.md.txt
index 0dc225fd13..383e8d6417 100644
--- a/docs/1.0-dev/_sources/Coding/Updating-Your-Game.md.txt
+++ b/docs/1.0-dev/_sources/Coding/Updating-Your-Game.md.txt
@@ -8,7 +8,7 @@ the [Getting Started guide](../Setup/Setup-Quickstart) and get everything runnin
Very commonly we make changes to the Evennia code to improve things. There are many ways to get told
when to update: You can subscribe to the RSS feed or manually check up on the feeds from
-http://www.evennia.com. You can also simply fetch the latest regularly.
+https://www.evennia.com. You can also simply fetch the latest regularly.
When you're wanting to apply updates, simply `cd` to your cloned `evennia` root directory and type:
@@ -131,4 +131,4 @@ automatically for you. Basically, whenever the schema changes we distribute smal
"migrations" with the source. Those tell the system exactly how to implement the change so you don't
have to do so manually. When a migration has been added we will tell you so on Evennia's mailing
lists and in commit messages -
-you then just run `evennia migrate` to be up-to-date again.
\ No newline at end of file
+you then just run `evennia migrate` to be up-to-date again.
diff --git a/docs/1.0-dev/_sources/Coding/Using-Travis.md.txt b/docs/1.0-dev/_sources/Coding/Using-Travis.md.txt
index a6ae1cb514..f1bf20568a 100644
--- a/docs/1.0-dev/_sources/Coding/Using-Travis.md.txt
+++ b/docs/1.0-dev/_sources/Coding/Using-Travis.md.txt
@@ -1,9 +1,9 @@
# Using Travis
-Evennia uses [Travis CI](http://travis-ci.org/) to check that it's building successfully after every
+Evennia uses [Travis CI](https://travis-ci.org/) to check that it's building successfully after every
commit to its Github repository (you can for example see the `build: passing` badge at the top of
Evennia's [Readme file](https://github.com/evennia/evennia)). If your game is open source on Github
-you may also use Travis for free. See [the Travis docs](http://docs.travis-ci.com/user/getting-
+you may also use Travis for free. See [the Travis docs](https://docs.travis-ci.com/user/getting-
started/) for how to get started.
After logging in you will get to point Travis to your repository on github. One further thing you
@@ -34,4 +34,4 @@ will be able to see it.
For properly testing your game you of course also need to write unittests. [We have a page](Unit-
Testing) on how we set those up for Evennia, you should be able to refer to that for making tests
-fitting your game.
\ No newline at end of file
+fitting your game.
diff --git a/docs/1.0-dev/_sources/Coding/Version-Control.md.txt b/docs/1.0-dev/_sources/Coding/Version-Control.md.txt
index 54d378d64b..31314e7ec7 100644
--- a/docs/1.0-dev/_sources/Coding/Version-Control.md.txt
+++ b/docs/1.0-dev/_sources/Coding/Version-Control.md.txt
@@ -6,7 +6,7 @@ able to easily backtrack these changes, share your development efforts and more.
contributing to Evennia itself, and only wish to develop your own MU* using Evennia, having a
version control system in place is a good idea (and standard coding practice). For an introduction
to the concept, start with the Wikipedia article
-[here](http://en.wikipedia.org/wiki/Version_control). Evennia uses the version control system
+[here](https://en.wikipedia.org/wiki/Version_control). Evennia uses the version control system
[Git](https://git-scm.com/) and this is what will be covered henceforth. Note that this page also
deals with commands for Linux operating systems, and the steps below may vary for other systems,
however where possible links will be provided for alternative instructions.
@@ -18,7 +18,7 @@ documentation](https://help.github.com/articles/set-up-git#platform-all).
If you have gotten Evennia installed, you will have Git already and can skip to **Step 2** below.
Otherwise you will need to install Git on your platform. You can find expanded instructions for
-installation [here](http://git-scm.com/book/en/Getting-Started-Installing-Git).
+installation [here](https://git-scm.com/book/en/Getting-Started-Installing-Git).
### Step 1: Install Git
@@ -30,9 +30,9 @@ installation [here](http://git-scm.com/book/en/Getting-Started-Installing-Git).
apt-get install git
-- **Windows**: It is recommended to use [Git for Windows](http://msysgit.github.io/).
+- **Windows**: It is recommended to use [Git for Windows](https://gitforwindows.org/).
- **Mac**: Mac platforms offer two methods for installation, one via MacPorts, which you can find
-out about [here](http://git-scm.com/book/en/Getting-Started-Installing-Git#Installing-on-Mac), or
+out about [here](https://git-scm.com/book/en/Getting-Started-Installing-Git#Installing-on-Mac), or
you can use the [Git OSX Installer](https://sourceforge.net/projects/git-osx-installer/).
### Step 2: Define user/e-mail Settings for Git
@@ -282,7 +282,7 @@ git merge master
If everything went well, your `myfixes` branch will now have the latest version of Evennia merged
with whatever changes you have done. Use `git log` to see what has changed. You may need to restart
the server or run `manage.py migrate` if the database schema changed (this will be seen in the
-commit log and on the mailing list). See the [Git manuals](http://git-scm.com/documentation) for
+commit log and on the mailing list). See the [Git manuals](https://git-scm.com/documentation) for
learning more about useful day-to-day commands, and special situations such as dealing with merge
collisions.
@@ -472,4 +472,4 @@ git config --global alias.grep 'grep -Ii'
To get a further feel for GIT there is also [a good YouTube talk about
it](https://www.youtube.com/watch?v=1ffBJ4sVUb4#t=1m58s) - it's a bit long but it will help you
understand the underlying ideas behind GIT
-(which in turn makes it a lot more intuitive to use).
\ No newline at end of file
+(which in turn makes it a lot more intuitive to use).
diff --git a/docs/1.0-dev/_sources/Components/Attributes.md.txt b/docs/1.0-dev/_sources/Components/Attributes.md.txt
index 40e35a9264..d718eb0c79 100644
--- a/docs/1.0-dev/_sources/Components/Attributes.md.txt
+++ b/docs/1.0-dev/_sources/Components/Attributes.md.txt
@@ -201,7 +201,7 @@ With a single object, we mean anything that is *not iterable*, like numbers, str
instances without the `__iter__` method.
* You can generally store any non-iterable Python entity that can be
- [pickled](http://docs.python.org/library/pickle.html).
+ [pickled](https://docs.python.org/library/pickle.html).
* Single database objects/typeclasses can be stored as any other in the Attribute. These can
normally *not* be pickled, but Evennia will behind the scenes convert them to an internal
representation using their classname, database-id and creation-date with a microsecond precision,
@@ -327,7 +327,7 @@ instead of `_SaverList` and so on).
Remember, this is only valid for *mutable* iterables.
-[Immutable](http://en.wikipedia.org/wiki/Immutable) objects (strings, numbers, tuples etc) are
+[Immutable](https://en.wikipedia.org/wiki/Immutable) objects (strings, numbers, tuples etc) are
already disconnected from the database from the onset.
```python
@@ -392,4 +392,4 @@ Attribute).
```
The same keywords are available to use with `obj.attributes.set()` and `obj.attributes.remove()`,
-those will check for the `attredit` lock type.
\ No newline at end of file
+those will check for the `attredit` lock type.
diff --git a/docs/1.0-dev/_sources/Components/Batch-Command-Processor.md.txt b/docs/1.0-dev/_sources/Components/Batch-Command-Processor.md.txt
index 79ce71d4b5..5175db986a 100644
--- a/docs/1.0-dev/_sources/Components/Batch-Command-Processor.md.txt
+++ b/docs/1.0-dev/_sources/Components/Batch-Command-Processor.md.txt
@@ -178,5 +178,5 @@ Processor](Batch-Code-Processor))
*evennia mode*. This is an Emacs major mode found in `evennia/utils/evennia-mode.el`. It offers
correct syntax highlighting and indentation with `` when editing `.ev` files in Emacs. See the
header of that file for installation instructions.
-- [VIM](http://www.vim.org/) users can use amfl's [vim-evennia](https://github.com/amfl/vim-evennia)
-mode instead, see its readme for install instructions.
\ No newline at end of file
+- [VIM](https://www.vim.org/) users can use amfl's [vim-evennia](https://github.com/amfl/vim-evennia)
+mode instead, see its readme for install instructions.
diff --git a/docs/1.0-dev/_sources/Components/Batch-Processors.md.txt b/docs/1.0-dev/_sources/Components/Batch-Processors.md.txt
index d5809f6d90..b7b3ee02e1 100644
--- a/docs/1.0-dev/_sources/Components/Batch-Processors.md.txt
+++ b/docs/1.0-dev/_sources/Components/Batch-Processors.md.txt
@@ -44,7 +44,7 @@ encodings* below.
## A note on File Encodings
As mentioned, both the processors take text files as input and then proceed to process them. As long
-as you stick to the standard [ASCII](http://en.wikipedia.org/wiki/Ascii) character set (which means
+as you stick to the standard [ASCII](https://en.wikipedia.org/wiki/Ascii) character set (which means
the normal English characters, basically) you should not have to worry much about this section.
Many languages however use characters outside the simple `ASCII` table. Common examples are various
@@ -52,7 +52,7 @@ apostrophes and umlauts but also completely different symbols like those of the
alphabets.
First, we should make it clear that Evennia itself handles international characters just fine. It
-(and Django) uses [unicode](http://en.wikipedia.org/wiki/Unicode) strings internally.
+(and Django) uses [unicode](https://en.wikipedia.org/wiki/Unicode) strings internally.
The problem is that when reading a text file like the batchfile, we need to know how to decode the
byte-data stored therein to universal unicode. That means we need an *encoding* (a mapping) for how
@@ -74,9 +74,9 @@ file with lots of non-ASCII letters in the editor of your choice, then import to
as it should.
More help with encodings can be found in the entry [Text Encodings](../Concepts/Text-Encodings) and also in the
-Wikipedia article [here](http://en.wikipedia.org/wiki/Text_encodings).
+Wikipedia article [here](https://en.wikipedia.org/wiki/Text_encodings).
**A footnote for the batch-code processor**: Just because *Evennia* can parse your file and your
fancy special characters, doesn't mean that *Python* allows their use. Python syntax only allows
international characters inside *strings*. In all other source code only `ASCII` set characters are
-allowed.
\ No newline at end of file
+allowed.
diff --git a/docs/1.0-dev/_sources/Components/Coding-Utils.md.txt b/docs/1.0-dev/_sources/Components/Coding-Utils.md.txt
index 16c9bb73f2..a85079dd2d 100644
--- a/docs/1.0-dev/_sources/Components/Coding-Utils.md.txt
+++ b/docs/1.0-dev/_sources/Components/Coding-Utils.md.txt
@@ -202,7 +202,7 @@ will only catch immediate dependence). This function also accepts as input any c
classes, instances or python-paths-to-classes.
Note that Python code should usually work with [duck
-typing](http://en.wikipedia.org/wiki/Duck_typing). But in Evennia's case it can sometimes be useful
+typing](https://en.wikipedia.org/wiki/Duck_typing). But in Evennia's case it can sometimes be useful
to check if an object inherits from a given [Typeclass](./Typeclasses) as a way of identification. Say
for example that we have a typeclass *Animal*. This has a subclass *Felines* which in turn has a
subclass *HouseCat*. Maybe there are a bunch of other animal types too, like horses and dogs. Using
diff --git a/docs/1.0-dev/_sources/Components/Command-Sets.md.txt b/docs/1.0-dev/_sources/Components/Command-Sets.md.txt
index 2620b8f1ef..eb2343e932 100644
--- a/docs/1.0-dev/_sources/Components/Command-Sets.md.txt
+++ b/docs/1.0-dev/_sources/Components/Command-Sets.md.txt
@@ -282,7 +282,7 @@ type **A** has, and which relative priorities the two sets have. By convention,
statement as "New command set **A** is merged onto the old command set **B** to form **?**".
Below are the available merge types and how they work. Names are partly borrowed from [Set
-theory](http://en.wikipedia.org/wiki/Set_theory).
+theory](https://en.wikipedia.org/wiki/Set_theory).
- **Union** (default) - The two cmdsets are merged so that as many commands as possible from each
cmdset ends up in the merged cmdset. Same-key commands are merged by priority.
@@ -373,4 +373,4 @@ exits are merged in), these two commands will be considered *identical* since th
means only one of them will remain after the merger. Each will also be compared with all other
commands having any combination of the keys and/or aliases "kick", "punch" or "fight".
-... So avoid duplicate aliases, it will only cause confusion.
\ No newline at end of file
+... So avoid duplicate aliases, it will only cause confusion.
diff --git a/docs/1.0-dev/_sources/Components/Commands.md.txt b/docs/1.0-dev/_sources/Components/Commands.md.txt
index 81b0b005c9..d7ed92f46b 100644
--- a/docs/1.0-dev/_sources/Components/Commands.md.txt
+++ b/docs/1.0-dev/_sources/Components/Commands.md.txt
@@ -218,9 +218,9 @@ from this method will be returned from the execution as a Twisted Deferred.
- `at_post_cmd()` is called after `func()` to handle eventual cleanup.
Finally, you should always make an informative [doc
-string](http://www.python.org/dev/peps/pep-0257/#what-is-a-docstring) (`__doc__`) at the top of your
-class. This string is dynamically read by the [Help System](./Help-System) to create the help entry
-for this command. You should decide on a way to format your help and stick to that.
+string](https://www.python.org/dev/peps/pep-0257/#what-is-a-docstring) (`__doc__`) at the top of
+your class. This string is dynamically read by the [Help System](./Help-System) to create the help
+entry for this command. You should decide on a way to format your help and stick to that.
Below is how you define a simple alternative "`smile`" command:
@@ -288,7 +288,7 @@ that will be used). If you want to tell the parser to require a certain separato
command name and its arguments (so that `get stone` works but `getstone` gives you a 'command not
found' error) you can do so with the `arg_regex` property.
-The `arg_regex` is a [raw regular expression string](http://docs.python.org/library/re.html). The
+The `arg_regex` is a [raw regular expression string](https://docs.python.org/library/re.html). The
regex will be compiled by the system at runtime. This allows you to customize how the part
*immediately following* the command name (or alias) must look in order for the parser to match for
this command. Some examples:
@@ -644,7 +644,7 @@ doing useful things.
## Assorted notes
The return value of `Command.func()` is a Twisted
-[deferred](http://twistedmatrix.com/documents/current/core/howto/defer.html).
+[deferred](https://twistedmatrix.com/documents/current/core/howto/defer.html).
Evennia does not use this return value at all by default. If you do, you must
thus do so asynchronously, using callbacks.
@@ -661,4 +661,4 @@ create a "nested" command structure for example).
The `save_for_next` class variable can be used to implement state-persistent commands. For example
it can make a command operate on "it", where it is determined by what the previous command operated
-on.
\ No newline at end of file
+on.
diff --git a/docs/1.0-dev/_sources/Components/Server-Conf.md.txt b/docs/1.0-dev/_sources/Components/Server-Conf.md.txt
index e6f34ba9de..f18f118b87 100644
--- a/docs/1.0-dev/_sources/Components/Server-Conf.md.txt
+++ b/docs/1.0-dev/_sources/Components/Server-Conf.md.txt
@@ -78,10 +78,10 @@ you often have to register with) in order to display what kind of game you are r
- `portal_services_plugin.py` - this allows for adding your own custom services/protocols to the
Portal. It must define one particular function that will be called by Evennia at startup. There can
be any number of service plugin modules, all will be imported and used if defined. More info can be
-found [here](http://code.google.com/p/evennia/wiki/SessionProtocols#Adding_custom_Protocols).
+found [here](https://code.google.com/p/evennia/wiki/SessionProtocols#Adding_custom_Protocols).
- `server_services_plugin.py` - this is equivalent to the previous one, but used for adding new
services to the Server instead. More info can be found
-[here](http://code.google.com/p/evennia/wiki/SessionProtocols#Adding_custom_Protocols).
+[here](https://code.google.com/p/evennia/wiki/SessionProtocols#Adding_custom_Protocols).
Some other Evennia systems can be customized by plugin modules but has no explicit template in
`conf/`:
diff --git a/docs/1.0-dev/_sources/Concepts/Async-Process.md.txt b/docs/1.0-dev/_sources/Concepts/Async-Process.md.txt
index 3cea533770..0bb4c566d5 100644
--- a/docs/1.0-dev/_sources/Concepts/Async-Process.md.txt
+++ b/docs/1.0-dev/_sources/Concepts/Async-Process.md.txt
@@ -227,7 +227,7 @@ expected, but they may appear with delays or in groups.
## Further reading
Technically, `run_async` is just a very thin and simplified wrapper around a
-[Twisted Deferred](http://twistedmatrix.com/documents/9.0.0/core/howto/defer.html) object; the
+[Twisted Deferred](https://twistedmatrix.com/documents/9.0.0/core/howto/defer.html) object; the
wrapper sets
up a default errback also if none is supplied. If you know what you are doing there is nothing
stopping you from bypassing the utility function, building a more sophisticated callback chain after
diff --git a/docs/1.0-dev/_sources/Concepts/OOB.md.txt b/docs/1.0-dev/_sources/Concepts/OOB.md.txt
index 085fc999a1..7f175882a7 100644
--- a/docs/1.0-dev/_sources/Concepts/OOB.md.txt
+++ b/docs/1.0-dev/_sources/Concepts/OOB.md.txt
@@ -79,16 +79,16 @@ translations described below.
#### Telnet + GMCP
-[GMCP](http://www.gammon.com.au/gmcp), the *Generic Mud Communication Protocol* sends data on the
+[GMCP](https://www.gammon.com.au/gmcp), the *Generic Mud Communication Protocol* sends data on the
form `cmdname + JSONdata`. Here the cmdname is expected to be on the form "Package.Subpackage".
There could also be additional Sub-sub packages etc. The names of these 'packages' and 'subpackages'
are not that well standardized beyond what individual MUDs or companies have chosen to go with over
the years. You can decide on your own package names, but here are what others are using:
-- [Aardwolf GMCP](http://www.aardwolf.com/wiki/index.php/Clients/GMCP)
-- [Discworld GMCP](http://discworld.starturtle.net/lpc/playing/documentation.c?path=/concepts/gmcp)
-- [Avatar GMCP](http://www.outland.org/infusions/wiclear/index.php?title=MUD%20Protocols&lang=en)
-- [IRE games GMCP](http://nexus.ironrealms.com/GMCP)
+- [Aardwolf GMCP](https://www.aardwolf.com/wiki/index.php/Clients/GMCP)
+- [Discworld GMCP](https://discworld.starturtle.net/lpc/playing/documentation.c?path=/concepts/gmcp)
+- [Avatar GMCP](https://www.outland.org/infusions/wiclear/index.php?title=MUD%20Protocols&lang=en)
+- [IRE games GMCP](https://nexus.ironrealms.com/GMCP)
Evennia will translate underscores to `.` and capitalize to fit the specification. So the
outputcommand `foo_bar` will become a GMCP command-name `Foo.Bar`. A GMCP command "Foo.Bar" will be
@@ -167,4 +167,4 @@ same example `("cmdname", ("arg",), {})` will be sent/received as a valid JSON s
["cmdname, ["arg"], {}]
-Since JSON is native to Javascript, this becomes very easy for the webclient to handle.
\ No newline at end of file
+Since JSON is native to Javascript, this becomes very easy for the webclient to handle.
diff --git a/docs/1.0-dev/_sources/Concepts/Soft-Code.md.txt b/docs/1.0-dev/_sources/Concepts/Soft-Code.md.txt
index 5f7f73d090..3e11c74e7e 100644
--- a/docs/1.0-dev/_sources/Concepts/Soft-Code.md.txt
+++ b/docs/1.0-dev/_sources/Concepts/Soft-Code.md.txt
@@ -42,8 +42,8 @@ The `v()` function returns the `HELLO_VALUE.D` attribute on the object that the
If you are still curious about how Softcode works, take a look at some external resources:
-- http://www.tinymux.com/wiki/index.php/Softcode
-- http://www.duh.com/discordia/mushman/man2x1
+- https://wiki.tinymux.org/index.php/Softcode
+- https://www.duh.com/discordia/mushman/man2x1
## Problems with Softcode
@@ -91,4 +91,4 @@ satisfy most creative builders. However, if you really, *really* want to offer o
is of course nothing stopping you from adding that to Evennia, no matter our recommendations. You
could even re-implement MUX' softcode in Python should you be very ambitious. The
[in-game-python](../Contribs/Dialogues-in-events) is an optional
-pseudo-softcode plugin aimed at developers wanting to script their game from inside it.
\ No newline at end of file
+pseudo-softcode plugin aimed at developers wanting to script their game from inside it.
diff --git a/docs/1.0-dev/_sources/Concepts/Text-Encodings.md.txt b/docs/1.0-dev/_sources/Concepts/Text-Encodings.md.txt
index a4aa4820af..dee5f9b7b7 100644
--- a/docs/1.0-dev/_sources/Concepts/Text-Encodings.md.txt
+++ b/docs/1.0-dev/_sources/Concepts/Text-Encodings.md.txt
@@ -63,4 +63,4 @@ Note that having to try several different encodings every input/output adds
unneccesary overhead. Try to guess the most common encodings you players will
use and make sure these are tried first. The International *UTF-8* encoding is
what Evennia assumes by default (and also what Python/Django use normally). See
-the Wikipedia article [here](http://en.wikipedia.org/wiki/Text_encodings) for more help.
\ No newline at end of file
+the Wikipedia article [here](https://en.wikipedia.org/wiki/Text_encodings) for more help.
\ No newline at end of file
diff --git a/docs/1.0-dev/_sources/Concepts/Using-MUX-as-a-Standard.md.txt b/docs/1.0-dev/_sources/Concepts/Using-MUX-as-a-Standard.md.txt
index 9d9bc638e3..3fce2fd0a5 100644
--- a/docs/1.0-dev/_sources/Concepts/Using-MUX-as-a-Standard.md.txt
+++ b/docs/1.0-dev/_sources/Concepts/Using-MUX-as-a-Standard.md.txt
@@ -6,10 +6,10 @@ you could emulate that with Evennia. If you are ambitious you could even design
perfectly fitting your own dreams of the ideal game.
We do offer a default however. The default Evennia setup tends to *resemble*
-[MUX2](http://www.tinymux.org/), and its cousins [PennMUSH](http://www.pennmush.org),
-[TinyMUSH](http://tinymush.sourceforge.net/), and [RhostMUSH](http://www.rhostmush.org/). While the
-reason for this similarity is partly historical, these codebases offer very mature feature sets for
-administration and building.
+[MUX2](https://www.tinymux.org/), and its cousins [PennMUSH](https://www.pennmush.org),
+[TinyMUSH](https://github.com/TinyMUSH/TinyMUSH/wiki), and [RhostMUSH](http://www.rhostmush.com/).
+While the reason for this similarity is partly historical, these codebases offer very mature feature
+sets for administration and building.
Evennia is *not* a MUX system though. It works very differently in many ways. For example, Evennia
deliberately lacks an online softcode language (a policy explained on our [softcode policy
@@ -82,4 +82,4 @@ something to the effect of
if not self.args:
self.caller.msg("Usage: nick[/switches] = []")
return
-```
\ No newline at end of file
+```
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 e8837ae768..58eb890b88 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
@@ -2,8 +2,8 @@
## Introduction
-[Arx - After the Reckoning](http://play.arxmush.org/) is a big and very popular
-[Evennia](http://www.evennia.com)-based game. Arx is heavily roleplaying-centric, relying on game
+[Arx - After the Reckoning](https://play.arxmush.org/) is a big and very popular
+[Evennia](https://www.evennia.com)-based game. Arx is heavily roleplaying-centric, relying on game
masters to drive the story. Technically it's maybe best described as "a MUSH, but with more coded
systems". In August of 2018, the game's developer, Tehom, generously released the [source code of
Arx on github](https://github.com/Arx-Game/arxcode). This is a treasure-trove for developers wanting
@@ -22,7 +22,7 @@ better match with the vanilla Evennia install.
Firstly, set aside a folder/directory on your drive for everything to follow.
-You need to start by installing [Evennia](http://www.evennia.com) by following most of the
+You need to start by installing [Evennia](https://www.evennia.com) by following most of the
[Getting Started Instructions](../Setup/Setup-Quickstart) for your OS. The difference is that you need to `git clone
https://github.com/TehomCD/evennia.git` instead of Evennia's repo because Arx uses TehomCD's older
Evennia 0.8 [fork](https://github.com/TehomCD/evennia), notably still using Python2. This detail is
@@ -211,7 +211,7 @@ process is a little bit trickier.
Make sure you have:
* Git for Windows https://git-scm.com/download/win
* Anaconda for Windows https://www.anaconda.com/distribution/
- * VC++ Compiler for Python 2.7 http://aka.ms/vcpython27
+ * VC++ Compiler for Python 2.7 https://aka.ms/vcpython27
conda update conda
conda create -n arx python=2.7
@@ -268,4 +268,4 @@ winpty ../evennia/bin/windows/evennia.bat start
Once this is done, you should have your Evennia server running Arxcode up
on localhost at port 4000, and the webserver at http://localhost:4001/
- And you are done! Huzzah!
\ No newline at end of file
+ And you are done! Huzzah!
diff --git a/docs/1.0-dev/_sources/Contribs/Building-menus.md.txt b/docs/1.0-dev/_sources/Contribs/Building-menus.md.txt
index e9009f86e6..474654e31b 100644
--- a/docs/1.0-dev/_sources/Contribs/Building-menus.md.txt
+++ b/docs/1.0-dev/_sources/Contribs/Building-menus.md.txt
@@ -170,7 +170,7 @@ probably not appear in your MUD client):
```
> look
Limbo(#2)
-Welcome to your new Evennia-based game! Visit http://www.evennia.com if you need
+Welcome to your new Evennia-based game! Visit https://www.evennia.com if you need
help, want to contribute, report issues or just join the community.
As Account #1 you can create a demo/tutorial area with @batchcommand tutorial_world.build.
@@ -222,7 +222,7 @@ Closing the building menu.
> look
A beautiful meadow(#2)
-Welcome to your new Evennia-based game! Visit http://www.evennia.com if you need
+Welcome to your new Evennia-based game! Visit https://www.evennia.com if you need
help, want to contribute, report issues or just join the community.
As Account #1 you can create a demo/tutorial area with @batchcommand tutorial_world.build.
```
@@ -329,7 +329,7 @@ Building menu: A beautiful meadow
[K]ey: A beautiful meadow
[D]escription:
- Welcome to your new Evennia-based game! Visit http://www.evennia.com if you need
+ Welcome to your new Evennia-based game! Visit https://www.evennia.com if you need
help, want to contribute, report issues or just join the community.
As Account #1 you can create a demo/tutorial area with @batchcommand tutorial_world.build.
[Q]uit this editor
@@ -337,7 +337,7 @@ As Account #1 you can create a demo/tutorial area with @batchcommand tutorial_wo
> d
----------Line Editor [editor]----------------------------------------------------
-01| Welcome to your new |wEvennia|n-based game! Visit http://www.evennia.com if you need
+01| Welcome to your new |wEvennia|n-based game! Visit https://www.evennia.com if you need
02| help, want to contribute, report issues or just join the community.
03| As Account #1 you can create a demo/tutorial area with |w@batchcommand tutorial_world.build|n.
@@ -1230,4 +1230,4 @@ complicated to learn and require reading the source code to find out how to do s
thing. This documentation, however long, is an attempt at describing this system, but chances are
you'll still have questions about it after reading it, especially if you try to push this system to
a great extent. Do not hesitate to read the documentation of this contrib, it's meant to be
-exhaustive but user-friendly.
\ No newline at end of file
+exhaustive but user-friendly.
diff --git a/docs/1.0-dev/_sources/Contribs/Static-In-Game-Map.md.txt b/docs/1.0-dev/_sources/Contribs/Static-In-Game-Map.md.txt
index 5e03e9d6de..ae480fd436 100644
--- a/docs/1.0-dev/_sources/Contribs/Static-In-Game-Map.md.txt
+++ b/docs/1.0-dev/_sources/Contribs/Static-In-Game-Map.md.txt
@@ -55,11 +55,11 @@ Our map will be in-game text but that doesn't mean we're restricted to the norma
you've ever selected the [Wingdings font](https://en.wikipedia.org/wiki/Wingdings) in Microsoft Word
you will know there are a multitude of other characters around to use. When creating your game with
Evennia you have access to the [UTF-8 character encoding](https://en.wikipedia.org/wiki/UTF-8) which
-put at your disposal [thousands of letters, number and geometric shapes](http://mcdlr.com/utf-8/#1).
+put at your disposal [thousands of letters, number and geometric shapes](https://mcdlr.com/utf-8/#1).
For this exercise, we've copy-and-pasted from the pallet of special characters used over at
-[Dwarf Fortress](http://dwarffortresswiki.org/index.php/Character_table) to create what is hopefully a
-pleasing and easy to understood landscape:
+[Dwarf Fortress](https://dwarffortresswiki.org/index.php/Character_table) to create what is hopefully
+a pleasing and easy to understood landscape:
```
≈≈↑↑↑↑↑∩∩
@@ -413,4 +413,4 @@ easily new game defining features can be added to Evennia.
You can easily build from this tutorial by expanding the map and creating more rooms to explore. Why
not add more features to your game by trying other tutorials: [Add weather to your world](Weather-
Tutorial), [fill your world with NPC's](../Howto/Tutorial-Aggressive-NPCs) or
-[implement a combat system](../Howto/Starting/Part3/Turn-based-Combat-System).
\ No newline at end of file
+[implement a combat system](../Howto/Starting/Part3/Turn-based-Combat-System).
diff --git a/docs/1.0-dev/_sources/Contributing-Docs.md.txt b/docs/1.0-dev/_sources/Contributing-Docs.md.txt
index 6d7f4b5c44..6b45bd6ca4 100644
--- a/docs/1.0-dev/_sources/Contributing-Docs.md.txt
+++ b/docs/1.0-dev/_sources/Contributing-Docs.md.txt
@@ -688,8 +688,8 @@ to understand our friendly Google-style docstrings used in classes and functions
[recommonmark](https://recommonmark.readthedocs.io/en/latest/index.html)
[commonmark](https://spec.commonmark.org/current/)
[commonmark-help](https://commonmark.org/help/)
-[sphinx-autodoc](http://www.sphinx-doc.org/en/master/usage/extensions/autodoc.html#module-sphinx.ext.autodoc)
-[sphinx-napoleon](http://www.sphinx-doc.org/en/master/usage/extensions/napoleon.html)
+[sphinx-autodoc](https://www.sphinx-doc.org/en/master/usage/extensions/autodoc.html#module-sphinx.ext.autodoc)
+[sphinx-napoleon](https://www.sphinx-doc.org/en/master/usage/extensions/napoleon.html)
[getting-started]: Setup/Setup-Quickstart
[contributing]: ./Contributing
[ReST](https://www.sphinx-doc.org/en/master/usage/restructuredtext/basics.html)
diff --git a/docs/1.0-dev/_sources/Contributing.md.txt b/docs/1.0-dev/_sources/Contributing.md.txt
index 3f7ab03c47..e79503e40d 100644
--- a/docs/1.0-dev/_sources/Contributing.md.txt
+++ b/docs/1.0-dev/_sources/Contributing.md.txt
@@ -56,7 +56,7 @@ above. But for small, well isolated fixes you are also welcome to submit your su
fixes/addendums as a [patch][patch].
You can include your patch in an Issue or a Mailing list post. Please avoid pasting the full patch
-text directly in your post though, best is to use a site like [Pastebin](http://pastebin.com/) and
+text directly in your post though, best is to use a site like [Pastebin](https://pastebin.com/) and
just supply the link.
## Contributing with Contribs
@@ -115,4 +115,4 @@ UBBFWIuVDEZxC0M_2pM6ywO&dispatch=5885d80a13c0db1f8e263663d3faee8d66f31424b43e9a7
[issues](https://github.com/evennia/evennia/issues)
[patch](https://secure.wikimedia.org/wikipedia/en/wiki/Patch_%28computing%29 )
[codestyle](https://github.com/evennia/evennia/blob/master/CODING_STYLE.md)
-[tutorials](https://github.com/evennia/evennia/wiki/Tutorials)
\ No newline at end of file
+[tutorials](https://github.com/evennia/evennia/wiki/Tutorials)
diff --git a/docs/1.0-dev/_sources/Evennia-Introduction.md.txt b/docs/1.0-dev/_sources/Evennia-Introduction.md.txt
index 4fa45a7e3a..fb80e19c79 100644
--- a/docs/1.0-dev/_sources/Evennia-Introduction.md.txt
+++ b/docs/1.0-dev/_sources/Evennia-Introduction.md.txt
@@ -5,10 +5,10 @@ Domain) is a multiplayer real-time virtual world described primarily in text. MU
of role-playing games, hack and slash, player versus player, interactive fiction and online chat.
Players can read or view descriptions of rooms, objects, other players, non-player characters, and
actions performed in the virtual world. Players typically interact with each other and the world by
-typing commands that resemble a natural language.* - [Wikipedia](http://en.wikipedia.org/wiki/MUD)
+typing commands that resemble a natural language.* - [Wikipedia](https://en.wikipedia.org/wiki/MUD)
If you are reading this, it's quite likely you are dreaming of creating and running a text-based
-massively-multiplayer game ([MUD/MUX/MUSH](http://tinyurl.com/c5sc4bm) etc) of your very own. You
+massively-multiplayer game ([MUD/MUX/MUSH](https://tinyurl.com/c5sc4bm) etc) of your very own. You
might just be starting to think about it, or you might have lugged around that *perfect* game in
your mind for years ... you know *just* how good it would be, if you could only make it come to
reality. We know how you feel. That is, after all, why Evennia came to be.
@@ -79,17 +79,17 @@ page](Links#wiki-litterature) for some reading suggestions. To efficiently code
Evennia you don't need to be a Python guru, but you do need to be able to read example code
containing at least these basic Python features:
-- Importing and using python [modules](http://docs.python.org/3.7/tutorial/modules.html)
-- Using [variables](http://www.tutorialspoint.com/python/python_variable_types.htm), [conditional
-statements](http://docs.python.org/tutorial/controlflow.html#if-statements),
-[loops](http://docs.python.org/tutorial/controlflow.html#for-statements) and
-[functions](http://docs.python.org/tutorial/controlflow.html#defining-functions)
+- Importing and using python [modules](https://docs.python.org/3.7/tutorial/modules.html)
+- Using [variables](https://www.tutorialspoint.com/python/python_variable_types.htm), [conditional
+statements](https://docs.python.org/tutorial/controlflow.html#if-statements),
+[loops](https://docs.python.org/tutorial/controlflow.html#for-statements) and
+[functions](https://docs.python.org/tutorial/controlflow.html#defining-functions)
- Using [lists, dictionaries and list
-comprehensions](http://docs.python.org/tutorial/datastructures.html)
-- Doing [string handling and formatting](http://docs.python.org/tutorial/introduction.html#strings)
+comprehensions](https://docs.python.org/tutorial/datastructures.html)
+- Doing [string handling and formatting](https://docs.python.org/tutorial/introduction.html#strings)
- Have a basic understanding of [object-oriented
-programming](http://www.tutorialspoint.com/python/python_classes_objects.htm), using
-[Classes](http://docs.python.org/tutorial/classes.html), their methods and properties
+programming](https://www.tutorialspoint.com/python/python_classes_objects.htm), using
+[Classes](https://docs.python.org/tutorial/classes.html), their methods and properties
Obviously, the more things you feel comfortable with, the easier time you'll have to find your way.
With just basic knowledge you should be able to define your own [Commands](Components/Commands), create custom
@@ -120,13 +120,13 @@ Some more hints:
1. Get engaged in the community. Make an introductory post to our [mailing
list/forum](https://groups.google.com/forum/#!forum/evennia) and get to know people. It's also
highly recommended you hop onto our [Developer
-chat](http://webchat.freenode.net/?channels=evennia&uio=MT1mYWxzZSY5PXRydWUmMTE9MTk1JjEyPXRydWUbb)
+chat](https://webchat.freenode.net/?channels=evennia&uio=MT1mYWxzZSY5PXRydWUmMTE9MTk1JjEyPXRydWUbb)
on IRC. This allows you to chat directly with other developers new and old as well as with the devs
-of Evennia itself. This chat is logged (you can find links on http://www.evennia.com) and can also
+of Evennia itself. This chat is logged (you can find links on https://www.evennia.com) and can also
be searched from the same place for discussion topics you are interested in.
2. Read the [Game Planning](Howto/Starting/Part2/Game-Planning) wiki page. It gives some ideas for your work flow and the
state of mind you should aim for - including cutting down the scope of your game for its first
release.
3. Do the [Tutorial for basic MUSH-like game](Howto/Starting/Part3/Tutorial-for-basic-MUSH-like-game) carefully from
beginning to end and try to understand what does what. Even if you are not interested in a MUSH for
-your own game, you will end up with a small (very small) game that you can build or learn from.
\ No newline at end of file
+your own game, you will end up with a small (very small) game that you can build or learn from.
diff --git a/docs/1.0-dev/_sources/How-To-Get-And-Give-Help.md.txt b/docs/1.0-dev/_sources/How-To-Get-And-Give-Help.md.txt
index 6f4560c1d5..6763818594 100644
--- a/docs/1.0-dev/_sources/How-To-Get-And-Give-Help.md.txt
+++ b/docs/1.0-dev/_sources/How-To-Get-And-Give-Help.md.txt
@@ -54,13 +54,13 @@ issues by putting up a monetary [bounty][bountysource] on it.
[form]: https://docs.google.com/spreadsheet/viewform?hl=en_US&formkey=dGN0VlJXMWpCT3VHaHpscDEzY1RoZGc6MQ#gid=0
-[group]:http://groups.google.com/group/evennia/
+[group]:https://groups.google.com/group/evennia/
[issues]:https://github.com/evennia/evennia/issues
[issues-master]:https://github.com/evennia/evennia/issues?utf8=%E2%9C%93&q=is%3Aissue%20is%3Aopen%20label%3Abug%20label%3Amaster-branch
-[chat]: http://webchat.freenode.net/?channels=evennia
+[chat]: https://webchat.freenode.net/?channels=evennia
[paypal]: https://www.paypal.com/se/cgi-bin/webscr?cmd=_flow&SESSION=Z-VlOvfGjYq2qvCDOUGpb6C8Due7skT0qOklQEy5EbaD1f0eyEQaYlmCc8O&dispatch=5885d80a13c0db1f8e263663d3faee8d64ad11bbf4d2a5a1a0d303a50933f9b2
-[donate-img]: http://images-focus-opensocial.googleusercontent.com/gadgets/proxy?url=https://www.paypalobjects.com/en%255fUS/SE/i/btn/btn%255fdonateCC%255fLG.gif&container=focus&gadget=a&rewriteMime=image/*
+[donate-img]: https://images-focus-opensocial.googleusercontent.com/gadgets/proxy?url=https://www.paypalobjects.com/en%255fUS/SE/i/btn/btn%255fdonateCC%255fLG.gif&container=focus&gadget=a&rewriteMime=image/*
[patreon]: https://www.patreon.com/griatch
-[patreon-img]: http://www.evennia.com/_/rsrc/1424724909023/home/evennia_patreon_100x100.png
+[patreon-img]: https://www.evennia.com/_/rsrc/1424724909023/home/evennia_patreon_100x100.png
[issues-bounties]:https://github.com/evennia/evennia/labels/bounty
[bountysource]: https://www.bountysource.com/teams/evennia
diff --git a/docs/1.0-dev/_sources/Howto/Add-a-wiki-on-your-website.md.txt b/docs/1.0-dev/_sources/Howto/Add-a-wiki-on-your-website.md.txt
index 0c25f47e55..4038187085 100644
--- a/docs/1.0-dev/_sources/Howto/Add-a-wiki-on-your-website.md.txt
+++ b/docs/1.0-dev/_sources/Howto/Add-a-wiki-on-your-website.md.txt
@@ -8,13 +8,13 @@
This tutorial will provide a step-by-step process to installing a wiki on your website.
Fortunately, you don't have to create the features manually, since it has been done by others, and
we can integrate their work quite easily with Django. I have decided to focus on
-the [Django-wiki](http://django-wiki.readthedocs.io/).
+the [Django-wiki](https://django-wiki.readthedocs.io/).
> Note: this article has been updated for Evennia 0.9. If you're not yet using this version, be
careful, as the django wiki doesn't support Python 2 anymore. (Remove this note when enough time
has passed.)
-The [Django-wiki](http://django-wiki.readthedocs.io/) offers a lot of features associated with
+The [Django-wiki](https://django-wiki.readthedocs.io/) offers a lot of features associated with
wikis, is
actively maintained (at this time, anyway), and isn't too difficult to install in Evennia. You can
see a [demonstration of Django-wiki here](https://demo.django.wiki).
diff --git a/docs/1.0-dev/_sources/Howto/Command-Duration.md.txt b/docs/1.0-dev/_sources/Howto/Command-Duration.md.txt
index 5ac8b6c900..fec936f920 100644
--- a/docs/1.0-dev/_sources/Howto/Command-Duration.md.txt
+++ b/docs/1.0-dev/_sources/Howto/Command-Duration.md.txt
@@ -119,7 +119,7 @@ Looking at it you might think that `utils.delay(10, callback)` in the code above
alternative to some more familiar thing like `time.sleep(10)`. This is *not* the case. If you do
`time.sleep(10)` you will in fact freeze the *entire server* for ten seconds! The `utils.delay()`is
a thin wrapper around a Twisted
-[Deferred](http://twistedmatrix.com/documents/11.0.0/core/howto/defer.html) that will delay
+[Deferred](https://twistedmatrix.com/documents/11.0.0/core/howto/defer.html) that will delay
execution until 10 seconds have passed, but will do so asynchronously, without bothering anyone else
(not even you - you can continue to do stuff normally while it waits to continue).
diff --git a/docs/1.0-dev/_sources/Howto/Evennia-for-MUSH-Users.md.txt b/docs/1.0-dev/_sources/Howto/Evennia-for-MUSH-Users.md.txt
index eedcaf5b09..a9130275a2 100644
--- a/docs/1.0-dev/_sources/Howto/Evennia-for-MUSH-Users.md.txt
+++ b/docs/1.0-dev/_sources/Howto/Evennia-for-MUSH-Users.md.txt
@@ -1,7 +1,7 @@
# Evennia for MUSH Users
*This page is adopted from an article originally posted for the MUSH community [here on
-musoapbox.net](http://musoapbox.net/topic/1150/evennia-for-mushers).*
+musoapbox.net](https://musoapbox.net/topic/1150/evennia-for-mushers).*
[MUSH](https://en.wikipedia.org/wiki/MUSH)es are text multiplayer games traditionally used for
heavily roleplay-focused game styles. They are often (but not always) utilizing game masters and
@@ -138,7 +138,7 @@ Note that Python cares about indentation, so make sure to indent with the same n
shown above!
So what happens above? We [import the
-module](http://www.linuxtopia.org/online_books/programming_books/python_programming/python_ch28s03.html)
+module](https://www.linuxtopia.org/online_books/programming_books/python_programming/python_ch28s03.html)
`evennia/contrib/multidescer.py` at the top. Once imported we can access stuff inside that module
using full stop (`.`). The multidescer is defined as a class `CmdMultiDesc` (we could find this out
by opening said module in a text editor). At the bottom we create a new instance of this class and
@@ -217,5 +217,5 @@ to try out. If you feel you want a more visual overview you can also look at
[Evennia in pictures](https://evennia.blogspot.se/2016/05/evennia-in-pictures.html).
… And of course, if you need further help you can always drop into the [Evennia
-chatroom](http://webchat.freenode.net/?channels=evennia&uio=MT1mYWxzZSY5PXRydWUmMTE9MTk1JjEyPXRydWUbb)
-or post a question in our [forum/mailing list](https://groups.google.com/forum/#%21forum/evennia)!
\ No newline at end of file
+chatroom](https://webchat.freenode.net/?channels=evennia&uio=MT1mYWxzZSY5PXRydWUmMTE9MTk1JjEyPXRydWUbb)
+or post a question in our [forum/mailing list](https://groups.google.com/forum/#%21forum/evennia)!
diff --git a/docs/1.0-dev/_sources/Howto/Starting/Part1/Python-basic-introduction.md.txt b/docs/1.0-dev/_sources/Howto/Starting/Part1/Python-basic-introduction.md.txt
index a5f3332ac5..c72c357d57 100644
--- a/docs/1.0-dev/_sources/Howto/Starting/Part1/Python-basic-introduction.md.txt
+++ b/docs/1.0-dev/_sources/Howto/Starting/Part1/Python-basic-introduction.md.txt
@@ -1,7 +1,7 @@
# Starting to code Evennia
-Time to dip our toe into some coding! Evennia is written and extended in [Python](http://python.org), which
-is a mature and professional programming language that is very fast to work with.
+Time to dip our toe into some coding! Evennia is written and extended in [Python](https://python.org),
+which is a mature and professional programming language that is very fast to work with.
That said, even though Python is widely considered easy to learn, we can only cover the most immediately
important aspects of Python in this series of starting tutorials. Hopefully we can get you started
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 5a052f44d2..170e376b7c 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
@@ -193,7 +193,7 @@ pre-alpha games are allowed in the index so don't be shy)!
## Beta Release/Perpetual Beta
Once things stabilize in Alpha you can move to *Beta* and let more people in. Many MUDs are in
-[perpetual beta](http://en.wikipedia.org/wiki/Perpetual_beta), meaning they are never considered
+[perpetual beta](https://en.wikipedia.org/wiki/Perpetual_beta), meaning they are never considered
"finished", but just repeat the cycle of Planning, Coding, Testing and Building over and over as new
features get implemented or Players come with suggestions. As the game designer it is now up to you
to gradually perfect your vision.
diff --git a/docs/1.0-dev/_sources/Howto/Starting/Part3/Implementing-a-game-rule-system.md.txt b/docs/1.0-dev/_sources/Howto/Starting/Part3/Implementing-a-game-rule-system.md.txt
index 6e556afd99..80749cc971 100644
--- a/docs/1.0-dev/_sources/Howto/Starting/Part3/Implementing-a-game-rule-system.md.txt
+++ b/docs/1.0-dev/_sources/Howto/Starting/Part3/Implementing-a-game-rule-system.md.txt
@@ -52,7 +52,7 @@ to look at the Ainneve [Trait
handler](https://github.com/evennia/ainneve/blob/master/world/traits.py). Finally you could even go
with a [custom django model](../../../Concepts/New-Models). Which is the better depends on your game and the
complexity of your system.
-- Make a clear [API](http://en.wikipedia.org/wiki/Application_programming_interface) into your
+- Make a clear [API](https://en.wikipedia.org/wiki/Application_programming_interface) into your
rules. That is, make methods/functions that you feed with, say, your Character and which skill you
want to check. That is, you want something similar to this:
diff --git a/docs/1.0-dev/_sources/Howto/Starting/Part3/Tutorial-for-basic-MUSH-like-game.md.txt b/docs/1.0-dev/_sources/Howto/Starting/Part3/Tutorial-for-basic-MUSH-like-game.md.txt
index 97b9732c13..70c4963e3b 100644
--- a/docs/1.0-dev/_sources/Howto/Starting/Part3/Tutorial-for-basic-MUSH-like-game.md.txt
+++ b/docs/1.0-dev/_sources/Howto/Starting/Part3/Tutorial-for-basic-MUSH-like-game.md.txt
@@ -2,7 +2,7 @@
This tutorial lets you code a small but complete and functioning MUSH-like game in Evennia. A
-[MUSH](http://en.wikipedia.org/wiki/MUSH) is, for our purposes, a class of roleplay-centric games
+[MUSH](https://en.wikipedia.org/wiki/MUSH) is, for our purposes, a class of roleplay-centric games
focused on free form storytelling. Even if you are not interested in MUSH:es, this is still a good
first game-type to try since it's not so code heavy. You will be able to use the same principles for
building other types of games.
diff --git a/docs/1.0-dev/_sources/Howto/Starting/Part5/Web-Tutorial.md.txt b/docs/1.0-dev/_sources/Howto/Starting/Part5/Web-Tutorial.md.txt
index d5e667322c..ec6ad3b789 100644
--- a/docs/1.0-dev/_sources/Howto/Starting/Part5/Web-Tutorial.md.txt
+++ b/docs/1.0-dev/_sources/Howto/Starting/Part5/Web-Tutorial.md.txt
@@ -18,10 +18,10 @@ you might have an app for conducting polls, or an app for showing news posts or,
creating a web client.
Each of these applications has a `urls.py` file, which specifies what
-[URL](http://en.wikipedia.org/wiki/Uniform_resource_locator)s are used by the app, a `views.py` file
+[URL](https://en.wikipedia.org/wiki/Uniform_resource_locator)s are used by the app, a `views.py` file
for the code that the URLs activate, a `templates` directory for displaying the results of that code
-in [HTML](http://en.wikipedia.org/wiki/Html) for the user, and a `static` folder that holds assets
-like [CSS](http://en.wikipedia.org/wiki/CSS), [Javascript](http://en.wikipedia.org/wiki/Javascript),
+in [HTML](https://en.wikipedia.org/wiki/Html) for the user, and a `static` folder that holds assets
+like [CSS](https://en.wikipedia.org/wiki/CSS), [Javascript](https://en.wikipedia.org/wiki/Javascript),
and Image files (You may note your mygame/web folder does not have a `static` or `template` folder.
This is intended and explained further below). Django applications may also have a `models.py` file
for storing information in the database. We will not change any models here, take a look at the
diff --git a/docs/1.0-dev/_sources/Licensing.md.txt b/docs/1.0-dev/_sources/Licensing.md.txt
index ca5ee29c7b..40ebd78067 100644
--- a/docs/1.0-dev/_sources/Licensing.md.txt
+++ b/docs/1.0-dev/_sources/Licensing.md.txt
@@ -1,7 +1,7 @@
# Licensing
-Evennia is licensed under the very friendly [BSD](http://en.wikipedia.org/wiki/BSD_license)
+Evennia is licensed under the very friendly [BSD](https://en.wikipedia.org/wiki/BSD_license)
(3-clause) license. You can find the license as
[LICENSE.txt](https://github.com/evennia/evennia/blob/master/LICENSE.txt) in the Evennia
repository's root.
diff --git a/docs/1.0-dev/_sources/Links.md.txt b/docs/1.0-dev/_sources/Links.md.txt
index e46b9b1f98..7ad6acf9aa 100644
--- a/docs/1.0-dev/_sources/Links.md.txt
+++ b/docs/1.0-dev/_sources/Links.md.txt
@@ -4,22 +4,22 @@
### Official Evennia links
-- [evennia.com](http://www.evennia.com) - Main Evennia portal page. Links to all corners of Evennia.
+- [evennia.com](https://www.evennia.com) - Main Evennia portal page. Links to all corners of Evennia.
- [Evennia github page](https://github.com/evennia/evennia) - Download code and read documentation.
- [Evennia official chat
-channel](http://webchat.freenode.net/?channels=evennia&uio=MT1mYWxzZSY5PXRydWUmMTE9MTk1JjEyPXRydWUbb)
+channel](https://webchat.freenode.net/?channels=evennia&uio=MT1mYWxzZSY5PXRydWUmMTE9MTk1JjEyPXRydWUbb)
- Our official IRC chat #evennia at irc.freenode.net:6667.
-- [Evennia forums/mailing list](http://groups.google.com/group/evennia) - Web interface to our
+- [Evennia forums/mailing list](https://groups.google.com/group/evennia) - Web interface to our
google group.
-- [Evennia development blog](http://evennia.blogspot.se/) - Musings from the lead developer.
-- [Evennia's manual on ReadTheDocs](http://readthedocs.org/projects/evennia/) - Read and download
+- [Evennia development blog](https://evennia.blogspot.com/) - Musings from the lead developer.
+- [Evennia's manual on ReadTheDocs](https://readthedocs.org/projects/evennia/) - Read and download
offline in html, PDF or epub formats.
- [Evennia Game Index](http://games.evennia.com/) - An automated listing of Evennia games.
----
- [Evennia on Open Hub](https://www.openhub.net/p/6906)
- [Evennia on OpenHatch](https://openhatch.org/projects/Evennia)
- [Evennia on PyPi](https://pypi.python.org/pypi/Evennia-MUD-Server/)
-- [Evennia subreddit](http://www.reddit.com/r/Evennia/) (not much there yet though)
+- [Evennia subreddit](https://www.reddit.com/r/Evennia/) (not much there yet though)
### Third-party Evennia utilities and resources
@@ -40,7 +40,7 @@ _Blackbirds_ Evennia game project.
Evennia game dir with batchcode to build the custom _Hackers_ style cyberspace zone with puzzles and
challenges [used during the conference](https://dcdark.net/home#).
- [Arx sources](https://github.com/Arx-Game/arxcode) - Open-source code release of the very popular
-[Arx](http://play.arxmush.org/) Evennia game. [Here are instructions for installing](Arxcode-
+[Arx](https://play.arxmush.org/) Evennia game. [Here are instructions for installing](Arxcode-
installing-help)
- [Evennia-wiki](https://github.com/vincent-lg/evennia-wiki) - An Evennia-specific Wiki for your
website.
@@ -54,12 +54,12 @@ here](https://www.reddit.com/r/MUD/comments/6z6s3j/encarnia_an_evennia_python_mu
- [The world of Cool battles sources](https://github.com/FlutterSprite/coolbattles) - Open source
turn-based battle system for Evennia. It also has a [live demo](http://wcb.battlestudio.com/).
- [nextRPI](https://github.com/cluebyte/nextrpi) - A github project for making a toolbox for people
-to make [RPI](http://www.topmudsites.com/forums/showthread.php?t=4804)-style Evennia games.
+to make [RPI](https://www.topmudsites.com/forums/showthread.php?t=4804)-style Evennia games.
- [Muddery](https://github.com/muddery/muddery) - A mud framework under development, based on an
older fork of Evennia. It has some specific design goals for building and extending the game based
on input files.
- [vim-evennia](https://github.com/amfl/vim-evennia) - A mode for editing batch-build files (`.ev`)
-files in the [vim](http://www.vim.org/) text editor (Emacs users can use [evennia-
+files in the [vim](https://www.vim.org/) text editor (Emacs users can use [evennia-
mode.el](https://github.com/evennia/evennia/blob/master/evennia/utils/evennia-mode.el)).
- [Other Evennia-related repos on github](https://github.com/search?p=1&q=evennia)
----
@@ -69,11 +69,11 @@ Tutorial videos explaining installing Evennia, basic Python etc.
container](https://www.docker.com/) for quick install and deployment in just a few commands.
- [Evennia's docs in Chinese](http://www.evenniacn.com/) - A translated mirror of a slightly older
Evennia version. Announcement [here](https://groups.google.com/forum/#!topic/evennia/3AXS8ZTzJaA).
-- [Evennia for MUSHers](http://musoapbox.net/topic/1150/evennia-for-mushers) - An article describing
+- [Evennia for MUSHers](https://musoapbox.net/topic/1150/evennia-for-mushers) - An article describing
Evennia for those used to the MUSH way of doing things.
- *[Language Understanding for Text games using Deep reinforcement
learning](http://news.mit.edu/2015/learning-language-playing-computer-games-0924#_msocom_1)*
-([PDF](http://people.csail.mit.edu/karthikn/pdfs/mud-play15.pdf)) - MIT research paper using Evennia
+([PDF](https://people.csail.mit.edu/karthikn/pdfs/mud-play15.pdf)) - MIT research paper using Evennia
to train AIs.
### Other useful mud development resources
@@ -86,7 +86,7 @@ Python objects.
- [MUD Coder's Guild](https://mudcoders.com/) - A blog and [associated Slack
channel](https://slack.mudcoders.com/) with discussions on MUD development.
-- [MuSoapbox](http://www.musoapbox.net/) - Very active Mu* game community mainly focused on MUSH-
+- [MuSoapbox](https://www.musoapbox.net/) - Very active Mu* game community mainly focused on MUSH-
type gaming.
- [Imaginary Realities](http://journal.imaginary-realities.com/) - An e-magazine on game and MUD
design that has several articles about Evennia. There is also an [archive of older
@@ -107,16 +107,16 @@ Influential mailing list active 1996-2004. Advanced game design discussions.
- [Mud-dev wiki](http://mud-dev.wikidot.com/) - A (very) slowly growing resource on MUD creation.
- [Mud Client/Server Interaction](http://cryosphere.net/mud-protocol.html) - A page on classic MUD
telnet protocols.
-- [Mud Tech's fun/cool but ...](http://gc-taylor.com/blog/2013/01/08/mud-tech-funcool-dont-forget-
+- [Mud Tech's fun/cool but ...](https://gc-taylor.com/blog/2013/01/08/mud-tech-funcool-dont-forget-
ship-damned-thing/) - Greg Taylor gives good advice on mud design.
-- [Lost Library of MOO](http://www.hayseed.net/MOO/) - Archive of scientific articles on mudding (in
+- [Lost Library of MOO](https://www.hayseed.net/MOO/) - Archive of scientific articles on mudding (in
particular moo).
- [Nick Gammon's hints thread](http://www.gammon.com.au/forum/bbshowpost.php?bbsubject_id=5959) -
Contains a very useful list of things to think about when starting your new MUD.
- [Lost Garden](http://www.lostgarden.com/) - A game development blog with long and interesting
articles (not MUD-specific)
- [What Games Are](http://whatgamesare.com/) - A blog about general game design (not MUD-specific)
-- [The Alexandrian](http://thealexandrian.net/) - A blog about tabletop roleplaying and board games,
+- [The Alexandrian](https://thealexandrian.net/) - A blog about tabletop roleplaying and board games,
but with lots of general discussion about rule systems and game balance that could be applicable
also for MUDs.
- [Raph Koster's laws of game design](https://www.raphkoster.com/games/laws-of-online-world-
@@ -125,7 +125,7 @@ when designing a virtual multiplayer world (Raph is known for *Ultima Online* am
### Literature
-- Richard Bartle *Designing Virtual Worlds* ([amazon page](http://www.amazon.com/Designing-Virtual-
+- Richard Bartle *Designing Virtual Worlds* ([amazon page](https://www.amazon.com/Designing-Virtual-
Worlds-Richard-Bartle/dp/0131018167)) - Essential reading for the design of any persistent game
world, written by the co-creator of the original game *MUD*. Published in 2003 but it's still as
relevant now as when it came out. Covers everything you need to know and then some.
@@ -134,15 +134,15 @@ the imposing name this book is for the absolute Python/programming beginner. One
by gradually creating a small text game! It has been used by multiple users before moving on to
Evennia. *Update: This used to be free to read online, this is no longer the case.*
- David M. Beazley *Python Essential Reference (4th ed)* ([amazon
-page](http://www.amazon.com/Python-Essential-Reference-David-Beazley/dp/0672329786/)) - Our
+page](https://www.amazon.com/Python-Essential-Reference-David-Beazley/dp/0672329786/)) - Our
recommended book on Python; it not only efficiently summarizes the language but is also an excellent
reference to the standard library for more experienced Python coders.
- Luciano Ramalho, *Fluent Python* ([o'reilly
-page](http://shop.oreilly.com/product/0636920032519.do)) - This is an excellent book for experienced
+page](https://shop.oreilly.com/product/0636920032519.do)) - This is an excellent book for experienced
Python coders willing to take their code to the next level. A great read with a lot of useful info
also for veteran Pythonistas.
- Richard Cantillon *An Essay on Economic Theory* ([free
-pdf](http://mises.org/books/essay_on_economic_theory_cantillon.pdf)) - A very good English
+pdf](https://mises.org/books/essay_on_economic_theory_cantillon.pdf)) - A very good English
translation of *Essai sur la Nature du Commerce en Général*, one of the foundations of modern
economic theory. Written in 1730 but the translation is annotated and the essay is actually very
easy to follow also for a modern reader. Required reading if you think of implementing a sane game
@@ -150,26 +150,26 @@ economic system.
### Frameworks
-- [Django's homepage](http://www.djangoproject.com/)
- - [Documentation](http://docs.djangoproject.com/en)
- - [Code](http://code.djangoproject.com/)
-- [Twisted homepage](http://twistedmatrix.com/)
- - [Documentation](http://twistedmatrix.com/documents/current/core/howto/index.html)
- - [Code](http://twistedmatrix.com/trac/browser)
+- [Django's homepage](https://www.djangoproject.com/)
+ - [Documentation](https://docs.djangoproject.com/en)
+ - [Code](https://code.djangoproject.com/)
+- [Twisted homepage](https://twistedmatrix.com/)
+ - [Documentation](https://twistedmatrix.com/documents/current/core/howto/index.html)
+ - [Code](https://twistedmatrix.com/trac/browser)
### Tools
-- [GIT](http://git-scm.com/)
- - [Documentation](http://git-scm.com/documentation)
- - [Learn GIT in 15 minutes](http://try.github.io/levels/1/challenges/1) (interactive tutorial)
+- [GIT](https://git-scm.com/)
+ - [Documentation](https://git-scm.com/documentation)
+ - [Learn GIT in 15 minutes](https://try.github.io/levels/1/challenges/1) (interactive tutorial)
### Python Info
-- [Python Website](http://www.python.org/)
- - [Documentation](http://www.python.org/doc/)
- - [Tutorial](http://docs.python.org/tut/tut.html)
- - [Library Reference](http://docs.python.org/lib/lib.html)
- - [Language Reference](http://docs.python.org/ref/ref.html)
- - [Python tips and tricks](http://www.siafoo.net/article/52)
+- [Python Website](https://www.python.org/)
+ - [Documentation](https://www.python.org/doc/)
+ - [Tutorial](https://docs.python.org/tut/tut.html)
+ - [Library Reference](https://docs.python.org/lib/lib.html)
+ - [Language Reference](https://docs.python.org/ref/ref.html)
+ - [Python tips and tricks](https://www.siafoo.net/article/52)
- [Jetbrains Python academy](https://hyperskill.org/onboarding?track=python) - free online
-programming curriculum for different skill levels
\ No newline at end of file
+programming curriculum for different skill levels
diff --git a/docs/1.0-dev/_sources/Setup/Apache-Config.md.txt b/docs/1.0-dev/_sources/Setup/Apache-Config.md.txt
index 77a5218fcf..5cf052d344 100644
--- a/docs/1.0-dev/_sources/Setup/Apache-Config.md.txt
+++ b/docs/1.0-dev/_sources/Setup/Apache-Config.md.txt
@@ -59,7 +59,7 @@ You'll then want to reload or restart apache2 after changing the configurations.
With any luck, you'll be able to point your browser at your domain or subdomain that you set up in
your vhost and see the nifty default Evennia webpage. If not, read the hopefully informative error
message and work from there. Questions may be directed to our [Evennia Community
-site](http://evennia.com).
+site](https://evennia.com).
### A note on code reloading
diff --git a/docs/1.0-dev/_sources/Setup/Choosing-An-SQL-Server.md.txt b/docs/1.0-dev/_sources/Setup/Choosing-An-SQL-Server.md.txt
index 01b7929ca8..bbc8957789 100644
--- a/docs/1.0-dev/_sources/Setup/Choosing-An-SQL-Server.md.txt
+++ b/docs/1.0-dev/_sources/Setup/Choosing-An-SQL-Server.md.txt
@@ -7,10 +7,10 @@ This page gives an overview of the supported SQL databases as well as instructio
- PostgreSQL
- MySQL / MariaDB
-Since Evennia uses [Django](http://djangoproject.com), most of our notes are based off of what we
+Since Evennia uses [Django](https://djangoproject.com), most of our notes are based off of what we
know from the community and their documentation. While the information below may be useful, you can
always find the most up-to-date and "correct" information at Django's [Notes about supported
-Databases](http://docs.djangoproject.com/en/dev/ref/databases/#ref-databases) page.
+Databases](https://docs.djangoproject.com/en/dev/ref/databases/#ref-databases) page.
## SQLite3
@@ -338,5 +338,5 @@ database.
## Others
No testing has been performed with Oracle, but it is also supported through Django. There are
-community maintained drivers for [MS SQL](http://code.google.com/p/django-mssql/) and possibly a few
+community maintained drivers for [MS SQL](https://code.google.com/p/django-mssql/) and possibly a few
others. If you try other databases out, consider expanding this page with instructions.
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 1a9fc0ef61..a4dbfb5d50 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
@@ -71,22 +71,22 @@ new [documentation issue](github:issue) for it. Everyone's encouraged to report
.. _Evennia Webclient: ../Components/Webclient.html
.. _tintin++: http://tintin.sourceforge.net/
.. _tinyfugue: http://tinyfugue.sourceforge.net/
-.. _MUSHclient: http://mushclient.com/
+.. _MUSHclient: https://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/
+.. _Potato: https://www.potatomushclient.com/
+.. _Mudlet: https://www.mudlet.org/
.. _SimpleMU: https://archive.org/details/tucows_196173_SimpleMU_MU_Client
-.. _Atlantis: http://www.riverdark.net/atlantis/
+.. _Atlantis: https://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/
+.. _BlowTorch: https://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/
+.. _JamochaMUD: https://jamochamud.org/
.. _DuckClient: http://duckclient.com/
.. _KildClient: https://www.kildclient.org/
diff --git a/docs/1.0-dev/_sources/Setup/Evennia-Game-Index.md.txt b/docs/1.0-dev/_sources/Setup/Evennia-Game-Index.md.txt
index cd23553207..456c1f31c4 100644
--- a/docs/1.0-dev/_sources/Setup/Evennia-Game-Index.md.txt
+++ b/docs/1.0-dev/_sources/Setup/Evennia-Game-Index.md.txt
@@ -45,7 +45,7 @@ GAME_INDEX_LISTING = {
# optional
'long_description':
"Longer description that can use Markdown like *bold*, _italic_"
- "and [linkname](http://link.com). Use \n for line breaks."
+ "and [linkname](https://link.com). Use \n for line breaks."
'telnet_hostname': 'dummy.com',
'telnet_port': '1234',
'web_client_url': 'dummy.com/webclient',
@@ -68,4 +68,4 @@ If you don't specify neither `telnet_hostname + port` nor
`web_client_url`, the Game index will list your game as _Not yet public_.
Non-public games are moved to the bottom of the index since there is no way
for people to try them out. But it's a good way to show you are out there, even
-if you are not ready for players yet.
\ No newline at end of file
+if you are not ready for players yet.
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 a4cc86eb4f..8281ff0838 100644
--- a/docs/1.0-dev/_sources/Setup/Extended-Installation.md.txt
+++ b/docs/1.0-dev/_sources/Setup/Extended-Installation.md.txt
@@ -48,21 +48,21 @@ everything in the following sections.
- Windows (Vista, Win7, Win8, Win10)
- Mac OSX (>=10.5 recommended)
-- [Python](http://www.python.org) (v3.7, 3.8 and 3.9 are tested)
- - [virtualenv](http://pypi.python.org/pypi/virtualenv) for making isolated
+- [Python](https://www.python.org) (v3.7, 3.8 and 3.9 are tested)
+ - [virtualenv](https://pypi.python.org/pypi/virtualenv) for making isolated
Python environments. Installed with `pip install virtualenv`.
-- [GIT](http://git-scm.com/) - version control software for getting and
+- [GIT](https://git-scm.com/) - version control software for getting and
updating Evennia itself - Mac users can use the
-[git-osx-installer](http://code.google.com/p/git-osx-installer/) or the
-[MacPorts version](http://git-scm.com/book/en/Getting-Started-Installing-Git#Installing-on-Mac).
-- [Twisted](http://twistedmatrix.com) (v19.0+)
- - [ZopeInterface](http://www.zope.org/Products/ZopeInterface) (v3.0+) - usually included in
+[git-osx-installer](https://code.google.com/p/git-osx-installer/) or the
+[MacPorts version](https://git-scm.com/book/en/Getting-Started-Installing-Git#Installing-on-Mac).
+- [Twisted](https://twistedmatrix.com) (v19.0+)
+ - [ZopeInterface](https://www.zope.org/Products/ZopeInterface) (v3.0+) - usually included in
Twisted packages
- Linux/Mac users may need the `gcc` and `python-dev` packages or equivalent.
- Windows users need [MS Visual C++](https://aka.ms/vs/16/release/vs_buildtools.exe) and *maybe*
[pypiwin32](https://pypi.python.org/pypi/pypiwin32).
-- [Django](http://www.djangoproject.com) (v2.2.x), be warned that latest dev
+- [Django](https://www.djangoproject.com) (v2.2.x), be warned that latest dev
version is usually untested with Evennia)
## Linux Install
@@ -182,17 +182,17 @@ created. Check out [where to go next](./Getting-Started#where-to-go-next).
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)
+terminal](https://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).
* 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
+([This](https://docs.python-guide.org/en/latest/starting/install/osx/) discusses
how you may upgrade it). Remember that you need Python3.7, not Python2.7!
* GIT can be obtained with
-[git-osx-installer](http://code.google.com/p/git-osx-installer/) or via
+[git-osx-installer](https://code.google.com/p/git-osx-installer/) or via
MacPorts [as described
-here](http://git-scm.com/book/en/Getting-Started-Installing-Git#Installing-on-Mac).
+here](https://git-scm.com/book/en/Getting-Started-Installing-Git#Installing-on-Mac).
* If you run into issues with installing `Twisted` later you may need to
install gcc and the Python headers.
@@ -302,7 +302,7 @@ If you run into any issues during the installation, please check out
The Evennia server itself is a command line program. In the Windows launch
menu, start *All Programs -> Accessories -> command prompt* and you will get
the Windows command line interface. Here is [one of many tutorials on using the Windows command
-line](http://www.bleepingcomputer.com/tutorials/windows-command-prompt-introduction/)
+line](https://www.bleepingcomputer.com/tutorials/windows-command-prompt-introduction/)
if you are unfamiliar with it.
* Install Python [from the Python homepage](https://www.python.org/downloads/windows/). You will
@@ -314,7 +314,7 @@ to check-mark *all* install options, especially the one about making Python
available on the path (you may have to scroll to see it)**. This allows you to
just write `python` in any console without first finding where the `python`
program actually sits on your hard drive.
-* You need to also get [GIT](http://git-scm.com/downloads) and install it. You
+* You need to also get [GIT](https://git-scm.com/downloads) and install it. You
can use the default install options but when you get asked to "Adjust your PATH
environment", you should select the second option "Use Git from the Windows
Command Prompt", which gives you more freedom as to where you can use the
@@ -472,7 +472,7 @@ combat systems. You can find the [growing list of contribs
here](https://github.com/evennia/evennia/blob/master/evennia/contrib/README.md).
If you have any questions, you can always ask in [the developer
-chat](http://webchat.freenode.net/?channels=evennia&uio=MT1mYWxzZSY5PXRydWUmMTE9MTk1JjEyPXRydWUbb)
+chat](https://webchat.freenode.net/?channels=evennia&uio=MT1mYWxzZSY5PXRydWUmMTE9MTk1JjEyPXRydWUbb)
`#evennia` on `irc.freenode.net` or by posting to the [Evennia
forums](https://groups.google.com/forum/#%21forum/evennia). You can also join the [Discord
Server](https://discord.gg/NecFePw).
diff --git a/docs/1.0-dev/_sources/Setup/Grapevine.md.txt b/docs/1.0-dev/_sources/Setup/Grapevine.md.txt
index 6b6b50aa57..b27b735cd3 100644
--- a/docs/1.0-dev/_sources/Setup/Grapevine.md.txt
+++ b/docs/1.0-dev/_sources/Setup/Grapevine.md.txt
@@ -1,7 +1,7 @@
# Grapevine
-[Grapevine](http://grapevine.haus) is a new chat network for `MU*`*** games. By
+[Grapevine](https://grapevine.haus) is a new chat network for `MU*`*** games. By
connecting an in-game channel to the grapevine network, players on your game
can chat with players in other games, also non-Evennia ones.
@@ -68,4 +68,4 @@ Write something in the Evennia channel *gw* and check so a message appears in
the Grapevine chat. Write a reply in the chat and the grapevine bot should echo
it to your channel in-game.
-Your Evennia gamers can now chat with users on external Grapevine channels!
\ No newline at end of file
+Your Evennia gamers can now chat with users on external Grapevine channels!
diff --git a/docs/1.0-dev/_sources/Setup/How-to-connect-Evennia-to-Twitter.md.txt b/docs/1.0-dev/_sources/Setup/How-to-connect-Evennia-to-Twitter.md.txt
index 7534013417..0496b686f1 100644
--- a/docs/1.0-dev/_sources/Setup/How-to-connect-Evennia-to-Twitter.md.txt
+++ b/docs/1.0-dev/_sources/Setup/How-to-connect-Evennia-to-Twitter.md.txt
@@ -1,7 +1,7 @@
# How to connect Evennia to Twitter
-[Twitter](http://en.wikipedia.org/wiki/twitter) is an online social networking service that enables
+[Twitter](https://en.wikipedia.org/wiki/twitter) is an online social networking service that enables
users to send and read short 280-character messages called "tweets". Following is a short tutorial
explaining how to enable users to send tweets from inside Evennia.
diff --git a/docs/1.0-dev/_sources/Setup/IRC.md.txt b/docs/1.0-dev/_sources/Setup/IRC.md.txt
index b152026f49..a3d2a23e07 100644
--- a/docs/1.0-dev/_sources/Setup/IRC.md.txt
+++ b/docs/1.0-dev/_sources/Setup/IRC.md.txt
@@ -5,12 +5,12 @@ _Disambiguation: This page is related to using IRC inside an Evennia game. To jo
Evennia IRC chat, connect to irc.freenode.net and join #evennia. Alternatively, you can [join our
Discord](https://discord.gg/NecFePw), which is mirrored to IRC._
-[IRC (Internet Relay Chat)](http://en.wikipedia.org/wiki/Internet_Relay_Chat) is a long standing
+[IRC (Internet Relay Chat)](https://en.wikipedia.org/wiki/Internet_Relay_Chat) is a long standing
chat protocol used by many open-source projects for communicating in real time. By connecting one of
Evennia's [Channels](../Components/Communications) to an IRC channel you can communicate also with people not on
an mud themselves. You can also use IRC if you are only running your Evennia MUD locally on your
computer (your game doesn't need to be open to the public)! All you need is an internet connection.
-For IRC operation you also need [twisted.words](http://twistedmatrix.com/trac/wiki/TwistedWords).
+For IRC operation you also need [twisted.words](https://twistedmatrix.com/trac/wiki/TwistedWords).
This is available simply as a package *python-twisted-words* in many Linux distros, or directly
downloadable from the link.
@@ -40,7 +40,7 @@ if you like), but for testing, let's set up a new channel `irc`.
You will automatically join the new channel.
Next we will create a connection to an external IRC network and channel. There are many, many IRC
-nets. [Here is a list](http://www.irchelp.org/irchelp/networks/popular.html) of some of the biggest
+nets. [Here is a list](https://www.irchelp.org/networks/popular.html) of some of the biggest
ones, the one you choose is not really very important unless you want to connect to a particular
channel (also make sure that the network allows for "bots" to connect).
@@ -87,4 +87,4 @@ name of the IRC channel you used (#evennia here).
[irc] Anna@#myevennia-test: Hello!
-Your Evennia gamers can now chat with users on external IRC channels!
\ No newline at end of file
+Your Evennia gamers can now chat with users on external IRC channels!
diff --git a/docs/1.0-dev/_sources/Setup/Online-Setup.md.txt b/docs/1.0-dev/_sources/Setup/Online-Setup.md.txt
index 0a0435991f..e9aaabe881 100644
--- a/docs/1.0-dev/_sources/Setup/Online-Setup.md.txt
+++ b/docs/1.0-dev/_sources/Setup/Online-Setup.md.txt
@@ -32,7 +32,7 @@ terminal.
> Note: If you need to close the log-view, use `Ctrl-C`. Use just `evennia --log` on its own to
start tailing the logs again.
- Make sure you can connect with your web browser to `http://localhost:4001` or, alternatively,
-`http:127.0.0.1:4001` which is the same thing. You should get your Evennia web site and be able to
+`http://127.0.0.1:4001` which is the same thing. You should get your Evennia web site and be able to
play the game in the web client. Also check so that you can connect with a mud client to host
`localhost`, port `4000` or host `127.0.0.1`, port `4000`.
- [Google for "my ip"](https://www.google.se/search?q=my+ip) or use any online service to figure out
@@ -294,7 +294,7 @@ your game. What you need is to alias it to a more sensible domain name - an alia
around also when the IP changes.
1. To set up a domain name alias, we recommend starting with a free domain name from
-[FreeDNS](http://freedns.afraid.org/). Once you register there (it's free) you have access to tens
+[FreeDNS](https://freedns.afraid.org/). Once you register there (it's free) you have access to tens
of thousands domain names that people have "donated" to allow you to use for your own sub domain.
For example, `strangled.net` is one of those available domains. So tying our IP address to
`strangled.net` using the subdomain `evennia` would mean that one could henceforth direct people to
@@ -305,7 +305,7 @@ and tell FreeDNS that. There are many alternatives to be found from FreeDNS:s ho
works on multiple platforms is [inadyn](http://www.inatech.eu/inadyn/). Get it from their page or,
in Linux, through something like `apt-get install inadyn`.
1. Next, you login to your account on FreeDNS and go to the
-[Dynamic](http://freedns.afraid.org/dynamic/) page. You should have a list of your subdomains. Click
+[Dynamic](https://freedns.afraid.org/dynamic/) page. You should have a list of your subdomains. Click
the `Direct URL` link and you'll get a page with a text message. Ignore that and look at the URL of
the page. It should be ending in a lot of random letters. Everything after the question mark is your
unique "hash". Copy this string.
@@ -405,10 +405,10 @@ servers with this option as they don't have a lot of support.
[Linode][11] | Cloud | $5/month / on-demand | Multiple regions. Smallest option provides 1GB RAM
*Please help us expand this list.*
-[1]: http:silvren.com
+[1]: https://silvren.com
[2](https://www.digitalocean.com/pricing)
[3](https://aws.amazon.com/pricing/)
-[4](http://www.genesismuds.com/)
+[4](https://www.genesismuds.com/)
[5](https://www.host1plus.com/)
[6](https://www.scaleway.com/)
[7](https://lowendbox.com/)
diff --git a/docs/1.0-dev/_sources/Setup/RSS.md.txt b/docs/1.0-dev/_sources/Setup/RSS.md.txt
index a1cd707581..8857d7db3f 100644
--- a/docs/1.0-dev/_sources/Setup/RSS.md.txt
+++ b/docs/1.0-dev/_sources/Setup/RSS.md.txt
@@ -1,7 +1,7 @@
# RSS
-[RSS](http://en.wikipedia.org/wiki/RSS) is a format for easily tracking updates on websites. The
+[RSS](https://en.wikipedia.org/wiki/RSS) is a format for easily tracking updates on websites. The
principle is simple - whenever a site is updated, a small text file is updated. An RSS reader can
then regularly go online, check this file for updates and let the user know what's new.
@@ -10,11 +10,11 @@ the feed will be conveniently echoed to the channel. There are many potential us
example the MUD might use a separate website to host its forums. Through RSS, the players can then
be notified when new posts are made. Another example is to let everyone know you updated your dev
blog. Admins might also want to track the latest Evennia updates through our own RSS feed
-[here](http://code.google.com/feeds/p/evennia/updates/basic).
+[here](https://code.google.com/feeds/p/evennia/updates/basic).
## Configuring RSS
-To use RSS, you first need to install the [feedparser](http://code.google.com/p/feedparser/) python
+To use RSS, you first need to install the [feedparser](https://code.google.com/p/feedparser/) python
module.
pip install feedparser
@@ -44,4 +44,4 @@ switch:
@rss2chan/delete rss = https://github.com/evennia/evennia/commits/master.atom
You can connect any number of RSS feeds to a channel this way. You could also connect them to the
-same channels as [IRC](./IRC) to have the feed echo to external chat channels as well.
\ No newline at end of file
+same channels as [IRC](./IRC) to have the feed echo to external chat channels as well.
diff --git a/docs/1.0-dev/_sources/index.md.txt b/docs/1.0-dev/_sources/index.md.txt
index c1f14b6847..1fe5d806f9 100644
--- a/docs/1.0-dev/_sources/index.md.txt
+++ b/docs/1.0-dev/_sources/index.md.txt
@@ -13,7 +13,7 @@
# Evennia Documentation
-This is the manual of [Evennia](http://www.evennia.com), the open source Python
+This is the manual of [Evennia](https://www.evennia.com), the open source Python
`MU*` creation system.
- [Evennia Introduction](./Evennia-Introduction)
diff --git a/docs/1.0-dev/api/evennia-api.html b/docs/1.0-dev/api/evennia-api.html
index 93418a4758..8f463bc59e 100644
--- a/docs/1.0-dev/api/evennia-api.html
+++ b/docs/1.0-dev/api/evennia-api.html
@@ -477,11 +477,11 @@
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/api/evennia.accounts.accounts.html b/docs/1.0-dev/api/evennia.accounts.accounts.html
index 275a93ad36..f4dd801e28 100644
--- a/docs/1.0-dev/api/evennia.accounts.accounts.html
+++ b/docs/1.0-dev/api/evennia.accounts.accounts.html
@@ -1156,11 +1156,11 @@ overriding the call (unused by default).
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/api/evennia.accounts.bots.html b/docs/1.0-dev/api/evennia.accounts.bots.html
index 010f0b54d3..7a537f76ef 100644
--- a/docs/1.0-dev/api/evennia.accounts.bots.html
+++ b/docs/1.0-dev/api/evennia.accounts.bots.html
@@ -483,11 +483,11 @@ triggered by the bot_data_in Inputfunc.
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/api/evennia.accounts.html b/docs/1.0-dev/api/evennia.accounts.html
index 04f701ce25..5a97f8f315 100644
--- a/docs/1.0-dev/api/evennia.accounts.html
+++ b/docs/1.0-dev/api/evennia.accounts.html
@@ -84,11 +84,11 @@ more Objects depending on settings. An Account has no in-game existence.
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/api/evennia.accounts.manager.html b/docs/1.0-dev/api/evennia.accounts.manager.html
index b9f663d158..a6ea530f9e 100644
--- a/docs/1.0-dev/api/evennia.accounts.manager.html
+++ b/docs/1.0-dev/api/evennia.accounts.manager.html
@@ -80,11 +80,11 @@
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/api/evennia.accounts.models.html b/docs/1.0-dev/api/evennia.accounts.models.html
index d7e2426a1b..eb45e9f62f 100644
--- a/docs/1.0-dev/api/evennia.accounts.models.html
+++ b/docs/1.0-dev/api/evennia.accounts.models.html
@@ -401,11 +401,11 @@ class built by **create_forward_many_to_many_manager()** define
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/api/evennia.commands.cmdhandler.html b/docs/1.0-dev/api/evennia.commands.cmdhandler.html
index 79f2eef3ae..c490d82fde 100644
--- a/docs/1.0-dev/api/evennia.commands.cmdhandler.html
+++ b/docs/1.0-dev/api/evennia.commands.cmdhandler.html
@@ -159,11 +159,11 @@ default Evennia.
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/api/evennia.commands.cmdparser.html b/docs/1.0-dev/api/evennia.commands.cmdparser.html
index e64af680e2..c6c4bff41a 100644
--- a/docs/1.0-dev/api/evennia.commands.cmdparser.html
+++ b/docs/1.0-dev/api/evennia.commands.cmdparser.html
@@ -195,11 +195,11 @@ the remaining arguments, and the matched cmdobject from the cmdset.
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/api/evennia.commands.cmdset.html b/docs/1.0-dev/api/evennia.commands.cmdset.html
index 2961ff2006..c7eb4328e0 100644
--- a/docs/1.0-dev/api/evennia.commands.cmdset.html
+++ b/docs/1.0-dev/api/evennia.commands.cmdset.html
@@ -412,11 +412,11 @@ self.add().
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/api/evennia.commands.cmdsethandler.html b/docs/1.0-dev/api/evennia.commands.cmdsethandler.html
index c2b7cf0b43..a6e3b7ac89 100644
--- a/docs/1.0-dev/api/evennia.commands.cmdsethandler.html
+++ b/docs/1.0-dev/api/evennia.commands.cmdsethandler.html
@@ -380,11 +380,11 @@ handled automatically by @reload).
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/api/evennia.commands.command.html b/docs/1.0-dev/api/evennia.commands.command.html
index 1090a498b3..e2b87c94c4 100644
--- a/docs/1.0-dev/api/evennia.commands.command.html
+++ b/docs/1.0-dev/api/evennia.commands.command.html
@@ -372,6 +372,44 @@ commands the caller can use.
+
+-
+
web_get_detail_url()[source]¶
+Returns the URI path for a View that allows users to view details for
+this object.
+ex. Oscar (Character) = ‘/characters/oscar/1/’
+For this to work, the developer must have defined a named view somewhere
+in urls.py that follows the format ‘modelname-action’, so in this case
+a named view of ‘character-detail’ would be referenced by this method.
+ex.
+url(r'characters/(?P<slug>[\w\d\-]+)/(?P<pk>[0-9]+)/$',
+ CharDetailView.as_view(), name='character-detail')
+
+
+If no View has been created and defined in urls.py, returns an
+HTML anchor.
+This method is naive and simply returns a path. Securing access to
+the actual view and limiting who can view this object is the developer’s
+responsibility.
+
+- Returns
+path (str) – URI path to object detail page, if defined.
+
+
+
+
+
+-
+
web_get_admin_url()[source]¶
+Returns the URI path for the Django Admin page for this object.
+ex. Account#1 = ‘/admin/accounts/accountdb/1/change/’
+
+- Returns
+path (str) – URI path to Django Admin page for object.
+
+
+
+
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
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 e5e39f21f7..365e5e867c 100644
--- a/docs/1.0-dev/api/evennia.commands.default.account.html
+++ b/docs/1.0-dev/api/evennia.commands.default.account.html
@@ -71,7 +71,7 @@ method. Otherwise all text will be returned to all connected sessions.
@@ -102,7 +102,7 @@ method. Otherwise all text will be returned to all connected sessions.
-
-
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 '}¶
+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 '}¶
@@ -848,11 +848,11 @@ to all the variables defined therein.
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
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 789a1fb57e..4ea766009d 100644
--- a/docs/1.0-dev/api/evennia.commands.default.admin.html
+++ b/docs/1.0-dev/api/evennia.commands.default.admin.html
@@ -255,7 +255,7 @@ to accounts respectively.
@@ -286,7 +286,7 @@ to accounts respectively.
-
-
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 '}¶
+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 '}¶
@@ -533,11 +533,11 @@ including all currently unlogged in.
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/api/evennia.commands.default.batchprocess.html b/docs/1.0-dev/api/evennia.commands.default.batchprocess.html
index 75251220fa..05257a8191 100644
--- a/docs/1.0-dev/api/evennia.commands.default.batchprocess.html
+++ b/docs/1.0-dev/api/evennia.commands.default.batchprocess.html
@@ -76,7 +76,7 @@ skipping, reloading etc.
@@ -107,7 +107,7 @@ skipping, reloading etc.
-
-
search_index_entry = {'aliases': 'batchcmd batchcommand', 'category': 'building', 'key': 'batchcommands', 'tags': '', 'text': '\n build from batch-command file\n\n Usage:\n batchcommands[/interactive] <python.path.to.file>\n\n Switch:\n interactive - this mode will offer more control when\n executing the batch file, like stepping,\n skipping, reloading etc.\n\n Runs batches of commands from a batch-cmd text file (*.ev).\n\n '}¶
+search_index_entry = {'aliases': 'batchcommand batchcmd', 'category': 'building', 'key': 'batchcommands', 'tags': '', 'text': '\n build from batch-command file\n\n Usage:\n batchcommands[/interactive] <python.path.to.file>\n\n Switch:\n interactive - this mode will offer more control when\n executing the batch file, like stepping,\n skipping, reloading etc.\n\n Runs batches of commands from a batch-cmd text file (*.ev).\n\n '}¶
@@ -208,11 +208,11 @@ object copies behind when testing out the script.
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
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 f00d2bb145..de5f38942b 100644
--- a/docs/1.0-dev/api/evennia.commands.default.building.html
+++ b/docs/1.0-dev/api/evennia.commands.default.building.html
@@ -530,7 +530,7 @@ You can specify the /force switch to bypass this confirmation.
@@ -571,7 +571,7 @@ You can specify the /force switch to bypass this confirmation.
-
-
search_index_entry = {'aliases': 'delete del', 'category': 'building', 'key': 'destroy', 'tags': '', 'text': '\n permanently delete objects\n\n Usage:\n destroy[/switches] [obj, obj2, obj3, [dbref-dbref], ...]\n\n Switches:\n override - The destroy command will usually avoid accidentally\n destroying account objects. This switch overrides this safety.\n force - destroy without confirmation.\n Examples:\n destroy house, roof, door, 44-78\n destroy 5-10, flower, 45\n destroy/force north\n\n Destroys one or many objects. If dbrefs are used, a range to delete can be\n given, e.g. 4-10. Also the end points will be deleted. This command\n displays a confirmation before destroying, to make sure of your choice.\n You can specify the /force switch to bypass this confirmation.\n '}¶
+search_index_entry = {'aliases': 'del delete', 'category': 'building', 'key': 'destroy', 'tags': '', 'text': '\n permanently delete objects\n\n Usage:\n destroy[/switches] [obj, obj2, obj3, [dbref-dbref], ...]\n\n Switches:\n override - The destroy command will usually avoid accidentally\n destroying account objects. This switch overrides this safety.\n force - destroy without confirmation.\n Examples:\n destroy house, roof, door, 44-78\n destroy 5-10, flower, 45\n destroy/force north\n\n Destroys one or many objects. If dbrefs are used, a range to delete can be\n given, e.g. 4-10. Also the end points will be deleted. This command\n displays a confirmation before destroying, to make sure of your choice.\n You can specify the /force switch to bypass this confirmation.\n '}¶
@@ -1276,7 +1276,7 @@ server settings.
@@ -1307,7 +1307,7 @@ server settings.
-
-
search_index_entry = {'aliases': 'swap parent 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': 'update parent type swap', '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 "}¶
@@ -1460,7 +1460,7 @@ If object is not specified, the current location is examined.
@@ -1557,7 +1557,7 @@ non-persistent data stored on object
-
-
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 '}¶
+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 '}¶
@@ -1988,11 +1988,11 @@ displays a list of available prototypes.
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/api/evennia.commands.default.cmdset_account.html b/docs/1.0-dev/api/evennia.commands.default.cmdset_account.html
index de15933a5e..e52c4eb130 100644
--- a/docs/1.0-dev/api/evennia.commands.default.cmdset_account.html
+++ b/docs/1.0-dev/api/evennia.commands.default.cmdset_account.html
@@ -107,11 +107,11 @@ command method rather than caller.msg().
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/api/evennia.commands.default.cmdset_character.html b/docs/1.0-dev/api/evennia.commands.default.cmdset_character.html
index b7a6990c80..dec6230181 100644
--- a/docs/1.0-dev/api/evennia.commands.default.cmdset_character.html
+++ b/docs/1.0-dev/api/evennia.commands.default.cmdset_character.html
@@ -105,11 +105,11 @@ Account cmdset. Account commands remain available also to Characters.
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/api/evennia.commands.default.cmdset_session.html b/docs/1.0-dev/api/evennia.commands.default.cmdset_session.html
index cc63971604..61e67cdfda 100644
--- a/docs/1.0-dev/api/evennia.commands.default.cmdset_session.html
+++ b/docs/1.0-dev/api/evennia.commands.default.cmdset_session.html
@@ -102,11 +102,11 @@
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/api/evennia.commands.default.cmdset_unloggedin.html b/docs/1.0-dev/api/evennia.commands.default.cmdset_unloggedin.html
index 25977fb1e8..4a3369dbdf 100644
--- a/docs/1.0-dev/api/evennia.commands.default.cmdset_unloggedin.html
+++ b/docs/1.0-dev/api/evennia.commands.default.cmdset_unloggedin.html
@@ -104,11 +104,11 @@ of the state instance in this module.
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
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 8330e6f4de..623f3a0c64 100644
--- a/docs/1.0-dev/api/evennia.commands.default.comms.html
+++ b/docs/1.0-dev/api/evennia.commands.default.comms.html
@@ -745,7 +745,7 @@ aliases to an already joined channel.
@@ -776,7 +776,7 @@ aliases to an already joined channel.
-
-
search_index_entry = {'aliases': 'chanalias aliaschan', 'category': 'comms', 'key': 'addcom', 'tags': '', 'text': '\n Add a channel alias and/or subscribe to a channel\n\n Usage:\n addcom [alias=] <channel>\n\n Joins a given channel. If alias is given, this will allow you to\n refer to the channel by this alias rather than the full channel\n name. Subsequent calls of this command can be used to add multiple\n aliases to an already joined channel.\n '}¶
+search_index_entry = {'aliases': 'aliaschan chanalias', 'category': 'comms', 'key': 'addcom', 'tags': '', 'text': '\n Add a channel alias and/or subscribe to a channel\n\n Usage:\n addcom [alias=] <channel>\n\n Joins a given channel. If alias is given, this will allow you to\n refer to the channel by this alias rather than the full channel\n name. Subsequent calls of this command can be used to add multiple\n aliases to an already joined channel.\n '}¶
@@ -802,7 +802,7 @@ for that channel.
@@ -833,7 +833,7 @@ for that channel.
-
-
search_index_entry = {'aliases': 'delaliaschan delchanalias', 'category': 'comms', 'key': 'delcom', 'tags': '', 'text': "\n remove a channel alias and/or unsubscribe from channel\n\n Usage:\n delcom <alias or channel>\n delcom/all <channel>\n\n If the full channel name is given, unsubscribe from the\n channel. If an alias is given, remove the alias but don't\n unsubscribe. If the 'all' switch is used, remove all aliases\n for that channel.\n "}¶
+search_index_entry = {'aliases': 'delchanalias delaliaschan', 'category': 'comms', 'key': 'delcom', 'tags': '', 'text': "\n remove a channel alias and/or unsubscribe from channel\n\n Usage:\n delcom <alias or channel>\n delcom/all <channel>\n\n If the full channel name is given, unsubscribe from the\n channel. If an alias is given, remove the alias but don't\n unsubscribe. If the 'all' switch is used, remove all aliases\n for that channel.\n "}¶
@@ -1613,11 +1613,11 @@ must be added to game settings.
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
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 f3edb32425..13c423b453 100644
--- a/docs/1.0-dev/api/evennia.commands.default.general.html
+++ b/docs/1.0-dev/api/evennia.commands.default.general.html
@@ -113,7 +113,7 @@ look *<account&g
@@ -144,7 +144,7 @@ look *<account&g
-
-
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 '}¶
+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 '}¶
@@ -206,7 +206,7 @@ for everyone to use, you need build privileges and the alias command.
@@ -238,7 +238,7 @@ for everyone to use, you need build privileges and the alias command.
-
-
search_index_entry = {'aliases': 'nickname nicks', 'category': 'general', 'key': 'nick', 'tags': '', 'text': '\n define a personal alias/nick by defining a string to\n match and replace it with another on the fly\n\n Usage:\n nick[/switches] <string> [= [replacement_string]]\n nick[/switches] <template> = <replacement_template>\n nick/delete <string> or number\n nicks\n\n Switches:\n inputline - replace on the inputline (default)\n object - replace on object-lookup\n account - replace on account-lookup\n list - show all defined aliases (also "nicks" works)\n delete - remove nick by index in /list\n clearall - clear all nicks\n\n Examples:\n nick hi = say Hello, I\'m Sarah!\n nick/object tom = the tall man\n nick build $1 $2 = create/drop $1;$2\n nick tell $1 $2=page $1=$2\n nick tm?$1=page tallman=$1\n nick tm\\=$1=page tallman=$1\n\n A \'nick\' is a personal string replacement. Use $1, $2, ... to catch arguments.\n Put the last $-marker without an ending space to catch all remaining text. You\n can also use unix-glob matching for the left-hand side <string>:\n\n * - matches everything\n ? - matches 0 or 1 single characters\n [abcd] - matches these chars in any order\n [!abcd] - matches everything not among these chars\n \\= - escape literal \'=\' you want in your <string>\n\n Note that no objects are actually renamed or changed by this command - your nicks\n are only available to you. If you want to permanently add keywords to an object\n for everyone to use, you need build privileges and the alias command.\n\n '}¶
+search_index_entry = {'aliases': 'nicks nickname', 'category': 'general', 'key': 'nick', 'tags': '', 'text': '\n define a personal alias/nick by defining a string to\n match and replace it with another on the fly\n\n Usage:\n nick[/switches] <string> [= [replacement_string]]\n nick[/switches] <template> = <replacement_template>\n nick/delete <string> or number\n nicks\n\n Switches:\n inputline - replace on the inputline (default)\n object - replace on object-lookup\n account - replace on account-lookup\n list - show all defined aliases (also "nicks" works)\n delete - remove nick by index in /list\n clearall - clear all nicks\n\n Examples:\n nick hi = say Hello, I\'m Sarah!\n nick/object tom = the tall man\n nick build $1 $2 = create/drop $1;$2\n nick tell $1 $2=page $1=$2\n nick tm?$1=page tallman=$1\n nick tm\\=$1=page tallman=$1\n\n A \'nick\' is a personal string replacement. Use $1, $2, ... to catch arguments.\n Put the last $-marker without an ending space to catch all remaining text. You\n can also use unix-glob matching for the left-hand side <string>:\n\n * - matches everything\n ? - matches 0 or 1 single characters\n [abcd] - matches these chars in any order\n [!abcd] - matches everything not among these chars\n \\= - escape literal \'=\' you want in your <string>\n\n Note that no objects are actually renamed or changed by this command - your nicks\n are only available to you. If you want to permanently add keywords to an object\n for everyone to use, you need build privileges and the alias command.\n\n '}¶
@@ -642,7 +642,7 @@ automatically begin with your name.
@@ -678,7 +678,7 @@ space.
-
-
search_index_entry = {'aliases': 'emote :', 'category': 'general', 'key': 'pose', 'tags': '', 'text': "\n strike a pose\n\n Usage:\n pose <pose text>\n pose's <pose text>\n\n Example:\n pose is standing by the wall, smiling.\n -> others will see:\n Tom is standing by the wall, smiling.\n\n Describe an action being taken. The pose text will\n automatically begin with your name.\n "}¶
+search_index_entry = {'aliases': ': emote', 'category': 'general', 'key': 'pose', 'tags': '', 'text': "\n strike a pose\n\n Usage:\n pose <pose text>\n pose's <pose text>\n\n Example:\n pose is standing by the wall, smiling.\n -> others will see:\n Tom is standing by the wall, smiling.\n\n Describe an action being taken. The pose text will\n automatically begin with your name.\n "}¶
@@ -770,11 +770,11 @@ which permission groups you are a member of.
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/api/evennia.commands.default.help.html b/docs/1.0-dev/api/evennia.commands.default.help.html
index cd51d57179..3a3428a220 100644
--- a/docs/1.0-dev/api/evennia.commands.default.help.html
+++ b/docs/1.0-dev/api/evennia.commands.default.help.html
@@ -232,7 +232,8 @@ help system.
Notes
-By default, the ‘view’ lock will be checked, and if no such lock is defined, the ‘read’
+
The .auto_help propery is checked for commands. For all help entries,
+the ‘view’ lock will be checked, and if no such lock is defined, the ‘read’
lock will be used. If neither lock is defined, the help entry is assumed to be
accessible to all.
@@ -456,11 +457,11 @@ the user will be able to enter a partial match to access it.
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/api/evennia.commands.default.html b/docs/1.0-dev/api/evennia.commands.default.html
index 8c4c7fedc2..e873b9eee7 100644
--- a/docs/1.0-dev/api/evennia.commands.default.html
+++ b/docs/1.0-dev/api/evennia.commands.default.html
@@ -94,11 +94,11 @@
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/api/evennia.commands.default.muxcommand.html b/docs/1.0-dev/api/evennia.commands.default.muxcommand.html
index 22bd82671c..211340b38e 100644
--- a/docs/1.0-dev/api/evennia.commands.default.muxcommand.html
+++ b/docs/1.0-dev/api/evennia.commands.default.muxcommand.html
@@ -270,11 +270,11 @@ character is actually attached to this Account and Session.
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/api/evennia.commands.default.syscommands.html b/docs/1.0-dev/api/evennia.commands.default.syscommands.html
index fdadfa712f..86c8262421 100644
--- a/docs/1.0-dev/api/evennia.commands.default.syscommands.html
+++ b/docs/1.0-dev/api/evennia.commands.default.syscommands.html
@@ -226,11 +226,11 @@ the raw_cmdname is the cmdname unmodified by eventual prefix-st
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
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 8ce43b3e2c..a1383f6ad5 100644
--- a/docs/1.0-dev/api/evennia.commands.default.system.html
+++ b/docs/1.0-dev/api/evennia.commands.default.system.html
@@ -386,7 +386,7 @@ given, <nr> defaults to 10.
-
-
aliases = ['listobjects', 'listobjs', 'db', 'stats']¶
+aliases = ['listobjs', 'stats', 'listobjects', 'db']¶
@@ -412,7 +412,7 @@ given, <nr> defaults to 10.
-
-
search_index_entry = {'aliases': 'listobjects listobjs db stats', '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': 'listobjs stats listobjects db', '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 '}¶
@@ -687,7 +687,7 @@ See |luhttps://ww
@@ -733,7 +733,7 @@ to all the variables defined therein.
-
-
search_index_entry = {'aliases': 'delays task', 'category': 'system', 'key': 'tasks', 'tags': '', 'text': "\n Display or terminate active tasks (delays).\n\n Usage:\n tasks[/switch] [task_id or function_name]\n\n Switches:\n pause - Pause the callback of a task.\n unpause - Process all callbacks made since pause() was called.\n do_task - Execute the task (call its callback).\n call - Call the callback of this task.\n remove - Remove a task without executing it.\n cancel - Stop a task from automatically executing.\n\n Notes:\n A task is a single use method of delaying the call of a function. Calls are created\n in code, using `evennia.utils.delay`.\n See |luhttps://www.evennia.com/docs/latest/Command-Duration.html|ltthe docs|le for help.\n\n By default, tasks that are canceled and never called are cleaned up after one minute.\n\n Examples:\n - `tasks/cancel move_callback` - Cancels all movement delays from the slow_exit contrib.\n In this example slow exits creates it's tasks with\n `utils.delay(move_delay, move_callback)`\n - `tasks/cancel 2` - Cancel task id 2.\n\n "}¶
+search_index_entry = {'aliases': 'task delays', 'category': 'system', 'key': 'tasks', 'tags': '', 'text': "\n Display or terminate active tasks (delays).\n\n Usage:\n tasks[/switch] [task_id or function_name]\n\n Switches:\n pause - Pause the callback of a task.\n unpause - Process all callbacks made since pause() was called.\n do_task - Execute the task (call its callback).\n call - Call the callback of this task.\n remove - Remove a task without executing it.\n cancel - Stop a task from automatically executing.\n\n Notes:\n A task is a single use method of delaying the call of a function. Calls are created\n in code, using `evennia.utils.delay`.\n See |luhttps://www.evennia.com/docs/latest/Command-Duration.html|ltthe docs|le for help.\n\n By default, tasks that are canceled and never called are cleaned up after one minute.\n\n Examples:\n - `tasks/cancel move_callback` - Cancels all movement delays from the slow_exit contrib.\n In this example slow exits creates it's tasks with\n `utils.delay(move_delay, move_callback)`\n - `tasks/cancel 2` - Cancel task id 2.\n\n "}¶
@@ -771,11 +771,11 @@ to all the variables defined therein.
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
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 b76677a4d0..012f975a61 100644
--- a/docs/1.0-dev/api/evennia.commands.default.tests.html
+++ b/docs/1.0-dev/api/evennia.commands.default.tests.html
@@ -1056,11 +1056,11 @@ set in self.parse())
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
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 4b149e271d..845dc3264c 100644
--- a/docs/1.0-dev/api/evennia.commands.default.unloggedin.html
+++ b/docs/1.0-dev/api/evennia.commands.default.unloggedin.html
@@ -60,7 +60,7 @@ connect “account name” “pass word”
@@ -95,7 +95,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 '}¶
@@ -174,7 +174,7 @@ version is a bit more complicated.
@@ -200,7 +200,7 @@ version is a bit more complicated.
-
-
search_index_entry = {'aliases': 'qu q', 'category': 'general', 'key': 'quit', 'tags': '', 'text': '\n quit when in unlogged-in state\n\n Usage:\n quit\n\n We maintain a different version of the quit command\n here for unconnected accounts for the sake of simplicity. The logged in\n version is a bit more complicated.\n '}¶
+search_index_entry = {'aliases': 'q qu', 'category': 'general', 'key': 'quit', 'tags': '', 'text': '\n quit when in unlogged-in state\n\n Usage:\n quit\n\n We maintain a different version of the quit command\n here for unconnected accounts for the sake of simplicity. The logged in\n version is a bit more complicated.\n '}¶
@@ -273,7 +273,7 @@ for simplicity. It shows a pane of info.
@@ -299,7 +299,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 '}¶
@@ -337,11 +337,11 @@ for simplicity. It shows a pane of info.
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/api/evennia.commands.html b/docs/1.0-dev/api/evennia.commands.html
index abf521dd96..614917c3eb 100644
--- a/docs/1.0-dev/api/evennia.commands.html
+++ b/docs/1.0-dev/api/evennia.commands.html
@@ -110,11 +110,11 @@ Evennia.
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/api/evennia.comms.comms.html b/docs/1.0-dev/api/evennia.comms.comms.html
index 67fa502538..793607852f 100644
--- a/docs/1.0-dev/api/evennia.comms.comms.html
+++ b/docs/1.0-dev/api/evennia.comms.comms.html
@@ -840,11 +840,11 @@ responsibility.
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/api/evennia.comms.html b/docs/1.0-dev/api/evennia.comms.html
index dbeb36d230..771eb32056 100644
--- a/docs/1.0-dev/api/evennia.comms.html
+++ b/docs/1.0-dev/api/evennia.comms.html
@@ -83,11 +83,11 @@ as code related to external communication like IRC or RSS.
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/api/evennia.comms.managers.html b/docs/1.0-dev/api/evennia.comms.managers.html
index 948bb0b324..58a9afa8a0 100644
--- a/docs/1.0-dev/api/evennia.comms.managers.html
+++ b/docs/1.0-dev/api/evennia.comms.managers.html
@@ -345,11 +345,11 @@ case sensitive) match.
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/api/evennia.comms.models.html b/docs/1.0-dev/api/evennia.comms.models.html
index 40468248cc..1cc8d2422b 100644
--- a/docs/1.0-dev/api/evennia.comms.models.html
+++ b/docs/1.0-dev/api/evennia.comms.models.html
@@ -654,11 +654,11 @@ object the first time, the query is executed.
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/api/evennia.contrib.awsstorage.aws_s3_cdn.html b/docs/1.0-dev/api/evennia.contrib.awsstorage.aws_s3_cdn.html
index 92d17eb6ff..3206924b62 100644
--- a/docs/1.0-dev/api/evennia.contrib.awsstorage.aws_s3_cdn.html
+++ b/docs/1.0-dev/api/evennia.contrib.awsstorage.aws_s3_cdn.html
@@ -536,11 +536,11 @@ so we just return that, else we have to localize and strip the tz
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/api/evennia.contrib.awsstorage.html b/docs/1.0-dev/api/evennia.contrib.awsstorage.html
index c3288cb355..67253ce40f 100644
--- a/docs/1.0-dev/api/evennia.contrib.awsstorage.html
+++ b/docs/1.0-dev/api/evennia.contrib.awsstorage.html
@@ -80,11 +80,11 @@
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/api/evennia.contrib.awsstorage.tests.html b/docs/1.0-dev/api/evennia.contrib.awsstorage.tests.html
index c077b94a2c..bf4db949d0 100644
--- a/docs/1.0-dev/api/evennia.contrib.awsstorage.tests.html
+++ b/docs/1.0-dev/api/evennia.contrib.awsstorage.tests.html
@@ -290,11 +290,11 @@
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/api/evennia.contrib.barter.html b/docs/1.0-dev/api/evennia.contrib.barter.html
index 2963a17385..8cffa7f87a 100644
--- a/docs/1.0-dev/api/evennia.contrib.barter.html
+++ b/docs/1.0-dev/api/evennia.contrib.barter.html
@@ -874,11 +874,11 @@ info to your choice.
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/api/evennia.contrib.building_menu.html b/docs/1.0-dev/api/evennia.contrib.building_menu.html
index 6e07f28901..609bcfff5d 100644
--- a/docs/1.0-dev/api/evennia.contrib.building_menu.html
+++ b/docs/1.0-dev/api/evennia.contrib.building_menu.html
@@ -912,11 +912,11 @@ set in self.parse())
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/api/evennia.contrib.chargen.html b/docs/1.0-dev/api/evennia.contrib.chargen.html
index 6512241a3f..5623ad12b6 100644
--- a/docs/1.0-dev/api/evennia.contrib.chargen.html
+++ b/docs/1.0-dev/api/evennia.contrib.chargen.html
@@ -78,7 +78,7 @@ at them with this command.
@@ -110,7 +110,7 @@ that is checked by the @ic command directly.
-
-
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 '}¶
+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 '}¶
@@ -216,11 +216,11 @@ attribute on ourselves to remember it.
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/api/evennia.contrib.clothing.html b/docs/1.0-dev/api/evennia.contrib.clothing.html
index 5763394915..c213281bcd 100644
--- a/docs/1.0-dev/api/evennia.contrib.clothing.html
+++ b/docs/1.0-dev/api/evennia.contrib.clothing.html
@@ -724,11 +724,11 @@ items.
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/api/evennia.contrib.color_markups.html b/docs/1.0-dev/api/evennia.contrib.color_markups.html
index b4fe5e7855..d457732745 100644
--- a/docs/1.0-dev/api/evennia.contrib.color_markups.html
+++ b/docs/1.0-dev/api/evennia.contrib.color_markups.html
@@ -115,11 +115,11 @@ COLOR_ANSI_BRIGHT_BGS_EXTRA_MAP = color_markups.CURLY_COLOR_ANSI_BRIGHT_BGS_EXTR
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/api/evennia.contrib.crafting.crafting.html b/docs/1.0-dev/api/evennia.contrib.crafting.crafting.html
index 300fe91ae8..79cf13ebfc 100644
--- a/docs/1.0-dev/api/evennia.contrib.crafting.crafting.html
+++ b/docs/1.0-dev/api/evennia.contrib.crafting.crafting.html
@@ -867,11 +867,11 @@ the crafting_tool_err_msg if available.
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/api/evennia.contrib.crafting.example_recipes.html b/docs/1.0-dev/api/evennia.contrib.crafting.example_recipes.html
index 30091a8e99..d01eb9773d 100644
--- a/docs/1.0-dev/api/evennia.contrib.crafting.example_recipes.html
+++ b/docs/1.0-dev/api/evennia.contrib.crafting.example_recipes.html
@@ -432,11 +432,11 @@ strips for better grip.
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/api/evennia.contrib.crafting.html b/docs/1.0-dev/api/evennia.contrib.crafting.html
index fb8cb43382..52649a1e8d 100644
--- a/docs/1.0-dev/api/evennia.contrib.crafting.html
+++ b/docs/1.0-dev/api/evennia.contrib.crafting.html
@@ -89,11 +89,11 @@
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/api/evennia.contrib.crafting.tests.html b/docs/1.0-dev/api/evennia.contrib.crafting.tests.html
index aedf5ee12a..edbcd37e57 100644
--- a/docs/1.0-dev/api/evennia.contrib.crafting.tests.html
+++ b/docs/1.0-dev/api/evennia.contrib.crafting.tests.html
@@ -286,11 +286,11 @@
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/api/evennia.contrib.custom_gametime.html b/docs/1.0-dev/api/evennia.contrib.custom_gametime.html
index 25cd4bf148..f3e77d4bff 100644
--- a/docs/1.0-dev/api/evennia.contrib.custom_gametime.html
+++ b/docs/1.0-dev/api/evennia.contrib.custom_gametime.html
@@ -302,11 +302,11 @@ The time is given in units as keyword arguments.
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/api/evennia.contrib.dice.html b/docs/1.0-dev/api/evennia.contrib.dice.html
index 7ffb38f6f2..ddac52ccab 100644
--- a/docs/1.0-dev/api/evennia.contrib.dice.html
+++ b/docs/1.0-dev/api/evennia.contrib.dice.html
@@ -233,11 +233,11 @@ Add with @py self.cmdset.add(“contrib.dice.DiceCmdSet”)
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
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 20ba79378f..ff6beb8476 100644
--- a/docs/1.0-dev/api/evennia.contrib.email_login.html
+++ b/docs/1.0-dev/api/evennia.contrib.email_login.html
@@ -75,7 +75,7 @@ the module given by settings.CONNECTION_SCREEN_MODULE.
@@ -105,7 +105,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 '}¶
@@ -182,7 +182,7 @@ version is a bit more complicated.
@@ -208,7 +208,7 @@ version is a bit more complicated.
-
-
search_index_entry = {'aliases': 'qu q', 'category': 'general', 'key': 'quit', 'tags': '', 'text': '\n We maintain a different version of the `quit` command\n here for unconnected accounts for the sake of simplicity. The logged in\n version is a bit more complicated.\n '}¶
+search_index_entry = {'aliases': 'q qu', 'category': 'general', 'key': 'quit', 'tags': '', 'text': '\n We maintain a different version of the `quit` command\n here for unconnected accounts for the sake of simplicity. The logged in\n version is a bit more complicated.\n '}¶
@@ -271,7 +271,7 @@ for simplicity. It shows a pane of info.
@@ -297,7 +297,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 '}¶
@@ -335,11 +335,11 @@ for simplicity. It shows a pane of info.
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/api/evennia.contrib.evscaperoom.commands.html b/docs/1.0-dev/api/evennia.contrib.evscaperoom.commands.html
index f6f6f56f92..ede1051749 100644
--- a/docs/1.0-dev/api/evennia.contrib.evscaperoom.commands.html
+++ b/docs/1.0-dev/api/evennia.contrib.evscaperoom.commands.html
@@ -148,7 +148,7 @@ the operation will be general or on the room.
@@ -172,7 +172,7 @@ set in self.parse())
-
-
search_index_entry = {'aliases': 'abort chicken out q quit', 'category': 'evscaperoom', 'key': 'give up', 'tags': '', 'text': '\n Give up\n\n Usage:\n give up\n\n Abandons your attempts at escaping and of ever winning the pie-eating contest.\n\n '}¶
+search_index_entry = {'aliases': 'q chicken out abort quit', 'category': 'evscaperoom', 'key': 'give up', 'tags': '', 'text': '\n Give up\n\n Usage:\n give up\n\n Abandons your attempts at escaping and of ever winning the pie-eating contest.\n\n '}¶
@@ -193,7 +193,7 @@ set in self.parse())
@@ -227,7 +227,7 @@ set in self.parse())
-
-
search_index_entry = {'aliases': 'ls l', 'category': 'evscaperoom', 'key': 'look', 'tags': '', 'text': '\n Look at the room, an object or the currently focused object\n\n Usage:\n look [obj]\n\n '}¶
+search_index_entry = {'aliases': 'l ls', 'category': 'evscaperoom', 'key': 'look', 'tags': '', 'text': '\n Look at the room, an object or the currently focused object\n\n Usage:\n look [obj]\n\n '}¶
@@ -308,7 +308,7 @@ shout
@@ -337,7 +337,7 @@ set in self.parse())
-
-
search_index_entry = {'aliases': 'shout ; whisper', 'category': 'general', 'key': 'say', 'tags': '', 'text': '\n Perform an communication action.\n\n Usage:\n say <text>\n whisper\n shout\n\n '}¶
+search_index_entry = {'aliases': '; whisper shout', 'category': 'general', 'key': 'say', 'tags': '', 'text': '\n Perform an communication action.\n\n Usage:\n say <text>\n whisper\n shout\n\n '}¶
@@ -365,7 +365,7 @@ emote /me points to /box and /lever.
@@ -404,7 +404,7 @@ set in self.parse())
-
-
search_index_entry = {'aliases': 'pose :', 'category': 'general', 'key': 'emote', 'tags': '', 'text': '\n Perform a free-form emote. Use /me to\n include yourself in the emote and /name\n to include other objects or characters.\n Use "..." to enact speech.\n\n Usage:\n emote <emote>\n :<emote\n\n Example:\n emote /me smiles at /peter\n emote /me points to /box and /lever.\n\n '}¶
+search_index_entry = {'aliases': ': pose', 'category': 'general', 'key': 'emote', 'tags': '', 'text': '\n Perform a free-form emote. Use /me to\n include yourself in the emote and /name\n to include other objects or characters.\n Use "..." to enact speech.\n\n Usage:\n emote <emote>\n :<emote\n\n Example:\n emote /me smiles at /peter\n emote /me points to /box and /lever.\n\n '}¶
@@ -427,7 +427,7 @@ looks and what actions is available.
@@ -456,7 +456,7 @@ set in self.parse())
-
-
search_index_entry = {'aliases': 'examine e ex unfocus', 'category': 'evscaperoom', 'key': 'focus', 'tags': '', 'text': '\n Focus your attention on a target.\n\n Usage:\n focus <obj>\n\n Once focusing on an object, use look to get more information about how it\n looks and what actions is available.\n\n '}¶
+search_index_entry = {'aliases': 'examine ex e unfocus', 'category': 'evscaperoom', 'key': 'focus', 'tags': '', 'text': '\n Focus your attention on a target.\n\n Usage:\n focus <obj>\n\n Once focusing on an object, use look to get more information about how it\n looks and what actions is available.\n\n '}¶
@@ -518,7 +518,7 @@ set in self.parse())
@@ -542,7 +542,7 @@ set in self.parse())
-
-
search_index_entry = {'aliases': 'inventory give i inv', 'category': 'evscaperoom', 'key': 'get', 'tags': '', 'text': '\n Use focus / examine instead.\n\n '}¶
+search_index_entry = {'aliases': 'inv inventory give i', 'category': 'evscaperoom', 'key': 'get', 'tags': '', 'text': '\n Use focus / examine instead.\n\n '}¶
@@ -563,7 +563,7 @@ set in self.parse())
@@ -586,7 +586,7 @@ to all the variables defined therein.
-
-
search_index_entry = {'aliases': '@open @dig', 'category': 'general', 'key': 'open', 'tags': '', 'text': '\n Interact with an object in focus.\n\n Usage:\n <action> [arg]\n\n '}¶
+search_index_entry = {'aliases': '@dig @open', 'category': 'general', 'key': 'open', 'tags': '', 'text': '\n Interact with an object in focus.\n\n Usage:\n <action> [arg]\n\n '}¶
@@ -1026,11 +1026,11 @@ self.add().
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/api/evennia.contrib.evscaperoom.html b/docs/1.0-dev/api/evennia.contrib.evscaperoom.html
index d187f995bc..d33ec1512a 100644
--- a/docs/1.0-dev/api/evennia.contrib.evscaperoom.html
+++ b/docs/1.0-dev/api/evennia.contrib.evscaperoom.html
@@ -85,11 +85,11 @@
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/api/evennia.contrib.evscaperoom.menu.html b/docs/1.0-dev/api/evennia.contrib.evscaperoom.menu.html
index 8030099242..4dec9e709f 100644
--- a/docs/1.0-dev/api/evennia.contrib.evscaperoom.menu.html
+++ b/docs/1.0-dev/api/evennia.contrib.evscaperoom.menu.html
@@ -183,11 +183,11 @@ option related to this node.
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/api/evennia.contrib.evscaperoom.objects.html b/docs/1.0-dev/api/evennia.contrib.evscaperoom.objects.html
index 2405438562..7d827e7313 100644
--- a/docs/1.0-dev/api/evennia.contrib.evscaperoom.objects.html
+++ b/docs/1.0-dev/api/evennia.contrib.evscaperoom.objects.html
@@ -1803,11 +1803,11 @@ inject the list of callsigns.
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/api/evennia.contrib.evscaperoom.room.html b/docs/1.0-dev/api/evennia.contrib.evscaperoom.room.html
index 0098377e86..9b3eec2494 100644
--- a/docs/1.0-dev/api/evennia.contrib.evscaperoom.room.html
+++ b/docs/1.0-dev/api/evennia.contrib.evscaperoom.room.html
@@ -262,11 +262,11 @@ contents of the object by default.
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/api/evennia.contrib.evscaperoom.scripts.html b/docs/1.0-dev/api/evennia.contrib.evscaperoom.scripts.html
index 2012fb8efb..853ec16c9a 100644
--- a/docs/1.0-dev/api/evennia.contrib.evscaperoom.scripts.html
+++ b/docs/1.0-dev/api/evennia.contrib.evscaperoom.scripts.html
@@ -73,11 +73,11 @@
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/api/evennia.contrib.evscaperoom.state.html b/docs/1.0-dev/api/evennia.contrib.evscaperoom.state.html
index 57ec6686b4..35b6e21fce 100644
--- a/docs/1.0-dev/api/evennia.contrib.evscaperoom.state.html
+++ b/docs/1.0-dev/api/evennia.contrib.evscaperoom.state.html
@@ -259,11 +259,11 @@ happens just before room.character_cleanup()
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/api/evennia.contrib.evscaperoom.tests.html b/docs/1.0-dev/api/evennia.contrib.evscaperoom.tests.html
index 80b491c3da..dd81317de2 100644
--- a/docs/1.0-dev/api/evennia.contrib.evscaperoom.tests.html
+++ b/docs/1.0-dev/api/evennia.contrib.evscaperoom.tests.html
@@ -199,11 +199,11 @@
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/api/evennia.contrib.evscaperoom.utils.html b/docs/1.0-dev/api/evennia.contrib.evscaperoom.utils.html
index a3f9dd34aa..7a90fdfa63 100644
--- a/docs/1.0-dev/api/evennia.contrib.evscaperoom.utils.html
+++ b/docs/1.0-dev/api/evennia.contrib.evscaperoom.utils.html
@@ -191,11 +191,11 @@ surrounded by borders.
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
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 403ff156e1..390796e16e 100644
--- a/docs/1.0-dev/api/evennia.contrib.extended_room.html
+++ b/docs/1.0-dev/api/evennia.contrib.extended_room.html
@@ -277,7 +277,7 @@ look *<account&g
@@ -297,7 +297,7 @@ look *<account&g
-
-
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 '}¶
+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 '}¶
@@ -534,11 +534,11 @@ self.add().
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/api/evennia.contrib.fieldfill.html b/docs/1.0-dev/api/evennia.contrib.fieldfill.html
index 9669dc636c..0629264174 100644
--- a/docs/1.0-dev/api/evennia.contrib.fieldfill.html
+++ b/docs/1.0-dev/api/evennia.contrib.fieldfill.html
@@ -433,11 +433,11 @@ send
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/api/evennia.contrib.gendersub.html b/docs/1.0-dev/api/evennia.contrib.gendersub.html
index 2136ee4a79..1506526863 100644
--- a/docs/1.0-dev/api/evennia.contrib.gendersub.html
+++ b/docs/1.0-dev/api/evennia.contrib.gendersub.html
@@ -212,11 +212,11 @@ All extra kwargs will be passed on to the protocol.
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/api/evennia.contrib.health_bar.html b/docs/1.0-dev/api/evennia.contrib.health_bar.html
index 17488a14ff..a0c7291f2f 100644
--- a/docs/1.0-dev/api/evennia.contrib.health_bar.html
+++ b/docs/1.0-dev/api/evennia.contrib.health_bar.html
@@ -130,11 +130,11 @@ readers will be unable to read the graphical aspect of the bar.
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/api/evennia.contrib.html b/docs/1.0-dev/api/evennia.contrib.html
index bfb9e63038..1c882a38fc 100644
--- a/docs/1.0-dev/api/evennia.contrib.html
+++ b/docs/1.0-dev/api/evennia.contrib.html
@@ -224,11 +224,11 @@ useful but are deemed too game-specific to go into the core library.
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/api/evennia.contrib.ingame_python.callbackhandler.html b/docs/1.0-dev/api/evennia.contrib.ingame_python.callbackhandler.html
index 388435458e..a275f85434 100644
--- a/docs/1.0-dev/api/evennia.contrib.ingame_python.callbackhandler.html
+++ b/docs/1.0-dev/api/evennia.contrib.ingame_python.callbackhandler.html
@@ -308,11 +308,11 @@ the expected fields for a callback (code, author, valid…).
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
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 ad8ad2ae3c..a4b9d7fb89 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
@@ -53,7 +53,7 @@
@@ -134,7 +134,7 @@ on user permission.
-
-
search_index_entry = {'aliases': '@callbacks @calls @callback', 'category': 'building', 'key': '@call', 'tags': '', 'text': '\n Command to edit callbacks.\n '}¶
+search_index_entry = {'aliases': '@callbacks @callback @calls', 'category': 'building', 'key': '@call', 'tags': '', 'text': '\n Command to edit callbacks.\n '}¶
@@ -172,11 +172,11 @@ on user permission.
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/api/evennia.contrib.ingame_python.eventfuncs.html b/docs/1.0-dev/api/evennia.contrib.ingame_python.eventfuncs.html
index 5bf09d364d..b2bb1384e6 100644
--- a/docs/1.0-dev/api/evennia.contrib.ingame_python.eventfuncs.html
+++ b/docs/1.0-dev/api/evennia.contrib.ingame_python.eventfuncs.html
@@ -140,11 +140,11 @@ to be called from inside another event.
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/api/evennia.contrib.ingame_python.html b/docs/1.0-dev/api/evennia.contrib.ingame_python.html
index 0f52df71cc..f29aba61c9 100644
--- a/docs/1.0-dev/api/evennia.contrib.ingame_python.html
+++ b/docs/1.0-dev/api/evennia.contrib.ingame_python.html
@@ -84,11 +84,11 @@
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/api/evennia.contrib.ingame_python.scripts.html b/docs/1.0-dev/api/evennia.contrib.ingame_python.scripts.html
index 2b3c97f128..cf97d3e9fc 100644
--- a/docs/1.0-dev/api/evennia.contrib.ingame_python.scripts.html
+++ b/docs/1.0-dev/api/evennia.contrib.ingame_python.scripts.html
@@ -429,11 +429,11 @@ restart only twice.
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/api/evennia.contrib.ingame_python.tests.html b/docs/1.0-dev/api/evennia.contrib.ingame_python.tests.html
index 1d8faff263..d7e1bd1dfd 100644
--- a/docs/1.0-dev/api/evennia.contrib.ingame_python.tests.html
+++ b/docs/1.0-dev/api/evennia.contrib.ingame_python.tests.html
@@ -215,11 +215,11 @@
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/api/evennia.contrib.ingame_python.typeclasses.html b/docs/1.0-dev/api/evennia.contrib.ingame_python.typeclasses.html
index 5dded196b9..c520c37f58 100644
--- a/docs/1.0-dev/api/evennia.contrib.ingame_python.typeclasses.html
+++ b/docs/1.0-dev/api/evennia.contrib.ingame_python.typeclasses.html
@@ -73,11 +73,11 @@
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/api/evennia.contrib.ingame_python.utils.html b/docs/1.0-dev/api/evennia.contrib.ingame_python.utils.html
index 6997a8cf02..6ca9dcb2da 100644
--- a/docs/1.0-dev/api/evennia.contrib.ingame_python.utils.html
+++ b/docs/1.0-dev/api/evennia.contrib.ingame_python.utils.html
@@ -193,11 +193,11 @@ either “yes” or “okay” (maybe ‘say I don’t like it, but okay’).Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/api/evennia.contrib.mail.html b/docs/1.0-dev/api/evennia.contrib.mail.html
index d14fd4cdd2..ea7eccdb6b 100644
--- a/docs/1.0-dev/api/evennia.contrib.mail.html
+++ b/docs/1.0-dev/api/evennia.contrib.mail.html
@@ -332,11 +332,11 @@ reply - Replies to a received message, appending the original message to the b
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/api/evennia.contrib.mapbuilder.html b/docs/1.0-dev/api/evennia.contrib.mapbuilder.html
index bc186c0cd8..189d98e66a 100644
--- a/docs/1.0-dev/api/evennia.contrib.mapbuilder.html
+++ b/docs/1.0-dev/api/evennia.contrib.mapbuilder.html
@@ -73,11 +73,11 @@
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/api/evennia.contrib.menu_login.html b/docs/1.0-dev/api/evennia.contrib.menu_login.html
index 3ae4ad0606..0a1376b18a 100644
--- a/docs/1.0-dev/api/evennia.contrib.menu_login.html
+++ b/docs/1.0-dev/api/evennia.contrib.menu_login.html
@@ -73,11 +73,11 @@
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/api/evennia.contrib.multidescer.html b/docs/1.0-dev/api/evennia.contrib.multidescer.html
index 2c326d6387..351c251059 100644
--- a/docs/1.0-dev/api/evennia.contrib.multidescer.html
+++ b/docs/1.0-dev/api/evennia.contrib.multidescer.html
@@ -157,11 +157,11 @@ description in use and db.multidesc to store all descriptions.<
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/api/evennia.contrib.puzzles.html b/docs/1.0-dev/api/evennia.contrib.puzzles.html
index 74e28b4b93..bbfd70b45a 100644
--- a/docs/1.0-dev/api/evennia.contrib.puzzles.html
+++ b/docs/1.0-dev/api/evennia.contrib.puzzles.html
@@ -538,11 +538,11 @@ self.add().
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/api/evennia.contrib.random_string_generator.html b/docs/1.0-dev/api/evennia.contrib.random_string_generator.html
index bb76a6b202..743cdacb3e 100644
--- a/docs/1.0-dev/api/evennia.contrib.random_string_generator.html
+++ b/docs/1.0-dev/api/evennia.contrib.random_string_generator.html
@@ -288,11 +288,11 @@ calling the get method.
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/api/evennia.contrib.rplanguage.html b/docs/1.0-dev/api/evennia.contrib.rplanguage.html
index 5003f32aaa..3a1e0441b0 100644
--- a/docs/1.0-dev/api/evennia.contrib.rplanguage.html
+++ b/docs/1.0-dev/api/evennia.contrib.rplanguage.html
@@ -400,11 +400,11 @@ means fully obscured.
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/api/evennia.contrib.rpsystem.html b/docs/1.0-dev/api/evennia.contrib.rpsystem.html
index 14ed4cbd10..01f8d1abb2 100644
--- a/docs/1.0-dev/api/evennia.contrib.rpsystem.html
+++ b/docs/1.0-dev/api/evennia.contrib.rpsystem.html
@@ -1277,11 +1277,11 @@ the evennia.contrib.rplanguage module.
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/api/evennia.contrib.security.auditing.html b/docs/1.0-dev/api/evennia.contrib.security.auditing.html
index 98ed011c06..2d918a2023 100644
--- a/docs/1.0-dev/api/evennia.contrib.security.auditing.html
+++ b/docs/1.0-dev/api/evennia.contrib.security.auditing.html
@@ -80,11 +80,11 @@
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/api/evennia.contrib.security.auditing.outputs.html b/docs/1.0-dev/api/evennia.contrib.security.auditing.outputs.html
index 989fa8f980..70cbd970f9 100644
--- a/docs/1.0-dev/api/evennia.contrib.security.auditing.outputs.html
+++ b/docs/1.0-dev/api/evennia.contrib.security.auditing.outputs.html
@@ -115,11 +115,11 @@ compromised or taken down, losing your logs along with it is no help!).
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/api/evennia.contrib.security.auditing.server.html b/docs/1.0-dev/api/evennia.contrib.security.auditing.server.html
index 28c2547bb1..55987d74ca 100644
--- a/docs/1.0-dev/api/evennia.contrib.security.auditing.server.html
+++ b/docs/1.0-dev/api/evennia.contrib.security.auditing.server.html
@@ -154,11 +154,11 @@ writing to log. Recording cleartext password attempts is bad policy.
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/api/evennia.contrib.security.auditing.tests.html b/docs/1.0-dev/api/evennia.contrib.security.auditing.tests.html
index e852dd687f..37a269d450 100644
--- a/docs/1.0-dev/api/evennia.contrib.security.auditing.tests.html
+++ b/docs/1.0-dev/api/evennia.contrib.security.auditing.tests.html
@@ -94,11 +94,11 @@ parsed from the Session object.
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/api/evennia.contrib.security.html b/docs/1.0-dev/api/evennia.contrib.security.html
index 98a62c054a..6554bd9155 100644
--- a/docs/1.0-dev/api/evennia.contrib.security.html
+++ b/docs/1.0-dev/api/evennia.contrib.security.html
@@ -83,11 +83,11 @@
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/api/evennia.contrib.simpledoor.html b/docs/1.0-dev/api/evennia.contrib.simpledoor.html
index 2fac2a86eb..4c49518bfc 100644
--- a/docs/1.0-dev/api/evennia.contrib.simpledoor.html
+++ b/docs/1.0-dev/api/evennia.contrib.simpledoor.html
@@ -269,11 +269,11 @@ close <door>
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/api/evennia.contrib.slow_exit.html b/docs/1.0-dev/api/evennia.contrib.slow_exit.html
index 2e0ad995fc..42466fc0c9 100644
--- a/docs/1.0-dev/api/evennia.contrib.slow_exit.html
+++ b/docs/1.0-dev/api/evennia.contrib.slow_exit.html
@@ -219,11 +219,11 @@ stored deferred from the exit traversal above.
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/api/evennia.contrib.talking_npc.html b/docs/1.0-dev/api/evennia.contrib.talking_npc.html
index 217427789d..ad5f3e1359 100644
--- a/docs/1.0-dev/api/evennia.contrib.talking_npc.html
+++ b/docs/1.0-dev/api/evennia.contrib.talking_npc.html
@@ -221,11 +221,11 @@ the conversation defined above.
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/api/evennia.contrib.test_traits.html b/docs/1.0-dev/api/evennia.contrib.test_traits.html
index e8027b63e7..ff7a9c5fef 100644
--- a/docs/1.0-dev/api/evennia.contrib.test_traits.html
+++ b/docs/1.0-dev/api/evennia.contrib.test_traits.html
@@ -471,11 +471,11 @@
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/api/evennia.contrib.traits.html b/docs/1.0-dev/api/evennia.contrib.traits.html
index 579f961ea7..e02abb1471 100644
--- a/docs/1.0-dev/api/evennia.contrib.traits.html
+++ b/docs/1.0-dev/api/evennia.contrib.traits.html
@@ -898,11 +898,11 @@ returned.
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/api/evennia.contrib.tree_select.html b/docs/1.0-dev/api/evennia.contrib.tree_select.html
index 2e44c20474..e74587c7b2 100644
--- a/docs/1.0-dev/api/evennia.contrib.tree_select.html
+++ b/docs/1.0-dev/api/evennia.contrib.tree_select.html
@@ -428,11 +428,11 @@ to determine the color the player chose.
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/api/evennia.contrib.turnbattle.html b/docs/1.0-dev/api/evennia.contrib.turnbattle.html
index 5bba65da3f..c9d65742b0 100644
--- a/docs/1.0-dev/api/evennia.contrib.turnbattle.html
+++ b/docs/1.0-dev/api/evennia.contrib.turnbattle.html
@@ -82,11 +82,11 @@
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/api/evennia.contrib.turnbattle.tb_basic.html b/docs/1.0-dev/api/evennia.contrib.turnbattle.tb_basic.html
index 788f04dd26..036cad4d38 100644
--- a/docs/1.0-dev/api/evennia.contrib.turnbattle.tb_basic.html
+++ b/docs/1.0-dev/api/evennia.contrib.turnbattle.tb_basic.html
@@ -571,7 +571,7 @@ if there are still any actions you can take.
@@ -592,7 +592,7 @@ if there are still any actions you can take.
-
-
search_index_entry = {'aliases': 'hold wait', 'category': 'combat', 'key': 'pass', 'tags': '', 'text': '\n Passes on your turn.\n\n Usage:\n pass\n\n When in a fight, you can use this command to end your turn early, even\n if there are still any actions you can take.\n '}¶
+search_index_entry = {'aliases': 'wait hold', 'category': 'combat', 'key': 'pass', 'tags': '', 'text': '\n Passes on your turn.\n\n Usage:\n pass\n\n When in a fight, you can use this command to end your turn early, even\n if there are still any actions you can take.\n '}¶
@@ -788,11 +788,11 @@ topics related to the game.
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/api/evennia.contrib.turnbattle.tb_equip.html b/docs/1.0-dev/api/evennia.contrib.turnbattle.tb_equip.html
index 9abbdd1f21..32770ea5dd 100644
--- a/docs/1.0-dev/api/evennia.contrib.turnbattle.tb_equip.html
+++ b/docs/1.0-dev/api/evennia.contrib.turnbattle.tb_equip.html
@@ -688,7 +688,7 @@ if there are still any actions you can take.
@@ -709,7 +709,7 @@ if there are still any actions you can take.
-
-
search_index_entry = {'aliases': 'hold wait', 'category': 'combat', 'key': 'pass', 'tags': '', 'text': '\n Passes on your turn.\n\n Usage:\n pass\n\n When in a fight, you can use this command to end your turn early, even\n if there are still any actions you can take.\n '}¶
+search_index_entry = {'aliases': 'wait hold', 'category': 'combat', 'key': 'pass', 'tags': '', 'text': '\n Passes on your turn.\n\n Usage:\n pass\n\n When in a fight, you can use this command to end your turn early, even\n if there are still any actions you can take.\n '}¶
@@ -1087,11 +1087,11 @@ You can’t use this command in combat.
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/api/evennia.contrib.turnbattle.tb_items.html b/docs/1.0-dev/api/evennia.contrib.turnbattle.tb_items.html
index 2bec1039fa..c61e6aba6b 100644
--- a/docs/1.0-dev/api/evennia.contrib.turnbattle.tb_items.html
+++ b/docs/1.0-dev/api/evennia.contrib.turnbattle.tb_items.html
@@ -722,7 +722,7 @@ if there are still any actions you can take.
@@ -743,7 +743,7 @@ if there are still any actions you can take.
-
-
search_index_entry = {'aliases': 'hold wait', 'category': 'combat', 'key': 'pass', 'tags': '', 'text': '\n Passes on your turn.\n\n Usage:\n pass\n\n When in a fight, you can use this command to end your turn early, even\n if there are still any actions you can take.\n '}¶
+search_index_entry = {'aliases': 'wait hold', 'category': 'combat', 'key': 'pass', 'tags': '', 'text': '\n Passes on your turn.\n\n Usage:\n pass\n\n When in a fight, you can use this command to end your turn early, even\n if there are still any actions you can take.\n '}¶
@@ -1067,11 +1067,11 @@ items using the same function work differently.
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/api/evennia.contrib.turnbattle.tb_magic.html b/docs/1.0-dev/api/evennia.contrib.turnbattle.tb_magic.html
index bf3a43e0a0..0577e9ed56 100644
--- a/docs/1.0-dev/api/evennia.contrib.turnbattle.tb_magic.html
+++ b/docs/1.0-dev/api/evennia.contrib.turnbattle.tb_magic.html
@@ -594,7 +594,7 @@ if there are still any actions you can take.
@@ -615,7 +615,7 @@ if there are still any actions you can take.
-
-
search_index_entry = {'aliases': 'hold wait', 'category': 'combat', 'key': 'pass', 'tags': '', 'text': '\n Passes on your turn.\n\n Usage:\n pass\n\n When in a fight, you can use this command to end your turn early, even\n if there are still any actions you can take.\n '}¶
+search_index_entry = {'aliases': 'wait hold', 'category': 'combat', 'key': 'pass', 'tags': '', 'text': '\n Passes on your turn.\n\n Usage:\n pass\n\n When in a fight, you can use this command to end your turn early, even\n if there are still any actions you can take.\n '}¶
@@ -1016,11 +1016,11 @@ instead of creating objects directly.
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
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 32d40b88d9..2f3dca3ab5 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
@@ -1021,7 +1021,7 @@ if there are still any actions you can take.
@@ -1042,7 +1042,7 @@ if there are still any actions you can take.
-
-
search_index_entry = {'aliases': 'hold wait', 'category': 'combat', 'key': 'pass', 'tags': '', 'text': '\n Passes on your turn.\n\n Usage:\n pass\n\n When in a fight, you can use this command to end your turn early, even\n if there are still any actions you can take.\n '}¶
+search_index_entry = {'aliases': 'wait hold', 'category': 'combat', 'key': 'pass', 'tags': '', 'text': '\n Passes on your turn.\n\n Usage:\n pass\n\n When in a fight, you can use this command to end your turn early, even\n if there are still any actions you can take.\n '}¶
@@ -1282,11 +1282,11 @@ topics related to the game.
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/api/evennia.contrib.tutorial_examples.bodyfunctions.html b/docs/1.0-dev/api/evennia.contrib.tutorial_examples.bodyfunctions.html
index c51e86fc85..37c7c9825a 100644
--- a/docs/1.0-dev/api/evennia.contrib.tutorial_examples.bodyfunctions.html
+++ b/docs/1.0-dev/api/evennia.contrib.tutorial_examples.bodyfunctions.html
@@ -128,11 +128,11 @@ a random check here so as to only return 33% of the time.
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/api/evennia.contrib.tutorial_examples.example_batch_code.html b/docs/1.0-dev/api/evennia.contrib.tutorial_examples.example_batch_code.html
index 7bb4fb91df..9ec1a3a423 100644
--- a/docs/1.0-dev/api/evennia.contrib.tutorial_examples.example_batch_code.html
+++ b/docs/1.0-dev/api/evennia.contrib.tutorial_examples.example_batch_code.html
@@ -73,11 +73,11 @@
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/api/evennia.contrib.tutorial_examples.html b/docs/1.0-dev/api/evennia.contrib.tutorial_examples.html
index 4f17ae4c9b..45d054ac61 100644
--- a/docs/1.0-dev/api/evennia.contrib.tutorial_examples.html
+++ b/docs/1.0-dev/api/evennia.contrib.tutorial_examples.html
@@ -85,11 +85,11 @@
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/api/evennia.contrib.tutorial_examples.mirror.html b/docs/1.0-dev/api/evennia.contrib.tutorial_examples.mirror.html
index 4058846c84..7c0e8819b9 100644
--- a/docs/1.0-dev/api/evennia.contrib.tutorial_examples.mirror.html
+++ b/docs/1.0-dev/api/evennia.contrib.tutorial_examples.mirror.html
@@ -144,11 +144,11 @@ on all entities in it.
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/api/evennia.contrib.tutorial_examples.red_button.html b/docs/1.0-dev/api/evennia.contrib.tutorial_examples.red_button.html
index 37e6333f1f..3e925de530 100644
--- a/docs/1.0-dev/api/evennia.contrib.tutorial_examples.red_button.html
+++ b/docs/1.0-dev/api/evennia.contrib.tutorial_examples.red_button.html
@@ -80,7 +80,7 @@ such as when closing the lid and un-blinding a character.
+aliases = ['push', 'press button', 'press']¶
@@ -109,7 +109,7 @@ check if the lid is open or closed.
+search_index_entry = {'aliases': 'push press button press', 'category': 'general', 'key': 'push button', 'tags': '', 'text': '\n Push the red button (lid closed)\n\n Usage:\n push button\n\n '}¶
@@ -179,7 +179,7 @@ check if the lid is open or closed.
+aliases = ['smash lid', 'smash', 'break lid']¶
@@ -206,7 +206,7 @@ break.
+search_index_entry = {'aliases': 'smash lid smash break lid', 'category': 'general', 'key': 'smash glass', 'tags': '', 'text': '\n Smash the protective glass.\n\n Usage:\n smash glass\n\n Try to smash the glass of the button.\n\n '}¶
@@ -306,7 +306,7 @@ be mutually exclusive.
+aliases = ['push', 'press button', 'press']¶
@@ -335,7 +335,7 @@ set in self.parse())
+search_index_entry = {'aliases': 'push press button press', 'category': 'general', 'key': 'push button', 'tags': '', 'text': '\n Push the red button\n\n Usage:\n push button\n\n '}¶
@@ -433,7 +433,7 @@ be mutually exclusive.
+aliases = ['l', 'get', 'feel', 'examine', 'ex', 'listen']¶
@@ -459,7 +459,7 @@ be mutually exclusive.
+search_index_entry = {'aliases': 'l get feel examine ex listen', '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 "}¶
@@ -734,11 +734,11 @@ temporarily.
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/api/evennia.contrib.tutorial_examples.tests.html b/docs/1.0-dev/api/evennia.contrib.tutorial_examples.tests.html
index a3a6435c77..a5581a4084 100644
--- a/docs/1.0-dev/api/evennia.contrib.tutorial_examples.tests.html
+++ b/docs/1.0-dev/api/evennia.contrib.tutorial_examples.tests.html
@@ -109,11 +109,11 @@
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/api/evennia.contrib.tutorial_world.html b/docs/1.0-dev/api/evennia.contrib.tutorial_world.html
index 296acde2eb..20525f06f9 100644
--- a/docs/1.0-dev/api/evennia.contrib.tutorial_world.html
+++ b/docs/1.0-dev/api/evennia.contrib.tutorial_world.html
@@ -82,11 +82,11 @@
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/api/evennia.contrib.tutorial_world.intro_menu.html b/docs/1.0-dev/api/evennia.contrib.tutorial_world.intro_menu.html
index 319ed2669c..245c228f75 100644
--- a/docs/1.0-dev/api/evennia.contrib.tutorial_world.intro_menu.html
+++ b/docs/1.0-dev/api/evennia.contrib.tutorial_world.intro_menu.html
@@ -264,11 +264,11 @@ option related to this node.
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/api/evennia.contrib.tutorial_world.mob.html b/docs/1.0-dev/api/evennia.contrib.tutorial_world.mob.html
index 4d907cba9f..ac850b6a0d 100644
--- a/docs/1.0-dev/api/evennia.contrib.tutorial_world.mob.html
+++ b/docs/1.0-dev/api/evennia.contrib.tutorial_world.mob.html
@@ -313,11 +313,11 @@ right away, also when patrolling on a very slow ticker.
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
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 81bf860838..364b310867 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
@@ -362,7 +362,7 @@ of the object. We overload it with our own version.
@@ -389,7 +389,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 '}¶
@@ -493,7 +493,7 @@ shift green root up/down
@@ -529,7 +529,7 @@ yellow/green - horizontal roots
-
-
search_index_entry = {'aliases': 'push move pull shiftroot', '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 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 '}¶
@@ -546,7 +546,7 @@ yellow/green - horizontal roots
-
-
aliases = ['press button', 'button', 'push button']¶
+aliases = ['button', 'press button', 'push button']¶
@@ -572,7 +572,7 @@ yellow/green - horizontal roots
-
-
search_index_entry = {'aliases': 'press button button push 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 '}¶
@@ -716,7 +716,7 @@ parry - forgoes your attack but will make you harder to hit on next
-
-
aliases = ['fight', 'pierce', 'thrust', 'kill', 'bash', 'defend', 'hit', 'stab', 'slash', 'chop', 'parry']¶
+aliases = ['pierce', 'chop', 'bash', 'stab', 'hit', 'parry', 'thrust', 'fight', 'kill', 'slash', 'defend']¶
@@ -742,7 +742,7 @@ parry - forgoes your attack but will make you harder to hit on next
-
-
search_index_entry = {'aliases': 'fight pierce thrust kill bash defend hit stab slash chop parry', '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 chop bash stab hit parry thrust fight kill slash 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 '}¶
@@ -979,11 +979,11 @@ pulling weapons from it indefinitely.
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
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 2e2c7c2a46..151ca8540b 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
@@ -185,7 +185,7 @@ code except for adding in the details.
@@ -200,7 +200,7 @@ code except for adding in the details.
-
-
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 '}¶
+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 '}¶
@@ -714,7 +714,7 @@ if they fall off the bridge.
@@ -740,7 +740,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 '}¶
@@ -866,7 +866,7 @@ to find something.
-
-
aliases = ['search', 'l', 'feel around', 'feel', 'fiddle']¶
+aliases = ['l', 'feel around', 'fiddle', 'search', 'feel']¶
@@ -894,7 +894,7 @@ random chance of eventually finding a light source.
-
-
search_index_entry = {'aliases': 'search l feel around feel 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 '}¶
+search_index_entry = {'aliases': 'l feel around fiddle search 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 '}¶
@@ -1246,11 +1246,11 @@ overriding the call (unused by default).
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/api/evennia.contrib.unixcommand.html b/docs/1.0-dev/api/evennia.contrib.unixcommand.html
index 212e6c1bfd..011422f305 100644
--- a/docs/1.0-dev/api/evennia.contrib.unixcommand.html
+++ b/docs/1.0-dev/api/evennia.contrib.unixcommand.html
@@ -359,11 +359,11 @@ use its add_argument method.
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/api/evennia.contrib.wilderness.html b/docs/1.0-dev/api/evennia.contrib.wilderness.html
index 1f5796bdc7..e9db08c0e1 100644
--- a/docs/1.0-dev/api/evennia.contrib.wilderness.html
+++ b/docs/1.0-dev/api/evennia.contrib.wilderness.html
@@ -700,11 +700,11 @@ coordinate.
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/api/evennia.contrib.xyzgrid.commands.html b/docs/1.0-dev/api/evennia.contrib.xyzgrid.commands.html
index f4be8da6ed..60f69b8e38 100644
--- a/docs/1.0-dev/api/evennia.contrib.xyzgrid.commands.html
+++ b/docs/1.0-dev/api/evennia.contrib.xyzgrid.commands.html
@@ -373,11 +373,11 @@ self.add().
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/api/evennia.contrib.xyzgrid.example.html b/docs/1.0-dev/api/evennia.contrib.xyzgrid.example.html
index 6ee70ac6df..0689cc7077 100644
--- a/docs/1.0-dev/api/evennia.contrib.xyzgrid.example.html
+++ b/docs/1.0-dev/api/evennia.contrib.xyzgrid.example.html
@@ -121,11 +121,11 @@ into a room by only acts as a target for finding the exit’s destination.
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/api/evennia.contrib.xyzgrid.html b/docs/1.0-dev/api/evennia.contrib.xyzgrid.html
index 84473cc9c1..d1be00de9a 100644
--- a/docs/1.0-dev/api/evennia.contrib.xyzgrid.html
+++ b/docs/1.0-dev/api/evennia.contrib.xyzgrid.html
@@ -93,11 +93,11 @@
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/api/evennia.contrib.xyzgrid.launchcmd.html b/docs/1.0-dev/api/evennia.contrib.xyzgrid.launchcmd.html
index 8acb42c208..151b75b01f 100644
--- a/docs/1.0-dev/api/evennia.contrib.xyzgrid.launchcmd.html
+++ b/docs/1.0-dev/api/evennia.contrib.xyzgrid.launchcmd.html
@@ -91,11 +91,11 @@ once added to settings.EXTRA_LAUNCHER_COMMANDS.
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/api/evennia.contrib.xyzgrid.prototypes.html b/docs/1.0-dev/api/evennia.contrib.xyzgrid.prototypes.html
index eabafc2415..afc1b899b5 100644
--- a/docs/1.0-dev/api/evennia.contrib.xyzgrid.prototypes.html
+++ b/docs/1.0-dev/api/evennia.contrib.xyzgrid.prototypes.html
@@ -86,11 +86,11 @@
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/api/evennia.contrib.xyzgrid.tests.html b/docs/1.0-dev/api/evennia.contrib.xyzgrid.tests.html
index 6754a2b0b5..aa626f8861 100644
--- a/docs/1.0-dev/api/evennia.contrib.xyzgrid.tests.html
+++ b/docs/1.0-dev/api/evennia.contrib.xyzgrid.tests.html
@@ -1351,11 +1351,11 @@ different visibility distances.
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/api/evennia.contrib.xyzgrid.utils.html b/docs/1.0-dev/api/evennia.contrib.xyzgrid.utils.html
index d904ff006e..cf5266c3df 100644
--- a/docs/1.0-dev/api/evennia.contrib.xyzgrid.utils.html
+++ b/docs/1.0-dev/api/evennia.contrib.xyzgrid.utils.html
@@ -100,11 +100,11 @@ leads to another map.
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/api/evennia.contrib.xyzgrid.xymap.html b/docs/1.0-dev/api/evennia.contrib.xyzgrid.xymap.html
index e36b8552cd..ae845cfba6 100644
--- a/docs/1.0-dev/api/evennia.contrib.xyzgrid.xymap.html
+++ b/docs/1.0-dev/api/evennia.contrib.xyzgrid.xymap.html
@@ -512,11 +512,11 @@ weights and may also show nodes not actually reachable at the moment:
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/api/evennia.contrib.xyzgrid.xymap_legend.html b/docs/1.0-dev/api/evennia.contrib.xyzgrid.xymap_legend.html
index 786dd8b52d..ab2cf019c9 100644
--- a/docs/1.0-dev/api/evennia.contrib.xyzgrid.xymap_legend.html
+++ b/docs/1.0-dev/api/evennia.contrib.xyzgrid.xymap_legend.html
@@ -1262,11 +1262,11 @@ one-way link out of the teleporter on one side.
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/api/evennia.contrib.xyzgrid.xyzgrid.html b/docs/1.0-dev/api/evennia.contrib.xyzgrid.xyzgrid.html
index eaa38b4c76..fcccbb8063 100644
--- a/docs/1.0-dev/api/evennia.contrib.xyzgrid.xyzgrid.html
+++ b/docs/1.0-dev/api/evennia.contrib.xyzgrid.xyzgrid.html
@@ -262,9 +262,14 @@ Spawn exits only the given direction. If unset, all needed directions are spawne
-
-
evennia.contrib.xyzgrid.xyzgrid.get_xyzgrid()[source]¶
+evennia.contrib.xyzgrid.xyzgrid.get_xyzgrid(print_errors=True)[source]¶
Helper for getting the grid. This will create the XYZGrid global script if it didn’t
previously exist.
+
+- Parameters
+print_errors (bool, optional) – Print errors directly to console rather than to log.
+
+
@@ -300,11 +305,11 @@ previously exist.
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/api/evennia.contrib.xyzgrid.xyzroom.html b/docs/1.0-dev/api/evennia.contrib.xyzgrid.xyzroom.html
index 8971fa9edb..98c25baf52 100644
--- a/docs/1.0-dev/api/evennia.contrib.xyzgrid.xyzroom.html
+++ b/docs/1.0-dev/api/evennia.contrib.xyzgrid.xyzroom.html
@@ -504,11 +504,11 @@ be any room (including non-XYRooms) and is not checked for XYZ coordinates.<
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/api/evennia.help.filehelp.html b/docs/1.0-dev/api/evennia.help.filehelp.html
index 5d86a4c859..bbe54396ca 100644
--- a/docs/1.0-dev/api/evennia.help.filehelp.html
+++ b/docs/1.0-dev/api/evennia.help.filehelp.html
@@ -140,6 +140,44 @@ help command.
locks[source]¶
+
+-
+
web_get_detail_url()[source]¶
+Returns the URI path for a View that allows users to view details for
+this object.
+ex. Oscar (Character) = ‘/characters/oscar/1/’
+For this to work, the developer must have defined a named view somewhere
+in urls.py that follows the format ‘modelname-action’, so in this case
+a named view of ‘character-detail’ would be referenced by this method.
+ex.
+url(r'characters/(?P<slug>[\w\d\-]+)/(?P<pk>[0-9]+)/$',
+ CharDetailView.as_view(), name='character-detail')
+
+
+If no View has been created and defined in urls.py, returns an
+HTML anchor.
+This method is naive and simply returns a path. Securing access to
+the actual view and limiting who can view this object is the developer’s
+responsibility.
+
+- Returns
+path (str) – URI path to object detail page, if defined.
+
+
+
+
+
+-
+
web_get_admin_url()[source]¶
+Returns the URI path for the Django Admin page for this object.
+ex. Account#1 = ‘/admin/accounts/accountdb/1/change/’
+
+- Returns
+path (str) – URI path to Django Admin page for object.
+
+
+
+
-
access(accessing_obj, access_type='view', default=True)[source]¶
@@ -233,11 +271,11 @@ return a list of **FileHelpEntry.
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/api/evennia.help.html b/docs/1.0-dev/api/evennia.help.html
index b08968e2ec..c458cc77d2 100644
--- a/docs/1.0-dev/api/evennia.help.html
+++ b/docs/1.0-dev/api/evennia.help.html
@@ -85,11 +85,11 @@ itself.
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/api/evennia.help.manager.html b/docs/1.0-dev/api/evennia.help.manager.html
index b4889f6f90..70746d6156 100644
--- a/docs/1.0-dev/api/evennia.help.manager.html
+++ b/docs/1.0-dev/api/evennia.help.manager.html
@@ -211,11 +211,11 @@ up in one easily separated category.
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/api/evennia.help.models.html b/docs/1.0-dev/api/evennia.help.models.html
index 7b182a32b3..23674631cb 100644
--- a/docs/1.0-dev/api/evennia.help.models.html
+++ b/docs/1.0-dev/api/evennia.help.models.html
@@ -402,11 +402,11 @@ object the first time, the query is executed.
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/api/evennia.help.utils.html b/docs/1.0-dev/api/evennia.help.utils.html
index 26e3a86669..9888209ab3 100644
--- a/docs/1.0-dev/api/evennia.help.utils.html
+++ b/docs/1.0-dev/api/evennia.help.utils.html
@@ -175,11 +175,11 @@ followed by any sub-sub-categories down to a max-depth of 5.
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/api/evennia.html b/docs/1.0-dev/api/evennia.html
index eedd5c3326..6f5672fbad 100644
--- a/docs/1.0-dev/api/evennia.html
+++ b/docs/1.0-dev/api/evennia.html
@@ -571,11 +571,11 @@ with ‘q’, remove the break line and restart server when finished.
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/api/evennia.locks.html b/docs/1.0-dev/api/evennia.locks.html
index 65b81ddc8f..83bafad7fb 100644
--- a/docs/1.0-dev/api/evennia.locks.html
+++ b/docs/1.0-dev/api/evennia.locks.html
@@ -82,11 +82,11 @@ also contains the default lock functions used in lock definitions.
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/api/evennia.locks.lockfuncs.html b/docs/1.0-dev/api/evennia.locks.lockfuncs.html
index 41ede3e500..38c9092f22 100644
--- a/docs/1.0-dev/api/evennia.locks.lockfuncs.html
+++ b/docs/1.0-dev/api/evennia.locks.lockfuncs.html
@@ -424,11 +424,11 @@ unpacked to their real value. We only support basic properties.
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/api/evennia.locks.lockhandler.html b/docs/1.0-dev/api/evennia.locks.lockhandler.html
index bd5acca930..d547eb4a4b 100644
--- a/docs/1.0-dev/api/evennia.locks.lockhandler.html
+++ b/docs/1.0-dev/api/evennia.locks.lockhandler.html
@@ -445,11 +445,11 @@ among the locks defined by lockstring.
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/api/evennia.objects.html b/docs/1.0-dev/api/evennia.objects.html
index cafe9fb636..4098c4fff0 100644
--- a/docs/1.0-dev/api/evennia.objects.html
+++ b/docs/1.0-dev/api/evennia.objects.html
@@ -82,11 +82,11 @@ objects inherit from classes in this package.
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/api/evennia.objects.manager.html b/docs/1.0-dev/api/evennia.objects.manager.html
index 07de3923ba..317ffbcd94 100644
--- a/docs/1.0-dev/api/evennia.objects.manager.html
+++ b/docs/1.0-dev/api/evennia.objects.manager.html
@@ -80,11 +80,11 @@
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/api/evennia.objects.models.html b/docs/1.0-dev/api/evennia.objects.models.html
index db5a322784..e4697ced12 100644
--- a/docs/1.0-dev/api/evennia.objects.models.html
+++ b/docs/1.0-dev/api/evennia.objects.models.html
@@ -553,11 +553,11 @@ class built by **create_forward_many_to_many_manager()** define
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/api/evennia.objects.objects.html b/docs/1.0-dev/api/evennia.objects.objects.html
index 49c1265783..bedeeeef0b 100644
--- a/docs/1.0-dev/api/evennia.objects.objects.html
+++ b/docs/1.0-dev/api/evennia.objects.objects.html
@@ -1999,11 +1999,11 @@ read for an error string instead.
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/api/evennia.prototypes.html b/docs/1.0-dev/api/evennia.prototypes.html
index 98180c924d..2c919cc121 100644
--- a/docs/1.0-dev/api/evennia.prototypes.html
+++ b/docs/1.0-dev/api/evennia.prototypes.html
@@ -81,11 +81,11 @@
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/api/evennia.prototypes.menus.html b/docs/1.0-dev/api/evennia.prototypes.menus.html
index 79cb228eff..77a7088db5 100644
--- a/docs/1.0-dev/api/evennia.prototypes.menus.html
+++ b/docs/1.0-dev/api/evennia.prototypes.menus.html
@@ -186,11 +186,11 @@ prototype rather than creating a new one.
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/api/evennia.prototypes.protfuncs.html b/docs/1.0-dev/api/evennia.prototypes.protfuncs.html
index 9ca8c5f0ad..ea0258fd73 100644
--- a/docs/1.0-dev/api/evennia.prototypes.protfuncs.html
+++ b/docs/1.0-dev/api/evennia.prototypes.protfuncs.html
@@ -110,11 +110,11 @@ Returns the value of another key in this prototoype. Will raise an error if
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/api/evennia.prototypes.prototypes.html b/docs/1.0-dev/api/evennia.prototypes.prototypes.html
index 896f9a4729..4e97cf5586 100644
--- a/docs/1.0-dev/api/evennia.prototypes.prototypes.html
+++ b/docs/1.0-dev/api/evennia.prototypes.prototypes.html
@@ -503,11 +503,11 @@ validator (callable, optional): If given, this will be called with the value to<
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/api/evennia.prototypes.spawner.html b/docs/1.0-dev/api/evennia.prototypes.spawner.html
index 6b1b7384de..af424d82a6 100644
--- a/docs/1.0-dev/api/evennia.prototypes.spawner.html
+++ b/docs/1.0-dev/api/evennia.prototypes.spawner.html
@@ -509,11 +509,11 @@ custom prototype_parents are given to this function.
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/api/evennia.scripts.html b/docs/1.0-dev/api/evennia.scripts.html
index 53c4e61ced..2624ff343e 100644
--- a/docs/1.0-dev/api/evennia.scripts.html
+++ b/docs/1.0-dev/api/evennia.scripts.html
@@ -88,11 +88,11 @@ timed effects.
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/api/evennia.scripts.manager.html b/docs/1.0-dev/api/evennia.scripts.manager.html
index 09ea58d8a3..9db7ad495b 100644
--- a/docs/1.0-dev/api/evennia.scripts.manager.html
+++ b/docs/1.0-dev/api/evennia.scripts.manager.html
@@ -80,11 +80,11 @@
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/api/evennia.scripts.models.html b/docs/1.0-dev/api/evennia.scripts.models.html
index d5daa4eb7a..d00b5aafce 100644
--- a/docs/1.0-dev/api/evennia.scripts.models.html
+++ b/docs/1.0-dev/api/evennia.scripts.models.html
@@ -367,11 +367,11 @@ class built by **create_forward_many_to_many_manager()** define
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/api/evennia.scripts.monitorhandler.html b/docs/1.0-dev/api/evennia.scripts.monitorhandler.html
index 4825fd1e60..cd2dd139fc 100644
--- a/docs/1.0-dev/api/evennia.scripts.monitorhandler.html
+++ b/docs/1.0-dev/api/evennia.scripts.monitorhandler.html
@@ -189,11 +189,11 @@ all kwargs must be possible to pickle!
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/api/evennia.scripts.scripthandler.html b/docs/1.0-dev/api/evennia.scripts.scripthandler.html
index b71e85c95c..8875de6d64 100644
--- a/docs/1.0-dev/api/evennia.scripts.scripthandler.html
+++ b/docs/1.0-dev/api/evennia.scripts.scripthandler.html
@@ -174,11 +174,11 @@ If no key is given, delete all scripts on the object!
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/api/evennia.scripts.scripts.html b/docs/1.0-dev/api/evennia.scripts.scripts.html
index 354b1145b6..02e58893e4 100644
--- a/docs/1.0-dev/api/evennia.scripts.scripts.html
+++ b/docs/1.0-dev/api/evennia.scripts.scripts.html
@@ -289,11 +289,11 @@ could be used).
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/api/evennia.scripts.taskhandler.html b/docs/1.0-dev/api/evennia.scripts.taskhandler.html
index 70f73e6910..a028f6780a 100644
--- a/docs/1.0-dev/api/evennia.scripts.taskhandler.html
+++ b/docs/1.0-dev/api/evennia.scripts.taskhandler.html
@@ -552,11 +552,11 @@ This method should be automatically called when Evennia starts.
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/api/evennia.scripts.tickerhandler.html b/docs/1.0-dev/api/evennia.scripts.tickerhandler.html
index 38cc7df708..48289867a2 100644
--- a/docs/1.0-dev/api/evennia.scripts.tickerhandler.html
+++ b/docs/1.0-dev/api/evennia.scripts.tickerhandler.html
@@ -417,11 +417,11 @@ non-db objects.
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/api/evennia.server.amp_client.html b/docs/1.0-dev/api/evennia.server.amp_client.html
index d0b02a2543..b2f8a0e960 100644
--- a/docs/1.0-dev/api/evennia.server.amp_client.html
+++ b/docs/1.0-dev/api/evennia.server.amp_client.html
@@ -255,11 +255,11 @@ operation, as defined by the global variables in
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/api/evennia.server.connection_wizard.html b/docs/1.0-dev/api/evennia.server.connection_wizard.html
index 94b908e664..a2bce12b88 100644
--- a/docs/1.0-dev/api/evennia.server.connection_wizard.html
+++ b/docs/1.0-dev/api/evennia.server.connection_wizard.html
@@ -194,11 +194,11 @@ fails (and is expected to echo why if so).
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/api/evennia.server.deprecations.html b/docs/1.0-dev/api/evennia.server.deprecations.html
index 296f45265b..d5bc30e426 100644
--- a/docs/1.0-dev/api/evennia.server.deprecations.html
+++ b/docs/1.0-dev/api/evennia.server.deprecations.html
@@ -98,11 +98,11 @@ does not stop launch.
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/api/evennia.server.evennia_launcher.html b/docs/1.0-dev/api/evennia.server.evennia_launcher.html
index 2008788a41..69c4b08b57 100644
--- a/docs/1.0-dev/api/evennia.server.evennia_launcher.html
+++ b/docs/1.0-dev/api/evennia.server.evennia_launcher.html
@@ -601,11 +601,11 @@ in the terminal/console, for example:
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/api/evennia.server.game_index_client.client.html b/docs/1.0-dev/api/evennia.server.game_index_client.client.html
index 366231e6de..e6e0cf8b5a 100644
--- a/docs/1.0-dev/api/evennia.server.game_index_client.client.html
+++ b/docs/1.0-dev/api/evennia.server.game_index_client.client.html
@@ -184,11 +184,11 @@ to this Protocol. The connection has been closed.
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/api/evennia.server.game_index_client.html b/docs/1.0-dev/api/evennia.server.game_index_client.html
index 2dafe27343..45b28430f1 100644
--- a/docs/1.0-dev/api/evennia.server.game_index_client.html
+++ b/docs/1.0-dev/api/evennia.server.game_index_client.html
@@ -79,11 +79,11 @@
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/api/evennia.server.game_index_client.service.html b/docs/1.0-dev/api/evennia.server.game_index_client.service.html
index 92e0454aed..df2d6efefe 100644
--- a/docs/1.0-dev/api/evennia.server.game_index_client.service.html
+++ b/docs/1.0-dev/api/evennia.server.game_index_client.service.html
@@ -103,11 +103,11 @@ to the Evennia Game Index.
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/api/evennia.server.html b/docs/1.0-dev/api/evennia.server.html
index aab46244ff..99b4efbdc9 100644
--- a/docs/1.0-dev/api/evennia.server.html
+++ b/docs/1.0-dev/api/evennia.server.html
@@ -140,11 +140,11 @@ to connect to the game.
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/api/evennia.server.initial_setup.html b/docs/1.0-dev/api/evennia.server.initial_setup.html
index 53ac796961..6e45c98efe 100644
--- a/docs/1.0-dev/api/evennia.server.initial_setup.html
+++ b/docs/1.0-dev/api/evennia.server.initial_setup.html
@@ -40,28 +40,16 @@
evennia.server.initial_setup¶
-This module handles initial database propagation, which is only run the first
-time the game starts. It will create some default channels, objects, and
-other things.
+This module handles initial database propagation, which is only run the first time the game starts.
+It will create some default objects (notably give #1 its evennia-specific properties, and create the
+Limbo room). It will also hooks, and then perform an initial restart.
Everything starts at handle_setup()
-
--
-
evennia.server.initial_setup.get_god_account()[source]¶
-Creates the god user and don’t take no for an answer.
-
-
-
--
-
evennia.server.initial_setup.create_channels()[source]¶
-Creates some sensible default channels.
-
-
-
evennia.server.initial_setup.at_initial_setup()[source]¶
@@ -88,14 +76,14 @@ also checks so the warm-reset mechanism works as it should.
-
-
evennia.server.initial_setup.handle_setup(last_step)[source]¶
+evennia.server.initial_setup.handle_setup(last_step=None)[source]¶
Main logic for the module. It allows for restarting the
initialization at any point if one of the modules should crash.
- Parameters
-last_step (int) – The last stored successful step, for starting
-over on errors. If < 0, initialization has finished and no
-steps need to be redone.
+last_step (str, None) – The last stored successful step, for starting
+over on errors. None if starting from scratch. If this is ‘done’,
+the function will exit immediately.
@@ -133,11 +121,11 @@ steps need to be redone.
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/api/evennia.server.inputfuncs.html b/docs/1.0-dev/api/evennia.server.inputfuncs.html
index 79ff525876..61ec422885 100644
--- a/docs/1.0-dev/api/evennia.server.inputfuncs.html
+++ b/docs/1.0-dev/api/evennia.server.inputfuncs.html
@@ -372,11 +372,11 @@ logging a missing inputfunc for it.
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/api/evennia.server.manager.html b/docs/1.0-dev/api/evennia.server.manager.html
index 3bd4d69ffa..d9495d6a52 100644
--- a/docs/1.0-dev/api/evennia.server.manager.html
+++ b/docs/1.0-dev/api/evennia.server.manager.html
@@ -111,11 +111,11 @@ value (str): If key was given, this is the stored value, or
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/api/evennia.server.models.html b/docs/1.0-dev/api/evennia.server.models.html
index 2de65f61f2..43712ea0b6 100644
--- a/docs/1.0-dev/api/evennia.server.models.html
+++ b/docs/1.0-dev/api/evennia.server.models.html
@@ -165,11 +165,11 @@ object the first time, the query is executed.
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/api/evennia.server.portal.amp.html b/docs/1.0-dev/api/evennia.server.portal.amp.html
index 81b56928c2..0fa2f2cd22 100644
--- a/docs/1.0-dev/api/evennia.server.portal.amp.html
+++ b/docs/1.0-dev/api/evennia.server.portal.amp.html
@@ -548,11 +548,11 @@ function call
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/api/evennia.server.portal.amp_server.html b/docs/1.0-dev/api/evennia.server.portal.amp_server.html
index 3c2fdffa78..4ee5479cdd 100644
--- a/docs/1.0-dev/api/evennia.server.portal.amp_server.html
+++ b/docs/1.0-dev/api/evennia.server.portal.amp_server.html
@@ -296,11 +296,11 @@ global variables in evennia/server/amp.py.
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/api/evennia.server.portal.grapevine.html b/docs/1.0-dev/api/evennia.server.portal.grapevine.html
index 82edafd911..523f98e952 100644
--- a/docs/1.0-dev/api/evennia.server.portal.grapevine.html
+++ b/docs/1.0-dev/api/evennia.server.portal.grapevine.html
@@ -293,11 +293,11 @@ disconnect this protocol.
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/api/evennia.server.portal.html b/docs/1.0-dev/api/evennia.server.portal.html
index c9194313d9..229912c16a 100644
--- a/docs/1.0-dev/api/evennia.server.portal.html
+++ b/docs/1.0-dev/api/evennia.server.portal.html
@@ -98,11 +98,11 @@
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/api/evennia.server.portal.irc.html b/docs/1.0-dev/api/evennia.server.portal.irc.html
index 0cd8539610..99c43d1be6 100644
--- a/docs/1.0-dev/api/evennia.server.portal.irc.html
+++ b/docs/1.0-dev/api/evennia.server.portal.irc.html
@@ -409,11 +409,11 @@ sessions.
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/api/evennia.server.portal.mccp.html b/docs/1.0-dev/api/evennia.server.portal.mccp.html
index 1a1242b458..de793b1652 100644
--- a/docs/1.0-dev/api/evennia.server.portal.mccp.html
+++ b/docs/1.0-dev/api/evennia.server.portal.mccp.html
@@ -143,11 +143,11 @@ creating a zlib compression stream.
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/api/evennia.server.portal.mssp.html b/docs/1.0-dev/api/evennia.server.portal.mssp.html
index eb17b1a2ab..ca32273aea 100644
--- a/docs/1.0-dev/api/evennia.server.portal.mssp.html
+++ b/docs/1.0-dev/api/evennia.server.portal.mssp.html
@@ -144,11 +144,11 @@ operation.
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/api/evennia.server.portal.mxp.html b/docs/1.0-dev/api/evennia.server.portal.mxp.html
index c01d53c33f..7b8bd368a3 100644
--- a/docs/1.0-dev/api/evennia.server.portal.mxp.html
+++ b/docs/1.0-dev/api/evennia.server.portal.mxp.html
@@ -136,11 +136,11 @@ that supports it (mudlet, zmud, mushclient are a few)
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/api/evennia.server.portal.naws.html b/docs/1.0-dev/api/evennia.server.portal.naws.html
index 3d96eb87c1..327c301eb8 100644
--- a/docs/1.0-dev/api/evennia.server.portal.naws.html
+++ b/docs/1.0-dev/api/evennia.server.portal.naws.html
@@ -132,11 +132,11 @@ operation.
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/api/evennia.server.portal.portal.html b/docs/1.0-dev/api/evennia.server.portal.portal.html
index e1c36cee6e..33ffb5ed96 100644
--- a/docs/1.0-dev/api/evennia.server.portal.portal.html
+++ b/docs/1.0-dev/api/evennia.server.portal.portal.html
@@ -131,11 +131,11 @@ case it always needs to be restarted manually.
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/api/evennia.server.portal.portalsessionhandler.html b/docs/1.0-dev/api/evennia.server.portal.portalsessionhandler.html
index 748db36b5a..b5756d8712 100644
--- a/docs/1.0-dev/api/evennia.server.portal.portalsessionhandler.html
+++ b/docs/1.0-dev/api/evennia.server.portal.portalsessionhandler.html
@@ -332,11 +332,11 @@ method exixts, it sends the data to a method send_default.
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/api/evennia.server.portal.rss.html b/docs/1.0-dev/api/evennia.server.portal.rss.html
index 1ab6b3a414..7de271bf6e 100644
--- a/docs/1.0-dev/api/evennia.server.portal.rss.html
+++ b/docs/1.0-dev/api/evennia.server.portal.rss.html
@@ -173,11 +173,11 @@ on slow connections.
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/api/evennia.server.portal.ssh.html b/docs/1.0-dev/api/evennia.server.portal.ssh.html
index 954f101d0d..22b14dadc8 100644
--- a/docs/1.0-dev/api/evennia.server.portal.ssh.html
+++ b/docs/1.0-dev/api/evennia.server.portal.ssh.html
@@ -394,11 +394,11 @@ do not exist, the keypair is created.
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/api/evennia.server.portal.ssl.html b/docs/1.0-dev/api/evennia.server.portal.ssl.html
index 74d0b54857..3eb40adc12 100644
--- a/docs/1.0-dev/api/evennia.server.portal.ssl.html
+++ b/docs/1.0-dev/api/evennia.server.portal.ssl.html
@@ -114,11 +114,11 @@ server-side.
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/api/evennia.server.portal.suppress_ga.html b/docs/1.0-dev/api/evennia.server.portal.suppress_ga.html
index 2e6657239e..75d8d99152 100644
--- a/docs/1.0-dev/api/evennia.server.portal.suppress_ga.html
+++ b/docs/1.0-dev/api/evennia.server.portal.suppress_ga.html
@@ -122,11 +122,11 @@ protocol to set it up.
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/api/evennia.server.portal.telnet.html b/docs/1.0-dev/api/evennia.server.portal.telnet.html
index 0ef35181f1..70dcb6ef8b 100644
--- a/docs/1.0-dev/api/evennia.server.portal.telnet.html
+++ b/docs/1.0-dev/api/evennia.server.portal.telnet.html
@@ -315,11 +315,11 @@ Note that it must be actively turned back on again!
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/api/evennia.server.portal.telnet_oob.html b/docs/1.0-dev/api/evennia.server.portal.telnet_oob.html
index a60f6d371c..baa3e60792 100644
--- a/docs/1.0-dev/api/evennia.server.portal.telnet_oob.html
+++ b/docs/1.0-dev/api/evennia.server.portal.telnet_oob.html
@@ -285,11 +285,11 @@ We assume the structure is valid JSON.
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/api/evennia.server.portal.telnet_ssl.html b/docs/1.0-dev/api/evennia.server.portal.telnet_ssl.html
index 71f437a933..8e6bf7d632 100644
--- a/docs/1.0-dev/api/evennia.server.portal.telnet_ssl.html
+++ b/docs/1.0-dev/api/evennia.server.portal.telnet_ssl.html
@@ -125,11 +125,11 @@ server-side.
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/api/evennia.server.portal.tests.html b/docs/1.0-dev/api/evennia.server.portal.tests.html
index 4d065dcb6e..975b5e4f03 100644
--- a/docs/1.0-dev/api/evennia.server.portal.tests.html
+++ b/docs/1.0-dev/api/evennia.server.portal.tests.html
@@ -181,11 +181,11 @@ its inverse gives the correct string.
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/api/evennia.server.portal.ttype.html b/docs/1.0-dev/api/evennia.server.portal.ttype.html
index 86112c1a62..d45d215eb9 100644
--- a/docs/1.0-dev/api/evennia.server.portal.ttype.html
+++ b/docs/1.0-dev/api/evennia.server.portal.ttype.html
@@ -131,11 +131,11 @@ stored on protocol.protocol_flags under the TTYPE key.
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/api/evennia.server.portal.webclient.html b/docs/1.0-dev/api/evennia.server.portal.webclient.html
index edfe15f989..d6a1bb616b 100644
--- a/docs/1.0-dev/api/evennia.server.portal.webclient.html
+++ b/docs/1.0-dev/api/evennia.server.portal.webclient.html
@@ -248,11 +248,11 @@ client instead.
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/api/evennia.server.portal.webclient_ajax.html b/docs/1.0-dev/api/evennia.server.portal.webclient_ajax.html
index 47d4841fa9..9faac1b779 100644
--- a/docs/1.0-dev/api/evennia.server.portal.webclient_ajax.html
+++ b/docs/1.0-dev/api/evennia.server.portal.webclient_ajax.html
@@ -378,11 +378,11 @@ client instead.
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/api/evennia.server.profiling.dummyrunner.html b/docs/1.0-dev/api/evennia.server.profiling.dummyrunner.html
index 7de452833a..1fc97a3569 100644
--- a/docs/1.0-dev/api/evennia.server.profiling.dummyrunner.html
+++ b/docs/1.0-dev/api/evennia.server.profiling.dummyrunner.html
@@ -330,11 +330,11 @@ all “intelligence” of the dummy client.
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/api/evennia.server.profiling.dummyrunner_settings.html b/docs/1.0-dev/api/evennia.server.profiling.dummyrunner_settings.html
index 08f3c077ec..8677746c88 100644
--- a/docs/1.0-dev/api/evennia.server.profiling.dummyrunner_settings.html
+++ b/docs/1.0-dev/api/evennia.server.profiling.dummyrunner_settings.html
@@ -213,11 +213,11 @@ dummyrunner output about just how fast commands are being processed.
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/api/evennia.server.profiling.html b/docs/1.0-dev/api/evennia.server.profiling.html
index 355453801b..bc7d3fbcf6 100644
--- a/docs/1.0-dev/api/evennia.server.profiling.html
+++ b/docs/1.0-dev/api/evennia.server.profiling.html
@@ -84,11 +84,11 @@
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/api/evennia.server.profiling.memplot.html b/docs/1.0-dev/api/evennia.server.profiling.memplot.html
index 870e38e280..5eb72d055b 100644
--- a/docs/1.0-dev/api/evennia.server.profiling.memplot.html
+++ b/docs/1.0-dev/api/evennia.server.profiling.memplot.html
@@ -118,11 +118,11 @@ the script will append to this file if it already exists.
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/api/evennia.server.profiling.settings_mixin.html b/docs/1.0-dev/api/evennia.server.profiling.settings_mixin.html
index 8b562b69d2..34b3c6e4ef 100644
--- a/docs/1.0-dev/api/evennia.server.profiling.settings_mixin.html
+++ b/docs/1.0-dev/api/evennia.server.profiling.settings_mixin.html
@@ -80,11 +80,11 @@ servers!
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/api/evennia.server.profiling.test_queries.html b/docs/1.0-dev/api/evennia.server.profiling.test_queries.html
index 5507354d22..b3a38cc804 100644
--- a/docs/1.0-dev/api/evennia.server.profiling.test_queries.html
+++ b/docs/1.0-dev/api/evennia.server.profiling.test_queries.html
@@ -82,11 +82,11 @@ to setup the environment to test.
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/api/evennia.server.profiling.tests.html b/docs/1.0-dev/api/evennia.server.profiling.tests.html
index f2a94e63dc..c3ff2cde23 100644
--- a/docs/1.0-dev/api/evennia.server.profiling.tests.html
+++ b/docs/1.0-dev/api/evennia.server.profiling.tests.html
@@ -176,11 +176,11 @@
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/api/evennia.server.profiling.timetrace.html b/docs/1.0-dev/api/evennia.server.profiling.timetrace.html
index 76ea7b485f..2a9989b40d 100644
--- a/docs/1.0-dev/api/evennia.server.profiling.timetrace.html
+++ b/docs/1.0-dev/api/evennia.server.profiling.timetrace.html
@@ -91,11 +91,11 @@ This message will get attached time stamp.
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/api/evennia.server.server.html b/docs/1.0-dev/api/evennia.server.server.html
index 83e130ee3b..e259da58d5 100644
--- a/docs/1.0-dev/api/evennia.server.server.html
+++ b/docs/1.0-dev/api/evennia.server.server.html
@@ -83,7 +83,13 @@ already existing objects.
to the portal has been established.
This attempts to run the initial_setup script of the server.
It returns if this is not the first time the server starts.
-Once finished the last_initial_setup_step is set to -1.
+Once finished the last_initial_setup_step is set to ‘done’
+
+
+
+-
+
create_default_channels()[source]¶
+check so default channels exist on every restart, create if not.
@@ -210,11 +216,11 @@ shutdown or a reset.
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/api/evennia.server.serversession.html b/docs/1.0-dev/api/evennia.server.serversession.html
index 92a9d0f130..9a1e40a2e7 100644
--- a/docs/1.0-dev/api/evennia.server.serversession.html
+++ b/docs/1.0-dev/api/evennia.server.serversession.html
@@ -381,11 +381,11 @@ property, e.g. obj.ndb.attr = value etc.
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/api/evennia.server.session.html b/docs/1.0-dev/api/evennia.server.session.html
index 89a51e4885..044c6f7464 100644
--- a/docs/1.0-dev/api/evennia.server.session.html
+++ b/docs/1.0-dev/api/evennia.server.session.html
@@ -186,11 +186,11 @@ should overload this to format/handle the outgoing data as needed.
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/api/evennia.server.sessionhandler.html b/docs/1.0-dev/api/evennia.server.sessionhandler.html
index efab26ca58..d90c51830d 100644
--- a/docs/1.0-dev/api/evennia.server.sessionhandler.html
+++ b/docs/1.0-dev/api/evennia.server.sessionhandler.html
@@ -593,11 +593,11 @@ on the form commandname=((args), {kwargs}).
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/api/evennia.server.signals.html b/docs/1.0-dev/api/evennia.server.signals.html
index d716eda0b9..c2055e5e71 100644
--- a/docs/1.0-dev/api/evennia.server.signals.html
+++ b/docs/1.0-dev/api/evennia.server.signals.html
@@ -87,11 +87,11 @@ without necessitating a full takeover of hooks that may be in high demand.
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/api/evennia.server.throttle.html b/docs/1.0-dev/api/evennia.server.throttle.html
index 47befc5558..915b85fc1e 100644
--- a/docs/1.0-dev/api/evennia.server.throttle.html
+++ b/docs/1.0-dev/api/evennia.server.throttle.html
@@ -226,11 +226,11 @@ fails recently.
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/api/evennia.server.validators.html b/docs/1.0-dev/api/evennia.server.validators.html
index f97627d7e5..ddd0367c1f 100644
--- a/docs/1.0-dev/api/evennia.server.validators.html
+++ b/docs/1.0-dev/api/evennia.server.validators.html
@@ -135,11 +135,11 @@ by this validator.
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/api/evennia.server.webserver.html b/docs/1.0-dev/api/evennia.server.webserver.html
index f927955139..04bb21d230 100644
--- a/docs/1.0-dev/api/evennia.server.webserver.html
+++ b/docs/1.0-dev/api/evennia.server.webserver.html
@@ -293,11 +293,11 @@ directory this path represents.
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/api/evennia.settings_default.html b/docs/1.0-dev/api/evennia.settings_default.html
index a8806e7c24..1f66e0a96d 100644
--- a/docs/1.0-dev/api/evennia.settings_default.html
+++ b/docs/1.0-dev/api/evennia.settings_default.html
@@ -81,11 +81,11 @@ always be sure of what you have changed and what is default behaviour.
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/api/evennia.typeclasses.attributes.html b/docs/1.0-dev/api/evennia.typeclasses.attributes.html
index e303dad892..d610422620 100644
--- a/docs/1.0-dev/api/evennia.typeclasses.attributes.html
+++ b/docs/1.0-dev/api/evennia.typeclasses.attributes.html
@@ -1440,11 +1440,11 @@ with nicks stored on the Account level.
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/api/evennia.typeclasses.html b/docs/1.0-dev/api/evennia.typeclasses.html
index f043973192..60f6af54ab 100644
--- a/docs/1.0-dev/api/evennia.typeclasses.html
+++ b/docs/1.0-dev/api/evennia.typeclasses.html
@@ -87,11 +87,11 @@ Attribute and Tag models are defined along with their handlers.
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/api/evennia.typeclasses.managers.html b/docs/1.0-dev/api/evennia.typeclasses.managers.html
index 8e6c0b234a..8b7ac08b27 100644
--- a/docs/1.0-dev/api/evennia.typeclasses.managers.html
+++ b/docs/1.0-dev/api/evennia.typeclasses.managers.html
@@ -480,11 +480,11 @@ Mutually exclusive to include_children.
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/api/evennia.typeclasses.models.html b/docs/1.0-dev/api/evennia.typeclasses.models.html
index 6f9b7a7edf..c17d15f779 100644
--- a/docs/1.0-dev/api/evennia.typeclasses.models.html
+++ b/docs/1.0-dev/api/evennia.typeclasses.models.html
@@ -742,11 +742,11 @@ developer’s responsibility.
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/api/evennia.typeclasses.tags.html b/docs/1.0-dev/api/evennia.typeclasses.tags.html
index 03ed179849..ecdfdfab42 100644
--- a/docs/1.0-dev/api/evennia.typeclasses.tags.html
+++ b/docs/1.0-dev/api/evennia.typeclasses.tags.html
@@ -453,11 +453,11 @@ of a latter tuple with the same category).
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/api/evennia.utils.ansi.html b/docs/1.0-dev/api/evennia.utils.ansi.html
index a9a88d822c..6648fcd409 100644
--- a/docs/1.0-dev/api/evennia.utils.ansi.html
+++ b/docs/1.0-dev/api/evennia.utils.ansi.html
@@ -939,11 +939,11 @@ with.
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/api/evennia.utils.batchprocessors.html b/docs/1.0-dev/api/evennia.utils.batchprocessors.html
index 43bd4a1a46..d32bfaec72 100644
--- a/docs/1.0-dev/api/evennia.utils.batchprocessors.html
+++ b/docs/1.0-dev/api/evennia.utils.batchprocessors.html
@@ -385,11 +385,11 @@ namespace.
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/api/evennia.utils.containers.html b/docs/1.0-dev/api/evennia.utils.containers.html
index de8e6bb34d..8d593e3d40 100644
--- a/docs/1.0-dev/api/evennia.utils.containers.html
+++ b/docs/1.0-dev/api/evennia.utils.containers.html
@@ -220,11 +220,11 @@ scripts defined in settings.
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/api/evennia.utils.create.html b/docs/1.0-dev/api/evennia.utils.create.html
index 0d68823836..722f9495cd 100644
--- a/docs/1.0-dev/api/evennia.utils.create.html
+++ b/docs/1.0-dev/api/evennia.utils.create.html
@@ -289,11 +289,11 @@ operations and is thus not suitable for play-testing the game.
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/api/evennia.utils.dbserialize.html b/docs/1.0-dev/api/evennia.utils.dbserialize.html
index 656220b198..74bfe5cd41 100644
--- a/docs/1.0-dev/api/evennia.utils.dbserialize.html
+++ b/docs/1.0-dev/api/evennia.utils.dbserialize.html
@@ -155,11 +155,11 @@ _SaverList, _SaverDict and _SaverSet counterparts.
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/api/evennia.utils.eveditor.html b/docs/1.0-dev/api/evennia.utils.eveditor.html
index ff326add86..9b8ee1fcef 100644
--- a/docs/1.0-dev/api/evennia.utils.eveditor.html
+++ b/docs/1.0-dev/api/evennia.utils.eveditor.html
@@ -275,7 +275,7 @@ indentation.
-
-
aliases = [':>', ':r', ':=', ':j', ':s', ':p', ':A', ':uu', ':f', ':echo', ':fd', ':S', ':y', ':wq', ':h', ':DD', ':', ':I', '::', ':x', ':u', ':<', ':UU', ':i', ':dw', ':q!', ':::', ':fi', ':q', ':w', ':dd', ':!']¶
+aliases = [':::', ':=', ':uu', ':q!', ':S', ':A', ':wq', ':h', ':>', ':<', ':p', ':j', ':fd', ':w', ':i', '::', ':I', ':u', ':x', ':s', ':q', ':dw', ':f', ':y', ':UU', ':!', ':DD', ':fi', ':echo', ':r', ':', ':dd']¶
@@ -303,7 +303,7 @@ efficient presentation.
-
-
search_index_entry = {'aliases': ':> :r := :j :s :p :A :uu :f :echo :fd :S :y :wq :h :DD : :I :: :x :u :< :UU :i :dw :q! ::: :fi :q :w :dd :!', 'category': 'general', 'key': ':editor_command_group', 'tags': '', 'text': '\n Commands for the editor\n '}¶
+search_index_entry = {'aliases': '::: := :uu :q! :S :A :wq :h :> :< :p :j :fd :w :i :: :I :u :x :s :q :dw :f :y :UU :! :DD :fi :echo :r : :dd', 'category': 'general', 'key': ':editor_command_group', 'tags': '', 'text': '\n Commands for the editor\n '}¶
@@ -522,11 +522,11 @@ formatting information.
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/api/evennia.utils.evform.html b/docs/1.0-dev/api/evennia.utils.evform.html
index 326a3a11f3..a65838a73f 100644
--- a/docs/1.0-dev/api/evennia.utils.evform.html
+++ b/docs/1.0-dev/api/evennia.utils.evform.html
@@ -251,11 +251,11 @@ If this is given, filename is not read.
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/api/evennia.utils.evmenu.html b/docs/1.0-dev/api/evennia.utils.evmenu.html
index b4637e29b1..dfd58d5aec 100644
--- a/docs/1.0-dev/api/evennia.utils.evmenu.html
+++ b/docs/1.0-dev/api/evennia.utils.evmenu.html
@@ -941,7 +941,7 @@ single question.
+aliases = ['a', 'abort', 'y', 'no', 'yes', '__nomatch_command', 'n']¶
@@ -967,7 +967,7 @@ single question.
+search_index_entry = {'aliases': 'a abort y no yes __nomatch_command n', 'category': 'general', 'key': '__noinput_command', 'tags': '', 'text': '\n Handle a prompt for yes or no. Press [return] for the default choice.\n\n '}¶
@@ -1157,11 +1157,11 @@ Must be on the form callable(caller, raw_string, **kwargs).
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/api/evennia.utils.evmore.html b/docs/1.0-dev/api/evennia.utils.evmore.html
index 7d149b89d8..d26a489ae7 100644
--- a/docs/1.0-dev/api/evennia.utils.evmore.html
+++ b/docs/1.0-dev/api/evennia.utils.evmore.html
@@ -76,7 +76,7 @@ the caller.msg() construct every time the page is updated.
-
-
aliases = ['q', 'abort', 'next', 'back', 'b', 't', 'a', 'n', 'top', 'e', 'quit', 'end']¶
+aliases = ['t', 'back', 'abort', 'a', 'quit', 'next', 'q', 'e', 'top', 'n', 'b', 'end']¶
@@ -102,7 +102,7 @@ the caller.msg() construct every time the page is updated.
-
-
search_index_entry = {'aliases': 'q abort next back b t a n top e quit end', 'category': 'general', 'key': '__noinput_command', 'tags': '', 'text': '\n Manipulate the text paging\n '}¶
+search_index_entry = {'aliases': 't back abort a quit next q e top n b end', 'category': 'general', 'key': '__noinput_command', 'tags': '', 'text': '\n Manipulate the text paging\n '}¶
@@ -532,11 +532,11 @@ the evmore commands will be available when this is run).
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/api/evennia.utils.evtable.html b/docs/1.0-dev/api/evennia.utils.evtable.html
index 0eacc1a5be..564f375896 100644
--- a/docs/1.0-dev/api/evennia.utils.evtable.html
+++ b/docs/1.0-dev/api/evennia.utils.evtable.html
@@ -641,11 +641,11 @@ given from 0 to Ncolumns-1.
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/api/evennia.utils.funcparser.html b/docs/1.0-dev/api/evennia.utils.funcparser.html
index d7a8b21e70..d1dad622d9 100644
--- a/docs/1.0-dev/api/evennia.utils.funcparser.html
+++ b/docs/1.0-dev/api/evennia.utils.funcparser.html
@@ -680,11 +680,11 @@ Others will see “With a grin, CharName jumps.”
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/api/evennia.utils.gametime.html b/docs/1.0-dev/api/evennia.utils.gametime.html
index 284913927f..3b2ea3ba09 100644
--- a/docs/1.0-dev/api/evennia.utils.gametime.html
+++ b/docs/1.0-dev/api/evennia.utils.gametime.html
@@ -262,11 +262,11 @@ the epoch set by settings.TIME_GAME_EPOCH will still apply.
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/api/evennia.utils.html b/docs/1.0-dev/api/evennia.utils.html
index 236bba4de8..22230179b9 100644
--- a/docs/1.0-dev/api/evennia.utils.html
+++ b/docs/1.0-dev/api/evennia.utils.html
@@ -132,11 +132,11 @@ functionality.
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/api/evennia.utils.idmapper.html b/docs/1.0-dev/api/evennia.utils.idmapper.html
index b87c3626d3..0ba14fc5b4 100644
--- a/docs/1.0-dev/api/evennia.utils.idmapper.html
+++ b/docs/1.0-dev/api/evennia.utils.idmapper.html
@@ -81,11 +81,11 @@
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/api/evennia.utils.idmapper.manager.html b/docs/1.0-dev/api/evennia.utils.idmapper.manager.html
index cb4d6e14a0..17dc286f9f 100644
--- a/docs/1.0-dev/api/evennia.utils.idmapper.manager.html
+++ b/docs/1.0-dev/api/evennia.utils.idmapper.manager.html
@@ -86,11 +86,11 @@
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/api/evennia.utils.idmapper.models.html b/docs/1.0-dev/api/evennia.utils.idmapper.models.html
index 511c5d7b8d..6cd8a5843b 100644
--- a/docs/1.0-dev/api/evennia.utils.idmapper.models.html
+++ b/docs/1.0-dev/api/evennia.utils.idmapper.models.html
@@ -298,11 +298,11 @@ catch in an easy way here. Ideas are appreciated. /Griatch
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/api/evennia.utils.idmapper.tests.html b/docs/1.0-dev/api/evennia.utils.idmapper.tests.html
index ac82e50b3c..a05efbd5dd 100644
--- a/docs/1.0-dev/api/evennia.utils.idmapper.tests.html
+++ b/docs/1.0-dev/api/evennia.utils.idmapper.tests.html
@@ -395,11 +395,11 @@ object the first time, the query is executed.
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/api/evennia.utils.logger.html b/docs/1.0-dev/api/evennia.utils.logger.html
index 83f476eb0b..400c1a4366 100644
--- a/docs/1.0-dev/api/evennia.utils.logger.html
+++ b/docs/1.0-dev/api/evennia.utils.logger.html
@@ -469,11 +469,11 @@ all if the file is shorter than nlines.
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/api/evennia.utils.optionclasses.html b/docs/1.0-dev/api/evennia.utils.optionclasses.html
index e10e4d499b..541e1e4feb 100644
--- a/docs/1.0-dev/api/evennia.utils.optionclasses.html
+++ b/docs/1.0-dev/api/evennia.utils.optionclasses.html
@@ -888,11 +888,11 @@ entries are processed.
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/api/evennia.utils.optionhandler.html b/docs/1.0-dev/api/evennia.utils.optionhandler.html
index 45a93fa49e..18a051ca54 100644
--- a/docs/1.0-dev/api/evennia.utils.optionhandler.html
+++ b/docs/1.0-dev/api/evennia.utils.optionhandler.html
@@ -196,11 +196,11 @@ than their values.
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/api/evennia.utils.picklefield.html b/docs/1.0-dev/api/evennia.utils.picklefield.html
index 6c13adb2c0..6f91bee434 100644
--- a/docs/1.0-dev/api/evennia.utils.picklefield.html
+++ b/docs/1.0-dev/api/evennia.utils.picklefield.html
@@ -240,11 +240,11 @@ This is used by the serialization framework.
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/api/evennia.utils.search.html b/docs/1.0-dev/api/evennia.utils.search.html
index 4e3e75e009..647004a47c 100644
--- a/docs/1.0-dev/api/evennia.utils.search.html
+++ b/docs/1.0-dev/api/evennia.utils.search.html
@@ -347,11 +347,11 @@ matches were found.
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/api/evennia.utils.test_resources.html b/docs/1.0-dev/api/evennia.utils.test_resources.html
index 13f2d1cb3d..d30ca98887 100644
--- a/docs/1.0-dev/api/evennia.utils.test_resources.html
+++ b/docs/1.0-dev/api/evennia.utils.test_resources.html
@@ -202,11 +202,11 @@ It helps ensure your tests are run with your own objects.
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/api/evennia.utils.text2html.html b/docs/1.0-dev/api/evennia.utils.text2html.html
index 77432110b1..b9cb5f9ce3 100644
--- a/docs/1.0-dev/api/evennia.utils.text2html.html
+++ b/docs/1.0-dev/api/evennia.utils.text2html.html
@@ -449,11 +449,11 @@ into html statements.
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/api/evennia.utils.utils.html b/docs/1.0-dev/api/evennia.utils.utils.html
index f1c9c4ebd8..0814bf1468 100644
--- a/docs/1.0-dev/api/evennia.utils.utils.html
+++ b/docs/1.0-dev/api/evennia.utils.utils.html
@@ -1660,11 +1660,11 @@ def _funcname(*args, **kwargs):
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/api/evennia.utils.validatorfuncs.html b/docs/1.0-dev/api/evennia.utils.validatorfuncs.html
index d43947e124..a10d7ae6da 100644
--- a/docs/1.0-dev/api/evennia.utils.validatorfuncs.html
+++ b/docs/1.0-dev/api/evennia.utils.validatorfuncs.html
@@ -196,11 +196,11 @@ ignored.
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/api/evennia.utils.verb_conjugation.conjugate.html b/docs/1.0-dev/api/evennia.utils.verb_conjugation.conjugate.html
index 43d4a4533e..7a5702de6b 100644
--- a/docs/1.0-dev/api/evennia.utils.verb_conjugation.conjugate.html
+++ b/docs/1.0-dev/api/evennia.utils.verb_conjugation.conjugate.html
@@ -327,11 +327,11 @@ need, dare, ought.
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/api/evennia.utils.verb_conjugation.html b/docs/1.0-dev/api/evennia.utils.verb_conjugation.html
index fe70e7fa8a..793a4f7d82 100644
--- a/docs/1.0-dev/api/evennia.utils.verb_conjugation.html
+++ b/docs/1.0-dev/api/evennia.utils.verb_conjugation.html
@@ -79,11 +79,11 @@
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/api/evennia.utils.verb_conjugation.tests.html b/docs/1.0-dev/api/evennia.utils.verb_conjugation.tests.html
index bf19924b94..eefc8778b9 100644
--- a/docs/1.0-dev/api/evennia.utils.verb_conjugation.tests.html
+++ b/docs/1.0-dev/api/evennia.utils.verb_conjugation.tests.html
@@ -776,11 +776,11 @@
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/api/evennia.web.admin.accounts.html b/docs/1.0-dev/api/evennia.web.admin.accounts.html
index 9657a55344..86d7209f5a 100644
--- a/docs/1.0-dev/api/evennia.web.admin.accounts.html
+++ b/docs/1.0-dev/api/evennia.web.admin.accounts.html
@@ -457,11 +457,11 @@ has a slightly different workflow.
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/api/evennia.web.admin.attributes.html b/docs/1.0-dev/api/evennia.web.admin.attributes.html
index 96944e89cd..1115457e60 100644
--- a/docs/1.0-dev/api/evennia.web.admin.attributes.html
+++ b/docs/1.0-dev/api/evennia.web.admin.attributes.html
@@ -216,11 +216,11 @@ people used the admin at the same time
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/api/evennia.web.admin.comms.html b/docs/1.0-dev/api/evennia.web.admin.comms.html
index 84d15e216b..14aeab2795 100644
--- a/docs/1.0-dev/api/evennia.web.admin.comms.html
+++ b/docs/1.0-dev/api/evennia.web.admin.comms.html
@@ -457,11 +457,11 @@
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/api/evennia.web.admin.frontpage.html b/docs/1.0-dev/api/evennia.web.admin.frontpage.html
index 970027074c..c2e108c393 100644
--- a/docs/1.0-dev/api/evennia.web.admin.frontpage.html
+++ b/docs/1.0-dev/api/evennia.web.admin.frontpage.html
@@ -86,11 +86,11 @@
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/api/evennia.web.admin.help.html b/docs/1.0-dev/api/evennia.web.admin.help.html
index 991f01441b..6324ee2103 100644
--- a/docs/1.0-dev/api/evennia.web.admin.help.html
+++ b/docs/1.0-dev/api/evennia.web.admin.help.html
@@ -209,11 +209,11 @@
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/api/evennia.web.admin.html b/docs/1.0-dev/api/evennia.web.admin.html
index 914224bddb..f36a434464 100644
--- a/docs/1.0-dev/api/evennia.web.admin.html
+++ b/docs/1.0-dev/api/evennia.web.admin.html
@@ -89,11 +89,11 @@
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/api/evennia.web.admin.objects.html b/docs/1.0-dev/api/evennia.web.admin.objects.html
index 120bf7aa37..b51d5358ba 100644
--- a/docs/1.0-dev/api/evennia.web.admin.objects.html
+++ b/docs/1.0-dev/api/evennia.web.admin.objects.html
@@ -377,11 +377,11 @@
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/api/evennia.web.admin.scripts.html b/docs/1.0-dev/api/evennia.web.admin.scripts.html
index 55fb742e36..8d74fbfc4f 100644
--- a/docs/1.0-dev/api/evennia.web.admin.scripts.html
+++ b/docs/1.0-dev/api/evennia.web.admin.scripts.html
@@ -73,12 +73,6 @@
alias of evennia.scripts.models.ScriptDB_db_tags
-
--
-
form¶
-alias of ScriptForm
-
-
@@ -102,12 +96,6 @@
alias of evennia.scripts.models.ScriptDB_db_attributes
-
--
-
form¶
-alias of ScriptForm
-
-
@@ -259,11 +247,11 @@
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/api/evennia.web.admin.server.html b/docs/1.0-dev/api/evennia.web.admin.server.html
index 1e53048533..cf2bf2d1dc 100644
--- a/docs/1.0-dev/api/evennia.web.admin.server.html
+++ b/docs/1.0-dev/api/evennia.web.admin.server.html
@@ -122,11 +122,11 @@ in the web admin interface.
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/api/evennia.web.admin.tags.html b/docs/1.0-dev/api/evennia.web.admin.tags.html
index 29fec5f01c..9ab17ee3d1 100644
--- a/docs/1.0-dev/api/evennia.web.admin.tags.html
+++ b/docs/1.0-dev/api/evennia.web.admin.tags.html
@@ -301,11 +301,11 @@ people used the admin at the same time
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/api/evennia.web.admin.urls.html b/docs/1.0-dev/api/evennia.web.admin.urls.html
index 157a3f69fd..126e2b8749 100644
--- a/docs/1.0-dev/api/evennia.web.admin.urls.html
+++ b/docs/1.0-dev/api/evennia.web.admin.urls.html
@@ -75,11 +75,11 @@
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/api/evennia.web.admin.utils.html b/docs/1.0-dev/api/evennia.web.admin.utils.html
index 344c0e9bc0..bcd0010ef8 100644
--- a/docs/1.0-dev/api/evennia.web.admin.utils.html
+++ b/docs/1.0-dev/api/evennia.web.admin.utils.html
@@ -114,11 +114,11 @@ admin process. This is intended to be used with forms.ChoiceField.
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/api/evennia.web.api.filters.html b/docs/1.0-dev/api/evennia.web.api.filters.html
index b90102c2f6..4594f8235a 100644
--- a/docs/1.0-dev/api/evennia.web.api.filters.html
+++ b/docs/1.0-dev/api/evennia.web.api.filters.html
@@ -284,11 +284,11 @@ documentation specifically regarding DRF integration.
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/api/evennia.web.api.html b/docs/1.0-dev/api/evennia.web.api.html
index 5e57527a20..02ce41a56a 100644
--- a/docs/1.0-dev/api/evennia.web.api.html
+++ b/docs/1.0-dev/api/evennia.web.api.html
@@ -84,11 +84,11 @@
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/api/evennia.web.api.permissions.html b/docs/1.0-dev/api/evennia.web.api.permissions.html
index eca52e5179..cb549f888d 100644
--- a/docs/1.0-dev/api/evennia.web.api.permissions.html
+++ b/docs/1.0-dev/api/evennia.web.api.permissions.html
@@ -169,11 +169,11 @@ complete the action.
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/api/evennia.web.api.root.html b/docs/1.0-dev/api/evennia.web.api.root.html
index 1538dfafeb..d50a9d79f2 100644
--- a/docs/1.0-dev/api/evennia.web.api.root.html
+++ b/docs/1.0-dev/api/evennia.web.api.root.html
@@ -93,11 +93,11 @@
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/api/evennia.web.api.serializers.html b/docs/1.0-dev/api/evennia.web.api.serializers.html
index 6a7ab92535..4bb57dffa3 100644
--- a/docs/1.0-dev/api/evennia.web.api.serializers.html
+++ b/docs/1.0-dev/api/evennia.web.api.serializers.html
@@ -523,11 +523,11 @@ explicitly to not have them render PK-related fields.
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/api/evennia.web.api.tests.html b/docs/1.0-dev/api/evennia.web.api.tests.html
index 866dda9e31..adc5fbc20a 100644
--- a/docs/1.0-dev/api/evennia.web.api.tests.html
+++ b/docs/1.0-dev/api/evennia.web.api.tests.html
@@ -139,11 +139,11 @@
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/api/evennia.web.api.urls.html b/docs/1.0-dev/api/evennia.web.api.urls.html
index 4dfd950cef..07c706eae0 100644
--- a/docs/1.0-dev/api/evennia.web.api.urls.html
+++ b/docs/1.0-dev/api/evennia.web.api.urls.html
@@ -87,11 +87,11 @@ set attribute: action: POST, url: /objects/<:pk>/set-attribute, view nam
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/api/evennia.web.api.views.html b/docs/1.0-dev/api/evennia.web.api.views.html
index 4c5c52bac9..627a799add 100644
--- a/docs/1.0-dev/api/evennia.web.api.views.html
+++ b/docs/1.0-dev/api/evennia.web.api.views.html
@@ -474,11 +474,11 @@ Note that command auto-help and file-based help entries are not accessible this
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/api/evennia.web.html b/docs/1.0-dev/api/evennia.web.html
index 28614fc934..c358257946 100644
--- a/docs/1.0-dev/api/evennia.web.html
+++ b/docs/1.0-dev/api/evennia.web.html
@@ -142,11 +142,11 @@ relate the database contents to web pages.
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/api/evennia.web.templatetags.addclass.html b/docs/1.0-dev/api/evennia.web.templatetags.addclass.html
index 9c442e79ac..0f6a85a618 100644
--- a/docs/1.0-dev/api/evennia.web.templatetags.addclass.html
+++ b/docs/1.0-dev/api/evennia.web.templatetags.addclass.html
@@ -78,11 +78,11 @@
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/api/evennia.web.templatetags.html b/docs/1.0-dev/api/evennia.web.templatetags.html
index cf375d4720..280c5cc52b 100644
--- a/docs/1.0-dev/api/evennia.web.templatetags.html
+++ b/docs/1.0-dev/api/evennia.web.templatetags.html
@@ -78,11 +78,11 @@
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/api/evennia.web.urls.html b/docs/1.0-dev/api/evennia.web.urls.html
index de561b27c9..3f71a38963 100644
--- a/docs/1.0-dev/api/evennia.web.urls.html
+++ b/docs/1.0-dev/api/evennia.web.urls.html
@@ -88,11 +88,11 @@ dynamic content as appropriate.
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/api/evennia.web.utils.adminsite.html b/docs/1.0-dev/api/evennia.web.utils.adminsite.html
index 78ab6faa41..e5d8229334 100644
--- a/docs/1.0-dev/api/evennia.web.utils.adminsite.html
+++ b/docs/1.0-dev/api/evennia.web.utils.adminsite.html
@@ -115,11 +115,11 @@ registered in this site.
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/api/evennia.web.utils.backends.html b/docs/1.0-dev/api/evennia.web.utils.backends.html
index 4dee80e682..7fe5ff8fd9 100644
--- a/docs/1.0-dev/api/evennia.web.utils.backends.html
+++ b/docs/1.0-dev/api/evennia.web.utils.backends.html
@@ -99,11 +99,11 @@ an already authenticated account and bypass authentication.
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/api/evennia.web.utils.general_context.html b/docs/1.0-dev/api/evennia.web.utils.general_context.html
index 97dcbacad6..43735c0060 100644
--- a/docs/1.0-dev/api/evennia.web.utils.general_context.html
+++ b/docs/1.0-dev/api/evennia.web.utils.general_context.html
@@ -102,11 +102,11 @@ to context of all views.
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/api/evennia.web.utils.html b/docs/1.0-dev/api/evennia.web.utils.html
index 2143285839..5f0b50624d 100644
--- a/docs/1.0-dev/api/evennia.web.utils.html
+++ b/docs/1.0-dev/api/evennia.web.utils.html
@@ -82,11 +82,11 @@
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/api/evennia.web.utils.middleware.html b/docs/1.0-dev/api/evennia.web.utils.middleware.html
index 158e72845e..4921acf075 100644
--- a/docs/1.0-dev/api/evennia.web.utils.middleware.html
+++ b/docs/1.0-dev/api/evennia.web.utils.middleware.html
@@ -91,11 +91,11 @@
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/api/evennia.web.utils.tests.html b/docs/1.0-dev/api/evennia.web.utils.tests.html
index 0f17e10794..556213d377 100644
--- a/docs/1.0-dev/api/evennia.web.utils.tests.html
+++ b/docs/1.0-dev/api/evennia.web.utils.tests.html
@@ -99,11 +99,11 @@
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/api/evennia.web.webclient.html b/docs/1.0-dev/api/evennia.web.webclient.html
index 85fe0bccf4..98b671cb25 100644
--- a/docs/1.0-dev/api/evennia.web.webclient.html
+++ b/docs/1.0-dev/api/evennia.web.webclient.html
@@ -79,11 +79,11 @@
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/api/evennia.web.webclient.urls.html b/docs/1.0-dev/api/evennia.web.webclient.urls.html
index aa63c7d87c..1ce9fa115a 100644
--- a/docs/1.0-dev/api/evennia.web.webclient.urls.html
+++ b/docs/1.0-dev/api/evennia.web.webclient.urls.html
@@ -74,11 +74,11 @@
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/api/evennia.web.webclient.views.html b/docs/1.0-dev/api/evennia.web.webclient.views.html
index 0d9d8a2c54..03058a170f 100644
--- a/docs/1.0-dev/api/evennia.web.webclient.views.html
+++ b/docs/1.0-dev/api/evennia.web.webclient.views.html
@@ -81,11 +81,11 @@ page and serve it eventual static content.
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/api/evennia.web.website.forms.html b/docs/1.0-dev/api/evennia.web.website.forms.html
index 0e9b12f709..adcf0f8cff 100644
--- a/docs/1.0-dev/api/evennia.web.website.forms.html
+++ b/docs/1.0-dev/api/evennia.web.website.forms.html
@@ -311,11 +311,11 @@ wish to allow.
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/api/evennia.web.website.html b/docs/1.0-dev/api/evennia.web.website.html
index 0906813891..c773cabde2 100644
--- a/docs/1.0-dev/api/evennia.web.website.html
+++ b/docs/1.0-dev/api/evennia.web.website.html
@@ -95,11 +95,11 @@
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/api/evennia.web.website.tests.html b/docs/1.0-dev/api/evennia.web.website.tests.html
index a74118fc40..fa09f98ea1 100644
--- a/docs/1.0-dev/api/evennia.web.website.tests.html
+++ b/docs/1.0-dev/api/evennia.web.website.tests.html
@@ -258,6 +258,81 @@
+
+-
+class
evennia.web.website.tests.HelpListTest(methodName='runTest')[source]¶
+Bases: evennia.web.website.tests.EvenniaWebTest
+
+-
+
url_name = 'help'¶
+
+
+
+
+
+-
+class
evennia.web.website.tests.HelpDetailTest(methodName='runTest')[source]¶
+Bases: evennia.web.website.tests.EvenniaWebTest
+
+-
+
url_name = 'help-entry-detail'¶
+
+
+
+
+
+
+
+
+
+
+
+
+
+-
+class
evennia.web.website.tests.HelpLockedDetailTest(methodName='runTest')[source]¶
+Bases: evennia.web.website.tests.EvenniaWebTest
+
+-
+
url_name = 'help-entry-detail'¶
+
+
+
+
+
+
+
+
+
+
+
+
-
class
evennia.web.website.tests.CharacterCreateView(methodName='runTest')[source]¶
@@ -444,11 +519,11 @@
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/api/evennia.web.website.urls.html b/docs/1.0-dev/api/evennia.web.website.urls.html
index 7f9cae1cd0..727b962124 100644
--- a/docs/1.0-dev/api/evennia.web.website.urls.html
+++ b/docs/1.0-dev/api/evennia.web.website.urls.html
@@ -74,11 +74,11 @@
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/api/evennia.web.website.views.accounts.html b/docs/1.0-dev/api/evennia.web.website.views.accounts.html
index b39e04a646..93eae78620 100644
--- a/docs/1.0-dev/api/evennia.web.website.views.accounts.html
+++ b/docs/1.0-dev/api/evennia.web.website.views.accounts.html
@@ -121,11 +121,11 @@ proceeds with creating the Account object.
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/api/evennia.web.website.views.channels.html b/docs/1.0-dev/api/evennia.web.website.views.channels.html
index 47d80dea06..73ce5e4c67 100644
--- a/docs/1.0-dev/api/evennia.web.website.views.channels.html
+++ b/docs/1.0-dev/api/evennia.web.website.views.channels.html
@@ -196,11 +196,11 @@ name.
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/api/evennia.web.website.views.characters.html b/docs/1.0-dev/api/evennia.web.website.views.characters.html
index 9efe6722fe..0d0899e023 100644
--- a/docs/1.0-dev/api/evennia.web.website.views.characters.html
+++ b/docs/1.0-dev/api/evennia.web.website.views.characters.html
@@ -287,11 +287,11 @@ proceeds with creating the Character object.
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/api/evennia.web.website.views.errors.html b/docs/1.0-dev/api/evennia.web.website.views.errors.html
index ce634f06cc..362bbd49ee 100644
--- a/docs/1.0-dev/api/evennia.web.website.views.errors.html
+++ b/docs/1.0-dev/api/evennia.web.website.views.errors.html
@@ -81,11 +81,11 @@ implemented yet.
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/api/evennia.web.website.views.help.html b/docs/1.0-dev/api/evennia.web.website.views.help.html
index 077945b5de..87f27c8db0 100644
--- a/docs/1.0-dev/api/evennia.web.website.views.help.html
+++ b/docs/1.0-dev/api/evennia.web.website.views.help.html
@@ -41,19 +41,94 @@
evennia.web.website.views.help¶
Views to manipulate help entries.
+
+- Multi entry object type supported added by DaveWithTheNiceHat 2021
Pull Request #2429
+
+
+
+-
+
evennia.web.website.views.help.get_help_category(help_entry, slugify_cat=True)[source]¶
+Returns help category.
+
+- Parameters
+
+help_entry (HelpEntry, FileHelpEntry or Command) – Help entry instance.
+slugify_cat (bool) – If true the return string is slugified. Default is True.
+
+
+
+Notes
+If an entry does not have a help_category attribute, DEFAULT_HELP_CATEGORY from the
+settings file is used.
+If the entry does not have attribute ‘web_help_entries’. One is created with a slugified
+copy of the attribute help_category. This attribute is used for sorting the entries for the
+help index (ListView) page.
+
+- Returns
+help_category (str) – The category for the help entry.
+
+
+
+
+
+-
+
evennia.web.website.views.help.get_help_topic(help_entry)[source]¶
+Get the topic of the help entry.
+
+- Parameters
+help_entry (HelpEntry, FileHelpEntry or Command) – Help entry instance.
+
+- Returns
+help_topic (str) – The topic of the help entry. Default is ‘unknown_topic’.
+
+
+
+
+
+-
+
evennia.web.website.views.help.can_read_topic(cmd_or_topic, account)[source]¶
+Check if an account or puppet has read access to a help entry.
+
+- Parameters
+
+cmd_or_topic (Command, HelpEntry or FileHelpEntry) – The topic/command to test.
+account – the account or puppet checking for access.
+
+
+- Returns
+bool – If command can be viewed or not.
+
+
+Notes
+This uses the ‘read’ lock. If no ‘read’ lock is defined, the topic is assumed readable
+by all.
+Even if this returns False, the entry will still be visible in the help index unless
+can_list_topic is also returning False.
+
+
+
+-
+
evennia.web.website.views.help.collect_topics(account)[source]¶
+Collect help topics from all sources (cmd/db/file).
+
+- Parameters
+account (Character or Account) – Account or Character to collect help topics from.
+
+- Returns
+cmd_help_topics (dict) – contains Command instances.
+db_help_topics (dict): contains HelpEntry instances.
+file_help_topics (dict): contains FileHelpEntry instances
+
+
+
+
-
class
evennia.web.website.views.help.HelpMixin[source]¶
-Bases: evennia.web.website.views.mixins.TypeclassMixin
+Bases: object
This is a “mixin”, a modifier of sorts.
Any view class with this in its inheritance list will be modified to work
with HelpEntry objects instead of generic Objects or otherwise.
-
--
-
model¶
-alias of evennia.help.models.HelpEntry
-
-
-
page_title = 'Help'¶
@@ -66,7 +141,7 @@ with HelpEntry objects instead of generic Objects or otherwise.
and other documentation that the current user is allowed to see.
- Returns
-queryset (QuerySet) – List of Help entries available to the user.
+queryset (list) – List of Help entries available to the user.
@@ -99,13 +174,27 @@ or not.
-
class
evennia.web.website.views.help.HelpDetailView(**kwargs)[source]¶
-Bases: evennia.web.website.views.help.HelpMixin, evennia.web.website.views.mixins.EvenniaDetailView
+Bases: evennia.web.website.views.help.HelpMixin, django.views.generic.detail.DetailView
Returns the detail page for a given help entry.
-
template_name = 'website/help_detail.html'¶
+
+-
+property
page_title¶
+str(object=’’) -> str
+str(bytes_or_buffer[, encoding[, errors]]) -> str
+Create a new string object from the given object. If encoding or
+errors is specified, then the object must expose a data buffer
+that will be decoded using the given encoding and error handler.
+Otherwise, returns the result of object.__str__() (if defined)
+or repr(object).
+encoding defaults to sys.getdefaultencoding().
+errors defaults to ‘strict’.
+
+
-
get_context_data(**kwargs)[source]¶
@@ -124,8 +213,11 @@ or previous entry in the help list.
Override of Django hook that retrieves an object by category and topic
instead of pk and slug.
-- Returns
-entry (HelpEntry) – HelpEntry requested in the URL.
+- Parameters
+queryset (list) – A list of help entry objects.
+
+- Returns
+entry (HelpEntry, FileHelpEntry or Command) – HelpEntry requested in the URL.
@@ -165,11 +257,11 @@ instead of pk and slug.
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/api/evennia.web.website.views.html b/docs/1.0-dev/api/evennia.web.website.views.html
index 8a305684b5..1d72c1824f 100644
--- a/docs/1.0-dev/api/evennia.web.website.views.html
+++ b/docs/1.0-dev/api/evennia.web.website.views.html
@@ -86,11 +86,11 @@
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/api/evennia.web.website.views.index.html b/docs/1.0-dev/api/evennia.web.website.views.index.html
index 9101d332ff..1891a86c89 100644
--- a/docs/1.0-dev/api/evennia.web.website.views.index.html
+++ b/docs/1.0-dev/api/evennia.web.website.views.index.html
@@ -122,11 +122,11 @@ of this method.
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/api/evennia.web.website.views.mixins.html b/docs/1.0-dev/api/evennia.web.website.views.mixins.html
index 9429b435c3..d4c52b2b83 100644
--- a/docs/1.0-dev/api/evennia.web.website.views.mixins.html
+++ b/docs/1.0-dev/api/evennia.web.website.views.mixins.html
@@ -148,11 +148,11 @@ otherwise.
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/api/evennia.web.website.views.objects.html b/docs/1.0-dev/api/evennia.web.website.views.objects.html
index b02acc28dd..89c3aea9dd 100644
--- a/docs/1.0-dev/api/evennia.web.website.views.objects.html
+++ b/docs/1.0-dev/api/evennia.web.website.views.objects.html
@@ -246,11 +246,11 @@ validated and sanitized.
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/genindex.html b/docs/1.0-dev/genindex.html
index c4483355d2..818bf4c545 100644
--- a/docs/1.0-dev/genindex.html
+++ b/docs/1.0-dev/genindex.html
@@ -2646,7 +2646,11 @@
- can_list_topic() (evennia.commands.default.help.CmdHelp method)
- can_read_topic() (evennia.commands.default.help.CmdHelp method)
+
+
- cancel() (evennia.scripts.taskhandler.TaskHandler method)
@@ -3606,7 +3610,11 @@
- coll_date_func() (evennia.commands.default.system.CmdTasks static method)
- collect_topics() (evennia.commands.default.help.CmdHelp method)
+
+
- collectstatic() (in module evennia.server.evennia_launcher)
@@ -3871,9 +3879,9 @@
- (in module evennia.utils.create)
- - create_channels() (in module evennia.server.initial_setup)
-
- create_character() (evennia.accounts.accounts.DefaultAccount method)
+
+ - create_default_channels() (evennia.server.server.Evennia method)
- create_delays() (evennia.scripts.taskhandler.TaskHandler method)
@@ -7184,10 +7192,6 @@
- (evennia.web.admin.objects.ObjectAdmin attribute)
- (evennia.web.admin.scripts.ScriptAdmin attribute)
-
- - (evennia.web.admin.scripts.ScriptAttributeInline attribute)
-
- - (evennia.web.admin.scripts.ScriptTagInline attribute)
- (evennia.web.admin.tags.TagAdmin attribute)
@@ -8160,8 +8164,6 @@
- get_fieldsets() (evennia.web.admin.objects.ObjectAdmin method)
-
-
+
- get_formset() (evennia.web.admin.attributes.AttributeInline method)
@@ -8181,8 +8185,6 @@
- get_game_dir_path() (in module evennia.utils.utils)
-
- - get_god_account() (in module evennia.server.initial_setup)
- get_height() (evennia.utils.evtable.EvCell method)
@@ -8198,7 +8200,11 @@
- (evennia.utils.evmenu.CmdEvMenuNode method)
+ - get_help_category() (in module evennia.web.website.views.help)
+
- get_help_text() (evennia.server.validators.EvenniaPasswordValidator method)
+
+ - get_help_topic() (in module evennia.web.website.views.help)
- get_hint() (evennia.contrib.evscaperoom.state.BaseState method)
@@ -8236,6 +8242,10 @@
- (evennia.web.website.tests.CharacterUpdateView method)
- (evennia.web.website.tests.EvenniaWebTest method)
+
+ - (evennia.web.website.tests.HelpDetailTest method)
+
+ - (evennia.web.website.tests.HelpLockedDetailTest method)
- get_linked_neighbors() (evennia.contrib.xyzgrid.xymap_legend.MapLink method)
@@ -9121,6 +9131,8 @@
- help_search_with_index() (in module evennia.help.utils)
- HelpAction (class in evennia.contrib.unixcommand)
+
+ - HelpDetailTest (class in evennia.web.website.tests)
- HelpDetailView (class in evennia.web.website.views.help)
@@ -9145,8 +9157,12 @@
- HelpListSerializer (class in evennia.web.api.serializers)
- HelpListSerializer.Meta (class in evennia.web.api.serializers)
+
+ - HelpListTest (class in evennia.web.website.tests)
- HelpListView (class in evennia.web.website.views.help)
+
+ - HelpLockedDetailTest (class in evennia.web.website.tests)
- HelpMixin (class in evennia.web.website.views.help)
@@ -11840,8 +11856,6 @@
- (evennia.web.website.views.channels.ChannelMixin attribute)
- (evennia.web.website.views.characters.CharacterMixin attribute)
-
- - (evennia.web.website.views.help.HelpMixin attribute)
- (evennia.web.website.views.objects.ObjectCreateView attribute)
@@ -13209,9 +13223,11 @@
- (evennia.web.website.views.help.HelpMixin attribute)
- - page_title() (evennia.web.website.views.mixins.EvenniaCreateView property)
+
- page_title() (evennia.web.website.views.help.HelpDetailView property)
+ - (evennia.web.website.views.mixins.EvenniaCreateView property)
+
- (evennia.web.website.views.mixins.EvenniaDeleteView property)
- (evennia.web.website.views.mixins.EvenniaDetailView property)
@@ -15751,6 +15767,10 @@
- (evennia.web.website.tests.ChannelDetailTest method)
- (evennia.web.website.tests.EvenniaWebTest method)
+
+ - (evennia.web.website.tests.HelpDetailTest method)
+
+ - (evennia.web.website.tests.HelpLockedDetailTest method)
- shared_fields (evennia.web.api.serializers.TypeclassListSerializerMixin attribute)
@@ -17109,6 +17129,10 @@
- (evennia.contrib.ingame_python.tests.TestCmdCallback method)
+ - test_lock_with_perm() (evennia.web.website.tests.HelpLockedDetailTest method)
+
+ - test_locked_entry() (evennia.web.website.tests.HelpLockedDetailTest method)
+
- test_look() (evennia.commands.default.tests.TestGeneral method)
@@ -17149,6 +17173,8 @@
- (evennia.contrib.xyzgrid.tests.TestMap2 method)
+ - test_object_cache() (evennia.web.website.tests.HelpDetailTest method)
+
- test_objects() (evennia.commands.default.tests.TestSystem method)
- test_ooc() (evennia.commands.default.tests.TestAccount method)
@@ -17862,6 +17888,8 @@
- test_verb_tense_5_doing() (evennia.utils.verb_conjugation.tests.TestVerbConjugate method)
- test_verb_tense_6_are() (evennia.utils.verb_conjugation.tests.TestVerbConjugate method)
+
+ - test_view() (evennia.web.website.tests.HelpDetailTest method)
- test_wall() (evennia.commands.default.tests.TestAdmin method)
@@ -18549,10 +18577,10 @@
- (evennia.utils.utils.LimitedSizeOrderedDict method)
-
-
+
- update_buffer() (evennia.utils.eveditor.EvEditor method)
- update_cached_instance() (in module evennia.utils.idmapper.models)
@@ -18607,6 +18635,12 @@
- (evennia.web.website.tests.CharacterUpdateView attribute)
- (evennia.web.website.tests.EvenniaWebTest attribute)
+
+ - (evennia.web.website.tests.HelpDetailTest attribute)
+
+ - (evennia.web.website.tests.HelpListTest attribute)
+
+ - (evennia.web.website.tests.HelpLockedDetailTest attribute)
- (evennia.web.website.tests.IndexTest attribute)
@@ -18841,9 +18875,13 @@
- WeatherRoom.MultipleObjectsReturned
- - web_get_admin_url() (evennia.comms.comms.DefaultChannel method)
+
- web_get_admin_url() (evennia.commands.command.Command method)
- - web_get_detail_url() (evennia.comms.comms.DefaultChannel method)
+
- web_get_detail_url() (evennia.commands.command.Command method)
+
-
- Websocket (class in evennia.server.portal.portal)
- WebSocketClient (class in evennia.server.portal.webclient)
@@ -19083,11 +19125,11 @@
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/index.html b/docs/1.0-dev/index.html
index 18aae436f5..fc65583c76 100644
--- a/docs/1.0-dev/index.html
+++ b/docs/1.0-dev/index.html
@@ -54,7 +54,7 @@ off using v0.9.5 of the docs, or the original wiki. You have been warned.
Evennia Documentation¶
-This is the manual of Evennia, the open source Python
+
This is the manual of Evennia, the open source Python
MU* creation system.
@@ -132,11 +132,11 @@ off using v0.9.5 of the docs, or the original wiki. You have been warned.
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/objects.inv b/docs/1.0-dev/objects.inv
index 638f36d176..f82d9726b1 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/py-modindex.html b/docs/1.0-dev/py-modindex.html
index 819fe0c899..dd11edbd53 100644
--- a/docs/1.0-dev/py-modindex.html
+++ b/docs/1.0-dev/py-modindex.html
@@ -1423,11 +1423,11 @@
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/search.html b/docs/1.0-dev/search.html
index ee86a256b9..2f0e2b80a2 100644
--- a/docs/1.0-dev/search.html
+++ b/docs/1.0-dev/search.html
@@ -77,11 +77,11 @@
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions
diff --git a/docs/1.0-dev/searchindex.js b/docs/1.0-dev/searchindex.js
index e355485652..603b3308ab 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/FuncParser","Components/Help-System","Components/Inputfuncs","Components/Locks","Components/MonitorHandler","Components/Msg","Components/Nicks","Components/Objects","Components/Outputfuncs","Components/Permissions","Components/Portal-And-Server","Components/Prototypes","Components/Scripts","Components/Server","Components/Server-Conf","Components/Sessions","Components/Signals","Components/Tags","Components/TickerHandler","Components/Typeclasses","Components/Web-API","Components/Web-Admin","Components/Webclient","Components/Webserver","Components/Website","Concepts/Async-Process","Concepts/Banning","Concepts/Bootstrap-&-Evennia","Concepts/Building-Permissions","Concepts/Clickable-Links","Concepts/Colors","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/Crafting","Contribs/Dialogues-in-events","Contribs/Dynamic-In-Game-Map","Contribs/Static-In-Game-Map","Contribs/XYZGrid","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/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/Starting-Part1","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/Part2/Planning-Where-Do-I-Begin","Howto/Starting/Part2/Starting-Part2","Howto/Starting/Part3/A-Sittable-Object","Howto/Starting/Part3/Implementing-a-game-rule-system","Howto/Starting/Part3/Starting-Part3","Howto/Starting/Part3/Turn-based-Combat-System","Howto/Starting/Part3/Tutorial-for-basic-MUSH-like-game","Howto/Starting/Part4/Starting-Part4","Howto/Starting/Part5/Add-a-simple-new-web-page","Howto/Starting/Part5/Starting-Part5","Howto/Starting/Part5/Web-Tutorial","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.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.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.crafting","api/evennia.contrib.crafting.crafting","api/evennia.contrib.crafting.example_recipes","api/evennia.contrib.crafting.tests","api/evennia.contrib.custom_gametime","api/evennia.contrib.dice","api/evennia.contrib.email_login","api/evennia.contrib.evscaperoom","api/evennia.contrib.evscaperoom.commands","api/evennia.contrib.evscaperoom.menu","api/evennia.contrib.evscaperoom.objects","api/evennia.contrib.evscaperoom.room","api/evennia.contrib.evscaperoom.scripts","api/evennia.contrib.evscaperoom.state","api/evennia.contrib.evscaperoom.tests","api/evennia.contrib.evscaperoom.utils","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.example_batch_code","api/evennia.contrib.tutorial_examples.mirror","api/evennia.contrib.tutorial_examples.red_button","api/evennia.contrib.tutorial_examples.tests","api/evennia.contrib.tutorial_world","api/evennia.contrib.tutorial_world.intro_menu","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.contrib.xyzgrid","api/evennia.contrib.xyzgrid.commands","api/evennia.contrib.xyzgrid.example","api/evennia.contrib.xyzgrid.launchcmd","api/evennia.contrib.xyzgrid.prototypes","api/evennia.contrib.xyzgrid.tests","api/evennia.contrib.xyzgrid.utils","api/evennia.contrib.xyzgrid.xymap","api/evennia.contrib.xyzgrid.xymap_legend","api/evennia.contrib.xyzgrid.xyzgrid","api/evennia.contrib.xyzgrid.xyzroom","api/evennia.help","api/evennia.help.filehelp","api/evennia.help.manager","api/evennia.help.models","api/evennia.help.utils","api/evennia.locks","api/evennia.locks.lockfuncs","api/evennia.locks.lockhandler","api/evennia.objects","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.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.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.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.funcparser","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.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.utils.verb_conjugation","api/evennia.utils.verb_conjugation.conjugate","api/evennia.utils.verb_conjugation.tests","api/evennia.web","api/evennia.web.admin","api/evennia.web.admin.accounts","api/evennia.web.admin.attributes","api/evennia.web.admin.comms","api/evennia.web.admin.frontpage","api/evennia.web.admin.help","api/evennia.web.admin.objects","api/evennia.web.admin.scripts","api/evennia.web.admin.server","api/evennia.web.admin.tags","api/evennia.web.admin.urls","api/evennia.web.admin.utils","api/evennia.web.api","api/evennia.web.api.filters","api/evennia.web.api.permissions","api/evennia.web.api.root","api/evennia.web.api.serializers","api/evennia.web.api.tests","api/evennia.web.api.urls","api/evennia.web.api.views","api/evennia.web.templatetags","api/evennia.web.templatetags.addclass","api/evennia.web.urls","api/evennia.web.utils","api/evennia.web.utils.adminsite","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.tests","api/evennia.web.website.urls","api/evennia.web.website.views","api/evennia.web.website.views.accounts","api/evennia.web.website.views.channels","api/evennia.web.website.views.characters","api/evennia.web.website.views.errors","api/evennia.web.website.views.help","api/evennia.web.website.views.index","api/evennia.web.website.views.mixins","api/evennia.web.website.views.objects","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/FuncParser.md","Components/Help-System.md","Components/Inputfuncs.md","Components/Locks.md","Components/MonitorHandler.md","Components/Msg.md","Components/Nicks.md","Components/Objects.md","Components/Outputfuncs.md","Components/Permissions.md","Components/Portal-And-Server.md","Components/Prototypes.md","Components/Scripts.md","Components/Server.md","Components/Server-Conf.md","Components/Sessions.md","Components/Signals.md","Components/Tags.md","Components/TickerHandler.md","Components/Typeclasses.md","Components/Web-API.md","Components/Web-Admin.md","Components/Webclient.md","Components/Webserver.md","Components/Website.md","Concepts/Async-Process.md","Concepts/Banning.md","Concepts/Bootstrap-&-Evennia.md","Concepts/Building-Permissions.md","Concepts/Clickable-Links.md","Concepts/Colors.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/Crafting.md","Contribs/Dialogues-in-events.md","Contribs/Dynamic-In-Game-Map.md","Contribs/Static-In-Game-Map.md","Contribs/XYZGrid.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/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/Starting-Part1.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/Part2/Planning-Where-Do-I-Begin.md","Howto/Starting/Part2/Starting-Part2.md","Howto/Starting/Part3/A-Sittable-Object.md","Howto/Starting/Part3/Implementing-a-game-rule-system.md","Howto/Starting/Part3/Starting-Part3.md","Howto/Starting/Part3/Turn-based-Combat-System.md","Howto/Starting/Part3/Tutorial-for-basic-MUSH-like-game.md","Howto/Starting/Part4/Starting-Part4.md","Howto/Starting/Part5/Add-a-simple-new-web-page.md","Howto/Starting/Part5/Starting-Part5.md","Howto/Starting/Part5/Web-Tutorial.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.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.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.crafting.rst","api/evennia.contrib.crafting.crafting.rst","api/evennia.contrib.crafting.example_recipes.rst","api/evennia.contrib.crafting.tests.rst","api/evennia.contrib.custom_gametime.rst","api/evennia.contrib.dice.rst","api/evennia.contrib.email_login.rst","api/evennia.contrib.evscaperoom.rst","api/evennia.contrib.evscaperoom.commands.rst","api/evennia.contrib.evscaperoom.menu.rst","api/evennia.contrib.evscaperoom.objects.rst","api/evennia.contrib.evscaperoom.room.rst","api/evennia.contrib.evscaperoom.scripts.rst","api/evennia.contrib.evscaperoom.state.rst","api/evennia.contrib.evscaperoom.tests.rst","api/evennia.contrib.evscaperoom.utils.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.example_batch_code.rst","api/evennia.contrib.tutorial_examples.mirror.rst","api/evennia.contrib.tutorial_examples.red_button.rst","api/evennia.contrib.tutorial_examples.tests.rst","api/evennia.contrib.tutorial_world.rst","api/evennia.contrib.tutorial_world.intro_menu.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.contrib.xyzgrid.rst","api/evennia.contrib.xyzgrid.commands.rst","api/evennia.contrib.xyzgrid.example.rst","api/evennia.contrib.xyzgrid.launchcmd.rst","api/evennia.contrib.xyzgrid.prototypes.rst","api/evennia.contrib.xyzgrid.tests.rst","api/evennia.contrib.xyzgrid.utils.rst","api/evennia.contrib.xyzgrid.xymap.rst","api/evennia.contrib.xyzgrid.xymap_legend.rst","api/evennia.contrib.xyzgrid.xyzgrid.rst","api/evennia.contrib.xyzgrid.xyzroom.rst","api/evennia.help.rst","api/evennia.help.filehelp.rst","api/evennia.help.manager.rst","api/evennia.help.models.rst","api/evennia.help.utils.rst","api/evennia.locks.rst","api/evennia.locks.lockfuncs.rst","api/evennia.locks.lockhandler.rst","api/evennia.objects.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.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.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.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.funcparser.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.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.utils.verb_conjugation.rst","api/evennia.utils.verb_conjugation.conjugate.rst","api/evennia.utils.verb_conjugation.tests.rst","api/evennia.web.rst","api/evennia.web.admin.rst","api/evennia.web.admin.accounts.rst","api/evennia.web.admin.attributes.rst","api/evennia.web.admin.comms.rst","api/evennia.web.admin.frontpage.rst","api/evennia.web.admin.help.rst","api/evennia.web.admin.objects.rst","api/evennia.web.admin.scripts.rst","api/evennia.web.admin.server.rst","api/evennia.web.admin.tags.rst","api/evennia.web.admin.urls.rst","api/evennia.web.admin.utils.rst","api/evennia.web.api.rst","api/evennia.web.api.filters.rst","api/evennia.web.api.permissions.rst","api/evennia.web.api.root.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.templatetags.rst","api/evennia.web.templatetags.addclass.rst","api/evennia.web.urls.rst","api/evennia.web.utils.rst","api/evennia.web.utils.adminsite.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.tests.rst","api/evennia.web.website.urls.rst","api/evennia.web.website.views.rst","api/evennia.web.website.views.accounts.rst","api/evennia.web.website.views.channels.rst","api/evennia.web.website.views.characters.rst","api/evennia.web.website.views.errors.rst","api/evennia.web.website.views.help.rst","api/evennia.web.website.views.index.rst","api/evennia.web.website.views.mixins.rst","api/evennia.web.website.views.objects.rst","index.md","toc.md"],objects:{"":{evennia:[163,0,0,"-"]},"evennia.accounts":{accounts:[166,0,0,"-"],bots:[167,0,0,"-"],manager:[168,0,0,"-"],models:[169,0,0,"-"]},"evennia.accounts.accounts":{DefaultAccount:[166,1,1,""],DefaultGuest:[166,1,1,""]},"evennia.accounts.accounts.DefaultAccount":{"delete":[166,3,1,""],DoesNotExist:[166,2,1,""],MultipleObjectsReturned:[166,2,1,""],access:[166,3,1,""],at_access:[166,3,1,""],at_account_creation:[166,3,1,""],at_cmdset_get:[166,3,1,""],at_disconnect:[166,3,1,""],at_failed_login:[166,3,1,""],at_first_login:[166,3,1,""],at_first_save:[166,3,1,""],at_init:[166,3,1,""],at_look:[166,3,1,""],at_msg_receive:[166,3,1,""],at_msg_send:[166,3,1,""],at_password_change:[166,3,1,""],at_post_channel_msg:[166,3,1,""],at_post_disconnect:[166,3,1,""],at_post_login:[166,3,1,""],at_pre_channel_msg:[166,3,1,""],at_pre_login:[166,3,1,""],at_server_reload:[166,3,1,""],at_server_shutdown:[166,3,1,""],authenticate:[166,3,1,""],basetype_setup:[166,3,1,""],channel_msg:[166,3,1,""],character:[166,3,1,""],characters:[166,3,1,""],cmdset:[166,4,1,""],connection_time:[166,3,1,""],create:[166,3,1,""],create_character:[166,3,1,""],disconnect_session_from_account:[166,3,1,""],execute_cmd:[166,3,1,""],get_all_puppets:[166,3,1,""],get_display_name:[166,3,1,""],get_puppet:[166,3,1,""],get_username_validators:[166,3,1,""],idle_time:[166,3,1,""],is_banned:[166,3,1,""],msg:[166,3,1,""],nicks:[166,4,1,""],normalize_username:[166,3,1,""],objects:[166,4,1,""],options:[166,4,1,""],path:[166,4,1,""],puppet:[166,3,1,""],puppet_object:[166,3,1,""],scripts:[166,4,1,""],search:[166,3,1,""],sessions:[166,4,1,""],set_password:[166,3,1,""],typename:[166,4,1,""],unpuppet_all:[166,3,1,""],unpuppet_object:[166,3,1,""],validate_password:[166,3,1,""],validate_username:[166,3,1,""]},"evennia.accounts.accounts.DefaultGuest":{DoesNotExist:[166,2,1,""],MultipleObjectsReturned:[166,2,1,""],at_post_disconnect:[166,3,1,""],at_post_login:[166,3,1,""],at_server_shutdown:[166,3,1,""],authenticate:[166,3,1,""],create:[166,3,1,""],path:[166,4,1,""],typename:[166,4,1,""]},"evennia.accounts.bots":{Bot:[167,1,1,""],BotStarter:[167,1,1,""],GrapevineBot:[167,1,1,""],IRCBot:[167,1,1,""],RSSBot:[167,1,1,""]},"evennia.accounts.bots.Bot":{DoesNotExist:[167,2,1,""],MultipleObjectsReturned:[167,2,1,""],at_server_shutdown:[167,3,1,""],basetype_setup:[167,3,1,""],execute_cmd:[167,3,1,""],msg:[167,3,1,""],path:[167,4,1,""],start:[167,3,1,""],typename:[167,4,1,""]},"evennia.accounts.bots.BotStarter":{DoesNotExist:[167,2,1,""],MultipleObjectsReturned:[167,2,1,""],at_repeat:[167,3,1,""],at_script_creation:[167,3,1,""],at_server_reload:[167,3,1,""],at_server_shutdown:[167,3,1,""],at_start:[167,3,1,""],path:[167,4,1,""],typename:[167,4,1,""]},"evennia.accounts.bots.GrapevineBot":{DoesNotExist:[167,2,1,""],MultipleObjectsReturned:[167,2,1,""],at_msg_send:[167,3,1,""],execute_cmd:[167,3,1,""],factory_path:[167,4,1,""],msg:[167,3,1,""],path:[167,4,1,""],start:[167,3,1,""],typename:[167,4,1,""]},"evennia.accounts.bots.IRCBot":{DoesNotExist:[167,2,1,""],MultipleObjectsReturned:[167,2,1,""],at_msg_send:[167,3,1,""],execute_cmd:[167,3,1,""],factory_path:[167,4,1,""],get_nicklist:[167,3,1,""],msg:[167,3,1,""],path:[167,4,1,""],ping:[167,3,1,""],reconnect:[167,3,1,""],start:[167,3,1,""],typename:[167,4,1,""]},"evennia.accounts.bots.RSSBot":{DoesNotExist:[167,2,1,""],MultipleObjectsReturned:[167,2,1,""],execute_cmd:[167,3,1,""],path:[167,4,1,""],start:[167,3,1,""],typename:[167,4,1,""]},"evennia.accounts.manager":{AccountManager:[168,1,1,""]},"evennia.accounts.models":{AccountDB:[169,1,1,""]},"evennia.accounts.models.AccountDB":{DoesNotExist:[169,2,1,""],MultipleObjectsReturned:[169,2,1,""],account_subscription_set:[169,4,1,""],cmdset_storage:[169,3,1,""],db_attributes:[169,4,1,""],db_cmdset_storage:[169,4,1,""],db_is_bot:[169,4,1,""],db_is_connected:[169,4,1,""],db_tags:[169,4,1,""],get_next_by_date_joined:[169,3,1,""],get_next_by_db_date_created:[169,3,1,""],get_previous_by_date_joined:[169,3,1,""],get_previous_by_db_date_created:[169,3,1,""],groups:[169,4,1,""],hide_from_accounts_set:[169,4,1,""],id:[169,4,1,""],is_bot:[169,3,1,""],is_connected:[169,3,1,""],key:[169,3,1,""],logentry_set:[169,4,1,""],name:[169,3,1,""],objectdb_set:[169,4,1,""],objects:[169,4,1,""],path:[169,4,1,""],receiver_account_set:[169,4,1,""],scriptdb_set:[169,4,1,""],sender_account_set:[169,4,1,""],typename:[169,4,1,""],uid:[169,3,1,""],user_permissions:[169,4,1,""]},"evennia.commands":{"default":[176,0,0,"-"],cmdhandler:[171,0,0,"-"],cmdparser:[172,0,0,"-"],cmdset:[173,0,0,"-"],cmdsethandler:[174,0,0,"-"],command:[175,0,0,"-"]},"evennia.commands.cmdhandler":{InterruptCommand:[171,2,1,""],cmdhandler:[171,5,1,""]},"evennia.commands.cmdparser":{build_matches:[172,5,1,""],cmdparser:[172,5,1,""],create_match:[172,5,1,""],try_num_differentiators:[172,5,1,""]},"evennia.commands.cmdset":{CmdSet:[173,1,1,""]},"evennia.commands.cmdset.CmdSet":{__init__:[173,3,1,""],add:[173,3,1,""],at_cmdset_creation:[173,3,1,""],count:[173,3,1,""],duplicates:[173,4,1,""],errmessage:[173,4,1,""],get:[173,3,1,""],get_all_cmd_keys_and_aliases:[173,3,1,""],get_system_cmds:[173,3,1,""],key:[173,4,1,""],key_mergetypes:[173,4,1,""],make_unique:[173,3,1,""],mergetype:[173,4,1,""],no_channels:[173,4,1,""],no_exits:[173,4,1,""],no_objs:[173,4,1,""],path:[173,4,1,""],permanent:[173,4,1,""],priority:[173,4,1,""],remove:[173,3,1,""],to_duplicate:[173,4,1,""]},"evennia.commands.cmdsethandler":{CmdSetHandler:[174,1,1,""],import_cmdset:[174,5,1,""]},"evennia.commands.cmdsethandler.CmdSetHandler":{"delete":[174,3,1,""],__init__:[174,3,1,""],add:[174,3,1,""],add_default:[174,3,1,""],all:[174,3,1,""],clear:[174,3,1,""],delete_default:[174,3,1,""],get:[174,3,1,""],has:[174,3,1,""],has_cmdset:[174,3,1,""],remove:[174,3,1,""],remove_default:[174,3,1,""],reset:[174,3,1,""],update:[174,3,1,""]},"evennia.commands.command":{Command:[175,1,1,""],CommandMeta:[175,1,1,""],InterruptCommand:[175,2,1,""]},"evennia.commands.command.Command":{__init__:[175,3,1,""],access:[175,3,1,""],aliases:[175,4,1,""],arg_regex:[175,4,1,""],at_post_cmd:[175,3,1,""],at_pre_cmd:[175,3,1,""],auto_help:[175,4,1,""],client_width:[175,3,1,""],execute_cmd:[175,3,1,""],func:[175,3,1,""],get_command_info:[175,3,1,""],get_extra_info:[175,3,1,""],get_help:[175,3,1,""],help_category:[175,4,1,""],is_exit:[175,4,1,""],key:[175,4,1,""],lock_storage:[175,4,1,""],lockhandler:[175,4,1,""],locks:[175,4,1,""],match:[175,3,1,""],msg:[175,3,1,""],msg_all_sessions:[175,4,1,""],parse:[175,3,1,""],save_for_next:[175,4,1,""],search_index_entry:[175,4,1,""],set_aliases:[175,3,1,""],set_key:[175,3,1,""],styled_footer:[175,3,1,""],styled_header:[175,3,1,""],styled_separator:[175,3,1,""],styled_table:[175,3,1,""]},"evennia.commands.command.CommandMeta":{__init__:[175,3,1,""]},"evennia.commands.default":{account:[177,0,0,"-"],admin:[178,0,0,"-"],batchprocess:[179,0,0,"-"],building:[180,0,0,"-"],cmdset_account:[181,0,0,"-"],cmdset_character:[182,0,0,"-"],cmdset_session:[183,0,0,"-"],cmdset_unloggedin:[184,0,0,"-"],comms:[185,0,0,"-"],general:[186,0,0,"-"],help:[187,0,0,"-"],muxcommand:[188,0,0,"-"],syscommands:[189,0,0,"-"],system:[190,0,0,"-"],unloggedin:[192,0,0,"-"]},"evennia.commands.default.account":{CmdCharCreate:[177,1,1,""],CmdCharDelete:[177,1,1,""],CmdColorTest:[177,1,1,""],CmdIC:[177,1,1,""],CmdOOC:[177,1,1,""],CmdOOCLook:[177,1,1,""],CmdOption:[177,1,1,""],CmdPassword:[177,1,1,""],CmdQuell:[177,1,1,""],CmdQuit:[177,1,1,""],CmdSessions:[177,1,1,""],CmdStyle:[177,1,1,""],CmdWho:[177,1,1,""]},"evennia.commands.default.account.CmdCharCreate":{account_caller:[177,4,1,""],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.account.CmdCharDelete":{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.account.CmdColorTest":{account_caller:[177,4,1,""],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,""],slice_bright_bg:[177,4,1,""],slice_bright_fg:[177,4,1,""],slice_dark_bg:[177,4,1,""],slice_dark_fg:[177,4,1,""],table_format:[177,3,1,""]},"evennia.commands.default.account.CmdIC":{account_caller:[177,4,1,""],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.account.CmdOOC":{account_caller:[177,4,1,""],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.account.CmdOOCLook":{account_caller:[177,4,1,""],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.account.CmdOption":{account_caller:[177,4,1,""],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,""],switch_options:[177,4,1,""]},"evennia.commands.default.account.CmdPassword":{account_caller:[177,4,1,""],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.account.CmdQuell":{account_caller:[177,4,1,""],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.account.CmdQuit":{account_caller:[177,4,1,""],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,""],switch_options:[177,4,1,""]},"evennia.commands.default.account.CmdSessions":{account_caller:[177,4,1,""],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.account.CmdStyle":{aliases:[177,4,1,""],func:[177,3,1,""],help_category:[177,4,1,""],key:[177,4,1,""],list_styles:[177,3,1,""],lock_storage:[177,4,1,""],search_index_entry:[177,4,1,""],set:[177,3,1,""],switch_options:[177,4,1,""]},"evennia.commands.default.account.CmdWho":{account_caller:[177,4,1,""],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.admin":{CmdBan:[178,1,1,""],CmdBoot:[178,1,1,""],CmdEmit:[178,1,1,""],CmdForce:[178,1,1,""],CmdNewPassword:[178,1,1,""],CmdPerm:[178,1,1,""],CmdUnban:[178,1,1,""],CmdWall:[178,1,1,""]},"evennia.commands.default.admin.CmdBan":{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.admin.CmdBoot":{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.admin.CmdEmit":{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.admin.CmdForce":{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,""],perm_used:[178,4,1,""],search_index_entry:[178,4,1,""]},"evennia.commands.default.admin.CmdNewPassword":{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.admin.CmdPerm":{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.admin.CmdUnban":{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.admin.CmdWall":{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.batchprocess":{CmdBatchCode:[179,1,1,""],CmdBatchCommands:[179,1,1,""]},"evennia.commands.default.batchprocess.CmdBatchCode":{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.batchprocess.CmdBatchCommands":{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.building":{CmdCopy:[180,1,1,""],CmdCpAttr:[180,1,1,""],CmdCreate:[180,1,1,""],CmdDesc:[180,1,1,""],CmdDestroy:[180,1,1,""],CmdDig:[180,1,1,""],CmdExamine:[180,1,1,""],CmdFind:[180,1,1,""],CmdLink:[180,1,1,""],CmdListCmdSets:[180,1,1,""],CmdLock:[180,1,1,""],CmdMvAttr:[180,1,1,""],CmdName:[180,1,1,""],CmdOpen:[180,1,1,""],CmdScript:[180,1,1,""],CmdSetAttribute:[180,1,1,""],CmdSetHome:[180,1,1,""],CmdSetObjAlias:[180,1,1,""],CmdSpawn:[180,1,1,""],CmdTag:[180,1,1,""],CmdTeleport:[180,1,1,""],CmdTunnel:[180,1,1,""],CmdTypeclass:[180,1,1,""],CmdUnLink:[180,1,1,""],CmdWipe:[180,1,1,""],ObjManipCommand:[180,1,1,""]},"evennia.commands.default.building.CmdCopy":{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.building.CmdCpAttr":{aliases:[180,4,1,""],check_from_attr:[180,3,1,""],check_has_attr:[180,3,1,""],check_to_attr:[180,3,1,""],func:[180,3,1,""],get_attr:[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,""],switch_options:[180,4,1,""]},"evennia.commands.default.building.CmdCreate":{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,""],new_obj_lockstring:[180,4,1,""],search_index_entry:[180,4,1,""],switch_options:[180,4,1,""]},"evennia.commands.default.building.CmdDesc":{aliases:[180,4,1,""],edit_handler:[180,3,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,""],switch_options:[180,4,1,""]},"evennia.commands.default.building.CmdDestroy":{aliases:[180,4,1,""],confirm:[180,4,1,""],default_confirm:[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,""],switch_options:[180,4,1,""]},"evennia.commands.default.building.CmdDig":{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,""],new_room_lockstring:[180,4,1,""],search_index_entry:[180,4,1,""],switch_options:[180,4,1,""]},"evennia.commands.default.building.CmdExamine":{account_mode:[180,4,1,""],aliases:[180,4,1,""],arg_regex:[180,4,1,""],detail_color:[180,4,1,""],format_attributes:[180,3,1,""],format_output:[180,3,1,""],func:[180,3,1,""],header_color:[180,4,1,""],help_category:[180,4,1,""],key:[180,4,1,""],list_attribute:[180,3,1,""],lock_storage:[180,4,1,""],locks:[180,4,1,""],quell_color:[180,4,1,""],search_index_entry:[180,4,1,""],separator:[180,4,1,""]},"evennia.commands.default.building.CmdFind":{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,""],switch_options:[180,4,1,""]},"evennia.commands.default.building.CmdLink":{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.building.CmdListCmdSets":{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.building.CmdLock":{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.building.CmdMvAttr":{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,""],switch_options:[180,4,1,""]},"evennia.commands.default.building.CmdName":{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.building.CmdOpen":{aliases:[180,4,1,""],create_exit:[180,3,1,""],func:[180,3,1,""],help_category:[180,4,1,""],key:[180,4,1,""],lock_storage:[180,4,1,""],locks:[180,4,1,""],new_obj_lockstring:[180,4,1,""],parse:[180,3,1,""],search_index_entry:[180,4,1,""]},"evennia.commands.default.building.CmdScript":{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,""],switch_options:[180,4,1,""]},"evennia.commands.default.building.CmdSetAttribute":{aliases:[180,4,1,""],check_attr:[180,3,1,""],check_obj:[180,3,1,""],do_nested_lookup:[180,3,1,""],edit_handler:[180,3,1,""],func:[180,3,1,""],help_category:[180,4,1,""],key:[180,4,1,""],lock_storage:[180,4,1,""],locks:[180,4,1,""],nested_re:[180,4,1,""],not_found:[180,4,1,""],rm_attr:[180,3,1,""],search_for_obj:[180,3,1,""],search_index_entry:[180,4,1,""],set_attr:[180,3,1,""],split_nested_attr:[180,3,1,""],view_attr:[180,3,1,""]},"evennia.commands.default.building.CmdSetHome":{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.building.CmdSetObjAlias":{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,""],switch_options:[180,4,1,""]},"evennia.commands.default.building.CmdSpawn":{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,""],switch_options:[180,4,1,""]},"evennia.commands.default.building.CmdTag":{aliases:[180,4,1,""],arg_regex:[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,""],options:[180,4,1,""],search_index_entry:[180,4,1,""]},"evennia.commands.default.building.CmdTeleport":{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,""],rhs_split:[180,4,1,""],search_index_entry:[180,4,1,""],switch_options:[180,4,1,""]},"evennia.commands.default.building.CmdTunnel":{aliases:[180,4,1,""],directions:[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,""],switch_options:[180,4,1,""]},"evennia.commands.default.building.CmdTypeclass":{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,""],switch_options:[180,4,1,""]},"evennia.commands.default.building.CmdUnLink":{aliases:[180,4,1,""],func:[180,3,1,""],help_category:[180,4,1,""],help_key:[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.building.CmdWipe":{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.building.ObjManipCommand":{aliases:[180,4,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.cmdset_account":{AccountCmdSet:[181,1,1,""]},"evennia.commands.default.cmdset_account.AccountCmdSet":{at_cmdset_creation:[181,3,1,""],key:[181,4,1,""],path:[181,4,1,""],priority:[181,4,1,""]},"evennia.commands.default.cmdset_character":{CharacterCmdSet:[182,1,1,""]},"evennia.commands.default.cmdset_character.CharacterCmdSet":{at_cmdset_creation:[182,3,1,""],key:[182,4,1,""],path:[182,4,1,""],priority:[182,4,1,""]},"evennia.commands.default.cmdset_session":{SessionCmdSet:[183,1,1,""]},"evennia.commands.default.cmdset_session.SessionCmdSet":{at_cmdset_creation:[183,3,1,""],key:[183,4,1,""],path:[183,4,1,""],priority:[183,4,1,""]},"evennia.commands.default.cmdset_unloggedin":{UnloggedinCmdSet:[184,1,1,""]},"evennia.commands.default.cmdset_unloggedin.UnloggedinCmdSet":{at_cmdset_creation:[184,3,1,""],key:[184,4,1,""],path:[184,4,1,""],priority:[184,4,1,""]},"evennia.commands.default.comms":{CmdAddCom:[185,1,1,""],CmdAllCom:[185,1,1,""],CmdCBoot:[185,1,1,""],CmdCWho:[185,1,1,""],CmdCdesc:[185,1,1,""],CmdCdestroy:[185,1,1,""],CmdChannel:[185,1,1,""],CmdChannelCreate:[185,1,1,""],CmdClock:[185,1,1,""],CmdDelCom:[185,1,1,""],CmdGrapevine2Chan:[185,1,1,""],CmdIRC2Chan:[185,1,1,""],CmdIRCStatus:[185,1,1,""],CmdPage:[185,1,1,""],CmdRSS2Chan:[185,1,1,""]},"evennia.commands.default.comms.CmdAddCom":{account_caller:[185,4,1,""],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.commands.default.comms.CmdAllCom":{account_caller:[185,4,1,""],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.commands.default.comms.CmdCBoot":{account_caller:[185,4,1,""],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,""],switch_options:[185,4,1,""]},"evennia.commands.default.comms.CmdCWho":{account_caller:[185,4,1,""],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.commands.default.comms.CmdCdesc":{account_caller:[185,4,1,""],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.commands.default.comms.CmdCdestroy":{account_caller:[185,4,1,""],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.commands.default.comms.CmdChannel":{account_caller:[185,4,1,""],add_alias:[185,3,1,""],aliases:[185,4,1,""],ban_user:[185,3,1,""],boot_user:[185,3,1,""],channel_list_bans:[185,3,1,""],channel_list_who:[185,3,1,""],create_channel:[185,3,1,""],destroy_channel:[185,3,1,""],display_all_channels:[185,3,1,""],display_subbed_channels:[185,3,1,""],func:[185,3,1,""],get_channel_aliases:[185,3,1,""],get_channel_history:[185,3,1,""],help_category:[185,4,1,""],key:[185,4,1,""],list_channels:[185,3,1,""],lock_storage:[185,4,1,""],locks:[185,4,1,""],msg_channel:[185,3,1,""],mute_channel:[185,3,1,""],remove_alias:[185,3,1,""],search_channel:[185,3,1,""],search_index_entry:[185,4,1,""],set_desc:[185,3,1,""],set_lock:[185,3,1,""],sub_to_channel:[185,3,1,""],switch_options:[185,4,1,""],unban_user:[185,3,1,""],unmute_channel:[185,3,1,""],unset_lock:[185,3,1,""],unsub_from_channel:[185,3,1,""]},"evennia.commands.default.comms.CmdChannelCreate":{account_caller:[185,4,1,""],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.commands.default.comms.CmdClock":{account_caller:[185,4,1,""],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.commands.default.comms.CmdDelCom":{account_caller:[185,4,1,""],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.commands.default.comms.CmdGrapevine2Chan":{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,""],switch_options:[185,4,1,""]},"evennia.commands.default.comms.CmdIRC2Chan":{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,""],switch_options:[185,4,1,""]},"evennia.commands.default.comms.CmdIRCStatus":{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.commands.default.comms.CmdPage":{account_caller:[185,4,1,""],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,""],switch_options:[185,4,1,""]},"evennia.commands.default.comms.CmdRSS2Chan":{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,""],switch_options:[185,4,1,""]},"evennia.commands.default.general":{CmdAccess:[186,1,1,""],CmdDrop:[186,1,1,""],CmdGet:[186,1,1,""],CmdGive:[186,1,1,""],CmdHome:[186,1,1,""],CmdInventory:[186,1,1,""],CmdLook:[186,1,1,""],CmdNick:[186,1,1,""],CmdPose:[186,1,1,""],CmdSay:[186,1,1,""],CmdSetDesc:[186,1,1,""],CmdWhisper:[186,1,1,""]},"evennia.commands.default.general.CmdAccess":{aliases:[186,4,1,""],arg_regex:[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.commands.default.general.CmdDrop":{aliases:[186,4,1,""],arg_regex:[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.commands.default.general.CmdGet":{aliases:[186,4,1,""],arg_regex:[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.commands.default.general.CmdGive":{aliases:[186,4,1,""],arg_regex:[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,""],rhs_split:[186,4,1,""],search_index_entry:[186,4,1,""]},"evennia.commands.default.general.CmdHome":{aliases:[186,4,1,""],arg_regex:[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.commands.default.general.CmdInventory":{aliases:[186,4,1,""],arg_regex:[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.commands.default.general.CmdLook":{aliases:[186,4,1,""],arg_regex:[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.commands.default.general.CmdNick":{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,""],parse:[186,3,1,""],search_index_entry:[186,4,1,""],switch_options:[186,4,1,""]},"evennia.commands.default.general.CmdPose":{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,""],parse:[186,3,1,""],search_index_entry:[186,4,1,""]},"evennia.commands.default.general.CmdSay":{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.commands.default.general.CmdSetDesc":{aliases:[186,4,1,""],arg_regex:[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.commands.default.general.CmdWhisper":{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.commands.default.help":{CmdHelp:[187,1,1,""],CmdSetHelp:[187,1,1,""]},"evennia.commands.default.help.CmdHelp":{aliases:[187,4,1,""],arg_regex:[187,4,1,""],can_list_topic:[187,3,1,""],can_read_topic:[187,3,1,""],clickable_topics:[187,4,1,""],collect_topics:[187,3,1,""],do_search:[187,3,1,""],format_help_entry:[187,3,1,""],format_help_index:[187,3,1,""],func:[187,3,1,""],help_category:[187,4,1,""],help_more:[187,4,1,""],index_category_clr:[187,4,1,""],index_topic_clr:[187,4,1,""],index_type_separator_clr:[187,4,1,""],key:[187,4,1,""],lock_storage:[187,4,1,""],locks:[187,4,1,""],msg_help:[187,3,1,""],parse:[187,3,1,""],return_cmdset:[187,4,1,""],search_index_entry:[187,4,1,""],subtopic_separator_char:[187,4,1,""],suggestion_cutoff:[187,4,1,""],suggestion_maxnum:[187,4,1,""]},"evennia.commands.default.help.CmdSetHelp":{aliases:[187,4,1,""],arg_regex:[187,4,1,""],func:[187,3,1,""],help_category:[187,4,1,""],key:[187,4,1,""],lock_storage:[187,4,1,""],locks:[187,4,1,""],parse:[187,3,1,""],search_index_entry:[187,4,1,""],switch_options:[187,4,1,""]},"evennia.commands.default.muxcommand":{MuxAccountCommand:[188,1,1,""],MuxCommand:[188,1,1,""]},"evennia.commands.default.muxcommand.MuxAccountCommand":{account_caller:[188,4,1,""],aliases:[188,4,1,""],help_category:[188,4,1,""],key:[188,4,1,""],lock_storage:[188,4,1,""],search_index_entry:[188,4,1,""]},"evennia.commands.default.muxcommand.MuxCommand":{aliases:[188,4,1,""],at_post_cmd:[188,3,1,""],at_pre_cmd:[188,3,1,""],func:[188,3,1,""],get_command_info:[188,3,1,""],has_perm:[188,3,1,""],help_category:[188,4,1,""],key:[188,4,1,""],lock_storage:[188,4,1,""],parse:[188,3,1,""],search_index_entry:[188,4,1,""]},"evennia.commands.default.syscommands":{SystemMultimatch:[189,1,1,""],SystemNoInput:[189,1,1,""],SystemNoMatch:[189,1,1,""]},"evennia.commands.default.syscommands.SystemMultimatch":{aliases:[189,4,1,""],func:[189,3,1,""],help_category:[189,4,1,""],key:[189,4,1,""],lock_storage:[189,4,1,""],locks:[189,4,1,""],search_index_entry:[189,4,1,""]},"evennia.commands.default.syscommands.SystemNoInput":{aliases:[189,4,1,""],func:[189,3,1,""],help_category:[189,4,1,""],key:[189,4,1,""],lock_storage:[189,4,1,""],locks:[189,4,1,""],search_index_entry:[189,4,1,""]},"evennia.commands.default.syscommands.SystemNoMatch":{aliases:[189,4,1,""],func:[189,3,1,""],help_category:[189,4,1,""],key:[189,4,1,""],lock_storage:[189,4,1,""],locks:[189,4,1,""],search_index_entry:[189,4,1,""]},"evennia.commands.default.system":{CmdAbout:[190,1,1,""],CmdObjects:[190,1,1,""],CmdPy:[190,1,1,""],CmdReload:[190,1,1,""],CmdReset:[190,1,1,""],CmdScripts:[190,1,1,""],CmdServerLoad:[190,1,1,""],CmdService:[190,1,1,""],CmdShutdown:[190,1,1,""],CmdTasks:[190,1,1,""],CmdTime:[190,1,1,""]},"evennia.commands.default.system.CmdAbout":{aliases:[190,4,1,""],func:[190,3,1,""],help_category:[190,4,1,""],key:[190,4,1,""],lock_storage:[190,4,1,""],locks:[190,4,1,""],search_index_entry:[190,4,1,""]},"evennia.commands.default.system.CmdObjects":{aliases:[190,4,1,""],func:[190,3,1,""],help_category:[190,4,1,""],key:[190,4,1,""],lock_storage:[190,4,1,""],locks:[190,4,1,""],search_index_entry:[190,4,1,""]},"evennia.commands.default.system.CmdPy":{aliases:[190,4,1,""],func:[190,3,1,""],help_category:[190,4,1,""],key:[190,4,1,""],lock_storage:[190,4,1,""],locks:[190,4,1,""],search_index_entry:[190,4,1,""],switch_options:[190,4,1,""]},"evennia.commands.default.system.CmdReload":{aliases:[190,4,1,""],func:[190,3,1,""],help_category:[190,4,1,""],key:[190,4,1,""],lock_storage:[190,4,1,""],locks:[190,4,1,""],search_index_entry:[190,4,1,""]},"evennia.commands.default.system.CmdReset":{aliases:[190,4,1,""],func:[190,3,1,""],help_category:[190,4,1,""],key:[190,4,1,""],lock_storage:[190,4,1,""],locks:[190,4,1,""],search_index_entry:[190,4,1,""]},"evennia.commands.default.system.CmdScripts":{aliases:[190,4,1,""],excluded_typeclass_paths:[190,4,1,""],func:[190,3,1,""],help_category:[190,4,1,""],key:[190,4,1,""],lock_storage:[190,4,1,""],locks:[190,4,1,""],search_index_entry:[190,4,1,""],switch_mapping:[190,4,1,""],switch_options:[190,4,1,""]},"evennia.commands.default.system.CmdServerLoad":{aliases:[190,4,1,""],func:[190,3,1,""],help_category:[190,4,1,""],key:[190,4,1,""],lock_storage:[190,4,1,""],locks:[190,4,1,""],search_index_entry:[190,4,1,""],switch_options:[190,4,1,""]},"evennia.commands.default.system.CmdService":{aliases:[190,4,1,""],func:[190,3,1,""],help_category:[190,4,1,""],key:[190,4,1,""],lock_storage:[190,4,1,""],locks:[190,4,1,""],search_index_entry:[190,4,1,""],switch_options:[190,4,1,""]},"evennia.commands.default.system.CmdShutdown":{aliases:[190,4,1,""],func:[190,3,1,""],help_category:[190,4,1,""],key:[190,4,1,""],lock_storage:[190,4,1,""],locks:[190,4,1,""],search_index_entry:[190,4,1,""]},"evennia.commands.default.system.CmdTasks":{aliases:[190,4,1,""],coll_date_func:[190,3,1,""],do_task_action:[190,3,1,""],func:[190,3,1,""],help_category:[190,4,1,""],key:[190,4,1,""],lock_storage:[190,4,1,""],locks:[190,4,1,""],search_index_entry:[190,4,1,""],switch_options:[190,4,1,""]},"evennia.commands.default.system.CmdTime":{aliases:[190,4,1,""],func:[190,3,1,""],help_category:[190,4,1,""],key:[190,4,1,""],lock_storage:[190,4,1,""],locks:[190,4,1,""],search_index_entry:[190,4,1,""]},"evennia.commands.default.tests":{CmdInterrupt:[191,1,1,""],CommandTest:[191,1,1,""],TestAccount:[191,1,1,""],TestAdmin:[191,1,1,""],TestBatchProcess:[191,1,1,""],TestBuilding:[191,1,1,""],TestCmdTasks:[191,1,1,""],TestComms:[191,1,1,""],TestCommsChannel:[191,1,1,""],TestGeneral:[191,1,1,""],TestHelp:[191,1,1,""],TestInterruptCommand:[191,1,1,""],TestSystem:[191,1,1,""],TestSystemCommands:[191,1,1,""],TestUnconnectedCommand:[191,1,1,""],func_test_cmd_tasks:[191,5,1,""]},"evennia.commands.default.tests.CmdInterrupt":{aliases:[191,4,1,""],func:[191,3,1,""],help_category:[191,4,1,""],key:[191,4,1,""],lock_storage:[191,4,1,""],parse:[191,3,1,""],search_index_entry:[191,4,1,""]},"evennia.commands.default.tests.CommandTest":{call:[191,3,1,""]},"evennia.commands.default.tests.TestAccount":{test_char_create:[191,3,1,""],test_char_delete:[191,3,1,""],test_color_test:[191,3,1,""],test_ic:[191,3,1,""],test_ic__nonaccess:[191,3,1,""],test_ic__other_object:[191,3,1,""],test_ooc:[191,3,1,""],test_ooc_look:[191,3,1,""],test_option:[191,3,1,""],test_password:[191,3,1,""],test_quell:[191,3,1,""],test_quit:[191,3,1,""],test_sessions:[191,3,1,""],test_who:[191,3,1,""]},"evennia.commands.default.tests.TestAdmin":{test_ban:[191,3,1,""],test_emit:[191,3,1,""],test_force:[191,3,1,""],test_perm:[191,3,1,""],test_wall:[191,3,1,""]},"evennia.commands.default.tests.TestBatchProcess":{test_batch_commands:[191,3,1,""]},"evennia.commands.default.tests.TestBuilding":{test_attribute_commands:[191,3,1,""],test_copy:[191,3,1,""],test_create:[191,3,1,""],test_desc:[191,3,1,""],test_desc_default_to_room:[191,3,1,""],test_destroy:[191,3,1,""],test_destroy_sequence:[191,3,1,""],test_dig:[191,3,1,""],test_do_nested_lookup:[191,3,1,""],test_empty_desc:[191,3,1,""],test_examine:[191,3,1,""],test_exit_commands:[191,3,1,""],test_find:[191,3,1,""],test_list_cmdsets:[191,3,1,""],test_lock:[191,3,1,""],test_name:[191,3,1,""],test_nested_attribute_commands:[191,3,1,""],test_script:[191,3,1,""],test_set_home:[191,3,1,""],test_set_obj_alias:[191,3,1,""],test_spawn:[191,3,1,""],test_split_nested_attr:[191,3,1,""],test_tag:[191,3,1,""],test_teleport:[191,3,1,""],test_tunnel:[191,3,1,""],test_tunnel_exit_typeclass:[191,3,1,""],test_typeclass:[191,3,1,""]},"evennia.commands.default.tests.TestCmdTasks":{setUp:[191,3,1,""],tearDown:[191,3,1,""],test_active_task:[191,3,1,""],test_call:[191,3,1,""],test_cancel:[191,3,1,""],test_do_task:[191,3,1,""],test_func_name_manipulation:[191,3,1,""],test_misformed_command:[191,3,1,""],test_new_task_waiting_input:[191,3,1,""],test_no_input:[191,3,1,""],test_no_tasks:[191,3,1,""],test_pause_unpause:[191,3,1,""],test_persistent_task:[191,3,1,""],test_remove:[191,3,1,""],test_responce_of_yes:[191,3,1,""],test_task_complete_waiting_input:[191,3,1,""],test_wrong_func_name:[191,3,1,""]},"evennia.commands.default.tests.TestComms":{setUp:[191,3,1,""],test_all_com:[191,3,1,""],test_cboot:[191,3,1,""],test_cdesc:[191,3,1,""],test_cdestroy:[191,3,1,""],test_clock:[191,3,1,""],test_cwho:[191,3,1,""],test_page:[191,3,1,""],test_toggle_com:[191,3,1,""]},"evennia.commands.default.tests.TestCommsChannel":{setUp:[191,3,1,""],tearDown:[191,3,1,""],test_channel__alias__unalias:[191,3,1,""],test_channel__all:[191,3,1,""],test_channel__ban__unban:[191,3,1,""],test_channel__boot:[191,3,1,""],test_channel__create:[191,3,1,""],test_channel__desc:[191,3,1,""],test_channel__destroy:[191,3,1,""],test_channel__history:[191,3,1,""],test_channel__list:[191,3,1,""],test_channel__lock:[191,3,1,""],test_channel__msg:[191,3,1,""],test_channel__mute:[191,3,1,""],test_channel__noarg:[191,3,1,""],test_channel__sub:[191,3,1,""],test_channel__unlock:[191,3,1,""],test_channel__unmute:[191,3,1,""],test_channel__unsub:[191,3,1,""],test_channel__who:[191,3,1,""]},"evennia.commands.default.tests.TestGeneral":{test_access:[191,3,1,""],test_get_and_drop:[191,3,1,""],test_give:[191,3,1,""],test_home:[191,3,1,""],test_inventory:[191,3,1,""],test_look:[191,3,1,""],test_mux_command:[191,3,1,""],test_nick:[191,3,1,""],test_pose:[191,3,1,""],test_say:[191,3,1,""],test_whisper:[191,3,1,""]},"evennia.commands.default.tests.TestHelp":{maxDiff:[191,4,1,""],setUp:[191,3,1,""],tearDown:[191,3,1,""],test_help:[191,3,1,""],test_set_help:[191,3,1,""],test_subtopic_fetch:[191,4,1,""],test_subtopic_fetch_00_test:[191,3,1,""],test_subtopic_fetch_01_test_creating_extra_stuff:[191,3,1,""],test_subtopic_fetch_02_test_creating:[191,3,1,""],test_subtopic_fetch_03_test_extra:[191,3,1,""],test_subtopic_fetch_04_test_extra_subsubtopic:[191,3,1,""],test_subtopic_fetch_05_test_creating_extra_subsub:[191,3,1,""],test_subtopic_fetch_06_test_Something_else:[191,3,1,""],test_subtopic_fetch_07_test_More:[191,3,1,""],test_subtopic_fetch_08_test_More_Second_more:[191,3,1,""],test_subtopic_fetch_09_test_More_more:[191,3,1,""],test_subtopic_fetch_10_test_more_second_more_again:[191,3,1,""],test_subtopic_fetch_11_test_more_second_third:[191,3,1,""]},"evennia.commands.default.tests.TestInterruptCommand":{test_interrupt_command:[191,3,1,""]},"evennia.commands.default.tests.TestSystem":{test_about:[191,3,1,""],test_objects:[191,3,1,""],test_py:[191,3,1,""],test_scripts:[191,3,1,""],test_server_load:[191,3,1,""]},"evennia.commands.default.tests.TestSystemCommands":{test_multimatch:[191,3,1,""],test_simple_defaults:[191,3,1,""]},"evennia.commands.default.tests.TestUnconnectedCommand":{test_info_command:[191,3,1,""]},"evennia.commands.default.unloggedin":{CmdUnconnectedConnect:[192,1,1,""],CmdUnconnectedCreate:[192,1,1,""],CmdUnconnectedHelp:[192,1,1,""],CmdUnconnectedLook:[192,1,1,""],CmdUnconnectedQuit:[192,1,1,""]},"evennia.commands.default.unloggedin.CmdUnconnectedConnect":{aliases:[192,4,1,""],arg_regex:[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.commands.default.unloggedin.CmdUnconnectedCreate":{aliases:[192,4,1,""],arg_regex:[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.commands.default.unloggedin.CmdUnconnectedHelp":{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.commands.default.unloggedin.CmdUnconnectedLook":{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.commands.default.unloggedin.CmdUnconnectedQuit":{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.comms":{comms:[194,0,0,"-"],managers:[195,0,0,"-"],models:[196,0,0,"-"]},"evennia.comms.comms":{DefaultChannel:[194,1,1,""]},"evennia.comms.comms.DefaultChannel":{"delete":[194,3,1,""],DoesNotExist:[194,2,1,""],MultipleObjectsReturned:[194,2,1,""],access:[194,3,1,""],add_user_channel_alias:[194,3,1,""],at_channel_creation:[194,3,1,""],at_first_save:[194,3,1,""],at_init:[194,3,1,""],at_post_msg:[194,3,1,""],at_pre_msg:[194,3,1,""],ban:[194,3,1,""],banlist:[194,3,1,""],basetype_setup:[194,3,1,""],channel_msg_nick_pattern:[194,4,1,""],channel_msg_nick_replacement:[194,4,1,""],channel_prefix:[194,3,1,""],channel_prefix_string:[194,4,1,""],connect:[194,3,1,""],create:[194,3,1,""],disconnect:[194,3,1,""],distribute_message:[194,3,1,""],format_external:[194,3,1,""],format_message:[194,3,1,""],format_senders:[194,3,1,""],get_absolute_url:[194,3,1,""],get_log_filename:[194,3,1,""],has_connection:[194,3,1,""],log_file:[194,4,1,""],message_transform:[194,3,1,""],msg:[194,3,1,""],mute:[194,3,1,""],mutelist:[194,3,1,""],objects:[194,4,1,""],path:[194,4,1,""],pose_transform:[194,3,1,""],post_join_channel:[194,3,1,""],post_leave_channel:[194,3,1,""],post_send_message:[194,3,1,""],pre_join_channel:[194,3,1,""],pre_leave_channel:[194,3,1,""],pre_send_message:[194,3,1,""],remove_user_channel_alias:[194,3,1,""],send_to_online_only:[194,4,1,""],set_log_filename:[194,3,1,""],typename:[194,4,1,""],unban:[194,3,1,""],unmute:[194,3,1,""],web_get_admin_url:[194,3,1,""],web_get_create_url:[194,3,1,""],web_get_delete_url:[194,3,1,""],web_get_detail_url:[194,3,1,""],web_get_update_url:[194,3,1,""],wholist:[194,3,1,""]},"evennia.comms.managers":{ChannelDBManager:[195,1,1,""],ChannelManager:[195,1,1,""],CommError:[195,2,1,""],MsgManager:[195,1,1,""],identify_object:[195,5,1,""],to_object:[195,5,1,""]},"evennia.comms.managers.ChannelDBManager":{channel_search:[195,3,1,""],get_all_channels:[195,3,1,""],get_channel:[195,3,1,""],get_subscriptions:[195,3,1,""],search_channel:[195,3,1,""]},"evennia.comms.managers.MsgManager":{get_message_by_id:[195,3,1,""],get_messages_by_receiver:[195,3,1,""],get_messages_by_sender:[195,3,1,""],identify_object:[195,3,1,""],message_search:[195,3,1,""],search_message:[195,3,1,""]},"evennia.comms.models":{ChannelDB:[196,1,1,""],Msg:[196,1,1,""],TempMsg:[196,1,1,""]},"evennia.comms.models.ChannelDB":{DoesNotExist:[196,2,1,""],MultipleObjectsReturned:[196,2,1,""],db_account_subscriptions:[196,4,1,""],db_attributes:[196,4,1,""],db_object_subscriptions:[196,4,1,""],db_tags:[196,4,1,""],get_next_by_db_date_created:[196,3,1,""],get_previous_by_db_date_created:[196,3,1,""],id:[196,4,1,""],objects:[196,4,1,""],path:[196,4,1,""],subscriptions:[196,4,1,""],typename:[196,4,1,""]},"evennia.comms.models.Msg":{DoesNotExist:[196,2,1,""],MultipleObjectsReturned:[196,2,1,""],access:[196,3,1,""],date_created:[196,3,1,""],db_date_created:[196,4,1,""],db_header:[196,4,1,""],db_hide_from_accounts:[196,4,1,""],db_hide_from_objects:[196,4,1,""],db_lock_storage:[196,4,1,""],db_message:[196,4,1,""],db_receiver_external:[196,4,1,""],db_receivers_accounts:[196,4,1,""],db_receivers_objects:[196,4,1,""],db_receivers_scripts:[196,4,1,""],db_sender_accounts:[196,4,1,""],db_sender_external:[196,4,1,""],db_sender_objects:[196,4,1,""],db_sender_scripts:[196,4,1,""],db_tags:[196,4,1,""],get_next_by_db_date_created:[196,3,1,""],get_previous_by_db_date_created:[196,3,1,""],header:[196,3,1,""],hide_from:[196,3,1,""],id:[196,4,1,""],lock_storage:[196,3,1,""],locks:[196,4,1,""],message:[196,3,1,""],objects:[196,4,1,""],path:[196,4,1,""],receiver_external:[196,3,1,""],receivers:[196,3,1,""],remove_receiver:[196,3,1,""],remove_sender:[196,3,1,""],sender_external:[196,3,1,""],senders:[196,3,1,""],tags:[196,4,1,""],typename:[196,4,1,""]},"evennia.comms.models.TempMsg":{__init__:[196,3,1,""],access:[196,3,1,""],locks:[196,4,1,""],remove_receiver:[196,3,1,""],remove_sender:[196,3,1,""]},"evennia.contrib":{awsstorage:[198,0,0,"-"],barter:[201,0,0,"-"],building_menu:[202,0,0,"-"],chargen:[203,0,0,"-"],clothing:[204,0,0,"-"],color_markups:[205,0,0,"-"],crafting:[206,0,0,"-"],custom_gametime:[210,0,0,"-"],dice:[211,0,0,"-"],email_login:[212,0,0,"-"],evscaperoom:[213,0,0,"-"],extended_room:[222,0,0,"-"],fieldfill:[223,0,0,"-"],gendersub:[224,0,0,"-"],health_bar:[225,0,0,"-"],ingame_python:[226,0,0,"-"],mail:[234,0,0,"-"],multidescer:[237,0,0,"-"],puzzles:[238,0,0,"-"],random_string_generator:[239,0,0,"-"],rplanguage:[240,0,0,"-"],rpsystem:[241,0,0,"-"],security:[242,0,0,"-"],simpledoor:[247,0,0,"-"],slow_exit:[248,0,0,"-"],talking_npc:[249,0,0,"-"],test_traits:[250,0,0,"-"],traits:[251,0,0,"-"],tree_select:[252,0,0,"-"],turnbattle:[253,0,0,"-"],tutorial_examples:[259,0,0,"-"],tutorial_world:[265,0,0,"-"],unixcommand:[270,0,0,"-"],wilderness:[271,0,0,"-"],xyzgrid:[272,0,0,"-"]},"evennia.contrib.awsstorage":{aws_s3_cdn:[199,0,0,"-"],tests:[200,0,0,"-"]},"evennia.contrib.awsstorage.aws_s3_cdn":{S3Boto3Storage:[199,1,1,""],S3Boto3StorageFile:[199,1,1,""],check_location:[199,5,1,""],get_available_overwrite_name:[199,5,1,""],lookup_env:[199,5,1,""],safe_join:[199,5,1,""],setting:[199,5,1,""]},"evennia.contrib.awsstorage.aws_s3_cdn.S3Boto3Storage":{"delete":[199,3,1,""],__init__:[199,3,1,""],access_key:[199,4,1,""],access_key_names:[199,4,1,""],addressing_style:[199,4,1,""],auto_create_bucket:[199,4,1,""],bucket:[199,3,1,""],bucket_acl:[199,4,1,""],bucket_name:[199,4,1,""],config:[199,4,1,""],connection:[199,3,1,""],custom_domain:[199,4,1,""],deconstruct:[199,3,1,""],default_acl:[199,4,1,""],default_content_type:[199,4,1,""],encryption:[199,4,1,""],endpoint_url:[199,4,1,""],entries:[199,3,1,""],exists:[199,3,1,""],file_name_charset:[199,4,1,""],file_overwrite:[199,4,1,""],get_available_name:[199,3,1,""],get_modified_time:[199,3,1,""],get_object_parameters:[199,3,1,""],gzip:[199,4,1,""],gzip_content_types:[199,4,1,""],listdir:[199,3,1,""],location:[199,4,1,""],max_memory_size:[199,4,1,""],modified_time:[199,3,1,""],object_parameters:[199,4,1,""],preload_metadata:[199,4,1,""],proxies:[199,4,1,""],querystring_auth:[199,4,1,""],querystring_expire:[199,4,1,""],reduced_redundancy:[199,4,1,""],region_name:[199,4,1,""],secret_key:[199,4,1,""],secret_key_names:[199,4,1,""],secure_urls:[199,4,1,""],security_token:[199,4,1,""],security_token_names:[199,4,1,""],signature_version:[199,4,1,""],size:[199,3,1,""],url:[199,3,1,""],url_protocol:[199,4,1,""],use_ssl:[199,4,1,""],verify:[199,4,1,""]},"evennia.contrib.awsstorage.aws_s3_cdn.S3Boto3StorageFile":{__init__:[199,3,1,""],buffer_size:[199,4,1,""],close:[199,3,1,""],deconstruct:[199,3,1,""],file:[199,3,1,""],read:[199,3,1,""],readline:[199,3,1,""],size:[199,3,1,""],write:[199,3,1,""]},"evennia.contrib.awsstorage.tests":{S3Boto3StorageTests:[200,1,1,""],S3Boto3TestCase:[200,1,1,""]},"evennia.contrib.awsstorage.tests.S3Boto3StorageTests":{test_auto_creating_bucket:[200,3,1,""],test_auto_creating_bucket_with_acl:[200,3,1,""],test_clean_name:[200,3,1,""],test_clean_name_normalize:[200,3,1,""],test_clean_name_trailing_slash:[200,3,1,""],test_clean_name_windows:[200,3,1,""],test_compress_content_len:[200,3,1,""],test_connection_threading:[200,3,1,""],test_content_type:[200,3,1,""],test_generated_url_is_encoded:[200,3,1,""],test_location_leading_slash:[200,3,1,""],test_override_class_variable:[200,3,1,""],test_override_init_argument:[200,3,1,""],test_pickle_with_bucket:[200,3,1,""],test_pickle_without_bucket:[200,3,1,""],test_special_characters:[200,3,1,""],test_storage_delete:[200,3,1,""],test_storage_exists:[200,3,1,""],test_storage_exists_doesnt_create_bucket:[200,3,1,""],test_storage_exists_false:[200,3,1,""],test_storage_listdir_base:[200,3,1,""],test_storage_listdir_subdir:[200,3,1,""],test_storage_mtime:[200,3,1,""],test_storage_open_no_overwrite_existing:[200,3,1,""],test_storage_open_no_write:[200,3,1,""],test_storage_open_write:[200,3,1,""],test_storage_save:[200,3,1,""],test_storage_save_gzip:[200,3,1,""],test_storage_save_gzip_twice:[200,3,1,""],test_storage_save_gzipped:[200,3,1,""],test_storage_save_with_acl:[200,3,1,""],test_storage_size:[200,3,1,""],test_storage_url:[200,3,1,""],test_storage_url_slashes:[200,3,1,""],test_storage_write_beyond_buffer_size:[200,3,1,""],test_strip_signing_parameters:[200,3,1,""]},"evennia.contrib.awsstorage.tests.S3Boto3TestCase":{setUp:[200,3,1,""]},"evennia.contrib.barter":{CmdAccept:[201,1,1,""],CmdDecline:[201,1,1,""],CmdEvaluate:[201,1,1,""],CmdFinish:[201,1,1,""],CmdOffer:[201,1,1,""],CmdStatus:[201,1,1,""],CmdTrade:[201,1,1,""],CmdTradeBase:[201,1,1,""],CmdTradeHelp:[201,1,1,""],CmdsetTrade:[201,1,1,""],TradeHandler:[201,1,1,""],TradeTimeout:[201,1,1,""]},"evennia.contrib.barter.CmdAccept":{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.barter.CmdDecline":{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.barter.CmdEvaluate":{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.barter.CmdFinish":{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.barter.CmdOffer":{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.barter.CmdStatus":{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.barter.CmdTrade":{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.barter.CmdTradeBase":{aliases:[201,4,1,""],help_category:[201,4,1,""],key:[201,4,1,""],lock_storage:[201,4,1,""],parse:[201,3,1,""],search_index_entry:[201,4,1,""]},"evennia.contrib.barter.CmdTradeHelp":{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.barter.CmdsetTrade":{at_cmdset_creation:[201,3,1,""],key:[201,4,1,""],path:[201,4,1,""]},"evennia.contrib.barter.TradeHandler":{__init__:[201,3,1,""],accept:[201,3,1,""],decline:[201,3,1,""],finish:[201,3,1,""],get_other:[201,3,1,""],join:[201,3,1,""],list:[201,3,1,""],msg_other:[201,3,1,""],offer:[201,3,1,""],search:[201,3,1,""],unjoin:[201,3,1,""]},"evennia.contrib.barter.TradeTimeout":{DoesNotExist:[201,2,1,""],MultipleObjectsReturned:[201,2,1,""],at_repeat:[201,3,1,""],at_script_creation:[201,3,1,""],is_valid:[201,3,1,""],path:[201,4,1,""],typename:[201,4,1,""]},"evennia.contrib.building_menu":{BuildingMenu:[202,1,1,""],BuildingMenuCmdSet:[202,1,1,""],Choice:[202,1,1,""],CmdNoInput:[202,1,1,""],CmdNoMatch:[202,1,1,""],GenericBuildingCmd:[202,1,1,""],GenericBuildingMenu:[202,1,1,""],menu_edit:[202,5,1,""],menu_quit:[202,5,1,""],menu_setattr:[202,5,1,""]},"evennia.contrib.building_menu.BuildingMenu":{__init__:[202,3,1,""],add_choice:[202,3,1,""],add_choice_edit:[202,3,1,""],add_choice_quit:[202,3,1,""],close:[202,3,1,""],current_choice:[202,3,1,""],display:[202,3,1,""],display_choice:[202,3,1,""],display_title:[202,3,1,""],init:[202,3,1,""],joker_key:[202,4,1,""],keys_go_back:[202,4,1,""],min_shortcut:[202,4,1,""],move:[202,3,1,""],open:[202,3,1,""],open_parent_menu:[202,3,1,""],open_submenu:[202,3,1,""],relevant_choices:[202,3,1,""],restore:[202,3,1,""],sep_keys:[202,4,1,""]},"evennia.contrib.building_menu.BuildingMenuCmdSet":{at_cmdset_creation:[202,3,1,""],key:[202,4,1,""],path:[202,4,1,""],priority:[202,4,1,""]},"evennia.contrib.building_menu.Choice":{__init__:[202,3,1,""],enter:[202,3,1,""],format_text:[202,3,1,""],keys:[202,3,1,""],leave:[202,3,1,""],nomatch:[202,3,1,""]},"evennia.contrib.building_menu.CmdNoInput":{__init__:[202,3,1,""],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.building_menu.CmdNoMatch":{__init__:[202,3,1,""],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.building_menu.GenericBuildingCmd":{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.building_menu.GenericBuildingMenu":{init:[202,3,1,""]},"evennia.contrib.chargen":{CmdOOCCharacterCreate:[203,1,1,""],CmdOOCLook:[203,1,1,""],OOCCmdSetCharGen:[203,1,1,""]},"evennia.contrib.chargen.CmdOOCCharacterCreate":{aliases:[203,4,1,""],func:[203,3,1,""],help_category:[203,4,1,""],key:[203,4,1,""],lock_storage:[203,4,1,""],locks:[203,4,1,""],search_index_entry:[203,4,1,""]},"evennia.contrib.chargen.CmdOOCLook":{aliases:[203,4,1,""],func:[203,3,1,""],help_category:[203,4,1,""],key:[203,4,1,""],lock_storage:[203,4,1,""],locks:[203,4,1,""],search_index_entry:[203,4,1,""]},"evennia.contrib.chargen.OOCCmdSetCharGen":{at_cmdset_creation:[203,3,1,""],path:[203,4,1,""]},"evennia.contrib.clothing":{ClothedCharacter:[204,1,1,""],ClothedCharacterCmdSet:[204,1,1,""],Clothing:[204,1,1,""],CmdCover:[204,1,1,""],CmdDrop:[204,1,1,""],CmdGive:[204,1,1,""],CmdInventory:[204,1,1,""],CmdRemove:[204,1,1,""],CmdUncover:[204,1,1,""],CmdWear:[204,1,1,""],clothing_type_count:[204,5,1,""],get_worn_clothes:[204,5,1,""],order_clothes_list:[204,5,1,""],single_type_count:[204,5,1,""]},"evennia.contrib.clothing.ClothedCharacter":{DoesNotExist:[204,2,1,""],MultipleObjectsReturned:[204,2,1,""],path:[204,4,1,""],return_appearance:[204,3,1,""],typename:[204,4,1,""]},"evennia.contrib.clothing.ClothedCharacterCmdSet":{at_cmdset_creation:[204,3,1,""],key:[204,4,1,""],path:[204,4,1,""]},"evennia.contrib.clothing.Clothing":{DoesNotExist:[204,2,1,""],MultipleObjectsReturned:[204,2,1,""],at_get:[204,3,1,""],path:[204,4,1,""],remove:[204,3,1,""],typename:[204,4,1,""],wear:[204,3,1,""]},"evennia.contrib.clothing.CmdCover":{aliases:[204,4,1,""],func:[204,3,1,""],help_category:[204,4,1,""],key:[204,4,1,""],lock_storage:[204,4,1,""],search_index_entry:[204,4,1,""]},"evennia.contrib.clothing.CmdDrop":{aliases:[204,4,1,""],arg_regex:[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.clothing.CmdGive":{aliases:[204,4,1,""],arg_regex:[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.clothing.CmdInventory":{aliases:[204,4,1,""],arg_regex:[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.clothing.CmdRemove":{aliases:[204,4,1,""],func:[204,3,1,""],help_category:[204,4,1,""],key:[204,4,1,""],lock_storage:[204,4,1,""],search_index_entry:[204,4,1,""]},"evennia.contrib.clothing.CmdUncover":{aliases:[204,4,1,""],func:[204,3,1,""],help_category:[204,4,1,""],key:[204,4,1,""],lock_storage:[204,4,1,""],search_index_entry:[204,4,1,""]},"evennia.contrib.clothing.CmdWear":{aliases:[204,4,1,""],func:[204,3,1,""],help_category:[204,4,1,""],key:[204,4,1,""],lock_storage:[204,4,1,""],search_index_entry:[204,4,1,""]},"evennia.contrib.crafting":{crafting:[207,0,0,"-"],example_recipes:[208,0,0,"-"],tests:[209,0,0,"-"]},"evennia.contrib.crafting.crafting":{CmdCraft:[207,1,1,""],CraftingCmdSet:[207,1,1,""],CraftingError:[207,2,1,""],CraftingRecipe:[207,1,1,""],CraftingRecipeBase:[207,1,1,""],CraftingValidationError:[207,2,1,""],craft:[207,5,1,""]},"evennia.contrib.crafting.crafting.CmdCraft":{aliases:[207,4,1,""],arg_regex:[207,4,1,""],func:[207,3,1,""],help_category:[207,4,1,""],key:[207,4,1,""],lock_storage:[207,4,1,""],locks:[207,4,1,""],parse:[207,3,1,""],search_index_entry:[207,4,1,""]},"evennia.contrib.crafting.crafting.CraftingCmdSet":{at_cmdset_creation:[207,3,1,""],key:[207,4,1,""],path:[207,4,1,""]},"evennia.contrib.crafting.crafting.CraftingRecipe":{__init__:[207,3,1,""],consumable_names:[207,4,1,""],consumable_tag_category:[207,4,1,""],consumable_tags:[207,4,1,""],consume_on_fail:[207,4,1,""],do_craft:[207,3,1,""],error_consumable_excess_message:[207,4,1,""],error_consumable_missing_message:[207,4,1,""],error_consumable_order_message:[207,4,1,""],error_tool_excess_message:[207,4,1,""],error_tool_missing_message:[207,4,1,""],error_tool_order_message:[207,4,1,""],exact_consumable_order:[207,4,1,""],exact_consumables:[207,4,1,""],exact_tool_order:[207,4,1,""],exact_tools:[207,4,1,""],failure_message:[207,4,1,""],name:[207,4,1,""],output_names:[207,4,1,""],output_prototypes:[207,4,1,""],post_craft:[207,3,1,""],pre_craft:[207,3,1,""],seed:[207,3,1,""],success_message:[207,4,1,""],tool_names:[207,4,1,""],tool_tag_category:[207,4,1,""],tool_tags:[207,4,1,""]},"evennia.contrib.crafting.crafting.CraftingRecipeBase":{__init__:[207,3,1,""],allow_reuse:[207,4,1,""],craft:[207,3,1,""],do_craft:[207,3,1,""],msg:[207,3,1,""],name:[207,4,1,""],post_craft:[207,3,1,""],pre_craft:[207,3,1,""]},"evennia.contrib.crafting.example_recipes":{CrucibleSteelRecipe:[208,1,1,""],LeatherRecipe:[208,1,1,""],OakBarkRecipe:[208,1,1,""],PigIronRecipe:[208,1,1,""],RawhideRecipe:[208,1,1,""],SwordBladeRecipe:[208,1,1,""],SwordGuardRecipe:[208,1,1,""],SwordHandleRecipe:[208,1,1,""],SwordPommelRecipe:[208,1,1,""],SwordRecipe:[208,1,1,""],random:[208,5,1,""]},"evennia.contrib.crafting.example_recipes.CrucibleSteelRecipe":{consumable_tags:[208,4,1,""],name:[208,4,1,""],output_prototypes:[208,4,1,""],tool_tags:[208,4,1,""]},"evennia.contrib.crafting.example_recipes.LeatherRecipe":{consumable_tags:[208,4,1,""],name:[208,4,1,""],output_prototypes:[208,4,1,""],tool_tags:[208,4,1,""]},"evennia.contrib.crafting.example_recipes.OakBarkRecipe":{consumable_tags:[208,4,1,""],name:[208,4,1,""],output_prototypes:[208,4,1,""],tool_tags:[208,4,1,""]},"evennia.contrib.crafting.example_recipes.PigIronRecipe":{consumable_tags:[208,4,1,""],name:[208,4,1,""],output_prototypes:[208,4,1,""],tool_tags:[208,4,1,""]},"evennia.contrib.crafting.example_recipes.RawhideRecipe":{consumable_tags:[208,4,1,""],name:[208,4,1,""],output_prototypes:[208,4,1,""],tool_tags:[208,4,1,""]},"evennia.contrib.crafting.example_recipes.SwordBladeRecipe":{consumable_tags:[208,4,1,""],name:[208,4,1,""],output_prototypes:[208,4,1,""],tool_tags:[208,4,1,""]},"evennia.contrib.crafting.example_recipes.SwordGuardRecipe":{consumable_tags:[208,4,1,""],name:[208,4,1,""],output_prototypes:[208,4,1,""],tool_tags:[208,4,1,""]},"evennia.contrib.crafting.example_recipes.SwordHandleRecipe":{consumable_tags:[208,4,1,""],name:[208,4,1,""],output_prototypes:[208,4,1,""],tool_tags:[208,4,1,""]},"evennia.contrib.crafting.example_recipes.SwordPommelRecipe":{consumable_tags:[208,4,1,""],name:[208,4,1,""],output_prototypes:[208,4,1,""],tool_tags:[208,4,1,""]},"evennia.contrib.crafting.example_recipes.SwordRecipe":{consumable_tags:[208,4,1,""],exact_consumable_order:[208,4,1,""],name:[208,4,1,""],output_prototypes:[208,4,1,""],tool_tags:[208,4,1,""]},"evennia.contrib.crafting.tests":{TestCraftCommand:[209,1,1,""],TestCraftSword:[209,1,1,""],TestCraftUtils:[209,1,1,""],TestCraftingRecipe:[209,1,1,""],TestCraftingRecipeBase:[209,1,1,""]},"evennia.contrib.crafting.tests.TestCraftCommand":{setUp:[209,3,1,""],test_craft__nocons__failure:[209,3,1,""],test_craft__notools__failure:[209,3,1,""],test_craft__success:[209,3,1,""]},"evennia.contrib.crafting.tests.TestCraftSword":{setUp:[209,3,1,""],test_craft_sword:[209,3,1,""]},"evennia.contrib.crafting.tests.TestCraftUtils":{maxDiff:[209,4,1,""],test_load_recipes:[209,3,1,""]},"evennia.contrib.crafting.tests.TestCraftingRecipe":{maxDiff:[209,4,1,""],setUp:[209,3,1,""],tearDown:[209,3,1,""],test_craft__success:[209,3,1,""],test_craft_cons_excess__fail:[209,3,1,""],test_craft_cons_excess__sucess:[209,3,1,""],test_craft_cons_order__fail:[209,3,1,""],test_craft_missing_cons__always_consume__fail:[209,3,1,""],test_craft_missing_cons__fail:[209,3,1,""],test_craft_missing_tool__fail:[209,3,1,""],test_craft_tool_excess__fail:[209,3,1,""],test_craft_tool_excess__sucess:[209,3,1,""],test_craft_tool_order__fail:[209,3,1,""],test_craft_wrong_tool__fail:[209,3,1,""],test_error_format:[209,3,1,""],test_seed__success:[209,3,1,""]},"evennia.contrib.crafting.tests.TestCraftingRecipeBase":{setUp:[209,3,1,""],test_craft_hook__fail:[209,3,1,""],test_craft_hook__succeed:[209,3,1,""],test_msg:[209,3,1,""],test_pre_craft:[209,3,1,""],test_pre_craft_fail:[209,3,1,""]},"evennia.contrib.custom_gametime":{GametimeScript:[210,1,1,""],custom_gametime:[210,5,1,""],gametime_to_realtime:[210,5,1,""],real_seconds_until:[210,5,1,""],realtime_to_gametime:[210,5,1,""],schedule:[210,5,1,""],time_to_tuple:[210,5,1,""]},"evennia.contrib.custom_gametime.GametimeScript":{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.dice":{CmdDice:[211,1,1,""],DiceCmdSet:[211,1,1,""],roll_dice:[211,5,1,""]},"evennia.contrib.dice.CmdDice":{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.dice.DiceCmdSet":{at_cmdset_creation:[211,3,1,""],path:[211,4,1,""]},"evennia.contrib.email_login":{CmdUnconnectedConnect:[212,1,1,""],CmdUnconnectedCreate:[212,1,1,""],CmdUnconnectedHelp:[212,1,1,""],CmdUnconnectedLook:[212,1,1,""],CmdUnconnectedQuit:[212,1,1,""]},"evennia.contrib.email_login.CmdUnconnectedConnect":{aliases:[212,4,1,""],func:[212,3,1,""],help_category:[212,4,1,""],key:[212,4,1,""],lock_storage:[212,4,1,""],locks:[212,4,1,""],search_index_entry:[212,4,1,""]},"evennia.contrib.email_login.CmdUnconnectedCreate":{aliases:[212,4,1,""],func:[212,3,1,""],help_category:[212,4,1,""],key:[212,4,1,""],lock_storage:[212,4,1,""],locks:[212,4,1,""],parse:[212,3,1,""],search_index_entry:[212,4,1,""]},"evennia.contrib.email_login.CmdUnconnectedHelp":{aliases:[212,4,1,""],func:[212,3,1,""],help_category:[212,4,1,""],key:[212,4,1,""],lock_storage:[212,4,1,""],locks:[212,4,1,""],search_index_entry:[212,4,1,""]},"evennia.contrib.email_login.CmdUnconnectedLook":{aliases:[212,4,1,""],func:[212,3,1,""],help_category:[212,4,1,""],key:[212,4,1,""],lock_storage:[212,4,1,""],locks:[212,4,1,""],search_index_entry:[212,4,1,""]},"evennia.contrib.email_login.CmdUnconnectedQuit":{aliases:[212,4,1,""],func:[212,3,1,""],help_category:[212,4,1,""],key:[212,4,1,""],lock_storage:[212,4,1,""],locks:[212,4,1,""],search_index_entry:[212,4,1,""]},"evennia.contrib.evscaperoom":{commands:[214,0,0,"-"],menu:[215,0,0,"-"],objects:[216,0,0,"-"],room:[217,0,0,"-"],state:[219,0,0,"-"],tests:[220,0,0,"-"],utils:[221,0,0,"-"]},"evennia.contrib.evscaperoom.commands":{CmdCreateObj:[214,1,1,""],CmdEmote:[214,1,1,""],CmdEvscapeRoom:[214,1,1,""],CmdEvscapeRoomStart:[214,1,1,""],CmdFocus:[214,1,1,""],CmdFocusInteraction:[214,1,1,""],CmdGet:[214,1,1,""],CmdGiveUp:[214,1,1,""],CmdHelp:[214,1,1,""],CmdJumpState:[214,1,1,""],CmdLook:[214,1,1,""],CmdOptions:[214,1,1,""],CmdRerouter:[214,1,1,""],CmdSetEvScapeRoom:[214,1,1,""],CmdSetFlag:[214,1,1,""],CmdSpeak:[214,1,1,""],CmdStand:[214,1,1,""],CmdWho:[214,1,1,""]},"evennia.contrib.evscaperoom.commands.CmdCreateObj":{aliases:[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,""],obj1_search:[214,4,1,""],obj2_search:[214,4,1,""],search_index_entry:[214,4,1,""]},"evennia.contrib.evscaperoom.commands.CmdEmote":{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,""],room_replace:[214,3,1,""],search_index_entry:[214,4,1,""],you_replace:[214,3,1,""]},"evennia.contrib.evscaperoom.commands.CmdEvscapeRoom":{aliases:[214,4,1,""],arg_regex:[214,4,1,""],focus:[214,3,1,""],help_category:[214,4,1,""],key:[214,4,1,""],lock_storage:[214,4,1,""],obj1_search:[214,4,1,""],obj2_search:[214,4,1,""],parse:[214,3,1,""],search_index_entry:[214,4,1,""]},"evennia.contrib.evscaperoom.commands.CmdEvscapeRoomStart":{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.evscaperoom.commands.CmdFocus":{aliases:[214,4,1,""],func:[214,3,1,""],help_category:[214,4,1,""],key:[214,4,1,""],lock_storage:[214,4,1,""],obj1_search:[214,4,1,""],search_index_entry:[214,4,1,""]},"evennia.contrib.evscaperoom.commands.CmdFocusInteraction":{aliases:[214,4,1,""],func:[214,3,1,""],help_category:[214,4,1,""],key:[214,4,1,""],lock_storage:[214,4,1,""],obj1_search:[214,4,1,""],obj2_search:[214,4,1,""],parse:[214,3,1,""],search_index_entry:[214,4,1,""]},"evennia.contrib.evscaperoom.commands.CmdGet":{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.evscaperoom.commands.CmdGiveUp":{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.evscaperoom.commands.CmdHelp":{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.evscaperoom.commands.CmdJumpState":{aliases:[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,""],obj1_search:[214,4,1,""],obj2_search:[214,4,1,""],search_index_entry:[214,4,1,""]},"evennia.contrib.evscaperoom.commands.CmdLook":{aliases:[214,4,1,""],func:[214,3,1,""],help_category:[214,4,1,""],key:[214,4,1,""],lock_storage:[214,4,1,""],obj1_search:[214,4,1,""],obj2_search:[214,4,1,""],search_index_entry:[214,4,1,""]},"evennia.contrib.evscaperoom.commands.CmdOptions":{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.evscaperoom.commands.CmdRerouter":{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.evscaperoom.commands.CmdSetEvScapeRoom":{at_cmdset_creation:[214,3,1,""],path:[214,4,1,""],priority:[214,4,1,""]},"evennia.contrib.evscaperoom.commands.CmdSetFlag":{aliases:[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,""],obj1_search:[214,4,1,""],obj2_search:[214,4,1,""],search_index_entry:[214,4,1,""]},"evennia.contrib.evscaperoom.commands.CmdSpeak":{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,""],search_index_entry:[214,4,1,""]},"evennia.contrib.evscaperoom.commands.CmdStand":{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.evscaperoom.commands.CmdWho":{aliases:[214,4,1,""],func:[214,3,1,""],help_category:[214,4,1,""],key:[214,4,1,""],lock_storage:[214,4,1,""],obj1_search:[214,4,1,""],obj2_search:[214,4,1,""],search_index_entry:[214,4,1,""]},"evennia.contrib.evscaperoom.menu":{EvscaperoomMenu:[215,1,1,""],OptionsMenu:[215,1,1,""],node_create_room:[215,5,1,""],node_join_room:[215,5,1,""],node_options:[215,5,1,""],node_quit:[215,5,1,""],node_set_desc:[215,5,1,""],run_evscaperoom_menu:[215,5,1,""],run_option_menu:[215,5,1,""]},"evennia.contrib.evscaperoom.menu.EvscaperoomMenu":{node_border_char:[215,4,1,""],nodetext_formatter:[215,3,1,""],options_formatter:[215,3,1,""]},"evennia.contrib.evscaperoom.menu.OptionsMenu":{node_formatter:[215,3,1,""]},"evennia.contrib.evscaperoom.objects":{BaseApplicable:[216,1,1,""],BaseConsumable:[216,1,1,""],BasePositionable:[216,1,1,""],Climbable:[216,1,1,""],CodeInput:[216,1,1,""],Combinable:[216,1,1,""],Drinkable:[216,1,1,""],Edible:[216,1,1,""],EvscaperoomObject:[216,1,1,""],Feelable:[216,1,1,""],HasButtons:[216,1,1,""],IndexReadable:[216,1,1,""],Insertable:[216,1,1,""],Kneelable:[216,1,1,""],Liable:[216,1,1,""],Listenable:[216,1,1,""],Mixable:[216,1,1,""],Movable:[216,1,1,""],Openable:[216,1,1,""],Positionable:[216,1,1,""],Readable:[216,1,1,""],Rotatable:[216,1,1,""],Sittable:[216,1,1,""],Smellable:[216,1,1,""],Usable:[216,1,1,""]},"evennia.contrib.evscaperoom.objects.BaseApplicable":{DoesNotExist:[216,2,1,""],MultipleObjectsReturned:[216,2,1,""],at_apply:[216,3,1,""],at_cannot_apply:[216,3,1,""],handle_apply:[216,3,1,""],path:[216,4,1,""],target_flag:[216,4,1,""],typename:[216,4,1,""]},"evennia.contrib.evscaperoom.objects.BaseConsumable":{DoesNotExist:[216,2,1,""],MultipleObjectsReturned:[216,2,1,""],at_already_consumed:[216,3,1,""],at_consume:[216,3,1,""],consume_flag:[216,4,1,""],handle_consume:[216,3,1,""],has_consumed:[216,3,1,""],one_consume_only:[216,4,1,""],path:[216,4,1,""],typename:[216,4,1,""]},"evennia.contrib.evscaperoom.objects.BasePositionable":{DoesNotExist:[216,2,1,""],MultipleObjectsReturned:[216,2,1,""],at_again_position:[216,3,1,""],at_cannot_position:[216,3,1,""],at_object_creation:[216,3,1,""],at_position:[216,3,1,""],handle_position:[216,3,1,""],path:[216,4,1,""],typename:[216,4,1,""]},"evennia.contrib.evscaperoom.objects.Climbable":{DoesNotExist:[216,2,1,""],MultipleObjectsReturned:[216,2,1,""],at_focus_climb:[216,3,1,""],path:[216,4,1,""],typename:[216,4,1,""]},"evennia.contrib.evscaperoom.objects.CodeInput":{DoesNotExist:[216,2,1,""],MultipleObjectsReturned:[216,2,1,""],at_code_correct:[216,3,1,""],at_code_incorrect:[216,3,1,""],at_focus_code:[216,3,1,""],at_no_code:[216,3,1,""],case_insensitive:[216,4,1,""],code:[216,4,1,""],code_hint:[216,4,1,""],get_cmd_signatures:[216,3,1,""],infinitely_locked:[216,4,1,""],path:[216,4,1,""],typename:[216,4,1,""]},"evennia.contrib.evscaperoom.objects.Combinable":{DoesNotExist:[216,2,1,""],MultipleObjectsReturned:[216,2,1,""],at_apply:[216,3,1,""],at_cannot_apply:[216,3,1,""],at_focus_combine:[216,3,1,""],destroy_components:[216,4,1,""],get_cmd_signatures:[216,3,1,""],new_create_dict:[216,4,1,""],path:[216,4,1,""],target_flag:[216,4,1,""],typename:[216,4,1,""]},"evennia.contrib.evscaperoom.objects.Drinkable":{DoesNotExist:[216,2,1,""],MultipleObjectsReturned:[216,2,1,""],at_already_consumed:[216,3,1,""],at_consume:[216,3,1,""],at_focus_drink:[216,3,1,""],at_focus_sip:[216,3,1,""],consume_flag:[216,4,1,""],path:[216,4,1,""],typename:[216,4,1,""]},"evennia.contrib.evscaperoom.objects.Edible":{DoesNotExist:[216,2,1,""],MultipleObjectsReturned:[216,2,1,""],at_focus_eat:[216,3,1,""],consume_flag:[216,4,1,""],path:[216,4,1,""],typename:[216,4,1,""]},"evennia.contrib.evscaperoom.objects.EvscaperoomObject":{DoesNotExist:[216,2,1,""],MultipleObjectsReturned:[216,2,1,""],action_prepositions:[216,4,1,""],at_focus:[216,3,1,""],at_object_creation:[216,3,1,""],at_speech:[216,3,1,""],at_unfocus:[216,3,1,""],check_character_flag:[216,3,1,""],check_flag:[216,3,1,""],get_cmd_signatures:[216,3,1,""],get_help:[216,3,1,""],get_position:[216,3,1,""],get_short_desc:[216,3,1,""],msg_char:[216,3,1,""],msg_room:[216,3,1,""],msg_system:[216,3,1,""],next_state:[216,3,1,""],parse:[216,3,1,""],path:[216,4,1,""],position_prep_map:[216,4,1,""],return_appearance:[216,3,1,""],room:[216,3,1,""],roomstate:[216,3,1,""],set_character_flag:[216,3,1,""],set_flag:[216,3,1,""],set_position:[216,3,1,""],tagcategory:[216,3,1,""],typename:[216,4,1,""],unset_character_flag:[216,3,1,""],unset_flag:[216,3,1,""]},"evennia.contrib.evscaperoom.objects.Feelable":{DoesNotExist:[216,2,1,""],MultipleObjectsReturned:[216,2,1,""],at_focus_feel:[216,3,1,""],path:[216,4,1,""],typename:[216,4,1,""]},"evennia.contrib.evscaperoom.objects.HasButtons":{DoesNotExist:[216,2,1,""],MultipleObjectsReturned:[216,2,1,""],at_focus_press:[216,3,1,""],at_focus_push:[216,3,1,""],at_green_button:[216,3,1,""],at_nomatch:[216,3,1,""],at_red_button:[216,3,1,""],buttons:[216,4,1,""],get_cmd_signatures:[216,3,1,""],path:[216,4,1,""],typename:[216,4,1,""]},"evennia.contrib.evscaperoom.objects.IndexReadable":{DoesNotExist:[216,2,1,""],MultipleObjectsReturned:[216,2,1,""],at_cannot_read:[216,3,1,""],at_focus_read:[216,3,1,""],at_read:[216,3,1,""],get_cmd_signatures:[216,3,1,""],index:[216,4,1,""],path:[216,4,1,""],typename:[216,4,1,""]},"evennia.contrib.evscaperoom.objects.Insertable":{DoesNotExist:[216,2,1,""],MultipleObjectsReturned:[216,2,1,""],at_apply:[216,3,1,""],at_cannot_apply:[216,3,1,""],at_focus_insert:[216,3,1,""],get_cmd_signatures:[216,3,1,""],path:[216,4,1,""],target_flag:[216,4,1,""],typename:[216,4,1,""]},"evennia.contrib.evscaperoom.objects.Kneelable":{DoesNotExist:[216,2,1,""],MultipleObjectsReturned:[216,2,1,""],at_focus_kneel:[216,3,1,""],path:[216,4,1,""],typename:[216,4,1,""]},"evennia.contrib.evscaperoom.objects.Liable":{DoesNotExist:[216,2,1,""],MultipleObjectsReturned:[216,2,1,""],at_focus_lie:[216,3,1,""],path:[216,4,1,""],typename:[216,4,1,""]},"evennia.contrib.evscaperoom.objects.Listenable":{DoesNotExist:[216,2,1,""],MultipleObjectsReturned:[216,2,1,""],at_focus_listen:[216,3,1,""],path:[216,4,1,""],typename:[216,4,1,""]},"evennia.contrib.evscaperoom.objects.Mixable":{DoesNotExist:[216,2,1,""],MultipleObjectsReturned:[216,2,1,""],at_mix:[216,3,1,""],at_mix_failure:[216,3,1,""],at_mix_success:[216,3,1,""],at_object_creation:[216,3,1,""],check_mixture:[216,3,1,""],handle_mix:[216,3,1,""],ingredient_recipe:[216,4,1,""],mixer_flag:[216,4,1,""],path:[216,4,1,""],typename:[216,4,1,""]},"evennia.contrib.evscaperoom.objects.Movable":{DoesNotExist:[216,2,1,""],MultipleObjectsReturned:[216,2,1,""],at_already_moved:[216,3,1,""],at_cannot_move:[216,3,1,""],at_focus_move:[216,3,1,""],at_focus_push:[216,3,1,""],at_focus_shove:[216,3,1,""],at_left:[216,3,1,""],at_object_creation:[216,3,1,""],at_right:[216,3,1,""],get_cmd_signatures:[216,3,1,""],move_positions:[216,4,1,""],path:[216,4,1,""],start_position:[216,4,1,""],typename:[216,4,1,""]},"evennia.contrib.evscaperoom.objects.Openable":{DoesNotExist:[216,2,1,""],MultipleObjectsReturned:[216,2,1,""],at_already_closed:[216,3,1,""],at_already_open:[216,3,1,""],at_close:[216,3,1,""],at_focus_close:[216,3,1,""],at_focus_open:[216,3,1,""],at_locked:[216,3,1,""],at_object_creation:[216,3,1,""],at_open:[216,3,1,""],open_flag:[216,4,1,""],path:[216,4,1,""],start_open:[216,4,1,""],typename:[216,4,1,""],unlock_flag:[216,4,1,""]},"evennia.contrib.evscaperoom.objects.Positionable":{DoesNotExist:[216,2,1,""],MultipleObjectsReturned:[216,2,1,""],get_cmd_signatures:[216,3,1,""],path:[216,4,1,""],typename:[216,4,1,""]},"evennia.contrib.evscaperoom.objects.Readable":{DoesNotExist:[216,2,1,""],MultipleObjectsReturned:[216,2,1,""],at_cannot_read:[216,3,1,""],at_focus_read:[216,3,1,""],at_object_creation:[216,3,1,""],at_read:[216,3,1,""],path:[216,4,1,""],read_flag:[216,4,1,""],start_readable:[216,4,1,""],typename:[216,4,1,""]},"evennia.contrib.evscaperoom.objects.Rotatable":{DoesNotExist:[216,2,1,""],MultipleObjectsReturned:[216,2,1,""],at_cannot_rotate:[216,3,1,""],at_focus_rotate:[216,3,1,""],at_focus_turn:[216,3,1,""],at_object_creation:[216,3,1,""],at_rotate:[216,3,1,""],path:[216,4,1,""],rotate_flag:[216,4,1,""],start_rotatable:[216,4,1,""],typename:[216,4,1,""]},"evennia.contrib.evscaperoom.objects.Sittable":{DoesNotExist:[216,2,1,""],MultipleObjectsReturned:[216,2,1,""],at_focus_sit:[216,3,1,""],path:[216,4,1,""],typename:[216,4,1,""]},"evennia.contrib.evscaperoom.objects.Smellable":{DoesNotExist:[216,2,1,""],MultipleObjectsReturned:[216,2,1,""],at_focus_smell:[216,3,1,""],path:[216,4,1,""],typename:[216,4,1,""]},"evennia.contrib.evscaperoom.objects.Usable":{DoesNotExist:[216,2,1,""],MultipleObjectsReturned:[216,2,1,""],at_apply:[216,3,1,""],at_cannot_apply:[216,3,1,""],at_focus_use:[216,3,1,""],path:[216,4,1,""],target_flag:[216,4,1,""],typename:[216,4,1,""]},"evennia.contrib.evscaperoom.room":{EvscapeRoom:[217,1,1,""]},"evennia.contrib.evscaperoom.room.EvscapeRoom":{"delete":[217,3,1,""],DoesNotExist:[217,2,1,""],MultipleObjectsReturned:[217,2,1,""],achievement:[217,3,1,""],at_object_creation:[217,3,1,""],at_object_leave:[217,3,1,""],at_object_receive:[217,3,1,""],character_cleanup:[217,3,1,""],character_exit:[217,3,1,""],check_flag:[217,3,1,""],check_perm:[217,3,1,""],get_all_characters:[217,3,1,""],log:[217,3,1,""],path:[217,4,1,""],progress:[217,3,1,""],return_appearance:[217,3,1,""],score:[217,3,1,""],set_flag:[217,3,1,""],state:[217,3,1,""],statehandler:[217,4,1,""],tag_all_characters:[217,3,1,""],tag_character:[217,3,1,""],typename:[217,4,1,""],unset_flag:[217,3,1,""]},"evennia.contrib.evscaperoom.state":{BaseState:[219,1,1,""],StateHandler:[219,1,1,""]},"evennia.contrib.evscaperoom.state.BaseState":{__init__:[219,3,1,""],character_enters:[219,3,1,""],character_leaves:[219,3,1,""],cinematic:[219,3,1,""],clean:[219,3,1,""],create_object:[219,3,1,""],get_hint:[219,3,1,""],get_object:[219,3,1,""],hints:[219,4,1,""],init:[219,3,1,""],msg:[219,3,1,""],next:[219,3,1,""],next_state:[219,4,1,""]},"evennia.contrib.evscaperoom.state.StateHandler":{__init__:[219,3,1,""],init_state:[219,3,1,""],load_state:[219,3,1,""],next_state:[219,3,1,""]},"evennia.contrib.evscaperoom.tests":{TestEvScapeRoom:[220,1,1,""],TestEvscaperoomCommands:[220,1,1,""],TestStates:[220,1,1,""],TestUtils:[220,1,1,""]},"evennia.contrib.evscaperoom.tests.TestEvScapeRoom":{setUp:[220,3,1,""],tearDown:[220,3,1,""],test_room_methods:[220,3,1,""]},"evennia.contrib.evscaperoom.tests.TestEvscaperoomCommands":{setUp:[220,3,1,""],test_base_parse:[220,3,1,""],test_base_search:[220,3,1,""],test_emote:[220,3,1,""],test_focus:[220,3,1,""],test_focus_interaction:[220,3,1,""],test_look:[220,3,1,""],test_set_focus:[220,3,1,""],test_speech:[220,3,1,""]},"evennia.contrib.evscaperoom.tests.TestStates":{setUp:[220,3,1,""],tearDown:[220,3,1,""],test_all_states:[220,3,1,""],test_base_state:[220,3,1,""]},"evennia.contrib.evscaperoom.tests.TestUtils":{test_overwrite:[220,3,1,""],test_parse_for_perspectives:[220,3,1,""],test_parse_for_things:[220,3,1,""]},"evennia.contrib.evscaperoom.utils":{add_msg_borders:[221,5,1,""],create_evscaperoom_object:[221,5,1,""],create_fantasy_word:[221,5,1,""],msg_cinematic:[221,5,1,""],parse_for_perspectives:[221,5,1,""],parse_for_things:[221,5,1,""]},"evennia.contrib.extended_room":{CmdExtendedRoomDesc:[222,1,1,""],CmdExtendedRoomDetail:[222,1,1,""],CmdExtendedRoomGameTime:[222,1,1,""],CmdExtendedRoomLook:[222,1,1,""],ExtendedRoom:[222,1,1,""],ExtendedRoomCmdSet:[222,1,1,""]},"evennia.contrib.extended_room.CmdExtendedRoomDesc":{aliases:[222,4,1,""],func:[222,3,1,""],help_category:[222,4,1,""],key:[222,4,1,""],lock_storage:[222,4,1,""],reset_times:[222,3,1,""],search_index_entry:[222,4,1,""],switch_options:[222,4,1,""]},"evennia.contrib.extended_room.CmdExtendedRoomDetail":{aliases:[222,4,1,""],func:[222,3,1,""],help_category:[222,4,1,""],key:[222,4,1,""],lock_storage:[222,4,1,""],locks:[222,4,1,""],search_index_entry:[222,4,1,""]},"evennia.contrib.extended_room.CmdExtendedRoomGameTime":{aliases:[222,4,1,""],func:[222,3,1,""],help_category:[222,4,1,""],key:[222,4,1,""],lock_storage:[222,4,1,""],locks:[222,4,1,""],search_index_entry:[222,4,1,""]},"evennia.contrib.extended_room.CmdExtendedRoomLook":{aliases:[222,4,1,""],func:[222,3,1,""],help_category:[222,4,1,""],key:[222,4,1,""],lock_storage:[222,4,1,""],search_index_entry:[222,4,1,""]},"evennia.contrib.extended_room.ExtendedRoom":{DoesNotExist:[222,2,1,""],MultipleObjectsReturned:[222,2,1,""],at_object_creation:[222,3,1,""],del_detail:[222,3,1,""],get_time_and_season:[222,3,1,""],path:[222,4,1,""],replace_timeslots:[222,3,1,""],return_appearance:[222,3,1,""],return_detail:[222,3,1,""],set_detail:[222,3,1,""],typename:[222,4,1,""],update_current_description:[222,3,1,""]},"evennia.contrib.extended_room.ExtendedRoomCmdSet":{at_cmdset_creation:[222,3,1,""],path:[222,4,1,""]},"evennia.contrib.fieldfill":{CmdTestMenu:[223,1,1,""],FieldEvMenu:[223,1,1,""],display_formdata:[223,5,1,""],form_template_to_dict:[223,5,1,""],init_delayed_message:[223,5,1,""],init_fill_field:[223,5,1,""],menunode_fieldfill:[223,5,1,""],sendmessage:[223,5,1,""],verify_online_player:[223,5,1,""]},"evennia.contrib.fieldfill.CmdTestMenu":{aliases:[223,4,1,""],func:[223,3,1,""],help_category:[223,4,1,""],key:[223,4,1,""],lock_storage:[223,4,1,""],search_index_entry:[223,4,1,""]},"evennia.contrib.fieldfill.FieldEvMenu":{node_formatter:[223,3,1,""]},"evennia.contrib.gendersub":{GenderCharacter:[224,1,1,""],SetGender:[224,1,1,""]},"evennia.contrib.gendersub.GenderCharacter":{DoesNotExist:[224,2,1,""],MultipleObjectsReturned:[224,2,1,""],at_object_creation:[224,3,1,""],msg:[224,3,1,""],path:[224,4,1,""],typename:[224,4,1,""]},"evennia.contrib.gendersub.SetGender":{aliases:[224,4,1,""],func:[224,3,1,""],help_category:[224,4,1,""],key:[224,4,1,""],lock_storage:[224,4,1,""],locks:[224,4,1,""],search_index_entry:[224,4,1,""]},"evennia.contrib.health_bar":{display_meter:[225,5,1,""]},"evennia.contrib.ingame_python":{callbackhandler:[227,0,0,"-"],commands:[228,0,0,"-"],eventfuncs:[229,0,0,"-"],scripts:[230,0,0,"-"],tests:[231,0,0,"-"],utils:[233,0,0,"-"]},"evennia.contrib.ingame_python.callbackhandler":{Callback:[227,1,1,""],CallbackHandler:[227,1,1,""]},"evennia.contrib.ingame_python.callbackhandler.Callback":{author:[227,4,1,""],code:[227,4,1,""],created_on:[227,4,1,""],name:[227,4,1,""],number:[227,4,1,""],obj:[227,4,1,""],parameters:[227,4,1,""],updated_by:[227,4,1,""],updated_on:[227,4,1,""],valid:[227,4,1,""]},"evennia.contrib.ingame_python.callbackhandler.CallbackHandler":{__init__:[227,3,1,""],add:[227,3,1,""],all:[227,3,1,""],call:[227,3,1,""],edit:[227,3,1,""],format_callback:[227,3,1,""],get:[227,3,1,""],get_variable:[227,3,1,""],remove:[227,3,1,""],script:[227,4,1,""]},"evennia.contrib.ingame_python.commands":{CmdCallback:[228,1,1,""]},"evennia.contrib.ingame_python.commands.CmdCallback":{accept_callback:[228,3,1,""],add_callback:[228,3,1,""],aliases:[228,4,1,""],del_callback:[228,3,1,""],edit_callback:[228,3,1,""],func:[228,3,1,""],get_help:[228,3,1,""],help_category:[228,4,1,""],key:[228,4,1,""],list_callbacks:[228,3,1,""],list_tasks:[228,3,1,""],lock_storage:[228,4,1,""],locks:[228,4,1,""],search_index_entry:[228,4,1,""]},"evennia.contrib.ingame_python.eventfuncs":{call_event:[229,5,1,""],deny:[229,5,1,""],get:[229,5,1,""]},"evennia.contrib.ingame_python.scripts":{EventHandler:[230,1,1,""],TimeEventScript:[230,1,1,""],complete_task:[230,5,1,""]},"evennia.contrib.ingame_python.scripts.EventHandler":{DoesNotExist:[230,2,1,""],MultipleObjectsReturned:[230,2,1,""],accept_callback:[230,3,1,""],add_callback:[230,3,1,""],add_event:[230,3,1,""],at_script_creation:[230,3,1,""],at_server_start:[230,3,1,""],call:[230,3,1,""],del_callback:[230,3,1,""],edit_callback:[230,3,1,""],get_callbacks:[230,3,1,""],get_events:[230,3,1,""],get_variable:[230,3,1,""],handle_error:[230,3,1,""],path:[230,4,1,""],set_task:[230,3,1,""],typename:[230,4,1,""]},"evennia.contrib.ingame_python.scripts.TimeEventScript":{DoesNotExist:[230,2,1,""],MultipleObjectsReturned:[230,2,1,""],at_repeat:[230,3,1,""],at_script_creation:[230,3,1,""],path:[230,4,1,""],typename:[230,4,1,""]},"evennia.contrib.ingame_python.tests":{TestCmdCallback:[231,1,1,""],TestDefaultCallbacks:[231,1,1,""],TestEventHandler:[231,1,1,""]},"evennia.contrib.ingame_python.tests.TestCmdCallback":{setUp:[231,3,1,""],tearDown:[231,3,1,""],test_accept:[231,3,1,""],test_add:[231,3,1,""],test_del:[231,3,1,""],test_list:[231,3,1,""],test_lock:[231,3,1,""]},"evennia.contrib.ingame_python.tests.TestDefaultCallbacks":{setUp:[231,3,1,""],tearDown:[231,3,1,""],test_exit:[231,3,1,""]},"evennia.contrib.ingame_python.tests.TestEventHandler":{setUp:[231,3,1,""],tearDown:[231,3,1,""],test_accept:[231,3,1,""],test_add_validation:[231,3,1,""],test_call:[231,3,1,""],test_del:[231,3,1,""],test_edit:[231,3,1,""],test_edit_validation:[231,3,1,""],test_handler:[231,3,1,""],test_start:[231,3,1,""]},"evennia.contrib.ingame_python.utils":{InterruptEvent:[233,2,1,""],get_event_handler:[233,5,1,""],get_next_wait:[233,5,1,""],keyword_event:[233,5,1,""],phrase_event:[233,5,1,""],register_events:[233,5,1,""],time_event:[233,5,1,""]},"evennia.contrib.mail":{CmdMail:[234,1,1,""],CmdMailCharacter:[234,1,1,""]},"evennia.contrib.mail.CmdMail":{aliases:[234,4,1,""],func:[234,3,1,""],get_all_mail:[234,3,1,""],help_category:[234,4,1,""],key:[234,4,1,""],lock:[234,4,1,""],lock_storage:[234,4,1,""],parse:[234,3,1,""],search_index_entry:[234,4,1,""],search_targets:[234,3,1,""],send_mail:[234,3,1,""]},"evennia.contrib.mail.CmdMailCharacter":{account_caller:[234,4,1,""],aliases:[234,4,1,""],help_category:[234,4,1,""],key:[234,4,1,""],lock_storage:[234,4,1,""],search_index_entry:[234,4,1,""]},"evennia.contrib.multidescer":{CmdMultiDesc:[237,1,1,""],DescValidateError:[237,2,1,""]},"evennia.contrib.multidescer.CmdMultiDesc":{aliases:[237,4,1,""],func:[237,3,1,""],help_category:[237,4,1,""],key:[237,4,1,""],lock_storage:[237,4,1,""],locks:[237,4,1,""],search_index_entry:[237,4,1,""]},"evennia.contrib.puzzles":{CmdArmPuzzle:[238,1,1,""],CmdCreatePuzzleRecipe:[238,1,1,""],CmdEditPuzzle:[238,1,1,""],CmdListArmedPuzzles:[238,1,1,""],CmdListPuzzleRecipes:[238,1,1,""],CmdUsePuzzleParts:[238,1,1,""],PuzzleRecipe:[238,1,1,""],PuzzleSystemCmdSet:[238,1,1,""],maskout_protodef:[238,5,1,""],proto_def:[238,5,1,""]},"evennia.contrib.puzzles.CmdArmPuzzle":{aliases:[238,4,1,""],func:[238,3,1,""],help_category:[238,4,1,""],key:[238,4,1,""],lock_storage:[238,4,1,""],locks:[238,4,1,""],search_index_entry:[238,4,1,""]},"evennia.contrib.puzzles.CmdCreatePuzzleRecipe":{aliases:[238,4,1,""],confirm:[238,4,1,""],default_confirm:[238,4,1,""],func:[238,3,1,""],help_category:[238,4,1,""],key:[238,4,1,""],lock_storage:[238,4,1,""],locks:[238,4,1,""],search_index_entry:[238,4,1,""]},"evennia.contrib.puzzles.CmdEditPuzzle":{aliases:[238,4,1,""],func:[238,3,1,""],help_category:[238,4,1,""],key:[238,4,1,""],lock_storage:[238,4,1,""],locks:[238,4,1,""],search_index_entry:[238,4,1,""]},"evennia.contrib.puzzles.CmdListArmedPuzzles":{aliases:[238,4,1,""],func:[238,3,1,""],help_category:[238,4,1,""],key:[238,4,1,""],lock_storage:[238,4,1,""],locks:[238,4,1,""],search_index_entry:[238,4,1,""]},"evennia.contrib.puzzles.CmdListPuzzleRecipes":{aliases:[238,4,1,""],func:[238,3,1,""],help_category:[238,4,1,""],key:[238,4,1,""],lock_storage:[238,4,1,""],locks:[238,4,1,""],search_index_entry:[238,4,1,""]},"evennia.contrib.puzzles.CmdUsePuzzleParts":{aliases:[238,4,1,""],func:[238,3,1,""],help_category:[238,4,1,""],key:[238,4,1,""],lock_storage:[238,4,1,""],locks:[238,4,1,""],search_index_entry:[238,4,1,""]},"evennia.contrib.puzzles.PuzzleRecipe":{DoesNotExist:[238,2,1,""],MultipleObjectsReturned:[238,2,1,""],path:[238,4,1,""],save_recipe:[238,3,1,""],typename:[238,4,1,""]},"evennia.contrib.puzzles.PuzzleSystemCmdSet":{at_cmdset_creation:[238,3,1,""],path:[238,4,1,""]},"evennia.contrib.random_string_generator":{ExhaustedGenerator:[239,2,1,""],RandomStringGenerator:[239,1,1,""],RandomStringGeneratorScript:[239,1,1,""],RejectedRegex:[239,2,1,""]},"evennia.contrib.random_string_generator.RandomStringGenerator":{__init__:[239,3,1,""],all:[239,3,1,""],clear:[239,3,1,""],get:[239,3,1,""],remove:[239,3,1,""],script:[239,4,1,""]},"evennia.contrib.random_string_generator.RandomStringGeneratorScript":{DoesNotExist:[239,2,1,""],MultipleObjectsReturned:[239,2,1,""],at_script_creation:[239,3,1,""],path:[239,4,1,""],typename:[239,4,1,""]},"evennia.contrib.rplanguage":{LanguageError:[240,2,1,""],LanguageExistsError:[240,2,1,""],LanguageHandler:[240,1,1,""],add_language:[240,5,1,""],available_languages:[240,5,1,""],obfuscate_language:[240,5,1,""],obfuscate_whisper:[240,5,1,""]},"evennia.contrib.rplanguage.LanguageHandler":{DoesNotExist:[240,2,1,""],MultipleObjectsReturned:[240,2,1,""],add:[240,3,1,""],at_script_creation:[240,3,1,""],path:[240,4,1,""],translate:[240,3,1,""],typename:[240,4,1,""]},"evennia.contrib.rpsystem":{CmdEmote:[241,1,1,""],CmdMask:[241,1,1,""],CmdPose:[241,1,1,""],CmdRecog:[241,1,1,""],CmdSay:[241,1,1,""],CmdSdesc:[241,1,1,""],ContribRPCharacter:[241,1,1,""],ContribRPObject:[241,1,1,""],ContribRPRoom:[241,1,1,""],EmoteError:[241,2,1,""],LanguageError:[241,2,1,""],RPCommand:[241,1,1,""],RPSystemCmdSet:[241,1,1,""],RecogError:[241,2,1,""],RecogHandler:[241,1,1,""],SdescError:[241,2,1,""],SdescHandler:[241,1,1,""],ordered_permutation_regex:[241,5,1,""],parse_language:[241,5,1,""],parse_sdescs_and_recogs:[241,5,1,""],regex_tuple_from_key_alias:[241,5,1,""],send_emote:[241,5,1,""]},"evennia.contrib.rpsystem.CmdEmote":{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.rpsystem.CmdMask":{aliases:[241,4,1,""],func:[241,3,1,""],help_category:[241,4,1,""],key:[241,4,1,""],lock_storage:[241,4,1,""],search_index_entry:[241,4,1,""]},"evennia.contrib.rpsystem.CmdPose":{aliases:[241,4,1,""],func:[241,3,1,""],help_category:[241,4,1,""],key:[241,4,1,""],lock_storage:[241,4,1,""],parse:[241,3,1,""],search_index_entry:[241,4,1,""]},"evennia.contrib.rpsystem.CmdRecog":{aliases:[241,4,1,""],func:[241,3,1,""],help_category:[241,4,1,""],key:[241,4,1,""],lock_storage:[241,4,1,""],parse:[241,3,1,""],search_index_entry:[241,4,1,""]},"evennia.contrib.rpsystem.CmdSay":{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.rpsystem.CmdSdesc":{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.rpsystem.ContribRPCharacter":{DoesNotExist:[241,2,1,""],MultipleObjectsReturned:[241,2,1,""],at_before_say:[241,3,1,""],at_object_creation:[241,3,1,""],get_display_name:[241,3,1,""],path:[241,4,1,""],process_language:[241,3,1,""],process_recog:[241,3,1,""],process_sdesc:[241,3,1,""],recog:[241,4,1,""],sdesc:[241,4,1,""],typename:[241,4,1,""]},"evennia.contrib.rpsystem.ContribRPObject":{DoesNotExist:[241,2,1,""],MultipleObjectsReturned:[241,2,1,""],at_object_creation:[241,3,1,""],get_display_name:[241,3,1,""],path:[241,4,1,""],return_appearance:[241,3,1,""],search:[241,3,1,""],typename:[241,4,1,""]},"evennia.contrib.rpsystem.ContribRPRoom":{DoesNotExist:[241,2,1,""],MultipleObjectsReturned:[241,2,1,""],path:[241,4,1,""],typename:[241,4,1,""]},"evennia.contrib.rpsystem.RPCommand":{aliases:[241,4,1,""],help_category:[241,4,1,""],key:[241,4,1,""],lock_storage:[241,4,1,""],parse:[241,3,1,""],search_index_entry:[241,4,1,""]},"evennia.contrib.rpsystem.RPSystemCmdSet":{at_cmdset_creation:[241,3,1,""],path:[241,4,1,""]},"evennia.contrib.rpsystem.RecogHandler":{__init__:[241,3,1,""],add:[241,3,1,""],all:[241,3,1,""],get:[241,3,1,""],get_regex_tuple:[241,3,1,""],remove:[241,3,1,""]},"evennia.contrib.rpsystem.SdescHandler":{__init__:[241,3,1,""],add:[241,3,1,""],get:[241,3,1,""],get_regex_tuple:[241,3,1,""]},"evennia.contrib.security":{auditing:[243,0,0,"-"]},"evennia.contrib.security.auditing":{outputs:[244,0,0,"-"],server:[245,0,0,"-"],tests:[246,0,0,"-"]},"evennia.contrib.security.auditing.outputs":{to_file:[244,5,1,""],to_syslog:[244,5,1,""]},"evennia.contrib.security.auditing.server":{AuditedServerSession:[245,1,1,""]},"evennia.contrib.security.auditing.server.AuditedServerSession":{audit:[245,3,1,""],data_in:[245,3,1,""],data_out:[245,3,1,""],mask:[245,3,1,""]},"evennia.contrib.security.auditing.tests":{AuditingTest:[246,1,1,""]},"evennia.contrib.security.auditing.tests.AuditingTest":{test_audit:[246,3,1,""],test_mask:[246,3,1,""]},"evennia.contrib.simpledoor":{CmdOpen:[247,1,1,""],CmdOpenCloseDoor:[247,1,1,""],SimpleDoor:[247,1,1,""]},"evennia.contrib.simpledoor.CmdOpen":{aliases:[247,4,1,""],create_exit:[247,3,1,""],help_category:[247,4,1,""],key:[247,4,1,""],lock_storage:[247,4,1,""],search_index_entry:[247,4,1,""]},"evennia.contrib.simpledoor.CmdOpenCloseDoor":{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.simpledoor.SimpleDoor":{"delete":[247,3,1,""],DoesNotExist:[247,2,1,""],MultipleObjectsReturned:[247,2,1,""],at_failed_traverse:[247,3,1,""],at_object_creation:[247,3,1,""],path:[247,4,1,""],setdesc:[247,3,1,""],setlock:[247,3,1,""],typename:[247,4,1,""]},"evennia.contrib.slow_exit":{CmdSetSpeed:[248,1,1,""],CmdStop:[248,1,1,""],SlowExit:[248,1,1,""]},"evennia.contrib.slow_exit.CmdSetSpeed":{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.slow_exit.CmdStop":{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.slow_exit.SlowExit":{DoesNotExist:[248,2,1,""],MultipleObjectsReturned:[248,2,1,""],at_traverse:[248,3,1,""],path:[248,4,1,""],typename:[248,4,1,""]},"evennia.contrib.talking_npc":{CmdTalk:[249,1,1,""],END:[249,5,1,""],TalkingCmdSet:[249,1,1,""],TalkingNPC:[249,1,1,""],info1:[249,5,1,""],info2:[249,5,1,""],info3:[249,5,1,""],menu_start_node:[249,5,1,""]},"evennia.contrib.talking_npc.CmdTalk":{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.talking_npc.TalkingCmdSet":{at_cmdset_creation:[249,3,1,""],key:[249,4,1,""],path:[249,4,1,""]},"evennia.contrib.talking_npc.TalkingNPC":{DoesNotExist:[249,2,1,""],MultipleObjectsReturned:[249,2,1,""],at_object_creation:[249,3,1,""],path:[249,4,1,""],typename:[249,4,1,""]},"evennia.contrib.test_traits":{TestNumericTraitOperators:[250,1,1,""],TestTrait:[250,1,1,""],TestTraitCounter:[250,1,1,""],TestTraitCounterTimed:[250,1,1,""],TestTraitGauge:[250,1,1,""],TestTraitGaugeTimed:[250,1,1,""],TestTraitStatic:[250,1,1,""],TraitHandlerTest:[250,1,1,""]},"evennia.contrib.test_traits.TestNumericTraitOperators":{setUp:[250,3,1,""],tearDown:[250,3,1,""],test_add_traits:[250,3,1,""],test_comparisons_numeric:[250,3,1,""],test_comparisons_traits:[250,3,1,""],test_floordiv:[250,3,1,""],test_mul_traits:[250,3,1,""],test_pos_shortcut:[250,3,1,""],test_sub_traits:[250,3,1,""]},"evennia.contrib.test_traits.TestTrait":{setUp:[250,3,1,""],test_init:[250,3,1,""],test_repr:[250,3,1,""],test_trait_getset:[250,3,1,""],test_validate_input__fail:[250,3,1,""],test_validate_input__valid:[250,3,1,""]},"evennia.contrib.test_traits.TestTraitCounter":{setUp:[250,3,1,""],test_boundaries__bigmod:[250,3,1,""],test_boundaries__change_boundaries:[250,3,1,""],test_boundaries__disable:[250,3,1,""],test_boundaries__inverse:[250,3,1,""],test_boundaries__minmax:[250,3,1,""],test_current:[250,3,1,""],test_delete:[250,3,1,""],test_descs:[250,3,1,""],test_init:[250,3,1,""],test_percentage:[250,3,1,""],test_value:[250,3,1,""]},"evennia.contrib.test_traits.TestTraitCounterTimed":{setUp:[250,3,1,""],test_timer_rate:[250,3,1,""],test_timer_ratetarget:[250,3,1,""]},"evennia.contrib.test_traits.TestTraitGauge":{setUp:[250,3,1,""],test_boundaries__bigmod:[250,3,1,""],test_boundaries__change_boundaries:[250,3,1,""],test_boundaries__disable:[250,3,1,""],test_boundaries__inverse:[250,3,1,""],test_boundaries__minmax:[250,3,1,""],test_current:[250,3,1,""],test_delete:[250,3,1,""],test_descs:[250,3,1,""],test_init:[250,3,1,""],test_percentage:[250,3,1,""],test_value:[250,3,1,""]},"evennia.contrib.test_traits.TestTraitGaugeTimed":{setUp:[250,3,1,""],test_timer_rate:[250,3,1,""],test_timer_ratetarget:[250,3,1,""]},"evennia.contrib.test_traits.TestTraitStatic":{setUp:[250,3,1,""],test_delete:[250,3,1,""],test_init:[250,3,1,""],test_value:[250,3,1,""]},"evennia.contrib.test_traits.TraitHandlerTest":{setUp:[250,3,1,""],test_add_trait:[250,3,1,""],test_all:[250,3,1,""],test_cache:[250,3,1,""],test_clear:[250,3,1,""],test_getting:[250,3,1,""],test_remove:[250,3,1,""],test_setting:[250,3,1,""],test_trait_db_connection:[250,3,1,""]},"evennia.contrib.traits":{CounterTrait:[251,1,1,""],GaugeTrait:[251,1,1,""],MandatoryTraitKey:[251,1,1,""],StaticTrait:[251,1,1,""],Trait:[251,1,1,""],TraitException:[251,2,1,""],TraitHandler:[251,1,1,""]},"evennia.contrib.traits.CounterTrait":{base:[251,3,1,""],current:[251,3,1,""],default_keys:[251,4,1,""],desc:[251,3,1,""],max:[251,3,1,""],min:[251,3,1,""],mod:[251,3,1,""],percent:[251,3,1,""],ratetarget:[251,3,1,""],reset:[251,3,1,""],trait_type:[251,4,1,""],validate_input:[251,3,1,""],value:[251,3,1,""]},"evennia.contrib.traits.GaugeTrait":{base:[251,3,1,""],current:[251,3,1,""],default_keys:[251,4,1,""],max:[251,3,1,""],min:[251,3,1,""],mod:[251,3,1,""],percent:[251,3,1,""],reset:[251,3,1,""],trait_type:[251,4,1,""],value:[251,3,1,""]},"evennia.contrib.traits.StaticTrait":{default_keys:[251,4,1,""],mod:[251,3,1,""],trait_type:[251,4,1,""],value:[251,3,1,""]},"evennia.contrib.traits.Trait":{__init__:[251,3,1,""],allow_extra_properties:[251,4,1,""],default_keys:[251,4,1,""],key:[251,3,1,""],name:[251,3,1,""],trait_type:[251,4,1,""],validate_input:[251,3,1,""],value:[251,3,1,""]},"evennia.contrib.traits.TraitException":{__init__:[251,3,1,""]},"evennia.contrib.traits.TraitHandler":{__init__:[251,3,1,""],add:[251,3,1,""],all:[251,3,1,""],clear:[251,3,1,""],get:[251,3,1,""],remove:[251,3,1,""]},"evennia.contrib.tree_select":{CmdNameColor:[252,1,1,""],change_name_color:[252,5,1,""],dashcount:[252,5,1,""],go_up_one_category:[252,5,1,""],index_to_selection:[252,5,1,""],init_tree_selection:[252,5,1,""],is_category:[252,5,1,""],menunode_treeselect:[252,5,1,""],optlist_to_menuoptions:[252,5,1,""],parse_opts:[252,5,1,""]},"evennia.contrib.tree_select.CmdNameColor":{aliases:[252,4,1,""],func:[252,3,1,""],help_category:[252,4,1,""],key:[252,4,1,""],lock_storage:[252,4,1,""],search_index_entry:[252,4,1,""]},"evennia.contrib.turnbattle":{tb_basic:[254,0,0,"-"],tb_equip:[255,0,0,"-"],tb_items:[256,0,0,"-"],tb_magic:[257,0,0,"-"],tb_range:[258,0,0,"-"]},"evennia.contrib.turnbattle.tb_basic":{ACTIONS_PER_TURN:[254,6,1,""],BattleCmdSet:[254,1,1,""],CmdAttack:[254,1,1,""],CmdCombatHelp:[254,1,1,""],CmdDisengage:[254,1,1,""],CmdFight:[254,1,1,""],CmdPass:[254,1,1,""],CmdRest:[254,1,1,""],TBBasicCharacter:[254,1,1,""],TBBasicTurnHandler:[254,1,1,""],apply_damage:[254,5,1,""],at_defeat:[254,5,1,""],combat_cleanup:[254,5,1,""],get_attack:[254,5,1,""],get_damage:[254,5,1,""],get_defense:[254,5,1,""],is_in_combat:[254,5,1,""],is_turn:[254,5,1,""],resolve_attack:[254,5,1,""],roll_init:[254,5,1,""],spend_action:[254,5,1,""]},"evennia.contrib.turnbattle.tb_basic.BattleCmdSet":{at_cmdset_creation:[254,3,1,""],key:[254,4,1,""],path:[254,4,1,""]},"evennia.contrib.turnbattle.tb_basic.CmdAttack":{aliases:[254,4,1,""],func:[254,3,1,""],help_category:[254,4,1,""],key:[254,4,1,""],lock_storage:[254,4,1,""],search_index_entry:[254,4,1,""]},"evennia.contrib.turnbattle.tb_basic.CmdCombatHelp":{aliases:[254,4,1,""],func:[254,3,1,""],help_category:[254,4,1,""],key:[254,4,1,""],lock_storage:[254,4,1,""],search_index_entry:[254,4,1,""]},"evennia.contrib.turnbattle.tb_basic.CmdDisengage":{aliases:[254,4,1,""],func:[254,3,1,""],help_category:[254,4,1,""],key:[254,4,1,""],lock_storage:[254,4,1,""],search_index_entry:[254,4,1,""]},"evennia.contrib.turnbattle.tb_basic.CmdFight":{aliases:[254,4,1,""],func:[254,3,1,""],help_category:[254,4,1,""],key:[254,4,1,""],lock_storage:[254,4,1,""],search_index_entry:[254,4,1,""]},"evennia.contrib.turnbattle.tb_basic.CmdPass":{aliases:[254,4,1,""],func:[254,3,1,""],help_category:[254,4,1,""],key:[254,4,1,""],lock_storage:[254,4,1,""],search_index_entry:[254,4,1,""]},"evennia.contrib.turnbattle.tb_basic.CmdRest":{aliases:[254,4,1,""],func:[254,3,1,""],help_category:[254,4,1,""],key:[254,4,1,""],lock_storage:[254,4,1,""],search_index_entry:[254,4,1,""]},"evennia.contrib.turnbattle.tb_basic.TBBasicCharacter":{DoesNotExist:[254,2,1,""],MultipleObjectsReturned:[254,2,1,""],at_before_move:[254,3,1,""],at_object_creation:[254,3,1,""],path:[254,4,1,""],typename:[254,4,1,""]},"evennia.contrib.turnbattle.tb_basic.TBBasicTurnHandler":{DoesNotExist:[254,2,1,""],MultipleObjectsReturned:[254,2,1,""],at_repeat:[254,3,1,""],at_script_creation:[254,3,1,""],at_stop:[254,3,1,""],initialize_for_combat:[254,3,1,""],join_fight:[254,3,1,""],next_turn:[254,3,1,""],path:[254,4,1,""],start_turn:[254,3,1,""],turn_end_check:[254,3,1,""],typename:[254,4,1,""]},"evennia.contrib.turnbattle.tb_equip":{ACTIONS_PER_TURN:[255,6,1,""],BattleCmdSet:[255,1,1,""],CmdAttack:[255,1,1,""],CmdCombatHelp:[255,1,1,""],CmdDisengage:[255,1,1,""],CmdDoff:[255,1,1,""],CmdDon:[255,1,1,""],CmdFight:[255,1,1,""],CmdPass:[255,1,1,""],CmdRest:[255,1,1,""],CmdUnwield:[255,1,1,""],CmdWield:[255,1,1,""],TBEArmor:[255,1,1,""],TBEWeapon:[255,1,1,""],TBEquipCharacter:[255,1,1,""],TBEquipTurnHandler:[255,1,1,""],apply_damage:[255,5,1,""],at_defeat:[255,5,1,""],combat_cleanup:[255,5,1,""],get_attack:[255,5,1,""],get_damage:[255,5,1,""],get_defense:[255,5,1,""],is_in_combat:[255,5,1,""],is_turn:[255,5,1,""],resolve_attack:[255,5,1,""],roll_init:[255,5,1,""],spend_action:[255,5,1,""]},"evennia.contrib.turnbattle.tb_equip.BattleCmdSet":{at_cmdset_creation:[255,3,1,""],key:[255,4,1,""],path:[255,4,1,""]},"evennia.contrib.turnbattle.tb_equip.CmdAttack":{aliases:[255,4,1,""],func:[255,3,1,""],help_category:[255,4,1,""],key:[255,4,1,""],lock_storage:[255,4,1,""],search_index_entry:[255,4,1,""]},"evennia.contrib.turnbattle.tb_equip.CmdCombatHelp":{aliases:[255,4,1,""],func:[255,3,1,""],help_category:[255,4,1,""],key:[255,4,1,""],lock_storage:[255,4,1,""],search_index_entry:[255,4,1,""]},"evennia.contrib.turnbattle.tb_equip.CmdDisengage":{aliases:[255,4,1,""],func:[255,3,1,""],help_category:[255,4,1,""],key:[255,4,1,""],lock_storage:[255,4,1,""],search_index_entry:[255,4,1,""]},"evennia.contrib.turnbattle.tb_equip.CmdDoff":{aliases:[255,4,1,""],func:[255,3,1,""],help_category:[255,4,1,""],key:[255,4,1,""],lock_storage:[255,4,1,""],search_index_entry:[255,4,1,""]},"evennia.contrib.turnbattle.tb_equip.CmdDon":{aliases:[255,4,1,""],func:[255,3,1,""],help_category:[255,4,1,""],key:[255,4,1,""],lock_storage:[255,4,1,""],search_index_entry:[255,4,1,""]},"evennia.contrib.turnbattle.tb_equip.CmdFight":{aliases:[255,4,1,""],func:[255,3,1,""],help_category:[255,4,1,""],key:[255,4,1,""],lock_storage:[255,4,1,""],search_index_entry:[255,4,1,""]},"evennia.contrib.turnbattle.tb_equip.CmdPass":{aliases:[255,4,1,""],func:[255,3,1,""],help_category:[255,4,1,""],key:[255,4,1,""],lock_storage:[255,4,1,""],search_index_entry:[255,4,1,""]},"evennia.contrib.turnbattle.tb_equip.CmdRest":{aliases:[255,4,1,""],func:[255,3,1,""],help_category:[255,4,1,""],key:[255,4,1,""],lock_storage:[255,4,1,""],search_index_entry:[255,4,1,""]},"evennia.contrib.turnbattle.tb_equip.CmdUnwield":{aliases:[255,4,1,""],func:[255,3,1,""],help_category:[255,4,1,""],key:[255,4,1,""],lock_storage:[255,4,1,""],search_index_entry:[255,4,1,""]},"evennia.contrib.turnbattle.tb_equip.CmdWield":{aliases:[255,4,1,""],func:[255,3,1,""],help_category:[255,4,1,""],key:[255,4,1,""],lock_storage:[255,4,1,""],search_index_entry:[255,4,1,""]},"evennia.contrib.turnbattle.tb_equip.TBEArmor":{DoesNotExist:[255,2,1,""],MultipleObjectsReturned:[255,2,1,""],at_before_drop:[255,3,1,""],at_before_give:[255,3,1,""],at_drop:[255,3,1,""],at_give:[255,3,1,""],at_object_creation:[255,3,1,""],path:[255,4,1,""],typename:[255,4,1,""]},"evennia.contrib.turnbattle.tb_equip.TBEWeapon":{DoesNotExist:[255,2,1,""],MultipleObjectsReturned:[255,2,1,""],at_drop:[255,3,1,""],at_give:[255,3,1,""],at_object_creation:[255,3,1,""],path:[255,4,1,""],typename:[255,4,1,""]},"evennia.contrib.turnbattle.tb_equip.TBEquipCharacter":{DoesNotExist:[255,2,1,""],MultipleObjectsReturned:[255,2,1,""],at_before_move:[255,3,1,""],at_object_creation:[255,3,1,""],path:[255,4,1,""],typename:[255,4,1,""]},"evennia.contrib.turnbattle.tb_equip.TBEquipTurnHandler":{DoesNotExist:[255,2,1,""],MultipleObjectsReturned:[255,2,1,""],at_repeat:[255,3,1,""],at_script_creation:[255,3,1,""],at_stop:[255,3,1,""],initialize_for_combat:[255,3,1,""],join_fight:[255,3,1,""],next_turn:[255,3,1,""],path:[255,4,1,""],start_turn:[255,3,1,""],turn_end_check:[255,3,1,""],typename:[255,4,1,""]},"evennia.contrib.turnbattle.tb_items":{BattleCmdSet:[256,1,1,""],CmdAttack:[256,1,1,""],CmdCombatHelp:[256,1,1,""],CmdDisengage:[256,1,1,""],CmdFight:[256,1,1,""],CmdPass:[256,1,1,""],CmdRest:[256,1,1,""],CmdUse:[256,1,1,""],DEF_DOWN_MOD:[256,6,1,""],ITEMFUNCS:[256,6,1,""],TBItemsCharacter:[256,1,1,""],TBItemsCharacterTest:[256,1,1,""],TBItemsTurnHandler:[256,1,1,""],add_condition:[256,5,1,""],apply_damage:[256,5,1,""],at_defeat:[256,5,1,""],combat_cleanup:[256,5,1,""],condition_tickdown:[256,5,1,""],get_attack:[256,5,1,""],get_damage:[256,5,1,""],get_defense:[256,5,1,""],is_in_combat:[256,5,1,""],is_turn:[256,5,1,""],itemfunc_add_condition:[256,5,1,""],itemfunc_attack:[256,5,1,""],itemfunc_cure_condition:[256,5,1,""],itemfunc_heal:[256,5,1,""],resolve_attack:[256,5,1,""],roll_init:[256,5,1,""],spend_action:[256,5,1,""],spend_item_use:[256,5,1,""],use_item:[256,5,1,""]},"evennia.contrib.turnbattle.tb_items.BattleCmdSet":{at_cmdset_creation:[256,3,1,""],key:[256,4,1,""],path:[256,4,1,""]},"evennia.contrib.turnbattle.tb_items.CmdAttack":{aliases:[256,4,1,""],func:[256,3,1,""],help_category:[256,4,1,""],key:[256,4,1,""],lock_storage:[256,4,1,""],search_index_entry:[256,4,1,""]},"evennia.contrib.turnbattle.tb_items.CmdCombatHelp":{aliases:[256,4,1,""],func:[256,3,1,""],help_category:[256,4,1,""],key:[256,4,1,""],lock_storage:[256,4,1,""],search_index_entry:[256,4,1,""]},"evennia.contrib.turnbattle.tb_items.CmdDisengage":{aliases:[256,4,1,""],func:[256,3,1,""],help_category:[256,4,1,""],key:[256,4,1,""],lock_storage:[256,4,1,""],search_index_entry:[256,4,1,""]},"evennia.contrib.turnbattle.tb_items.CmdFight":{aliases:[256,4,1,""],func:[256,3,1,""],help_category:[256,4,1,""],key:[256,4,1,""],lock_storage:[256,4,1,""],search_index_entry:[256,4,1,""]},"evennia.contrib.turnbattle.tb_items.CmdPass":{aliases:[256,4,1,""],func:[256,3,1,""],help_category:[256,4,1,""],key:[256,4,1,""],lock_storage:[256,4,1,""],search_index_entry:[256,4,1,""]},"evennia.contrib.turnbattle.tb_items.CmdRest":{aliases:[256,4,1,""],func:[256,3,1,""],help_category:[256,4,1,""],key:[256,4,1,""],lock_storage:[256,4,1,""],search_index_entry:[256,4,1,""]},"evennia.contrib.turnbattle.tb_items.CmdUse":{aliases:[256,4,1,""],func:[256,3,1,""],help_category:[256,4,1,""],key:[256,4,1,""],lock_storage:[256,4,1,""],search_index_entry:[256,4,1,""]},"evennia.contrib.turnbattle.tb_items.TBItemsCharacter":{DoesNotExist:[256,2,1,""],MultipleObjectsReturned:[256,2,1,""],apply_turn_conditions:[256,3,1,""],at_before_move:[256,3,1,""],at_object_creation:[256,3,1,""],at_turn_start:[256,3,1,""],at_update:[256,3,1,""],path:[256,4,1,""],typename:[256,4,1,""]},"evennia.contrib.turnbattle.tb_items.TBItemsCharacterTest":{DoesNotExist:[256,2,1,""],MultipleObjectsReturned:[256,2,1,""],at_object_creation:[256,3,1,""],path:[256,4,1,""],typename:[256,4,1,""]},"evennia.contrib.turnbattle.tb_items.TBItemsTurnHandler":{DoesNotExist:[256,2,1,""],MultipleObjectsReturned:[256,2,1,""],at_repeat:[256,3,1,""],at_script_creation:[256,3,1,""],at_stop:[256,3,1,""],initialize_for_combat:[256,3,1,""],join_fight:[256,3,1,""],next_turn:[256,3,1,""],path:[256,4,1,""],start_turn:[256,3,1,""],turn_end_check:[256,3,1,""],typename:[256,4,1,""]},"evennia.contrib.turnbattle.tb_magic":{ACTIONS_PER_TURN:[257,6,1,""],BattleCmdSet:[257,1,1,""],CmdAttack:[257,1,1,""],CmdCast:[257,1,1,""],CmdCombatHelp:[257,1,1,""],CmdDisengage:[257,1,1,""],CmdFight:[257,1,1,""],CmdLearnSpell:[257,1,1,""],CmdPass:[257,1,1,""],CmdRest:[257,1,1,""],CmdStatus:[257,1,1,""],TBMagicCharacter:[257,1,1,""],TBMagicTurnHandler:[257,1,1,""],apply_damage:[257,5,1,""],at_defeat:[257,5,1,""],combat_cleanup:[257,5,1,""],get_attack:[257,5,1,""],get_damage:[257,5,1,""],get_defense:[257,5,1,""],is_in_combat:[257,5,1,""],is_turn:[257,5,1,""],resolve_attack:[257,5,1,""],roll_init:[257,5,1,""],spell_attack:[257,5,1,""],spell_conjure:[257,5,1,""],spell_healing:[257,5,1,""],spend_action:[257,5,1,""]},"evennia.contrib.turnbattle.tb_magic.BattleCmdSet":{at_cmdset_creation:[257,3,1,""],key:[257,4,1,""],path:[257,4,1,""]},"evennia.contrib.turnbattle.tb_magic.CmdAttack":{aliases:[257,4,1,""],func:[257,3,1,""],help_category:[257,4,1,""],key:[257,4,1,""],lock_storage:[257,4,1,""],search_index_entry:[257,4,1,""]},"evennia.contrib.turnbattle.tb_magic.CmdCast":{aliases:[257,4,1,""],func:[257,3,1,""],help_category:[257,4,1,""],key:[257,4,1,""],lock_storage:[257,4,1,""],search_index_entry:[257,4,1,""]},"evennia.contrib.turnbattle.tb_magic.CmdCombatHelp":{aliases:[257,4,1,""],func:[257,3,1,""],help_category:[257,4,1,""],key:[257,4,1,""],lock_storage:[257,4,1,""],search_index_entry:[257,4,1,""]},"evennia.contrib.turnbattle.tb_magic.CmdDisengage":{aliases:[257,4,1,""],func:[257,3,1,""],help_category:[257,4,1,""],key:[257,4,1,""],lock_storage:[257,4,1,""],search_index_entry:[257,4,1,""]},"evennia.contrib.turnbattle.tb_magic.CmdFight":{aliases:[257,4,1,""],func:[257,3,1,""],help_category:[257,4,1,""],key:[257,4,1,""],lock_storage:[257,4,1,""],search_index_entry:[257,4,1,""]},"evennia.contrib.turnbattle.tb_magic.CmdLearnSpell":{aliases:[257,4,1,""],func:[257,3,1,""],help_category:[257,4,1,""],key:[257,4,1,""],lock_storage:[257,4,1,""],search_index_entry:[257,4,1,""]},"evennia.contrib.turnbattle.tb_magic.CmdPass":{aliases:[257,4,1,""],func:[257,3,1,""],help_category:[257,4,1,""],key:[257,4,1,""],lock_storage:[257,4,1,""],search_index_entry:[257,4,1,""]},"evennia.contrib.turnbattle.tb_magic.CmdRest":{aliases:[257,4,1,""],func:[257,3,1,""],help_category:[257,4,1,""],key:[257,4,1,""],lock_storage:[257,4,1,""],search_index_entry:[257,4,1,""]},"evennia.contrib.turnbattle.tb_magic.CmdStatus":{aliases:[257,4,1,""],func:[257,3,1,""],help_category:[257,4,1,""],key:[257,4,1,""],lock_storage:[257,4,1,""],search_index_entry:[257,4,1,""]},"evennia.contrib.turnbattle.tb_magic.TBMagicCharacter":{DoesNotExist:[257,2,1,""],MultipleObjectsReturned:[257,2,1,""],at_before_move:[257,3,1,""],at_object_creation:[257,3,1,""],path:[257,4,1,""],typename:[257,4,1,""]},"evennia.contrib.turnbattle.tb_magic.TBMagicTurnHandler":{DoesNotExist:[257,2,1,""],MultipleObjectsReturned:[257,2,1,""],at_repeat:[257,3,1,""],at_script_creation:[257,3,1,""],at_stop:[257,3,1,""],initialize_for_combat:[257,3,1,""],join_fight:[257,3,1,""],next_turn:[257,3,1,""],path:[257,4,1,""],start_turn:[257,3,1,""],turn_end_check:[257,3,1,""],typename:[257,4,1,""]},"evennia.contrib.turnbattle.tb_range":{ACTIONS_PER_TURN:[258,6,1,""],BattleCmdSet:[258,1,1,""],CmdApproach:[258,1,1,""],CmdAttack:[258,1,1,""],CmdCombatHelp:[258,1,1,""],CmdDisengage:[258,1,1,""],CmdFight:[258,1,1,""],CmdPass:[258,1,1,""],CmdRest:[258,1,1,""],CmdShoot:[258,1,1,""],CmdStatus:[258,1,1,""],CmdWithdraw:[258,1,1,""],TBRangeCharacter:[258,1,1,""],TBRangeObject:[258,1,1,""],TBRangeTurnHandler:[258,1,1,""],apply_damage:[258,5,1,""],approach:[258,5,1,""],at_defeat:[258,5,1,""],combat_cleanup:[258,5,1,""],combat_status_message:[258,5,1,""],distance_inc:[258,5,1,""],get_attack:[258,5,1,""],get_damage:[258,5,1,""],get_defense:[258,5,1,""],get_range:[258,5,1,""],is_in_combat:[258,5,1,""],is_turn:[258,5,1,""],resolve_attack:[258,5,1,""],roll_init:[258,5,1,""],spend_action:[258,5,1,""],withdraw:[258,5,1,""]},"evennia.contrib.turnbattle.tb_range.BattleCmdSet":{at_cmdset_creation:[258,3,1,""],key:[258,4,1,""],path:[258,4,1,""]},"evennia.contrib.turnbattle.tb_range.CmdApproach":{aliases:[258,4,1,""],func:[258,3,1,""],help_category:[258,4,1,""],key:[258,4,1,""],lock_storage:[258,4,1,""],search_index_entry:[258,4,1,""]},"evennia.contrib.turnbattle.tb_range.CmdAttack":{aliases:[258,4,1,""],func:[258,3,1,""],help_category:[258,4,1,""],key:[258,4,1,""],lock_storage:[258,4,1,""],search_index_entry:[258,4,1,""]},"evennia.contrib.turnbattle.tb_range.CmdCombatHelp":{aliases:[258,4,1,""],func:[258,3,1,""],help_category:[258,4,1,""],key:[258,4,1,""],lock_storage:[258,4,1,""],search_index_entry:[258,4,1,""]},"evennia.contrib.turnbattle.tb_range.CmdDisengage":{aliases:[258,4,1,""],func:[258,3,1,""],help_category:[258,4,1,""],key:[258,4,1,""],lock_storage:[258,4,1,""],search_index_entry:[258,4,1,""]},"evennia.contrib.turnbattle.tb_range.CmdFight":{aliases:[258,4,1,""],func:[258,3,1,""],help_category:[258,4,1,""],key:[258,4,1,""],lock_storage:[258,4,1,""],search_index_entry:[258,4,1,""]},"evennia.contrib.turnbattle.tb_range.CmdPass":{aliases:[258,4,1,""],func:[258,3,1,""],help_category:[258,4,1,""],key:[258,4,1,""],lock_storage:[258,4,1,""],search_index_entry:[258,4,1,""]},"evennia.contrib.turnbattle.tb_range.CmdRest":{aliases:[258,4,1,""],func:[258,3,1,""],help_category:[258,4,1,""],key:[258,4,1,""],lock_storage:[258,4,1,""],search_index_entry:[258,4,1,""]},"evennia.contrib.turnbattle.tb_range.CmdShoot":{aliases:[258,4,1,""],func:[258,3,1,""],help_category:[258,4,1,""],key:[258,4,1,""],lock_storage:[258,4,1,""],search_index_entry:[258,4,1,""]},"evennia.contrib.turnbattle.tb_range.CmdStatus":{aliases:[258,4,1,""],func:[258,3,1,""],help_category:[258,4,1,""],key:[258,4,1,""],lock_storage:[258,4,1,""],search_index_entry:[258,4,1,""]},"evennia.contrib.turnbattle.tb_range.CmdWithdraw":{aliases:[258,4,1,""],func:[258,3,1,""],help_category:[258,4,1,""],key:[258,4,1,""],lock_storage:[258,4,1,""],search_index_entry:[258,4,1,""]},"evennia.contrib.turnbattle.tb_range.TBRangeCharacter":{DoesNotExist:[258,2,1,""],MultipleObjectsReturned:[258,2,1,""],at_before_move:[258,3,1,""],at_object_creation:[258,3,1,""],path:[258,4,1,""],typename:[258,4,1,""]},"evennia.contrib.turnbattle.tb_range.TBRangeObject":{DoesNotExist:[258,2,1,""],MultipleObjectsReturned:[258,2,1,""],at_before_drop:[258,3,1,""],at_before_get:[258,3,1,""],at_before_give:[258,3,1,""],at_drop:[258,3,1,""],at_get:[258,3,1,""],at_give:[258,3,1,""],path:[258,4,1,""],typename:[258,4,1,""]},"evennia.contrib.turnbattle.tb_range.TBRangeTurnHandler":{DoesNotExist:[258,2,1,""],MultipleObjectsReturned:[258,2,1,""],at_repeat:[258,3,1,""],at_script_creation:[258,3,1,""],at_stop:[258,3,1,""],init_range:[258,3,1,""],initialize_for_combat:[258,3,1,""],join_fight:[258,3,1,""],join_rangefield:[258,3,1,""],next_turn:[258,3,1,""],path:[258,4,1,""],start_turn:[258,3,1,""],turn_end_check:[258,3,1,""],typename:[258,4,1,""]},"evennia.contrib.tutorial_examples":{bodyfunctions:[260,0,0,"-"],mirror:[262,0,0,"-"],red_button:[263,0,0,"-"],tests:[264,0,0,"-"]},"evennia.contrib.tutorial_examples.bodyfunctions":{BodyFunctions:[260,1,1,""]},"evennia.contrib.tutorial_examples.bodyfunctions.BodyFunctions":{DoesNotExist:[260,2,1,""],MultipleObjectsReturned:[260,2,1,""],at_repeat:[260,3,1,""],at_script_creation:[260,3,1,""],path:[260,4,1,""],send_random_message:[260,3,1,""],typename:[260,4,1,""]},"evennia.contrib.tutorial_examples.mirror":{TutorialMirror:[262,1,1,""]},"evennia.contrib.tutorial_examples.mirror.TutorialMirror":{DoesNotExist:[262,2,1,""],MultipleObjectsReturned:[262,2,1,""],msg:[262,3,1,""],path:[262,4,1,""],return_appearance:[262,3,1,""],typename:[262,4,1,""]},"evennia.contrib.tutorial_examples.red_button":{BlindCmdSet:[263,1,1,""],CmdBlindHelp:[263,1,1,""],CmdBlindLook:[263,1,1,""],CmdCloseLid:[263,1,1,""],CmdNudge:[263,1,1,""],CmdOpenLid:[263,1,1,""],CmdPushLidClosed:[263,1,1,""],CmdPushLidOpen:[263,1,1,""],CmdSmashGlass:[263,1,1,""],LidClosedCmdSet:[263,1,1,""],LidOpenCmdSet:[263,1,1,""],RedButton:[263,1,1,""]},"evennia.contrib.tutorial_examples.red_button.BlindCmdSet":{at_cmdset_creation:[263,3,1,""],key:[263,4,1,""],mergetype:[263,4,1,""],no_exits:[263,4,1,""],no_objs:[263,4,1,""],path:[263,4,1,""]},"evennia.contrib.tutorial_examples.red_button.CmdBlindHelp":{aliases:[263,4,1,""],func:[263,3,1,""],help_category:[263,4,1,""],key:[263,4,1,""],lock_storage:[263,4,1,""],locks:[263,4,1,""],search_index_entry:[263,4,1,""]},"evennia.contrib.tutorial_examples.red_button.CmdBlindLook":{aliases:[263,4,1,""],func:[263,3,1,""],help_category:[263,4,1,""],key:[263,4,1,""],lock_storage:[263,4,1,""],locks:[263,4,1,""],search_index_entry:[263,4,1,""]},"evennia.contrib.tutorial_examples.red_button.CmdCloseLid":{aliases:[263,4,1,""],func:[263,3,1,""],help_category:[263,4,1,""],key:[263,4,1,""],lock_storage:[263,4,1,""],locks:[263,4,1,""],search_index_entry:[263,4,1,""]},"evennia.contrib.tutorial_examples.red_button.CmdNudge":{aliases:[263,4,1,""],func:[263,3,1,""],help_category:[263,4,1,""],key:[263,4,1,""],lock_storage:[263,4,1,""],locks:[263,4,1,""],search_index_entry:[263,4,1,""]},"evennia.contrib.tutorial_examples.red_button.CmdOpenLid":{aliases:[263,4,1,""],func:[263,3,1,""],help_category:[263,4,1,""],key:[263,4,1,""],lock_storage:[263,4,1,""],locks:[263,4,1,""],search_index_entry:[263,4,1,""]},"evennia.contrib.tutorial_examples.red_button.CmdPushLidClosed":{aliases:[263,4,1,""],func:[263,3,1,""],help_category:[263,4,1,""],key:[263,4,1,""],lock_storage:[263,4,1,""],locks:[263,4,1,""],search_index_entry:[263,4,1,""]},"evennia.contrib.tutorial_examples.red_button.CmdPushLidOpen":{aliases:[263,4,1,""],func:[263,3,1,""],help_category:[263,4,1,""],key:[263,4,1,""],lock_storage:[263,4,1,""],locks:[263,4,1,""],search_index_entry:[263,4,1,""]},"evennia.contrib.tutorial_examples.red_button.CmdSmashGlass":{aliases:[263,4,1,""],func:[263,3,1,""],help_category:[263,4,1,""],key:[263,4,1,""],lock_storage:[263,4,1,""],locks:[263,4,1,""],search_index_entry:[263,4,1,""]},"evennia.contrib.tutorial_examples.red_button.LidClosedCmdSet":{at_cmdset_creation:[263,3,1,""],key:[263,4,1,""],path:[263,4,1,""]},"evennia.contrib.tutorial_examples.red_button.LidOpenCmdSet":{at_cmdset_creation:[263,3,1,""],key:[263,4,1,""],path:[263,4,1,""]},"evennia.contrib.tutorial_examples.red_button.RedButton":{DoesNotExist:[263,2,1,""],MultipleObjectsReturned:[263,2,1,""],at_object_creation:[263,3,1,""],auto_close_msg:[263,4,1,""],blind_target:[263,3,1,""],blink_msgs:[263,4,1,""],break_lamp:[263,3,1,""],desc_add_lamp_broken:[263,4,1,""],desc_closed_lid:[263,4,1,""],desc_open_lid:[263,4,1,""],lamp_breaks_msg:[263,4,1,""],path:[263,4,1,""],to_closed_state:[263,3,1,""],to_open_state:[263,3,1,""],typename:[263,4,1,""]},"evennia.contrib.tutorial_examples.tests":{TestBodyFunctions:[264,1,1,""]},"evennia.contrib.tutorial_examples.tests.TestBodyFunctions":{script_typeclass:[264,4,1,""],setUp:[264,3,1,""],tearDown:[264,3,1,""],test_at_repeat:[264,3,1,""],test_send_random_message:[264,3,1,""]},"evennia.contrib.tutorial_world":{intro_menu:[266,0,0,"-"],mob:[267,0,0,"-"],objects:[268,0,0,"-"],rooms:[269,0,0,"-"]},"evennia.contrib.tutorial_world.intro_menu":{DemoCommandSetComms:[266,1,1,""],DemoCommandSetHelp:[266,1,1,""],DemoCommandSetRoom:[266,1,1,""],TutorialEvMenu:[266,1,1,""],do_nothing:[266,5,1,""],goto_cleanup_cmdsets:[266,5,1,""],goto_command_demo_comms:[266,5,1,""],goto_command_demo_help:[266,5,1,""],goto_command_demo_room:[266,5,1,""],init_menu:[266,5,1,""],send_testing_tagged:[266,5,1,""]},"evennia.contrib.tutorial_world.intro_menu.DemoCommandSetComms":{at_cmdset_creation:[266,3,1,""],key:[266,4,1,""],no_exits:[266,4,1,""],no_objs:[266,4,1,""],path:[266,4,1,""],priority:[266,4,1,""]},"evennia.contrib.tutorial_world.intro_menu.DemoCommandSetHelp":{at_cmdset_creation:[266,3,1,""],key:[266,4,1,""],path:[266,4,1,""],priority:[266,4,1,""]},"evennia.contrib.tutorial_world.intro_menu.DemoCommandSetRoom":{at_cmdset_creation:[266,3,1,""],key:[266,4,1,""],no_exits:[266,4,1,""],no_objs:[266,4,1,""],path:[266,4,1,""],priority:[266,4,1,""]},"evennia.contrib.tutorial_world.intro_menu.TutorialEvMenu":{close_menu:[266,3,1,""],options_formatter:[266,3,1,""]},"evennia.contrib.tutorial_world.mob":{CmdMobOnOff:[267,1,1,""],Mob:[267,1,1,""],MobCmdSet:[267,1,1,""]},"evennia.contrib.tutorial_world.mob.CmdMobOnOff":{aliases:[267,4,1,""],func:[267,3,1,""],help_category:[267,4,1,""],key:[267,4,1,""],lock_storage:[267,4,1,""],locks:[267,4,1,""],search_index_entry:[267,4,1,""]},"evennia.contrib.tutorial_world.mob.Mob":{DoesNotExist:[267,2,1,""],MultipleObjectsReturned:[267,2,1,""],at_hit:[267,3,1,""],at_init:[267,3,1,""],at_new_arrival:[267,3,1,""],at_object_creation:[267,3,1,""],do_attack:[267,3,1,""],do_hunting:[267,3,1,""],do_patrol:[267,3,1,""],path:[267,4,1,""],set_alive:[267,3,1,""],set_dead:[267,3,1,""],start_attacking:[267,3,1,""],start_hunting:[267,3,1,""],start_idle:[267,3,1,""],start_patrolling:[267,3,1,""],typename:[267,4,1,""]},"evennia.contrib.tutorial_world.mob.MobCmdSet":{at_cmdset_creation:[267,3,1,""],path:[267,4,1,""]},"evennia.contrib.tutorial_world.objects":{CmdAttack:[268,1,1,""],CmdClimb:[268,1,1,""],CmdGetWeapon:[268,1,1,""],CmdLight:[268,1,1,""],CmdPressButton:[268,1,1,""],CmdRead:[268,1,1,""],CmdSetClimbable:[268,1,1,""],CmdSetCrumblingWall:[268,1,1,""],CmdSetLight:[268,1,1,""],CmdSetReadable:[268,1,1,""],CmdSetWeapon:[268,1,1,""],CmdSetWeaponRack:[268,1,1,""],CmdShiftRoot:[268,1,1,""],CrumblingWall:[268,1,1,""],LightSource:[268,1,1,""],Obelisk:[268,1,1,""],TutorialClimbable:[268,1,1,""],TutorialObject:[268,1,1,""],TutorialReadable:[268,1,1,""],TutorialWeapon:[268,1,1,""],TutorialWeaponRack:[268,1,1,""]},"evennia.contrib.tutorial_world.objects.CmdAttack":{aliases:[268,4,1,""],func:[268,3,1,""],help_category:[268,4,1,""],key:[268,4,1,""],lock_storage:[268,4,1,""],locks:[268,4,1,""],search_index_entry:[268,4,1,""]},"evennia.contrib.tutorial_world.objects.CmdClimb":{aliases:[268,4,1,""],func:[268,3,1,""],help_category:[268,4,1,""],key:[268,4,1,""],lock_storage:[268,4,1,""],locks:[268,4,1,""],search_index_entry:[268,4,1,""]},"evennia.contrib.tutorial_world.objects.CmdGetWeapon":{aliases:[268,4,1,""],func:[268,3,1,""],help_category:[268,4,1,""],key:[268,4,1,""],lock_storage:[268,4,1,""],locks:[268,4,1,""],search_index_entry:[268,4,1,""]},"evennia.contrib.tutorial_world.objects.CmdLight":{aliases:[268,4,1,""],func:[268,3,1,""],help_category:[268,4,1,""],key:[268,4,1,""],lock_storage:[268,4,1,""],locks:[268,4,1,""],search_index_entry:[268,4,1,""]},"evennia.contrib.tutorial_world.objects.CmdPressButton":{aliases:[268,4,1,""],func:[268,3,1,""],help_category:[268,4,1,""],key:[268,4,1,""],lock_storage:[268,4,1,""],locks:[268,4,1,""],search_index_entry:[268,4,1,""]},"evennia.contrib.tutorial_world.objects.CmdRead":{aliases:[268,4,1,""],func:[268,3,1,""],help_category:[268,4,1,""],key:[268,4,1,""],lock_storage:[268,4,1,""],locks:[268,4,1,""],search_index_entry:[268,4,1,""]},"evennia.contrib.tutorial_world.objects.CmdSetClimbable":{at_cmdset_creation:[268,3,1,""],path:[268,4,1,""]},"evennia.contrib.tutorial_world.objects.CmdSetCrumblingWall":{at_cmdset_creation:[268,3,1,""],key:[268,4,1,""],path:[268,4,1,""],priority:[268,4,1,""]},"evennia.contrib.tutorial_world.objects.CmdSetLight":{at_cmdset_creation:[268,3,1,""],key:[268,4,1,""],path:[268,4,1,""],priority:[268,4,1,""]},"evennia.contrib.tutorial_world.objects.CmdSetReadable":{at_cmdset_creation:[268,3,1,""],path:[268,4,1,""]},"evennia.contrib.tutorial_world.objects.CmdSetWeapon":{at_cmdset_creation:[268,3,1,""],path:[268,4,1,""]},"evennia.contrib.tutorial_world.objects.CmdSetWeaponRack":{at_cmdset_creation:[268,3,1,""],key:[268,4,1,""],path:[268,4,1,""]},"evennia.contrib.tutorial_world.objects.CmdShiftRoot":{aliases:[268,4,1,""],func:[268,3,1,""],help_category:[268,4,1,""],key:[268,4,1,""],lock_storage:[268,4,1,""],locks:[268,4,1,""],parse:[268,3,1,""],search_index_entry:[268,4,1,""]},"evennia.contrib.tutorial_world.objects.CrumblingWall":{DoesNotExist:[268,2,1,""],MultipleObjectsReturned:[268,2,1,""],at_after_traverse:[268,3,1,""],at_failed_traverse:[268,3,1,""],at_init:[268,3,1,""],at_object_creation:[268,3,1,""],open_wall:[268,3,1,""],path:[268,4,1,""],reset:[268,3,1,""],return_appearance:[268,3,1,""],typename:[268,4,1,""]},"evennia.contrib.tutorial_world.objects.LightSource":{DoesNotExist:[268,2,1,""],MultipleObjectsReturned:[268,2,1,""],at_init:[268,3,1,""],at_object_creation:[268,3,1,""],light:[268,3,1,""],path:[268,4,1,""],typename:[268,4,1,""]},"evennia.contrib.tutorial_world.objects.Obelisk":{DoesNotExist:[268,2,1,""],MultipleObjectsReturned:[268,2,1,""],at_object_creation:[268,3,1,""],path:[268,4,1,""],return_appearance:[268,3,1,""],typename:[268,4,1,""]},"evennia.contrib.tutorial_world.objects.TutorialClimbable":{DoesNotExist:[268,2,1,""],MultipleObjectsReturned:[268,2,1,""],at_object_creation:[268,3,1,""],path:[268,4,1,""],typename:[268,4,1,""]},"evennia.contrib.tutorial_world.objects.TutorialObject":{DoesNotExist:[268,2,1,""],MultipleObjectsReturned:[268,2,1,""],at_object_creation:[268,3,1,""],path:[268,4,1,""],reset:[268,3,1,""],typename:[268,4,1,""]},"evennia.contrib.tutorial_world.objects.TutorialReadable":{DoesNotExist:[268,2,1,""],MultipleObjectsReturned:[268,2,1,""],at_object_creation:[268,3,1,""],path:[268,4,1,""],typename:[268,4,1,""]},"evennia.contrib.tutorial_world.objects.TutorialWeapon":{DoesNotExist:[268,2,1,""],MultipleObjectsReturned:[268,2,1,""],at_object_creation:[268,3,1,""],path:[268,4,1,""],reset:[268,3,1,""],typename:[268,4,1,""]},"evennia.contrib.tutorial_world.objects.TutorialWeaponRack":{DoesNotExist:[268,2,1,""],MultipleObjectsReturned:[268,2,1,""],at_object_creation:[268,3,1,""],path:[268,4,1,""],produce_weapon:[268,3,1,""],typename:[268,4,1,""]},"evennia.contrib.tutorial_world.rooms":{BridgeCmdSet:[269,1,1,""],BridgeRoom:[269,1,1,""],CmdBridgeHelp:[269,1,1,""],CmdDarkHelp:[269,1,1,""],CmdDarkNoMatch:[269,1,1,""],CmdEast:[269,1,1,""],CmdEvenniaIntro:[269,1,1,""],CmdLookBridge:[269,1,1,""],CmdLookDark:[269,1,1,""],CmdSetEvenniaIntro:[269,1,1,""],CmdTutorial:[269,1,1,""],CmdTutorialGiveUp:[269,1,1,""],CmdTutorialLook:[269,1,1,""],CmdTutorialSetDetail:[269,1,1,""],CmdWest:[269,1,1,""],DarkCmdSet:[269,1,1,""],DarkRoom:[269,1,1,""],IntroRoom:[269,1,1,""],OutroRoom:[269,1,1,""],TeleportRoom:[269,1,1,""],TutorialRoom:[269,1,1,""],TutorialRoomCmdSet:[269,1,1,""],WeatherRoom:[269,1,1,""]},"evennia.contrib.tutorial_world.rooms.BridgeCmdSet":{at_cmdset_creation:[269,3,1,""],key:[269,4,1,""],path:[269,4,1,""],priority:[269,4,1,""]},"evennia.contrib.tutorial_world.rooms.BridgeRoom":{DoesNotExist:[269,2,1,""],MultipleObjectsReturned:[269,2,1,""],at_object_creation:[269,3,1,""],at_object_leave:[269,3,1,""],at_object_receive:[269,3,1,""],path:[269,4,1,""],typename:[269,4,1,""],update_weather:[269,3,1,""]},"evennia.contrib.tutorial_world.rooms.CmdBridgeHelp":{aliases:[269,4,1,""],func:[269,3,1,""],help_category:[269,4,1,""],key:[269,4,1,""],lock_storage:[269,4,1,""],locks:[269,4,1,""],search_index_entry:[269,4,1,""]},"evennia.contrib.tutorial_world.rooms.CmdDarkHelp":{aliases:[269,4,1,""],func:[269,3,1,""],help_category:[269,4,1,""],key:[269,4,1,""],lock_storage:[269,4,1,""],locks:[269,4,1,""],search_index_entry:[269,4,1,""]},"evennia.contrib.tutorial_world.rooms.CmdDarkNoMatch":{aliases:[269,4,1,""],func:[269,3,1,""],help_category:[269,4,1,""],key:[269,4,1,""],lock_storage:[269,4,1,""],locks:[269,4,1,""],search_index_entry:[269,4,1,""]},"evennia.contrib.tutorial_world.rooms.CmdEast":{aliases:[269,4,1,""],func:[269,3,1,""],help_category:[269,4,1,""],key:[269,4,1,""],lock_storage:[269,4,1,""],locks:[269,4,1,""],search_index_entry:[269,4,1,""]},"evennia.contrib.tutorial_world.rooms.CmdEvenniaIntro":{aliases:[269,4,1,""],func:[269,3,1,""],help_category:[269,4,1,""],key:[269,4,1,""],lock_storage:[269,4,1,""],search_index_entry:[269,4,1,""]},"evennia.contrib.tutorial_world.rooms.CmdLookBridge":{aliases:[269,4,1,""],func:[269,3,1,""],help_category:[269,4,1,""],key:[269,4,1,""],lock_storage:[269,4,1,""],locks:[269,4,1,""],search_index_entry:[269,4,1,""]},"evennia.contrib.tutorial_world.rooms.CmdLookDark":{aliases:[269,4,1,""],func:[269,3,1,""],help_category:[269,4,1,""],key:[269,4,1,""],lock_storage:[269,4,1,""],locks:[269,4,1,""],search_index_entry:[269,4,1,""]},"evennia.contrib.tutorial_world.rooms.CmdSetEvenniaIntro":{at_cmdset_creation:[269,3,1,""],key:[269,4,1,""],path:[269,4,1,""]},"evennia.contrib.tutorial_world.rooms.CmdTutorial":{aliases:[269,4,1,""],func:[269,3,1,""],help_category:[269,4,1,""],key:[269,4,1,""],lock_storage:[269,4,1,""],locks:[269,4,1,""],search_index_entry:[269,4,1,""]},"evennia.contrib.tutorial_world.rooms.CmdTutorialGiveUp":{aliases:[269,4,1,""],func:[269,3,1,""],help_category:[269,4,1,""],key:[269,4,1,""],lock_storage:[269,4,1,""],search_index_entry:[269,4,1,""]},"evennia.contrib.tutorial_world.rooms.CmdTutorialLook":{aliases:[269,4,1,""],func:[269,3,1,""],help_category:[269,4,1,""],key:[269,4,1,""],lock_storage:[269,4,1,""],search_index_entry:[269,4,1,""]},"evennia.contrib.tutorial_world.rooms.CmdTutorialSetDetail":{aliases:[269,4,1,""],func:[269,3,1,""],help_category:[269,4,1,""],key:[269,4,1,""],lock_storage:[269,4,1,""],locks:[269,4,1,""],search_index_entry:[269,4,1,""]},"evennia.contrib.tutorial_world.rooms.CmdWest":{aliases:[269,4,1,""],func:[269,3,1,""],help_category:[269,4,1,""],key:[269,4,1,""],lock_storage:[269,4,1,""],locks:[269,4,1,""],search_index_entry:[269,4,1,""]},"evennia.contrib.tutorial_world.rooms.DarkCmdSet":{at_cmdset_creation:[269,3,1,""],key:[269,4,1,""],mergetype:[269,4,1,""],path:[269,4,1,""],priority:[269,4,1,""]},"evennia.contrib.tutorial_world.rooms.DarkRoom":{DoesNotExist:[269,2,1,""],MultipleObjectsReturned:[269,2,1,""],at_init:[269,3,1,""],at_object_creation:[269,3,1,""],at_object_leave:[269,3,1,""],at_object_receive:[269,3,1,""],check_light_state:[269,3,1,""],path:[269,4,1,""],typename:[269,4,1,""]},"evennia.contrib.tutorial_world.rooms.IntroRoom":{DoesNotExist:[269,2,1,""],MultipleObjectsReturned:[269,2,1,""],at_object_creation:[269,3,1,""],at_object_receive:[269,3,1,""],path:[269,4,1,""],typename:[269,4,1,""]},"evennia.contrib.tutorial_world.rooms.OutroRoom":{DoesNotExist:[269,2,1,""],MultipleObjectsReturned:[269,2,1,""],at_object_creation:[269,3,1,""],at_object_leave:[269,3,1,""],at_object_receive:[269,3,1,""],path:[269,4,1,""],typename:[269,4,1,""]},"evennia.contrib.tutorial_world.rooms.TeleportRoom":{DoesNotExist:[269,2,1,""],MultipleObjectsReturned:[269,2,1,""],at_object_creation:[269,3,1,""],at_object_receive:[269,3,1,""],path:[269,4,1,""],typename:[269,4,1,""]},"evennia.contrib.tutorial_world.rooms.TutorialRoom":{DoesNotExist:[269,2,1,""],MultipleObjectsReturned:[269,2,1,""],at_object_creation:[269,3,1,""],at_object_receive:[269,3,1,""],path:[269,4,1,""],return_detail:[269,3,1,""],set_detail:[269,3,1,""],typename:[269,4,1,""]},"evennia.contrib.tutorial_world.rooms.TutorialRoomCmdSet":{at_cmdset_creation:[269,3,1,""],key:[269,4,1,""],path:[269,4,1,""],priority:[269,4,1,""]},"evennia.contrib.tutorial_world.rooms.WeatherRoom":{DoesNotExist:[269,2,1,""],MultipleObjectsReturned:[269,2,1,""],at_object_creation:[269,3,1,""],path:[269,4,1,""],typename:[269,4,1,""],update_weather:[269,3,1,""]},"evennia.contrib.unixcommand":{HelpAction:[270,1,1,""],ParseError:[270,2,1,""],UnixCommand:[270,1,1,""],UnixCommandParser:[270,1,1,""]},"evennia.contrib.unixcommand.UnixCommand":{__init__:[270,3,1,""],aliases:[270,4,1,""],func:[270,3,1,""],get_help:[270,3,1,""],help_category:[270,4,1,""],init_parser:[270,3,1,""],key:[270,4,1,""],lock_storage:[270,4,1,""],parse:[270,3,1,""],search_index_entry:[270,4,1,""]},"evennia.contrib.unixcommand.UnixCommandParser":{__init__:[270,3,1,""],format_help:[270,3,1,""],format_usage:[270,3,1,""],print_help:[270,3,1,""],print_usage:[270,3,1,""]},"evennia.contrib.wilderness":{WildernessExit:[271,1,1,""],WildernessMapProvider:[271,1,1,""],WildernessRoom:[271,1,1,""],WildernessScript:[271,1,1,""],create_wilderness:[271,5,1,""],enter_wilderness:[271,5,1,""],get_new_coordinates:[271,5,1,""]},"evennia.contrib.wilderness.WildernessExit":{DoesNotExist:[271,2,1,""],MultipleObjectsReturned:[271,2,1,""],at_traverse:[271,3,1,""],at_traverse_coordinates:[271,3,1,""],mapprovider:[271,3,1,""],path:[271,4,1,""],typename:[271,4,1,""],wilderness:[271,3,1,""]},"evennia.contrib.wilderness.WildernessMapProvider":{at_prepare_room:[271,3,1,""],exit_typeclass:[271,4,1,""],get_location_name:[271,3,1,""],is_valid_coordinates:[271,3,1,""],room_typeclass:[271,4,1,""]},"evennia.contrib.wilderness.WildernessRoom":{DoesNotExist:[271,2,1,""],MultipleObjectsReturned:[271,2,1,""],at_object_leave:[271,3,1,""],at_object_receive:[271,3,1,""],coordinates:[271,3,1,""],get_display_name:[271,3,1,""],location_name:[271,3,1,""],path:[271,4,1,""],set_active_coordinates:[271,3,1,""],typename:[271,4,1,""],wilderness:[271,3,1,""]},"evennia.contrib.wilderness.WildernessScript":{DoesNotExist:[271,2,1,""],MultipleObjectsReturned:[271,2,1,""],at_after_object_leave:[271,3,1,""],at_script_creation:[271,3,1,""],at_start:[271,3,1,""],get_obj_coordinates:[271,3,1,""],get_objs_at_coordinates:[271,3,1,""],is_valid_coordinates:[271,3,1,""],itemcoordinates:[271,3,1,""],mapprovider:[271,3,1,""],move_obj:[271,3,1,""],path:[271,4,1,""],typename:[271,4,1,""]},"evennia.contrib.xyzgrid":{commands:[273,0,0,"-"],example:[274,0,0,"-"],launchcmd:[275,0,0,"-"],prototypes:[276,0,0,"-"],tests:[277,0,0,"-"],utils:[278,0,0,"-"],xymap:[279,0,0,"-"],xymap_legend:[280,0,0,"-"],xyzgrid:[281,0,0,"-"],xyzroom:[282,0,0,"-"]},"evennia.contrib.xyzgrid.commands":{CmdGoto:[273,1,1,""],CmdMap:[273,1,1,""],CmdXYZOpen:[273,1,1,""],CmdXYZTeleport:[273,1,1,""],PathData:[273,1,1,""],XYZGridCmdSet:[273,1,1,""]},"evennia.contrib.xyzgrid.commands.CmdGoto":{aliases:[273,4,1,""],auto_step_delay:[273,4,1,""],default_xyz_path_interrupt_msg:[273,4,1,""],func:[273,3,1,""],help_category:[273,4,1,""],key:[273,4,1,""],lock_storage:[273,4,1,""],locks:[273,4,1,""],search_index_entry:[273,4,1,""]},"evennia.contrib.xyzgrid.commands.CmdMap":{aliases:[273,4,1,""],func:[273,3,1,""],help_category:[273,4,1,""],key:[273,4,1,""],lock_storage:[273,4,1,""],locks:[273,4,1,""],search_index_entry:[273,4,1,""]},"evennia.contrib.xyzgrid.commands.CmdXYZOpen":{aliases:[273,4,1,""],help_category:[273,4,1,""],key:[273,4,1,""],lock_storage:[273,4,1,""],parse:[273,3,1,""],search_index_entry:[273,4,1,""]},"evennia.contrib.xyzgrid.commands.CmdXYZTeleport":{aliases:[273,4,1,""],help_category:[273,4,1,""],key:[273,4,1,""],lock_storage:[273,4,1,""],parse:[273,3,1,""],search_index_entry:[273,4,1,""]},"evennia.contrib.xyzgrid.commands.PathData":{directions:[273,4,1,""],step_sequence:[273,4,1,""],target:[273,4,1,""],task:[273,4,1,""],xymap:[273,4,1,""]},"evennia.contrib.xyzgrid.commands.XYZGridCmdSet":{at_cmdset_creation:[273,3,1,""],key:[273,4,1,""],path:[273,4,1,""]},"evennia.contrib.xyzgrid.example":{TransitionToCave:[274,1,1,""],TransitionToLargeTree:[274,1,1,""]},"evennia.contrib.xyzgrid.example.TransitionToCave":{symbol:[274,4,1,""],target_map_xyz:[274,4,1,""]},"evennia.contrib.xyzgrid.example.TransitionToLargeTree":{symbol:[274,4,1,""],target_map_xyz:[274,4,1,""]},"evennia.contrib.xyzgrid.launchcmd":{xyzcommand:[275,5,1,""]},"evennia.contrib.xyzgrid.tests":{Map12aTransition:[277,1,1,""],Map12bTransition:[277,1,1,""],TestBuildExampleGrid:[277,1,1,""],TestMap10:[277,1,1,""],TestMap11:[277,1,1,""],TestMap1:[277,1,1,""],TestMap2:[277,1,1,""],TestMap3:[277,1,1,""],TestMap4:[277,1,1,""],TestMap5:[277,1,1,""],TestMap6:[277,1,1,""],TestMap7:[277,1,1,""],TestMap8:[277,1,1,""],TestMap9:[277,1,1,""],TestMapStressTest:[277,1,1,""],TestXYZGrid:[277,1,1,""],TestXYZGridTransition:[277,1,1,""]},"evennia.contrib.xyzgrid.tests.Map12aTransition":{symbol:[277,4,1,""],target_map_xyz:[277,4,1,""]},"evennia.contrib.xyzgrid.tests.Map12bTransition":{symbol:[277,4,1,""],target_map_xyz:[277,4,1,""]},"evennia.contrib.xyzgrid.tests.TestBuildExampleGrid":{setUp:[277,3,1,""],tearDown:[277,3,1,""],test_build:[277,3,1,""]},"evennia.contrib.xyzgrid.tests.TestMap1":{test_get_shortest_path:[277,3,1,""],test_get_visual_range__nodes__character:[277,4,1,""],test_get_visual_range__nodes__character_0:[277,3,1,""],test_get_visual_range__nodes__character_1:[277,3,1,""],test_get_visual_range__nodes__character_2:[277,3,1,""],test_get_visual_range__nodes__character_3:[277,3,1,""],test_get_visual_range__nodes__character_4:[277,3,1,""],test_get_visual_range__scan:[277,4,1,""],test_get_visual_range__scan_0:[277,3,1,""],test_get_visual_range__scan_1:[277,3,1,""],test_get_visual_range__scan_2:[277,3,1,""],test_get_visual_range__scan_3:[277,3,1,""],test_get_visual_range__scan__character:[277,4,1,""],test_get_visual_range__scan__character_0:[277,3,1,""],test_get_visual_range__scan__character_1:[277,3,1,""],test_get_visual_range__scan__character_2:[277,3,1,""],test_get_visual_range__scan__character_3:[277,3,1,""],test_node_from_coord:[277,3,1,""],test_spawn:[277,3,1,""],test_str_output:[277,3,1,""]},"evennia.contrib.xyzgrid.tests.TestMap10":{map_data:[277,4,1,""],map_display:[277,4,1,""],test_paths:[277,4,1,""],test_paths_0:[277,3,1,""],test_paths_1:[277,3,1,""],test_shortest_path:[277,4,1,""],test_shortest_path_0:[277,3,1,""],test_shortest_path_1:[277,3,1,""],test_shortest_path_2:[277,3,1,""],test_shortest_path_3:[277,3,1,""],test_shortest_path_4:[277,3,1,""],test_shortest_path_5:[277,3,1,""],test_shortest_path_6:[277,3,1,""],test_shortest_path_7:[277,3,1,""],test_shortest_path_8:[277,3,1,""],test_shortest_path_9:[277,3,1,""],test_spawn:[277,3,1,""],test_str_output:[277,3,1,""]},"evennia.contrib.xyzgrid.tests.TestMap11":{map_data:[277,4,1,""],map_display:[277,4,1,""],test_get_visual_range_with_path:[277,4,1,""],test_get_visual_range_with_path_0:[277,3,1,""],test_get_visual_range_with_path_1:[277,3,1,""],test_paths:[277,4,1,""],test_paths_0:[277,3,1,""],test_paths_1:[277,3,1,""],test_shortest_path:[277,4,1,""],test_shortest_path_0:[277,3,1,""],test_shortest_path_1:[277,3,1,""],test_spawn:[277,3,1,""],test_str_output:[277,3,1,""]},"evennia.contrib.xyzgrid.tests.TestMap2":{map_data:[277,4,1,""],map_display:[277,4,1,""],test_extended_path_tracking__horizontal:[277,3,1,""],test_extended_path_tracking__vertical:[277,3,1,""],test_get_visual_range__nodes__character:[277,4,1,""],test_get_visual_range__nodes__character_0:[277,3,1,""],test_get_visual_range__nodes__character_1:[277,3,1,""],test_get_visual_range__nodes__character_2:[277,3,1,""],test_get_visual_range__nodes__character_3:[277,3,1,""],test_get_visual_range__nodes__character_4:[277,3,1,""],test_get_visual_range__nodes__character_5:[277,3,1,""],test_get_visual_range__nodes__character_6:[277,3,1,""],test_get_visual_range__nodes__character_7:[277,3,1,""],test_get_visual_range__nodes__character_8:[277,3,1,""],test_get_visual_range__nodes__character_9:[277,3,1,""],test_get_visual_range__scan__character:[277,4,1,""],test_get_visual_range__scan__character_0:[277,3,1,""],test_get_visual_range__scan__character_1:[277,3,1,""],test_get_visual_range__scan__character_2:[277,3,1,""],test_get_visual_range__scan__character_3:[277,3,1,""],test_node_from_coord:[277,3,1,""],test_shortest_path:[277,4,1,""],test_shortest_path_0:[277,3,1,""],test_shortest_path_1:[277,3,1,""],test_shortest_path_2:[277,3,1,""],test_shortest_path_3:[277,3,1,""],test_shortest_path_4:[277,3,1,""],test_shortest_path_5:[277,3,1,""],test_shortest_path_6:[277,3,1,""],test_spawn:[277,3,1,""],test_str_output:[277,3,1,""]},"evennia.contrib.xyzgrid.tests.TestMap3":{map_data:[277,4,1,""],map_display:[277,4,1,""],test_get_visual_range__nodes__character:[277,4,1,""],test_get_visual_range__nodes__character_0:[277,3,1,""],test_get_visual_range__nodes__character_1:[277,3,1,""],test_shortest_path:[277,4,1,""],test_shortest_path_00:[277,3,1,""],test_shortest_path_01:[277,3,1,""],test_shortest_path_02:[277,3,1,""],test_shortest_path_03:[277,3,1,""],test_shortest_path_04:[277,3,1,""],test_shortest_path_05:[277,3,1,""],test_shortest_path_06:[277,3,1,""],test_shortest_path_07:[277,3,1,""],test_shortest_path_08:[277,3,1,""],test_shortest_path_09:[277,3,1,""],test_shortest_path_10:[277,3,1,""],test_spawn:[277,3,1,""],test_str_output:[277,3,1,""]},"evennia.contrib.xyzgrid.tests.TestMap4":{map_data:[277,4,1,""],map_display:[277,4,1,""],test_shortest_path:[277,4,1,""],test_shortest_path_0:[277,3,1,""],test_shortest_path_1:[277,3,1,""],test_shortest_path_2:[277,3,1,""],test_shortest_path_3:[277,3,1,""],test_shortest_path_4:[277,3,1,""],test_shortest_path_5:[277,3,1,""],test_spawn:[277,3,1,""],test_str_output:[277,3,1,""]},"evennia.contrib.xyzgrid.tests.TestMap5":{map_data:[277,4,1,""],map_display:[277,4,1,""],test_shortest_path:[277,4,1,""],test_shortest_path_0:[277,3,1,""],test_shortest_path_1:[277,3,1,""],test_shortest_path_2:[277,3,1,""],test_shortest_path_3:[277,3,1,""],test_spawn:[277,3,1,""],test_str_output:[277,3,1,""]},"evennia.contrib.xyzgrid.tests.TestMap6":{map_data:[277,4,1,""],map_display:[277,4,1,""],test_shortest_path:[277,4,1,""],test_shortest_path_0:[277,3,1,""],test_shortest_path_1:[277,3,1,""],test_shortest_path_2:[277,3,1,""],test_shortest_path_3:[277,3,1,""],test_shortest_path_4:[277,3,1,""],test_shortest_path_5:[277,3,1,""],test_shortest_path_6:[277,3,1,""],test_shortest_path_7:[277,3,1,""],test_spawn:[277,3,1,""],test_str_output:[277,3,1,""]},"evennia.contrib.xyzgrid.tests.TestMap7":{map_data:[277,4,1,""],map_display:[277,4,1,""],test_shortest_path:[277,4,1,""],test_shortest_path_0:[277,3,1,""],test_shortest_path_1:[277,3,1,""],test_shortest_path_2:[277,3,1,""],test_shortest_path_3:[277,3,1,""],test_spawn:[277,3,1,""],test_str_output:[277,3,1,""]},"evennia.contrib.xyzgrid.tests.TestMap8":{map_data:[277,4,1,""],map_display:[277,4,1,""],test_get_visual_range__nodes__character:[277,4,1,""],test_get_visual_range__nodes__character_0:[277,3,1,""],test_get_visual_range_with_path:[277,4,1,""],test_get_visual_range_with_path_0:[277,3,1,""],test_get_visual_range_with_path_1:[277,3,1,""],test_get_visual_range_with_path_2:[277,3,1,""],test_get_visual_range_with_path_3:[277,3,1,""],test_get_visual_range_with_path_4:[277,3,1,""],test_shortest_path:[277,4,1,""],test_shortest_path_0:[277,3,1,""],test_shortest_path_1:[277,3,1,""],test_shortest_path_2:[277,3,1,""],test_shortest_path_3:[277,3,1,""],test_shortest_path_4:[277,3,1,""],test_shortest_path_5:[277,3,1,""],test_shortest_path_6:[277,3,1,""],test_spawn:[277,3,1,""],test_str_output:[277,3,1,""]},"evennia.contrib.xyzgrid.tests.TestMap9":{map_data:[277,4,1,""],map_display:[277,4,1,""],test_shortest_path:[277,4,1,""],test_shortest_path_0:[277,3,1,""],test_shortest_path_1:[277,3,1,""],test_shortest_path_2:[277,3,1,""],test_shortest_path_3:[277,3,1,""],test_spawn:[277,3,1,""],test_str_output:[277,3,1,""]},"evennia.contrib.xyzgrid.tests.TestMapStressTest":{test_grid_creation:[277,4,1,""],test_grid_creation_0:[277,3,1,""],test_grid_creation_1:[277,3,1,""],test_grid_pathfind:[277,4,1,""],test_grid_pathfind_0:[277,3,1,""],test_grid_pathfind_1:[277,3,1,""],test_grid_visibility:[277,4,1,""],test_grid_visibility_0:[277,3,1,""],test_grid_visibility_1:[277,3,1,""]},"evennia.contrib.xyzgrid.tests.TestXYZGrid":{setUp:[277,3,1,""],tearDown:[277,3,1,""],test_spawn:[277,3,1,""],test_str_output:[277,3,1,""],zcoord:[277,4,1,""]},"evennia.contrib.xyzgrid.tests.TestXYZGridTransition":{setUp:[277,3,1,""],tearDown:[277,3,1,""],test_shortest_path:[277,4,1,""],test_shortest_path_0:[277,3,1,""],test_shortest_path_1:[277,3,1,""],test_spawn:[277,3,1,""]},"evennia.contrib.xyzgrid.utils":{MapError:[278,2,1,""],MapParserError:[278,2,1,""],MapTransition:[278,2,1,""]},"evennia.contrib.xyzgrid.utils.MapError":{__init__:[278,3,1,""]},"evennia.contrib.xyzgrid.xymap":{XYMap:[279,1,1,""]},"evennia.contrib.xyzgrid.xymap.XYMap":{__init__:[279,3,1,""],calculate_path_matrix:[279,3,1,""],empty_symbol:[279,4,1,""],get_components_with_symbol:[279,3,1,""],get_node_from_coord:[279,3,1,""],get_shortest_path:[279,3,1,""],get_visual_range:[279,3,1,""],legend_key_exceptions:[279,4,1,""],log:[279,3,1,""],mapcorner_symbol:[279,4,1,""],max_pathfinding_length:[279,4,1,""],parse:[279,3,1,""],reload:[279,3,1,""],spawn_links:[279,3,1,""],spawn_nodes:[279,3,1,""]},"evennia.contrib.xyzgrid.xymap_legend":{BasicMapNode:[280,1,1,""],BlockedMapLink:[280,1,1,""],CrossMapLink:[280,1,1,""],DownMapLink:[280,1,1,""],EWMapLink:[280,1,1,""],EWOneWayMapLink:[280,1,1,""],InterruptMapLink:[280,1,1,""],InterruptMapNode:[280,1,1,""],InvisibleSmartMapLink:[280,1,1,""],MapLink:[280,1,1,""],MapNode:[280,1,1,""],MapTransitionNode:[280,1,1,""],NESWMapLink:[280,1,1,""],NSMapLink:[280,1,1,""],NSOneWayMapLink:[280,1,1,""],PlusMapLink:[280,1,1,""],RouterMapLink:[280,1,1,""],SENWMapLink:[280,1,1,""],SNOneWayMapLink:[280,1,1,""],SmartMapLink:[280,1,1,""],SmartRerouterMapLink:[280,1,1,""],SmartTeleporterMapLink:[280,1,1,""],TeleporterMapLink:[280,1,1,""],TransitionMapNode:[280,1,1,""],UpMapLink:[280,1,1,""],WEOneWayMapLink:[280,1,1,""]},"evennia.contrib.xyzgrid.xymap_legend.BasicMapNode":{prototype:[280,4,1,""],symbol:[280,4,1,""]},"evennia.contrib.xyzgrid.xymap_legend.BlockedMapLink":{prototype:[280,4,1,""],symbol:[280,4,1,""],weights:[280,4,1,""]},"evennia.contrib.xyzgrid.xymap_legend.CrossMapLink":{directions:[280,4,1,""],prototype:[280,4,1,""],symbol:[280,4,1,""]},"evennia.contrib.xyzgrid.xymap_legend.DownMapLink":{direction_aliases:[280,4,1,""],prototype:[280,4,1,""],spawn_aliases:[280,4,1,""],symbol:[280,4,1,""]},"evennia.contrib.xyzgrid.xymap_legend.EWMapLink":{directions:[280,4,1,""],prototype:[280,4,1,""],symbol:[280,4,1,""]},"evennia.contrib.xyzgrid.xymap_legend.EWOneWayMapLink":{directions:[280,4,1,""],prototype:[280,4,1,""],symbol:[280,4,1,""]},"evennia.contrib.xyzgrid.xymap_legend.InterruptMapLink":{interrupt_path:[280,4,1,""],prototype:[280,4,1,""],symbol:[280,4,1,""]},"evennia.contrib.xyzgrid.xymap_legend.InterruptMapNode":{display_symbol:[280,4,1,""],interrupt_path:[280,4,1,""],prototype:[280,4,1,""],symbol:[280,4,1,""]},"evennia.contrib.xyzgrid.xymap_legend.InvisibleSmartMapLink":{direction_aliases:[280,4,1,""],display_symbol_aliases:[280,4,1,""],get_display_symbol:[280,3,1,""]},"evennia.contrib.xyzgrid.xymap_legend.MapLink":{__init__:[280,3,1,""],at_empty_target:[280,3,1,""],average_long_link_weights:[280,4,1,""],default_weight:[280,4,1,""],direction_aliases:[280,4,1,""],directions:[280,4,1,""],display_symbol:[280,4,1,""],generate_prototype_key:[280,3,1,""],get_direction:[280,3,1,""],get_display_symbol:[280,3,1,""],get_linked_neighbors:[280,3,1,""],get_weight:[280,3,1,""],interrupt_path:[280,4,1,""],multilink:[280,4,1,""],prototype:[280,4,1,""],spawn_aliases:[280,4,1,""],symbol:[280,4,1,""],traverse:[280,3,1,""],weights:[280,4,1,""]},"evennia.contrib.xyzgrid.xymap_legend.MapNode":{__init__:[280,3,1,""],build_links:[280,3,1,""],direction_spawn_defaults:[280,4,1,""],display_symbol:[280,4,1,""],generate_prototype_key:[280,3,1,""],get_display_symbol:[280,3,1,""],get_exit_spawn_name:[280,3,1,""],get_spawn_xyz:[280,3,1,""],interrupt_path:[280,4,1,""],linkweights:[280,3,1,""],log:[280,3,1,""],multilink:[280,4,1,""],node_index:[280,4,1,""],prototype:[280,4,1,""],spawn:[280,3,1,""],spawn_links:[280,3,1,""],symbol:[280,4,1,""],unspawn:[280,3,1,""]},"evennia.contrib.xyzgrid.xymap_legend.MapTransitionNode":{display_symbol:[280,4,1,""],prototype:[280,4,1,""],symbol:[280,4,1,""],target_map_xyz:[280,4,1,""]},"evennia.contrib.xyzgrid.xymap_legend.NESWMapLink":{directions:[280,4,1,""],prototype:[280,4,1,""],symbol:[280,4,1,""]},"evennia.contrib.xyzgrid.xymap_legend.NSMapLink":{directions:[280,4,1,""],display_symbol:[280,4,1,""],prototype:[280,4,1,""],symbol:[280,4,1,""]},"evennia.contrib.xyzgrid.xymap_legend.NSOneWayMapLink":{directions:[280,4,1,""],prototype:[280,4,1,""],symbol:[280,4,1,""]},"evennia.contrib.xyzgrid.xymap_legend.PlusMapLink":{directions:[280,4,1,""],prototype:[280,4,1,""],symbol:[280,4,1,""]},"evennia.contrib.xyzgrid.xymap_legend.RouterMapLink":{symbol:[280,4,1,""]},"evennia.contrib.xyzgrid.xymap_legend.SENWMapLink":{directions:[280,4,1,""],prototype:[280,4,1,""],symbol:[280,4,1,""]},"evennia.contrib.xyzgrid.xymap_legend.SNOneWayMapLink":{directions:[280,4,1,""],prototype:[280,4,1,""],symbol:[280,4,1,""]},"evennia.contrib.xyzgrid.xymap_legend.SmartMapLink":{get_direction:[280,3,1,""],multilink:[280,4,1,""]},"evennia.contrib.xyzgrid.xymap_legend.SmartRerouterMapLink":{get_direction:[280,3,1,""],multilink:[280,4,1,""]},"evennia.contrib.xyzgrid.xymap_legend.SmartTeleporterMapLink":{__init__:[280,3,1,""],at_empty_target:[280,3,1,""],direction_name:[280,4,1,""],display_symbol:[280,4,1,""],get_direction:[280,3,1,""],symbol:[280,4,1,""]},"evennia.contrib.xyzgrid.xymap_legend.TeleporterMapLink":{symbol:[280,4,1,""]},"evennia.contrib.xyzgrid.xymap_legend.TransitionMapNode":{build_links:[280,3,1,""],display_symbol:[280,4,1,""],get_spawn_xyz:[280,3,1,""],symbol:[280,4,1,""],taget_map_xyz:[280,4,1,""]},"evennia.contrib.xyzgrid.xymap_legend.UpMapLink":{direction_aliases:[280,4,1,""],prototype:[280,4,1,""],spawn_aliases:[280,4,1,""],symbol:[280,4,1,""]},"evennia.contrib.xyzgrid.xymap_legend.WEOneWayMapLink":{directions:[280,4,1,""],prototype:[280,4,1,""],symbol:[280,4,1,""]},"evennia.contrib.xyzgrid.xyzgrid":{XYZGrid:[281,1,1,""],get_xyzgrid:[281,5,1,""]},"evennia.contrib.xyzgrid.xyzgrid.XYZGrid":{"delete":[281,3,1,""],DoesNotExist:[281,2,1,""],MultipleObjectsReturned:[281,2,1,""],add_maps:[281,3,1,""],all_maps:[281,3,1,""],at_script_creation:[281,3,1,""],get_exit:[281,3,1,""],get_map:[281,3,1,""],get_room:[281,3,1,""],grid:[281,3,1,""],log:[281,3,1,""],maps_from_module:[281,3,1,""],path:[281,4,1,""],reload:[281,3,1,""],remove_map:[281,3,1,""],spawn:[281,3,1,""],typename:[281,4,1,""]},"evennia.contrib.xyzgrid.xyzroom":{XYZExit:[282,1,1,""],XYZExitManager:[282,1,1,""],XYZManager:[282,1,1,""],XYZRoom:[282,1,1,""]},"evennia.contrib.xyzgrid.xyzroom.XYZExit":{DoesNotExist:[282,2,1,""],MultipleObjectsReturned:[282,2,1,""],create:[282,3,1,""],objects:[282,4,1,""],path:[282,4,1,""],typename:[282,4,1,""],xyz:[282,3,1,""],xyz_destination:[282,3,1,""],xyzgrid:[282,3,1,""]},"evennia.contrib.xyzgrid.xyzroom.XYZExitManager":{filter_xyz_exit:[282,3,1,""],get_xyz_exit:[282,3,1,""]},"evennia.contrib.xyzgrid.xyzroom.XYZManager":{filter_xyz:[282,3,1,""],get_xyz:[282,3,1,""]},"evennia.contrib.xyzgrid.xyzroom.XYZRoom":{DoesNotExist:[282,2,1,""],MultipleObjectsReturned:[282,2,1,""],create:[282,3,1,""],get_display_name:[282,3,1,""],map_align:[282,4,1,""],map_character_symbol:[282,4,1,""],map_display:[282,4,1,""],map_fill_all:[282,4,1,""],map_mode:[282,4,1,""],map_separator_char:[282,4,1,""],map_target_path_style:[282,4,1,""],map_visual_range:[282,4,1,""],objects:[282,4,1,""],path:[282,4,1,""],return_appearance:[282,3,1,""],typename:[282,4,1,""],xymap:[282,3,1,""],xyz:[282,3,1,""],xyzgrid:[282,3,1,""]},"evennia.help":{filehelp:[284,0,0,"-"],manager:[285,0,0,"-"],models:[286,0,0,"-"],utils:[287,0,0,"-"]},"evennia.help.filehelp":{FileHelpEntry:[284,1,1,""],FileHelpStorageHandler:[284,1,1,""]},"evennia.help.filehelp.FileHelpEntry":{__init__:[284,3,1,""],access:[284,3,1,""],aliases:[284,4,1,""],entrytext:[284,4,1,""],help_category:[284,4,1,""],key:[284,4,1,""],lock_storage:[284,4,1,""],locks:[284,4,1,""],search_index_entry:[284,3,1,""]},"evennia.help.filehelp.FileHelpStorageHandler":{__init__:[284,3,1,""],all:[284,3,1,""],load:[284,3,1,""]},"evennia.help.manager":{HelpEntryManager:[285,1,1,""]},"evennia.help.manager.HelpEntryManager":{all_to_category:[285,3,1,""],find_apropos:[285,3,1,""],find_topicmatch:[285,3,1,""],find_topics_with_category:[285,3,1,""],find_topicsuggestions:[285,3,1,""],get_all_categories:[285,3,1,""],get_all_topics:[285,3,1,""],search_help:[285,3,1,""]},"evennia.help.models":{HelpEntry:[286,1,1,""]},"evennia.help.models.HelpEntry":{DoesNotExist:[286,2,1,""],MultipleObjectsReturned:[286,2,1,""],access:[286,3,1,""],aliases:[286,4,1,""],date_created:[286,3,1,""],db_date_created:[286,4,1,""],db_entrytext:[286,4,1,""],db_help_category:[286,4,1,""],db_key:[286,4,1,""],db_lock_storage:[286,4,1,""],db_tags:[286,4,1,""],entrytext:[286,3,1,""],get_absolute_url:[286,3,1,""],get_next_by_db_date_created:[286,3,1,""],get_previous_by_db_date_created:[286,3,1,""],help_category:[286,3,1,""],id:[286,4,1,""],key:[286,3,1,""],lock_storage:[286,3,1,""],locks:[286,4,1,""],objects:[286,4,1,""],path:[286,4,1,""],search_index_entry:[286,3,1,""],tags:[286,4,1,""],typename:[286,4,1,""],web_get_admin_url:[286,3,1,""],web_get_create_url:[286,3,1,""],web_get_delete_url:[286,3,1,""],web_get_detail_url:[286,3,1,""],web_get_update_url:[286,3,1,""]},"evennia.help.utils":{help_search_with_index:[287,5,1,""],parse_entry_for_subcategories:[287,5,1,""]},"evennia.locks":{lockfuncs:[289,0,0,"-"],lockhandler:[290,0,0,"-"]},"evennia.locks.lockfuncs":{"false":[289,5,1,""],"true":[289,5,1,""],all:[289,5,1,""],attr:[289,5,1,""],attr_eq:[289,5,1,""],attr_ge:[289,5,1,""],attr_gt:[289,5,1,""],attr_le:[289,5,1,""],attr_lt:[289,5,1,""],attr_ne:[289,5,1,""],dbref:[289,5,1,""],has_account:[289,5,1,""],holds:[289,5,1,""],id:[289,5,1,""],inside:[289,5,1,""],inside_rec:[289,5,1,""],locattr:[289,5,1,""],none:[289,5,1,""],objattr:[289,5,1,""],objlocattr:[289,5,1,""],objtag:[289,5,1,""],pdbref:[289,5,1,""],perm:[289,5,1,""],perm_above:[289,5,1,""],pid:[289,5,1,""],pperm:[289,5,1,""],pperm_above:[289,5,1,""],self:[289,5,1,""],serversetting:[289,5,1,""],superuser:[289,5,1,""],tag:[289,5,1,""]},"evennia.locks.lockhandler":{LockException:[290,2,1,""],LockHandler:[290,1,1,""]},"evennia.locks.lockhandler.LockHandler":{"delete":[290,3,1,""],__init__:[290,3,1,""],add:[290,3,1,""],all:[290,3,1,""],append:[290,3,1,""],cache_lock_bypass:[290,3,1,""],check:[290,3,1,""],check_lockstring:[290,3,1,""],clear:[290,3,1,""],get:[290,3,1,""],remove:[290,3,1,""],replace:[290,3,1,""],reset:[290,3,1,""],validate:[290,3,1,""]},"evennia.objects":{manager:[292,0,0,"-"],models:[293,0,0,"-"],objects:[294,0,0,"-"]},"evennia.objects.manager":{ObjectManager:[292,1,1,""]},"evennia.objects.models":{ContentsHandler:[293,1,1,""],ObjectDB:[293,1,1,""]},"evennia.objects.models.ContentsHandler":{__init__:[293,3,1,""],add:[293,3,1,""],clear:[293,3,1,""],get:[293,3,1,""],init:[293,3,1,""],load:[293,3,1,""],remove:[293,3,1,""]},"evennia.objects.models.ObjectDB":{DoesNotExist:[293,2,1,""],MultipleObjectsReturned:[293,2,1,""],account:[293,3,1,""],at_db_location_postsave:[293,3,1,""],cmdset_storage:[293,3,1,""],contents_cache:[293,4,1,""],db_account:[293,4,1,""],db_account_id:[293,4,1,""],db_attributes:[293,4,1,""],db_cmdset_storage:[293,4,1,""],db_destination:[293,4,1,""],db_destination_id:[293,4,1,""],db_home:[293,4,1,""],db_home_id:[293,4,1,""],db_location:[293,4,1,""],db_location_id:[293,4,1,""],db_sessid:[293,4,1,""],db_tags:[293,4,1,""],destination:[293,3,1,""],destinations_set:[293,4,1,""],get_next_by_db_date_created:[293,3,1,""],get_previous_by_db_date_created:[293,3,1,""],hide_from_objects_set:[293,4,1,""],home:[293,3,1,""],homes_set:[293,4,1,""],id:[293,4,1,""],location:[293,3,1,""],locations_set:[293,4,1,""],object_subscription_set:[293,4,1,""],objects:[293,4,1,""],path:[293,4,1,""],receiver_object_set:[293,4,1,""],scriptdb_set:[293,4,1,""],sender_object_set:[293,4,1,""],sessid:[293,3,1,""],typename:[293,4,1,""]},"evennia.objects.objects":{DefaultCharacter:[294,1,1,""],DefaultExit:[294,1,1,""],DefaultObject:[294,1,1,""],DefaultRoom:[294,1,1,""],ExitCommand:[294,1,1,""],ObjectSessionHandler:[294,1,1,""]},"evennia.objects.objects.DefaultCharacter":{DoesNotExist:[294,2,1,""],MultipleObjectsReturned:[294,2,1,""],at_after_move:[294,3,1,""],at_post_puppet:[294,3,1,""],at_post_unpuppet:[294,3,1,""],at_pre_puppet:[294,3,1,""],basetype_setup:[294,3,1,""],connection_time:[294,3,1,""],create:[294,3,1,""],idle_time:[294,3,1,""],lockstring:[294,4,1,""],normalize_name:[294,3,1,""],path:[294,4,1,""],typename:[294,4,1,""],validate_name:[294,3,1,""]},"evennia.objects.objects.DefaultExit":{DoesNotExist:[294,2,1,""],MultipleObjectsReturned:[294,2,1,""],at_cmdset_get:[294,3,1,""],at_failed_traverse:[294,3,1,""],at_init:[294,3,1,""],at_traverse:[294,3,1,""],basetype_setup:[294,3,1,""],create:[294,3,1,""],create_exit_cmdset:[294,3,1,""],exit_command:[294,4,1,""],lockstring:[294,4,1,""],path:[294,4,1,""],priority:[294,4,1,""],typename:[294,4,1,""]},"evennia.objects.objects.DefaultObject":{"delete":[294,3,1,""],DoesNotExist:[294,2,1,""],MultipleObjectsReturned:[294,2,1,""],access:[294,3,1,""],announce_move_from:[294,3,1,""],announce_move_to:[294,3,1,""],at_access:[294,3,1,""],at_after_move:[294,3,1,""],at_after_traverse:[294,3,1,""],at_before_drop:[294,3,1,""],at_before_get:[294,3,1,""],at_before_give:[294,3,1,""],at_before_move:[294,3,1,""],at_before_say:[294,3,1,""],at_cmdset_get:[294,3,1,""],at_desc:[294,3,1,""],at_drop:[294,3,1,""],at_failed_traverse:[294,3,1,""],at_first_save:[294,3,1,""],at_get:[294,3,1,""],at_give:[294,3,1,""],at_init:[294,3,1,""],at_look:[294,3,1,""],at_msg_receive:[294,3,1,""],at_msg_send:[294,3,1,""],at_object_creation:[294,3,1,""],at_object_delete:[294,3,1,""],at_object_leave:[294,3,1,""],at_object_post_copy:[294,3,1,""],at_object_receive:[294,3,1,""],at_post_puppet:[294,3,1,""],at_post_unpuppet:[294,3,1,""],at_pre_puppet:[294,3,1,""],at_pre_unpuppet:[294,3,1,""],at_say:[294,3,1,""],at_server_reload:[294,3,1,""],at_server_shutdown:[294,3,1,""],at_traverse:[294,3,1,""],basetype_posthook_setup:[294,3,1,""],basetype_setup:[294,3,1,""],clear_contents:[294,3,1,""],clear_exits:[294,3,1,""],cmdset:[294,4,1,""],contents:[294,3,1,""],contents_get:[294,3,1,""],contents_set:[294,3,1,""],copy:[294,3,1,""],create:[294,3,1,""],execute_cmd:[294,3,1,""],exits:[294,3,1,""],for_contents:[294,3,1,""],get_display_name:[294,3,1,""],get_numbered_name:[294,3,1,""],has_account:[294,3,1,""],is_connected:[294,3,1,""],is_superuser:[294,3,1,""],lockstring:[294,4,1,""],move_to:[294,3,1,""],msg:[294,3,1,""],msg_contents:[294,3,1,""],nicks:[294,4,1,""],objects:[294,4,1,""],path:[294,4,1,""],return_appearance:[294,3,1,""],scripts:[294,4,1,""],search:[294,3,1,""],search_account:[294,3,1,""],sessions:[294,4,1,""],typename:[294,4,1,""]},"evennia.objects.objects.DefaultRoom":{DoesNotExist:[294,2,1,""],MultipleObjectsReturned:[294,2,1,""],basetype_setup:[294,3,1,""],create:[294,3,1,""],lockstring:[294,4,1,""],path:[294,4,1,""],typename:[294,4,1,""]},"evennia.objects.objects.ExitCommand":{aliases:[294,4,1,""],func:[294,3,1,""],get_extra_info:[294,3,1,""],help_category:[294,4,1,""],key:[294,4,1,""],lock_storage:[294,4,1,""],obj:[294,4,1,""],search_index_entry:[294,4,1,""]},"evennia.objects.objects.ObjectSessionHandler":{__init__:[294,3,1,""],add:[294,3,1,""],all:[294,3,1,""],clear:[294,3,1,""],count:[294,3,1,""],get:[294,3,1,""],remove:[294,3,1,""]},"evennia.prototypes":{menus:[296,0,0,"-"],protfuncs:[297,0,0,"-"],prototypes:[298,0,0,"-"],spawner:[299,0,0,"-"]},"evennia.prototypes.menus":{OLCMenu:[296,1,1,""],node_apply_diff:[296,5,1,""],node_destination:[296,5,1,""],node_examine_entity:[296,5,1,""],node_home:[296,5,1,""],node_index:[296,5,1,""],node_key:[296,5,1,""],node_location:[296,5,1,""],node_prototype_desc:[296,5,1,""],node_prototype_key:[296,5,1,""],node_prototype_save:[296,5,1,""],node_prototype_spawn:[296,5,1,""],node_validate_prototype:[296,5,1,""],start_olc:[296,5,1,""]},"evennia.prototypes.menus.OLCMenu":{display_helptext:[296,3,1,""],helptext_formatter:[296,3,1,""],nodetext_formatter:[296,3,1,""],options_formatter:[296,3,1,""]},"evennia.prototypes.protfuncs":{protfunc_callable_protkey:[297,5,1,""]},"evennia.prototypes.prototypes":{DbPrototype:[298,1,1,""],PermissionError:[298,2,1,""],PrototypeEvMore:[298,1,1,""],ValidationError:[298,2,1,""],check_permission:[298,5,1,""],create_prototype:[298,5,1,""],delete_prototype:[298,5,1,""],format_available_protfuncs:[298,5,1,""],homogenize_prototype:[298,5,1,""],init_spawn_value:[298,5,1,""],list_prototypes:[298,5,1,""],load_module_prototypes:[298,5,1,""],protfunc_parser:[298,5,1,""],prototype_to_str:[298,5,1,""],save_prototype:[298,5,1,""],search_objects_with_prototype:[298,5,1,""],search_prototype:[298,5,1,""],validate_prototype:[298,5,1,""],value_to_obj:[298,5,1,""],value_to_obj_or_any:[298,5,1,""]},"evennia.prototypes.prototypes.DbPrototype":{DoesNotExist:[298,2,1,""],MultipleObjectsReturned:[298,2,1,""],at_script_creation:[298,3,1,""],path:[298,4,1,""],prototype:[298,3,1,""],typename:[298,4,1,""]},"evennia.prototypes.prototypes.PrototypeEvMore":{__init__:[298,3,1,""],init_pages:[298,3,1,""],page_formatter:[298,3,1,""],prototype_paginator:[298,3,1,""]},"evennia.prototypes.spawner":{Unset:[299,1,1,""],batch_create_object:[299,5,1,""],batch_update_objects_with_prototype:[299,5,1,""],flatten_diff:[299,5,1,""],flatten_prototype:[299,5,1,""],format_diff:[299,5,1,""],prototype_diff:[299,5,1,""],prototype_diff_from_object:[299,5,1,""],prototype_from_object:[299,5,1,""],spawn:[299,5,1,""]},"evennia.scripts":{manager:[301,0,0,"-"],models:[302,0,0,"-"],monitorhandler:[303,0,0,"-"],scripthandler:[304,0,0,"-"],scripts:[305,0,0,"-"],taskhandler:[306,0,0,"-"],tickerhandler:[307,0,0,"-"]},"evennia.scripts.manager":{ScriptManager:[301,1,1,""]},"evennia.scripts.models":{ScriptDB:[302,1,1,""]},"evennia.scripts.models.ScriptDB":{DoesNotExist:[302,2,1,""],MultipleObjectsReturned:[302,2,1,""],account:[302,3,1,""],db_account:[302,4,1,""],db_account_id:[302,4,1,""],db_attributes:[302,4,1,""],db_desc:[302,4,1,""],db_interval:[302,4,1,""],db_is_active:[302,4,1,""],db_obj:[302,4,1,""],db_obj_id:[302,4,1,""],db_persistent:[302,4,1,""],db_repeats:[302,4,1,""],db_start_delay:[302,4,1,""],db_tags:[302,4,1,""],desc:[302,3,1,""],get_next_by_db_date_created:[302,3,1,""],get_previous_by_db_date_created:[302,3,1,""],id:[302,4,1,""],interval:[302,3,1,""],is_active:[302,3,1,""],obj:[302,3,1,""],object:[302,3,1,""],objects:[302,4,1,""],path:[302,4,1,""],persistent:[302,3,1,""],receiver_script_set:[302,4,1,""],repeats:[302,3,1,""],sender_script_set:[302,4,1,""],start_delay:[302,3,1,""],typename:[302,4,1,""]},"evennia.scripts.monitorhandler":{MonitorHandler:[303,1,1,""]},"evennia.scripts.monitorhandler.MonitorHandler":{__init__:[303,3,1,""],add:[303,3,1,""],all:[303,3,1,""],at_update:[303,3,1,""],clear:[303,3,1,""],remove:[303,3,1,""],restore:[303,3,1,""],save:[303,3,1,""]},"evennia.scripts.scripthandler":{ScriptHandler:[304,1,1,""]},"evennia.scripts.scripthandler.ScriptHandler":{"delete":[304,3,1,""],__init__:[304,3,1,""],add:[304,3,1,""],all:[304,3,1,""],get:[304,3,1,""],start:[304,3,1,""],stop:[304,3,1,""]},"evennia.scripts.scripts":{DefaultScript:[305,1,1,""],DoNothing:[305,1,1,""],Store:[305,1,1,""]},"evennia.scripts.scripts.DefaultScript":{DoesNotExist:[305,2,1,""],MultipleObjectsReturned:[305,2,1,""],at_pause:[305,3,1,""],at_repeat:[305,3,1,""],at_script_creation:[305,3,1,""],at_script_delete:[305,3,1,""],at_server_reload:[305,3,1,""],at_server_shutdown:[305,3,1,""],at_server_start:[305,3,1,""],at_start:[305,3,1,""],at_stop:[305,3,1,""],create:[305,3,1,""],is_valid:[305,3,1,""],path:[305,4,1,""],typename:[305,4,1,""]},"evennia.scripts.scripts.DoNothing":{DoesNotExist:[305,2,1,""],MultipleObjectsReturned:[305,2,1,""],at_script_creation:[305,3,1,""],path:[305,4,1,""],typename:[305,4,1,""]},"evennia.scripts.scripts.Store":{DoesNotExist:[305,2,1,""],MultipleObjectsReturned:[305,2,1,""],at_script_creation:[305,3,1,""],path:[305,4,1,""],typename:[305,4,1,""]},"evennia.scripts.taskhandler":{TaskHandler:[306,1,1,""],TaskHandlerTask:[306,1,1,""],handle_error:[306,5,1,""]},"evennia.scripts.taskhandler.TaskHandler":{__init__:[306,3,1,""],active:[306,3,1,""],add:[306,3,1,""],call_task:[306,3,1,""],cancel:[306,3,1,""],clean_stale_tasks:[306,3,1,""],clear:[306,3,1,""],create_delays:[306,3,1,""],do_task:[306,3,1,""],exists:[306,3,1,""],get_deferred:[306,3,1,""],load:[306,3,1,""],remove:[306,3,1,""],save:[306,3,1,""]},"evennia.scripts.taskhandler.TaskHandlerTask":{__init__:[306,3,1,""],active:[306,3,1,"id6"],call:[306,3,1,"id3"],called:[306,3,1,""],cancel:[306,3,1,"id5"],do_task:[306,3,1,"id2"],exists:[306,3,1,"id7"],get_deferred:[306,3,1,""],get_id:[306,3,1,"id8"],pause:[306,3,1,"id0"],paused:[306,3,1,""],remove:[306,3,1,"id4"],unpause:[306,3,1,"id1"]},"evennia.scripts.tickerhandler":{Ticker:[307,1,1,""],TickerHandler:[307,1,1,""],TickerPool:[307,1,1,""]},"evennia.scripts.tickerhandler.Ticker":{__init__:[307,3,1,""],add:[307,3,1,""],remove:[307,3,1,""],stop:[307,3,1,""],validate:[307,3,1,""]},"evennia.scripts.tickerhandler.TickerHandler":{__init__:[307,3,1,""],add:[307,3,1,""],all:[307,3,1,""],all_display:[307,3,1,""],clear:[307,3,1,""],remove:[307,3,1,""],restore:[307,3,1,""],save:[307,3,1,""],ticker_pool_class:[307,4,1,""]},"evennia.scripts.tickerhandler.TickerPool":{__init__:[307,3,1,""],add:[307,3,1,""],remove:[307,3,1,""],stop:[307,3,1,""],ticker_class:[307,4,1,""]},"evennia.server":{amp_client:[309,0,0,"-"],connection_wizard:[310,0,0,"-"],deprecations:[311,0,0,"-"],evennia_launcher:[312,0,0,"-"],game_index_client:[313,0,0,"-"],initial_setup:[316,0,0,"-"],inputfuncs:[317,0,0,"-"],manager:[318,0,0,"-"],models:[319,0,0,"-"],portal:[320,0,0,"-"],profiling:[342,0,0,"-"],server:[350,0,0,"-"],serversession:[351,0,0,"-"],session:[352,0,0,"-"],sessionhandler:[353,0,0,"-"],signals:[354,0,0,"-"],throttle:[355,0,0,"-"],validators:[356,0,0,"-"],webserver:[357,0,0,"-"]},"evennia.server.amp_client":{AMPClientFactory:[309,1,1,""],AMPServerClientProtocol:[309,1,1,""]},"evennia.server.amp_client.AMPClientFactory":{__init__:[309,3,1,""],buildProtocol:[309,3,1,""],clientConnectionFailed:[309,3,1,""],clientConnectionLost:[309,3,1,""],factor:[309,4,1,""],initialDelay:[309,4,1,""],maxDelay:[309,4,1,""],noisy:[309,4,1,""],startedConnecting:[309,3,1,""]},"evennia.server.amp_client.AMPServerClientProtocol":{connectionMade:[309,3,1,""],data_to_portal:[309,3,1,""],send_AdminServer2Portal:[309,3,1,""],send_MsgServer2Portal:[309,3,1,""],server_receive_adminportal2server:[309,3,1,""],server_receive_msgportal2server:[309,3,1,""],server_receive_status:[309,3,1,""]},"evennia.server.connection_wizard":{ConnectionWizard:[310,1,1,""],node_game_index_fields:[310,5,1,""],node_game_index_start:[310,5,1,""],node_mssp_start:[310,5,1,""],node_start:[310,5,1,""],node_view_and_apply_settings:[310,5,1,""]},"evennia.server.connection_wizard.ConnectionWizard":{__init__:[310,3,1,""],ask_choice:[310,3,1,""],ask_continue:[310,3,1,""],ask_input:[310,3,1,""],ask_node:[310,3,1,""],ask_yesno:[310,3,1,""],display:[310,3,1,""]},"evennia.server.deprecations":{check_errors:[311,5,1,""],check_warnings:[311,5,1,""]},"evennia.server.evennia_launcher":{AMPLauncherProtocol:[312,1,1,""],MsgLauncher2Portal:[312,1,1,""],MsgStatus:[312,1,1,""],check_database:[312,5,1,""],check_main_evennia_dependencies:[312,5,1,""],collectstatic:[312,5,1,""],create_game_directory:[312,5,1,""],create_secret_key:[312,5,1,""],create_settings_file:[312,5,1,""],create_superuser:[312,5,1,""],del_pid:[312,5,1,""],error_check_python_modules:[312,5,1,""],evennia_version:[312,5,1,""],get_pid:[312,5,1,""],getenv:[312,5,1,""],init_game_directory:[312,5,1,""],kill:[312,5,1,""],list_settings:[312,5,1,""],main:[312,5,1,""],query_info:[312,5,1,""],query_status:[312,5,1,""],reboot_evennia:[312,5,1,""],reload_evennia:[312,5,1,""],run_connect_wizard:[312,5,1,""],run_custom_commands:[312,5,1,""],run_dummyrunner:[312,5,1,""],run_menu:[312,5,1,""],send_instruction:[312,5,1,""],set_gamedir:[312,5,1,""],show_version_info:[312,5,1,""],start_evennia:[312,5,1,""],start_only_server:[312,5,1,""],start_portal_interactive:[312,5,1,""],start_server_interactive:[312,5,1,""],stop_evennia:[312,5,1,""],stop_server_only:[312,5,1,""],tail_log_files:[312,5,1,""],wait_for_status:[312,5,1,""],wait_for_status_reply:[312,5,1,""]},"evennia.server.evennia_launcher.AMPLauncherProtocol":{__init__:[312,3,1,""],receive_status_from_portal:[312,3,1,""],wait_for_status:[312,3,1,""]},"evennia.server.evennia_launcher.MsgLauncher2Portal":{allErrors:[312,4,1,""],arguments:[312,4,1,""],commandName:[312,4,1,""],errors:[312,4,1,""],key:[312,4,1,""],response:[312,4,1,""],reverseErrors:[312,4,1,""]},"evennia.server.evennia_launcher.MsgStatus":{allErrors:[312,4,1,""],arguments:[312,4,1,""],commandName:[312,4,1,""],errors:[312,4,1,""],key:[312,4,1,""],response:[312,4,1,""],reverseErrors:[312,4,1,""]},"evennia.server.game_index_client":{client:[314,0,0,"-"],service:[315,0,0,"-"]},"evennia.server.game_index_client.client":{EvenniaGameIndexClient:[314,1,1,""],QuietHTTP11ClientFactory:[314,1,1,""],SimpleResponseReceiver:[314,1,1,""],StringProducer:[314,1,1,""]},"evennia.server.game_index_client.client.EvenniaGameIndexClient":{__init__:[314,3,1,""],handle_egd_response:[314,3,1,""],send_game_details:[314,3,1,""]},"evennia.server.game_index_client.client.QuietHTTP11ClientFactory":{noisy:[314,4,1,""]},"evennia.server.game_index_client.client.SimpleResponseReceiver":{__init__:[314,3,1,""],connectionLost:[314,3,1,""],dataReceived:[314,3,1,""]},"evennia.server.game_index_client.client.StringProducer":{__init__:[314,3,1,""],pauseProducing:[314,3,1,""],startProducing:[314,3,1,""],stopProducing:[314,3,1,""]},"evennia.server.game_index_client.service":{EvenniaGameIndexService:[315,1,1,""]},"evennia.server.game_index_client.service.EvenniaGameIndexService":{__init__:[315,3,1,""],name:[315,4,1,""],startService:[315,3,1,""],stopService:[315,3,1,""]},"evennia.server.initial_setup":{at_initial_setup:[316,5,1,""],collectstatic:[316,5,1,""],create_channels:[316,5,1,""],create_objects:[316,5,1,""],get_god_account:[316,5,1,""],handle_setup:[316,5,1,""],reset_server:[316,5,1,""]},"evennia.server.inputfuncs":{"default":[317,5,1,""],bot_data_in:[317,5,1,""],client_options:[317,5,1,""],echo:[317,5,1,""],external_discord_hello:[317,5,1,""],get_client_options:[317,5,1,""],get_inputfuncs:[317,5,1,""],get_value:[317,5,1,""],hello:[317,5,1,""],login:[317,5,1,""],monitor:[317,5,1,""],monitored:[317,5,1,""],msdp_list:[317,5,1,""],msdp_report:[317,5,1,""],msdp_send:[317,5,1,""],msdp_unreport:[317,5,1,""],repeat:[317,5,1,""],supports_set:[317,5,1,""],text:[317,5,1,""],unmonitor:[317,5,1,""],unrepeat:[317,5,1,""],webclient_options:[317,5,1,""]},"evennia.server.manager":{ServerConfigManager:[318,1,1,""]},"evennia.server.manager.ServerConfigManager":{conf:[318,3,1,""]},"evennia.server.models":{ServerConfig:[319,1,1,""]},"evennia.server.models.ServerConfig":{DoesNotExist:[319,2,1,""],MultipleObjectsReturned:[319,2,1,""],db_key:[319,4,1,""],db_value:[319,4,1,""],id:[319,4,1,""],key:[319,3,1,""],objects:[319,4,1,""],path:[319,4,1,""],store:[319,3,1,""],typename:[319,4,1,""],value:[319,3,1,""]},"evennia.server.portal":{amp:[321,0,0,"-"],amp_server:[322,0,0,"-"],grapevine:[323,0,0,"-"],irc:[324,0,0,"-"],mccp:[325,0,0,"-"],mssp:[326,0,0,"-"],mxp:[327,0,0,"-"],naws:[328,0,0,"-"],portal:[329,0,0,"-"],portalsessionhandler:[330,0,0,"-"],rss:[331,0,0,"-"],ssh:[332,0,0,"-"],ssl:[333,0,0,"-"],suppress_ga:[334,0,0,"-"],telnet:[335,0,0,"-"],telnet_oob:[336,0,0,"-"],telnet_ssl:[337,0,0,"-"],tests:[338,0,0,"-"],ttype:[339,0,0,"-"],webclient:[340,0,0,"-"],webclient_ajax:[341,0,0,"-"]},"evennia.server.portal.amp":{AMPMultiConnectionProtocol:[321,1,1,""],AdminPortal2Server:[321,1,1,""],AdminServer2Portal:[321,1,1,""],Compressed:[321,1,1,""],FunctionCall:[321,1,1,""],MsgLauncher2Portal:[321,1,1,""],MsgPortal2Server:[321,1,1,""],MsgServer2Portal:[321,1,1,""],MsgStatus:[321,1,1,""],dumps:[321,5,1,""],loads:[321,5,1,""]},"evennia.server.portal.amp.AMPMultiConnectionProtocol":{__init__:[321,3,1,""],broadcast:[321,3,1,""],connectionLost:[321,3,1,""],connectionMade:[321,3,1,""],dataReceived:[321,3,1,""],data_in:[321,3,1,""],errback:[321,3,1,""],makeConnection:[321,3,1,""],receive_functioncall:[321,3,1,""],send_FunctionCall:[321,3,1,""]},"evennia.server.portal.amp.AdminPortal2Server":{allErrors:[321,4,1,""],arguments:[321,4,1,""],commandName:[321,4,1,""],errors:[321,4,1,""],key:[321,4,1,""],response:[321,4,1,""],reverseErrors:[321,4,1,""]},"evennia.server.portal.amp.AdminServer2Portal":{allErrors:[321,4,1,""],arguments:[321,4,1,""],commandName:[321,4,1,""],errors:[321,4,1,""],key:[321,4,1,""],response:[321,4,1,""],reverseErrors:[321,4,1,""]},"evennia.server.portal.amp.Compressed":{fromBox:[321,3,1,""],fromString:[321,3,1,""],toBox:[321,3,1,""],toString:[321,3,1,""]},"evennia.server.portal.amp.FunctionCall":{allErrors:[321,4,1,""],arguments:[321,4,1,""],commandName:[321,4,1,""],errors:[321,4,1,""],key:[321,4,1,""],response:[321,4,1,""],reverseErrors:[321,4,1,""]},"evennia.server.portal.amp.MsgLauncher2Portal":{allErrors:[321,4,1,""],arguments:[321,4,1,""],commandName:[321,4,1,""],errors:[321,4,1,""],key:[321,4,1,""],response:[321,4,1,""],reverseErrors:[321,4,1,""]},"evennia.server.portal.amp.MsgPortal2Server":{allErrors:[321,4,1,""],arguments:[321,4,1,""],commandName:[321,4,1,""],errors:[321,4,1,""],key:[321,4,1,""],response:[321,4,1,""],reverseErrors:[321,4,1,""]},"evennia.server.portal.amp.MsgServer2Portal":{allErrors:[321,4,1,""],arguments:[321,4,1,""],commandName:[321,4,1,""],errors:[321,4,1,""],key:[321,4,1,""],response:[321,4,1,""],reverseErrors:[321,4,1,""]},"evennia.server.portal.amp.MsgStatus":{allErrors:[321,4,1,""],arguments:[321,4,1,""],commandName:[321,4,1,""],errors:[321,4,1,""],key:[321,4,1,""],response:[321,4,1,""],reverseErrors:[321,4,1,""]},"evennia.server.portal.amp_server":{AMPServerFactory:[322,1,1,""],AMPServerProtocol:[322,1,1,""],getenv:[322,5,1,""]},"evennia.server.portal.amp_server.AMPServerFactory":{__init__:[322,3,1,""],buildProtocol:[322,3,1,""],logPrefix:[322,3,1,""],noisy:[322,4,1,""]},"evennia.server.portal.amp_server.AMPServerProtocol":{connectionLost:[322,3,1,""],data_to_server:[322,3,1,""],get_status:[322,3,1,""],portal_receive_adminserver2portal:[322,3,1,""],portal_receive_launcher2portal:[322,3,1,""],portal_receive_server2portal:[322,3,1,""],portal_receive_status:[322,3,1,""],send_AdminPortal2Server:[322,3,1,""],send_MsgPortal2Server:[322,3,1,""],send_Status2Launcher:[322,3,1,""],start_server:[322,3,1,""],stop_server:[322,3,1,""],wait_for_disconnect:[322,3,1,""],wait_for_server_connect:[322,3,1,""]},"evennia.server.portal.grapevine":{GrapevineClient:[323,1,1,""],RestartingWebsocketServerFactory:[323,1,1,""]},"evennia.server.portal.grapevine.GrapevineClient":{__init__:[323,3,1,""],at_login:[323,3,1,""],data_in:[323,3,1,""],disconnect:[323,3,1,""],onClose:[323,3,1,""],onMessage:[323,3,1,""],onOpen:[323,3,1,""],send_authenticate:[323,3,1,""],send_channel:[323,3,1,""],send_default:[323,3,1,""],send_heartbeat:[323,3,1,""],send_subscribe:[323,3,1,""],send_unsubscribe:[323,3,1,""]},"evennia.server.portal.grapevine.RestartingWebsocketServerFactory":{__init__:[323,3,1,""],buildProtocol:[323,3,1,""],clientConnectionFailed:[323,3,1,""],clientConnectionLost:[323,3,1,""],factor:[323,4,1,""],initialDelay:[323,4,1,""],maxDelay:[323,4,1,""],reconnect:[323,3,1,""],start:[323,3,1,""],startedConnecting:[323,3,1,""]},"evennia.server.portal.irc":{IRCBot:[324,1,1,""],IRCBotFactory:[324,1,1,""],parse_ansi_to_irc:[324,5,1,""],parse_irc_to_ansi:[324,5,1,""]},"evennia.server.portal.irc.IRCBot":{action:[324,3,1,""],at_login:[324,3,1,""],channel:[324,4,1,""],data_in:[324,3,1,""],disconnect:[324,3,1,""],factory:[324,4,1,""],get_nicklist:[324,3,1,""],irc_RPL_ENDOFNAMES:[324,3,1,""],irc_RPL_NAMREPLY:[324,3,1,""],lineRate:[324,4,1,""],logger:[324,4,1,""],nickname:[324,4,1,""],pong:[324,3,1,""],privmsg:[324,3,1,""],send_channel:[324,3,1,""],send_default:[324,3,1,""],send_ping:[324,3,1,""],send_privmsg:[324,3,1,""],send_reconnect:[324,3,1,""],send_request_nicklist:[324,3,1,""],signedOn:[324,3,1,""],sourceURL:[324,4,1,""]},"evennia.server.portal.irc.IRCBotFactory":{__init__:[324,3,1,""],buildProtocol:[324,3,1,""],clientConnectionFailed:[324,3,1,""],clientConnectionLost:[324,3,1,""],factor:[324,4,1,""],initialDelay:[324,4,1,""],maxDelay:[324,4,1,""],reconnect:[324,3,1,""],start:[324,3,1,""],startedConnecting:[324,3,1,""]},"evennia.server.portal.mccp":{Mccp:[325,1,1,""],mccp_compress:[325,5,1,""]},"evennia.server.portal.mccp.Mccp":{__init__:[325,3,1,""],do_mccp:[325,3,1,""],no_mccp:[325,3,1,""]},"evennia.server.portal.mssp":{Mssp:[326,1,1,""]},"evennia.server.portal.mssp.Mssp":{__init__:[326,3,1,""],do_mssp:[326,3,1,""],get_player_count:[326,3,1,""],get_uptime:[326,3,1,""],no_mssp:[326,3,1,""]},"evennia.server.portal.mxp":{Mxp:[327,1,1,""],mxp_parse:[327,5,1,""]},"evennia.server.portal.mxp.Mxp":{__init__:[327,3,1,""],do_mxp:[327,3,1,""],no_mxp:[327,3,1,""]},"evennia.server.portal.naws":{Naws:[328,1,1,""]},"evennia.server.portal.naws.Naws":{__init__:[328,3,1,""],do_naws:[328,3,1,""],negotiate_sizes:[328,3,1,""],no_naws:[328,3,1,""]},"evennia.server.portal.portal":{Portal:[329,1,1,""],Websocket:[329,1,1,""]},"evennia.server.portal.portal.Portal":{__init__:[329,3,1,""],get_info_dict:[329,3,1,""],shutdown:[329,3,1,""]},"evennia.server.portal.portalsessionhandler":{PortalSessionHandler:[330,1,1,""]},"evennia.server.portal.portalsessionhandler.PortalSessionHandler":{__init__:[330,3,1,""],announce_all:[330,3,1,""],at_server_connection:[330,3,1,""],connect:[330,3,1,""],count_loggedin:[330,3,1,""],data_in:[330,3,1,""],data_out:[330,3,1,""],disconnect:[330,3,1,""],disconnect_all:[330,3,1,""],generate_sessid:[330,3,1,""],server_connect:[330,3,1,""],server_disconnect:[330,3,1,""],server_disconnect_all:[330,3,1,""],server_logged_in:[330,3,1,""],server_session_sync:[330,3,1,""],sessions_from_csessid:[330,3,1,""],sync:[330,3,1,""]},"evennia.server.portal.rss":{RSSBotFactory:[331,1,1,""],RSSReader:[331,1,1,""]},"evennia.server.portal.rss.RSSBotFactory":{__init__:[331,3,1,""],start:[331,3,1,""]},"evennia.server.portal.rss.RSSReader":{__init__:[331,3,1,""],data_in:[331,3,1,""],disconnect:[331,3,1,""],get_new:[331,3,1,""],update:[331,3,1,""]},"evennia.server.portal.ssh":{AccountDBPasswordChecker:[332,1,1,""],ExtraInfoAuthServer:[332,1,1,""],PassAvatarIdTerminalRealm:[332,1,1,""],SSHServerFactory:[332,1,1,""],SshProtocol:[332,1,1,""],TerminalSessionTransport_getPeer:[332,1,1,""],getKeyPair:[332,5,1,""],makeFactory:[332,5,1,""]},"evennia.server.portal.ssh.AccountDBPasswordChecker":{__init__:[332,3,1,""],credentialInterfaces:[332,4,1,""],noisy:[332,4,1,""],requestAvatarId:[332,3,1,""]},"evennia.server.portal.ssh.ExtraInfoAuthServer":{auth_password:[332,3,1,""],noisy:[332,4,1,""]},"evennia.server.portal.ssh.PassAvatarIdTerminalRealm":{noisy:[332,4,1,""]},"evennia.server.portal.ssh.SSHServerFactory":{logPrefix:[332,3,1,""],noisy:[332,4,1,""]},"evennia.server.portal.ssh.SshProtocol":{__init__:[332,3,1,""],at_login:[332,3,1,""],connectionLost:[332,3,1,""],connectionMade:[332,3,1,""],data_out:[332,3,1,""],disconnect:[332,3,1,""],getClientAddress:[332,3,1,""],handle_EOF:[332,3,1,""],handle_FF:[332,3,1,""],handle_INT:[332,3,1,""],handle_QUIT:[332,3,1,""],lineReceived:[332,3,1,""],noisy:[332,4,1,""],sendLine:[332,3,1,""],send_default:[332,3,1,""],send_prompt:[332,3,1,""],send_text:[332,3,1,""],terminalSize:[332,3,1,""]},"evennia.server.portal.ssh.TerminalSessionTransport_getPeer":{__init__:[332,3,1,""],noisy:[332,4,1,""]},"evennia.server.portal.ssl":{SSLProtocol:[333,1,1,""],getSSLContext:[333,5,1,""],verify_SSL_key_and_cert:[333,5,1,""]},"evennia.server.portal.ssl.SSLProtocol":{__init__:[333,3,1,""]},"evennia.server.portal.suppress_ga":{SuppressGA:[334,1,1,""]},"evennia.server.portal.suppress_ga.SuppressGA":{__init__:[334,3,1,""],will_suppress_ga:[334,3,1,""],wont_suppress_ga:[334,3,1,""]},"evennia.server.portal.telnet":{TelnetProtocol:[335,1,1,""],TelnetServerFactory:[335,1,1,""]},"evennia.server.portal.telnet.TelnetProtocol":{__init__:[335,3,1,""],applicationDataReceived:[335,3,1,""],at_login:[335,3,1,""],connectionLost:[335,3,1,""],connectionMade:[335,3,1,""],dataReceived:[335,3,1,""],data_in:[335,3,1,""],data_out:[335,3,1,""],disableLocal:[335,3,1,""],disableRemote:[335,3,1,""],disconnect:[335,3,1,""],enableLocal:[335,3,1,""],enableRemote:[335,3,1,""],handshake_done:[335,3,1,""],sendLine:[335,3,1,""],send_default:[335,3,1,""],send_prompt:[335,3,1,""],send_text:[335,3,1,""],toggle_nop_keepalive:[335,3,1,""]},"evennia.server.portal.telnet.TelnetServerFactory":{logPrefix:[335,3,1,""],noisy:[335,4,1,""]},"evennia.server.portal.telnet_oob":{TelnetOOB:[336,1,1,""]},"evennia.server.portal.telnet_oob.TelnetOOB":{__init__:[336,3,1,""],data_out:[336,3,1,""],decode_gmcp:[336,3,1,""],decode_msdp:[336,3,1,""],do_gmcp:[336,3,1,""],do_msdp:[336,3,1,""],encode_gmcp:[336,3,1,""],encode_msdp:[336,3,1,""],no_gmcp:[336,3,1,""],no_msdp:[336,3,1,""]},"evennia.server.portal.telnet_ssl":{SSLProtocol:[337,1,1,""],getSSLContext:[337,5,1,""],verify_or_create_SSL_key_and_cert:[337,5,1,""]},"evennia.server.portal.telnet_ssl.SSLProtocol":{__init__:[337,3,1,""]},"evennia.server.portal.tests":{TestAMPServer:[338,1,1,""],TestIRC:[338,1,1,""],TestTelnet:[338,1,1,""],TestWebSocket:[338,1,1,""]},"evennia.server.portal.tests.TestAMPServer":{setUp:[338,3,1,""],test_amp_in:[338,3,1,""],test_amp_out:[338,3,1,""],test_large_msg:[338,3,1,""]},"evennia.server.portal.tests.TestIRC":{test_bold:[338,3,1,""],test_colors:[338,3,1,""],test_identity:[338,3,1,""],test_italic:[338,3,1,""],test_plain_ansi:[338,3,1,""]},"evennia.server.portal.tests.TestTelnet":{setUp:[338,3,1,""],test_mudlet_ttype:[338,3,1,""]},"evennia.server.portal.tests.TestWebSocket":{setUp:[338,3,1,""],tearDown:[338,3,1,""],test_data_in:[338,3,1,""],test_data_out:[338,3,1,""]},"evennia.server.portal.ttype":{Ttype:[339,1,1,""]},"evennia.server.portal.ttype.Ttype":{__init__:[339,3,1,""],will_ttype:[339,3,1,""],wont_ttype:[339,3,1,""]},"evennia.server.portal.webclient":{WebSocketClient:[340,1,1,""]},"evennia.server.portal.webclient.WebSocketClient":{__init__:[340,3,1,""],at_login:[340,3,1,""],data_in:[340,3,1,""],disconnect:[340,3,1,""],get_client_session:[340,3,1,""],nonce:[340,4,1,""],onClose:[340,3,1,""],onMessage:[340,3,1,""],onOpen:[340,3,1,""],sendLine:[340,3,1,""],send_default:[340,3,1,""],send_prompt:[340,3,1,""],send_text:[340,3,1,""]},"evennia.server.portal.webclient_ajax":{AjaxWebClient:[341,1,1,""],AjaxWebClientSession:[341,1,1,""],LazyEncoder:[341,1,1,""],jsonify:[341,5,1,""]},"evennia.server.portal.webclient_ajax.AjaxWebClient":{__init__:[341,3,1,""],allowedMethods:[341,4,1,""],at_login:[341,3,1,""],client_disconnect:[341,3,1,""],get_client_sessid:[341,3,1,""],isLeaf:[341,4,1,""],lineSend:[341,3,1,""],mode_close:[341,3,1,""],mode_init:[341,3,1,""],mode_input:[341,3,1,""],mode_keepalive:[341,3,1,""],mode_receive:[341,3,1,""],render_POST:[341,3,1,""]},"evennia.server.portal.webclient_ajax.AjaxWebClientSession":{__init__:[341,3,1,""],at_login:[341,3,1,""],data_in:[341,3,1,""],data_out:[341,3,1,""],disconnect:[341,3,1,""],get_client_session:[341,3,1,""],send_default:[341,3,1,""],send_prompt:[341,3,1,""],send_text:[341,3,1,""]},"evennia.server.portal.webclient_ajax.LazyEncoder":{"default":[341,3,1,""]},"evennia.server.profiling":{dummyrunner:[343,0,0,"-"],dummyrunner_settings:[344,0,0,"-"],memplot:[345,0,0,"-"],settings_mixin:[346,0,0,"-"],test_queries:[347,0,0,"-"],tests:[348,0,0,"-"],timetrace:[349,0,0,"-"]},"evennia.server.profiling.dummyrunner":{CmdDummyRunnerEchoResponse:[343,1,1,""],DummyClient:[343,1,1,""],DummyFactory:[343,1,1,""],DummyRunnerCmdSet:[343,1,1,""],gidcounter:[343,5,1,""],idcounter:[343,5,1,""],makeiter:[343,5,1,""],start_all_dummy_clients:[343,5,1,""]},"evennia.server.profiling.dummyrunner.CmdDummyRunnerEchoResponse":{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.server.profiling.dummyrunner.DummyClient":{connectionLost:[343,3,1,""],connectionMade:[343,3,1,""],counter:[343,3,1,""],dataReceived:[343,3,1,""],error:[343,3,1,""],logout:[343,3,1,""],report:[343,3,1,""],step:[343,3,1,""]},"evennia.server.profiling.dummyrunner.DummyFactory":{__init__:[343,3,1,""],initialDelay:[343,4,1,""],maxDelay:[343,4,1,""],noisy:[343,4,1,""],protocol:[343,4,1,""]},"evennia.server.profiling.dummyrunner.DummyRunnerCmdSet":{at_cmdset_creation:[343,3,1,""],path:[343,4,1,""]},"evennia.server.profiling.dummyrunner_settings":{c_creates_button:[344,5,1,""],c_creates_obj:[344,5,1,""],c_digs:[344,5,1,""],c_examines:[344,5,1,""],c_help:[344,5,1,""],c_idles:[344,5,1,""],c_login:[344,5,1,""],c_login_nodig:[344,5,1,""],c_logout:[344,5,1,""],c_looks:[344,5,1,""],c_measure_lag:[344,5,1,""],c_moves:[344,5,1,""],c_moves_n:[344,5,1,""],c_moves_s:[344,5,1,""],c_socialize:[344,5,1,""]},"evennia.server.profiling.memplot":{Memplot:[345,1,1,""]},"evennia.server.profiling.memplot.Memplot":{DoesNotExist:[345,2,1,""],MultipleObjectsReturned:[345,2,1,""],at_repeat:[345,3,1,""],at_script_creation:[345,3,1,""],path:[345,4,1,""],typename:[345,4,1,""]},"evennia.server.profiling.test_queries":{count_queries:[347,5,1,""]},"evennia.server.profiling.tests":{TestDummyrunnerSettings:[348,1,1,""],TestMemPlot:[348,1,1,""]},"evennia.server.profiling.tests.TestDummyrunnerSettings":{clear_client_lists:[348,3,1,""],perception_method_tests:[348,3,1,""],setUp:[348,3,1,""],test_c_creates_button:[348,3,1,""],test_c_creates_obj:[348,3,1,""],test_c_digs:[348,3,1,""],test_c_examines:[348,3,1,""],test_c_help:[348,3,1,""],test_c_login:[348,3,1,""],test_c_login_no_dig:[348,3,1,""],test_c_logout:[348,3,1,""],test_c_looks:[348,3,1,""],test_c_move_n:[348,3,1,""],test_c_move_s:[348,3,1,""],test_c_moves:[348,3,1,""],test_c_socialize:[348,3,1,""],test_idles:[348,3,1,""]},"evennia.server.profiling.tests.TestMemPlot":{test_memplot:[348,3,1,""]},"evennia.server.profiling.timetrace":{timetrace:[349,5,1,""]},"evennia.server.server":{Evennia:[350,1,1,""]},"evennia.server.server.Evennia":{__init__:[350,3,1,""],at_post_portal_sync:[350,3,1,""],at_server_cold_start:[350,3,1,""],at_server_cold_stop:[350,3,1,""],at_server_reload_start:[350,3,1,""],at_server_reload_stop:[350,3,1,""],at_server_start:[350,3,1,""],at_server_stop:[350,3,1,""],get_info_dict:[350,3,1,""],run_init_hooks:[350,3,1,""],run_initial_setup:[350,3,1,""],shutdown:[350,3,1,""],sqlite3_prep:[350,3,1,""],update_defaults:[350,3,1,""]},"evennia.server.serversession":{ServerSession:[351,1,1,""]},"evennia.server.serversession.ServerSession":{__init__:[351,3,1,""],access:[351,3,1,""],at_cmdset_get:[351,3,1,""],at_disconnect:[351,3,1,""],at_login:[351,3,1,""],at_sync:[351,3,1,""],attributes:[351,4,1,""],cmdset_storage:[351,3,1,""],data_in:[351,3,1,""],data_out:[351,3,1,""],db:[351,3,1,""],execute_cmd:[351,3,1,""],get_account:[351,3,1,""],get_character:[351,3,1,""],get_client_size:[351,3,1,""],get_puppet:[351,3,1,""],get_puppet_or_account:[351,3,1,""],id:[351,3,1,""],log:[351,3,1,""],msg:[351,3,1,""],nattributes:[351,4,1,""],ndb:[351,3,1,""],ndb_del:[351,3,1,""],ndb_get:[351,3,1,""],ndb_set:[351,3,1,""],update_flags:[351,3,1,""],update_session_counters:[351,3,1,""]},"evennia.server.session":{Session:[352,1,1,""]},"evennia.server.session.Session":{at_sync:[352,3,1,""],data_in:[352,3,1,""],data_out:[352,3,1,""],disconnect:[352,3,1,""],get_sync_data:[352,3,1,""],init_session:[352,3,1,""],load_sync_data:[352,3,1,""]},"evennia.server.sessionhandler":{DummySession:[353,1,1,""],ServerSessionHandler:[353,1,1,""],SessionHandler:[353,1,1,""],delayed_import:[353,5,1,""]},"evennia.server.sessionhandler.DummySession":{sessid:[353,4,1,""]},"evennia.server.sessionhandler.ServerSessionHandler":{__init__:[353,3,1,""],account_count:[353,3,1,""],all_connected_accounts:[353,3,1,""],all_sessions_portal_sync:[353,3,1,""],announce_all:[353,3,1,""],call_inputfuncs:[353,3,1,""],data_in:[353,3,1,""],data_out:[353,3,1,""],disconnect:[353,3,1,""],disconnect_all_sessions:[353,3,1,""],disconnect_duplicate_sessions:[353,3,1,""],get_inputfuncs:[353,3,1,""],login:[353,3,1,""],portal_connect:[353,3,1,""],portal_disconnect:[353,3,1,""],portal_disconnect_all:[353,3,1,""],portal_reset_server:[353,3,1,""],portal_restart_server:[353,3,1,""],portal_session_sync:[353,3,1,""],portal_sessions_sync:[353,3,1,""],portal_shutdown:[353,3,1,""],session_from_account:[353,3,1,""],session_from_sessid:[353,3,1,""],session_portal_partial_sync:[353,3,1,""],session_portal_sync:[353,3,1,""],sessions_from_account:[353,3,1,""],sessions_from_character:[353,3,1,""],sessions_from_csessid:[353,3,1,""],sessions_from_puppet:[353,3,1,""],start_bot_session:[353,3,1,""],validate_sessions:[353,3,1,""]},"evennia.server.sessionhandler.SessionHandler":{clean_senddata:[353,3,1,""],get:[353,3,1,""],get_all_sync_data:[353,3,1,""],get_sessions:[353,3,1,""]},"evennia.server.throttle":{Throttle:[355,1,1,""]},"evennia.server.throttle.Throttle":{__init__:[355,3,1,""],check:[355,3,1,""],error_msg:[355,4,1,""],get:[355,3,1,""],get_cache_key:[355,3,1,""],record_ip:[355,3,1,""],remove:[355,3,1,""],touch:[355,3,1,""],unrecord_ip:[355,3,1,""],update:[355,3,1,""]},"evennia.server.validators":{EvenniaPasswordValidator:[356,1,1,""],EvenniaUsernameAvailabilityValidator:[356,1,1,""]},"evennia.server.validators.EvenniaPasswordValidator":{__init__:[356,3,1,""],get_help_text:[356,3,1,""],validate:[356,3,1,""]},"evennia.server.webserver":{DjangoWebRoot:[357,1,1,""],EvenniaReverseProxyResource:[357,1,1,""],HTTPChannelWithXForwardedFor:[357,1,1,""],LockableThreadPool:[357,1,1,""],PrivateStaticRoot:[357,1,1,""],WSGIWebServer:[357,1,1,""],Website:[357,1,1,""]},"evennia.server.webserver.DjangoWebRoot":{__init__:[357,3,1,""],empty_threadpool:[357,3,1,""],getChild:[357,3,1,""]},"evennia.server.webserver.EvenniaReverseProxyResource":{getChild:[357,3,1,""],render:[357,3,1,""]},"evennia.server.webserver.HTTPChannelWithXForwardedFor":{allHeadersReceived:[357,3,1,""]},"evennia.server.webserver.LockableThreadPool":{__init__:[357,3,1,""],callInThread:[357,3,1,""],lock:[357,3,1,""]},"evennia.server.webserver.PrivateStaticRoot":{directoryListing:[357,3,1,""]},"evennia.server.webserver.WSGIWebServer":{__init__:[357,3,1,""],startService:[357,3,1,""],stopService:[357,3,1,""]},"evennia.server.webserver.Website":{log:[357,3,1,""],logPrefix:[357,3,1,""],noisy:[357,4,1,""]},"evennia.typeclasses":{attributes:[360,0,0,"-"],managers:[361,0,0,"-"],models:[362,0,0,"-"],tags:[363,0,0,"-"]},"evennia.typeclasses.attributes":{Attribute:[360,1,1,""],AttributeHandler:[360,1,1,""],DbHolder:[360,1,1,""],IAttribute:[360,1,1,""],IAttributeBackend:[360,1,1,""],InMemoryAttribute:[360,1,1,""],InMemoryAttributeBackend:[360,1,1,""],ModelAttributeBackend:[360,1,1,""],NickHandler:[360,1,1,""],NickTemplateInvalid:[360,2,1,""],initialize_nick_templates:[360,5,1,""],parse_nick_template:[360,5,1,""]},"evennia.typeclasses.attributes.Attribute":{DoesNotExist:[360,2,1,""],MultipleObjectsReturned:[360,2,1,""],accountdb_set:[360,4,1,""],attrtype:[360,3,1,""],category:[360,3,1,""],channeldb_set:[360,4,1,""],date_created:[360,3,1,""],db_attrtype:[360,4,1,""],db_category:[360,4,1,""],db_date_created:[360,4,1,""],db_key:[360,4,1,""],db_lock_storage:[360,4,1,""],db_model:[360,4,1,""],db_strvalue:[360,4,1,""],db_value:[360,4,1,""],get_next_by_db_date_created:[360,3,1,""],get_previous_by_db_date_created:[360,3,1,""],id:[360,4,1,""],key:[360,3,1,""],lock_storage:[360,3,1,""],model:[360,3,1,""],objectdb_set:[360,4,1,""],path:[360,4,1,""],scriptdb_set:[360,4,1,""],strvalue:[360,3,1,""],typename:[360,4,1,""],value:[360,3,1,""]},"evennia.typeclasses.attributes.AttributeHandler":{__init__:[360,3,1,""],add:[360,3,1,""],all:[360,3,1,""],batch_add:[360,3,1,""],clear:[360,3,1,""],get:[360,3,1,""],has:[360,3,1,""],remove:[360,3,1,""],reset_cache:[360,3,1,""]},"evennia.typeclasses.attributes.DbHolder":{__init__:[360,3,1,""],all:[360,3,1,""],get_all:[360,3,1,""]},"evennia.typeclasses.attributes.IAttribute":{access:[360,3,1,""],attrtype:[360,3,1,""],category:[360,3,1,""],date_created:[360,3,1,""],key:[360,3,1,""],lock_storage:[360,3,1,""],locks:[360,4,1,""],model:[360,3,1,""],strvalue:[360,3,1,""]},"evennia.typeclasses.attributes.IAttributeBackend":{__init__:[360,3,1,""],batch_add:[360,3,1,""],clear_attributes:[360,3,1,""],create_attribute:[360,3,1,""],delete_attribute:[360,3,1,""],do_batch_delete:[360,3,1,""],do_batch_finish:[360,3,1,""],do_batch_update_attribute:[360,3,1,""],do_create_attribute:[360,3,1,""],do_delete_attribute:[360,3,1,""],do_update_attribute:[360,3,1,""],get:[360,3,1,""],get_all_attributes:[360,3,1,""],query_all:[360,3,1,""],query_category:[360,3,1,""],query_key:[360,3,1,""],reset_cache:[360,3,1,""],update_attribute:[360,3,1,""]},"evennia.typeclasses.attributes.InMemoryAttribute":{__init__:[360,3,1,""],value:[360,3,1,""]},"evennia.typeclasses.attributes.InMemoryAttributeBackend":{__init__:[360,3,1,""],do_batch_finish:[360,3,1,""],do_batch_update_attribute:[360,3,1,""],do_create_attribute:[360,3,1,""],do_delete_attribute:[360,3,1,""],do_update_attribute:[360,3,1,""],query_all:[360,3,1,""],query_category:[360,3,1,""],query_key:[360,3,1,""]},"evennia.typeclasses.attributes.ModelAttributeBackend":{__init__:[360,3,1,""],do_batch_finish:[360,3,1,""],do_batch_update_attribute:[360,3,1,""],do_create_attribute:[360,3,1,""],do_delete_attribute:[360,3,1,""],do_update_attribute:[360,3,1,""],query_all:[360,3,1,""],query_category:[360,3,1,""],query_key:[360,3,1,""]},"evennia.typeclasses.attributes.NickHandler":{__init__:[360,3,1,""],add:[360,3,1,""],get:[360,3,1,""],has:[360,3,1,""],nickreplace:[360,3,1,""],remove:[360,3,1,""]},"evennia.typeclasses.managers":{TypedObjectManager:[361,1,1,""]},"evennia.typeclasses.managers.TypedObjectManager":{create_tag:[361,3,1,""],dbref:[361,3,1,""],dbref_search:[361,3,1,""],get_alias:[361,3,1,""],get_attribute:[361,3,1,""],get_by_alias:[361,3,1,""],get_by_attribute:[361,3,1,""],get_by_nick:[361,3,1,""],get_by_permission:[361,3,1,""],get_by_tag:[361,3,1,""],get_dbref_range:[361,3,1,""],get_id:[361,3,1,""],get_nick:[361,3,1,""],get_permission:[361,3,1,""],get_tag:[361,3,1,""],get_typeclass_totals:[361,3,1,""],object_totals:[361,3,1,""],typeclass_search:[361,3,1,""]},"evennia.typeclasses.models":{TypedObject:[362,1,1,""]},"evennia.typeclasses.models.TypedObject":{"delete":[362,3,1,""],Meta:[362,1,1,""],__init__:[362,3,1,""],access:[362,3,1,""],aliases:[362,4,1,""],at_idmapper_flush:[362,3,1,""],at_rename:[362,3,1,""],attributes:[362,4,1,""],check_permstring:[362,3,1,""],date_created:[362,3,1,""],db:[362,3,1,""],db_attributes:[362,4,1,""],db_date_created:[362,4,1,""],db_key:[362,4,1,""],db_lock_storage:[362,4,1,""],db_tags:[362,4,1,""],db_typeclass_path:[362,4,1,""],dbid:[362,3,1,""],dbref:[362,3,1,""],get_absolute_url:[362,3,1,""],get_display_name:[362,3,1,""],get_extra_info:[362,3,1,""],get_next_by_db_date_created:[362,3,1,""],get_previous_by_db_date_created:[362,3,1,""],is_typeclass:[362,3,1,""],key:[362,3,1,""],lock_storage:[362,3,1,""],locks:[362,4,1,""],name:[362,3,1,""],nattributes:[362,4,1,""],ndb:[362,3,1,""],objects:[362,4,1,""],path:[362,4,1,""],permissions:[362,4,1,""],set_class_from_typeclass:[362,3,1,""],swap_typeclass:[362,3,1,""],tags:[362,4,1,""],typeclass_path:[362,3,1,""],typename:[362,4,1,""],web_get_admin_url:[362,3,1,""],web_get_create_url:[362,3,1,""],web_get_delete_url:[362,3,1,""],web_get_detail_url:[362,3,1,""],web_get_puppet_url:[362,3,1,""],web_get_update_url:[362,3,1,""]},"evennia.typeclasses.models.TypedObject.Meta":{"abstract":[362,4,1,""],ordering:[362,4,1,""],verbose_name:[362,4,1,""]},"evennia.typeclasses.tags":{AliasHandler:[363,1,1,""],PermissionHandler:[363,1,1,""],Tag:[363,1,1,""],TagHandler:[363,1,1,""]},"evennia.typeclasses.tags.Tag":{DoesNotExist:[363,2,1,""],MultipleObjectsReturned:[363,2,1,""],accountdb_set:[363,4,1,""],channeldb_set:[363,4,1,""],db_category:[363,4,1,""],db_data:[363,4,1,""],db_key:[363,4,1,""],db_model:[363,4,1,""],db_tagtype:[363,4,1,""],helpentry_set:[363,4,1,""],id:[363,4,1,""],msg_set:[363,4,1,""],objectdb_set:[363,4,1,""],objects:[363,4,1,""],scriptdb_set:[363,4,1,""]},"evennia.typeclasses.tags.TagHandler":{__init__:[363,3,1,""],add:[363,3,1,""],all:[363,3,1,""],batch_add:[363,3,1,""],clear:[363,3,1,""],get:[363,3,1,""],has:[363,3,1,""],remove:[363,3,1,""],reset_cache:[363,3,1,""]},"evennia.utils":{ansi:[365,0,0,"-"],batchprocessors:[366,0,0,"-"],containers:[367,0,0,"-"],create:[368,0,0,"-"],dbserialize:[369,0,0,"-"],eveditor:[370,0,0,"-"],evform:[371,0,0,"-"],evmenu:[372,0,0,"-"],evmore:[373,0,0,"-"],evtable:[374,0,0,"-"],funcparser:[375,0,0,"-"],gametime:[376,0,0,"-"],idmapper:[377,0,0,"-"],logger:[381,0,0,"-"],optionclasses:[382,0,0,"-"],optionhandler:[383,0,0,"-"],picklefield:[384,0,0,"-"],search:[385,0,0,"-"],test_resources:[386,0,0,"-"],text2html:[387,0,0,"-"],utils:[388,0,0,"-"],validatorfuncs:[389,0,0,"-"],verb_conjugation:[390,0,0,"-"]},"evennia.utils.ansi":{ANSIMeta:[365,1,1,""],ANSIParser:[365,1,1,""],ANSIString:[365,1,1,""],parse_ansi:[365,5,1,""],raw:[365,5,1,""],strip_ansi:[365,5,1,""],strip_raw_ansi:[365,5,1,""]},"evennia.utils.ansi.ANSIMeta":{__init__:[365,3,1,""]},"evennia.utils.ansi.ANSIParser":{ansi_escapes:[365,4,1,""],ansi_map:[365,4,1,""],ansi_map_dict:[365,4,1,""],ansi_re:[365,4,1,""],ansi_regex:[365,4,1,""],ansi_sub:[365,4,1,""],ansi_xterm256_bright_bg_map:[365,4,1,""],ansi_xterm256_bright_bg_map_dict:[365,4,1,""],brightbg_sub:[365,4,1,""],mxp_re:[365,4,1,""],mxp_sub:[365,4,1,""],mxp_url_re:[365,4,1,""],mxp_url_sub:[365,4,1,""],parse_ansi:[365,3,1,""],strip_mxp:[365,3,1,""],strip_raw_codes:[365,3,1,""],sub_ansi:[365,3,1,""],sub_brightbg:[365,3,1,""],sub_xterm256:[365,3,1,""],xterm256_bg:[365,4,1,""],xterm256_bg_sub:[365,4,1,""],xterm256_fg:[365,4,1,""],xterm256_fg_sub:[365,4,1,""],xterm256_gbg:[365,4,1,""],xterm256_gbg_sub:[365,4,1,""],xterm256_gfg:[365,4,1,""],xterm256_gfg_sub:[365,4,1,""]},"evennia.utils.ansi.ANSIString":{__init__:[365,3,1,""],capitalize:[365,3,1,""],center:[365,3,1,""],clean:[365,3,1,""],count:[365,3,1,""],decode:[365,3,1,""],encode:[365,3,1,""],endswith:[365,3,1,""],expandtabs:[365,3,1,""],find:[365,3,1,""],format:[365,3,1,""],index:[365,3,1,""],isalnum:[365,3,1,""],isalpha:[365,3,1,""],isdigit:[365,3,1,""],islower:[365,3,1,""],isspace:[365,3,1,""],istitle:[365,3,1,""],isupper:[365,3,1,""],join:[365,3,1,""],ljust:[365,3,1,""],lower:[365,3,1,""],lstrip:[365,3,1,""],partition:[365,3,1,""],raw:[365,3,1,""],re_format:[365,4,1,""],replace:[365,3,1,""],rfind:[365,3,1,""],rindex:[365,3,1,""],rjust:[365,3,1,""],rsplit:[365,3,1,""],rstrip:[365,3,1,""],split:[365,3,1,""],startswith:[365,3,1,""],strip:[365,3,1,""],swapcase:[365,3,1,""],translate:[365,3,1,""],upper:[365,3,1,""]},"evennia.utils.batchprocessors":{BatchCodeProcessor:[366,1,1,""],BatchCommandProcessor:[366,1,1,""],read_batchfile:[366,5,1,""],tb_filename:[366,5,1,""],tb_iter:[366,5,1,""]},"evennia.utils.batchprocessors.BatchCodeProcessor":{code_exec:[366,3,1,""],parse_file:[366,3,1,""]},"evennia.utils.batchprocessors.BatchCommandProcessor":{parse_file:[366,3,1,""]},"evennia.utils.containers":{Container:[367,1,1,""],GlobalScriptContainer:[367,1,1,""],OptionContainer:[367,1,1,""]},"evennia.utils.containers.Container":{__init__:[367,3,1,""],all:[367,3,1,""],get:[367,3,1,""],load_data:[367,3,1,""],storage_modules:[367,4,1,""]},"evennia.utils.containers.GlobalScriptContainer":{__init__:[367,3,1,""],all:[367,3,1,""],get:[367,3,1,""],load_data:[367,3,1,""],start:[367,3,1,""]},"evennia.utils.containers.OptionContainer":{storage_modules:[367,4,1,""]},"evennia.utils.create":{create_account:[368,5,1,""],create_channel:[368,5,1,""],create_help_entry:[368,5,1,""],create_message:[368,5,1,""],create_object:[368,5,1,""],create_script:[368,5,1,""]},"evennia.utils.dbserialize":{dbserialize:[369,5,1,""],dbunserialize:[369,5,1,""],do_pickle:[369,5,1,""],do_unpickle:[369,5,1,""],from_pickle:[369,5,1,""],to_pickle:[369,5,1,""]},"evennia.utils.eveditor":{CmdEditorBase:[370,1,1,""],CmdEditorGroup:[370,1,1,""],CmdLineInput:[370,1,1,""],CmdSaveYesNo:[370,1,1,""],EvEditor:[370,1,1,""],EvEditorCmdSet:[370,1,1,""],SaveYesNoCmdSet:[370,1,1,""]},"evennia.utils.eveditor.CmdEditorBase":{aliases:[370,4,1,""],editor:[370,4,1,""],help_category:[370,4,1,""],help_entry:[370,4,1,""],key:[370,4,1,""],lock_storage:[370,4,1,""],locks:[370,4,1,""],parse:[370,3,1,""],search_index_entry:[370,4,1,""]},"evennia.utils.eveditor.CmdEditorGroup":{aliases:[370,4,1,""],arg_regex:[370,4,1,""],func:[370,3,1,""],help_category:[370,4,1,""],key:[370,4,1,""],lock_storage:[370,4,1,""],search_index_entry:[370,4,1,""]},"evennia.utils.eveditor.CmdLineInput":{aliases:[370,4,1,""],func:[370,3,1,""],help_category:[370,4,1,""],key:[370,4,1,""],lock_storage:[370,4,1,""],search_index_entry:[370,4,1,""]},"evennia.utils.eveditor.CmdSaveYesNo":{aliases:[370,4,1,""],func:[370,3,1,""],help_category:[370,4,1,""],help_cateogory:[370,4,1,""],key:[370,4,1,""],lock_storage:[370,4,1,""],locks:[370,4,1,""],search_index_entry:[370,4,1,""]},"evennia.utils.eveditor.EvEditor":{__init__:[370,3,1,""],decrease_indent:[370,3,1,""],deduce_indent:[370,3,1,""],display_buffer:[370,3,1,""],display_help:[370,3,1,""],get_buffer:[370,3,1,""],increase_indent:[370,3,1,""],load_buffer:[370,3,1,""],quit:[370,3,1,""],save_buffer:[370,3,1,""],swap_autoindent:[370,3,1,""],update_buffer:[370,3,1,""],update_undo:[370,3,1,""]},"evennia.utils.eveditor.EvEditorCmdSet":{at_cmdset_creation:[370,3,1,""],key:[370,4,1,""],mergetype:[370,4,1,""],path:[370,4,1,""]},"evennia.utils.eveditor.SaveYesNoCmdSet":{at_cmdset_creation:[370,3,1,""],key:[370,4,1,""],mergetype:[370,4,1,""],path:[370,4,1,""],priority:[370,4,1,""]},"evennia.utils.evform":{EvForm:[371,1,1,""]},"evennia.utils.evform.EvForm":{__init__:[371,3,1,""],map:[371,3,1,""],reload:[371,3,1,""]},"evennia.utils.evmenu":{CmdEvMenuNode:[372,1,1,""],CmdGetInput:[372,1,1,""],CmdYesNoQuestion:[372,1,1,""],EvMenu:[372,1,1,""],EvMenuCmdSet:[372,1,1,""],EvMenuError:[372,2,1,""],EvMenuGotoAbortMessage:[372,2,1,""],InputCmdSet:[372,1,1,""],YesNoQuestionCmdSet:[372,1,1,""],ask_yes_no:[372,5,1,""],get_input:[372,5,1,""],list_node:[372,5,1,""],parse_menu_template:[372,5,1,""],template2menu:[372,5,1,""]},"evennia.utils.evmenu.CmdEvMenuNode":{aliases:[372,4,1,""],auto_help_display_key:[372,4,1,""],func:[372,3,1,""],get_help:[372,3,1,""],help_category:[372,4,1,""],key:[372,4,1,""],lock_storage:[372,4,1,""],locks:[372,4,1,""],search_index_entry:[372,4,1,""]},"evennia.utils.evmenu.CmdGetInput":{aliases:[372,4,1,""],func:[372,3,1,""],help_category:[372,4,1,""],key:[372,4,1,""],lock_storage:[372,4,1,""],search_index_entry:[372,4,1,""]},"evennia.utils.evmenu.CmdYesNoQuestion":{aliases:[372,4,1,""],arg_regex:[372,4,1,""],func:[372,3,1,""],help_category:[372,4,1,""],key:[372,4,1,""],lock_storage:[372,4,1,""],search_index_entry:[372,4,1,""]},"evennia.utils.evmenu.EvMenu":{"goto":[372,3,1,""],__init__:[372,3,1,""],close_menu:[372,3,1,""],display_helptext:[372,3,1,""],display_nodetext:[372,3,1,""],extract_goto_exec:[372,3,1,""],helptext_formatter:[372,3,1,""],msg:[372,3,1,""],node_border_char:[372,4,1,""],node_formatter:[372,3,1,""],nodetext_formatter:[372,3,1,""],options_formatter:[372,3,1,""],parse_input:[372,3,1,""],print_debug_info:[372,3,1,""],run_exec:[372,3,1,""],run_exec_then_goto:[372,3,1,""]},"evennia.utils.evmenu.EvMenuCmdSet":{at_cmdset_creation:[372,3,1,""],key:[372,4,1,""],mergetype:[372,4,1,""],no_channels:[372,4,1,""],no_exits:[372,4,1,""],no_objs:[372,4,1,""],path:[372,4,1,""],priority:[372,4,1,""]},"evennia.utils.evmenu.InputCmdSet":{at_cmdset_creation:[372,3,1,""],key:[372,4,1,""],mergetype:[372,4,1,""],no_channels:[372,4,1,""],no_exits:[372,4,1,""],no_objs:[372,4,1,""],path:[372,4,1,""],priority:[372,4,1,""]},"evennia.utils.evmenu.YesNoQuestionCmdSet":{at_cmdset_creation:[372,3,1,""],key:[372,4,1,""],mergetype:[372,4,1,""],no_channels:[372,4,1,""],no_exits:[372,4,1,""],no_objs:[372,4,1,""],path:[372,4,1,""],priority:[372,4,1,""]},"evennia.utils.evmore":{CmdMore:[373,1,1,""],CmdMoreLook:[373,1,1,""],CmdSetMore:[373,1,1,""],EvMore:[373,1,1,""],msg:[373,5,1,""],queryset_maxsize:[373,5,1,""]},"evennia.utils.evmore.CmdMore":{aliases:[373,4,1,""],auto_help:[373,4,1,""],func:[373,3,1,""],help_category:[373,4,1,""],key:[373,4,1,""],lock_storage:[373,4,1,""],search_index_entry:[373,4,1,""]},"evennia.utils.evmore.CmdMoreLook":{aliases:[373,4,1,""],auto_help:[373,4,1,""],func:[373,3,1,""],help_category:[373,4,1,""],key:[373,4,1,""],lock_storage:[373,4,1,""],search_index_entry:[373,4,1,""]},"evennia.utils.evmore.CmdSetMore":{at_cmdset_creation:[373,3,1,""],key:[373,4,1,""],path:[373,4,1,""],priority:[373,4,1,""]},"evennia.utils.evmore.EvMore":{__init__:[373,3,1,""],display:[373,3,1,""],init_django_paginator:[373,3,1,""],init_evtable:[373,3,1,""],init_f_str:[373,3,1,""],init_iterable:[373,3,1,""],init_pages:[373,3,1,""],init_queryset:[373,3,1,""],init_str:[373,3,1,""],page_back:[373,3,1,""],page_end:[373,3,1,""],page_formatter:[373,3,1,""],page_next:[373,3,1,""],page_quit:[373,3,1,""],page_top:[373,3,1,""],paginator:[373,3,1,""],paginator_django:[373,3,1,""],paginator_index:[373,3,1,""],paginator_slice:[373,3,1,""],start:[373,3,1,""]},"evennia.utils.evtable":{ANSITextWrapper:[374,1,1,""],EvCell:[374,1,1,""],EvColumn:[374,1,1,""],EvTable:[374,1,1,""],fill:[374,5,1,""],wrap:[374,5,1,""]},"evennia.utils.evtable.EvCell":{__init__:[374,3,1,""],get:[374,3,1,""],get_height:[374,3,1,""],get_min_height:[374,3,1,""],get_min_width:[374,3,1,""],get_width:[374,3,1,""],reformat:[374,3,1,""],replace_data:[374,3,1,""]},"evennia.utils.evtable.EvColumn":{__init__:[374,3,1,""],add_rows:[374,3,1,""],reformat:[374,3,1,""],reformat_cell:[374,3,1,""]},"evennia.utils.evtable.EvTable":{__init__:[374,3,1,""],add_column:[374,3,1,""],add_header:[374,3,1,""],add_row:[374,3,1,""],get:[374,3,1,""],reformat:[374,3,1,""],reformat_column:[374,3,1,""]},"evennia.utils.funcparser":{FuncParser:[375,1,1,""],ParsingError:[375,2,1,""],funcparser_callable_You:[375,5,1,""],funcparser_callable_add:[375,5,1,""],funcparser_callable_center_justify:[375,5,1,""],funcparser_callable_choice:[375,5,1,""],funcparser_callable_clr:[375,5,1,""],funcparser_callable_conjugate:[375,5,1,""],funcparser_callable_crop:[375,5,1,""],funcparser_callable_div:[375,5,1,""],funcparser_callable_eval:[375,5,1,""],funcparser_callable_justify:[375,5,1,""],funcparser_callable_left_justify:[375,5,1,""],funcparser_callable_mult:[375,5,1,""],funcparser_callable_pad:[375,5,1,""],funcparser_callable_randint:[375,5,1,""],funcparser_callable_random:[375,5,1,""],funcparser_callable_right_justify:[375,5,1,""],funcparser_callable_round:[375,5,1,""],funcparser_callable_search:[375,5,1,""],funcparser_callable_search_list:[375,5,1,""],funcparser_callable_space:[375,5,1,""],funcparser_callable_sub:[375,5,1,""],funcparser_callable_toint:[375,5,1,""],funcparser_callable_you:[375,5,1,""]},"evennia.utils.funcparser.FuncParser":{__init__:[375,3,1,""],execute:[375,3,1,""],parse:[375,3,1,""],parse_to_any:[375,3,1,""],validate_callables:[375,3,1,""]},"evennia.utils.gametime":{TimeScript:[376,1,1,""],game_epoch:[376,5,1,""],gametime:[376,5,1,""],portal_uptime:[376,5,1,""],real_seconds_until:[376,5,1,""],reset_gametime:[376,5,1,""],runtime:[376,5,1,""],schedule:[376,5,1,""],server_epoch:[376,5,1,""],uptime:[376,5,1,""]},"evennia.utils.gametime.TimeScript":{DoesNotExist:[376,2,1,""],MultipleObjectsReturned:[376,2,1,""],at_repeat:[376,3,1,""],at_script_creation:[376,3,1,""],path:[376,4,1,""],typename:[376,4,1,""]},"evennia.utils.idmapper":{manager:[378,0,0,"-"],models:[379,0,0,"-"],tests:[380,0,0,"-"]},"evennia.utils.idmapper.manager":{SharedMemoryManager:[378,1,1,""]},"evennia.utils.idmapper.manager.SharedMemoryManager":{get:[378,3,1,""]},"evennia.utils.idmapper.models":{SharedMemoryModel:[379,1,1,""],SharedMemoryModelBase:[379,1,1,""],WeakSharedMemoryModel:[379,1,1,""],WeakSharedMemoryModelBase:[379,1,1,""],cache_size:[379,5,1,""],conditional_flush:[379,5,1,""],flush_cache:[379,5,1,""],flush_cached_instance:[379,5,1,""],update_cached_instance:[379,5,1,""]},"evennia.utils.idmapper.models.SharedMemoryModel":{"delete":[379,3,1,""],Meta:[379,1,1,""],at_idmapper_flush:[379,3,1,""],cache_instance:[379,3,1,""],flush_cached_instance:[379,3,1,""],flush_from_cache:[379,3,1,""],flush_instance_cache:[379,3,1,""],get_all_cached_instances:[379,3,1,""],get_cached_instance:[379,3,1,""],objects:[379,4,1,""],path:[379,4,1,""],save:[379,3,1,""],typename:[379,4,1,""]},"evennia.utils.idmapper.models.SharedMemoryModel.Meta":{"abstract":[379,4,1,""]},"evennia.utils.idmapper.models.WeakSharedMemoryModel":{Meta:[379,1,1,""],path:[379,4,1,""],typename:[379,4,1,""]},"evennia.utils.idmapper.models.WeakSharedMemoryModel.Meta":{"abstract":[379,4,1,""]},"evennia.utils.idmapper.tests":{Article:[380,1,1,""],Category:[380,1,1,""],RegularArticle:[380,1,1,""],RegularCategory:[380,1,1,""],SharedMemorysTest:[380,1,1,""]},"evennia.utils.idmapper.tests.Article":{DoesNotExist:[380,2,1,""],MultipleObjectsReturned:[380,2,1,""],category2:[380,4,1,""],category2_id:[380,4,1,""],category:[380,4,1,""],category_id:[380,4,1,""],id:[380,4,1,""],name:[380,4,1,""],path:[380,4,1,""],typename:[380,4,1,""]},"evennia.utils.idmapper.tests.Category":{DoesNotExist:[380,2,1,""],MultipleObjectsReturned:[380,2,1,""],article_set:[380,4,1,""],id:[380,4,1,""],name:[380,4,1,""],path:[380,4,1,""],regulararticle_set:[380,4,1,""],typename:[380,4,1,""]},"evennia.utils.idmapper.tests.RegularArticle":{DoesNotExist:[380,2,1,""],MultipleObjectsReturned:[380,2,1,""],category2:[380,4,1,""],category2_id:[380,4,1,""],category:[380,4,1,""],category_id:[380,4,1,""],id:[380,4,1,""],name:[380,4,1,""],objects:[380,4,1,""]},"evennia.utils.idmapper.tests.RegularCategory":{DoesNotExist:[380,2,1,""],MultipleObjectsReturned:[380,2,1,""],article_set:[380,4,1,""],id:[380,4,1,""],name:[380,4,1,""],objects:[380,4,1,""],regulararticle_set:[380,4,1,""]},"evennia.utils.idmapper.tests.SharedMemorysTest":{setUp:[380,3,1,""],testMixedReferences:[380,3,1,""],testObjectDeletion:[380,3,1,""],testRegularReferences:[380,3,1,""],testSharedMemoryReferences:[380,3,1,""]},"evennia.utils.logger":{EvenniaLogFile:[381,1,1,""],PortalLogObserver:[381,1,1,""],ServerLogObserver:[381,1,1,""],WeeklyLogFile:[381,1,1,""],log_dep:[381,5,1,""],log_depmsg:[381,5,1,""],log_err:[381,5,1,""],log_errmsg:[381,5,1,""],log_file:[381,5,1,""],log_file_exists:[381,5,1,""],log_info:[381,5,1,""],log_infomsg:[381,5,1,""],log_msg:[381,5,1,""],log_sec:[381,5,1,""],log_secmsg:[381,5,1,""],log_server:[381,5,1,""],log_trace:[381,5,1,""],log_tracemsg:[381,5,1,""],log_warn:[381,5,1,""],log_warnmsg:[381,5,1,""],rotate_log_file:[381,5,1,""],tail_log_file:[381,5,1,""],timeformat:[381,5,1,""]},"evennia.utils.logger.EvenniaLogFile":{num_lines_to_append:[381,4,1,""],readlines:[381,3,1,""],rotate:[381,3,1,""],seek:[381,3,1,""],settings:[381,4,1,""]},"evennia.utils.logger.PortalLogObserver":{emit:[381,3,1,""],prefix:[381,4,1,""],timeFormat:[381,4,1,""]},"evennia.utils.logger.ServerLogObserver":{prefix:[381,4,1,""]},"evennia.utils.logger.WeeklyLogFile":{__init__:[381,3,1,""],shouldRotate:[381,3,1,""],suffix:[381,3,1,""],write:[381,3,1,""]},"evennia.utils.optionclasses":{BaseOption:[382,1,1,""],Boolean:[382,1,1,""],Color:[382,1,1,""],Datetime:[382,1,1,""],Duration:[382,1,1,""],Email:[382,1,1,""],Future:[382,1,1,""],Lock:[382,1,1,""],PositiveInteger:[382,1,1,""],SignedInteger:[382,1,1,""],Text:[382,1,1,""],Timezone:[382,1,1,""],UnsignedInteger:[382,1,1,""]},"evennia.utils.optionclasses.BaseOption":{"default":[382,3,1,""],__init__:[382,3,1,""],changed:[382,3,1,""],deserialize:[382,3,1,""],display:[382,3,1,""],load:[382,3,1,""],save:[382,3,1,""],serialize:[382,3,1,""],set:[382,3,1,""],validate:[382,3,1,""],value:[382,3,1,""]},"evennia.utils.optionclasses.Boolean":{deserialize:[382,3,1,""],display:[382,3,1,""],serialize:[382,3,1,""],validate:[382,3,1,""]},"evennia.utils.optionclasses.Color":{deserialize:[382,3,1,""],display:[382,3,1,""],validate:[382,3,1,""]},"evennia.utils.optionclasses.Datetime":{deserialize:[382,3,1,""],serialize:[382,3,1,""],validate:[382,3,1,""]},"evennia.utils.optionclasses.Duration":{deserialize:[382,3,1,""],serialize:[382,3,1,""],validate:[382,3,1,""]},"evennia.utils.optionclasses.Email":{deserialize:[382,3,1,""],validate:[382,3,1,""]},"evennia.utils.optionclasses.Future":{validate:[382,3,1,""]},"evennia.utils.optionclasses.Lock":{validate:[382,3,1,""]},"evennia.utils.optionclasses.PositiveInteger":{deserialize:[382,3,1,""],validate:[382,3,1,""]},"evennia.utils.optionclasses.SignedInteger":{deserialize:[382,3,1,""],validate:[382,3,1,""]},"evennia.utils.optionclasses.Text":{deserialize:[382,3,1,""]},"evennia.utils.optionclasses.Timezone":{"default":[382,3,1,""],deserialize:[382,3,1,""],serialize:[382,3,1,""],validate:[382,3,1,""]},"evennia.utils.optionclasses.UnsignedInteger":{deserialize:[382,3,1,""],validate:[382,3,1,""],validator_key:[382,4,1,""]},"evennia.utils.optionhandler":{InMemorySaveHandler:[383,1,1,""],OptionHandler:[383,1,1,""]},"evennia.utils.optionhandler.InMemorySaveHandler":{__init__:[383,3,1,""],add:[383,3,1,""],get:[383,3,1,""]},"evennia.utils.optionhandler.OptionHandler":{__init__:[383,3,1,""],all:[383,3,1,""],get:[383,3,1,""],set:[383,3,1,""]},"evennia.utils.picklefield":{PickledFormField:[384,1,1,""],PickledObject:[384,1,1,""],PickledObjectField:[384,1,1,""],PickledWidget:[384,1,1,""],dbsafe_decode:[384,5,1,""],dbsafe_encode:[384,5,1,""],wrap_conflictual_object:[384,5,1,""]},"evennia.utils.picklefield.PickledFormField":{__init__:[384,3,1,""],clean:[384,3,1,""],default_error_messages:[384,4,1,""],widget:[384,4,1,""]},"evennia.utils.picklefield.PickledObjectField":{__init__:[384,3,1,""],formfield:[384,3,1,""],from_db_value:[384,3,1,""],get_db_prep_lookup:[384,3,1,""],get_db_prep_value:[384,3,1,""],get_default:[384,3,1,""],get_internal_type:[384,3,1,""],pre_save:[384,3,1,""],value_to_string:[384,3,1,""]},"evennia.utils.picklefield.PickledWidget":{media:[384,3,1,""],render:[384,3,1,""],value_from_datadict:[384,3,1,""]},"evennia.utils.search":{search_account:[385,5,1,""],search_account_tag:[385,5,1,""],search_channel:[385,5,1,""],search_channel_tag:[385,5,1,""],search_help_entry:[385,5,1,""],search_message:[385,5,1,""],search_object:[385,5,1,""],search_script:[385,5,1,""],search_script_tag:[385,5,1,""],search_tag:[385,5,1,""]},"evennia.utils.test_resources":{EvenniaTest:[386,1,1,""],LocalEvenniaTest:[386,1,1,""],mockdeferLater:[386,5,1,""],mockdelay:[386,5,1,""],unload_module:[386,5,1,""]},"evennia.utils.test_resources.EvenniaTest":{account_typeclass:[386,4,1,""],character_typeclass:[386,4,1,""],exit_typeclass:[386,4,1,""],object_typeclass:[386,4,1,""],room_typeclass:[386,4,1,""],script_typeclass:[386,4,1,""],setUp:[386,3,1,""],tearDown:[386,3,1,""]},"evennia.utils.test_resources.LocalEvenniaTest":{account_typeclass:[386,4,1,""],character_typeclass:[386,4,1,""],exit_typeclass:[386,4,1,""],object_typeclass:[386,4,1,""],room_typeclass:[386,4,1,""],script_typeclass:[386,4,1,""]},"evennia.utils.text2html":{TextToHTMLparser:[387,1,1,""],parse_html:[387,5,1,""]},"evennia.utils.text2html.TextToHTMLparser":{bg_colormap:[387,4,1,""],bgfgstart:[387,4,1,""],bgfgstop:[387,4,1,""],bgstart:[387,4,1,""],bgstop:[387,4,1,""],blink:[387,4,1,""],colorback:[387,4,1,""],colorcodes:[387,4,1,""],convert_linebreaks:[387,3,1,""],convert_urls:[387,3,1,""],fg_colormap:[387,4,1,""],fgstart:[387,4,1,""],fgstop:[387,4,1,""],hilite:[387,4,1,""],inverse:[387,4,1,""],normal:[387,4,1,""],parse:[387,3,1,""],re_bgfg:[387,4,1,""],re_bgs:[387,4,1,""],re_blink:[387,4,1,""],re_blinking:[387,3,1,""],re_bold:[387,3,1,""],re_color:[387,3,1,""],re_dblspace:[387,4,1,""],re_double_space:[387,3,1,""],re_fgs:[387,4,1,""],re_hilite:[387,4,1,""],re_inverse:[387,4,1,""],re_inversing:[387,3,1,""],re_mxplink:[387,4,1,""],re_mxpurl:[387,4,1,""],re_normal:[387,4,1,""],re_string:[387,4,1,""],re_uline:[387,4,1,""],re_underline:[387,3,1,""],re_unhilite:[387,4,1,""],re_url:[387,4,1,""],remove_backspaces:[387,3,1,""],remove_bells:[387,3,1,""],sub_dblspace:[387,3,1,""],sub_mxp_links:[387,3,1,""],sub_mxp_urls:[387,3,1,""],sub_text:[387,3,1,""],tabstop:[387,4,1,""],underline:[387,4,1,""],unhilite:[387,4,1,""]},"evennia.utils.utils":{LimitedSizeOrderedDict:[388,1,1,""],all_from_module:[388,5,1,""],at_search_result:[388,5,1,""],callables_from_module:[388,5,1,""],calledby:[388,5,1,""],check_evennia_dependencies:[388,5,1,""],class_from_module:[388,5,1,""],columnize:[388,5,1,""],crop:[388,5,1,""],datetime_format:[388,5,1,""],dbid_to_obj:[388,5,1,""],dbref:[388,5,1,""],dbref_to_obj:[388,5,1,""],dedent:[388,5,1,""],deepsize:[388,5,1,""],delay:[388,5,1,""],display_len:[388,5,1,""],fill:[388,5,1,""],format_grid:[388,5,1,""],format_table:[388,5,1,""],fuzzy_import_from_module:[388,5,1,""],get_all_cmdsets:[388,5,1,""],get_all_typeclasses:[388,5,1,""],get_evennia_pids:[388,5,1,""],get_evennia_version:[388,5,1,""],get_game_dir_path:[388,5,1,""],has_parent:[388,5,1,""],host_os_is:[388,5,1,""],inherits_from:[388,5,1,""],init_new_account:[388,5,1,""],interactive:[388,5,1,""],is_iter:[388,5,1,""],iter_to_str:[388,5,1,""],iter_to_string:[388,5,1,""],justify:[388,5,1,""],latinify:[388,5,1,""],lazy_property:[388,1,1,""],list_to_string:[388,5,1,""],m_len:[388,5,1,""],make_iter:[388,5,1,""],mod_import:[388,5,1,""],mod_import_from_path:[388,5,1,""],object_from_module:[388,5,1,""],pad:[388,5,1,""],percent:[388,5,1,""],percentile:[388,5,1,""],pypath_to_realpath:[388,5,1,""],random_string_from_module:[388,5,1,""],repeat:[388,5,1,""],run_async:[388,5,1,""],safe_convert_to_types:[388,5,1,""],server_services:[388,5,1,""],string_from_module:[388,5,1,""],string_partial_matching:[388,5,1,""],string_similarity:[388,5,1,""],string_suggestions:[388,5,1,""],strip_control_sequences:[388,5,1,""],time_format:[388,5,1,""],to_bytes:[388,5,1,""],to_str:[388,5,1,""],unrepeat:[388,5,1,""],uses_database:[388,5,1,""],validate_email_address:[388,5,1,""],variable_from_module:[388,5,1,""],wildcard_to_regexp:[388,5,1,""],wrap:[388,5,1,""]},"evennia.utils.utils.LimitedSizeOrderedDict":{__init__:[388,3,1,""],update:[388,3,1,""]},"evennia.utils.utils.lazy_property":{__init__:[388,3,1,""]},"evennia.utils.validatorfuncs":{"boolean":[389,5,1,""],color:[389,5,1,""],datetime:[389,5,1,""],duration:[389,5,1,""],email:[389,5,1,""],future:[389,5,1,""],lock:[389,5,1,""],positive_integer:[389,5,1,""],signed_integer:[389,5,1,""],text:[389,5,1,""],timezone:[389,5,1,""],unsigned_integer:[389,5,1,""]},"evennia.utils.verb_conjugation":{conjugate:[391,0,0,"-"],tests:[392,0,0,"-"]},"evennia.utils.verb_conjugation.conjugate":{verb_actor_stance_components:[391,5,1,""],verb_all_tenses:[391,5,1,""],verb_conjugate:[391,5,1,""],verb_infinitive:[391,5,1,""],verb_is_past:[391,5,1,""],verb_is_past_participle:[391,5,1,""],verb_is_present:[391,5,1,""],verb_is_present_participle:[391,5,1,""],verb_is_tense:[391,5,1,""],verb_past:[391,5,1,""],verb_past_participle:[391,5,1,""],verb_present:[391,5,1,""],verb_present_participle:[391,5,1,""],verb_tense:[391,5,1,""]},"evennia.utils.verb_conjugation.tests":{TestVerbConjugate:[392,1,1,""]},"evennia.utils.verb_conjugation.tests.TestVerbConjugate":{test_verb_actor_stance_components:[392,4,1,""],test_verb_actor_stance_components_00_have:[392,3,1,""],test_verb_actor_stance_components_01_swimming:[392,3,1,""],test_verb_actor_stance_components_02_give:[392,3,1,""],test_verb_actor_stance_components_03_given:[392,3,1,""],test_verb_actor_stance_components_04_am:[392,3,1,""],test_verb_actor_stance_components_05_doing:[392,3,1,""],test_verb_actor_stance_components_06_are:[392,3,1,""],test_verb_actor_stance_components_07_had:[392,3,1,""],test_verb_actor_stance_components_08_grin:[392,3,1,""],test_verb_actor_stance_components_09_smile:[392,3,1,""],test_verb_actor_stance_components_10_vex:[392,3,1,""],test_verb_actor_stance_components_11_thrust:[392,3,1,""],test_verb_conjugate:[392,4,1,""],test_verb_conjugate_0_inf:[392,3,1,""],test_verb_conjugate_1_inf:[392,3,1,""],test_verb_conjugate_2_inf:[392,3,1,""],test_verb_conjugate_3_inf:[392,3,1,""],test_verb_conjugate_4_inf:[392,3,1,""],test_verb_conjugate_5_inf:[392,3,1,""],test_verb_conjugate_6_inf:[392,3,1,""],test_verb_conjugate_7_2sgpres:[392,3,1,""],test_verb_conjugate_8_3sgpres:[392,3,1,""],test_verb_get_all_tenses:[392,3,1,""],test_verb_infinitive:[392,4,1,""],test_verb_infinitive_0_have:[392,3,1,""],test_verb_infinitive_1_swim:[392,3,1,""],test_verb_infinitive_2_give:[392,3,1,""],test_verb_infinitive_3_given:[392,3,1,""],test_verb_infinitive_4_am:[392,3,1,""],test_verb_infinitive_5_doing:[392,3,1,""],test_verb_infinitive_6_are:[392,3,1,""],test_verb_is_past:[392,4,1,""],test_verb_is_past_0_1st:[392,3,1,""],test_verb_is_past_1_1st:[392,3,1,""],test_verb_is_past_2_1st:[392,3,1,""],test_verb_is_past_3_1st:[392,3,1,""],test_verb_is_past_4_1st:[392,3,1,""],test_verb_is_past_5_1st:[392,3,1,""],test_verb_is_past_6_1st:[392,3,1,""],test_verb_is_past_7_2nd:[392,3,1,""],test_verb_is_past_participle:[392,4,1,""],test_verb_is_past_participle_0_have:[392,3,1,""],test_verb_is_past_participle_1_swimming:[392,3,1,""],test_verb_is_past_participle_2_give:[392,3,1,""],test_verb_is_past_participle_3_given:[392,3,1,""],test_verb_is_past_participle_4_am:[392,3,1,""],test_verb_is_past_participle_5_doing:[392,3,1,""],test_verb_is_past_participle_6_are:[392,3,1,""],test_verb_is_past_participle_7_had:[392,3,1,""],test_verb_is_present:[392,4,1,""],test_verb_is_present_0_1st:[392,3,1,""],test_verb_is_present_1_1st:[392,3,1,""],test_verb_is_present_2_1st:[392,3,1,""],test_verb_is_present_3_1st:[392,3,1,""],test_verb_is_present_4_1st:[392,3,1,""],test_verb_is_present_5_1st:[392,3,1,""],test_verb_is_present_6_1st:[392,3,1,""],test_verb_is_present_7_1st:[392,3,1,""],test_verb_is_present_participle:[392,4,1,""],test_verb_is_present_participle_0_have:[392,3,1,""],test_verb_is_present_participle_1_swim:[392,3,1,""],test_verb_is_present_participle_2_give:[392,3,1,""],test_verb_is_present_participle_3_given:[392,3,1,""],test_verb_is_present_participle_4_am:[392,3,1,""],test_verb_is_present_participle_5_doing:[392,3,1,""],test_verb_is_present_participle_6_are:[392,3,1,""],test_verb_is_tense:[392,4,1,""],test_verb_is_tense_0_inf:[392,3,1,""],test_verb_is_tense_1_inf:[392,3,1,""],test_verb_is_tense_2_inf:[392,3,1,""],test_verb_is_tense_3_inf:[392,3,1,""],test_verb_is_tense_4_inf:[392,3,1,""],test_verb_is_tense_5_inf:[392,3,1,""],test_verb_is_tense_6_inf:[392,3,1,""],test_verb_past:[392,4,1,""],test_verb_past_0_1st:[392,3,1,""],test_verb_past_1_1st:[392,3,1,""],test_verb_past_2_1st:[392,3,1,""],test_verb_past_3_1st:[392,3,1,""],test_verb_past_4_1st:[392,3,1,""],test_verb_past_5_1st:[392,3,1,""],test_verb_past_6_1st:[392,3,1,""],test_verb_past_7_2nd:[392,3,1,""],test_verb_past_participle:[392,4,1,""],test_verb_past_participle_0_have:[392,3,1,""],test_verb_past_participle_1_swim:[392,3,1,""],test_verb_past_participle_2_give:[392,3,1,""],test_verb_past_participle_3_given:[392,3,1,""],test_verb_past_participle_4_am:[392,3,1,""],test_verb_past_participle_5_doing:[392,3,1,""],test_verb_past_participle_6_are:[392,3,1,""],test_verb_present:[392,4,1,""],test_verb_present_0_1st:[392,3,1,""],test_verb_present_1_1st:[392,3,1,""],test_verb_present_2_1st:[392,3,1,""],test_verb_present_3_1st:[392,3,1,""],test_verb_present_4_1st:[392,3,1,""],test_verb_present_5_1st:[392,3,1,""],test_verb_present_6_1st:[392,3,1,""],test_verb_present_7_2nd:[392,3,1,""],test_verb_present_8_3rd:[392,3,1,""],test_verb_present_participle:[392,4,1,""],test_verb_present_participle_0_have:[392,3,1,""],test_verb_present_participle_1_swim:[392,3,1,""],test_verb_present_participle_2_give:[392,3,1,""],test_verb_present_participle_3_given:[392,3,1,""],test_verb_present_participle_4_am:[392,3,1,""],test_verb_present_participle_5_doing:[392,3,1,""],test_verb_present_participle_6_are:[392,3,1,""],test_verb_tense:[392,4,1,""],test_verb_tense_0_have:[392,3,1,""],test_verb_tense_1_swim:[392,3,1,""],test_verb_tense_2_give:[392,3,1,""],test_verb_tense_3_given:[392,3,1,""],test_verb_tense_4_am:[392,3,1,""],test_verb_tense_5_doing:[392,3,1,""],test_verb_tense_6_are:[392,3,1,""]},"evennia.web":{admin:[394,0,0,"-"],api:[406,0,0,"-"],templatetags:[414,0,0,"-"],urls:[416,0,0,"-"],utils:[417,0,0,"-"],webclient:[423,0,0,"-"],website:[426,0,0,"-"]},"evennia.web.admin":{accounts:[395,0,0,"-"],attributes:[396,0,0,"-"],comms:[397,0,0,"-"],frontpage:[398,0,0,"-"],help:[399,0,0,"-"],objects:[400,0,0,"-"],scripts:[401,0,0,"-"],server:[402,0,0,"-"],tags:[403,0,0,"-"],urls:[404,0,0,"-"],utils:[405,0,0,"-"]},"evennia.web.admin.accounts":{AccountAdmin:[395,1,1,""],AccountAttributeInline:[395,1,1,""],AccountChangeForm:[395,1,1,""],AccountCreationForm:[395,1,1,""],AccountTagInline:[395,1,1,""],ObjectPuppetInline:[395,1,1,""]},"evennia.web.admin.accounts.AccountAdmin":{add_fieldsets:[395,4,1,""],add_form:[395,4,1,""],fieldsets:[395,4,1,""],form:[395,4,1,""],get_form:[395,3,1,""],inlines:[395,4,1,""],list_display:[395,4,1,""],list_display_links:[395,4,1,""],list_filter:[395,4,1,""],media:[395,3,1,""],ordering:[395,4,1,""],puppeted_objects:[395,3,1,""],readonly_fields:[395,4,1,""],response_add:[395,3,1,""],save_model:[395,3,1,""],search_fields:[395,4,1,""],serialized_string:[395,3,1,""],user_change_password:[395,3,1,""],view_on_site:[395,4,1,""]},"evennia.web.admin.accounts.AccountAttributeInline":{media:[395,3,1,""],model:[395,4,1,""],related_field:[395,4,1,""]},"evennia.web.admin.accounts.AccountChangeForm":{Meta:[395,1,1,""],__init__:[395,3,1,""],base_fields:[395,4,1,""],clean_username:[395,3,1,""],declared_fields:[395,4,1,""],media:[395,3,1,""]},"evennia.web.admin.accounts.AccountChangeForm.Meta":{fields:[395,4,1,""],model:[395,4,1,""]},"evennia.web.admin.accounts.AccountCreationForm":{Meta:[395,1,1,""],base_fields:[395,4,1,""],clean_username:[395,3,1,""],declared_fields:[395,4,1,""],media:[395,3,1,""]},"evennia.web.admin.accounts.AccountCreationForm.Meta":{fields:[395,4,1,""],model:[395,4,1,""]},"evennia.web.admin.accounts.AccountTagInline":{media:[395,3,1,""],model:[395,4,1,""],related_field:[395,4,1,""]},"evennia.web.admin.accounts.ObjectPuppetInline":{ObjectCreateForm:[395,1,1,""],extra:[395,4,1,""],fieldsets:[395,4,1,""],form:[395,4,1,""],has_add_permission:[395,3,1,""],has_delete_permission:[395,3,1,""],media:[395,3,1,""],model:[395,4,1,""],readonly_fields:[395,4,1,""],show_change_link:[395,4,1,""],verbose_name:[395,4,1,""],view_on_site:[395,4,1,""]},"evennia.web.admin.accounts.ObjectPuppetInline.ObjectCreateForm":{Meta:[395,1,1,""],__init__:[395,3,1,""],base_fields:[395,4,1,""],declared_fields:[395,4,1,""],media:[395,3,1,""]},"evennia.web.admin.accounts.ObjectPuppetInline.ObjectCreateForm.Meta":{fields:[395,4,1,""],model:[395,4,1,""]},"evennia.web.admin.attributes":{AttributeForm:[396,1,1,""],AttributeFormSet:[396,1,1,""],AttributeInline:[396,1,1,""]},"evennia.web.admin.attributes.AttributeForm":{Meta:[396,1,1,""],__init__:[396,3,1,""],base_fields:[396,4,1,""],clean_attr_value:[396,3,1,""],declared_fields:[396,4,1,""],media:[396,3,1,""],save:[396,3,1,""]},"evennia.web.admin.attributes.AttributeForm.Meta":{fields:[396,4,1,""]},"evennia.web.admin.attributes.AttributeFormSet":{save:[396,3,1,""]},"evennia.web.admin.attributes.AttributeInline":{extra:[396,4,1,""],form:[396,4,1,""],formset:[396,4,1,""],get_formset:[396,3,1,""],media:[396,3,1,""],model:[396,4,1,""],related_field:[396,4,1,""],verbose_name:[396,4,1,""],verbose_name_plural:[396,4,1,""]},"evennia.web.admin.comms":{ChannelAdmin:[397,1,1,""],ChannelAttributeInline:[397,1,1,""],ChannelForm:[397,1,1,""],ChannelTagInline:[397,1,1,""],MsgAdmin:[397,1,1,""],MsgForm:[397,1,1,""],MsgTagInline:[397,1,1,""]},"evennia.web.admin.comms.ChannelAdmin":{fieldsets:[397,4,1,""],form:[397,4,1,""],get_form:[397,3,1,""],inlines:[397,4,1,""],list_display:[397,4,1,""],list_display_links:[397,4,1,""],list_select_related:[397,4,1,""],media:[397,3,1,""],no_of_subscribers:[397,3,1,""],ordering:[397,4,1,""],raw_id_fields:[397,4,1,""],readonly_fields:[397,4,1,""],response_add:[397,3,1,""],save_as:[397,4,1,""],save_model:[397,3,1,""],save_on_top:[397,4,1,""],search_fields:[397,4,1,""],serialized_string:[397,3,1,""],subscriptions:[397,3,1,""]},"evennia.web.admin.comms.ChannelAttributeInline":{media:[397,3,1,""],model:[397,4,1,""],related_field:[397,4,1,""]},"evennia.web.admin.comms.ChannelForm":{Meta:[397,1,1,""],base_fields:[397,4,1,""],declared_fields:[397,4,1,""],media:[397,3,1,""]},"evennia.web.admin.comms.ChannelForm.Meta":{fields:[397,4,1,""],model:[397,4,1,""]},"evennia.web.admin.comms.ChannelTagInline":{media:[397,3,1,""],model:[397,4,1,""],related_field:[397,4,1,""]},"evennia.web.admin.comms.MsgAdmin":{fieldsets:[397,4,1,""],form:[397,4,1,""],get_form:[397,3,1,""],inlines:[397,4,1,""],list_display:[397,4,1,""],list_display_links:[397,4,1,""],list_select_related:[397,4,1,""],media:[397,3,1,""],ordering:[397,4,1,""],raw_id_fields:[397,4,1,""],readonly_fields:[397,4,1,""],receiver:[397,3,1,""],save_as:[397,4,1,""],save_on_top:[397,4,1,""],search_fields:[397,4,1,""],sender:[397,3,1,""],serialized_string:[397,3,1,""],start_of_message:[397,3,1,""],view_on_site:[397,4,1,""]},"evennia.web.admin.comms.MsgForm":{Meta:[397,1,1,""],base_fields:[397,4,1,""],declared_fields:[397,4,1,""],media:[397,3,1,""]},"evennia.web.admin.comms.MsgForm.Meta":{fields:[397,4,1,""],models:[397,4,1,""]},"evennia.web.admin.comms.MsgTagInline":{media:[397,3,1,""],model:[397,4,1,""],related_field:[397,4,1,""]},"evennia.web.admin.frontpage":{admin_wrapper:[398,5,1,""],evennia_admin:[398,5,1,""]},"evennia.web.admin.help":{HelpEntryAdmin:[399,1,1,""],HelpEntryForm:[399,1,1,""],HelpTagInline:[399,1,1,""]},"evennia.web.admin.help.HelpEntryAdmin":{fieldsets:[399,4,1,""],form:[399,4,1,""],inlines:[399,4,1,""],list_display:[399,4,1,""],list_display_links:[399,4,1,""],list_filter:[399,4,1,""],list_select_related:[399,4,1,""],media:[399,3,1,""],ordering:[399,4,1,""],save_as:[399,4,1,""],save_on_top:[399,4,1,""],search_fields:[399,4,1,""],view_on_site:[399,4,1,""]},"evennia.web.admin.help.HelpEntryForm":{Meta:[399,1,1,""],base_fields:[399,4,1,""],declared_fields:[399,4,1,""],media:[399,3,1,""]},"evennia.web.admin.help.HelpEntryForm.Meta":{fields:[399,4,1,""],model:[399,4,1,""]},"evennia.web.admin.help.HelpTagInline":{media:[399,3,1,""],model:[399,4,1,""],related_field:[399,4,1,""]},"evennia.web.admin.objects":{ObjectAdmin:[400,1,1,""],ObjectAttributeInline:[400,1,1,""],ObjectCreateForm:[400,1,1,""],ObjectEditForm:[400,1,1,""],ObjectTagInline:[400,1,1,""]},"evennia.web.admin.objects.ObjectAdmin":{add_fieldsets:[400,4,1,""],add_form:[400,4,1,""],fieldsets:[400,4,1,""],form:[400,4,1,""],get_fieldsets:[400,3,1,""],get_form:[400,3,1,""],get_urls:[400,3,1,""],inlines:[400,4,1,""],link_button:[400,3,1,""],link_object_to_account:[400,3,1,""],list_display:[400,4,1,""],list_display_links:[400,4,1,""],list_filter:[400,4,1,""],list_select_related:[400,4,1,""],media:[400,3,1,""],ordering:[400,4,1,""],raw_id_fields:[400,4,1,""],readonly_fields:[400,4,1,""],response_add:[400,3,1,""],save_as:[400,4,1,""],save_model:[400,3,1,""],save_on_top:[400,4,1,""],search_fields:[400,4,1,""],serialized_string:[400,3,1,""],view_on_site:[400,4,1,""]},"evennia.web.admin.objects.ObjectAttributeInline":{media:[400,3,1,""],model:[400,4,1,""],related_field:[400,4,1,""]},"evennia.web.admin.objects.ObjectCreateForm":{Meta:[400,1,1,""],__init__:[400,3,1,""],base_fields:[400,4,1,""],declared_fields:[400,4,1,""],media:[400,3,1,""]},"evennia.web.admin.objects.ObjectCreateForm.Meta":{fields:[400,4,1,""],model:[400,4,1,""]},"evennia.web.admin.objects.ObjectEditForm":{Meta:[400,1,1,""],base_fields:[400,4,1,""],declared_fields:[400,4,1,""],media:[400,3,1,""]},"evennia.web.admin.objects.ObjectEditForm.Meta":{fields:[400,4,1,""],model:[400,4,1,""]},"evennia.web.admin.objects.ObjectTagInline":{media:[400,3,1,""],model:[400,4,1,""],related_field:[400,4,1,""]},"evennia.web.admin.scripts":{ScriptAdmin:[401,1,1,""],ScriptAttributeInline:[401,1,1,""],ScriptForm:[401,1,1,""],ScriptTagInline:[401,1,1,""]},"evennia.web.admin.scripts.ScriptAdmin":{fieldsets:[401,4,1,""],form:[401,4,1,""],get_form:[401,3,1,""],inlines:[401,4,1,""],list_display:[401,4,1,""],list_display_links:[401,4,1,""],list_select_related:[401,4,1,""],media:[401,3,1,""],ordering:[401,4,1,""],raw_id_fields:[401,4,1,""],readonly_fields:[401,4,1,""],save_as:[401,4,1,""],save_model:[401,3,1,""],save_on_top:[401,4,1,""],search_fields:[401,4,1,""],serialized_string:[401,3,1,""],view_on_site:[401,4,1,""]},"evennia.web.admin.scripts.ScriptAttributeInline":{form:[401,4,1,""],media:[401,3,1,""],model:[401,4,1,""],related_field:[401,4,1,""]},"evennia.web.admin.scripts.ScriptForm":{base_fields:[401,4,1,""],declared_fields:[401,4,1,""],media:[401,3,1,""]},"evennia.web.admin.scripts.ScriptTagInline":{form:[401,4,1,""],media:[401,3,1,""],model:[401,4,1,""],related_field:[401,4,1,""]},"evennia.web.admin.server":{ServerConfigAdmin:[402,1,1,""]},"evennia.web.admin.server.ServerConfigAdmin":{list_display:[402,4,1,""],list_display_links:[402,4,1,""],list_select_related:[402,4,1,""],media:[402,3,1,""],ordering:[402,4,1,""],save_as:[402,4,1,""],save_on_top:[402,4,1,""],search_fields:[402,4,1,""]},"evennia.web.admin.tags":{InlineTagForm:[403,1,1,""],TagAdmin:[403,1,1,""],TagForm:[403,1,1,""],TagFormSet:[403,1,1,""],TagInline:[403,1,1,""]},"evennia.web.admin.tags.InlineTagForm":{Meta:[403,1,1,""],__init__:[403,3,1,""],base_fields:[403,4,1,""],declared_fields:[403,4,1,""],media:[403,3,1,""],save:[403,3,1,""]},"evennia.web.admin.tags.InlineTagForm.Meta":{fields:[403,4,1,""]},"evennia.web.admin.tags.TagAdmin":{fieldsets:[403,4,1,""],form:[403,4,1,""],list_display:[403,4,1,""],list_filter:[403,4,1,""],media:[403,3,1,""],search_fields:[403,4,1,""],view_on_site:[403,4,1,""]},"evennia.web.admin.tags.TagForm":{Meta:[403,1,1,""],base_fields:[403,4,1,""],declared_fields:[403,4,1,""],media:[403,3,1,""]},"evennia.web.admin.tags.TagForm.Meta":{fields:[403,4,1,""]},"evennia.web.admin.tags.TagFormSet":{save:[403,3,1,""],verbose_name:[403,4,1,""],verbose_name_plural:[403,4,1,""]},"evennia.web.admin.tags.TagInline":{extra:[403,4,1,""],form:[403,4,1,""],formset:[403,4,1,""],get_formset:[403,3,1,""],media:[403,3,1,""],model:[403,4,1,""],related_field:[403,4,1,""],verbose_name:[403,4,1,""],verbose_name_plural:[403,4,1,""]},"evennia.web.admin.utils":{get_and_load_cmdsets:[405,5,1,""],get_and_load_typeclasses:[405,5,1,""]},"evennia.web.api":{filters:[407,0,0,"-"],permissions:[408,0,0,"-"],root:[409,0,0,"-"],serializers:[410,0,0,"-"],tests:[411,0,0,"-"],urls:[412,0,0,"-"],views:[413,0,0,"-"]},"evennia.web.api.filters":{AccountDBFilterSet:[407,1,1,""],AliasFilter:[407,1,1,""],BaseTypeclassFilterSet:[407,1,1,""],HelpFilterSet:[407,1,1,""],ObjectDBFilterSet:[407,1,1,""],PermissionFilter:[407,1,1,""],ScriptDBFilterSet:[407,1,1,""],TagTypeFilter:[407,1,1,""],get_tag_query:[407,5,1,""]},"evennia.web.api.filters.AccountDBFilterSet":{Meta:[407,1,1,""],base_filters:[407,4,1,""],declared_filters:[407,4,1,""]},"evennia.web.api.filters.AccountDBFilterSet.Meta":{fields:[407,4,1,""],model:[407,4,1,""]},"evennia.web.api.filters.AliasFilter":{tag_type:[407,4,1,""]},"evennia.web.api.filters.BaseTypeclassFilterSet":{base_filters:[407,4,1,""],declared_filters:[407,4,1,""],filter_name:[407,3,1,""]},"evennia.web.api.filters.HelpFilterSet":{base_filters:[407,4,1,""],declared_filters:[407,4,1,""]},"evennia.web.api.filters.ObjectDBFilterSet":{Meta:[407,1,1,""],base_filters:[407,4,1,""],declared_filters:[407,4,1,""]},"evennia.web.api.filters.ObjectDBFilterSet.Meta":{fields:[407,4,1,""],model:[407,4,1,""]},"evennia.web.api.filters.PermissionFilter":{tag_type:[407,4,1,""]},"evennia.web.api.filters.ScriptDBFilterSet":{Meta:[407,1,1,""],base_filters:[407,4,1,""],declared_filters:[407,4,1,""]},"evennia.web.api.filters.ScriptDBFilterSet.Meta":{fields:[407,4,1,""],model:[407,4,1,""]},"evennia.web.api.filters.TagTypeFilter":{filter:[407,3,1,""],tag_type:[407,4,1,""]},"evennia.web.api.permissions":{EvenniaPermission:[408,1,1,""]},"evennia.web.api.permissions.EvenniaPermission":{MINIMUM_CREATE_PERMISSION:[408,4,1,""],MINIMUM_LIST_PERMISSION:[408,4,1,""],check_locks:[408,3,1,""],destroy_locks:[408,4,1,""],has_object_permission:[408,3,1,""],has_permission:[408,3,1,""],update_locks:[408,4,1,""],view_locks:[408,4,1,""]},"evennia.web.api.root":{APIRootRouter:[409,1,1,""],EvenniaAPIRoot:[409,1,1,""]},"evennia.web.api.root.APIRootRouter":{APIRootView:[409,4,1,""]},"evennia.web.api.serializers":{AccountListSerializer:[410,1,1,""],AccountSerializer:[410,1,1,""],AttributeSerializer:[410,1,1,""],HelpListSerializer:[410,1,1,""],HelpSerializer:[410,1,1,""],ObjectDBSerializer:[410,1,1,""],ObjectListSerializer:[410,1,1,""],ScriptDBSerializer:[410,1,1,""],ScriptListSerializer:[410,1,1,""],SimpleObjectDBSerializer:[410,1,1,""],TagSerializer:[410,1,1,""],TypeclassListSerializerMixin:[410,1,1,""],TypeclassSerializerMixin:[410,1,1,""]},"evennia.web.api.serializers.AccountListSerializer":{Meta:[410,1,1,""]},"evennia.web.api.serializers.AccountListSerializer.Meta":{fields:[410,4,1,""],model:[410,4,1,""],read_only_fields:[410,4,1,""]},"evennia.web.api.serializers.AccountSerializer":{Meta:[410,1,1,""],get_session_ids:[410,3,1,""]},"evennia.web.api.serializers.AccountSerializer.Meta":{fields:[410,4,1,""],model:[410,4,1,""],read_only_fields:[410,4,1,""]},"evennia.web.api.serializers.AttributeSerializer":{Meta:[410,1,1,""],get_value_display:[410,3,1,""]},"evennia.web.api.serializers.AttributeSerializer.Meta":{fields:[410,4,1,""],model:[410,4,1,""]},"evennia.web.api.serializers.HelpListSerializer":{Meta:[410,1,1,""]},"evennia.web.api.serializers.HelpListSerializer.Meta":{fields:[410,4,1,""],model:[410,4,1,""],read_only_fields:[410,4,1,""]},"evennia.web.api.serializers.HelpSerializer":{Meta:[410,1,1,""]},"evennia.web.api.serializers.HelpSerializer.Meta":{fields:[410,4,1,""],model:[410,4,1,""],read_only_fields:[410,4,1,""]},"evennia.web.api.serializers.ObjectDBSerializer":{Meta:[410,1,1,""],get_contents:[410,3,1,""],get_exits:[410,3,1,""]},"evennia.web.api.serializers.ObjectDBSerializer.Meta":{fields:[410,4,1,""],model:[410,4,1,""],read_only_fields:[410,4,1,""]},"evennia.web.api.serializers.ObjectListSerializer":{Meta:[410,1,1,""]},"evennia.web.api.serializers.ObjectListSerializer.Meta":{fields:[410,4,1,""],model:[410,4,1,""],read_only_fields:[410,4,1,""]},"evennia.web.api.serializers.ScriptDBSerializer":{Meta:[410,1,1,""]},"evennia.web.api.serializers.ScriptDBSerializer.Meta":{fields:[410,4,1,""],model:[410,4,1,""],read_only_fields:[410,4,1,""]},"evennia.web.api.serializers.ScriptListSerializer":{Meta:[410,1,1,""]},"evennia.web.api.serializers.ScriptListSerializer.Meta":{fields:[410,4,1,""],model:[410,4,1,""],read_only_fields:[410,4,1,""]},"evennia.web.api.serializers.SimpleObjectDBSerializer":{Meta:[410,1,1,""]},"evennia.web.api.serializers.SimpleObjectDBSerializer.Meta":{fields:[410,4,1,""],model:[410,4,1,""]},"evennia.web.api.serializers.TagSerializer":{Meta:[410,1,1,""]},"evennia.web.api.serializers.TagSerializer.Meta":{fields:[410,4,1,""],model:[410,4,1,""]},"evennia.web.api.serializers.TypeclassListSerializerMixin":{shared_fields:[410,4,1,""]},"evennia.web.api.serializers.TypeclassSerializerMixin":{get_aliases:[410,3,1,""],get_attributes:[410,3,1,""],get_nicks:[410,3,1,""],get_permissions:[410,3,1,""],get_tags:[410,3,1,""],shared_fields:[410,4,1,""]},"evennia.web.api.tests":{TestEvenniaRESTApi:[411,1,1,""]},"evennia.web.api.tests.TestEvenniaRESTApi":{client_class:[411,4,1,""],get_view_details:[411,3,1,""],maxDiff:[411,4,1,""],setUp:[411,3,1,""],tearDown:[411,3,1,""],test_create:[411,3,1,""],test_delete:[411,3,1,""],test_list:[411,3,1,""],test_retrieve:[411,3,1,""],test_set_attribute:[411,3,1,""],test_update:[411,3,1,""]},"evennia.web.api.views":{AccountDBViewSet:[413,1,1,""],CharacterViewSet:[413,1,1,""],ExitViewSet:[413,1,1,""],GeneralViewSetMixin:[413,1,1,""],HelpViewSet:[413,1,1,""],ObjectDBViewSet:[413,1,1,""],RoomViewSet:[413,1,1,""],ScriptDBViewSet:[413,1,1,""],TypeclassViewSetMixin:[413,1,1,""]},"evennia.web.api.views.AccountDBViewSet":{basename:[413,4,1,""],description:[413,4,1,""],detail:[413,4,1,""],filterset_class:[413,4,1,""],list_serializer_class:[413,4,1,""],name:[413,4,1,""],queryset:[413,4,1,""],serializer_class:[413,4,1,""],suffix:[413,4,1,""]},"evennia.web.api.views.CharacterViewSet":{basename:[413,4,1,""],description:[413,4,1,""],detail:[413,4,1,""],list_serializer_class:[413,4,1,""],name:[413,4,1,""],queryset:[413,4,1,""],suffix:[413,4,1,""]},"evennia.web.api.views.ExitViewSet":{basename:[413,4,1,""],description:[413,4,1,""],detail:[413,4,1,""],list_serializer_class:[413,4,1,""],name:[413,4,1,""],queryset:[413,4,1,""],suffix:[413,4,1,""]},"evennia.web.api.views.GeneralViewSetMixin":{get_serializer_class:[413,3,1,""]},"evennia.web.api.views.HelpViewSet":{basename:[413,4,1,""],description:[413,4,1,""],detail:[413,4,1,""],filterset_class:[413,4,1,""],list_serializer_class:[413,4,1,""],name:[413,4,1,""],queryset:[413,4,1,""],serializer_class:[413,4,1,""],suffix:[413,4,1,""]},"evennia.web.api.views.ObjectDBViewSet":{basename:[413,4,1,""],description:[413,4,1,""],detail:[413,4,1,""],filterset_class:[413,4,1,""],list_serializer_class:[413,4,1,""],name:[413,4,1,""],queryset:[413,4,1,""],serializer_class:[413,4,1,""],suffix:[413,4,1,""]},"evennia.web.api.views.RoomViewSet":{basename:[413,4,1,""],description:[413,4,1,""],detail:[413,4,1,""],list_serializer_class:[413,4,1,""],name:[413,4,1,""],queryset:[413,4,1,""],suffix:[413,4,1,""]},"evennia.web.api.views.ScriptDBViewSet":{basename:[413,4,1,""],description:[413,4,1,""],detail:[413,4,1,""],filterset_class:[413,4,1,""],list_serializer_class:[413,4,1,""],name:[413,4,1,""],queryset:[413,4,1,""],serializer_class:[413,4,1,""],suffix:[413,4,1,""]},"evennia.web.api.views.TypeclassViewSetMixin":{filter_backends:[413,4,1,""],permission_classes:[413,4,1,""],set_attribute:[413,3,1,""]},"evennia.web.templatetags":{addclass:[415,0,0,"-"]},"evennia.web.templatetags.addclass":{addclass:[415,5,1,""]},"evennia.web.utils":{adminsite:[418,0,0,"-"],backends:[419,0,0,"-"],general_context:[420,0,0,"-"],middleware:[421,0,0,"-"],tests:[422,0,0,"-"]},"evennia.web.utils.adminsite":{EvenniaAdminApp:[418,1,1,""],EvenniaAdminSite:[418,1,1,""]},"evennia.web.utils.adminsite.EvenniaAdminApp":{default_site:[418,4,1,""]},"evennia.web.utils.adminsite.EvenniaAdminSite":{app_order:[418,4,1,""],get_app_list:[418,3,1,""],site_header:[418,4,1,""]},"evennia.web.utils.backends":{CaseInsensitiveModelBackend:[419,1,1,""]},"evennia.web.utils.backends.CaseInsensitiveModelBackend":{authenticate:[419,3,1,""]},"evennia.web.utils.general_context":{general_context:[420,5,1,""],set_game_name_and_slogan:[420,5,1,""],set_webclient_settings:[420,5,1,""]},"evennia.web.utils.middleware":{SharedLoginMiddleware:[421,1,1,""]},"evennia.web.utils.middleware.SharedLoginMiddleware":{__init__:[421,3,1,""],make_shared_login:[421,3,1,""]},"evennia.web.utils.tests":{TestGeneralContext:[422,1,1,""]},"evennia.web.utils.tests.TestGeneralContext":{maxDiff:[422,4,1,""],test_general_context:[422,3,1,""],test_set_game_name_and_slogan:[422,3,1,""],test_set_webclient_settings:[422,3,1,""]},"evennia.web.webclient":{urls:[424,0,0,"-"],views:[425,0,0,"-"]},"evennia.web.webclient.views":{webclient:[425,5,1,""]},"evennia.web.website":{forms:[427,0,0,"-"],tests:[428,0,0,"-"],urls:[429,0,0,"-"],views:[430,0,0,"-"]},"evennia.web.website.forms":{AccountForm:[427,1,1,""],CharacterForm:[427,1,1,""],CharacterUpdateForm:[427,1,1,""],EvenniaForm:[427,1,1,""],ObjectForm:[427,1,1,""]},"evennia.web.website.forms.AccountForm":{Meta:[427,1,1,""],base_fields:[427,4,1,""],declared_fields:[427,4,1,""],media:[427,3,1,""]},"evennia.web.website.forms.AccountForm.Meta":{field_classes:[427,4,1,""],fields:[427,4,1,""],model:[427,4,1,""]},"evennia.web.website.forms.CharacterForm":{Meta:[427,1,1,""],base_fields:[427,4,1,""],declared_fields:[427,4,1,""],media:[427,3,1,""]},"evennia.web.website.forms.CharacterForm.Meta":{fields:[427,4,1,""],labels:[427,4,1,""],model:[427,4,1,""]},"evennia.web.website.forms.CharacterUpdateForm":{base_fields:[427,4,1,""],declared_fields:[427,4,1,""],media:[427,3,1,""]},"evennia.web.website.forms.EvenniaForm":{base_fields:[427,4,1,""],clean:[427,3,1,""],declared_fields:[427,4,1,""],media:[427,3,1,""]},"evennia.web.website.forms.ObjectForm":{Meta:[427,1,1,""],base_fields:[427,4,1,""],declared_fields:[427,4,1,""],media:[427,3,1,""]},"evennia.web.website.forms.ObjectForm.Meta":{fields:[427,4,1,""],labels:[427,4,1,""],model:[427,4,1,""]},"evennia.web.website.tests":{AdminTest:[428,1,1,""],ChannelDetailTest:[428,1,1,""],ChannelListTest:[428,1,1,""],CharacterCreateView:[428,1,1,""],CharacterDeleteView:[428,1,1,""],CharacterListView:[428,1,1,""],CharacterManageView:[428,1,1,""],CharacterPuppetView:[428,1,1,""],CharacterUpdateView:[428,1,1,""],EvenniaWebTest:[428,1,1,""],IndexTest:[428,1,1,""],LoginTest:[428,1,1,""],LogoutTest:[428,1,1,""],PasswordResetTest:[428,1,1,""],RegisterTest:[428,1,1,""],WebclientTest:[428,1,1,""]},"evennia.web.website.tests.AdminTest":{unauthenticated_response:[428,4,1,""],url_name:[428,4,1,""]},"evennia.web.website.tests.ChannelDetailTest":{get_kwargs:[428,3,1,""],setUp:[428,3,1,""],url_name:[428,4,1,""]},"evennia.web.website.tests.ChannelListTest":{url_name:[428,4,1,""]},"evennia.web.website.tests.CharacterCreateView":{test_valid_access_multisession_0:[428,3,1,""],test_valid_access_multisession_2:[428,3,1,""],unauthenticated_response:[428,4,1,""],url_name:[428,4,1,""]},"evennia.web.website.tests.CharacterDeleteView":{get_kwargs:[428,3,1,""],test_invalid_access:[428,3,1,""],test_valid_access:[428,3,1,""],unauthenticated_response:[428,4,1,""],url_name:[428,4,1,""]},"evennia.web.website.tests.CharacterListView":{unauthenticated_response:[428,4,1,""],url_name:[428,4,1,""]},"evennia.web.website.tests.CharacterManageView":{unauthenticated_response:[428,4,1,""],url_name:[428,4,1,""]},"evennia.web.website.tests.CharacterPuppetView":{get_kwargs:[428,3,1,""],test_invalid_access:[428,3,1,""],unauthenticated_response:[428,4,1,""],url_name:[428,4,1,""]},"evennia.web.website.tests.CharacterUpdateView":{get_kwargs:[428,3,1,""],test_invalid_access:[428,3,1,""],test_valid_access:[428,3,1,""],unauthenticated_response:[428,4,1,""],url_name:[428,4,1,""]},"evennia.web.website.tests.EvenniaWebTest":{account_typeclass:[428,4,1,""],authenticated_response:[428,4,1,""],channel_typeclass:[428,4,1,""],character_typeclass:[428,4,1,""],exit_typeclass:[428,4,1,""],get_kwargs:[428,3,1,""],login:[428,3,1,""],object_typeclass:[428,4,1,""],room_typeclass:[428,4,1,""],script_typeclass:[428,4,1,""],setUp:[428,3,1,""],test_get:[428,3,1,""],test_get_authenticated:[428,3,1,""],test_valid_chars:[428,3,1,""],unauthenticated_response:[428,4,1,""],url_name:[428,4,1,""]},"evennia.web.website.tests.IndexTest":{url_name:[428,4,1,""]},"evennia.web.website.tests.LoginTest":{url_name:[428,4,1,""]},"evennia.web.website.tests.LogoutTest":{url_name:[428,4,1,""]},"evennia.web.website.tests.PasswordResetTest":{unauthenticated_response:[428,4,1,""],url_name:[428,4,1,""]},"evennia.web.website.tests.RegisterTest":{url_name:[428,4,1,""]},"evennia.web.website.tests.WebclientTest":{test_get:[428,3,1,""],test_get_disabled:[428,3,1,""],url_name:[428,4,1,""]},"evennia.web.website.views":{accounts:[431,0,0,"-"],channels:[432,0,0,"-"],characters:[433,0,0,"-"],errors:[434,0,0,"-"],help:[435,0,0,"-"],index:[436,0,0,"-"],mixins:[437,0,0,"-"],objects:[438,0,0,"-"]},"evennia.web.website.views.accounts":{AccountCreateView:[431,1,1,""],AccountMixin:[431,1,1,""]},"evennia.web.website.views.accounts.AccountCreateView":{form_valid:[431,3,1,""],success_url:[431,4,1,""],template_name:[431,4,1,""]},"evennia.web.website.views.accounts.AccountMixin":{form_class:[431,4,1,""],model:[431,4,1,""]},"evennia.web.website.views.channels":{ChannelDetailView:[432,1,1,""],ChannelListView:[432,1,1,""],ChannelMixin:[432,1,1,""]},"evennia.web.website.views.channels.ChannelDetailView":{attributes:[432,4,1,""],get_context_data:[432,3,1,""],get_object:[432,3,1,""],max_num_lines:[432,4,1,""],template_name:[432,4,1,""]},"evennia.web.website.views.channels.ChannelListView":{get_context_data:[432,3,1,""],max_popular:[432,4,1,""],page_title:[432,4,1,""],paginate_by:[432,4,1,""],template_name:[432,4,1,""]},"evennia.web.website.views.channels.ChannelMixin":{access_type:[432,4,1,""],get_queryset:[432,3,1,""],model:[432,4,1,""],page_title:[432,4,1,""]},"evennia.web.website.views.characters":{CharacterCreateView:[433,1,1,""],CharacterDeleteView:[433,1,1,""],CharacterDetailView:[433,1,1,""],CharacterListView:[433,1,1,""],CharacterManageView:[433,1,1,""],CharacterMixin:[433,1,1,""],CharacterPuppetView:[433,1,1,""],CharacterUpdateView:[433,1,1,""]},"evennia.web.website.views.characters.CharacterCreateView":{form_valid:[433,3,1,""],template_name:[433,4,1,""]},"evennia.web.website.views.characters.CharacterDetailView":{access_type:[433,4,1,""],attributes:[433,4,1,""],get_queryset:[433,3,1,""],template_name:[433,4,1,""]},"evennia.web.website.views.characters.CharacterListView":{access_type:[433,4,1,""],get_queryset:[433,3,1,""],page_title:[433,4,1,""],paginate_by:[433,4,1,""],template_name:[433,4,1,""]},"evennia.web.website.views.characters.CharacterManageView":{page_title:[433,4,1,""],paginate_by:[433,4,1,""],template_name:[433,4,1,""]},"evennia.web.website.views.characters.CharacterMixin":{form_class:[433,4,1,""],get_queryset:[433,3,1,""],model:[433,4,1,""],success_url:[433,4,1,""]},"evennia.web.website.views.characters.CharacterPuppetView":{get_redirect_url:[433,3,1,""]},"evennia.web.website.views.characters.CharacterUpdateView":{form_class:[433,4,1,""],template_name:[433,4,1,""]},"evennia.web.website.views.errors":{to_be_implemented:[434,5,1,""]},"evennia.web.website.views.help":{HelpDetailView:[435,1,1,""],HelpListView:[435,1,1,""],HelpMixin:[435,1,1,""]},"evennia.web.website.views.help.HelpDetailView":{get_context_data:[435,3,1,""],get_object:[435,3,1,""],template_name:[435,4,1,""]},"evennia.web.website.views.help.HelpListView":{page_title:[435,4,1,""],paginate_by:[435,4,1,""],template_name:[435,4,1,""]},"evennia.web.website.views.help.HelpMixin":{get_queryset:[435,3,1,""],model:[435,4,1,""],page_title:[435,4,1,""]},"evennia.web.website.views.index":{EvenniaIndexView:[436,1,1,""]},"evennia.web.website.views.index.EvenniaIndexView":{get_context_data:[436,3,1,""],template_name:[436,4,1,""]},"evennia.web.website.views.mixins":{EvenniaCreateView:[437,1,1,""],EvenniaDeleteView:[437,1,1,""],EvenniaDetailView:[437,1,1,""],EvenniaUpdateView:[437,1,1,""],TypeclassMixin:[437,1,1,""]},"evennia.web.website.views.mixins.EvenniaCreateView":{page_title:[437,3,1,""]},"evennia.web.website.views.mixins.EvenniaDeleteView":{page_title:[437,3,1,""]},"evennia.web.website.views.mixins.EvenniaDetailView":{page_title:[437,3,1,""]},"evennia.web.website.views.mixins.EvenniaUpdateView":{page_title:[437,3,1,""]},"evennia.web.website.views.mixins.TypeclassMixin":{typeclass:[437,3,1,""]},"evennia.web.website.views.objects":{ObjectCreateView:[438,1,1,""],ObjectDeleteView:[438,1,1,""],ObjectDetailView:[438,1,1,""],ObjectUpdateView:[438,1,1,""]},"evennia.web.website.views.objects.ObjectCreateView":{model:[438,4,1,""]},"evennia.web.website.views.objects.ObjectDeleteView":{"delete":[438,3,1,""],access_type:[438,4,1,""],model:[438,4,1,""],template_name:[438,4,1,""]},"evennia.web.website.views.objects.ObjectDetailView":{access_type:[438,4,1,""],attributes:[438,4,1,""],get_context_data:[438,3,1,""],get_object:[438,3,1,""],model:[438,4,1,""],template_name:[438,4,1,""]},"evennia.web.website.views.objects.ObjectUpdateView":{access_type:[438,4,1,""],form_valid:[438,3,1,""],get_initial:[438,3,1,""],get_success_url:[438,3,1,""],model:[438,4,1,""]},evennia:{accounts:[165,0,0,"-"],commands:[170,0,0,"-"],comms:[193,0,0,"-"],contrib:[197,0,0,"-"],help:[283,0,0,"-"],locks:[288,0,0,"-"],objects:[291,0,0,"-"],prototypes:[295,0,0,"-"],scripts:[300,0,0,"-"],server:[308,0,0,"-"],set_trace:[163,5,1,""],settings_default:[358,0,0,"-"],typeclasses:[359,0,0,"-"],utils:[364,0,0,"-"],web:[393,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:{"000":[59,74,79,82,104,387],"0000":[74,79],"0004":76,"0005":199,"001":[8,76,277,387],"002":387,"003":[115,387],"004":387,"005":[59,365,387],"006":387,"007":387,"008":387,"009":387,"010":[91,387],"011":387,"012":387,"013":387,"0131018167":143,"014":387,"015":387,"015public":91,"016":387,"017":387,"018":387,"019":387,"020":387,"020t":91,"021":387,"022":387,"023":387,"024":387,"0247":76,"025":387,"026":387,"027":387,"028":387,"029":387,"030":387,"030a":91,"031":387,"032":387,"033":[365,387],"034":[76,387],"035":387,"036":387,"037":387,"038":387,"039":387,"040":387,"040f":91,"041":387,"042":387,"043":387,"043thi":115,"044":387,"045":387,"046":387,"047":387,"048":387,"049":387,"050":[365,387],"050f":91,"051":387,"052":387,"053":387,"054":[59,387],"055":[365,387],"056":387,"057":387,"058":387,"059":387,"060":387,"061":387,"062":387,"063":387,"064":387,"065":387,"066":387,"067":387,"068":387,"069":387,"070":387,"071":387,"072":387,"073":387,"074":387,"075":387,"076":387,"077":387,"078":387,"079":387,"080":387,"081":387,"082":387,"083":387,"084":387,"085":387,"086":387,"087":387,"088":387,"089":387,"090":387,"091":387,"092":387,"093":387,"094":387,"095":387,"096":387,"097":387,"098":387,"099":387,"0b16":146,"0d0":97,"0x045a0990":3,"100":[5,20,48,78,81,97,105,121,126,190,211,217,223,251,254,257,258,277,387,388,432,433],"1000":[5,41,97,128,156,254,255,256,257,258,298],"10000":432,"1000000":[5,104,381],"100m":387,"100mb":154,"101":[20,294,387],"101m":387,"102":387,"102m":387,"103":387,"103m":387,"104":387,"104m":387,"105":387,"105m":387,"106":387,"106m":387,"107":387,"107m":387,"108":387,"108m":387,"109":387,"1098":48,"109m":387,"10gold":121,"10m":150,"110":[251,365,373,387],"110m":387,"111":[55,59,178,387],"111m":387,"112":387,"112m":387,"113":[154,387],"113m":387,"114":387,"114m":387,"115":387,"115600":97,"115m":387,"116":387,"116m":387,"117":387,"117m":387,"118":[47,387],"1184":145,"118m":387,"119":387,"119m":387,"120":[20,387],"1200":371,"120m":387,"121":387,"121m":387,"122":387,"122m":387,"123":[11,141,294,375,387],"1234":[40,147,238],"123dark":103,"123m":387,"124":387,"12400":104,"124m":387,"125":[49,387],"125m":387,"126":387,"126m":387,"127":[53,75,118,144,145,146,148,150,154,160,332,387],"127m":387,"128":387,"128m":387,"129":387,"129m":387,"12s":19,"130":387,"130m":387,"131":387,"131m":387,"132":387,"132m":387,"133":387,"133m":387,"134":[55,178,387],"134m":387,"135":387,"135m":387,"136":387,"136m":387,"137":387,"137m":387,"138":387,"138m":387,"139":387,"139m":387,"140":[3,163,387],"1400":371,"140313967648552":22,"140m":387,"141":387,"141m":387,"142":[76,202,387],"142m":387,"143":387,"143m":387,"144":387,"144m":387,"145":387,"145m":387,"146":387,"146m":387,"147":387,"147m":387,"148":387,"148m":387,"149":387,"149m":387,"150":[370,387],"150m":387,"151":387,"151m":387,"152":387,"152m":387,"153":387,"153m":387,"154":387,"154m":387,"155":387,"155m":387,"156":[8,387],"156m":387,"157":387,"1577865600":100,"157m":387,"158":387,"158m":387,"159":387,"159m":387,"160":387,"160m":387,"161":387,"161m":387,"162":387,"162m":387,"163":387,"163m":387,"164":387,"164m":387,"165":387,"165m":387,"166":387,"166m":387,"167":387,"167m":387,"168":387,"168m":387,"169":387,"169m":387,"16m":387,"170":387,"170m":387,"171":387,"171m":387,"172":387,"172m":387,"173":387,"1730":143,"173m":387,"174":387,"174m":387,"175":387,"175m":387,"176":387,"1763":110,"1764":110,"176m":387,"177":387,"177m":387,"178":387,"178m":387,"179":387,"179m":387,"17m":387,"180":387,"180m":387,"181":387,"181m":387,"182":387,"182m":387,"183":387,"183m":387,"184":387,"184m":387,"185":387,"185m":387,"186":387,"186m":387,"187":387,"187m":387,"188":387,"188m":387,"189":[111,387],"189m":387,"18m":387,"190":387,"1903":110,"190m":387,"191":387,"191m":387,"192":387,"192m":387,"193":387,"193m":387,"194":387,"194m":387,"195":387,"195m":387,"196":387,"196m":387,"197":387,"1970":100,"197m":387,"198":387,"198m":387,"199":387,"1996":143,"1998":143,"199m":387,"19m":387,"1_7":8,"1d100":[121,126,211],"1d2":97,"1d20":121,"1d6":126,"1gb":154,"1st":[100,391,392],"200":[251,387,428],"2001":143,"2003":143,"2004":143,"2008":388,"200m":387,"201":387,"2010":387,"2011":[77,203,249,268],"2012":[77,201,211,212,222],"2013":143,"2014":[77,90,248,251],"2015":[63,77,146,224,240,241],"2016":[77,234,237,247,249],"2017":[6,77,100,154,204,205,210,225,239,244,245,252,254,255,256,257,258,270,271],"2018":[63,75,77,115,116,202,223,233,238],"2019":[63,77,143,222],"201m":387,"202":387,"2020":[55,63,77,78,100,199,207,251,266],"2020_01_29":381,"2020_01_29__1":381,"2020_01_29__2":381,"2021":[50,63,77,391],"202m":387,"203":[154,387],"203m":387,"204":387,"2048":150,"204m":387,"205":[371,387],"205m":387,"206":387,"206m":387,"207":387,"2076":110,"207m":387,"208":[106,387],"208m":387,"209":387,"209m":387,"20m":387,"210":387,"210m":387,"211":387,"211m":387,"212":[55,387],"2128":97,"212m":387,"213":[49,387],"213m":387,"214":[49,387],"214m":387,"215":387,"215m":387,"216":387,"216m":387,"217":387,"217m":387,"218":387,"218m":387,"219":[75,387],"219m":387,"21m":387,"220":387,"2207":239,"220m":387,"221":[366,387],"221m":387,"222":[59,365,387],"222m":387,"223":[55,387],"223m":387,"224":387,"224m":387,"225":[55,387],"225m":387,"226":387,"226m":387,"227":387,"227m":387,"228":387,"228m":387,"229":387,"229m":387,"22m":[365,387],"22nd":388,"230":[59,387],"230m":387,"231":387,"231m":387,"232":387,"232m":387,"233":[55,178,375,387],"233m":387,"234":[205,387],"234m":387,"235":387,"235m":387,"236":387,"236m":387,"237":[55,387],"237m":387,"238":387,"238m":387,"239":387,"239m":387,"23fwsf23sdfw23wef23":5,"23m":387,"240":387,"240m":387,"241":387,"241m":387,"242":387,"242m":387,"243":387,"243m":387,"244":[41,387],"244m":387,"245":387,"245m":387,"246":387,"246m":387,"247":387,"247m":387,"248":387,"248m":387,"249":387,"249m":387,"24m":387,"250":387,"250m":387,"251":387,"251m":387,"252":387,"252m":387,"253":387,"253m":387,"254":387,"254m":387,"255":[146,365,387],"255m":387,"256":[55,59,177,365],"25m":387,"26m":387,"27m":387,"280":151,"28gmcp":336,"28m":387,"29m":387,"2d6":[99,121,211],"2gb":154,"2nd":[221,375,391,392],"2pm6ywo":83,"2sgpre":392,"2xcoal":208,"300":[59,138,210,376],"3000000":104,"302":428,"30m":[365,387],"30s":[121,277],"31m":[365,387],"31st":100,"32bit":[146,148],"32m":[365,387],"32nd":99,"333":[55,59],"33m":[365,387],"340":97,"343":29,"34m":[365,387],"358":50,"358283996582031":5,"35m":[365,387],"360":100,"3600":[100,199],"36m":[365,387],"37m":[365,387],"3872":110,"38m":387,"39m":387,"3c3ccec30f037be174d3":388,"3d6":211,"3rd":[29,100,221,391,392],"3sgpast":391,"3sgpre":[391,392],"4000":[2,75,86,118,148,150,153,154,156,157,160],"4001":[2,49,50,51,52,53,72,75,89,101,118,131,140,141,144,148,150,153,154,156,157,160,341],"4002":[2,144,150,154,156],"4003":154,"4004":154,"4005":154,"4006":154,"403":11,"404":[53,101],"40m":[365,387],"41917":332,"41m":[365,387],"4201":154,"425":365,"42m":[365,387],"430000":100,"431":365,"43m":[365,387],"443":[144,150,157],"444":59,"44m":[365,387],"45m":[19,365,387],"46m":[365,387],"474a3b9f":39,"47m":[365,387],"48m":387,"49m":387,"4er43233fwefwfw":75,"4nd":29,"4th":[82,84,143],"500":[53,59,82,138,279,365,435],"50000":104,"500red":365,"502916":8,"503435":8,"505":365,"50m":387,"50mb":154,"516106":97,"51m":387,"520":59,"5242880":199,"52m":387,"530":115,"53m":387,"543":[29,375],"5432":145,"54343":29,"5434343":375,"54m":387,"550":[365,371],"550n":91,"551e":91,"552w":91,"553b":91,"554i":91,"555":[59,239,365],"555e":91,"55m":387,"565000":100,"566":41,"56m":387,"577349":387,"57m":387,"5885d80a13c0db1f8e263663d3faee8d66f31424b43e9a70645c907a6cbd8fb4":83,"58m":387,"593":388,"59m":387,"5d5":97,"5mb":199,"5x5":81,"600":388,"60m":387,"61m":387,"624660":50,"62cb3a1a":39,"62m":387,"63m":387,"64m":387,"64x64":53,"65m":387,"6666":61,"6667":[143,152,167,185,353],"66m":387,"67m":387,"68m":387,"69m":387,"6d6":97,"70982813835144":5,"70m":387,"71m":387,"72m":387,"73m":387,"74m":387,"75m":387,"760000":100,"76m":387,"775":2,"77m":387,"78m":387,"79m":387,"7a3d54":53,"8080":154,"80m":387,"8111":2,"81m":387,"82m":387,"83m":387,"84m":387,"85000":104,"85m":387,"86400":136,"86m":387,"87m":387,"8859":[16,69],"88m":387,"89m":387,"8f64fec2670c":154,"900":[223,371],"9000":427,"90m":387,"90s":389,"91m":387,"92m":387,"93m":387,"94m":387,"95m":387,"96m":387,"97m":387,"981":239,"98m":387,"990":371,"99999":120,"999999999999":280,"99m":387,"\u6d4b\u8bd5":91,"abstract":[66,82,87,111,121,216,258,360,361,362,379,382,388],"ansl\u00f6t":63,"boolean":[14,18,22,29,51,107,140,175,211,223,290,294,305,332,360,363,365,366,382,389],"break":[3,15,30,48,51,54,55,59,63,68,81,83,94,98,99,106,114,115,116,120,122,125,147,157,163,180,187,188,237,263,273,282,321,372,373,388],"byte":[16,19,29,69,314,321,323,332,340,388],"case":[3,8,9,11,13,14,15,16,18,19,20,22,27,30,31,32,36,38,40,44,45,48,49,50,51,52,53,54,55,59,61,63,64,66,67,68,69,76,79,80,81,82,83,84,87,90,91,92,93,96,99,100,101,103,104,106,107,108,109,110,111,112,113,114,115,116,117,119,120,123,125,128,129,136,137,140,143,144,145,156,157,160,161,166,167,172,174,177,180,186,187,188,191,194,195,199,200,201,202,204,207,208,211,222,223,231,239,241,246,250,263,269,273,280,282,284,285,286,289,290,294,298,302,304,317,321,325,329,343,350,353,360,361,362,363,365,367,379,385,388,395,419],"catch":[0,6,16,19,35,41,47,94,99,106,125,135,167,186,214,269,303,312,317,324,350,351,360,370,372,379,381,384,436],"char":[44,67,81,82,97,99,105,110,113,126,128,134,136,140,151,166,180,186,216,217,224,269,279,282,294,309,322,335,336,357,365,371,374],"class":[0,3,6,12,13,17,18,20,26,27,28,29,30,36,38,40,41,44,49,50,52,53,54,55,56,61,63,66,72,77,78,80,82,84,85,86,87,90,91,92,93,94,95,96,97,98,99,100,102,103,104,105,106,107,108,109,110,111,114,117,118,120,121,125,126,128,129,131,134,135,136,137,139,140,141,151,166,167,168,169,170,173,174,175,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,194,195,196,199,200,201,202,203,204,207,208,209,210,211,212,214,215,216,217,219,220,221,222,223,224,227,228,230,231,233,234,237,238,239,240,241,245,246,247,248,249,250,251,252,254,255,256,257,258,260,262,263,264,266,267,268,269,270,271,273,274,277,279,280,281,282,284,285,286,290,291,292,293,294,296,298,299,301,302,303,304,305,306,307,309,310,312,314,315,318,319,321,322,323,324,325,326,327,328,329,330,331,332,333,334,335,336,337,338,339,340,341,343,345,348,350,351,352,353,355,356,357,359,360,361,362,363,365,366,367,368,369,370,371,372,373,374,375,376,378,379,380,381,382,383,384,385,386,387,388,392,395,396,397,399,400,401,402,403,405,407,408,409,410,411,413,416,418,419,421,422,427,428,431,432,433,435,436,437,438,440],"const":270,"default":[2,3,5,6,7,8,9,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,30,34,35,36,38,40,41,43,44,45,46,48,49,50,52,54,55,56,57,59,60,61,62,63,64,66,67,69,70,71,72,73,74,75,76,77,78,79,80,81,84,85,86,87,89,90,93,95,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,115,116,117,118,121,122,123,125,128,129,131,133,134,135,137,138,140,141,144,145,148,149,150,151,152,153,154,156,157,160,163,164,166,167,169,170,171,172,173,174,175,194,196,199,201,202,203,204,205,207,209,210,211,212,214,216,217,219,220,221,222,223,224,225,228,230,231,234,237,238,240,241,244,245,247,248,249,250,251,252,254,255,256,257,258,262,263,267,269,270,271,273,276,279,280,281,282,283,284,285,286,287,288,290,294,298,299,302,303,305,306,307,310,312,314,316,317,318,322,334,335,336,341,343,344,350,351,352,353,357,358,360,361,362,363,365,367,368,370,372,373,374,375,378,379,381,382,383,384,385,388,389,395,407,413,418,419,427,433,436,437,438,440],"export":153,"final":[0,2,8,19,22,40,44,48,53,54,59,63,64,66,84,88,93,95,99,101,105,107,109,110,111,113,114,119,122,126,128,129,133,138,140,141,145,148,150,157,171,172,173,180,185,189,199,207,211,252,279,290,299,349,353,365,367,372,373],"float":[29,80,84,114,167,210,229,230,233,251,306,312,324,361,375,376,384,388],"function":[0,5,7,8,9,13,14,15,19,22,26,27,28,30,31,38,40,41,43,45,47,48,49,51,52,54,57,59,61,64,66,67,68,70,72,73,75,78,79,81,83,84,86,87,89,90,91,93,96,98,99,100,101,103,104,105,106,107,108,110,112,113,114,116,119,120,121,122,123,125,126,129,131,135,137,140,141,145,148,153,161,163,166,169,172,174,175,177,178,179,180,181,185,186,187,188,190,191,194,195,199,201,202,203,207,209,210,211,214,216,221,222,223,225,229,230,233,234,238,240,241,246,247,251,252,254,255,256,257,258,263,266,268,269,270,271,279,280,281,286,288,289,290,294,297,298,299,303,305,306,307,312,317,321,332,333,338,341,344,351,353,355,362,363,364,365,366,368,369,370,372,373,375,376,381,382,383,387,388,389,411,413,416,420,436,437,438],"g\u00e9n\u00e9ral":143,"goto":[82,105,266,273,372],"import":[1,3,5,6,7,8,10,12,13,14,15,16,18,19,20,22,26,27,28,29,30,31,32,33,34,36,38,41,43,44,45,46,47,48,49,50,51,53,54,56,57,61,63,64,66,69,72,73,74,75,76,78,79,80,81,85,86,87,89,90,91,92,93,94,95,96,97,98,99,100,101,103,105,106,107,109,110,112,113,114,117,120,122,123,125,126,128,129,131,133,134,135,136,137,138,139,140,141,147,148,151,152,154,157,161,163,174,180,190,191,199,201,202,203,204,205,207,210,211,221,222,223,233,234,237,239,240,241,247,248,251,252,254,255,256,257,258,263,268,269,271,285,290,298,299,307,312,316,324,325,346,350,353,354,360,362,366,367,370,371,372,373,374,375,385,386,388,418,438],"int":[13,20,27,29,31,41,48,80,82,91,95,97,99,105,106,113,115,129,141,166,167,172,173,175,195,199,201,204,210,211,221,223,225,227,229,230,233,241,251,252,254,255,256,257,258,270,279,280,282,287,294,299,304,306,307,309,310,312,316,317,321,322,323,324,326,330,331,332,340,341,343,353,355,357,360,361,365,368,370,371,372,373,374,375,376,379,381,385,388,391],"long":[0,8,11,16,18,19,22,27,28,30,32,35,44,47,48,54,61,66,68,69,71,72,75,76,79,80,81,82,83,84,87,91,93,96,99,100,103,105,107,108,110,113,115,116,122,123,125,126,135,137,138,140,142,143,145,151,152,154,177,180,187,201,208,212,230,238,248,257,270,280,321,326,341,365,366,373,374,375,388,391],"new":[0,2,5,7,9,11,12,13,14,15,18,19,20,22,25,26,27,30,32,33,34,36,38,39,40,43,44,45,46,49,50,51,55,56,57,60,61,63,64,67,68,71,72,74,75,76,77,80,81,82,83,84,86,87,88,90,91,93,95,96,98,100,103,104,105,106,107,108,110,114,115,116,117,118,119,120,121,123,124,125,126,127,128,129,130,132,133,134,135,137,139,141,142,143,145,146,147,148,149,150,151,152,153,154,155,156,166,167,173,174,175,177,178,180,185,187,188,190,191,192,194,202,203,204,207,212,214,215,216,219,221,222,223,227,230,234,237,238,239,240,241,247,248,251,252,254,255,256,257,258,267,268,269,271,273,279,280,281,282,284,286,290,293,294,296,298,299,302,305,306,307,309,312,321,322,323,324,330,331,332,337,344,352,353,357,360,361,362,363,365,366,368,371,372,373,374,379,381,382,388,395,397,400,401,428,433,437,439,440],"null":[49,66,107,144,396,403],"public":[11,18,53,91,99,107,112,122,141,149,150,152,154,156,157,185,199,294,357,374],"return":[2,3,5,6,8,13,16,18,19,22,26,28,29,30,31,32,36,38,40,41,45,46,48,49,51,52,53,54,59,61,63,68,71,76,78,80,81,82,84,87,89,90,91,92,93,94,95,96,99,100,101,103,104,105,106,107,108,113,114,117,119,125,126,128,129,131,134,135,137,140,141,151,156,157,161,162,166,167,169,171,172,173,174,175,177,180,185,187,190,191,194,195,196,199,200,201,202,204,207,210,211,214,215,216,217,219,221,222,223,225,227,228,229,230,233,234,238,239,240,241,245,246,247,250,251,252,254,255,256,257,258,260,263,266,267,268,269,270,271,273,279,280,281,282,284,285,286,287,289,290,293,294,296,297,298,299,303,304,305,306,307,309,310,312,317,318,321,322,324,325,326,327,329,330,331,332,333,335,336,337,339,340,341,343,344,350,351,353,355,356,357,360,361,362,363,365,366,367,368,369,370,372,373,374,375,376,379,381,382,383,384,385,387,388,389,391,395,396,397,399,400,401,403,405,407,408,410,416,418,420,427,432,433,435,436,438],"short":[3,27,35,36,46,51,59,64,71,73,76,79,82,84,93,95,98,99,100,108,111,113,115,121,129,147,151,157,161,185,202,204,216,230,237,240,241,270,280,299,366,388,391],"static":[30,49,51,52,53,72,77,80,84,99,112,121,122,133,163,164,190,197,202,227,241,249,250,357,368,407,408,410,416,425,436,440],"super":[20,36,48,61,76,78,80,91,98,99,100,103,113,116,129,135,137,202,204,241],"switch":[11,12,14,15,18,20,22,26,30,38,48,54,56,57,59,67,71,74,75,79,91,99,103,104,108,128,129,137,138,145,149,152,154,155,160,177,178,179,180,185,186,187,188,190,211,216,219,222,234,237,238,255,263,273,302,362,368,373,389],"th\u00ed":108,"throw":[11,13,40,62,76,140,153,174,306,388],"true":[0,8,12,13,14,18,19,20,22,26,27,29,30,31,32,33,35,38,41,44,47,48,49,50,51,52,53,54,59,61,62,63,66,70,72,76,80,82,84,89,90,91,93,97,99,100,101,103,105,106,107,108,112,113,114,117,119,122,125,128,129,134,136,137,138,140,147,149,152,154,155,156,166,169,171,173,174,175,177,180,185,187,188,191,194,195,196,199,201,202,204,205,207,208,210,211,214,215,216,219,221,223,225,227,230,238,239,240,241,247,251,252,254,255,256,257,258,263,266,267,271,279,280,281,282,284,286,289,290,293,294,296,298,299,302,303,304,305,306,307,310,312,317,318,321,323,330,335,340,341,351,353,355,357,360,361,362,365,368,370,372,373,374,375,376,379,383,384,385,388,389,392,395,396,397,399,400,401,402,403,408],"try":[0,3,5,6,8,13,14,16,18,19,26,27,29,30,31,32,38,40,41,50,51,54,55,56,62,63,66,68,69,72,73,74,75,76,78,79,80,81,82,84,86,87,89,90,91,93,94,95,96,97,98,99,101,103,106,107,108,109,110,111,113,114,115,116,118,120,121,123,124,125,126,127,129,130,132,133,135,136,137,138,140,141,144,145,147,148,149,150,153,154,157,161,166,169,173,175,180,194,196,201,202,207,212,231,239,240,241,247,248,250,254,255,256,257,258,263,267,268,269,271,279,282,284,286,294,298,309,312,321,336,337,341,355,360,362,365,367,368,370,371,375,384,388,396,403],"var":[51,67,145,150,199,244,336,366],"void":97,"while":[5,8,13,14,15,18,20,22,25,26,27,29,34,40,41,49,51,54,59,63,64,66,68,71,74,75,76,80,81,82,83,84,86,88,91,92,93,97,98,99,100,106,108,109,111,112,113,115,116,119,120,121,122,125,128,133,135,137,140,141,145,148,150,153,154,157,161,166,177,180,187,188,191,199,201,207,223,231,238,239,255,258,263,267,269,271,279,282,294,298,299,305,336,359,362,372,374,375,388,389,396,403,436],AIs:143,AND:[32,110,126,180,223,290,360],AWS:[154,156,199],Adding:[1,21,22,68,98,102,104,105,112,115,121,122,125,128,151,163,164,187,197,222,279,372,440],Age:[223,427],And:[0,2,3,13,18,22,27,38,44,54,66,74,75,76,79,81,89,90,91,93,98,100,101,106,113,115,116,121,123,126,138,140,174,204,252,254,255,256,257,258,282,440],Are:[22,104,108,120,143,372],Aye:79,BGs:138,Being:[99,103,115,119,129],But:[0,3,8,13,14,16,18,19,20,22,27,30,38,40,41,43,45,48,54,59,64,66,74,76,81,82,83,84,86,87,90,91,92,93,95,96,98,100,101,104,105,106,107,108,110,112,113,114,115,116,117,120,122,123,125,126,130,138,140,141,147,150,152,156,173,174,201,282,298,363,437],DNS:[150,154],DOING:223,DoS:[5,330],Doing:[22,41,86,93,107,126,141,174,177],For:[2,3,4,5,8,10,11,12,14,15,17,18,19,20,22,27,29,30,32,34,37,40,41,44,49,50,52,53,55,56,57,58,59,63,64,66,67,69,71,72,73,74,75,76,78,79,80,81,82,83,84,86,87,90,91,93,95,97,98,99,100,101,103,105,106,108,110,112,113,114,115,116,117,121,122,125,126,128,129,133,137,138,139,140,141,143,144,145,148,150,152,154,155,156,157,161,166,173,174,180,185,187,190,194,195,196,202,204,209,211,216,222,223,224,233,241,247,249,251,252,255,267,280,282,286,290,294,299,306,332,341,360,362,365,369,372,375,382,384,388,412,420,427,437],GMs:[99,121,122],Going:[122,123,270],Has:[77,146,254,255,256,257,258],His:[98,224],IDE:[7,84],IDEs:98,IDs:[74,140,141,156,229,360,388,410],INTO:[180,223,273],IOS:146,IPs:[55,145,157,244,355],IRE:[67,336],Its:[4,32,36,41,44,64,66,100,101,185,224,263,299,370,372,388],LTS:6,NOT:[13,22,32,51,91,110,154,157,180,280,290,299,355,375],Near:111,Not:[8,11,18,31,46,47,51,68,94,98,107,110,115,116,120,123,139,140,144,146,147,154,167,174,188,294,309,322,323,324,326,327,328,334,336,339,360,361,382],OBS:[57,77],ONE:157,Obs:8,One:[2,9,10,11,27,29,32,35,41,44,47,55,74,76,79,80,84,87,91,93,98,99,101,106,107,108,110,113,115,116,117,122,125,129,134,137,138,139,143,144,145,148,161,163,169,171,187,201,207,211,216,240,251,252,267,268,279,280,282,298,299,322,350,360,361,365,366,372,373,375,388,396,403],PRs:11,Such:[8,14,22,27,50,83,87,92,98,120,122,126,180,299,365,372],THAT:106,THE:223,THEN:[174,223],THERE:223,TLS:157,That:[0,3,4,5,11,16,20,22,29,31,41,44,46,47,48,54,73,74,75,76,79,80,81,82,86,87,89,90,91,95,98,100,101,106,107,108,110,111,113,114,115,119,121,122,125,126,131,133,141,155,201,202,212,251,252,280,290,299,353,372,412],The:[2,3,4,6,7,8,9,10,11,12,16,17,18,19,20,22,24,28,31,32,33,34,35,36,38,39,43,44,45,46,47,48,49,51,52,53,55,59,61,62,63,66,67,68,69,70,71,73,74,75,78,81,83,84,85,86,87,89,90,91,92,94,95,96,97,98,100,103,104,106,107,108,109,110,111,112,113,114,115,116,117,118,121,122,125,126,133,135,136,137,138,139,140,141,142,143,144,145,146,147,148,150,152,153,154,155,156,157,159,161,166,167,168,169,171,172,173,174,175,177,180,184,185,186,187,188,189,190,191,192,194,195,196,199,201,202,204,207,208,210,211,212,214,215,216,217,219,221,222,223,224,225,227,228,229,230,233,234,238,239,240,241,247,248,251,252,254,255,256,257,258,260,262,263,266,267,268,269,270,271,273,276,279,280,281,282,283,284,285,286,287,289,290,293,294,296,297,298,299,301,302,303,304,305,306,307,309,310,311,312,314,316,317,319,321,322,323,324,325,326,327,328,329,330,331,332,334,335,336,337,339,340,341,343,344,349,350,351,352,353,357,360,361,362,363,365,366,367,368,369,370,371,372,373,374,375,376,377,379,381,382,383,384,385,386,388,389,391,396,397,403,407,408,410,412,413,416,418,427,436,439,440],Their:[27,40,53,126,157,224],Theirs:224,Then:[3,5,8,11,16,45,51,53,63,74,75,76,79,82,84,95,97,101,106,113,148,156,222,274],There:[0,5,6,8,9,13,14,15,16,18,19,20,22,27,29,30,36,38,41,43,44,45,46,48,49,50,53,54,57,59,66,67,68,69,74,76,79,80,81,82,84,87,88,90,91,98,99,100,101,103,105,106,107,108,109,110,112,114,115,117,120,121,122,123,125,126,128,129,133,134,135,137,140,143,144,145,150,152,154,155,157,188,207,222,223,252,254,255,256,257,258,271,279,299,307,317,336,353,365,366,372,439],These:[5,8,11,13,14,17,22,24,25,27,29,30,31,34,40,41,44,45,46,48,50,51,52,53,59,61,64,66,67,70,74,75,76,78,80,81,82,84,89,91,95,101,106,107,108,109,110,112,113,115,116,117,121,122,125,126,137,140,149,150,154,156,157,161,165,166,171,173,175,177,179,181,185,189,195,202,207,210,233,234,238,240,241,245,251,263,269,277,279,280,282,284,285,290,294,298,299,307,311,318,337,340,341,343,352,353,354,360,362,365,369,372,373,374,375,381,382,383,388,395,404,437],USING:207,Use:[5,8,11,12,14,15,20,27,29,30,34,36,40,44,48,51,55,59,75,76,82,84,89,91,99,101,108,114,115,116,119,128,129,144,145,146,147,148,149,150,154,156,160,166,172,177,178,180,185,186,187,190,192,194,201,202,207,210,212,214,234,237,238,239,241,255,256,257,258,270,275,284,293,294,312,314,318,323,340,341,343,347,360,362,365,371,372,374,375,379,385,388,400],Used:[22,137,171,174,180,223,237,252,271,278,279,282,293,305,314,332,360,362,373,374,388,395,420],Useful:[27,82,154,440],Uses:[70,180,192,212,244,267,312,360,374,379],Using:[1,4,19,27,32,34,47,60,70,76,79,86,99,100,106,110,113,114,115,116,118,122,124,127,129,130,132,137,159,163,164,180,197,241,255,263,270,294,332,359,372,440],VCS:2,VHS:223,VPS:154,WILL:[106,146],WIS:99,WITH:[145,223],Was:185,Will:[20,31,82,84,108,120,161,166,185,207,210,219,221,239,241,282,294,297,299,310,312,321,322,362,372,374,375,376,383,388],With:[13,16,18,35,53,57,78,81,82,86,98,107,110,117,119,120,121,122,125,129,144,145,156,163,166,199,202,207,241,280,294,299,360,365,375],Yes:[22,223,370,372],__1:381,__2:381,_________________:48,_________________________:27,______________________________:27,________________________________:27,_________________________________:48,______________________________________:372,______________________________________________:27,_______________________________________________:27,____________________________________________________:27,_________________________________________________________:105,__________________________________________________________:105,__all__:[395,397,399,400],__defaultclasspath__:362,__dict__:312,__doc__:[22,30,175,188,190,191,286,368,372],__example__:6,__ge:110,__ge__:6,__getitem__:365,__gt:110,__iendswith:110,__in:110,__init_:374,__init__:[4,6,13,45,48,61,80,85,112,116,131,173,174,175,196,199,201,202,207,219,227,239,241,251,270,278,279,280,284,290,293,294,298,303,304,306,307,309,310,312,314,315,321,322,323,324,325,326,327,328,329,330,331,332,333,334,335,336,337,339,340,341,343,350,351,353,355,356,357,360,362,363,365,367,370,371,372,373,374,375,381,382,383,384,388,395,396,400,403,418,421],__istartswith:110,__iter__:13,__le:110,__lt:110,__multimatch_command:189,__noinput_command:[173,189,202,370,372,373],__nomatch_command:[189,202,214,269,370,372],__packed_dbobj__:50,__pycache__:112,__settingsclasspath__:362,__unloggedin_look_command:[192,212],_action_thre:27,_action_two:27,_all_:173,_always_:[207,375],_and_:375,_asynctest:338,_attrs_to_sync:352,_attrtyp:360,_cach:362,_cached_cmdset:174,_call_or_get:202,_callable_no:372,_callable_y:372,_callback:[19,307],_char_index:365,_character_dbref:203,_check_password:27,_check_usernam:27,_clean_nam:200,_clean_str:365,_cleanup_charact:128,_code_index:365,_compress_cont:200,_copi:[180,294],_creation:48,_dashlin:29,_data:373,_default:[27,372],_defend:27,_differ:365,_errorcmdset:174,_event:233,_every_:207,_evmenu:372,_file:381,_flag:298,_footer:22,_format_diff_text_and_opt:299,_funcnam:388,_get_a_random_goblin_nam:40,_get_db_hold:[351,362],_get_top:101,_getinput:372,_gettabl:317,_guaranteed_:375,_helper:375,_http11clientfactori:314,_init:0,_init_charact:128,_is_fight:93,_is_in_mage_guild:27,_ital:84,_italic_:147,_last_puppet:[50,400],_linklen:280,_loadfunc:370,_maptest:277,_menutre:[27,91,372],_monitor:317,_monitor_callback:33,_nicklist_cal:167,_npage:373,_oob_at_:379,_option:27,_os:199,_page_formatt:373,_pagin:373,_parsedfunc:375,_pending_request:357,_permission_hierarchi:289,_ping_cal:167,_playabel_charact:50,_playable_charact:[101,140,400],_postsav:379,_power_cal:29,_prefix:241,_process_cal:29,_quell:289,_quitfunc:370,_raw_str:365,_reactor_stop:[329,350],_recog_obj2recog:241,_recog_obj2regex:241,_recog_ref2recog:241,_regex:241,_repeat:317,_safe_contents_upd:293,_savefunc:370,_saver:[13,369],_saverdict:[13,251,369],_saverlist:[13,369],_saverset:369,_sdesc:241,_select:27,_sensitive_:419,_session:372,_set:110,_set_attribut:27,_set_nam:27,_some_other_monitor_callback:33,_start_delai:307,_static:84,_step:280,_stop_:388,_stop_serv:329,_swordsmithingbaserecip:208,_templat:84,_test:[29,171],_to_evt:373,_traithandlerbas:250,_transit_:282,_uptim:29,_validate_fieldnam:99,_weight:280,_yes_no_quest:372,a2enmod:144,a8oc3d5b:156,a_off:201,a_python_func:84,aaaaaargh:115,aardwolf:67,abandon:214,abat:123,abbrevi:[59,63,180,208,237,375],abcd:186,abid:138,abil:[8,20,22,28,32,40,51,54,68,82,97,98,99,108,112,115,119,121,122,126,129,141,154,156,240,241,248,254,255,256,257,258,294,305,312,360,431],abl:[0,2,3,5,7,10,11,13,14,15,18,19,20,22,27,28,29,35,36,40,41,43,46,50,52,53,57,66,73,74,76,78,80,81,82,86,87,89,90,92,93,98,99,101,103,105,106,108,114,115,119,120,123,125,126,128,129,131,137,140,141,144,145,148,150,151,153,154,156,157,174,177,178,180,181,185,187,194,196,202,210,216,225,234,241,247,251,254,255,256,257,258,275,279,280,360,362,369,384,388,428],abort:[19,22,27,28,36,82,91,117,125,166,175,180,194,207,214,248,269,273,280,294,297,372,373,375,388],about:[0,2,3,5,6,8,11,13,14,15,16,17,20,22,27,29,30,34,37,40,43,46,49,50,53,54,55,56,59,64,66,68,69,72,74,75,76,79,83,84,86,87,88,90,91,94,95,96,98,101,102,103,105,106,107,108,109,110,111,112,113,115,118,119,120,123,124,125,126,127,128,129,130,131,132,133,135,136,138,141,142,143,145,146,147,148,151,153,154,156,157,159,161,166,180,187,190,199,201,202,204,207,211,214,216,217,249,256,257,258,268,269,277,279,286,294,312,314,317,326,328,330,339,341,343,344,351,353,361,363,365,373,379,388,396,403,410],abov:[0,2,7,8,11,12,13,14,15,19,20,22,26,27,29,30,31,32,33,38,40,41,44,46,48,49,51,52,53,54,55,61,63,66,72,73,75,78,79,80,81,82,83,87,89,90,92,93,94,96,97,98,99,100,101,103,105,106,108,110,112,113,114,115,116,117,118,121,125,128,129,135,137,139,140,144,145,146,148,150,154,156,161,173,174,180,202,207,211,221,223,225,234,239,241,248,249,251,252,254,256,257,258,273,279,290,294,317,372,383,396,420],above_str:29,abruptli:251,absolut:[19,53,84,97,100,102,106,141,143,204,210,211,224,371,376,388],absorb:31,abspath:388,abstractus:169,abus:157,academi:143,acccount:24,accecss:375,accept:[11,13,15,18,19,20,27,29,31,32,40,47,48,67,76,82,83,99,114,115,121,122,140,141,145,147,154,166,171,172,190,201,211,223,228,231,239,240,241,248,267,269,279,280,282,294,312,317,330,356,357,361,366,372,375,384,388],accept_callback:[228,230],access:[0,8,9,11,13,14,15,18,19,20,22,27,28,29,30,31,32,33,34,35,36,38,40,41,43,44,45,46,48,49,51,52,53,55,57,61,62,64,66,68,72,74,76,77,78,80,81,82,84,85,87,89,90,91,93,95,97,98,99,101,102,105,106,107,109,110,111,112,113,114,115,118,119,121,122,125,126,128,129,137,138,140,141,144,145,148,150,151,154,156,157,160,166,169,173,174,175,177,178,180,185,186,187,188,190,194,195,196,199,202,207,209,214,222,225,227,229,238,240,241,251,254,255,256,257,258,269,270,282,284,286,287,288,289,290,293,294,297,298,299,302,304,306,307,309,312,321,322,351,353,359,360,362,363,366,367,368,375,381,387,388,396,397,403,408,410,413,427,433,438],access_kei:199,access_key_nam:199,access_obj:[289,360],access_opt:389,access_token_kei:[136,151],access_token_secret:[136,151],access_typ:[166,175,180,194,196,284,286,289,290,294,360,362,432,433,438],accessed_obj:[32,91,125,137,289,290],accessing_obj:[13,32,91,125,137,166,194,196,284,286,289,290,294,360,362],accessing_object:[13,289],accessor:[169,196,286,293,302,360,362,363,380],accessori:148,accident:[16,20,82,84,122,129,178,180,208,351],accommod:89,accomod:374,accompani:129,accomplish:[55,80,86,91,120,122,125,375],accord:[20,22,81,110,122,128,138,202,204,221,239,240,255,279,306,365,366,375],accordingli:[7,80,99,154,270],account1:428,account2:428,account:[5,8,11,13,15,17,18,19,20,22,25,26,27,28,29,31,32,34,35,36,38,39,40,41,43,44,45,46,48,49,53,55,57,59,62,64,68,71,72,74,75,76,80,81,83,84,85,89,90,91,97,98,100,101,103,106,107,108,111,112,113,114,117,120,129,136,138,140,141,146,149,151,154,156,161,163,164,170,171,172,173,174,175,176,178,180,181,182,185,186,187,188,191,192,194,195,196,202,203,204,210,212,214,215,222,223,225,227,228,230,234,241,244,247,254,256,257,258,263,266,267,268,269,271,282,284,286,289,290,293,294,296,298,299,300,302,312,316,317,332,343,344,351,352,353,360,362,365,368,372,373,375,382,383,385,386,388,389,393,394,400,407,408,410,413,418,419,426,427,428,430,433,437,440],account_cal:[177,185,188,234],account_count:353,account_id:[140,294],account_mod:180,account_nam:97,account_search:[241,294],account_subscription_set:169,account_typeclass:[386,428],accountadmin:[50,395],accountattributeinlin:395,accountchangeform:395,accountcmdset:[12,20,76,98,99,100,114,177,181,203,234],accountcreateview:431,accountcreationform:395,accountdb:[48,85,140,163,166,169,194,286,359,362,382,389,395,396,403,407],accountdb_db_attribut:395,accountdb_db_tag:395,accountdb_set:[360,363],accountdbfilterset:[407,413],accountdbmanag:[168,169],accountdbpasswordcheck:332,accountdbviewset:413,accountform:[427,431],accountid:140,accountlist:99,accountlistseri:[410,413],accountmanag:[166,168],accountmixin:431,accountnam:[99,180,192,195,212],accountseri:[410,413],accounttaginlin:395,accross:82,accru:166,acct:117,accur:[76,175,219,227,251,255,258,278,284,299,306,310,312,314,315,323,332,333,335,337,340,341,360,365,383,384,421],accuraci:[79,106,121,255,256,257],accus:126,accustom:35,acept:223,achiev:[19,22,59,74,76,84,98,110,119,123,138,217,257,312],ack:28,acl:[199,200],acquaint:[98,123],acquir:367,across:[27,29,40,41,44,48,56,61,66,68,82,97,106,115,120,122,150,166,173,174,204,223,240,269,280,282,285,294,305,307,309,321,322,336,353,373,374,375],act:[5,12,14,18,20,27,41,44,52,60,80,81,82,83,88,93,97,99,110,115,120,122,129,144,145,161,163,166,180,185,196,216,217,223,251,252,274,279,280,281,282,309,321,322,341,360,363,367,372],action1:128,action2:128,action:[3,5,13,41,49,50,59,67,74,76,77,79,82,86,87,93,95,98,100,106,112,113,115,120,125,126,128,129,134,135,140,154,166,167,185,186,190,194,201,214,216,219,221,223,241,254,255,256,257,258,263,266,270,280,285,286,298,302,303,324,343,344,345,355,362,372,373,379,395,408,411,412,413],action_count:128,action_nam:[254,255,256,257,258],action_preposit:216,actiondict:128,actions_per_turn:[254,255,257,258],activ:[0,2,9,11,14,19,20,22,36,38,41,44,49,55,59,62,63,64,72,75,84,87,89,92,100,103,107,120,133,143,148,149,152,153,154,155,160,161,166,171,174,178,180,190,194,228,245,263,267,271,293,294,297,306,317,324,325,326,327,328,332,334,335,336,343,353,355,360,361,372,373,374,375,388],activest:387,actor:[29,258,294,375,391],actor_stance_cal:70,actual:[0,2,3,5,6,7,8,9,12,13,14,15,18,19,27,29,30,32,34,35,36,40,43,44,46,47,50,51,52,53,54,57,59,61,64,66,67,69,76,79,80,81,82,84,87,90,93,96,99,101,103,105,106,107,108,109,110,111,112,114,115,116,117,119,120,121,122,123,125,126,128,129,130,133,137,138,140,141,143,144,148,151,154,156,166,171,175,177,180,185,186,188,190,191,194,196,199,201,202,204,207,208,214,219,222,223,233,237,238,240,241,248,249,250,251,252,254,255,256,257,258,263,268,269,271,276,277,279,280,281,286,289,290,293,294,299,332,335,341,343,349,351,352,353,357,358,360,362,365,367,370,372,379,382,383,384,388,405,438],actual_return:8,ada:30,adapt:[61,74,89,90,101,121,126,140,207],add:[0,2,3,5,7,8,9,10,11,12,13,14,15,16,17,18,20,22,25,26,27,29,30,31,32,33,34,35,36,38,40,41,43,44,46,47,48,49,50,51,54,56,57,59,61,62,63,66,67,69,72,73,74,75,76,77,78,79,80,81,82,83,84,86,87,90,93,94,95,96,98,99,100,101,102,103,104,105,106,107,108,110,112,113,114,115,116,117,118,120,121,122,123,125,126,128,129,134,135,136,137,139,140,141,142,143,144,146,147,149,150,151,154,155,156,163,166,169,173,174,180,185,186,187,189,191,194,201,202,203,204,205,207,211,212,214,216,221,222,227,228,230,231,233,234,237,238,240,241,244,247,248,250,251,252,254,255,256,257,258,260,263,266,267,268,269,270,273,274,275,276,279,280,281,289,290,293,294,298,299,302,303,304,305,306,307,312,317,318,322,325,326,328,330,334,341,343,344,346,354,360,363,366,370,371,372,373,374,375,379,381,383,384,395,400,407,413,435,438,440],add_:374,add_act:128,add_alia:185,add_argu:270,add_callback:[228,230],add_charact:128,add_choic:202,add_choice_:202,add_choice_edit:[76,202],add_choice_quit:[76,202],add_collumn:175,add_column:[99,374],add_condit:256,add_default:[20,90,105,125,137,174],add_dist:258,add_ev:230,add_fieldset:[395,400],add_form:[395,400],add_head:374,add_languag:240,add_map:281,add_msg_bord:221,add_row:[99,104,175,374],add_user_channel_alia:[18,194],add_view:[395,397,400],add_xp:126,addcallback:[22,294],addclass:[51,163,164,393,414],addcom:[99,107,185],added:[2,3,7,9,11,17,19,20,22,30,32,40,41,46,49,61,66,67,68,74,76,78,81,82,84,89,90,91,98,99,101,106,107,110,112,113,114,115,116,121,125,126,128,129,134,137,139,140,142,146,149,153,156,161,166,171,173,174,175,185,189,190,201,202,204,205,207,208,211,224,227,230,233,240,241,251,254,255,256,257,258,263,271,275,279,280,284,290,294,297,299,304,306,317,351,355,360,363,366,372,373,374,381,388,413,420,431,439],addendum:83,adding:[2,5,6,7,9,11,15,17,19,20,25,27,32,40,43,46,47,48,51,53,59,61,63,66,68,74,75,76,78,79,82,84,90,93,98,99,100,101,102,103,105,106,110,114,115,116,122,128,129,131,137,138,140,173,174,178,180,187,202,207,210,223,225,227,230,234,240,241,251,252,254,255,256,257,269,270,273,298,299,304,312,343,360,368,374,388,396,403],addingservermxp:327,addit:[2,20,26,29,41,43,50,53,59,67,76,79,80,82,83,89,91,99,100,101,104,106,141,144,154,157,166,167,174,175,187,194,202,205,227,228,230,240,244,250,252,258,270,280,282,290,294,297,306,323,351,360,362,372,427],addition:[81,91,258],additionalcmdset:20,addpart:238,addquot:388,addr:[309,322,323,324,368],address:[11,22,35,44,55,61,72,75,80,106,131,145,150,154,157,166,178,194,212,224,294,309,322,324,332,352,355,388,389],address_and_port:332,addressing_styl:199,addresult:238,addscript:[41,180],addservic:61,adjac:[82,258,267],adject:[6,125],adjoin:241,adjust:[22,74,83,121,138,140,148,199,225,306,372,374],admin:[12,13,16,18,22,32,38,52,53,55,57,66,75,80,90,99,101,105,112,113,120,122,129,137,140,141,152,155,161,163,164,169,170,176,180,185,190,192,194,212,214,221,267,286,290,293,294,321,322,362,368,384,393,418,440],admin_sit:[395,396,397,399,400,401,402,403],admin_wrapp:398,adminconfig:418,administr:[2,22,32,38,54,71,84,86,87,99,145,148,157,309,321,322],adminportal2serv:321,adminserver2port:321,adminsit:[50,163,164,393,417],adminstr:309,admintest:428,admit:95,admittedli:[82,119],adopt:[0,76,78,87,90,98,122,196,336,391],advanc:[5,14,20,22,27,29,40,43,44,48,53,54,55,61,66,68,76,77,81,86,87,92,95,96,99,102,110,115,118,122,129,143,180,188,222,239,241,251,254,255,256,257,258,263,327,366,370,371,372,374,440],advantag:[2,15,16,27,30,40,43,79,82,86,92,95,97,99,100,101,122,125,126,128,129,131,135,140,154,157,201,202,244,252,254,255,256,257,258,363,366],advent:203,adventur:[77,81,112,119,122],advic:143,advis:[74,76,91],aesthet:26,affair:367,affect:[5,8,9,11,13,14,15,20,22,38,41,44,46,50,57,59,82,91,100,103,115,120,122,125,126,128,138,160,166,173,190,205,207,219,233,240,247,256,263,279,294,298,362,366,374,382],affili:306,affliat:306,afford:[44,105],afraid:154,after:[0,2,8,9,10,11,13,15,16,19,20,22,26,27,32,41,45,52,53,54,59,63,64,66,74,75,76,77,78,79,80,82,84,86,90,91,92,93,94,95,96,99,105,106,107,108,112,113,114,115,116,119,120,122,123,128,129,133,134,137,138,140,143,144,148,150,154,156,157,166,173,174,175,176,177,180,187,188,190,191,194,199,201,202,204,207,209,210,211,212,214,219,220,222,223,225,230,238,240,241,250,251,252,254,255,256,257,258,263,264,267,268,269,270,271,277,280,284,293,294,299,303,305,306,312,334,335,338,343,350,351,352,353,355,357,360,365,366,367,370,372,373,379,383,386,387,388,408,411,431,433,438],after_mov:294,afterlif:122,afternoon:222,afterward:[11,66,82,93,101,106,113,117,119,202],again:[3,7,9,11,14,15,18,22,27,34,38,41,44,52,55,59,66,74,76,80,81,82,87,90,92,93,95,97,98,99,100,101,103,105,106,107,108,111,113,114,115,116,118,120,122,125,126,128,129,137,138,140,145,147,148,150,154,155,156,160,161,167,174,185,191,210,230,239,254,257,258,263,271,305,312,329,332,335,355,365,366,369,384,386],againnneven:191,against:[8,13,20,22,48,63,64,83,90,98,99,110,119,121,128,154,157,166,172,173,208,241,254,255,256,257,258,290,294,298,299,330,355,360,362,385,388],age:[223,270,427],agenc:157,agent:2,agenta:[59,365],ages:223,aggreg:143,aggress:[13,15,119,153,267,362,440],aggressive_pac:267,agi:[8,13,251],agil:13,agnost:[83,87],ago:[91,113,156,388],agre:[69,122,123,126,201,219],agree:201,ahead:[2,15,68,76,80,114,137,146,154,334],aid:[69,118,187,188,201,357],aim:[1,66,68,86,99,102,105,115,120,121,123,126,138,154,298],ain:79,ainnev:[110,126,251],air:[81,90,108,116],airport:117,ajax:[51,61,154,341,352],ajaxwebcli:341,ajaxwebclientsess:341,aka:[5,13,75,122,238,388],akin:113,alarm:[104,108],alert:[18,194,294],alexandrian:143,algebra:80,algorith:240,algorithm:[30,82,122,279,280,388],alia:[8,11,12,18,20,22,29,35,36,41,44,46,48,50,71,75,76,81,82,90,96,98,99,107,108,115,117,148,154,169,172,175,177,180,185,186,187,188,191,194,222,227,241,247,251,264,267,269,271,273,280,289,293,294,299,302,307,317,343,361,362,363,368,375,384,385,386,395,396,397,399,400,401,403,407,409,410,411,413,427,431,432,433,435,438],alias1:[180,222],alias2:[180,222],alias3:222,alias:[11,12,14,18,19,20,22,27,29,30,31,35,36,40,50,71,73,76,81,90,91,93,96,99,103,104,105,107,108,125,128,129,166,173,175,177,178,179,180,185,186,187,188,189,190,191,192,194,195,201,202,203,204,207,211,212,214,216,222,223,224,228,234,237,238,241,247,248,249,252,254,255,256,257,258,263,267,268,269,270,271,273,280,284,285,286,287,293,294,299,343,361,362,363,368,370,372,373,381,385,407,410],aliaschan:185,aliasdb:166,aliasfilt:407,aliashandl:[363,403,410],aliasnam:299,aliasstr:368,align:[29,40,99,225,365,374,375,388],alist:6,aliv:[86,267],alkarouri:387,all:[0,2,5,6,7,8,9,11,12,13,14,15,16,17,18,19,20,22,25,26,27,29,30,31,32,34,35,36,38,40,41,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,61,63,64,66,67,68,69,70,71,72,73,74,75,76,78,79,80,81,82,83,84,85,86,87,88,90,92,93,94,95,96,97,98,99,100,103,104,105,106,107,108,109,110,111,112,114,115,116,117,118,119,120,121,123,125,126,127,128,129,130,131,133,134,135,137,138,139,140,141,142,143,144,145,147,148,152,153,154,155,156,157,160,161,166,167,170,171,172,173,174,175,176,177,178,179,180,181,182,185,186,187,188,189,190,191,192,194,195,196,201,202,203,204,207,211,212,214,216,217,219,220,222,223,224,227,230,234,237,238,239,240,241,245,247,248,249,250,251,252,254,255,256,257,258,262,263,266,267,268,269,270,271,273,279,280,281,282,284,285,286,287,288,289,290,291,293,294,297,298,299,303,304,305,306,307,308,311,312,316,317,318,321,323,324,326,328,329,330,331,332,335,336,339,340,341,343,344,350,351,352,353,355,357,358,359,360,361,362,363,365,366,367,368,369,370,371,372,373,374,375,379,381,383,385,387,388,389,391,392,395,396,397,399,400,401,403,404,405,413,416,418,420,427,433,436,438,439,440],all_alias:46,all_attr:362,all_book:117,all_cannon:110,all_connected_account:353,all_displai:307,all_famili:110,all_fantasy_book:117,all_flow:117,all_from_modul:388,all_map:[82,281],all_opt:383,all_receiv:294,all_room:[14,110],all_ros:117,all_script:41,all_scripts_on_obj:41,all_sessions_portal_sync:353,all_to_categori:285,all_weapon:110,allcom:[107,185],allerror:[312,321],allevi:[8,13,68,357],allheadersreceiv:357,alli:258,alloc:154,allow:[0,2,3,6,7,11,12,13,14,15,16,19,20,22,27,29,30,31,32,34,35,36,38,39,40,43,46,48,49,50,51,52,53,54,55,56,57,63,66,68,69,70,71,72,74,75,76,77,78,79,80,81,82,84,85,86,87,89,90,93,94,95,96,98,99,102,103,105,106,108,110,112,113,114,115,116,117,120,121,125,126,128,129,131,137,138,140,141,142,144,145,147,148,149,150,151,152,153,154,155,156,157,166,167,169,171,173,174,175,177,178,179,180,185,187,188,190,191,194,195,196,201,202,204,207,209,210,211,214,216,219,221,222,223,224,230,237,239,240,241,250,251,252,254,255,256,257,258,263,267,268,269,270,271,279,280,282,284,286,287,289,290,294,298,299,303,306,307,312,316,317,319,323,325,326,327,328,335,336,337,339,344,350,351,353,355,356,360,362,363,365,366,368,370,372,373,374,375,376,379,382,383,384,386,388,398,400,407,408,413,427,432,435],allow_abort:372,allow_dupl:173,allow_extra_properti:251,allow_nan:341,allow_quit:372,allow_reus:207,allowed_attr:99,allowed_fieldnam:99,allowed_host:154,allowed_propnam:129,allowedmethod:341,allowext:357,almost:[22,30,47,48,50,57,115,116,202,204,314,321,359],alon:[8,14,27,32,35,66,77,80,93,97,99,115,123,126,128,173,187,282,307,317,343,366,368,374,375,403],alone_suffix:348,along:[5,22,27,31,41,43,45,55,59,67,82,87,88,106,110,111,115,119,120,123,125,127,137,142,166,177,201,211,240,244,251,252,257,280,290,294,341,359,413],alongsid:[84,150,223,281],alonw:302,alpha:[147,154,365],alphabet:[16,69,81,365,439],alreadi:[0,7,8,9,11,12,13,14,16,19,20,22,26,27,29,30,32,36,41,44,46,48,51,53,61,67,72,74,75,76,79,80,82,84,87,90,91,93,97,98,99,101,103,104,105,106,107,108,109,112,113,114,115,116,117,118,120,123,125,126,128,129,133,134,135,136,137,140,141,147,148,152,156,157,161,173,174,177,180,185,188,190,191,194,195,201,203,204,207,208,216,221,239,240,241,251,254,255,256,257,258,267,268,271,279,280,282,290,294,298,299,312,321,329,330,332,337,340,345,350,351,353,360,363,365,368,373,381,388,408,419],alredi:61,alright:201,also:[0,1,2,3,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,25,26,27,29,30,31,32,33,35,36,38,40,41,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,59,61,62,63,64,66,67,68,69,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,90,91,92,93,94,95,96,97,98,99,100,101,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,123,125,126,127,128,129,130,131,132,133,134,135,137,138,139,140,141,143,144,145,146,147,148,149,150,152,153,154,155,156,157,160,161,166,169,172,173,174,175,177,178,179,180,182,185,186,187,188,190,191,194,195,196,201,202,203,204,207,208,211,216,217,221,222,223,225,230,234,237,239,240,241,248,251,252,256,257,258,263,267,268,269,271,273,279,280,282,284,288,289,290,293,294,298,299,300,302,305,307,308,312,316,317,321,323,330,332,335,336,339,340,343,344,353,357,359,360,361,362,363,364,365,366,367,368,369,370,371,372,373,374,375,376,379,385,388,407,433,436,438],alt:365,alter:[51,74,81,87,89,145,360],altern:[11,18,22,27,30,35,41,46,50,59,63,73,77,78,81,84,87,93,98,103,107,118,125,135,140,145,148,152,154,159,185,188,194,238,241,258,263,289,290,330,365,368,388],although:[3,76,93,95,116,148,177,202,203,211,357,384,388],althougn:79,altogeth:[26,59,82,157],alwai:[4,8,9,11,12,13,14,15,18,19,20,22,27,29,30,31,32,34,36,38,40,41,44,45,46,47,48,51,55,59,66,67,72,74,77,78,80,82,83,84,87,89,90,91,94,95,98,99,100,101,105,106,107,108,113,114,115,116,117,118,120,122,125,126,129,137,138,141,144,145,148,152,154,166,173,174,175,177,179,180,185,187,188,191,194,195,196,207,209,214,219,234,240,241,247,251,263,279,280,282,287,289,290,293,294,298,299,307,312,314,317,321,329,332,335,336,340,341,344,351,353,358,360,361,362,363,365,368,375,379,384,385,388,389,408,420,436],always_pag:373,always_return:312,amaz:153,amazon:[143,154,199],ambianc:68,ambigu:[82,175,224,280,294,362],ambiti:[68,71],amend:11,amfl:15,ammo:90,among:[2,8,12,25,36,43,81,87,100,117,123,129,143,186,204,268,290,374,385],amor:231,amount:[13,18,41,56,59,83,120,121,126,129,157,190,254,255,256,257,258,294,353,370],amp:[39,44,61,64,163,164,308,309,312,320,322,330,338,350,353],amp_client:[163,164,308],amp_maxlen:338,amp_port:154,amp_serv:[163,164,308,320],ampclientfactori:309,ampersand:68,amphack:321,ampl:115,amplauncherprotocol:312,ampmulticonnectionprotocol:[309,321,322],ampprotocol:309,ampserverclientprotocol:309,ampserverfactori:322,ampserverprotocol:322,amsterdam:154,amus:107,anaconda:75,analog:[64,80],analys:27,analysi:245,analyz:[16,22,27,32,77,78,122,135,171,180,207,241,294,298,299,303,312,373,388,391],anchor:[194,258,286,362],anchor_obj:258,ancient:59,andr:146,android:[159,440],anew:[81,114,115,148,194,312],angelica:121,angl:[71,82,216],angri:30,angular:190,ani:[2,3,6,8,9,11,12,13,15,16,18,19,20,22,26,27,29,30,31,32,33,34,35,36,38,40,41,43,44,45,46,47,48,49,51,54,55,56,57,59,61,63,64,66,67,71,72,73,74,76,77,78,80,82,83,84,87,88,90,91,94,95,96,97,98,99,103,104,105,106,107,108,109,110,112,113,114,115,116,117,119,121,122,123,124,125,126,128,129,133,134,135,137,138,140,141,143,144,145,146,147,148,149,152,154,155,156,157,160,166,169,171,172,173,174,175,177,178,180,186,187,190,191,194,195,196,201,202,203,204,207,212,214,216,219,221,222,223,224,225,229,234,237,239,240,241,244,245,248,251,254,255,256,257,258,260,262,263,267,269,270,271,279,280,282,284,287,289,290,294,297,298,299,302,303,305,306,307,309,310,312,314,316,317,321,322,324,330,331,332,335,336,340,341,343,351,352,353,357,360,361,362,363,365,366,367,369,370,371,372,373,374,375,381,382,383,384,385,387,388,395,405,412,413,418,431,432,433,435,436,437,438],anim:[19,28,52,208],anna:[99,129,134,135,148,152,180],annoi:[55,105,106,107,116,122],annot:143,announc:[9,83,91,128,129,143,178,185,190,194,254,255,256,257,258,294],announce_al:[330,353],announce_move_from:[36,91,294],announce_move_to:[36,91,294],annoy:166,annoyinguser123:18,anonym:[62,89,101,241],anonymous_add:241,anoth:[2,3,5,6,7,8,11,13,14,15,20,22,27,30,32,36,40,44,46,49,51,54,56,59,68,69,73,74,76,77,78,79,80,81,82,87,90,93,95,97,98,99,100,101,106,107,108,110,112,115,116,118,121,122,125,128,129,133,137,139,142,144,148,150,154,155,166,173,174,177,180,185,186,191,194,201,202,204,207,216,219,223,229,234,239,241,252,254,255,256,257,258,268,271,273,278,280,284,286,287,294,297,353,360,362,366,370,372,373,375,388,413],another_batch_fil:366,another_nod:372,another_script:41,anotherusernam:49,ansi:[31,51,70,85,103,115,146,163,164,177,205,225,237,317,324,332,335,340,341,364,374,375,387,388,440],ansi_escap:365,ansi_map:365,ansi_map_dict:365,ansi_pars:365,ansi_r:365,ansi_regex:365,ansi_sub:365,ansi_xterm256_bright_bg_map:365,ansi_xterm256_bright_bg_map_dict:365,ansimatch:365,ansimeta:365,ansipars:365,ansistr:[163,365,374],ansitextwrapp:374,answer:[0,8,13,22,27,74,79,90,91,101,115,120,122,123,125,126,148,150,157,310,316,372],anticip:82,anul:144,anvil:[207,208],anwer:96,anybodi:157,anymor:[8,89,125,203,230,238,239,271,372,384],anyon:[3,32,55,63,89,90,91,93,99,105,122,128,129,135,147,154],anyth:[0,3,7,8,9,11,13,14,18,20,22,27,32,35,36,41,43,48,50,51,53,56,57,61,64,72,74,76,79,80,81,82,87,93,97,101,104,105,106,107,108,112,113,115,116,117,120,122,123,125,128,129,133,135,137,140,145,148,154,156,160,173,175,189,202,241,251,252,254,255,256,257,258,279,290,324,358,360,366,372,375],anytim:122,anywai:[15,18,27,59,68,73,74,86,89,106,108,125,153,201,203,212,279],anywher:[22,27,41,48,82,87,113,115,118,125,141,279,370],apach:[145,154,157,159,357,440],apache2:144,apache_wsgi:144,apart:[8,12,13,19,32,43,48,86,103,138,141,148,156,258,273],api:[0,3,14,16,18,19,22,24,28,30,34,36,40,41,44,48,52,77,78,81,113,117,126,136,140,151,163,164,166,179,190,192,196,207,212,284,351,360,362,366,367,373,393,439,440],api_kei:151,api_secret:151,apicli:411,apirootrout:409,apirootview:409,apocalyps:122,apostroph:16,app:[32,53,61,63,66,72,89,133,141,151,418],app_id:140,app_modul:418,app_nam:[101,418],app_ord:418,appar:[99,138],apparit:269,appeal:[27,59],appear:[0,7,11,18,19,27,30,32,41,43,50,51,53,54,58,59,62,75,76,78,81,82,84,90,91,94,104,107,110,115,119,120,129,138,148,149,152,154,156,163,177,187,204,230,241,247,271,280,294,336,337,362,374,381,403],append:[5,6,8,19,20,26,32,36,61,67,76,80,91,95,101,105,106,110,128,129,140,150,154,175,180,187,204,234,241,290,345,366,381,388],appendto:51,appform:140,appl:[201,216,294],appli:[2,7,9,14,20,22,29,30,32,47,48,53,56,74,75,76,81,82,83,103,114,122,123,127,137,138,140,144,145,166,171,173,188,205,214,216,251,254,255,256,257,258,271,279,280,290,294,298,299,302,307,353,360,361,362,365,366,371,374,376,385,388],applic:[9,32,46,49,61,66,72,111,133,140,141,143,144,148,156,157,166,199,207,216,222,223,258,312,315,325,329,350,351,357,424],applicationdatareceiv:335,applied_d:140,apply_damag:[254,255,256,257,258],apply_turn_condit:256,appnam:[13,32],appreci:[41,76,83,88,142,379],approach:[7,47,76,91,95,97,106,122,140,202,258,280],appropri:[2,7,20,22,71,75,106,137,140,144,145,151,166,178,216,225,312,351,382,384,388,416],approrpri:61,approv:[140,141],approxim:[190,388],apr:63,april:100,apt:[11,144,148,150,153,154,157],arbitrari:[6,13,14,19,29,32,48,51,57,73,79,81,82,87,113,156,166,194,214,222,251,252,258,262,269,294,299,305,310,321,341,355,360,369,381,384,388],arcan:71,arcanist:122,arch:60,archer:299,archetyp:122,architectur:[32,123,299],archiv:[112,143,157],archwizard:299,area:[8,12,76,77,80,82,99,119,120,123,134,143,146,267,271,273,279,282,289,371,372,374,388],aren:[8,11,74,89,93,95,101,133,140,157,166,204,223,230,238,256,381,384,391],arg1:[32,175,188,191,194,214,360],arg2:[175,188,191,214,360],arg:[3,22,27,29,30,31,32,34,40,47,51,54,61,64,67,70,71,76,84,90,91,93,94,95,99,103,105,107,112,114,125,126,128,129,137,139,151,166,167,168,169,172,175,180,188,189,190,191,194,195,196,199,201,204,210,214,216,217,222,224,227,230,238,239,240,241,247,248,249,252,254,255,256,257,258,260,262,263,267,268,269,270,271,275,280,281,282,285,286,287,289,290,292,293,294,297,298,299,301,302,305,306,307,309,312,317,318,319,321,322,323,324,329,330,332,333,335,336,337,340,341,345,351,353,355,357,360,361,362,363,365,372,374,375,376,378,379,381,384,386,388,389,395,396,400,403,409,410,427,433,438],arg_regex:[96,175,180,186,187,191,192,204,207,214,370,372],arglist:188,argn:360,argpars:270,argtyp:388,argu:13,arguabl:[82,115,121],argument:[3,5,8,15,18,19,20,22,26,28,29,31,32,35,36,40,41,47,48,54,55,61,64,67,71,76,79,81,89,90,91,93,98,99,100,101,103,105,107,108,109,110,116,125,129,131,141,145,166,167,171,172,174,175,177,178,180,185,186,187,188,190,191,194,195,199,202,204,207,210,214,216,219,221,222,223,224,227,229,230,239,240,241,245,247,254,255,256,257,258,262,269,270,273,281,282,290,294,298,299,303,305,306,307,310,312,317,321,323,324,330,331,332,335,336,340,341,343,344,351,352,353,355,356,360,361,362,363,365,366,368,370,371,372,373,374,375,379,382,384,385,388,413,436],argumentpars:270,argumnet:374,aribtrarili:388,aris:157,arithmet:[29,251],arm:[0,22,238],armchair:125,armi:105,armor:[93,104,121,127,204,255],armour:93,armpuzzl:238,armscii:[16,69],arnold:35,around:[3,14,15,16,20,29,32,36,40,52,53,54,59,69,71,74,78,80,81,82,84,86,87,88,89,90,93,95,99,101,105,106,107,110,112,113,114,115,116,117,120,121,122,125,126,128,129,133,134,137,143,145,148,151,154,180,188,204,208,210,229,238,241,258,263,267,268,269,271,277,280,294,365,366,374,381],arrai:[49,67,106,280,336,388],arrang:76,arrayclos:[67,336],arrayopen:[67,336],arrest:82,arriv:[44,64,74,91,93,126,180,217,273,324],arrow:[3,51,82,115],art:[59,371],articl:[8,11,16,69,89,90,95,98,143,380],article_set:380,artifact:374,artifici:[122,126],artsi:123,arx:[77,143,159],arxcod:[143,159,440],as_view:[53,194,286,362],ascii:[16,69,75,81,82,166,279,371,374,388],asciiusernamevalid:166,asdf:180,ash:208,ashlei:[77,204,223,225,252,254,255,256,257,258],asian:388,asid:75,ask:[0,3,5,6,11,26,30,33,54,77,79,82,83,88,90,99,101,106,108,113,114,120,122,123,125,126,140,145,147,148,154,173,175,180,201,210,228,239,270,310,312,339,372,376,388],ask_choic:310,ask_continu:310,ask_input:310,ask_nod:310,ask_yes_no:372,ask_yesno:310,askew:121,asn:244,aspect:[8,27,40,53,66,87,98,112,115,126,207,225],assert:[8,128,375],assertequ:8,assertionerror:[191,375],asserttru:8,asset:[133,157,199,316,416],assetown:75,assign:[2,6,11,12,13,14,18,27,32,35,36,38,40,41,46,47,51,55,82,97,99,108,112,113,114,115,117,125,128,129,137,166,171,172,174,180,185,187,188,191,205,214,222,223,241,251,254,255,256,257,258,269,290,293,294,298,299,317,324,330,332,335,351,369],assist:154,associ:[13,27,44,64,72,89,93,107,113,117,143,154,166,170,180,194,227,230,241,294,351,353,361,433],assum:[6,7,9,14,15,16,18,19,20,22,27,30,31,32,33,36,40,41,44,47,55,57,61,68,69,74,75,76,78,79,80,81,82,83,86,90,91,92,93,95,96,97,99,100,103,104,105,108,110,112,117,123,126,128,129,131,134,135,136,137,139,140,141,150,153,154,156,157,161,171,173,174,175,177,180,185,187,191,194,202,203,208,214,216,241,248,251,268,269,281,282,284,289,294,299,303,336,353,365,366,372,375,388,408,419,438],assumpt:[125,172],assur:[48,80],ast:[29,375],asterisk:[12,55,84,114,178],astronom:100,asymmetr:77,async:[140,388,440],asynccommand:54,asynchron:[5,19,22,39,60,87,92,93,167,294,321,322,336,381,388],at_:[48,379],at_access:[166,294],at_account_cr:[12,166],at_after_mov:[36,134,294],at_after_object_leav:271,at_after_travers:[36,268,294],at_again_posit:216,at_already_clos:216,at_already_consum:216,at_already_mov:216,at_already_open:216,at_appli:216,at_befor:294,at_before_drop:[255,258,294],at_before_g:[255,258,294],at_before_get:[258,294],at_before_leav:36,at_before_mov:[36,91,125,254,255,256,257,258,294],at_before_sai:[241,294],at_cannot_appli:216,at_cannot_mov:216,at_cannot_posit:216,at_cannot_read:216,at_cannot_rot:216,at_channel_cr:194,at_channel_msg:194,at_char_ent:134,at_clos:216,at_cmdset_cr:[20,22,76,90,91,94,96,98,99,100,103,105,107,114,125,128,129,137,173,181,182,183,184,201,202,203,204,207,211,214,222,234,237,238,241,249,254,255,256,257,258,263,266,267,268,269,273,343,370,372,373],at_cmdset_get:[166,294,351],at_code_correct:216,at_code_incorrect:216,at_consum:216,at_db_location_postsav:293,at_defeat:[254,255,256,257,258],at_desc:294,at_disconnect:[166,351],at_drink:216,at_drop:[255,258,294],at_empty_target:280,at_end:302,at_err:[54,388],at_err_funct:54,at_err_kwarg:[54,388],at_failed_login:166,at_failed_travers:[36,247,268,294],at_first_login:166,at_first_sav:[166,194,294],at_first_start:362,at_focu:216,at_focus_:[214,216],at_focus_climb:216,at_focus_clos:216,at_focus_cod:216,at_focus_combin:216,at_focus_drink:216,at_focus_eat:216,at_focus_feel:216,at_focus_insert:216,at_focus_kneel:216,at_focus_li:216,at_focus_listen:216,at_focus_mov:216,at_focus_open:216,at_focus_press:216,at_focus_push:216,at_focus_read:216,at_focus_rot:216,at_focus_shov:216,at_focus_sip:216,at_focus_sit:216,at_focus_smel:216,at_focus_turn:216,at_focus_us:216,at_get:[204,258,294],at_giv:[255,258,294],at_green_button:216,at_heard_sai:135,at_hit:267,at_idmapper_flush:[362,379],at_init:[45,48,166,194,267,268,269,294],at_initial_setup:[43,112,316],at_initial_setup_hook_modul:316,at_left:216,at_lock:216,at_login:[48,61,323,324,332,335,340,341,351],at_look:[166,294],at_message_rec:166,at_message_send:166,at_mix:216,at_mix_failur:216,at_mix_success:216,at_msg_rec:[166,224,294],at_msg_send:[166,167,224,262,294],at_new_arriv:267,at_no_cod:216,at_nomatch:216,at_now_add:66,at_object_cr:[20,32,36,48,90,91,95,99,103,105,125,126,129,137,139,180,216,217,222,224,241,247,249,254,255,256,257,258,263,267,268,269,294,362],at_object_delet:294,at_object_leav:[217,269,271,294],at_object_post_copi:294,at_object_rec:[36,134,217,269,271,294],at_open:216,at_password_chang:166,at_paus:[41,305],at_posit:216,at_post_all_msg:194,at_post_channel_msg:[18,166,194],at_post_cmd:[22,94,171,175,188,191],at_post_command:22,at_post_disconnect:166,at_post_func:125,at_post_login:[91,166],at_post_msg:194,at_post_portal_sync:350,at_post_puppet:294,at_post_unpuppet:294,at_pre_channel_msg:[18,166,194],at_pre_cmd:[22,171,175,188,191],at_pre_command:[22,125],at_pre_login:166,at_pre_msg:[18,194],at_pre_puppet:294,at_pre_unpuppet:294,at_prepare_room:271,at_read:216,at_red_button:216,at_reload:[190,350],at_renam:362,at_repeat:[41,48,128,136,137,167,201,210,230,254,255,256,257,258,260,305,345,376],at_return:[54,388],at_return_funct:54,at_return_kwarg:[54,388],at_right:216,at_rot:216,at_sai:[135,216,294],at_script_cr:[41,128,136,137,167,201,210,230,239,240,254,255,256,257,258,260,271,281,298,305,345,376],at_script_delet:305,at_search:112,at_search_result:[189,388],at_server_cold_start:350,at_server_cold_stop:350,at_server_connect:330,at_server_reload:[41,161,166,167,294,305],at_server_reload_start:350,at_server_reload_stop:[91,350],at_server_shutdown:[41,161,166,167,294,305],at_server_start:[41,230,305,350],at_server_startstop:[43,91,112],at_server_stop:350,at_shutdown:350,at_smel:216,at_speech:216,at_start:[41,128,167,271,302,305],at_startstop_modul:307,at_stop:[41,128,137,254,255,256,257,258,305],at_sunris:100,at_sync:[351,352],at_tick:[47,307],at_travers:[36,248,271,294],at_traverse_coordin:271,at_turn_start:256,at_unfocu:216,at_upd:[256,303],at_weather_upd:139,ating:191,atlanti:146,atleast:240,atom:[118,155],atop:271,atribut:369,att:[27,63],attach:[13,36,44,46,63,73,87,89,90,97,99,107,114,115,117,161,175,180,188,190,200,224,234,252,271,290,294,304,349,363,396,403],attachmentsconfig:89,attachscript:180,attack:[15,27,77,79,92,93,94,102,114,119,120,121,126,128,141,154,157,174,241,252,254,255,256,257,258,267,268,294,299,330],attack_count:257,attack_nam:257,attack_skil:299,attack_typ:258,attack_valu:[254,255,256,257,258],attempt:[7,12,20,27,35,72,74,76,77,82,93,106,136,146,157,177,180,214,222,245,247,254,255,256,257,258,309,312,317,350,355,362,375,388,433],attemt:29,attent:[36,81,84,97,99,157,214],attitud:98,attr1:[180,238],attr2:[180,238],attr3:180,attr:[13,27,32,40,51,76,80,99,110,180,187,202,217,269,289,298,299,351,360,362,379,384],attr_categori:396,attr_eq:289,attr_g:[32,289],attr_gt:[32,289],attr_kei:396,attr_l:[32,289],attr_lockstr:396,attr_lt:[32,289],attr_n:[32,289],attr_nam:180,attr_obj:[360,362],attr_object:362,attr_typ:396,attr_valu:396,attract:83,attrcreat:[32,360],attread:13,attredit:[13,32,360],attrib:290,attribiut:360,attribut:[3,8,12,18,19,24,26,27,31,32,33,34,35,36,40,41,44,46,47,48,55,66,68,74,76,79,80,91,92,94,95,97,98,99,101,103,104,105,106,108,110,115,121,125,126,128,129,140,141,163,164,166,169,174,180,189,190,194,199,202,203,207,216,222,229,230,237,238,241,248,251,254,255,256,257,258,263,267,268,269,280,289,293,294,297,298,299,302,303,306,317,351,359,361,362,363,368,369,370,381,382,385,388,393,394,395,397,400,401,403,410,412,413,427,432,433,438,440],attribute1:129,attribute2:129,attribute_list:360,attribute_nam:[125,166,241,294,385],attributeerror:[3,66,113,125,351,360],attributeform:396,attributeformset:396,attributehandl:[48,360,383,388,410],attributeinlin:[395,396,397,400,401],attributeobject:13,attributeseri:410,attrkei:299,attrlist:360,attrnam:[13,27,32,40,48,180,251,289,362],attrread:[13,32,360],attrtyp:[13,360,361],attrvalu:27,attryp:361,atttribut:80,atyp:290,audibl:240,audio:51,audit:[163,164,194,197,242,294],audit_callback:244,auditedserversess:[244,245],auditingtest:246,aug:[63,75],august:[75,388],aut:28,auth:[49,166,169,185,332,395,418,419,427,433,438],auth_password:332,auth_profile_modul:169,authent:[44,45,53,61,140,157,166,323,330,332,335,341,351,353,419,432,433,435,438],authenticated_respons:428,author:[138,154,166,227,230,391],auto:[3,4,11,15,18,20,21,22,27,34,36,41,44,52,55,74,77,82,84,90,111,119,122,140,148,150,151,163,166,169,175,179,180,187,190,191,240,241,251,263,273,279,280,283,286,290,294,299,302,307,309,312,323,333,340,341,350,353,362,367,373,374,413,419],auto_close_msg:263,auto_create_bucket:199,auto_help:[22,27,30,96,101,175,191,215,223,266,296,372,373],auto_help_display_kei:[175,191,372],auto_id:[397,399,401,403,427],auto_look:[27,215,223,266,296,372],auto_now_add:66,auto_quit:[27,215,223,266,296,372],auto_step_delai:273,auto_transl:240,autobahn:[323,329,340],autodoc:[49,84],autofield:140,autologin:419,autom:[2,15,29,49,50,66,98,99,143,148,150,156,157,161,433],automat:[6,9,11,15,18,19,20,26,27,29,30,32,33,40,41,43,44,48,50,53,54,57,62,66,72,73,74,76,79,81,82,83,84,86,87,94,99,100,103,105,107,110,112,113,114,115,116,117,121,125,128,129,133,134,135,137,138,145,149,150,151,152,154,156,166,173,174,175,180,185,186,188,190,191,199,201,202,203,204,207,209,216,229,230,231,238,239,240,241,249,258,270,273,281,290,293,294,304,306,307,317,326,329,332,337,350,353,355,366,370,372,373,374,375,388,412,413,420],automatical:307,autostart:[41,304,368],autumn:[6,222],avail:[0,2,3,5,7,8,9,11,13,14,18,20,22,24,27,29,30,31,32,34,36,40,41,43,44,48,49,51,53,54,56,59,61,63,67,68,69,70,74,76,78,79,80,81,82,84,85,87,90,91,95,96,98,99,100,103,104,105,106,107,108,109,112,113,114,115,116,117,119,120,122,123,125,128,129,137,140,141,142,143,144,145,148,149,152,153,154,155,156,160,161,163,166,171,172,173,174,175,177,180,182,185,186,187,188,190,191,192,201,202,203,207,211,214,216,221,222,224,230,234,237,239,240,241,249,251,252,254,255,256,257,258,263,268,269,275,290,294,297,298,299,302,317,341,343,344,355,366,367,372,373,374,375,388,405,420,432,435],available_chan:185,available_choic:[27,372],available_funct:298,available_languag:240,available_weapon:268,avatar:[67,87,112,113,115,294,332,413],avatarid:332,avenu:204,averag:[5,14,82,154,190,230,240,270],average_long_link_weight:[82,280],avoid:[0,3,6,8,11,13,19,20,22,27,38,40,48,53,59,61,71,77,81,82,83,84,103,105,113,115,116,120,122,125,138,144,145,156,173,180,239,240,263,270,271,280,289,293,317,321,331,341,351,360,362,365,366,367,370,373,375,379,410],awai:[0,3,11,13,15,16,27,30,32,40,41,44,54,62,66,74,75,78,79,80,81,82,86,90,93,101,113,116,119,121,125,126,129,137,154,186,204,219,252,255,258,263,267,269,271,279,282,294,302,352,365,388,395],await:54,awak:122,awar:[0,13,15,20,22,27,48,67,82,96,118,121,138,139,140,161,199,216,224,239,241,267,270,271,273,280,282,294,362,365],award:122,awesom:[53,72,115,148],awesome_func:116,awesomegam:150,awkward:63,aws:154,aws_access_key_id:199,aws_s3_access_key_id:199,aws_s3_cdn:[163,164,197,198],aws_s3_object_paramet:199,aws_s3_secret_access_kei:199,aws_secret_access_kei:199,aws_security_token:199,aws_session_token:199,awsstorag:[163,164,197],axe:122,axes:[82,279],axi:279,axio:49,azur:156,b64decod:384,b64encod:384,b_offer:201,baaaad:8,back:[0,2,6,7,11,13,14,15,18,19,20,22,26,27,29,31,35,41,44,48,49,51,52,53,54,55,63,64,66,69,72,74,76,79,80,81,82,84,87,90,93,97,99,101,103,105,106,108,110,112,113,114,115,116,117,118,119,120,121,122,123,124,126,128,129,131,135,137,138,140,145,148,150,154,156,161,162,163,166,174,177,180,185,189,201,202,207,216,219,241,247,251,252,257,262,263,273,296,312,317,321,324,330,332,335,350,362,369,372,373,381,388],back_exit:74,backbon:[140,366],backend:[2,8,40,41,49,50,53,72,145,163,164,199,360,388,393,407,413,417],backend_class:360,background:[0,17,27,53,54,59,93,115,138,140,150,154,157,161,205,225,365,375,436],backpack:20,backtick:[11,84,375],backtrack:11,backup:[11,36,44,54,112,154,189,366],backward:[18,26,27,99,137,381],bad:[8,41,63,74,76,82,83,87,99,105,115,117,122,123,146,245,314],bad_back:290,baddi:119,badg:10,badli:251,bag:[30,107,207,388],bake:[78,279],baker:122,balanc:[93,97,120,122,128,143,374],ball:[20,43,172,173,208,299],ballon:238,balloon:238,ban:[18,32,60,91,107,122,166,178,185,191,194,290,440],ban_us:185,band:[51,67,332,335,336],bandag:78,bandit:79,bandwidth:[199,325],banid:178,bank:120,banlist:[18,194],bar:[18,27,29,33,41,46,51,64,67,72,82,104,107,112,117,121,225,241,252,287,312,336,372,375,388],bare:[22,43,86,99,114,121,126,225,255],barehandattack:97,bargain:66,bark:208,barkeep:[3,241],barrel:119,barstool:125,barter:[41,120,134,148,163,164,197],bartl:143,base:[2,3,8,14,17,18,22,27,29,30,32,34,36,41,44,47,48,51,52,53,56,64,66,68,69,71,75,76,77,78,80,81,84,85,86,87,89,90,94,95,97,98,99,101,102,105,108,110,112,113,116,117,118,119,120,121,123,126,127,129,131,133,136,138,140,141,143,145,148,150,152,153,154,156,157,159,163,166,167,168,169,171,173,174,175,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,194,195,196,199,200,201,202,203,204,207,208,209,210,211,212,214,215,216,217,219,220,222,223,224,227,228,230,231,233,234,237,238,239,240,241,245,246,247,248,249,250,251,252,254,255,256,257,258,260,262,263,264,266,267,268,269,270,271,273,274,277,278,279,280,281,282,284,285,286,290,292,293,294,296,298,299,301,302,303,304,305,306,307,309,310,312,314,315,318,319,321,322,323,324,325,326,327,328,329,330,331,332,333,334,335,336,337,338,339,340,341,343,344,345,348,350,351,352,353,355,356,357,360,361,362,363,365,366,367,370,371,372,373,374,375,376,378,379,380,381,382,383,384,385,386,387,388,392,395,396,397,398,399,400,401,402,403,405,407,408,409,410,411,412,413,418,419,421,422,427,428,431,432,433,435,436,437,438,439,440],base_account_typeclass:12,base_channel_typeclass:18,base_char_typeclass:136,base_character_typeclass:[103,136,140,141,166,180],base_field:[395,396,397,399,400,401,403,427],base_filt:407,base_guest_typeclass:62,base_object_typeclass:[40,109,113,299,362],base_script_path:289,base_script_typeclass:41,base_set:75,baseapplic:216,baseclass:268,basecommand:107,baseconsum:216,basecontain:367,baseinlineformset:[396,403],baseline_index:388,basenam:413,baseobject:48,baseopt:382,basepath:388,basepermiss:408,baseposition:216,basest:219,basetyp:[294,366],basetype_posthook_setup:294,basetype_setup:[32,95,166,167,194,294],basetypeclassfilterset:407,bash:[2,148,268],basi:[22,82,83,89,100,112,133,154,188,196,199,241,280,341,362,371],basic:[0,2,9,12,16,17,20,22,32,35,51,53,56,57,61,64,66,69,72,74,75,76,77,79,81,82,93,95,97,98,99,100,101,102,103,107,108,112,113,114,115,116,118,119,120,121,122,125,126,128,131,134,135,137,138,140,141,143,161,166,167,180,185,187,194,196,207,223,229,238,251,255,257,268,289,291,294,343,386,427,436,440],basicmapnod:[82,280],bat:[75,148],batch:[24,81,112,143,148,163,164,179,299,321,360,363,364,440],batch_add:[299,360,363],batch_cmd:15,batch_cod:[14,366],batch_code_insert:14,batch_create_object:299,batch_exampl:366,batch_import_path:[14,15],batch_insert_fil:15,batch_update_objects_with_prototyp:299,batchcmd:[120,122,179],batchcmdfil:[15,366],batchcod:[15,81,107,122,130,143,179],batchcode_map:81,batchcode_world:81,batchcodefil:14,batchcodeprocessor:366,batchcommand:[15,76,107,119,130,148,179,366],batchcommandprocessor:366,batchfil:[15,16,81,366],batchprocess:[163,164,170,176],batchprocessor:[14,163,164,179,364],batchscript:[14,366],batteri:166,battl:[119,128,143,157,254,255,256,257,258],battlecmdset:[254,255,256,257,258],bayonet:78,baz:252,bazaar:68,beach:81,bear:[239,267],beat:[120,122,128],beaten:[128,269],beauti:[76,80,140],beazlei:143,becam:[93,138],becasu:4,becaus:[2,3,12,13,14,16,20,29,30,32,36,40,45,47,48,49,50,53,54,55,56,61,63,68,74,75,76,79,81,82,84,87,90,91,93,96,97,106,107,110,113,114,115,116,121,123,125,126,128,133,134,138,140,141,144,147,150,174,187,192,194,212,219,229,240,257,271,277,279,294,305,324,330,343,353,365,375,382,384,388,395,396,403,413,418],becom:[3,9,27,32,35,40,43,54,66,67,70,74,76,80,81,83,84,87,88,97,103,107,111,112,113,114,115,120,122,125,126,142,177,191,208,224,238,240,252,255,294,299,351,366,372],been:[2,3,5,9,11,14,15,27,29,30,41,44,57,63,72,74,76,79,80,82,84,89,90,99,101,105,106,110,115,117,128,129,134,138,140,141,143,145,157,162,173,174,179,180,185,188,194,202,207,230,238,239,241,254,255,256,257,258,269,271,280,286,290,293,294,298,299,306,307,314,326,330,332,340,350,351,352,353,355,360,362,366,370,371,388,391,392,403,418,434,439],befit:48,befor:[1,3,5,6,7,8,10,11,13,14,15,16,18,19,20,22,27,30,32,33,38,40,41,43,45,46,47,48,50,51,53,54,55,63,65,66,68,69,72,76,78,79,80,81,82,83,89,90,91,92,93,97,98,99,101,103,105,106,107,108,110,113,114,115,116,118,120,122,125,128,129,134,135,137,138,139,140,141,143,145,150,151,153,154,156,157,166,171,172,175,180,185,187,188,192,194,200,207,209,210,212,219,222,223,224,225,229,233,240,241,244,245,250,251,252,254,255,256,257,258,263,266,268,269,271,279,280,289,290,293,294,297,298,299,306,307,312,321,330,332,338,344,346,348,350,351,355,357,360,365,366,367,368,372,373,374,376,380,381,384,388,418,432,438],beforehand:[11,13,367],beg:15,beggar:74,begin:[0,3,5,7,8,14,15,22,26,30,32,45,54,74,76,79,81,84,86,89,91,99,101,106,108,110,115,120,124,128,134,139,141,152,186,187,229,240,241,252,254,255,256,257,258,279,294,365,366,372,375,385,440],beginn:[86,102,106,113,118,120,143],behav:[8,13,14,45,76,93,101,106,108,114,115,116,161,388],behavior:[5,13,20,22,26,30,40,51,59,72,74,82,101,112,138,166,175,191,204,207,223,256,258,269,270,280,312,360,372,396,403],behaviour:[13,20,22,32,138,358,368,374,388],behind:[6,11,13,22,31,40,46,55,59,80,82,84,86,90,116,119,138,148,179,239,269,302,307,379],behvaior:373,being:[2,3,5,8,11,13,14,20,22,27,29,30,34,40,41,45,47,48,52,54,64,67,71,74,76,78,81,83,87,90,91,92,97,101,106,109,111,112,113,115,119,121,122,123,135,138,140,147,148,150,154,157,166,172,180,186,190,191,194,199,210,211,224,234,240,241,251,254,255,256,257,258,262,263,269,280,286,294,314,317,324,344,353,355,360,362,365,366,368,372,373,374,375,388,391,392,396,403,407,410,418,439],beipmu:146,belong:[15,46,64,73,82,87,89,110,115,140,157,174,241,252,271,286,297],belov:122,below:[2,3,5,7,8,11,13,14,15,16,18,19,20,22,26,27,30,31,32,35,38,40,41,44,48,54,55,57,59,63,67,73,74,75,76,78,80,81,82,84,87,91,93,95,98,99,100,101,103,114,115,116,120,125,126,129,133,134,135,140,141,144,145,148,150,154,156,161,169,180,188,196,202,204,207,208,211,221,225,240,241,251,252,254,255,256,257,258,264,270,279,280,286,293,294,302,324,344,360,362,363,372,374,380,412],beneath:19,benefici:[80,256],benefit:[8,63,68,121,123,142,150,154,156,157,174,360,366,372],berserk:251,besid:[7,15,20,63,74,81,114,225],best:[0,26,41,43,53,63,68,72,75,76,83,98,99,109,112,120,123,140,146,150,152,157,187,202,240,252,270,299,312,332,374,382,439],bet:[20,44,50,362],beta:[25,147,154],betray:27,better:[3,5,16,27,29,30,40,41,46,59,66,68,74,75,78,82,86,87,88,91,96,99,103,105,106,112,113,120,123,125,126,140,141,145,203,208,248,255,269,280,294,299,329,332,335,343,360,366,418],bettween:126,between:[2,5,11,12,15,18,20,22,29,30,35,40,41,44,46,51,54,59,61,63,67,69,73,74,76,79,80,82,84,87,91,92,95,97,98,99,101,105,106,107,112,113,115,116,119,121,122,126,128,129,136,137,138,150,154,156,172,175,180,185,187,190,191,196,201,204,205,207,208,229,230,233,234,237,239,240,241,250,251,252,254,255,256,257,258,277,279,280,281,282,294,299,307,312,321,324,331,332,335,336,343,344,351,363,365,366,368,372,374,375,376,388,421],bew:222,bewar:95,beyond:[8,12,22,28,36,50,67,75,76,83,87,91,98,122,141,154,175,180,191,196,202,214,241,252,263,269,298,343,360,362,372,374],bg_colormap:387,bgcolor:387,bgfgstart:387,bgfgstop:387,bgstart:387,bgstop:387,bias:180,bidirect:321,big:[13,14,15,18,22,32,50,53,73,75,78,83,92,93,98,107,108,116,119,122,123,126,172,187,189,250,251,263,366,373,385,388],bigger:[61,83,90,101,110,129,240,251,277,279],biggest:[152,251,388],biggui:22,bigmech:90,bigsw:93,bikesh:110,bill:[154,157],bin:[2,75,87,89,111,148,153,156],binari:[5,82,145,148,323,325,340],bind:150,birth:427,bit:[0,3,7,8,11,17,25,40,41,51,53,55,63,74,75,76,77,79,89,93,95,100,101,103,107,110,111,112,115,116,118,120,122,123,125,137,141,148,153,185,192,208,212,290,294,366],bitbucket:98,bite:[81,120],bitten:110,black:[59,116,126,138,365],blackbird:143,blackbox:207,blackhaven:82,blacklist:[18,157,185],blade:[122,208,268],blank:[27,66,134,141,166,223,365],blankmsg:223,blargh:40,blast:[207,208],blatant:55,blaufeuer:110,bleed:[11,59,112,251,374],blend:238,blender:238,blind:[59,135,263],blind_target:263,blindcmdset:263,blindli:290,blink:[108,263,387],blink_msg:263,blist:6,blob:[79,84],block:[5,6,23,24,26,27,29,32,41,53,55,59,71,86,87,91,92,99,101,106,107,115,118,129,131,140,141,154,157,161,178,179,180,215,216,221,222,258,266,267,268,271,277,280,287,296,331,366,372,375,388,436,439],blockedmaplink:[82,280],blocker:82,blocking_cmdset:91,blockingcmdset:91,blockingroom:91,blocknam:53,blocktitl:101,blog:[83,86,88,118,143,154,155],blond:121,blowtorch:146,blue:[14,59,98,103,114,115,122,138,268,365],blueprint:[51,81,98],blurb:147,board:[32,34,80,120,137,143],boat:[20,137,174],bob:[22,49,103,178,221],bodi:[8,17,19,22,27,40,53,71,76,79,84,99,115,121,131,140,228,234,287,314,368],bodyfunct:[41,108,163,164,197,259,264],bog:[90,120],boi:46,boiler:[48,53],bold:147,bolt:299,bone:[86,121,126],bonu:[122,126,154,255,256,302],bonus:[93,122,255],book:[40,53,72,80,100,106,117,122,126,131,143,216],bool:[12,20,22,27,31,33,41,82,166,167,169,171,172,173,174,175,180,185,187,194,195,196,201,202,204,207,210,211,216,219,221,223,225,227,230,239,240,241,251,252,254,255,256,257,258,271,279,280,281,282,284,285,286,290,293,294,298,299,302,303,304,305,306,307,312,317,318,323,324,329,330,331,335,340,341,349,351,353,355,360,361,362,363,365,366,368,370,372,373,374,375,376,379,381,383,385,387,388,391,395,397,400,401,408],booleanfield:[140,395,401],booleanfilt:407,boom:[90,113],boost:287,boot:[18,32,107,113,156,161,178,185,194,307],boot_us:185,bootstrap:[24,53,60,89,440],border:[81,99,104,177,191,216,219,221,223,371,374],border_bottom:374,border_bottom_char:374,border_char:374,border_left:374,border_left_char:374,border_right:374,border_right_char:374,border_top:374,border_top_char:374,border_width:374,borderless:99,borderstyl:223,bore:[55,86,120,121,157],borrow:[20,148,173,321],bort:[28,372],boss:99,bot:[5,111,140,149,152,157,163,164,165,169,185,317,323,324,331,353,433],bot_data_in:[167,317],both:[0,2,6,7,8,9,11,13,16,18,19,20,22,29,30,31,33,35,43,44,48,49,53,57,61,66,67,74,76,77,80,81,82,83,84,91,96,97,98,99,100,101,105,106,110,112,114,115,116,121,122,123,125,128,133,137,140,141,143,145,149,150,151,154,157,161,171,173,180,185,190,196,201,205,216,221,225,234,238,247,251,252,257,258,269,273,279,280,282,290,294,298,299,300,302,305,307,321,330,340,341,343,350,352,355,360,361,365,368,372,374,375,383,388,410,413],bother:[9,93,157,360],botnam:[152,185,324,353],botnet:157,boto3:199,boto:199,botstart:167,bottom:[5,7,8,28,48,50,51,53,81,82,89,95,98,99,101,105,107,115,125,140,147,150,174,199,234,257,271,279,299,366,373,374],bottommost:82,bought:105,bouncer:[19,157,371],bound:[19,68,84,98,112,113,227,251,279,284,388],boundari:[82,250,251,388],bounti:88,bow:[122,299],bowl:207,box:[3,7,29,32,34,35,40,43,49,62,72,74,78,79,81,86,99,101,108,110,113,114,115,116,118,121,126,129,131,144,148,151,154,180,214,241,273,279,289,321,366,427],brace:[74,76,91,106,294,365],bracket:[71,84,190,205,375],branch:[2,75,77,82,83,84,107,148,156,219,239,252,439],branchnam:11,brandymail:234,bread:[56,78,207],breadrecip:207,breadth:258,break_lamp:263,break_long_word:374,break_on_hyphen:374,breakag:122,breakdown:190,breakpoint:[7,56,163],breath:[113,116],breez:[41,139],breviti:[99,115],bribe:27,brick:104,bridg:[44,64,76,85,88,119,143,145,269],bridgecmdset:269,bridgeroom:269,brief:[11,50,56,57,66,79,90,91,99,105,108,111,118,131,161,223,270,294,356],briefer:[36,161],briefli:[56,113,122,154,161,263],bright:[59,82,103,115,138,205,263,365],brightbg_sub:365,brighten:59,brighter:59,brilliant:11,bring:[80,82,121,123,129,132,133,137,140,145,156,157,252,258,267,280,354],broad:95,broadcast:[166,194,321],broader:[95,241,294],broken:[30,59,68,84,120,240,263],brown:365,brows:[7,11,51,75,86,91,95,99,100,101,105,106,111,129,131,133,154,157,433],browser:[0,49,51,52,53,56,58,72,75,84,87,88,101,111,112,118,131,133,140,141,144,148,150,153,154,157,160,340,341,435,436],brunt:122,brutal:270,bsd:142,bsubtopicnna:191,btest:59,btn:17,bucket:[199,200,244],bucket_acl:199,bucket_nam:199,buf:[121,370],buff:121,buffer:[22,26,51,76,189,199,200,314,341,370],buffer_s:199,bug:[0,3,8,11,14,54,77,83,88,98,115,120,122,123,129,142,147,161,294,362],buggi:[13,372],bui:[105,122,201],build:[2,5,7,10,13,14,15,16,18,19,20,23,24,27,30,34,35,36,40,44,46,48,51,53,54,66,68,69,71,73,75,78,82,86,87,98,101,102,103,107,109,110,112,113,114,115,118,119,121,123,124,125,127,129,132,133,136,143,148,153,156,163,164,170,172,176,178,179,186,187,190,202,219,221,222,228,240,241,247,267,270,273,274,276,277,279,280,281,290,294,298,299,312,323,324,366,374,427,439,440],build_link:280,build_match:172,buildchannel:18,builder:[12,15,18,29,30,32,38,40,46,49,50,57,68,76,82,89,91,97,99,105,109,113,120,123,125,129,178,180,185,186,190,202,204,222,223,238,241,247,263,269,270,271,273,290,294,343,362,366,408],buildier:299,building_menu:[163,164,197],buildingmenu:[76,202],buildingmenucmdset:202,buildprotocol:[309,322,323,324],buildshop:105,built:[5,14,19,24,27,29,56,61,72,84,87,98,99,112,115,120,121,123,126,129,137,147,148,153,156,157,169,196,238,240,279,280,281,286,293,302,307,360,362,363,366,370,372,380],builtin:325,bulk:[30,157],bullet:[84,120],bulletin:[32,34,120,143],bulletpoint:84,bunch:[16,19,68,69,99,110,114,116,121,125],burden:104,buri:[68,119],burn:[119,120,123,126,154,268],busi:[87,88,121,154,201],butter:[56,207],button:[7,11,14,15,20,22,32,35,49,50,51,52,53,64,67,72,75,112,114,115,140,141,180,208,216,263,268,344,373,400],button_expos:268,buy_ware_result:105,byngyri:240,bypass:[4,32,38,54,57,89,99,108,113,119,125,128,138,166,180,194,247,290,362,368,385,388,419],bypass_mut:[18,194],bypass_superus:32,bytecod:365,bytestr:[321,388],bytestream:388,c20:185,c_creates_button:344,c_creates_obj:344,c_dig:344,c_examin:344,c_help:344,c_idl:344,c_login:[5,344],c_login_nodig:344,c_logout:[5,344],c_look:[5,344],c_measure_lag:344,c_move:344,c_moves_:344,c_moves_n:344,c_social:344,cabinet:39,cabl:104,cach:[8,13,22,41,48,51,52,53,55,66,82,92,95,113,144,166,175,190,194,199,222,250,267,268,279,290,293,294,316,355,360,362,363,364,377,379,388,396,403],cache_inst:379,cache_lock_bypass:290,cache_s:[355,379],cached_properti:388,cactu:257,cake:20,calcul:[19,41,54,82,91,95,110,126,128,129,174,210,222,233,240,250,251,254,255,257,258,277,280,299,376,379,388,432,438],calculate_path_matrix:279,calculated_node_to_go_to:27,calculu:97,calendar:[77,210,233,376],call:[0,2,3,5,8,9,11,12,13,14,15,18,19,20,26,27,29,31,32,33,36,40,41,43,44,45,47,48,49,51,52,54,56,61,64,66,67,68,70,72,74,76,78,79,80,81,82,84,87,89,90,91,92,93,94,95,97,98,99,100,101,103,105,106,107,108,109,110,111,112,114,115,116,117,120,123,125,126,128,129,131,134,135,136,137,138,139,140,141,145,148,149,151,152,153,154,156,160,161,166,167,171,172,173,174,175,177,180,185,188,189,190,191,192,194,201,202,204,207,208,209,210,211,212,214,216,217,219,221,222,223,224,227,228,229,230,231,233,238,239,240,241,247,249,251,252,254,255,256,257,258,260,262,263,266,267,268,269,270,271,280,282,289,290,293,294,297,298,299,303,305,306,307,309,312,314,316,317,321,322,323,324,325,326,327,328,330,331,332,333,334,335,336,337,339,340,341,343,344,345,350,351,352,353,354,357,360,362,363,365,366,367,368,370,372,373,374,375,376,379,381,383,384,385,388,396,403,408,413,427,431,433,436,437,438],call_async:54,call_command:8,call_ev:[74,229],call_inputfunc:[64,351,353],call_task:306,callabl:[26,27,33,40,47,52,53,70,80,129,202,219,223,230,252,256,279,294,297,298,299,303,307,310,312,314,322,353,367,370,372,373,375,381,383,384,388],callables_from_modul:388,callbac:76,callback1:372,callback:[19,22,26,27,31,33,47,54,76,89,93,100,167,190,202,210,223,227,228,229,230,231,233,245,252,266,294,303,306,307,310,312,314,317,321,322,323,325,339,340,343,354,372,376,381,386,388,440],callback_nam:[227,230],callbackhandl:[163,164,197,226],called_bi:171,calledbi:388,caller:[3,13,14,18,19,22,26,29,30,32,35,36,47,48,54,64,66,67,71,76,78,80,81,82,84,90,91,92,93,94,96,97,99,103,104,105,106,107,113,114,117,125,126,128,129,137,151,167,171,172,173,175,177,180,181,185,186,187,188,190,191,202,207,214,215,216,217,223,228,234,238,241,249,252,263,266,268,269,270,271,290,294,296,298,299,366,370,372,373,375,382,388],callerdepth:388,callertyp:171,callinthread:357,calllback:229,callsign:[27,216,317],calm:81,came:[75,81,86,90,91,107,115,139,143,267,271,294],camp:81,campfir:81,campsit:81,can:[0,2,3,4,5,6,7,8,9,10,11,12,14,15,16,17,18,19,20,22,25,26,27,29,30,31,32,33,34,35,36,38,39,40,41,43,44,45,46,47,48,49,50,51,52,53,54,55,57,58,59,61,62,63,64,66,67,68,69,70,72,73,74,75,77,78,79,80,81,82,83,84,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,103,104,105,106,107,108,109,110,111,112,113,114,115,118,119,120,121,123,125,126,128,129,131,132,133,134,135,136,137,138,140,141,142,143,145,146,147,148,149,150,151,152,153,154,155,156,157,160,161,165,166,167,169,172,173,174,175,177,178,180,185,186,187,188,189,190,191,194,195,196,199,200,201,202,204,205,207,210,211,215,216,217,219,221,222,223,224,225,229,230,233,234,238,239,240,241,244,247,251,252,254,255,256,257,258,262,263,267,268,269,270,271,273,275,276,279,280,282,284,286,289,290,293,294,297,298,299,300,302,303,305,307,312,323,327,330,332,335,336,340,341,343,344,350,351,352,353,354,357,358,359,360,361,362,363,365,366,367,368,370,371,372,373,374,375,382,383,384,385,386,388,389,391,395,408,410,413,427,432,433,435,436,438],can_:229,can_list_top:187,can_read_top:187,cancel:[19,31,93,125,190,229,254,255,256,257,258,294,306],candid:[22,76,117,125,140,172,238,241,287,294,385],candidate_entri:287,candl:174,cannon:110,cannot:[4,8,9,13,14,15,19,20,22,26,27,34,38,40,43,46,50,54,57,59,63,75,76,79,82,88,90,91,92,93,95,96,97,101,105,112,113,114,117,119,120,123,126,129,140,148,154,166,167,174,177,180,187,202,207,219,222,223,227,230,247,252,258,267,268,273,285,290,294,298,307,360,367,369,371,374,379,388],cantanker:382,cantclear:223,cantillon:143,cantmov:91,canva:80,capabl:[2,32,44,64,67,80,87,99,120,177,249,317,339,427],cape:98,capfirst:101,capit:[29,55,67,75,87,91,93,115,116,122,129,180,221,224,239,240,251,365,375],captcha:140,caption:84,captur:[91,106,381,438],car:[35,137],carbon:[207,208],card:[82,157,281,282],cardin:[80,82,96,99,180,279,280,281],care:[22,27,54,55,66,74,80,82,84,87,89,96,97,98,100,106,113,115,122,123,128,137,138,139,142,145,161,166,173,194,207,214,222,238,241,266,267,269,273,279,289,294,343,362,366,370,372,373,374,388],career:123,carefulli:[5,44,50,81,86,140],carri:[20,32,78,104,105,108,112,120,125,128,134,196,204,208,255,267,289,351,361],carv:78,cascad:379,case_insensit:216,caseinsensitivemodelbackend:419,cast:[40,46,92,116,252,257],caster:[92,257],castl:[14,81,82,109,119,222,269],cat:[150,153],catchi:89,categor:46,categori:[2,8,13,22,27,30,40,46,66,73,78,82,84,95,101,107,110,117,175,176,177,178,179,180,185,186,187,188,189,190,191,192,201,202,203,204,207,211,212,214,217,222,223,224,228,234,237,238,241,247,248,249,252,254,255,256,257,258,263,267,268,269,270,273,284,285,286,287,289,294,298,299,343,360,361,363,368,370,372,373,380,382,385,388,407,435],categoris:97,category2:380,category2_id:380,category_id:380,category_index:252,cater:[93,123],caught:[3,6,27,125,195],cauldron:208,caus:[3,8,13,20,32,51,55,73,87,93,94,107,113,128,129,134,145,154,174,194,212,263,271,280,294,343,372,374,388],caution:[51,100,372],cave:[79,82,273,274],caveat:[54,70,125,199],caveman:97,cblue:11,cboot:[55,107,185],cc1:148,cccacccc:371,ccccc2ccccc:99,cccccccc:371,ccccccccccc:99,cccccccccccccccccbccccccccccccccccc:371,ccccccccccccccccccccccccccccccccccc:371,ccreat:[99,107,149,152,155,185],cdesc:[107,185],cdestroi:[107,185],cdmset:20,cdn:157,ceas:180,cel:371,celebr:120,cell:[0,81,99,101,119,223,371,374],celltext:371,cemit:107,censu:361,center:[29,40,53,56,80,81,82,89,95,219,221,225,273,279,365,374,388],center_justifi:40,centos7:150,centr:[30,81],central:[8,18,31,78,81,82,87,139,156,166,174,191,194,196,207,217,277,294,299,321,368,372,379,416],centre_east:81,centre_north:81,centre_south:81,centre_west:81,centric:[32,44,75,129,241],cert:[144,333,337],certain:[6,14,15,20,22,32,41,44,45,47,56,57,58,67,68,83,84,87,91,93,112,121,122,137,145,153,154,180,195,201,240,244,251,263,268,271,279,289,298,305,312,318,335,339,354,360,361,370,374,375,385,388,396,413,427],certainli:[16,96],certbot:[150,154,157],certfil:[333,337],certif:[144,154,333,337,440],certonli:150,cet:381,cfg:150,cflag:153,cgi:154,cha:[27,99],chain:[27,40,54,74,79,82,93,110,229,230,280,312,344,372],chain_1:74,chainedprotocol:332,chainsol:110,chair:[14,36,46,48,106,120],challeng:[102,116,119,126,143,217],chan:[18,185],chanalia:185,chanc:[5,11,20,29,47,62,76,78,90,92,113,119,120,126,128,147,173,208,254,255,256,257,258,263,268,269,344],chance_of_act:[5,344],chance_of_login:[5,344],chandler:128,chang:[0,2,3,5,8,10,12,13,14,15,16,18,20,22,25,26,27,29,30,31,32,33,34,35,36,40,41,43,44,45,46,47,48,51,55,56,57,59,60,62,64,66,72,75,76,78,80,81,82,83,85,87,89,90,93,94,95,98,100,103,105,106,107,108,110,112,114,115,116,118,120,121,125,126,127,128,129,131,135,137,138,139,140,141,142,144,145,147,148,150,151,153,154,156,159,161,166,174,175,177,178,180,185,186,191,194,201,202,204,207,212,216,219,222,224,225,227,230,237,240,241,247,248,250,251,252,254,255,256,257,258,267,268,269,270,271,280,281,282,284,286,294,298,299,302,303,305,306,307,312,317,328,343,350,351,358,360,362,366,369,370,373,374,375,381,382,383,384,395,396,397,400,401,403,436,438],change_name_color:252,changelock:[18,185],changelog:111,changepag:141,channel:[12,13,19,20,22,23,24,32,34,35,45,46,48,52,53,55,57,66,85,86,88,104,107,112,113,117,120,129,143,149,151,152,154,155,159,163,164,166,167,173,174,180,185,191,193,194,195,196,230,263,316,323,324,331,344,351,353,360,368,381,385,393,397,426,428,430,440],channel_:[18,194],channel_ban:[18,185],channel_color:91,channel_connectinfo:351,channel_detail:432,channel_list:432,channel_list_ban:185,channel_list_who:185,channel_msg:[18,166],channel_msg_nick_pattern:[18,194],channel_msg_nick_replac:[18,185,194],channel_msg_pattern:185,channel_prefix:[18,91,194],channel_prefix_str:[18,194],channel_search:195,channel_typeclass:428,channeladmin:397,channelalia:[18,185,194],channelattributeinlin:397,channelcl:185,channelcmdset:[20,107],channelconnect:196,channelcr:185,channelcreateview:194,channeldb:[48,85,163,194,196,359,397],channeldb_db_attribut:397,channeldb_db_tag:397,channeldb_set:[360,363],channeldbmanag:[195,196],channeldeleteview:194,channeldetailtest:428,channeldetailview:[194,432],channelform:397,channelhandl:18,channelkei:195,channellisttest:428,channellistview:432,channelmanag:[194,195],channelmixin:432,channelnam:[18,152,166,167,185,194,323],channeltaginlin:397,channelupdateview:194,char1:[8,126,186,191,428],char2:[8,126,186,428],char_health:269,char_nam:140,charac:33,charact:[2,3,5,6,8,12,13,15,16,17,19,20,22,26,27,29,30,31,32,35,38,41,44,48,49,53,57,59,61,63,66,67,69,71,72,74,75,76,80,81,82,85,86,90,92,93,94,95,97,98,100,101,102,103,105,106,107,108,109,110,111,112,114,115,116,117,118,127,128,133,134,135,136,137,145,151,163,164,165,166,172,173,175,177,180,181,182,186,187,188,190,194,202,203,204,214,216,217,219,222,223,224,225,227,229,230,234,237,239,240,241,244,249,251,252,254,255,256,257,258,260,263,267,268,269,271,273,277,279,280,282,286,290,294,305,317,338,351,356,360,362,365,366,371,372,374,375,386,388,389,393,407,413,426,427,428,430,437,438,440],character1:126,character2:126,character_cleanup:[217,219],character_cmdset:222,character_ent:219,character_exit:217,character_form:433,character_id:294,character_leav:219,character_list:433,character_manage_list:433,character_typeclass:[8,166,386,428],charactercmdset:[18,20,50,76,82,90,91,94,96,98,99,100,103,113,114,125,129,182,202,204,222,234,237,247,254,255,256,257,258,269],charactercreateview:[428,433],characterdeleteview:[428,433],characterdetailview:433,characterform:[427,433],characterlistview:[428,433],charactermanageview:[428,433],charactermixin:433,characterpuppetview:[428,433],charactersheet:27,characterupdateform:[427,433],characterupdateview:[428,433],characterviewset:413,charapp:140,charat:223,charcreat:[74,79,101,107,177,203],charcter:18,chardata:99,chardelet:[107,177],chardeleteview:[286,362],chardetailview:[286,362],charfield:[66,140,384,395,396,397,399,400,401,403,427],charfilt:407,charg:[77,154],chargen:[140,163,164,194,197,286,362],chargencmdset:129,chargenroom:129,chargenview:[286,362],charnam:[99,177,375],charpuppetview:362,charset:388,charsheet:99,charsheetform:99,charupdateview:[286,362],chase:119,chat:[0,11,12,23,38,53,75,83,86,88,99,120,122,123,129,143,148,149,152,155,159,341,381],chatroom:98,chatzilla:152,cheap:[11,123],cheaper:47,cheapest:[82,154],cheapli:269,cheat:[84,126,145],chec:191,check:[0,2,3,5,6,7,8,9,10,11,14,15,18,19,20,22,27,29,34,35,36,38,40,41,46,47,48,49,55,57,61,63,66,74,76,78,79,80,81,83,84,88,89,91,92,93,95,96,97,99,101,103,104,105,106,112,113,114,118,122,123,125,126,128,129,133,134,135,137,140,147,148,149,150,151,154,155,156,157,160,161,166,171,172,173,174,175,177,179,180,185,186,187,188,190,191,192,194,196,199,201,203,204,207,212,216,217,219,222,223,230,234,251,254,255,256,257,258,260,263,267,269,270,271,277,280,282,289,290,293,294,298,299,302,304,305,306,311,312,316,321,327,332,351,353,355,356,357,360,362,363,365,366,368,375,382,383,388,389,391,395,396,403,408,438],check_attr:180,check_character_flag:216,check_circular:341,check_databas:312,check_db:312,check_defeat:126,check_end_turn:128,check_error:311,check_evennia_depend:388,check_flag:[216,217],check_from_attr:180,check_grid:80,check_has_attr:180,check_light_st:269,check_loc:199,check_lock:408,check_lockstr:[32,89,290],check_main_evennia_depend:312,check_mixtur:216,check_obj:180,check_perm:217,check_permiss:298,check_permstr:[166,362],check_to_attr:180,check_warn:311,checkbox:140,checker:[16,80,289,332,389,392],checklockstr:107,checkout:[11,75,156],checkoutdir:2,chemic:208,chest:[38,106,116,117],chicken:214,child:[18,22,27,32,82,87,107,113,114,116,125,128,167,169,175,180,191,207,214,216,219,269,293,299,302,357,380,410],childhood:27,children:[22,46,48,87,90,110,134,169,282,293,294,302,312,361,380,405,433],chillout:180,chime:19,chines:[63,69,91,143],chip:99,chmod:2,choci:202,choic:[8,16,22,27,29,40,41,44,45,69,71,86,89,106,114,115,116,118,125,128,139,142,145,154,166,177,180,201,202,223,254,270,310,370,372,375],choice1:71,choice2:71,choice3:71,choicefield:[395,396,400,401,403,405],choos:[7,14,27,29,53,54,72,73,75,80,82,84,87,98,100,105,110,121,122,126,128,129,136,138,140,152,191,249,252,254,255,256,257,258,263,267,325,372,375,387,440],chop:[22,268],chore:120,chose:[66,99,115,140,147,157,160,252,372],chosen:[7,27,67,76,128,139,223,225,372,375],chown:156,chractercmdset:269,chraract:279,chrome:146,chronicl:223,chroot:150,chug:22,chunk:[14,81,101,199,314,366],church:[19,121],church_clock:19,churn:125,cid:344,cillum:28,cinemat:[219,221],circl:95,circuit:51,circular:[314,367],circumst:[27,70,79,98,105,112,114,115,125,173,257,427],circumv:178,cis:391,citi:[30,82,122,279],citymap:82,cjust:[29,375],clang:153,clank:74,clarifi:91,clariti:[63,66,106,116,129,153,208],clash:[20,30,118,145,154,180,362,372],class_from_modul:388,classic:[14,44,46,47,113,122,128,131,143],classmethod:[95,166,194,207,209,282,286,294,305,362,379,421],classnam:[13,63,116],classobj:362,claus:[135,142],clean:[11,17,18,27,81,89,91,92,113,114,119,125,128,161,173,175,180,190,201,208,217,219,241,254,255,256,257,258,268,269,271,294,302,312,316,330,340,353,362,365,370,372,379,384,387,388,395,396,403,427],clean_attr_valu:396,clean_attribut:[48,166,362],clean_cmdset:[48,362],clean_senddata:353,clean_stale_task:306,clean_str:365,clean_usernam:395,cleaned_data:140,cleaner:[106,116,129],cleanli:[44,87,161,171,175,185,223,314,323,329,340,353,370],cleanup:[8,13,22,26,27,61,76,201,207,219,266,269,372,395],clear:[9,11,13,16,18,22,26,43,46,47,48,51,55,61,69,71,76,81,82,83,84,87,88,89,93,101,103,120,123,125,126,139,161,174,177,178,180,186,223,239,241,250,251,269,273,281,290,293,294,303,306,307,314,351,355,360,362,363,372,379],clear_attribut:360,clear_client_list:348,clear_cont:[36,294],clear_exit:[36,294],clearal:[71,186],clearli:[9,55,83,113,379],cleartext:[245,368],clemesha:357,clever:[18,20,27,54,290],cleverli:44,click:[2,7,9,11,49,50,51,52,53,58,70,72,84,101,111,140,154,372],click_top:187,clickabl:[70,84,187,440],clickable_top:187,client:[2,5,9,22,26,28,29,31,33,43,44,45,49,52,55,58,59,61,68,69,75,76,81,82,84,86,87,91,94,103,106,108,112,113,114,115,122,128,131,133,134,138,143,144,145,147,148,149,150,152,153,156,157,159,160,163,164,166,167,175,177,185,187,190,245,280,282,308,309,313,315,317,321,322,323,324,325,326,327,328,330,332,334,335,336,337,339,340,341,343,344,350,351,352,353,369,370,372,387,388,407,410,436,440],client_address:61,client_class:411,client_default_height:28,client_disconnect:341,client_encod:145,client_opt:[317,336],client_secret:149,client_typ:216,client_width:[22,175],clientconnectionfail:[309,323,324],clientconnectionlost:[309,323,324],clienthelp:51,clientkei:343,clientraw:190,clientsess:[340,341],clientwidth:107,cliff:[108,180],climat:46,climb:[5,22,86,180,216,268],climbabl:[216,268],clipboard:50,clock:[19,22,55,107,126,185],clone:[9,10,63,84,87,111,148],close:[7,11,15,26,27,44,48,51,52,61,74,76,77,79,84,87,91,95,101,113,115,116,140,150,154,156,157,161,190,192,199,200,201,202,212,216,225,247,258,263,266,314,322,323,330,332,340,341,353,360,366,372,375],close_menu:[266,372],closer:[240,258],closest:[59,95,251,388],cloth:[78,163,164,197,366],clothedcharact:204,clothedcharactercmdset:204,clothes_list:204,clothing_typ:204,clothing_type_count:204,clothing_type_ord:204,cloud:[41,139,154,156,157,199],cloudi:41,cloudkeep:77,clr:[29,221,298,375],cls:[95,166,251],club:207,clue:268,clump:116,clunki:[11,258],cluster:145,clutter:[84,174],cma:11,cmd:[5,15,18,20,22,30,32,55,67,76,85,91,92,93,96,99,100,104,105,107,112,115,118,125,129,137,151,160,173,175,177,178,179,180,185,186,187,188,189,190,191,192,201,202,203,204,207,211,212,214,222,223,224,228,234,237,238,241,247,248,249,252,254,255,256,257,258,263,267,268,269,270,273,283,294,336,340,341,343,366,370,372,373],cmd_arg:106,cmd_channel:22,cmd_help_dict:187,cmd_ignore_prefix:172,cmd_kei:106,cmd_last:44,cmd_last_vis:44,cmd_loginstart:22,cmd_multimatch:[22,171],cmd_na_m:67,cmd_name:67,cmd_noinput:[22,171,372],cmd_nomatch:[22,171,269,372],cmd_noperm:22,cmd_on_exit:[27,215,223,252,266,296,372],cmd_or_top:187,cmd_total:44,cmdabil:8,cmdabout:190,cmdaccept:201,cmdaccess:186,cmdaddcom:185,cmdallcom:185,cmdapproach:258,cmdarmpuzzl:238,cmdasync:54,cmdattack:[93,126,128,129,254,255,256,257,258,268],cmdban:178,cmdbare:107,cmdbatchcod:179,cmdbatchcommand:179,cmdbigsw:93,cmdblindhelp:263,cmdblindlook:263,cmdblock:91,cmdboot:178,cmdbridgehelp:269,cmdbui:105,cmdbuildshop:105,cmdcallback:228,cmdcast:257,cmdcboot:185,cmdcdesc:185,cmdcdestroi:185,cmdchannel:[18,185],cmdchannelcr:185,cmdcharactercr:203,cmdcharcreat:177,cmdchardelet:177,cmdclimb:268,cmdclock:185,cmdcloselid:263,cmdcolortest:177,cmdcombathelp:[254,255,256,257,258],cmdconfigcolor:103,cmdconfirm:22,cmdcopi:180,cmdcover:204,cmdcpattr:180,cmdcraft:207,cmdcraftarmour:93,cmdcreat:180,cmdcreatenpc:129,cmdcreateobj:214,cmdcreatepuzzlerecip:238,cmdcwho:185,cmddarkhelp:269,cmddarknomatch:269,cmddeclin:201,cmddefend:128,cmddelcom:185,cmddesc:[180,222],cmddestroi:180,cmddiagnos:94,cmddice:[99,211],cmddig:180,cmddisengag:[128,254,255,256,257,258],cmddoff:255,cmddon:255,cmddrop:[186,204],cmddummyrunnerechorespons:343,cmdeast:269,cmdecho:[22,84,93,107,114,191],cmdedit:202,cmdeditnpc:129,cmdeditorbas:370,cmdeditorgroup:370,cmdeditpuzzl:238,cmdemit:178,cmdemot:[214,241],cmdentertrain:137,cmdevalu:201,cmdevenniaintro:269,cmdevmenunod:372,cmdevscaperoom:214,cmdevscaperoomstart:214,cmdexamin:180,cmdexiterror:96,cmdexiterroreast:96,cmdexiterrornorth:96,cmdexiterrorsouth:96,cmdexiterrorwest:96,cmdextendedroomdesc:222,cmdextendedroomdetail:222,cmdextendedroomgametim:222,cmdextendedroomlook:222,cmdfeint:128,cmdfight:[254,255,256,257,258],cmdfind:180,cmdfinish:201,cmdfocu:214,cmdfocusinteract:214,cmdforc:178,cmdget:[91,114,186,214],cmdgetinput:372,cmdgetweapon:268,cmdgive:[186,204],cmdgiveup:214,cmdgmsheet:99,cmdgoto:273,cmdgrapevine2chan:185,cmdhandler:[20,22,36,64,112,163,164,166,170,172,173,174,175,177,188,189,190,191,214,222,238,269,293,294,302,388],cmdhelp:[30,128,187,214,254,255,256,257,258],cmdhit:[107,114,128],cmdhome:186,cmdic:177,cmdid:317,cmdinsid:137,cmdinterrupt:191,cmdinventori:[104,186,204],cmdirc2chan:185,cmdircstatu:185,cmdjumpstat:214,cmdlaunch:90,cmdlearnspel:257,cmdleavetrain:137,cmdlen:[172,189],cmdlight:268,cmdline:312,cmdlineinput:370,cmdlink:180,cmdlistarmedpuzzl:238,cmdlistcmdset:180,cmdlistpuzzlerecip:238,cmdlock:180,cmdlook:[4,8,94,186,203,214,222,269],cmdlookbridg:269,cmdlookdark:269,cmdmail:234,cmdmailcharact:234,cmdmakegm:99,cmdmap:273,cmdmask:241,cmdmobonoff:267,cmdmore:373,cmdmorelook:373,cmdmultidesc:[98,237],cmdmvattr:180,cmdmycmd:[30,97],cmdname2:172,cmdname3:172,cmdname:[31,51,61,64,67,107,125,129,171,172,175,180,188,189,191,317,335,336,340,341,353],cmdnamecolor:252,cmdnewpassword:178,cmdnick:186,cmdnoinput:202,cmdnomatch:202,cmdnositstand:125,cmdnpc:129,cmdnudg:263,cmdobj:[171,172,189,191],cmdobj_kei:171,cmdobject:[171,172,190],cmdobjectchannel:18,cmdoffer:201,cmdooc:177,cmdooccharactercr:203,cmdooclook:[177,203],cmdopen:[180,247,273],cmdopenclosedoor:247,cmdopenlid:263,cmdoption:[177,214],cmdpage:185,cmdparri:128,cmdparser:[43,163,164,170],cmdpass:[254,255,256,257,258],cmdpassword:177,cmdperm:178,cmdplant:270,cmdpose:[128,186,241],cmdpressbutton:268,cmdpushlidclos:263,cmdpushlidopen:263,cmdpy:190,cmdquell:177,cmdquit:177,cmdread:268,cmdrecog:241,cmdreload:190,cmdremov:204,cmdrerout:214,cmdreset:190,cmdrest:[254,255,256,257,258],cmdroll:106,cmdrss2chan:185,cmdsai:[128,186,241],cmdsaveyesno:370,cmdscript:[180,190],cmdsdesc:241,cmdser:372,cmdserverload:190,cmdservic:190,cmdsession:177,cmdset:[3,6,12,15,18,20,22,27,30,36,41,44,61,63,76,82,85,90,91,96,98,100,101,103,105,111,112,113,125,128,129,137,163,164,166,170,171,172,174,175,180,181,182,183,184,188,189,190,191,201,202,203,204,207,211,214,222,224,228,234,238,241,248,249,254,255,256,257,258,263,266,267,268,269,270,273,293,294,302,343,350,351,362,370,372,373,388,405],cmdset_account:[12,163,164,170,176,203],cmdset_charact:[163,164,170,176,204,254,255,256,257,258],cmdset_mergetyp:[27,215,223,266,296,372],cmdset_prior:[27,215,223,266,296,372],cmdset_sess:[44,163,164,170,176],cmdset_stack:174,cmdset_storag:[169,293,351],cmdset_trad:201,cmdset_unloggedin:[22,163,164,170,176,212],cmdsetattribut:180,cmdsetclimb:268,cmdsetcrumblingwal:268,cmdsetdesc:186,cmdsetevenniaintro:269,cmdsetevscaperoom:214,cmdsetflag:214,cmdsethandl:[44,163,164,170],cmdsethelp:187,cmdsethom:180,cmdsetkei:20,cmdsetkeystr:173,cmdsetlight:268,cmdsetmor:373,cmdsetobj:[173,174,181,182,183,184,201,202,203,204,207,211,214,222,238,241,249,254,255,256,257,258,263,266,267,268,269,273,343,370,372,373],cmdsetobjalia:180,cmdsetpow:129,cmdsetread:268,cmdsetsit:125,cmdsetspe:248,cmdsettestattr:26,cmdsettrad:201,cmdsettrain:137,cmdsetweapon:268,cmdsetweaponrack:268,cmdsheet:99,cmdshiftroot:268,cmdshoot:[90,258],cmdshutdown:190,cmdsit2:125,cmdsit:125,cmdsmashglass:263,cmdsmile:22,cmdspawn:180,cmdspeak:214,cmdspellfirestorm:92,cmdstand2:125,cmdstand:[125,214],cmdstatu:[201,257,258],cmdstop:248,cmdstring:[22,99,107,171,175,188,191],cmdstyle:177,cmdtag:180,cmdtalk:249,cmdtask:190,cmdteleport:[180,273],cmdtest:[3,93,106],cmdtestid:22,cmdtestinput:27,cmdtestmenu:[27,223,372],cmdtime:[100,190],cmdtrade:201,cmdtradebas:201,cmdtradehelp:201,cmdtunnel:180,cmdtutori:269,cmdtutorialgiveup:269,cmdtutoriallook:269,cmdtutorialsetdetail:269,cmdtweet:151,cmdtypeclass:180,cmdunban:178,cmdunconnectedconnect:[192,212],cmdunconnectedcr:[192,212],cmdunconnectedhelp:[192,212],cmdunconnectedlook:[192,212],cmdunconnectedquit:[192,212],cmduncov:204,cmdunlink:180,cmdunwield:255,cmduse:256,cmdusepuzzlepart:238,cmdwait:22,cmdwall:178,cmdwear:204,cmdwerewolf:91,cmdwest:269,cmdwhisper:186,cmdwho:[177,214],cmdwield:255,cmdwipe:180,cmdwithdraw:258,cmdxyzopen:273,cmdxyzteleport:273,cmdyesnoquest:372,cmset:[174,405],cmud:146,cnf:[2,145],coal:[207,208],coast:[81,119],coastal:81,cobj:214,cockpit:90,code:[2,5,6,7,8,12,13,15,16,20,22,24,27,29,30,32,33,36,40,43,44,46,47,48,49,50,52,53,54,55,56,57,59,60,61,63,66,67,71,72,74,75,77,78,79,80,81,82,83,85,86,87,88,89,93,95,97,98,99,100,101,102,106,108,110,111,112,113,114,116,117,118,119,121,123,124,125,127,128,129,130,132,133,134,135,137,138,139,141,143,145,148,155,156,157,159,161,163,164,166,170,171,174,177,179,180,185,187,190,193,197,201,202,206,210,211,216,219,225,227,230,239,256,269,270,279,290,299,302,323,324,340,351,354,362,364,365,370,372,374,385,386,387,388,394,436,439,440],code_exec:366,code_hint:216,code_tri:216,codebas:[8,11,71,73,84,86,97,117,191],codeblock:84,codec:365,codefunc:370,codeinput:216,coder:[0,1,76,97,120,122,123,143,171,294],codestyl:83,coerc:383,coexist:138,coher:130,coin:[77,88,116,117,120,121,201],col:[56,131,374],cold:[55,161,190,299,303,307,350],cole:388,coll_date_func:190,collabor:[11,87,89,120,123,154,187],collat:[30,64,298],collect:[0,13,20,29,30,49,82,116,133,171,173,187,190,198,238,251,360,388,413],collect_top:187,collector:133,collectstat:[51,53,133,312,316],collid:[20,147,154,216,372,375],collis:[11,20,355],collist:116,colon:[19,32,108,115,290],color:[18,22,27,29,31,40,51,56,70,71,80,81,82,84,85,99,101,102,107,108,115,143,148,175,177,191,205,208,221,225,241,252,266,270,279,280,282,298,317,324,332,335,340,341,365,374,375,382,387,389,440],color_ansi_bright_bg_extra_map:205,color_ansi_bright_bgs_extra_map:205,color_ansi_extra_map:205,color_markup:[163,164,197],color_no_default:205,color_typ:365,color_xterm256_extra_bg:205,color_xterm256_extra_fg:205,color_xterm256_extra_gbg:205,color_xterm256_extra_gfg:205,colorablecharact:103,colorback:387,colorcod:387,colour:[19,70,180,339,365,374],column:[51,56,66,79,80,81,82,84,87,99,101,175,177,271,282,374,388],com:[8,9,10,11,39,49,53,54,56,63,68,72,75,76,77,79,81,84,86,95,117,120,140,143,144,145,147,148,150,153,154,155,156,157,163,185,190,202,212,287,324,327,336,340,357,374,387,388,427],combat:[11,13,15,20,40,48,68,77,79,81,86,87,91,92,102,107,112,113,119,121,122,126,127,134,143,148,174,254,255,256,257,258,267,302,440],combat_:[254,255,256,257,258],combat_cleanup:[254,255,256,257,258],combat_cmdset:128,combat_handl:128,combat_handler_:128,combat_movesleft:[254,255,256,257],combat_scor:129,combat_status_messag:258,combatcmdset:128,combathandl:128,combatscor:129,combatt:13,combin:[8,13,19,20,22,33,34,40,46,47,55,59,77,78,82,86,92,94,98,99,108,110,114,115,122,135,137,144,150,154,171,172,173,180,191,207,216,237,238,240,251,263,280,282,290,298,307,312,361,363,368,375,382,388],combo:44,come:[5,11,12,13,16,19,22,27,28,30,32,41,44,51,52,53,54,56,59,61,64,67,71,72,74,79,80,81,82,86,87,89,90,91,93,98,99,100,101,105,106,108,112,113,115,116,120,122,123,125,126,128,129,131,135,137,138,140,141,145,150,156,160,166,173,222,239,251,254,255,256,257,258,298,299,330,335,340,341,343,349,365,373,410,436],comet:[51,61,341],comfi:125,comfort:[11,16,86,101,106,123],comg:49,comlist:185,comm:[18,22,34,85,87,111,151,163,164,170,176,368,393,394,418,432],comma:[18,50,66,79,108,115,116,141,145,180,188,207,233,234,290,294],comman:108,command:[0,2,5,7,9,11,12,13,14,16,18,19,23,26,27,28,31,32,34,35,36,38,39,40,43,44,46,48,50,51,52,54,55,57,58,59,60,61,62,63,64,66,68,69,70,71,73,74,75,77,78,79,80,81,82,84,86,87,89,90,97,98,101,102,108,109,111,117,119,120,122,123,126,133,134,135,136,138,143,144,145,146,148,149,150,152,153,154,155,157,160,161,163,164,166,167,194,197,201,202,203,204,207,209,211,212,213,215,216,220,221,222,223,224,226,229,231,234,237,238,241,245,247,248,249,252,254,255,256,257,258,262,263,266,267,268,269,270,271,272,274,275,283,284,286,287,289,290,294,298,299,302,309,312,317,321,322,330,332,335,336,340,341,343,344,350,351,362,364,365,368,370,372,373,382,385,388,413,436,440],command_default_arg_regex:22,command_default_class:91,command_default_help_categori:30,command_pars:172,commandhandl:[31,174,189],commandmeta:175,commandnam:[22,31,64,108,270,312,321,351,353],commandset:[32,36,107,174,203],commandtest:[8,191,209,220,231],comment:[14,15,48,75,83,91,107,125,135,144,146,154,279,366,372],commerc:143,commerci:[7,88,123,154],commerror:195,commit:[2,9,10,16,62,68,83,84,87,91,145,155,156,244,396,403],commmand:[247,254,255,256,257,258],common:[0,6,11,16,18,19,22,27,31,32,40,41,44,45,46,47,48,54,55,56,61,64,67,69,78,84,85,87,94,100,101,106,108,109,112,113,115,116,117,120,122,123,124,126,128,129,140,148,150,154,173,180,185,201,207,240,241,248,290,302,340,344,361,371,373,383,385,388,413,420,436],commonli:[9,29,30,35,41,43,44,45,47,53,64,66,82,87,110,114,122,145,148,191,251,280,294,413],commonmark:84,commun:[7,18,22,34,39,51,52,61,64,67,69,76,77,85,86,87,88,98,106,107,111,112,113,122,123,143,144,145,152,154,157,166,182,185,193,194,195,196,214,234,266,281,293,309,321,322,332,333,335,336,337,338,351,353,368,369,384,439,440],compact:[105,110,141,263],compani:[67,87],compar:[6,8,11,14,16,19,20,64,75,82,89,92,93,96,99,105,106,110,123,126,128,129,191,238,240,251,254,255,256,257,258,289,290,299,343,365,388],comparison:[5,14,29,110,111,191,250,289,299,372],compartment:99,compass:108,compat:[15,27,90,180,251,374,381,388],compet:[16,67,122],compil:[5,22,63,68,75,84,97,112,148,153,154,180,186,187,192,204,207,214,241,365,370,372,387],compilemessag:63,complain:[3,9,66,106,125,161],complement:[0,45,123,251],complementari:[24,29,41,69],complet:[2,5,8,9,11,12,13,14,15,16,19,20,22,26,27,36,38,43,44,45,50,52,54,67,76,77,80,81,83,87,91,96,99,100,103,105,110,114,115,119,120,121,122,123,129,145,150,154,160,161,166,173,174,175,188,190,191,205,222,223,225,230,255,263,269,280,294,306,312,314,322,323,340,360,366,371,372,373,385,388,408,427],complete_task:230,complex:[5,8,13,15,16,20,22,29,43,47,66,68,81,82,87,100,108,112,114,115,116,117,120,121,122,125,126,128,129,156,174,194,216,231,239,249,263,299,344,360],complianc:[146,222],compliant:[95,336],complic:[54,74,76,80,81,93,101,106,110,140,141,154,192,212,223,252,360],compon:[0,5,8,22,34,41,49,50,51,53,59,60,61,72,77,80,82,84,93,99,102,111,120,123,128,129,130,132,154,161,163,164,180,190,195,196,197,199,207,210,238,240,250,272,279,281,299,300,302,305,312,341,368,371,385,388,391,416,439,440],componenta:4,componentid:51,componentnam:51,componentst:51,compos:[156,223],composit:[338,361],comprehens:[5,8,32,34,48,86,121,125,148,157],compress:[31,317,321,325,384],compress_object:384,compris:166,compromis:[157,244],comput:[11,47,54,55,69,80,87,97,110,111,122,126,139,148,152,156,160,178,190,241,388,389],computation:47,comsystem:196,con:[99,143,192,212],concaten:[112,365],concept:[11,13,39,47,61,63,78,79,83,84,95,98,101,102,103,115,116,118,120,121,125,203,237,251,439,440],conceptu:[27,80],concern:[63,67,82,96,115,148,173,239,286],conch:[332,335,343],concis:123,conclud:[110,201,372],concurr:145,conda:75,conder:366,condit:[5,29,79,80,86,105,106,107,110,114,120,121,126,129,144,171,211,241,256,290,294,305,311,312,357,388],condition:91,condition_result:211,condition_tickdown:256,conditional_flush:379,conduct:133,conductor:137,conect:353,conf:[2,5,8,11,24,25,31,32,40,41,50,53,61,63,66,72,75,78,82,84,89,91,100,101,103,113,125,136,137,140,141,144,145,147,149,150,154,157,166,205,207,274,276,312,318,319,358,366,440],confer:[143,388],confid:[3,83,95],config:[2,7,10,11,12,29,51,61,75,89,148,150,154,155,157,199,251,312,314,318,319,330,402,440],config_1:12,config_2:12,config_3:12,config_color:103,configcmd:103,configdict:[332,353],configur:[2,8,12,50,74,84,87,91,100,101,102,112,133,136,147,148,154,156,157,166,169,172,177,199,244,245,251,270,314,319,330,353,355,357,358,361,427,440],configut:7,confirm:[22,51,82,108,144,148,157,180,212,238,336,339,438],conflict:[3,122,138],confus:[0,5,6,11,20,35,38,41,51,54,59,63,73,76,82,87,96,99,106,110,113,116,133,138,154,185,212,280,437],conid:331,conj:[29,294,375],conjug:[29,163,164,294,364,375,390,392],conjur:257,conn:[192,212],conn_tim:44,connect:[5,8,12,13,14,17,18,20,22,24,31,36,38,39,41,43,44,45,48,50,51,52,53,55,59,61,62,63,64,67,70,74,75,79,80,81,82,86,87,89,91,98,101,105,106,108,110,111,112,113,114,122,129,133,136,138,144,145,146,148,149,150,152,155,156,157,160,161,166,167,169,177,178,180,185,192,194,196,199,212,225,227,228,230,245,248,277,279,280,282,293,294,300,308,309,312,314,321,322,323,324,325,330,331,332,335,340,341,343,344,350,351,352,353,354,357,360,362,368,384,410,413,440],connection_cr:45,connection_screen:[25,43,112],connection_screen_modul:212,connection_set:147,connection_tim:[166,294],connection_wizard:[163,164,308],connectiondon:314,connectionlost:[314,321,322,332,335,343],connectionmad:[309,321,332,335,343],connectionwizard:310,connector:[309,323,324,330,353],conquer:119,cons3:209,consecut:27,consequ:[154,174],consid:[0,5,6,11,14,15,18,19,20,22,27,29,31,32,40,41,44,46,47,48,50,52,54,55,59,61,66,69,72,74,78,79,82,83,86,87,88,89,95,96,98,104,105,110,112,115,117,120,121,123,125,137,140,141,142,145,148,154,157,166,173,174,223,238,240,241,251,258,270,277,279,280,294,298,299,302,317,332,335,361,366,367,372,373],consider:[43,66,81,113,122,135,299,374],consist:[12,13,17,22,27,30,32,39,40,51,59,66,72,79,82,84,96,115,118,119,121,128,129,161,166,172,187,188,194,195,201,208,238,240,281,283,290,299,336,341,351,360,362,368,374,388,396,403,438],consitut:113,consol:[0,3,6,7,51,57,59,63,75,84,87,113,115,116,118,129,145,148,153,154,156,160,187,190,241,312],conson:240,constant:[67,74,321,386],constantli:[134,269],constitu:[174,188],constraint:[74,145],construct:[2,27,87,93,125,140,299,356,360,365,373,427],constructor:[22,76,78,202,207,323],consum:[54,78,207,208,209,216,314,388],consumable_kwarg:207,consumable_nam:207,consumable_tag:[78,207,208],consumable_tag_categori:[78,207],consume_flag:216,consume_on_fail:207,consumer_kei:[136,151],consumer_secret:[136,151],consumpt:[5,145,355],contact:[18,36,154,156],contain:[0,6,8,9,13,14,15,17,20,22,27,29,30,32,34,36,43,44,51,52,53,54,56,59,61,66,71,74,75,76,79,82,83,84,85,86,87,90,91,95,97,98,100,101,106,107,108,110,111,112,113,114,115,121,125,129,133,135,138,140,141,143,148,153,160,163,164,166,167,170,171,172,173,174,176,179,180,185,187,191,193,199,202,207,214,223,224,227,228,229,230,231,233,238,239,240,241,245,246,248,251,252,256,263,268,270,271,279,280,281,282,284,285,288,294,296,298,299,306,308,311,315,317,343,355,356,357,360,361,362,363,364,365,366,369,371,372,373,374,375,385,387,388,389,410,416,425,436,438],container:156,contempl:97,content:[5,11,14,17,19,29,34,36,48,50,51,52,53,56,80,84,89,90,95,97,99,101,104,105,106,110,112,114,115,117,118,122,123,124,125,127,129,130,131,132,134,137,140,141,143,150,154,175,178,180,199,200,216,217,241,273,284,293,294,363,365,366,367,370,372,374,385,393,403,410,416,425,439],content_typ:[293,294],contentdisposit:199,contentencod:199,contentof:374,contents_cach:293,contents_get:[117,294],contents_set:294,contentshandl:293,contest:214,context:[53,59,79,86,101,106,118,138,140,202,230,333,337,420,432,433,435,436,438],context_processor:420,contextu:46,continu:[1,3,8,13,19,22,27,46,47,53,54,58,66,79,80,82,83,86,90,93,99,101,105,107,114,115,128,129,133,151,153,154,199,280,294,310,321,357,360,372,381,388,440],contrari:[49,74,84,100,112,122,190,251,363],contrast:[41,69,97,154,336],contrib:[14,15,50,79,84,85,86,87,89,98,99,100,102,108,111,112,115,119,122,124,126,127,128,142,148,163,164,166,169,190,354,365,366,395,396,397,399,400,401,402,403,418,419,427,433,438,440],contribrpcharact:241,contribrpobject:241,contribrproom:241,contribut:[0,8,11,63,76,77,88,89,104,111,121,133,142,159,160,197,201,203,204,205,211,222,234,238,239,241,244,245,247,248,249,270,439,440],contributor:[142,202,251],control:[1,2,3,4,9,12,13,14,15,18,20,22,26,27,28,29,30,31,32,36,39,40,41,44,49,50,55,57,59,64,66,68,72,75,78,83,84,85,87,90,98,99,103,108,110,111,112,113,114,118,120,122,123,126,129,135,137,148,150,154,157,159,161,166,167,177,179,180,185,191,201,203,216,229,241,263,267,269,271,282,289,294,302,312,351,353,362,372,375,408,427,440],contrub:78,convei:[241,294],convenei:45,conveni:[2,7,8,13,18,27,30,31,32,36,38,40,41,48,53,54,61,66,68,73,75,82,86,90,98,101,113,114,115,117,118,140,144,155,161,166,180,190,202,207,219,221,234,294,344,355,366,367,372,373,375,381,384,385],convent:[20,45,66,74,110,138],convention:[175,294,362],convers:[8,18,27,29,35,77,137,240,249,340,341,365,388,439],convert:[9,13,18,19,35,40,59,61,64,67,69,70,80,82,87,95,100,103,105,110,113,118,125,138,143,157,178,210,211,223,252,279,289,298,299,303,321,323,332,335,336,353,357,365,369,372,373,374,375,376,384,387,388,391,410],convert_linebreak:387,convert_url:387,convinc:[27,154],cool:[0,75,76,84,90,120,131,143,180,185],cool_gui:38,cooldown:[93,128,440],coord:[95,277,279,280,282],coordi:95,coordin:[51,80,82,258,271,273,279,280,281,282,440],coordx:95,coordz:95,cope:257,copi:[0,2,5,9,11,14,15,22,26,27,40,43,44,49,50,51,53,72,74,81,87,89,91,100,103,107,108,111,112,129,133,140,150,154,156,179,180,204,230,254,255,256,257,258,269,294,312,321,358,365,381,436],copy_object:294,copyright:[142,154],core:[7,8,11,36,43,48,57,63,67,80,83,111,116,121,142,166,169,190,196,197,199,208,234,286,293,294,302,308,319,329,336,350,360,362,363,366,373,380,427,438,439],corner:[17,82,95,98,143,271,279,374],corner_bottom_left_char:374,corner_bottom_right_char:374,corner_char:374,corner_top_left_char:374,corner_top_right_char:374,corpu:240,correct:[8,13,15,19,20,22,26,29,53,54,59,69,83,90,94,106,113,116,123,129,137,138,145,171,177,180,191,195,216,222,238,264,279,290,327,330,332,338,352,365,388],correctli:[2,3,6,19,22,26,27,38,46,47,75,80,82,84,89,93,96,100,105,106,112,129,137,138,144,152,154,161,166,169,174,177,199,207,303,312,321,357,384,410],correl:299,correspond:[22,32,44,53,72,82,105,108,210,238,252,396,403,408,427],correspondingli:9,corrupt:97,cosi:81,cosin:388,cosmet:271,cost:[82,92,105,154,199,257,271],cottag:[58,81],could:[2,3,5,7,8,9,12,13,14,15,16,18,20,22,27,29,30,32,33,34,35,36,38,40,41,46,47,48,53,54,55,57,59,61,64,66,67,68,69,71,72,73,74,75,76,78,79,80,81,82,83,84,86,87,89,90,91,92,93,94,95,96,98,99,100,101,103,104,105,106,107,108,110,112,113,114,115,116,118,120,121,122,123,125,126,128,129,131,133,134,135,136,137,138,139,140,143,148,149,150,151,152,154,155,166,174,180,187,195,196,201,202,207,211,216,217,225,233,239,241,248,251,252,263,269,271,280,282,290,294,305,317,336,341,357,362,365,366,370,374,375,376,379,383,388],couldn:[13,57,73,87,95,96,106,107,115,138,141,239],count:[18,43,49,52,87,110,113,115,128,136,173,204,252,256,294,326,330,343,347,353,355,361,365,372,375,381],count_loggedin:330,count_queri:347,countdown:[41,93,108],counter:[9,41,44,76,93,101,105,121,128,163,164,167,197,250,269,330,343,344,351,372],counterpart:[14,59,121,317,353,369],countertrait:251,countri:178,coupl:[11,38,76,101,134,156,194,248],cours:[0,5,7,10,16,22,47,53,55,68,73,74,75,76,78,79,82,84,87,89,90,98,106,113,114,115,116,119,120,129,139,142,160,255,258,266],courtesi:55,cousin:[71,106],cover:[0,8,11,14,15,30,53,60,61,65,66,75,82,83,93,98,110,111,112,114,115,117,121,122,123,136,143,144,145,148,154,159,204,208,216,222,263,269,280,294,388],coverag:8,coveral:8,cpanel:154,cpattr:[107,180],cpu:[5,55,154,157,190],cpython:5,crack:66,craft:[32,81,93,120,163,164,197,223,440],craft_recipe_modul:[78,207],craft_recipes_modul:207,craft_result:207,crafted_result:207,crafter:[207,208,209],crafting_consumable_err_msg:207,crafting_materi:[78,207,208],crafting_recipe_modul:78,crafting_result:207,crafting_skil:78,crafting_tool:[78,207],crafting_tool_err_msg:207,craftingcmdset:207,craftingerror:207,craftingrecip:[78,207,208,209],craftingrecipebas:[78,207],craftingvalidationerror:[78,207],craftrecip:207,cram:119,crank:47,crash:[0,81,115,120,143,157,316,360],crate:[35,108],crave:159,crawl:157,crawler:326,cre:[192,212],creat:[0,3,5,7,8,10,11,13,14,15,16,18,20,25,26,27,29,30,32,34,35,38,40,41,43,44,45,46,49,50,51,53,56,57,60,61,62,68,71,72,73,75,76,77,78,79,80,82,83,84,86,87,88,89,91,93,95,96,97,98,99,100,103,105,106,110,112,114,116,117,118,119,120,121,123,124,125,126,127,128,130,132,133,134,135,136,139,141,142,143,145,147,148,149,151,152,153,154,157,160,163,164,166,167,169,172,173,174,175,177,180,185,186,187,188,189,190,191,192,194,196,199,200,201,202,203,204,207,209,210,211,212,214,215,216,217,219,221,222,223,224,229,230,231,233,234,237,238,239,240,241,245,247,249,251,252,254,255,256,257,258,260,263,266,267,268,269,270,271,279,280,281,282,284,286,290,293,294,296,297,298,299,302,305,306,307,309,312,316,317,322,324,325,330,332,333,337,344,352,353,355,357,360,361,362,363,364,366,367,370,371,372,374,376,381,388,395,400,407,412,413,428,431,433,436,437,438,440],creataion:277,create_:[36,48],create_account:[45,48,163,368],create_attribut:360,create_cal:166,create_channel:[18,163,185,194,316,368],create_charact:[166,294],create_delai:306,create_evscaperoom_object:221,create_exit:[180,247],create_exit_cmdset:294,create_fantasy_word:221,create_forward_many_to_many_manag:[169,196,286,293,302,360,362,363,380],create_game_directori:312,create_grid:80,create_help_entri:[30,163,368],create_kwarg:299,create_match:172,create_messag:[34,163,368],create_object:[14,19,32,36,48,78,81,105,109,129,140,163,207,219,221,263,294,299,316,366,368],create_prototyp:[298,299],create_script:[41,48,97,128,163,305,366,368],create_secret_kei:312,create_settings_fil:312,create_superus:312,create_tag:361,create_wild:271,created_on:227,createobj:214,creater:85,createview:437,creation:[6,11,13,15,27,32,36,44,48,66,73,80,81,82,90,99,103,108,109,111,113,114,120,122,127,129,140,143,163,166,169,180,185,187,194,203,207,238,241,245,247,251,254,255,256,257,258,268,269,273,279,282,286,293,294,299,302,307,345,362,368,370,371,372,374,395,396,400,403,427,431,433,438,439],creation_:368,creativ:[68,78,122],creator:[27,32,73,77,81,85,123,129,143,187,194,254,255,256,257,258,294,374],cred:[11,332],credenti:[11,52,53,154,157,166,332],credentialinterfac:332,credit:[11,115,117,154,157,387,388],creset:11,crew:110,criteria:[27,110,195,229,239,298,361,385],criterion:[11,110,113,114,119,166,201,241,285,294,304,385,388],critic:[0,6,9,20,41,44,57,59,148,150,290,311,312,381],critici:362,cron:150,crontab:150,crop:[29,59,99,180,279,371,374,375,388],crop_str:374,cross:[81,82,208,269,277,280,374],crossbario:340,crossbow:93,crossmaplink:[82,280],crossroad:81,crowd:[120,157],crt:[144,150],crucial:[47,106],crucibl:208,crucible_steel:208,cruciblesteelrecip:208,crud:[412,413],crude:[74,207,208],crumblingwal:268,crumblingwall_cmdset:268,crush:90,crypt:119,cryptocurr:157,cscore:129,csessid:[330,340,341,353],csession:[340,341],csrf_token:140,css:[17,50,51,53,70,72,86,112,133,199,387,416],cssclass:51,ctrl:[5,53,115,118,148,150,154,156,160,161,343],cuddli:[113,116],culpa:28,cumbersom:[9,27,137,252],cumul:344,cup:88,cupidatat:28,cur_valu:225,cure:[256,257],cure_condit:256,curi:80,curiou:68,curli:205,curly_color_ansi_bright_bg_extra_map:205,curly_color_ansi_bright_bgs_extra_map:205,curly_color_ansi_extra_map:205,curly_color_xterm256_extra_bg:205,curly_color_xterm256_extra_fg:205,curly_color_xterm256_extra_gbg:205,curly_color_xterm256_extra_gfg:205,curr_sess:353,curr_tim:222,currenc:[105,136],current:[5,6,7,8,9,11,12,13,14,15,18,19,20,22,26,27,29,31,36,38,41,42,43,44,46,47,51,52,53,55,57,59,66,74,75,76,78,79,80,82,84,87,90,91,92,93,99,105,107,108,110,111,112,113,114,116,121,125,128,129,136,137,140,143,150,156,160,166,169,171,172,174,175,177,178,180,185,186,187,189,190,199,201,202,204,207,214,216,219,222,223,225,230,233,237,239,241,247,248,250,251,252,254,255,256,257,258,262,266,268,269,271,273,280,282,285,293,294,299,302,306,307,312,317,322,328,329,332,333,344,351,353,355,361,362,370,372,374,375,376,381,382,385,388,395,410,432,433,435,436],current_choic:202,current_cmdset:180,current_coordin:271,current_kei:[297,298],current_tim:343,current_us:140,current_weath:41,current_weight:280,currentroom:137,curriculum:143,curs:[3,121],curtain:30,curv:[86,97],curx:80,cushion:125,custom:[0,6,12,13,15,16,17,19,20,22,25,31,35,36,40,43,46,48,52,55,56,60,62,64,66,70,73,74,80,82,85,86,87,90,91,94,97,99,101,102,105,108,110,112,114,119,120,121,122,125,126,128,129,133,134,135,137,138,139,140,142,143,149,151,154,156,161,166,167,168,169,171,173,174,175,180,185,186,187,194,201,203,204,207,210,211,214,215,216,217,219,222,223,224,230,233,238,240,241,244,245,251,263,266,268,269,271,275,279,280,284,285,292,294,296,297,298,299,301,307,312,316,318,321,343,352,362,367,370,372,373,374,379,382,383,387,388,394,395,397,402,412,413,418,419,436,440],custom_add:230,custom_cal:[230,233],custom_domain:199,custom_evennia_launcher_command:312,custom_gametim:[100,163,164,197],custom_helpstr:216,custom_kei:298,custom_pattern:[89,101,131,140,141],customis:271,customiz:[17,77,125,202,223,225,241,263],customlog:144,cut:[18,26,61,78,80,81,86,106,108,122,129,279,299],cute:133,cutoff:388,cvcc:240,cvccv:240,cvccvcv:240,cvcvcc:240,cvcvccc:240,cvcvccvv:240,cvcvcvcvv:240,cvcvvcvvcc:240,cvv:240,cvvc:240,cwho:[107,185],cyan:[59,138],cyberpunk:[18,117],cyberspac:143,cycl:[14,15,91,97,100,120,139,254,255,256,257,258],cyril:16,daemon:[5,144,150,156,157,161,329,357],daffodil:117,dai:[2,11,19,68,97,100,120,121,136,138,139,150,156,157,208,210,222,376,381,388,389],daili:35,dailylogfil:381,dali:240,dalnet:185,dalton:110,dam:97,damag:[15,90,92,105,119,121,122,126,128,157,254,255,256,257,258,267,268],damage_rang:257,damage_taken:97,damage_valu:[254,255,256,257,258],damascu:208,damn:143,danc:82,dandi:73,danger:[6,14,20,44,84,104,173],dare:[22,107,391],dark:[14,15,17,20,30,59,81,82,115,119,121,123,126,138,143,174,222,251,263,269,302,365,366],darkcmdset:269,darker:[59,138],darkgrai:138,darkroom:269,darkroom_cmdset:269,darkstat:269,dash:[84,239,252],dashcount:252,dashlin:29,data:[5,6,9,12,14,16,18,19,29,30,35,40,41,43,46,48,49,50,51,53,54,64,66,67,69,72,76,78,82,87,91,97,98,99,112,113,116,120,123,140,141,145,150,153,154,156,166,167,175,180,187,190,199,207,223,225,229,230,241,244,245,250,251,279,280,281,293,294,296,298,300,305,307,309,310,314,318,319,321,322,323,324,325,330,331,332,333,335,336,337,339,340,341,343,345,350,351,352,353,355,359,360,361,362,363,365,366,367,368,369,371,372,373,374,375,378,381,382,383,384,388,396,397,399,401,403,407,410,413,418,427,431,433,435,436,438],data_default_valu:251,data_in:[61,64,245,321,323,324,330,331,335,340,341,351,352,353],data_out:[61,245,330,332,335,336,341,351,352,353],data_to_port:309,data_to_serv:322,databa:312,databas:[2,5,8,10,11,13,14,16,17,18,19,20,23,31,32,33,34,35,36,41,43,44,45,46,47,48,49,50,52,53,55,57,72,73,74,81,82,84,86,87,89,90,92,93,95,97,98,99,106,107,109,111,112,114,115,117,120,121,122,125,128,129,133,140,141,145,148,156,159,160,161,166,169,173,174,180,187,190,194,195,196,222,229,230,241,257,269,281,282,283,284,285,286,289,293,294,298,300,302,303,306,307,312,316,318,329,343,350,359,360,361,362,363,366,368,369,377,379,384,385,388,393,397,400,401,403,413],dataclass:375,datareceiv:[314,321,335,343],dataset:298,datastor:66,date:[9,11,13,30,55,63,66,77,80,100,138,140,145,150,153,174,178,190,244,376,381,389],date_appli:140,date_cr:[48,166,169,196,286,302,360,362],date_join:[169,395],date_s:34,datetim:[48,100,140,199,360,376,381,382,388,389],datetime_format:388,datetimefield:[66,140,169,196,286,293,302,360,362,388,395],david:143,dawn:108,day_rot:381,daylight:121,db3:[5,9,11,81,112,145,160],db3_backup:5,db_:[33,48,66,110,241,294,303,317,385],db_account:[204,293,302,395,400],db_account__db_kei:400,db_account__id:407,db_account__usernam:407,db_account_id:[293,302],db_account_subscript:[196,397],db_attribut:[45,169,196,293,302,362,395,397,400],db_attribute_categori:251,db_attribute_kei:251,db_attributes__db_kei:110,db_attributes__db_value__gt:110,db_attrtyp:[360,410],db_attryp:35,db_categori:[66,110,360,363,403,410],db_category__iequ:66,db_cmdset_storag:[169,204,293,395,400],db_data:[363,403,410],db_date_cr:[66,169,196,204,286,293,302,360,362,395,397,399,400,401,410],db_desc:[302,407],db_destin:[204,293,395,400],db_destination__isnul:136,db_destination_id:293,db_entrytext:[286,399,410],db_header:[196,397],db_help_categori:[286,399,410],db_help_dict:187,db_hide_from_account:[196,397],db_hide_from_object:[196,397],db_hide_from_receiv:196,db_hide_from_send:196,db_home:[204,293,395,400,410],db_home__db_kei:407,db_home__id:407,db_home_id:293,db_index:66,db_interv:[302,401,407,410],db_is_act:[302,407,410],db_is_bot:[169,395,407],db_is_connect:[169,395,407],db_kei:[33,48,49,66,82,101,109,110,113,204,229,286,303,319,360,362,363,395,397,399,400,401,402,403,407,410,427],db_key__contain:48,db_key__exact:110,db_key__icontain:[66,110],db_key__iexact:110,db_key__in:110,db_key__startswith:48,db_locat:[33,49,110,113,204,293,395,400,410],db_location__db_kei:[400,407],db_location__db_tags__db_key__iexact:110,db_location__id:407,db_location__isnul:136,db_location_id:293,db_lock_storag:[196,204,286,360,362,395,397,399,400,401],db_messag:[196,397],db_model:[360,363,403],db_obj:[302,369,401],db_obj__db_kei:407,db_obj__id:407,db_obj_id:302,db_object_subscript:[196,397],db_permiss:66,db_persist:[302,401,407,410],db_properti:317,db_protototyp:298,db_receiver_extern:[196,397],db_receivers_account:[196,397],db_receivers_accounts__db_kei:397,db_receivers_object:[196,397],db_receivers_objects__db_kei:397,db_receivers_script:[196,397],db_receivers_scripts__db_kei:397,db_repeat:[302,401,410],db_sender_account:[196,397],db_sender_accounts__db_kei:397,db_sender_extern:[196,397],db_sender_object:[196,397],db_sender_objects__db_kei:397,db_sender_script:[196,397],db_sender_scripts__db_kei:397,db_sessid:[204,293,395,400],db_start_delai:[302,401,410],db_strvalu:360,db_tag:[110,169,196,286,293,302,362,363,395,397,399,400],db_tags__db_categori:[95,110,407],db_tags__db_kei:[95,110,397,407],db_tags__db_key__iexact:110,db_tags__db_key__in:95,db_tagtyp:[363,403,407,410],db_text:66,db_typeclass_path:[66,136,204,293,362,388,395,397,400,401,407,410],db_valu:[33,110,319,360,402,410,413],dbef:385,dbentri:187,dbhandler:427,dbholder:360,dbid:[48,167,185,362],dbid_to_obj:388,dbmodel:361,dbobj:[13,360],dbobject:[13,361,362],dbprototyp:[190,298],dbref:[9,14,29,32,34,40,48,55,62,81,82,99,108,113,119,128,137,166,169,178,180,185,190,195,223,238,241,247,269,271,273,282,289,293,294,299,302,304,361,362,368,375,385,388],dbref_search:361,dbref_to_obj:388,dbrefmax:180,dbrefmin:180,dbsafe_decod:384,dbsafe_encod:384,dbserial:[6,13,163,164,303,364],dbshell:[9,66,145,161],dbstore:250,dbunseri:369,ddesc:97,deactiv:[87,103,134,148,185,222,267,372],dead:[46,122,251,267,268,350,353,379],deadli:119,deal:[11,13,16,18,27,30,44,46,53,54,55,69,87,101,106,121,126,128,138,141,157,166,201,202,210,223,254,255,256,257,258,279,280,293,294,351,362,365,382,438],dealt:[188,256,257],dealth:256,death:[27,120,126,136],death_msg:267,death_pac:267,debat:106,debian:[11,144,145,148,150],debuff:251,debug:[1,7,15,19,27,31,41,53,72,77,106,114,115,152,171,175,179,190,214,215,223,266,296,312,317,323,324,335,357,366,372,381,388,440],debugg:[3,16,161,163],dec:63,decemb:154,decend:171,decent:[5,240],decic:240,decid:[15,16,22,29,44,46,66,67,78,79,89,91,99,101,105,120,126,128,138,154,157,159,171,201,254,290,373],decis:[47,122,126,410],declar:[59,384],declared_field:[395,396,397,399,400,401,403,427],declared_filt:407,declin:[27,201],decod:[16,336,365,388],decode_gmcp:336,decode_msdp:336,decoded_text:388,decompos:140,decompress:[321,384],deconstruct:[119,191,199,209,220,250,264,277,338,386,411],decor:[11,22,45,74,78,79,93,169,191,221,293,302,309,321,322,362,368,372,373,388],decoupl:[75,298],decoupled_mut:13,decreas:[121,257,269,370],decrease_ind:370,dedent:[26,30,388],dedic:[8,38,115,116,126,150,154],deduc:370,deduce_ind:370,deduct:[105,126,254,255,256,257,258],deem:[11,71,83,98,197,431,433,438],deep:[30,111,143],deeper:[24,102,119,252],deepest:180,deepli:13,deepsiz:388,def:[3,5,8,13,19,20,22,26,27,29,31,32,33,36,38,40,41,45,48,54,61,76,78,80,81,84,89,90,91,92,93,94,95,96,97,98,99,100,101,103,104,105,106,107,113,114,115,116,117,125,126,128,129,131,134,135,136,137,139,140,141,143,151,191,202,216,222,251,270,271,297,341,354,370,372,373,375,388],def_down_mod:256,defafultobject:113,defalt_cmdset:151,default_access:[13,360,368],default_acl:199,default_categori:285,default_charact:224,default_client_width:29,default_cmd:[4,18,76,82,85,90,91,92,93,94,96,98,99,100,103,107,114,128,163,202,204,222,234],default_cmdset:[25,44,76,91,94,96,98,99,100,103,113,114,125,129,174,202,203,204,222,223,237,247,252,254,255,256,257,258],default_command:[91,112],default_confirm:[180,238],default_content_typ:199,default_create_permiss:49,default_error_messag:384,default_help_categori:[30,187,284],default_hom:40,default_in:51,default_kei:251,default_kwarg:[29,375],default_list_permiss:49,default_out:51,default_pass:368,default_screen_width:22,default_set:[8,131],default_sit:418,default_transaction_isol:145,default_unload:51,default_weight:[82,280],default_xyz_path_interrupt_msg:273,defaultaccount:[12,48,85,87,113,114,163,166,167,181,294,386,410,427,431],defaultchannel:[18,48,85,113,163,185,194,432],defaultcharact:[8,36,48,66,76,85,91,98,99,100,103,113,114,125,126,129,163,166,182,202,204,224,241,254,255,256,257,258,294,386,427,433],defaultcmdset:211,defaultdict:303,defaultexit:[36,48,82,85,105,113,163,247,248,268,271,282,294,386],defaultguest:[85,163,166],defaultmod:381,defaultobject:[0,4,29,36,48,66,81,85,87,104,105,109,111,113,116,117,125,134,137,163,166,204,216,241,249,251,255,258,262,263,268,294,362,386,410,427,438],defaultpath:388,defaultroom:[36,48,80,82,85,95,97,105,113,139,163,217,222,241,269,271,282,294,386],defaultrout:[409,412],defaultscript:[41,48,85,97,113,128,136,137,163,167,201,210,230,238,239,240,254,255,256,257,258,260,271,281,298,304,305,345,376,386],defaultsess:[114,183],defaulttyp:357,defaultunloggedin:[114,184],defeat:[119,120,126,128,254,255,256,257,258,267],defeat_msg:267,defeat_msg_room:267,defend:[27,119,128,254,255,256,257,258,268,294],defens:[121,128,254,255,256,257,258],defense_valu:[254,255,256,257,258],defer:[19,22,54,93,140,169,171,190,196,222,248,286,293,294,302,306,309,319,321,322,353,357,360,362,363,380,381,395],deferredlist:357,defin:[2,3,4,5,6,7,8,12,13,14,15,19,25,26,30,31,36,38,40,43,47,48,49,51,53,54,55,58,59,61,64,67,69,70,71,72,74,76,78,79,80,81,84,85,86,87,89,90,91,94,96,97,98,99,100,101,103,105,106,107,108,110,112,114,115,116,120,122,125,126,129,133,134,137,138,140,142,163,165,169,171,173,174,175,177,180,186,187,188,190,191,194,195,196,200,202,204,205,207,210,211,214,220,222,223,229,230,233,238,239,240,241,249,251,252,256,257,260,268,269,279,283,284,285,286,288,289,290,291,293,294,298,299,302,305,307,308,309,312,319,322,343,344,351,352,353,356,359,360,361,362,363,365,366,367,370,372,375,376,380,383,385,388,397,399,400,410,413,420,427,436],define_charact:27,definin:115,definit:[3,8,12,15,22,30,35,36,38,40,47,54,55,58,67,74,82,86,95,101,104,112,125,173,175,180,185,188,227,238,268,288,290,293,298,299,304,366,368,372,375,384],deflist:357,degrad:8,degre:[30,84,118],deindent:388,del:[13,38,55,93,99,119,125,128,178,180,222,237,238,250,251,362],del_callback:[228,230],del_detail:222,del_pid:312,delai:[22,74,92,136,190,210,223,230,248,263,268,306,307,324,330,353,367,388],delaliaschan:185,delayed_import:353,delchanalia:185,delcom:[99,107,185],deleg:[169,196,286,293,302,360,362,363,380],delet:[8,9,11,12,13,14,18,20,26,27,29,32,35,36,41,44,45,46,50,55,62,76,78,81,82,89,112,113,114,119,125,128,145,148,155,156,160,166,174,177,178,179,180,185,186,187,190,194,196,199,207,217,221,222,227,228,230,231,234,237,238,247,250,251,268,281,286,290,294,298,303,304,305,306,307,318,330,351,360,362,365,366,372,379,395,396,403,408,412,428,433,437,438],delete_attribut:360,delete_default:[20,174],delete_dupl:221,delete_prototyp:298,deletet:222,deleteview:437,deliber:[3,13,71,121,388],delic:204,delimit:[63,106,188,366],deliv:[154,234,241],delpart:238,delresult:238,deltatim:388,delux:154,demand:[41,47,94,99,120,122,126,134,154,166,194,222,251,294,354,367],demo:[53,76,77,86,102,118,119,124,127,130,132,143,265,266,372],democommandsetcomm:266,democommandsethelp:266,democommandsetroom:266,demon:40,demonin:388,demonstr:[74,76,89,125,138,140,202,223,244,256],demowiki:89,deni:[18,144,157,229,233],denot:[97,141,279,366],denounc:371,depart:80,depend:[5,6,7,11,13,15,16,18,19,20,22,27,29,31,34,41,43,44,47,48,51,54,55,56,59,61,63,64,67,74,76,77,78,79,80,81,82,83,86,87,89,98,99,101,105,112,113,114,119,120,122,125,126,128,129,135,140,141,145,148,152,153,154,156,157,165,171,173,175,177,190,202,203,211,222,228,240,251,263,271,279,280,282,284,290,294,298,307,312,332,335,341,343,353,362,363,370,372,373,388],depict:217,deplet:[251,256],deploi:[79,84,154,157],deploy:[2,7,84,143,154,156,159],depmsg:381,deprec:[19,27,40,163,164,299,308,365,372,381,388],deprecationwarn:311,depth:[2,17,30,56,82,119,187,252,287,299],dequ:[13,355],deriv:[8,48,68,97,145,148,150,156,270,365,389],desc:[15,18,31,32,33,36,40,41,50,76,78,81,82,90,98,99,101,104,105,107,108,113,121,128,136,141,163,164,174,177,180,185,191,197,202,204,207,208,216,222,237,238,247,252,257,263,271,302,310,366,368,370,371,372,427,433,438],desc_add_lamp_broken:263,desc_al:267,desc_closed_lid:263,desc_dead:267,desc_open_lid:263,descend:[110,427],describ:[8,10,11,13,14,15,18,20,22,27,32,39,40,48,50,51,53,59,63,66,67,69,72,75,76,79,81,82,83,84,86,87,90,94,99,100,101,105,107,108,112,113,115,116,121,125,128,140,143,145,148,151,153,154,161,173,180,184,185,186,196,204,207,210,215,222,239,241,251,257,263,279,280,299,305,309,330,332,335,345,372,387,388,400],descripion:267,descript:[11,15,16,18,27,31,40,46,50,53,71,72,74,76,77,79,80,81,82,84,86,90,95,98,99,105,108,111,120,121,138,140,141,147,154,177,180,185,186,194,201,202,204,215,222,237,239,241,247,250,251,252,262,263,266,267,268,269,270,271,279,282,294,302,366,368,372,382,383,395,400,409,413],description_str:81,descvalidateerror:237,deseri:[6,13,382,410],deserunt:28,design:[0,15,22,36,40,46,53,56,68,71,78,81,83,86,95,98,106,110,112,120,121,122,123,125,134,135,140,143,145,174,180,202,229,241,244,268,294,366,382,388],desir:[19,46,47,51,59,68,80,82,89,92,93,98,99,106,129,137,140,180,194,205,221,240,290,312,357,360,368,374,389],desired_perm:290,desk:125,desktop:[16,56],despit:[13,14,44,87,98,103,143,148,269],dest:[270,294],destin:[22,31,36,40,50,74,76,80,81,82,91,105,106,117,125,137,180,244,247,248,254,255,256,257,258,268,269,273,274,279,280,282,293,294,299,368,413,433],destinations_set:293,destroi:[8,18,36,74,107,108,128,157,166,167,180,185,238,256,294],destroy:247,destroy_channel:185,destroy_compon:216,destroy_lock:408,destruct:[20,173],detach:7,detail:[0,5,9,11,12,16,18,22,27,30,32,36,40,41,44,48,50,55,57,59,67,71,72,75,76,77,78,79,81,82,83,84,87,94,99,106,108,112,113,114,115,119,120,121,123,128,133,135,141,145,148,154,174,175,180,194,199,202,207,216,222,238,239,241,251,255,269,271,279,286,287,299,306,314,315,351,353,362,365,370,375,388,391,395,400,412,413,428,435,437,438],detail_color:180,detailkei:[222,269],detailview:437,detect:[2,18,20,22,36,44,67,84,103,120,125,135,157,172,175,324,412],determ:361,determin:[5,12,14,16,18,19,20,22,26,27,28,30,32,35,40,41,51,64,78,80,82,89,93,95,96,104,105,108,114,125,126,128,129,133,145,148,161,166,173,174,175,177,185,187,188,191,194,201,240,241,248,252,254,255,256,257,258,268,280,284,286,290,294,298,336,360,361,362,365,370,373,381,388,395,397,400,407,408,416],determinist:280,detour:[64,90,112,116,353],dev:[30,83,86,87,98,115,123,143,145,148,150,151,154,155,439],devel:112,develop:[0,2,3,5,6,7,11,16,18,19,22,29,30,38,40,43,49,51,53,56,57,63,66,67,68,72,75,77,81,83,84,86,87,88,91,97,99,106,108,109,111,112,113,114,115,116,120,122,123,131,133,138,140,145,147,148,151,152,154,160,178,179,185,186,187,190,194,214,227,228,233,244,286,294,299,358,362,366,372,439],deviat:123,devoid:365,dex:[13,27,99,113,115,121,371],dexter:[121,254,255,256,257,258],diagnos:[6,94],diagon:[82,277],diagram:48,dialog:51,dialogu:[74,77,121,440],dice:[78,106,116,122,126,128,148,163,164,197],dicecmdset:211,dicenum:211,dicetyp:211,dict:[8,13,14,20,27,29,30,40,41,45,49,53,67,74,78,79,82,85,91,107,166,167,173,175,180,187,191,194,204,207,210,222,223,227,230,233,240,241,244,245,251,252,256,258,262,269,279,280,281,284,287,294,296,297,298,299,305,307,309,310,312,317,322,323,325,330,332,335,340,341,352,353,355,361,366,367,369,371,372,373,375,383,388,427,432,435,436,438],dict_of_kwarg_convert:29,dictat:[20,100,134],dictionari:[6,13,14,20,32,40,54,74,80,86,91,97,100,101,126,128,141,178,180,199,204,210,222,223,227,230,233,240,241,244,245,246,252,256,257,269,271,290,299,306,317,330,339,351,352,353,355,361,365,367,371,372,379,382,383,384,388,427,436,438],did:[11,12,43,63,76,81,87,90,93,98,106,107,108,113,114,115,125,129,166,201,294,306,363,384,388,392],did_declin:201,didn:[3,8,27,32,43,73,76,80,82,84,96,99,106,107,108,109,113,114,115,116,119,133,137,138,140,152,156,281],die:[7,106,119,122,126,134,211,240,353],dies:[122,267],diff:[11,153,211,299],differ:[3,5,7,8,11,12,13,14,15,16,19,20,22,26,27,29,30,32,33,35,40,41,44,45,46,47,51,56,57,59,61,62,64,67,69,70,71,73,74,75,76,77,78,79,80,81,82,83,84,86,87,88,90,91,95,96,98,99,100,101,102,104,106,107,108,109,110,112,113,114,115,116,118,120,123,125,126,128,133,135,136,137,138,140,143,144,146,147,148,156,157,160,161,163,166,171,173,174,177,180,187,189,190,192,194,202,207,210,211,212,215,216,219,230,231,234,239,241,248,251,252,254,255,256,257,258,270,271,277,279,280,282,296,299,302,307,310,314,336,341,343,360,362,366,368,372,381,384,388,392,395,396,403,407,412,413,436,438],differenti:[97,98,99,112,113,121,122,204,241,252,294,388],differnt:216,difficult:[5,89,95,122,140,157,257,258],difficulti:[78,140],dig:[5,20,22,36,40,61,73,74,82,98,99,107,108,112,114,119,129,137,180,214,247,344],digit:[29,55,59,154,239,356,365,375,381],digitalocean:[150,154],dijkstra:[82,279,280],diku:[86,87,102,440],dikumud:71,dime:68,dimens:[80,86],dimension:99,dimenst:116,diminish:59,dimli:81,dinner:[79,122],dip:115,dir:[2,8,9,11,41,53,63,75,77,84,87,90,99,102,113,115,116,141,143,145,147,148,150,153,154,156,381,388,416],direcetli:375,direct:[9,13,20,27,31,40,51,54,55,67,74,76,77,80,81,82,84,88,96,99,108,128,131,135,137,144,154,156,180,191,216,229,245,271,273,277,279,280,281,282,290,305,312,372,374,375,381,385,388,440],direction_alias:[82,280],direction_nam:280,direction_spawn_default:280,directli:[3,4,9,11,12,14,15,19,22,26,27,30,32,34,36,40,41,43,48,50,51,52,53,59,61,67,78,79,81,82,83,86,87,90,93,94,96,97,99,100,107,108,109,110,111,112,113,115,116,117,120,128,129,135,144,145,152,154,156,161,175,191,195,199,201,202,203,211,214,219,221,233,241,252,257,258,263,269,270,280,282,285,290,293,294,298,302,318,323,332,335,340,343,345,351,360,362,366,368,372,373,375,386,388],director:[77,241,294],directori:[1,2,5,7,8,9,10,11,14,19,48,51,53,72,75,83,87,89,91,99,100,101,111,112,129,133,140,141,144,145,148,153,156,180,199,244,312,332,333,357,366,381,388],directorylist:357,dirnam:312,dirti:86,disabl:[5,7,8,26,32,51,59,70,74,89,91,103,125,146,175,191,223,241,250,251,252,263,270,290,298,335,355,373,375,379,389],disableloc:335,disableremot:335,disadvantag:[99,122,128,154,258],disambigu:[152,175,294,362],disappear:157,discard:365,disconcert:123,disconnect:[6,9,12,13,18,39,44,45,46,51,55,61,98,122,128,129,160,161,166,177,180,185,188,190,194,294,322,323,324,330,331,332,335,340,341,344,350,351,352,353],disconnect_al:330,disconnect_all_sess:353,disconnect_duplicate_sess:353,disconnect_session_from_account:166,discontinu:146,discord:[75,88,123,143,148,152],discordia:68,discourag:[87,122,153],discours:122,discov:[106,119,122,360],discoveri:245,discret:[34,112,413],discrimin:157,discuss:[0,18,22,53,77,82,83,86,88,89,91,101,117,122,128,145,148],discworld:67,disengag:[77,128,166,254,255,256,257,258],disk:[13,19,66,68,156,161,240,244,279,284,296],dislik:98,disonnect:13,dispatch:83,dispel:138,displai:[3,5,17,20,22,26,27,30,32,36,41,43,49,51,52,53,58,59,64,67,72,74,76,77,79,81,82,84,91,94,99,101,103,104,105,106,113,120,125,128,129,133,140,141,157,166,175,177,180,185,187,190,191,192,201,202,204,212,215,219,221,222,223,225,228,230,234,241,251,252,263,266,268,269,270,271,277,279,280,282,284,294,298,299,310,312,329,347,350,355,362,363,370,371,372,373,374,382,383,384,387,388,389,397,399,401,402,403,410,427,432,436,437,438],display:307,display_all_channel:185,display_buff:370,display_choic:202,display_formdata:223,display_help:370,display_helptext:[296,372],display_len:388,display_map:277,display_met:225,display_nam:375,display_nodetext:372,display_subbed_channel:185,display_symbol:[82,279,280,282],display_symbol_alias:280,display_titl:202,dispos:[81,238],disput:128,disregard:22,dissect:107,dist:[82,148,277,279],distanc:[19,48,79,80,82,87,95,109,240,257,258,277,279,294,388,405],distance_inc:258,distance_to_room:95,distant:[80,222,269],distinct:[44,73,86,87,110,258,407],distinguish:[76,175,252,258],distribut:[3,6,8,9,16,18,20,75,87,111,142,144,145,148,194,196,199,241,365,368,388,391],distribute_messag:194,distro:[144,145,148,150,152],disturb:[19,73],distutil:148,distutilserror:148,ditto:148,div:[17,29,40,51,56,84,131],dive:[76,116,117,118,148],diverg:64,divid:[14,29,87,101,210,269,388],dividend:210,divis:250,divisiblebi:101,divisor:210,divivid:121,django:[0,2,8,9,12,16,41,43,45,46,48,49,50,51,52,53,63,66,69,75,86,89,91,95,101,102,112,113,117,118,125,126,131,133,136,141,143,145,148,157,166,169,192,194,196,198,199,200,209,212,250,277,282,286,293,298,302,311,312,318,319,332,338,340,341,348,354,355,356,357,360,362,363,366,369,373,378,379,380,384,386,388,392,393,394,395,396,397,398,399,400,401,402,403,407,408,410,412,413,418,419,422,427,431,432,433,435,436,437,438,440],django_admin:428,django_filt:[407,413],django_nyt:89,djangofilterbackend:413,djangonytconfig:89,djangoproject:[145,427],djangowebroot:357,dmg:126,dnf:[144,148,150],do_attack:267,do_batch_delet:360,do_batch_finish:360,do_batch_update_attribut:360,do_craft:207,do_create_attribut:360,do_delete_attribut:360,do_flush:[362,379],do_gmcp:336,do_hunt:267,do_mccp:325,do_msdp:336,do_mssp:326,do_mxp:327,do_naw:328,do_nested_lookup:180,do_not_exce:91,do_noth:266,do_patrol:267,do_pickl:369,do_search:187,do_sit:125,do_stand:125,do_task:[190,306,388],do_task_act:190,do_unpickl:369,do_update_attribut:360,do_xterm256:365,doabl:15,doc:[10,17,18,22,24,27,30,40,48,50,53,56,66,71,82,85,87,88,91,102,110,111,112,116,121,123,125,133,143,145,160,161,163,180,190,239,270,273,294,323,388,427,439,440],docker:[143,148,154,159,160,440],dockerfil:156,dockerhub:156,docstr:[30,31,84,91,107,113,114,125,175,180,191,202,214,228,240,241,251,252,263,269,270,279,287,343,372],document:[0,1,4,5,7,8,11,17,24,28,30,41,43,48,49,50,52,53,56,59,60,63,66,72,74,75,76,77,78,79,81,82,86,87,88,91,93,98,99,102,111,112,113,115,116,118,119,129,131,133,137,140,143,145,146,154,157,159,160,174,188,202,239,270,287,360,363,371,379,407,432,435],dodg:255,doe:[0,8,11,12,13,18,20,22,27,29,30,32,34,36,38,40,41,43,46,48,51,52,53,58,59,61,67,69,71,73,75,78,80,81,82,83,84,86,87,89,90,91,93,95,97,98,99,101,105,106,107,108,111,112,113,115,116,119,120,121,125,126,128,129,133,134,135,137,138,139,140,142,145,146,147,148,150,156,161,166,167,177,188,190,191,192,203,204,205,207,212,214,221,222,237,238,251,252,254,255,256,257,258,268,269,270,271,279,280,294,298,299,305,306,311,312,316,317,318,321,324,332,333,339,360,362,367,372,375,381,384,388,419,427,438],doesn:[0,2,8,9,13,14,16,22,27,29,34,36,48,51,52,53,66,67,74,75,76,78,79,80,81,82,83,89,93,95,96,98,101,106,107,113,115,116,120,122,125,126,129,133,137,138,140,142,148,151,152,153,154,157,160,161,174,185,194,196,199,203,207,222,229,230,241,256,279,280,290,294,312,325,332,336,360,365,372,383,388,395],doesnotexist:[166,167,169,194,196,201,204,210,216,217,222,224,230,238,239,240,241,247,248,249,254,255,256,257,258,260,262,263,267,268,269,271,281,282,286,293,294,298,302,305,319,345,360,363,368,376,380],doff:255,dog:19,doing:[2,5,6,8,12,13,19,20,22,27,36,38,44,47,48,51,53,54,59,78,79,80,84,87,88,89,93,95,98,99,101,107,110,113,115,116,121,122,127,138,140,141,143,154,161,166,177,194,201,204,207,216,221,229,241,252,254,255,256,257,258,262,267,268,271,289,294,307,343,372,379,384,392,418],doll:[78,207],dolor:28,dolphin:107,dom:51,domain:[53,86,144,150,154,157,368],domexcept:154,domin:122,dominion:75,dompc:75,don:[0,3,5,6,7,8,9,11,13,18,19,20,22,26,27,29,30,32,41,43,44,48,53,54,59,63,64,66,67,72,73,74,75,76,78,79,81,82,83,84,87,88,89,90,91,93,94,95,96,99,100,101,102,103,105,106,107,108,110,112,113,114,115,116,118,119,120,121,122,123,126,128,129,131,133,138,139,140,141,145,147,148,150,152,153,154,157,166,167,173,174,180,185,186,187,188,189,194,202,208,211,216,217,229,233,240,241,250,255,256,257,263,269,270,271,273,279,280,290,293,294,298,299,307,316,317,324,329,330,335,337,344,351,358,362,365,366,372,379,381,384,388,396,408,427,436],donald:5,donat:[88,154],done:[0,2,5,9,11,13,20,22,27,29,30,32,35,45,47,50,51,52,53,54,63,68,75,76,80,82,83,84,86,87,88,89,90,91,93,94,95,96,97,98,99,100,101,104,105,106,108,112,113,115,116,122,125,126,128,129,133,134,135,136,137,138,140,145,148,150,154,156,161,166,175,177,185,191,201,211,240,258,271,279,281,290,293,294,305,306,307,312,325,329,331,333,337,341,347,350,351,353,358,360,365,366,373,375,379,388,392,436],donoth:305,dont:[143,334],doom:[82,299],door:[19,30,32,36,74,76,80,82,105,108,117,120,157,180,221,247,280],doorwai:247,dot:[4,53,76,174,180,366,388],dotal:[365,387],dotpath:388,doubl:[6,76,84,98,115,140,173,192,387,388],doublet:[173,174],doubt:[76,82,270],down:[2,4,5,7,13,20,22,26,27,43,51,55,66,68,74,76,78,80,81,84,86,89,90,93,95,98,99,103,105,106,111,115,118,119,120,122,124,125,126,127,129,130,132,133,148,154,156,157,166,180,185,190,216,230,244,252,255,256,268,271,277,279,280,287,289,294,299,305,307,312,314,321,322,329,330,350,351,353,365,373,374,388],download:[0,9,10,11,75,87,111,143,145,148,152,153,154,156,160],downmaplink:[82,280],downtim:[93,157,376],downward:177,dozen:[68,86,91],drag:51,dragon:[97,107,109,113,114,116,122],drain:251,drama:30,dramat:[13,110,120,125],dramati:30,drape:204,draw:[15,80,82,84,95,126,374],draw_room_on_map:80,drawback:[15,27,66,92,93,99,109,122,125,126,145,203,366],drawn:[80,81,99],drawtext:126,dream:[0,71,86,120,123],dress:204,drf:[407,410],drift:122,drink:[121,216,360,362],drinkabl:216,drive:[11,29,57,75,87,90,111,116,120,122,123,137,140,148,156],driven:[77,91,121,122,123,129,143,249,296],driver:145,drizzl:[41,139],drop:[9,15,22,32,34,35,36,51,61,66,67,75,83,86,88,90,91,98,99,101,105,107,108,109,112,113,114,115,122,125,134,135,137,145,154,180,186,204,238,249,255,258,263,294,321,362,366,388],drop_whitespac:374,dropdown:7,droplet:150,dropper:[255,258,294],drum:154,dry:150,dtobj:388,duck:[19,115],duckclient:146,due:[5,20,22,43,45,48,55,61,73,76,87,93,99,100,106,115,138,148,154,174,190,293,294,314,350,353,365,381,396],duh:68,dull:[0,81,108],dum:287,dumb:[108,353,365],dummi:[5,8,22,32,75,78,115,122,147,207,241,290,312,330,343,344,351],dummycli:343,dummyfactori:343,dummyrunn:[163,164,308,312,330,342,344,346],dummyrunner_act:343,dummyrunner_actions_modul:343,dummyrunner_echo_respons:343,dummyrunner_set:[5,163,164,308,312,342],dummyrunner_settings_modul:5,dummyrunnercmdset:343,dummysess:353,dump:[244,321],dungeon:[46,82,86,112,117],dungeonmap:82,dupic:20,duplic:[20,83,173,180,307,362,381],durat:[54,92,139,190,256,382,389,440],dure:[6,13,20,32,44,45,51,61,62,72,73,75,82,84,93,116,120,122,128,129,133,139,143,148,156,166,173,185,191,199,207,214,222,238,267,269,270,279,280,290,306,321,331,366,368,372,381,400,427],duti:87,dwarf:81,dwarv:122,dying:[122,254,255,256,257,258],dynam:[8,12,41,47,51,52,53,66,77,81,82,104,110,112,131,140,154,166,169,175,187,190,191,196,223,241,251,252,254,255,256,257,258,277,280,282,286,293,294,298,302,307,360,362,363,368,370,372,380,382,388,395,400,416,438,440],dyndns_system:154,each:[2,3,5,6,8,12,13,14,18,19,20,22,24,27,29,30,32,40,43,44,46,47,48,50,51,53,54,57,59,61,64,66,68,73,74,76,77,78,80,81,82,84,86,87,89,93,95,97,98,99,100,101,104,105,107,110,111,113,114,115,116,118,120,126,127,128,129,133,137,138,139,140,156,166,172,173,174,178,180,185,187,189,191,194,201,203,204,205,207,216,221,222,223,238,240,241,251,252,254,256,257,258,263,264,271,277,279,280,281,282,284,286,287,290,293,294,297,298,299,304,307,314,317,330,332,335,339,344,351,352,353,360,362,363,365,366,368,370,371,372,373,374,375,379,388,410,413,416],eagl:125,eaoiui:240,earler:108,earli:[2,123,254,255,256,257,258,314],earlier:[2,7,11,14,18,20,27,30,31,75,87,99,100,105,107,114,115,116,120,129,131,137,141,147,280,284,317],earn:123,earnest:[117,122],earth:[104,157],eas:[20,22,66,95,113,138,154,156],easi:[0,7,8,9,11,14,17,22,27,30,36,41,48,53,54,67,68,69,73,74,76,79,81,82,84,86,93,95,97,100,101,103,104,105,107,114,115,116,120,122,123,125,126,128,129,135,138,140,141,143,145,150,152,154,156,174,178,204,207,219,223,252,372,379],easier:[13,27,30,40,41,49,50,53,54,55,66,76,82,83,84,86,89,91,95,97,98,99,100,101,106,107,110,113,114,115,116,118,119,120,122,123,125,126,133,138,154,180,208,240,252,254,255,256,257,258,268,273,282,354,360,363,388],easiest:[9,11,16,19,49,53,55,63,72,74,78,79,82,91,94,99,113,129,140,148,150,244,362],easili:[7,11,13,14,15,17,18,19,22,27,30,32,34,40,44,45,46,51,53,55,63,64,67,68,73,74,78,79,80,81,83,84,88,89,91,92,95,99,100,105,106,108,110,112,113,114,117,119,120,121,122,126,129,131,133,140,148,154,155,156,157,185,194,196,201,202,204,223,225,229,240,247,251,252,254,255,256,257,258,270,273,284,285,286,307,366,372,383],east:[80,81,82,91,96,180,269,279,280],east_exit:269,east_west:81,eastern:[81,100,279,281],eastward:269,eat:[214,216],eccel:374,echo1:93,echo2:93,echo3:93,echo:[0,2,19,22,26,29,40,43,54,55,73,80,84,92,93,96,107,108,114,115,121,128,129,135,139,149,151,154,155,156,161,166,167,178,180,185,190,191,204,211,241,262,267,268,269,273,294,310,317,332,335,370,372,388],echocmdset:107,echol:160,echowoo:107,econom:[66,86,112,113,116,122,143],economi:[41,68,120,126,136,201],ecosystem:156,edg:[11,19,56,82,191,208,279,280,374,388],edgi:80,edibl:216,edit:[0,6,7,9,13,14,15,18,22,25,30,32,38,40,43,49,51,52,61,63,66,72,74,75,77,79,81,82,83,89,91,94,97,99,100,101,103,113,118,122,133,140,141,143,145,147,150,153,156,178,180,187,190,202,212,223,227,228,230,231,237,238,290,294,296,298,299,360,370,399,400,408,427,433,437,438,440],edit_callback:[228,230],edit_handl:180,editcmd:76,editor:[6,11,16,22,29,30,40,49,63,68,74,75,76,79,81,84,85,90,98,115,116,143,148,150,180,187,189,190,202,237,302,366,370],editor_command_group:370,editorcmdset:370,editsheet:99,edu:391,effect:[8,9,13,15,18,19,20,25,35,41,43,45,47,53,54,59,71,73,77,81,82,84,92,93,95,97,98,99,115,116,120,121,122,125,126,128,134,138,161,166,173,174,180,189,194,198,211,216,230,251,255,256,257,267,269,280,294,300,302,325,388,439],effici:[0,5,13,35,41,46,47,48,66,86,87,92,93,95,97,110,116,125,139,143,157,201,241,248,279,280,282,290,294,307,360,361,363,370,373],effort:[11,83,97,112,141,433],egg:[78,153,207],egg_info:148,egi:314,eight:216,eightbal:117,either:[5,6,9,11,14,17,19,20,22,27,29,32,38,40,41,44,46,48,51,53,55,58,64,74,75,78,79,80,81,82,83,84,89,93,95,96,97,98,99,101,106,107,109,110,112,113,115,116,119,122,125,126,128,129,137,138,145,154,157,161,166,167,173,174,175,185,190,195,202,207,227,233,234,240,241,247,251,252,254,257,258,263,279,280,281,282,290,294,297,299,302,304,305,307,310,321,333,337,344,361,362,363,372,374,375,381,383,385,388,391],elabor:[76,84,89,105,106,129],electr:154,eleg:83,element:[5,17,27,29,53,56,58,76,78,82,86,106,113,114,115,117,172,177,187,191,199,202,210,239,240,279,281,282,294,299,360,361,363,366,371,372,373,375,388],elev:[77,79,104,440],elif:[27,41,74,80,99,107,117,126,128,129,134],elig:[199,375],elimin:[156,365],ellow:[59,365],els:[3,8,11,12,18,19,22,27,30,32,33,41,47,51,53,54,55,57,74,75,76,78,79,80,81,84,90,91,93,94,95,99,101,103,104,105,106,107,108,114,115,117,120,123,125,126,128,129,134,136,137,140,141,145,154,157,185,191,199,201,204,223,239,254,255,256,257,258,271,293,341,362,372,388],elsennsometh:191,elsewher:[12,20,46,53,93,99,111,113,140,174,269,280,312,353,360],elv:122,elvish:240,emac:[15,143],email:[11,23,34,87,112,117,118,148,150,160,166,212,368,382,388,389,395,427],email_login:[163,164,197],emailaddress:388,emailfield:[395,427],emb:[40,82,84,99,222,299],embark:137,embed:[29,40,48,53,70,82,112,121,187,194,279,297,371,375,388],emerg:[38,63,157],emi:240,emit:[51,68,91,107,166,174,178,194,224,294,351,381],emit_to_obj:[174,294],emo:90,emoji:146,emot:[18,22,29,30,77,86,121,122,123,128,166,186,201,214,240,241,360,375],emoteerror:241,emoteexcept:241,emphas:84,emphasi:84,emploi:389,empti:[3,6,8,9,11,12,15,18,20,22,27,33,36,41,47,48,50,51,53,54,66,67,74,75,78,80,82,84,87,99,101,106,107,110,112,113,114,115,116,117,121,125,126,129,131,134,141,147,148,150,156,160,171,172,178,180,185,191,202,207,225,227,241,251,279,280,298,299,310,317,321,343,344,360,366,368,372,374,385,388,396,403],emptor:199,empty_color:225,empty_permit:[397,399,401,403,427],empty_symbol:279,empty_threadpool:357,emptyset:20,emul:[5,44,71,87,121,122,129,153,190,251],enabl:[7,51,52,59,138,141,144,145,146,151,156,157,166,200,223,250,335,389],enable_recog:241,enableloc:335,enableremot:335,enact:214,encamp:79,encapsul:382,encarnia:143,encas:370,enclos:[25,26,115,192,212,375],encod:[19,60,81,82,99,280,323,336,340,341,365,384,388,440],encode_gmcp:336,encode_msdp:336,encoded_text:388,encompass:19,encount:[174,280,375,389],encourag:[76,88,95,106,131,146],encrypt:[64,144,150,157,185,199,332,333,337],encumb:121,end:[0,5,9,11,13,14,15,19,20,22,26,27,29,30,32,35,40,44,45,51,54,57,58,59,61,63,64,66,67,68,72,73,75,76,82,84,86,87,90,91,92,93,95,99,100,101,103,106,108,110,112,114,115,116,117,118,119,121,122,125,126,128,129,135,137,138,140,141,144,145,147,149,150,154,156,160,166,167,173,174,180,186,187,201,203,204,208,211,216,219,225,237,241,249,252,254,255,256,257,258,269,279,280,285,316,323,324,332,335,336,343,346,351,355,357,361,365,366,368,372,373,374,375,381,388,436],end_convers:27,end_direct:280,end_turn:128,end_xi:[82,279],endblock:[53,101,131,140,141],endclr:375,endcolor:29,endcoord:277,endfor:[101,140,141],endhour:91,endif:[101,140,141],endless:53,endlessli:157,endpoint:[49,157,412,413],endpoint_url:199,endsep:388,endswith:365,enemi:[13,27,40,93,119,120,128,256,257,258,267,268,269],enemynam:27,enforc:[22,38,54,59,120,126,138,332,335,373,374,433],enforce_s:374,engag:[86,258,267],engin:[2,8,11,22,30,36,43,73,76,77,87,97,114,119,126,133,143,145,157,159,171,174,187,189,190,207,245,269,285,312,323,329,332,335,340,350,352,366,368],english:[6,16,29,63,69,143,391],enhanc:[59,103,115,244,365,437],enigmat:108,enjoi:[7,106,119,120,123,148],enough:[3,18,32,33,35,46,47,68,78,82,84,86,87,88,89,90,93,95,98,99,101,105,106,107,110,111,113,114,116,120,125,129,133,138,148,150,154,174,180,191,207,239,240,263,271,280,372,373,374],enpoint:410,ensdep:388,ensur:[7,8,80,101,134,138,145,156,252,355,386,433],ensure_ascii:341,enter:[0,2,3,5,9,11,14,15,16,18,19,20,22,25,27,29,30,35,36,38,40,52,53,59,62,64,71,72,74,75,76,77,79,81,82,87,90,91,93,96,99,100,101,105,106,114,115,118,119,125,128,129,131,134,140,145,148,153,156,160,163,166,172,174,179,187,188,190,201,202,204,216,219,222,223,233,252,254,255,256,257,258,267,269,271,289,294,299,302,310,351,372,416,427],enter_guild:27,enter_nam:27,enter_wild:271,enterpris:2,enthusiasm:123,enthusiast:[77,122],entir:[8,13,14,15,19,22,26,27,29,30,32,47,48,53,54,57,66,68,76,79,80,81,82,93,101,106,111,112,115,120,122,129,133,154,202,240,241,252,270,279,280,281,282,290,294,298,299,362,366,372,374,379,388,436],entireti:[27,126,215,223,372],entit:368,entiti:[13,18,19,27,29,30,32,33,34,35,36,40,41,44,45,46,48,50,53,82,85,87,109,110,111,112,113,117,120,125,128,138,165,166,175,180,185,190,194,195,196,207,216,241,247,251,262,281,282,284,286,287,289,294,296,297,298,299,300,302,303,305,307,353,360,361,363,368,372,373,375,378,385,388,403,413],entitii:45,entitl:154,entranc:[81,82],entri:[11,13,16,19,20,22,24,27,32,45,53,85,89,91,99,101,106,107,111,113,117,122,137,146,147,148,152,166,175,187,188,191,199,207,216,225,239,252,254,255,256,257,258,283,284,285,286,287,290,294,307,331,344,355,360,366,368,370,372,374,381,382,385,388,389,399,407,410,413,432,435],entriest:177,entrypoint:156,entrytext:[30,101,284,286,368],enul:144,enumar:388,enumer:141,env:[199,312,322],environ:[1,2,9,14,52,75,84,87,89,91,104,115,120,122,123,148,149,154,156,157,190,191,199,209,220,264,266,277,312,322,338,347,366,372,386,411,428],environment:312,envvar:148,eof:332,epic:143,epilog:270,epoch:[19,100,376],epollreactor:357,epub:143,equal:[6,20,22,56,57,59,74,79,82,91,95,106,108,110,113,114,122,137,173,185,222,241,250,251,254,255,256,257,258,294,388],equip:[15,59,77,98,112,121,122,204,254,255,257,258],equival:[9,13,14,29,35,43,50,53,54,59,61,67,82,111,115,117,148,157,161,165,180,273,279,280,285,330,336,360,388,408,436],eras:[75,258],err:[32,99,321,343,366],err_travers:[36,294],errback:[54,309,312,321,322,388],errmessag:173,errmsg:[129,381],erron:[69,129,321,374],error:[0,3,4,6,8,9,11,13,15,16,18,19,20,22,27,29,31,32,35,36,38,40,43,44,48,53,54,63,64,66,69,72,75,76,78,81,82,83,84,87,97,98,99,102,106,108,113,114,116,117,119,123,125,129,135,136,140,144,145,146,148,150,151,153,154,157,163,164,166,171,173,174,180,185,194,207,209,230,239,241,251,252,268,270,278,280,282,290,294,297,298,305,306,309,311,312,314,316,321,335,343,362,365,366,368,371,372,375,381,384,388,389,393,408,410,426,430,440],error_check_python_modul:312,error_class:[397,399,401,403,427],error_cmd:96,error_consumable_excess_messag:207,error_consumable_missing_messag:207,error_consumable_order_messag:207,error_msg:355,error_tool_excess_messag:207,error_tool_missing_messag:207,error_tool_order_messag:207,errorlist:[397,399,401,403,427],errorlog:144,escal:[12,38,57,122,177,289],escap:[29,59,77,82,101,186,190,214,217,270,365,375,387,427],escape_char:375,escaperoom:217,escript:[76,202],esom:187,especi:[5,16,32,38,44,46,76,81,93,112,113,115,120,144,145,148,225,240,366],esqu:113,ess:28,essai:143,essenti:[7,69,80,92,97,112,122,143,150,153,195,312,368],est:[28,191],establish:[22,44,120,121,122,126,150,166,254,294,309,321,323,330,332,335,340,343,350,352],estim:[94,279,299,379],esult:294,etc:[0,8,11,12,13,18,19,22,25,27,29,30,32,33,34,35,36,38,40,41,44,45,48,50,51,52,53,55,61,64,66,67,68,70,76,77,80,82,84,85,86,87,91,93,94,97,98,99,100,107,108,110,111,112,120,121,122,125,126,128,136,138,139,143,144,145,148,150,156,157,161,166,169,171,172,173,174,177,179,180,185,188,190,199,201,205,208,210,216,217,223,225,238,240,241,247,251,255,257,263,270,279,280,281,282,294,298,299,330,332,335,339,340,341,351,352,360,362,365,366,368,369,370,371,372,375,381,388,396,403,407,413,416,438],etern:27,ev_channel:167,evadventur:[122,127],eval:[29,40,201,388],eval_rst:84,evalstr:290,evalu:[22,29,84,110,121,123,172,201,290,372,375],evbot:[185,353],evcast:143,evcel:[371,374],evcolor:143,evcolum:374,evcolumn:374,eve:388,eveditor:[24,30,76,85,163,164,202,364,440],eveditorcmdset:370,even:[0,3,5,6,7,11,13,15,18,19,20,26,27,30,32,38,41,44,47,48,49,50,55,57,59,63,66,68,71,72,75,76,77,79,80,82,83,86,87,88,89,90,91,93,95,97,98,99,100,101,102,105,106,110,111,113,114,115,116,119,120,121,122,123,125,126,127,128,129,135,138,147,148,154,157,161,173,175,178,185,187,204,207,210,222,223,240,251,254,255,256,257,258,269,270,279,280,282,294,298,299,335,372,374,375,379,388],evenia:111,evenli:[19,82,210,280,388],evenn:156,evenna:75,evenni:89,evennia:[1,2,5,6,10,12,13,14,15,16,17,18,19,20,22,24,25,26,27,28,30,31,32,33,34,35,36,38,39,41,43,44,45,46,47,48,50,52,53,54,57,58,59,60,61,62,64,66,67,68,69,71,72,74,76,77,78,79,80,81,82,83,85,87,88,90,92,93,94,95,96,100,101,102,103,105,107,108,109,110,112,113,114,116,117,118,119,120,121,123,125,126,128,129,131,133,134,135,136,137,139,140,141,142,146,148,149,152,155,157,159,160,440],evennia_access:144,evennia_admin:398,evennia_channel:[149,152,155,185],evennia_dir:388,evennia_error:144,evennia_gener:133,evennia_launch:[7,163,164,308,310],evennia_logo:[53,133],evennia_superuser_email:148,evennia_superuser_password:148,evennia_superuser_usernam:148,evennia_vers:312,evennia_websocket_webcli:340,evennia_wsgi_apach:144,evenniaadminapp:418,evenniaadminsit:418,evenniaapiroot:409,evenniacreateview:[431,437,438],evenniadeleteview:[437,438],evenniadetailview:[435,437,438],evenniaform:427,evenniagameindexcli:314,evenniagameindexservic:315,evenniaindexview:[53,436],evennialogfil:381,evenniapasswordvalid:356,evenniapermiss:[408,413],evenniareverseproxyresourc:357,evenniaserv:39,evenniatest:[191,220,231,246,264,277,338,386,411,428],evenniaupdateview:[437,438],evenniausernameavailabilityvalid:[166,356],evenniawebtest:428,event:[27,30,45,51,77,87,123,126,157,163,167,201,210,216,229,230,231,233,241,244,263,302,305,354,440],event_nam:[229,233],eventdict:381,eventfunc:[74,163,164,197,226,230],eventhandl:230,eventi:[175,202,270],eventu:[13,22,38,55,57,63,64,67,88,89,93,99,119,120,122,123,128,129,133,140,154,161,166,171,172,189,211,216,217,240,241,263,269,290,294,299,309,317,343,351,352,363,367,368,372,374,425],evenv:[2,6,7,87,89,148,153],evenwidth:374,ever:[9,11,13,14,15,16,22,29,41,44,46,48,55,66,69,76,81,82,87,98,106,110,113,121,126,135,145,160,161,214,217,240,280,307,323,324,330,360,372],everi:[0,2,5,8,9,10,11,13,14,18,19,20,22,27,29,30,31,34,40,41,43,46,47,48,66,68,69,72,74,79,80,81,82,83,87,89,90,92,95,98,100,101,105,106,107,108,110,112,113,115,116,121,126,128,129,133,136,137,139,140,141,148,150,153,154,156,166,180,185,191,199,204,209,215,223,230,240,241,252,254,255,256,257,258,260,266,271,279,280,294,299,305,307,317,334,344,350,359,360,362,372,373,374,375,388,396,403],everror:230,everyon:[8,9,11,18,22,27,30,32,35,41,46,57,63,87,90,99,113,116,117,120,122,123,126,128,129,137,139,142,146,151,155,160,161,180,185,186,187,211,216,217,219,254,255,256,257,258,330],everyth:[0,2,3,6,8,9,11,13,20,35,38,40,43,47,49,50,51,53,57,64,69,72,75,80,81,82,84,86,87,90,92,99,101,103,105,106,107,112,113,114,115,116,117,118,119,120,121,123,125,126,128,130,133,143,148,150,152,153,154,156,157,160,161,170,175,185,186,188,190,191,192,203,207,208,212,251,269,289,293,302,316,343,351,360,362,366,372],everywher:[75,97,112,150],evform:[19,85,163,164,364],evgam:185,evgamedir:84,evict:355,evid:152,evil:[5,15,150,263,299],evilus:185,evmenu:[19,22,24,76,77,85,99,105,122,163,164,190,191,202,215,223,249,252,266,296,364,373,440],evmenucmdset:372,evmenuerror:372,evmenugotoabortmessag:372,evmenugotomessag:372,evmor:[24,30,85,163,164,298,364,440],evscaperoom:[163,164,197],evscaperoommenu:215,evscaperoomobject:[216,217],evtabl:[19,22,80,81,85,163,164,175,185,223,298,364,371,373,388],ewmaplink:[82,280],ewonewaymaplink:[82,280],exact:[5,22,27,38,71,110,113,117,166,172,180,185,189,195,207,241,251,258,285,294,298,299,361,362,384,385,388],exact_consum:207,exact_consumable_ord:[207,208],exact_tool:207,exact_tool_ord:207,exactli:[3,5,9,11,12,29,30,41,47,50,54,57,58,59,61,64,66,78,79,81,82,84,87,99,100,101,106,107,110,111,113,115,117,121,122,126,129,133,148,156,161,185,207,241,251,279,280,294,312,362,385],exam:180,examin:[7,11,12,13,22,32,47,51,55,64,73,76,99,105,106,107,108,110,126,129,166,180,191,201,214,263,268,269,344,395,408],exampl:[2,4,5,6,7,10,11,12,13,14,15,16,17,18,19,20,22,30,31,33,34,35,36,38,40,43,44,46,47,48,49,50,54,57,58,59,61,63,64,66,67,70,71,72,73,74,76,78,80,81,83,84,86,87,89,90,91,92,93,94,96,97,98,99,100,103,104,105,106,107,108,109,110,112,113,114,115,116,117,119,120,121,122,123,125,129,133,134,135,137,138,139,140,144,145,148,150,151,155,156,157,161,163,164,166,169,172,173,174,175,178,179,180,185,186,187,188,189,190,191,194,196,197,201,202,204,207,208,209,210,211,214,216,221,222,223,224,225,234,238,239,240,241,244,247,248,249,251,252,254,255,256,257,258,260,263,267,269,270,271,272,273,277,279,280,281,282,284,286,287,290,293,294,299,302,305,307,312,317,332,335,336,341,344,353,357,360,362,363,364,365,367,371,372,373,374,375,376,380,381,382,385,386,388,389,391,396,403,412,413,427,436,440],example_batch_cod:[14,163,164,197,259],example_recip:[163,164,197,206,207],example_recipi:207,excalibur:105,exce:[104,200,254,255,256,257,258,355,379],exceed:355,excel:[32,68,97,143,150],excempt:173,except:[6,13,15,19,20,22,26,29,30,32,36,40,41,49,50,53,54,57,59,64,75,76,78,79,81,82,84,87,89,90,92,93,95,99,106,108,110,112,114,115,116,117,122,128,129,135,136,137,138,140,141,148,153,154,166,167,169,171,174,175,188,189,194,195,196,201,204,207,210,216,217,222,224,229,230,233,237,238,239,240,241,247,248,249,251,254,255,256,257,258,260,262,263,267,268,269,270,271,278,279,280,281,282,286,289,290,293,294,298,302,305,306,312,317,319,321,333,335,337,341,345,357,360,363,365,368,371,372,374,375,376,380,381,383,388,395],excepteur:28,excerpt:26,excess:[32,40,76,125,188,207,293,366],exchang:[14,52,121,154,201,369],excit:[25,107,108,122,147],exclam:90,exclud:[87,110,117,129,136,194,204,238,269,293,294,370,372,405,407],exclude_cov:204,excluded_par:405,excluded_typeclass_path:190,exclus:[27,30,32,34,120,263,294,302,361,372],exclusiv:368,exe:[7,9,148],exec:[27,29,40,105,299,372,388],exec_kwarg:372,exec_str:347,execcgi:144,execut:[2,7,8,9,14,15,20,22,26,27,29,35,36,40,41,51,52,53,54,55,57,58,64,70,74,75,76,79,81,87,91,92,93,100,101,105,106,112,115,119,122,148,153,166,167,169,170,171,175,178,179,188,190,191,196,202,214,230,241,252,262,263,269,270,286,289,290,293,294,299,300,302,306,309,317,319,322,323,329,332,335,340,343,344,347,350,351,360,362,363,366,372,373,375,380,388,416],execute_cmd:[12,22,36,129,134,135,166,167,175,294,317,351],execute_command:22,executor:2,exemplifi:[30,61,82,92,116,119,121],exercis:[3,81,90,99,105,115,128,129,139,200,209,250,338,348,380],exhaust:[18,76],exhaustedgener:239,exidbobj:294,exis:96,exist:[0,2,5,6,9,11,12,13,14,18,19,20,22,25,27,32,40,41,44,46,47,53,55,61,63,66,74,76,78,79,80,81,82,87,90,91,95,96,97,98,99,101,108,109,110,112,114,115,119,120,123,125,128,129,131,133,134,141,145,149,152,156,165,166,167,173,174,175,180,185,187,188,190,199,200,202,203,208,215,221,222,227,229,230,233,234,237,238,240,241,248,251,257,268,271,279,280,281,282,287,289,290,293,294,296,298,299,306,312,316,318,332,333,335,337,345,350,351,353,360,361,362,363,366,368,370,371,372,374,375,381,383,388,395,413],existen:351,exit:[7,9,20,26,27,32,40,48,49,50,66,76,80,81,82,85,90,95,99,102,105,106,107,108,109,112,113,115,116,117,119,129,137,145,148,156,160,163,171,173,174,180,190,201,202,217,231,247,248,252,258,263,267,268,269,270,271,273,274,279,280,281,282,289,293,294,299,332,344,360,368,370,372,373,386,407,410,413,428,440],exit_alias:[180,247],exit_back:99,exit_cmd:[27,373],exit_command:294,exit_dest_x_coordin:82,exit_dest_y_coordin:82,exit_dest_z_coordin:82,exit_nam:[80,180,247],exit_on_lastpag:373,exit_ther:99,exit_to_her:180,exit_to_ther:180,exit_typeclass:[271,386,428],exitbuildingmenu:76,exitcmdset:[20,294],exitcommand:294,exitnam:247,exitobject:96,exitviewset:413,exixt:330,exot:22,exp:371,expand:[11,31,36,43,49,59,72,73,74,77,78,80,81,87,88,89,90,98,99,103,105,107,108,110,112,113,114,115,116,120,121,122,123,129,130,134,136,139,145,154,163,164,180,197,212,247,254,255,256,257,258,273,294,365,374],expand_tab:374,expandtab:[365,374],expans:[77,96,120],expect:[5,6,8,9,22,29,34,35,36,45,47,53,54,63,64,67,69,74,75,82,83,84,97,99,106,112,113,115,117,119,120,122,123,129,138,141,150,153,154,180,188,191,199,202,207,227,229,239,251,271,277,279,280,289,294,298,299,310,312,362,372,373,379,388,392,396,403,413,419,438],expected1:191,expected2:191,expected_direct:277,expected_input:191,expected_path:277,expected_return:8,expectlst:277,expectstr:277,expens:[47,154,385],experi:[0,3,11,27,29,72,78,81,98,100,103,107,110,115,116,119,120,126,127,148,154,156,185,216,262],experienc:[1,27,87,115,118,143],experienced_betray:27,experienced_viol:27,experiment:[31,53,190,397,400],expert:251,expir:199,explain:[8,11,22,27,49,53,66,71,76,82,86,87,95,99,108,112,122,125,133,137,138,141,143,151],explan:[20,22,50,59,87,91,95,101,217,356],explanatori:50,explicit:[20,43,61,67,71,74,76,84,101,106,133,145,151,239,312,334,360,372],explicitli:[6,20,30,32,33,35,40,41,46,47,48,59,64,66,75,82,84,89,90,94,99,105,113,114,116,121,122,148,150,174,175,180,187,191,239,251,280,284,294,299,307,362,365,368,384,410],exploit:[122,375],explor:[3,12,43,48,53,54,64,74,81,82,101,108,113,115,119,128,148,190],expos:[141,157,263],express:[22,27,29,32,40,52,72,73,84,97,110,113,117,131,141,180,210,239,258,360,388,416],ext:27,extend:[18,19,29,41,48,50,53,66,68,81,84,86,95,97,101,105,107,111,112,114,115,118,124,126,127,130,131,132,134,135,140,141,143,159,160,169,175,187,191,194,199,203,205,207,222,230,233,271,279,293,294,362,382,400,427,436,437,438,440],extended_room:[163,164,197],extendedloopingcal:307,extendedroom:222,extendedroomcmdset:222,extendng:208,extens:[6,8,27,30,43,59,67,75,81,82,84,86,87,97,108,112,113,120,131,145,148,169,199,245,254,274,327,335,368,378,387],extent:[76,97,122,126],exter:185,extern:[7,16,34,40,58,61,68,77,81,84,98,112,116,120,122,123,125,144,145,147,148,149,150,152,154,155,159,163,174,185,191,193,196,244,298,310,312,314,368],external_discord_hello:317,external_receiv:196,extra1:29,extra2:29,extra:[0,8,15,18,20,22,27,29,30,32,36,45,48,51,53,56,70,82,83,90,91,93,98,99,107,115,116,117,121,122,129,133,138,141,144,145,154,166,169,175,187,191,194,201,207,222,224,237,241,251,263,269,294,297,298,307,309,361,365,366,370,372,373,374,381,382,383,387,388,395,396,403],extra_environ:366,extra_launcher_command:[82,274,275],extra_opt:372,extra_spac:388,extract:[6,13,29,45,97,106,175,207,216,241,245,279,290,326,340,388],extract_goto_exec:372,extrainfoauthserv:332,extral:196,extran:223,extrem:[0,9,97,106,116,161,254,255,257,258,325,382],eye:[6,30,59,81,120,299,373],eyed:[53,125,133],eyes:[22,83,98],eyesight:[32,59,99],f6d4ca9b2b22:156,face:[82,107,119,122,150,154,157,224,356,372],facil:381,facilit:122,fact:[7,13,15,22,36,41,48,54,64,73,86,90,93,98,99,111,112,113,120,129,134,138,141,157,160,353,355,375],faction:148,factor:[74,100,104,255,257,309,323,324],factori:[61,251,309,314,322,323,324,330,331,332,333,335,343],factory_path:167,fade:[68,240],fail:[8,13,14,15,18,19,20,27,29,30,36,40,45,54,55,69,75,78,82,89,106,114,119,120,125,128,134,137,146,148,157,161,174,185,189,194,207,209,211,241,247,250,251,263,268,289,290,294,298,309,310,312,316,323,324,334,355,360,362,375,382,384,388,391,396,433],failmsg:355,failtext:126,failur:[8,15,54,78,121,126,148,166,207,269,314,321,323,324,343,355,365,388],failure_messag:207,failure_teleport_msg:269,failure_teleport_to:269,faint:41,fair:[121,122,126,211],fairli:[95,101,153,204,223,252,255],fake:[82,205,280,343,353,360,365],fall:[0,6,20,41,69,81,82,84,87,100,113,126,163,166,189,207,224,241,263,269,388,427],fall_exit:269,fallback:[80,96,171,175,196,222,290,305,312,341,360,372,383,388],fals:[8,12,13,18,19,20,22,26,27,29,30,31,32,33,36,38,41,47,48,51,66,76,80,82,84,89,90,91,93,96,99,100,103,104,107,108,113,117,125,128,129,135,136,137,140,157,166,169,171,172,173,174,175,180,185,187,191,194,196,199,201,202,204,205,207,210,211,214,215,216,219,223,227,230,234,240,241,247,252,254,255,256,257,258,266,270,271,279,280,282,284,285,286,289,290,293,294,296,298,299,302,303,305,306,307,309,312,314,318,321,322,329,330,331,332,335,341,343,349,350,351,353,355,357,360,361,362,363,365,366,368,370,372,373,374,375,376,379,383,384,385,387,388,389,391,392,395,396,397,399,400,401,403,407,408,427],falsestr:223,falsi:[107,114,194,207,279],fame:[119,123],famili:[27,75,98,125],familiar:[1,20,22,48,75,81,93,95,99,105,106,110,113,114,115,123,131,140,148,154],famou:[28,370],fan:143,fanci:[2,16,17,18,49,82,126,204,280],fantasi:[77,117,122,240],faq:[84,334,440],far:[7,11,14,18,20,22,53,59,67,74,76,79,80,81,82,86,90,95,96,98,106,108,110,112,113,115,116,147,153,154,156,173,258,271,279,282,314,339,360,370,379],fare:113,fart:125,fascilit:281,fashion:81,fast:[0,11,13,16,19,36,47,68,82,87,93,97,100,104,115,122,123,145,178,287,344],faster:[5,82,100,117,122,145,196,201,360],fastest:[84,280],fatal:312,fault:123,faulti:115,favor:[19,82,280],favorit:[83,90],fear:19,feasibl:145,feat:122,featgmcp:336,featur:[0,2,3,9,11,16,17,19,20,22,26,40,45,48,53,58,59,71,74,76,77,79,80,81,83,86,87,88,89,91,97,98,100,102,103,105,106,107,108,119,120,121,122,129,142,148,152,157,166,174,175,222,230,241,252,270,307,329,350,354,362,370,388,434,439,440],feb:63,februari:100,fed:[22,32,54,330,360,369,371],fedora:[11,144,148,150],feed:[9,16,27,40,80,126,155,167,185,279,314,331,332,362,373],feedback:[3,36,83,120,123,135,195,370],feedpars:[155,331],feedread:167,feel:[11,17,48,54,63,68,74,76,79,83,84,86,87,88,95,98,101,106,110,113,118,119,120,122,123,125,126,129,132,135,140,148,151,154,216,240,252,255,263,269],feelabl:216,feend78:234,feint:128,fel:63,felin:19,fellow:371,felt:[41,139],femal:224,fetch:[9,11,13,49,52,53,110,140,148,154,156,281,360,373,438],few:[0,2,3,5,8,11,13,16,17,20,22,26,29,30,31,32,36,50,53,54,59,62,66,67,74,75,80,84,86,87,89,106,108,111,113,115,120,121,122,123,126,128,129,137,138,143,145,150,157,161,190,210,240,263,293,327,336,355,365,374,388,436],fewer:[68,115,279,353,361],fg_colormap:387,fgstart:387,fgstop:387,fiction:[27,86,100,372],fictional_word:240,fictiv:240,fictou:221,fiddl:269,field:[7,9,13,29,30,31,33,34,35,36,41,45,46,48,50,53,63,66,72,97,99,109,113,131,140,145,147,169,196,223,227,241,258,267,273,286,287,289,293,294,298,299,302,303,307,319,360,361,362,363,371,380,384,385,395,396,397,399,400,401,403,407,410,415,427,438],field_class:427,field_nam:[287,407],field_or_argnam:31,field_ord:427,fieldevmenu:223,fieldfil:[163,164,197],fieldnam:[33,99,223,303,362,379,427],fieldset:[395,397,399,400,401,403],fieldtyp:223,fifo:388,fifth:80,fight:[20,41,93,114,119,120,128,254,255,256,257,258,268],fighter:[254,255,256,257,258],figur:[0,3,5,6,11,22,30,55,64,80,83,106,111,113,120,123,131,137,140,154,201,203,207,210,241,280,298,312,391],file:[0,2,3,5,6,7,9,10,12,18,19,20,38,39,49,50,51,52,53,57,61,62,63,66,72,75,76,78,81,82,83,87,89,90,91,96,97,98,99,100,101,103,105,107,108,111,112,114,115,116,118,122,129,131,133,134,136,137,140,141,143,144,145,147,148,149,150,152,153,154,155,156,157,159,160,161,163,164,166,179,187,194,199,200,202,204,205,207,210,212,217,240,244,251,270,271,284,299,311,312,332,333,336,337,344,345,346,350,357,358,364,371,372,381,384,385,388,396,397,399,401,403,413,416,420,427,440],file_end:[366,388],file_help_entry_modul:[30,187,284],file_name_charset:199,file_overwrit:199,fileentri:187,filehelp:[30,163,164,283],filehelpentri:[187,284],filehelpstoragehandl:284,filelogobserv:381,filenam:[11,19,111,194,199,240,366,371,381],filename1:312,filename2:312,filepath:199,files:199,filesystem:[148,156,157],fill:[2,7,26,53,63,72,80,81,82,99,115,140,149,223,251,279,282,360,365,371,372,373,374,375,388,403],fill_char:374,fill_color:225,fillabl:[77,223],fillchar:[29,365,375,388],filo:388,filter:[7,20,34,48,49,59,66,82,95,101,110,136,140,163,164,173,178,202,222,241,282,293,294,388,393,406,413,433],filter_backend:413,filter_famili:[48,110],filter_nam:407,filter_xyz:[82,282],filter_xyz_exit:[82,282],filterset:407,filterset_class:413,filthi:142,final_path:199,final_valu:54,find:[0,3,5,6,8,9,11,13,14,15,17,19,20,22,26,29,30,31,32,33,34,35,36,40,41,46,48,50,53,54,55,58,59,61,63,66,68,72,73,74,76,77,78,79,80,82,83,84,86,88,89,90,91,93,97,98,99,100,101,106,107,108,109,110,111,112,113,114,116,118,119,120,122,123,125,126,127,129,131,133,140,141,142,143,145,146,148,150,153,154,156,157,161,166,172,180,187,207,210,216,219,222,241,247,251,252,269,270,273,274,279,280,282,294,298,299,304,312,326,360,361,365,367,375,385,388,418],find_apropo:285,find_topicmatch:285,find_topics_with_categori:285,find_topicsuggest:285,findfoo:117,fine:[16,22,36,41,44,46,47,55,66,79,82,87,96,105,108,112,113,114,116,118,119,121,125,129,135,167,269,280,360,368,388],finer:[55,279,280],finish:[9,15,22,45,52,54,78,84,93,99,119,120,129,133,140,156,163,166,175,177,188,190,201,207,208,214,219,222,238,268,269,280,294,312,316,324,335,350,357,367,372,388,416],finish_chargen:27,finit:106,fire:[7,12,19,22,27,41,45,47,79,81,90,92,93,99,108,113,116,120,135,136,139,166,167,171,230,256,257,294,299,312,321,323,340,372,373,379],firebal:[78,122,207],firebreath:[99,113,116],firefox:[53,152],firestorm:92,firestorm_lastcast:92,firewal:[145,150,154],first:[0,3,5,6,7,8,9,11,12,13,14,15,16,19,20,22,25,26,27,29,30,32,36,38,40,41,43,44,45,48,50,51,53,54,55,56,57,59,61,63,64,66,68,69,72,75,77,80,84,86,89,90,93,95,97,99,100,101,102,103,105,106,107,108,109,110,111,112,114,116,117,118,119,120,121,122,123,125,126,128,129,131,132,133,135,136,137,138,139,140,141,145,146,148,149,151,153,154,155,156,157,159,161,166,167,169,172,173,180,187,188,191,192,194,196,199,201,202,204,205,210,212,216,217,219,222,239,240,241,247,249,250,254,255,256,257,258,260,263,267,268,269,270,271,274,279,280,286,289,293,294,298,299,302,305,312,316,317,319,330,332,335,340,341,343,344,350,353,360,362,363,365,366,368,370,371,372,374,375,376,379,380,387,388,408],first_lin:129,first_nam:395,firsthand:32,firstli:[6,36,53,75,109,110,154],fish:[126,174,238],fist:[114,299],fit:[10,13,29,30,38,67,71,78,95,99,112,123,125,132,137,140,145,208,255,258,371,373,374,388],five:[22,81,92,110,118,123,132,154,174,252,388,389],fix:[0,3,6,8,14,15,19,22,27,40,48,56,64,82,83,87,88,98,105,113,115,116,120,122,125,129,137,142,148,153,154,161,240,282,312,371,373,374,384],fix_sentence_end:374,fixer:110,fixing_strange_bug:11,fixtur:[191,200,209,220,250,264,277,338,348,380,386,411],fizzl:122,flag:[11,14,15,20,22,27,31,47,50,61,64,66,68,75,92,93,94,99,108,113,115,118,120,125,129,166,171,173,175,180,207,209,214,216,217,219,263,267,289,290,294,312,319,323,332,335,340,351,370,372,388],flagnam:[214,216,217],flair:125,flame:[92,257],flash:[15,263],flat:[0,19,48,76,85,97,111,163,299,391,440],flatfil:97,flatpag:418,flatten:299,flatten_diff:299,flatten_prototyp:299,flattened_diff:299,flavor:[108,121,154,257],flavour:[35,138],flaw:137,fled:[128,267],fledg:[16,68,70,122,129,130,140,154,179,211],flee:[128,134,258,267],fleevalu:128,flesh:[77,99,108,122],flexibl:[14,27,40,41,67,68,76,81,90,93,95,98,113,116,121,122,125,126,128,141,154,169,180,201,202,207,223,252,360,372,388,436],fli:116,flick:389,flicker:263,flip:[27,103],flood:[19,26],floor:[74,104,214,216,241,250],flour:[78,207],flourish:360,flourrecip:207,flow:[2,11,17,47,51,61,64,66,82,86,120,125,148,368,372],flower:[35,36,55,108,109,110,117,120,121,180,375],flowerpot:[55,98],fluent:143,fluffi:[113,114,116],fluid:[17,56],flurri:241,flush:[9,22,81,145,190,360,362,379],flush_cach:379,flush_cached_inst:379,flush_from_cach:379,flush_instance_cach:379,flusher:379,flushmem:190,fluttersprit:77,fly:[19,20,22,27,29,30,40,41,55,78,87,90,105,110,112,113,117,131,166,186,188,196,286,294,298,307,319,330,333,337,360,366,376,388],fnmatch:360,foci:122,focu:[77,89,118,120,122,128,214,216],focus:[7,97,98,129,143,214,216,258,410],focused_object:214,foe:255,foilag:82,fold:[122,252],folder:[7,8,9,14,15,19,50,51,53,63,66,72,77,80,81,84,87,90,94,98,99,101,108,111,112,113,115,126,128,129,131,133,134,135,140,141,144,148,153,156,157,160,161,198,254,255,256,257,258,312,418],folder_nam:87,follow:[3,5,6,7,9,11,12,13,14,15,17,18,20,22,26,27,29,30,31,32,36,38,41,46,48,50,51,53,54,56,57,59,61,63,66,67,72,74,75,76,79,80,82,83,84,89,91,95,99,100,101,104,105,106,107,108,110,112,113,114,115,116,118,120,123,125,126,127,128,129,134,136,137,140,141,143,144,145,147,148,149,150,151,153,154,156,157,161,166,167,169,171,172,175,180,187,188,191,194,196,202,204,205,207,211,224,230,234,241,251,252,256,257,269,279,280,286,287,290,293,294,297,298,299,302,303,316,317,327,336,340,341,344,354,360,362,365,366,368,371,372,373,374,381,388,412],follwo:290,fond:100,font:[51,81,84,91,112,280],foo:[8,18,22,27,29,30,33,41,45,46,61,64,67,82,107,110,111,112,113,115,117,148,252,279,281,287,312,372,375,386],foo_bar:67,foobarfoo:55,food:207,fooerror:372,fool:122,foolish:263,footer:[53,82,101,140,175,373],footnot:[16,84],footprint:190,footwear:98,for_cont:294,forai:112,forbidden:11,forc:[8,20,22,41,48,54,74,82,99,103,104,106,107,116,123,125,126,128,129,137,144,148,156,157,161,167,174,178,180,185,201,208,222,224,238,240,241,251,279,290,294,298,304,323,324,330,335,353,355,373,374,379,381,388],force_add:251,force_init:294,force_repeat:[41,128],force_str:384,forcibl:304,fore:350,forebod:222,foreground:[3,59,138,156,205,312,365,375],foreign:[48,110],foreignkei:[169,293,302,362,380,396,403],forens:245,forest:[14,46,73,81,82,112,222],forest_meadow:46,forest_room:46,forestobj:73,forget:[11,14,19,22,54,66,75,91,100,105,107,113,115,116,129,131,143,147,152,156,241,366],forgiv:125,forgo:268,forgotten:[80,92,105,113],fork:[75,143],forloop:101,form:[6,8,13,14,18,19,20,22,27,29,30,31,32,36,38,40,46,47,48,50,52,64,67,69,70,71,72,77,78,82,84,85,86,87,99,107,112,114,116,117,118,120,123,128,129,135,163,164,166,167,172,174,175,178,180,185,188,191,194,195,196,201,207,214,221,223,224,240,241,245,251,282,284,286,289,290,294,298,299,303,305,307,310,330,332,336,340,351,353,360,361,362,365,366,368,369,370,371,372,374,375,381,384,385,388,389,391,393,395,396,397,399,400,401,403,405,410,426,431,433,438],form_char:371,form_class:[53,431,433],form_template_to_dict:223,form_url:395,form_valid:[431,433,438],formal:[32,120,294,336],format:[3,11,15,17,18,19,20,22,30,40,57,59,63,64,67,68,69,71,74,76,79,81,82,83,84,86,99,100,101,103,110,114,115,125,140,143,145,155,157,173,175,177,180,187,191,194,199,202,204,205,207,210,215,221,223,233,241,244,251,252,256,262,266,270,271,279,284,286,294,296,298,299,303,312,317,327,332,352,354,360,362,365,366,368,370,372,373,374,376,381,383,388,389,410,413],format_attribut:180,format_available_protfunc:298,format_callback:227,format_diff:299,format_extern:194,format_grid:388,format_help:270,format_help_entri:187,format_help_index:187,format_messag:194,format_output:180,format_send:194,format_t:388,format_text:202,format_usag:270,formatt:[209,223,298,372,373],formcallback:223,formchar:[99,371],formdata:223,former:[17,87,138,145,207,372],formfield:384,formhelptext:223,formset:[396,403],formstr:99,formtempl:223,formul:141,forth:[11,19,180,257],fortress:81,fortun:[9,22,89,95,101,113,119],forum:[9,63,75,83,86,88,98,122,123,148,154,155],forward:[3,14,15,26,27,84,100,101,108,118,121,122,137,138,154,166,169,196,234,244,286,293,302,357,360,362,363,371,373,380],forwardfor:150,forwardmanytoonedescriptor:[293,302,380],forwardonetoonedescriptor:[293,302,380],foster:18,foul:40,found:[3,4,6,8,9,12,14,15,16,18,19,20,22,27,30,31,32,36,37,38,40,43,46,48,49,50,51,53,54,61,63,64,72,75,76,77,80,82,84,86,89,91,95,98,99,105,106,107,110,111,112,113,114,115,117,119,125,126,128,129,141,142,145,148,154,157,163,166,170,171,172,173,175,180,185,188,189,194,199,201,202,227,229,230,241,251,269,279,280,281,282,284,286,290,294,297,298,299,304,307,311,312,318,327,330,341,351,353,360,361,362,365,366,367,368,372,374,375,379,383,385,388,416],foundat:[80,86,110,143,254],four:[15,19,35,59,61,66,81,84,89,95,104,117,126,130,174,196,222,290],fourth:95,fqdn:154,fractal:97,fraction:[8,122],frame:51,framework:[49,51,52,53,56,87,123,131,133,140,191,254,257,384,407,408,410,412,413],frankli:71,free:[7,10,30,46,63,74,76,83,86,87,93,98,110,120,122,128,129,138,140,143,154,199,201,214,241,252,255,298],freedn:154,freedom:[0,15,96,122,148],freeform:[122,126,128,204],freeli:[82,156,157,366],freenod:[75,88,143,148,152,154,167,185,353],freetext:[34,195,385],freez:[3,22,93,229],french:63,frequenc:[5,240],frequent:[106,202],fresh:[9,13,20,82,99,113,160,312],freshli:81,fri:55,friend:[83,99,104,107,120,123,157],friendli:[76,84,115,140,142,169,251],friendlier:[194,294],frighten:256,from:[0,1,2,3,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,22,25,26,28,29,31,32,33,34,35,36,38,39,40,41,43,44,45,46,47,48,49,50,52,53,54,55,56,57,59,61,62,63,64,66,68,69,71,72,73,74,75,76,77,78,79,80,81,82,84,87,88,90,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,109,110,111,112,113,114,116,117,118,119,120,121,122,123,125,126,128,129,131,133,134,135,136,137,138,139,141,143,144,145,147,148,150,151,152,153,155,157,159,160,161,163,164,166,167,169,170,171,172,173,174,175,177,178,179,180,185,186,187,188,189,190,191,192,194,195,196,199,201,202,203,204,205,207,208,209,210,211,212,214,215,216,217,219,221,222,223,224,229,230,233,234,237,238,239,240,241,244,245,246,247,248,250,251,252,254,255,256,257,258,263,267,268,269,270,271,273,274,279,280,281,282,284,285,286,289,290,291,293,294,298,299,302,303,304,306,307,309,312,317,318,319,321,322,323,324,325,329,330,331,332,335,340,341,343,344,346,350,351,352,353,355,357,358,359,360,361,362,363,364,365,366,367,368,369,370,371,373,374,375,376,379,380,381,382,384,385,387,388,389,391,396,397,403,405,407,408,410,413,416,418,427,433,438,439,440],from_channel:167,from_db_valu:384,from_nod:372,from_obj:[64,103,135,166,167,175,224,262,294],from_pickl:369,from_tz:389,frombox:321,fromstr:321,fromtimestamp:376,front:[11,14,32,40,51,105,107,110,115,126,144,157,159,162],frontend:[49,252,360],frontpag:[50,53,111,117,163,164,393,394,404],frost:121,frozen:[22,93,230],fruit:238,ftabl:388,ftp:387,fuel:[90,121,251,257],fugiat:28,fulfil:[78,113,119,123,312],full:[0,4,6,8,9,11,14,15,16,17,19,22,27,29,32,33,36,38,40,41,44,47,48,56,67,68,70,72,75,78,81,82,83,84,86,87,89,90,91,98,99,102,107,108,110,111,115,116,121,122,125,126,128,129,130,133,134,137,140,141,145,146,153,154,156,160,161,167,172,174,175,179,180,185,189,190,191,194,201,202,207,211,215,219,221,222,225,237,240,241,251,252,257,266,270,279,281,282,290,299,303,324,330,343,353,354,360,362,366,370,372,374,375,388,439],full_desc:216,full_justifi:40,full_nam:35,full_result:211,fullchain:150,fuller:99,fullest:123,fulli:[5,13,22,27,57,63,66,77,82,86,89,99,105,118,125,148,154,157,161,166,240,290,294,305,340,352,368,388],fun:[0,5,81,103,108,120,121,122,133,143],func1:[180,290,344],func2:[180,290,344],func:[3,22,26,27,29,32,54,64,76,84,90,91,92,93,94,96,97,99,100,103,104,105,106,107,112,114,117,125,126,128,129,137,151,171,175,177,178,179,180,185,186,187,188,189,190,191,192,201,202,203,204,207,210,211,212,214,222,223,224,228,234,237,238,241,247,248,249,252,254,255,256,257,258,263,267,268,269,270,273,289,290,294,323,343,344,348,357,370,372,373,375,376,388,436],func_test_cmd_task:191,funcdef:375,funciton:257,funcnam:[29,31,70,112,290,297,298,307,372,375,388],funcool:143,funcpars:[24,70,85,163,164,297,353,364,388,440],funcparser_cal:[70,297,375],funcparser_callable_add:375,funcparser_callable_center_justifi:375,funcparser_callable_choic:375,funcparser_callable_clr:375,funcparser_callable_conjug:375,funcparser_callable_crop:375,funcparser_callable_div:375,funcparser_callable_ev:375,funcparser_callable_justifi:375,funcparser_callable_left_justifi:375,funcparser_callable_mult:375,funcparser_callable_pad:375,funcparser_callable_randint:375,funcparser_callable_random:375,funcparser_callable_right_justifi:375,funcparser_callable_round:375,funcparser_callable_search:375,funcparser_callable_search_list:375,funcparser_callable_spac:375,funcparser_callable_sub:375,funcparser_callable_toint:375,funcparser_callable_y:375,funcparser_outgoing_messages_modul:353,funcparser_parse_outgoing_messages_en:70,function_nam:190,functioncal:321,functionnam:[29,321],functionpars:[29,298],functool:148,fundament:[22,36,46,98,112,113,115,116,122,294],fur:208,furnac:[207,208],furnitur:[14,46,48],furst:251,further:[3,7,10,11,13,18,19,20,30,40,43,44,48,49,64,66,74,75,78,80,81,82,84,96,98,105,106,113,117,125,154,156,161,174,180,203,240,256,258,280,282,299,312,336,388],furthermor:[83,84,138],fuss:156,futur:[13,26,35,54,75,84,99,100,108,114,115,118,120,123,124,125,127,129,130,132,145,148,156,177,208,230,268,271,317,361,382,389],futurist:100,fuzzi:[30,185,207,285,385,388],fuzzy_import_from_modul:388,gag:146,gain:[5,13,93,110,120,125,175,190,196,241,290,294],galosch:240,gambl:211,game:[1,2,3,5,6,7,10,12,13,14,15,16,17,20,22,23,25,26,27,28,29,32,34,35,36,38,39,40,43,44,45,46,47,48,49,50,51,52,54,57,59,62,63,64,66,67,68,69,70,71,72,73,74,75,76,78,79,82,83,84,85,87,89,90,91,92,93,94,96,97,101,102,103,105,106,107,109,110,111,113,114,115,116,117,119,121,124,125,127,128,130,131,132,133,134,135,137,139,140,141,142,143,144,145,146,148,149,150,151,152,153,155,157,161,163,164,165,166,167,169,171,173,174,175,177,178,179,180,184,185,186,187,190,191,192,193,194,195,196,197,201,202,203,204,206,208,210,211,212,214,215,216,219,222,223,225,228,229,230,231,234,239,240,241,248,252,254,255,256,257,258,263,265,266,269,270,274,276,279,280,281,282,284,286,291,293,294,302,304,305,308,312,314,315,316,317,323,324,329,331,332,335,336,343,344,345,350,351,353,361,362,363,366,367,368,370,371,376,379,381,388,395,396,403,408,413,436,439,440],game_dir:[381,388],game_epoch:[19,376],game_index_cli:[163,164,308],game_index_en:147,game_index_list:147,game_nam:[147,420],game_slogan:[53,75,420],game_statu:147,game_templ:[53,111],game_websit:147,gamedir:[27,40,53,82,118,159,312,358,440],gamedirnam:99,gameindexcli:315,gameplai:[122,154,199,214],gamer:[149,152],gamesrc:19,gametim:[19,29,85,163,164,210,222,230,364,440],gametime_to_realtim:210,gametimescript:210,gameworld:114,gammon:[143,327],gandalf:27,garbag:360,garbl:121,garden:143,garment:[77,204],gate:[30,82,120,280],gatekeep:30,gatewai:[161,341],gather:[8,22,30,52,64,133,139,146,171,172,269,310,314,368,385],gaug:[121,163,164,197],gaugetrait:251,gave:[87,90,106,113,138,391,392],gbg:365,gcc:[115,116,148],gcreat:190,gear:[7,133,154,167,174,192,212],gemer:239,gen:17,gender:[77,224],gendercharact:224,gendersub:[163,164,197],gener:[2,5,7,8,13,18,20,22,27,30,32,35,38,40,41,43,44,46,50,51,53,54,55,59,63,64,66,67,74,75,80,81,82,83,84,86,87,91,93,98,99,100,102,107,108,112,117,120,125,126,128,138,141,145,148,150,154,163,164,166,167,170,175,176,177,180,187,188,189,191,192,194,200,201,202,203,204,207,211,212,214,216,217,222,223,224,230,234,237,239,240,241,244,245,247,248,249,252,254,255,256,257,258,263,266,267,269,270,273,280,286,290,294,296,299,323,330,332,335,336,340,343,351,352,353,357,360,363,364,365,367,368,370,373,374,375,381,383,384,388,411,412,413,419,427,431,432,433,435,436,437,439,440],general_context:[163,164,393,417],generalviewsetmixin:413,generate_prototype_kei:280,generate_sessid:330,generic_mud_communication_protocol:336,genericbuildingcmd:202,genericbuildingmenu:202,genesi:154,geniu:238,genr:[83,87,326],genuin:122,geoff:[77,270],geograph:73,geographi:95,geoip:244,geometr:81,geometri:81,get:[0,3,5,6,7,8,9,10,11,12,13,14,16,17,18,20,22,26,29,30,31,32,33,34,35,38,39,41,43,44,45,46,48,49,51,53,54,55,56,59,61,63,64,66,67,72,74,75,76,78,79,80,81,82,84,86,87,90,91,92,93,94,95,96,97,98,99,100,101,103,104,105,106,107,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,135,137,138,140,141,144,145,147,149,151,152,153,154,156,157,159,161,166,167,169,173,174,175,177,178,180,181,185,186,187,192,194,195,196,199,202,204,211,214,216,217,219,227,229,230,233,234,238,239,241,248,249,250,251,252,254,255,256,257,258,260,263,268,269,271,273,277,279,280,281,282,284,285,286,290,293,294,296,298,299,302,304,307,310,312,317,321,322,326,330,332,335,336,338,340,341,349,351,352,353,355,360,361,362,363,365,366,367,370,372,374,375,376,378,379,381,382,383,385,388,391,392,395,397,400,401,405,407,410,412,427,436,439,440],get_absolute_url:[141,194,286,362],get_account:[290,351],get_al:360,get_alia:361,get_alias:410,get_all_attribut:360,get_all_cached_inst:379,get_all_categori:285,get_all_channel:195,get_all_charact:217,get_all_cmd_keys_and_alias:173,get_all_cmdset:388,get_all_mail:234,get_all_puppet:166,get_all_sync_data:353,get_all_top:285,get_all_typeclass:388,get_and_load_cmdset:405,get_and_load_typeclass:405,get_and_merge_cmdset:174,get_app_list:418,get_attack:[254,255,256,257,258],get_attr:180,get_attribut:[361,410],get_available_nam:199,get_available_overwrite_nam:199,get_buff:370,get_by_alia:361,get_by_attribut:361,get_by_nick:361,get_by_permiss:361,get_by_tag:361,get_cach:360,get_cache_kei:355,get_cached_inst:379,get_callback:230,get_channel:195,get_channel_alias:185,get_channel_histori:185,get_charact:351,get_client_opt:317,get_client_s:351,get_client_sess:[340,341],get_client_sessid:341,get_cmd_signatur:216,get_command_info:[175,188],get_components_with_symbol:279,get_cont:410,get_context_data:[53,432,435,436,438],get_damag:[254,255,256,257,258],get_db_prep_lookup:384,get_db_prep_valu:384,get_dbref_rang:361,get_def:306,get_default:384,get_defens:[254,255,256,257,258],get_direct:[82,280],get_display_nam:[3,29,76,79,82,99,104,166,241,271,282,294,362],get_display_symbol:[82,280],get_err_msg:[32,108],get_ev:230,get_evennia_pid:388,get_evennia_vers:388,get_event_handl:233,get_exit:[82,281,410],get_exit_spawn_nam:[82,280],get_extra_info:[175,294,362],get_famili:[48,110],get_fieldset:400,get_form:[395,397,400,401],get_formset:[396,403],get_game_dir_path:388,get_god_account:316,get_height:374,get_help:[22,30,101,175,191,216,228,270,372],get_help_text:356,get_hint:219,get_id:[140,306,361],get_info_dict:[329,350],get_initi:438,get_input:[191,372],get_inputfunc:[317,336,353],get_internal_typ:384,get_kwarg:428,get_linked_neighbor:280,get_location_nam:271,get_log_filenam:194,get_map:[82,281],get_mass:104,get_message_by_id:195,get_messages_by_receiv:195,get_messages_by_send:195,get_min_height:374,get_min_width:374,get_modified_tim:199,get_msg_by_receiv:34,get_msg_by_send:34,get_new:331,get_new_coordin:271,get_next_by_date_join:169,get_next_by_db_date_cr:[169,196,286,293,302,360,362],get_next_wait:233,get_nick:[361,410],get_nicklist:[167,324],get_node_from_coord:279,get_numbered_nam:294,get_obj_coordin:271,get_object:[219,413,432,435,438],get_object_paramet:199,get_object_with_account:385,get_objs_at_coordin:271,get_oth:201,get_permiss:[361,410],get_pid:312,get_player_count:326,get_posit:216,get_previous_by_date_join:169,get_previous_by_db_date_cr:[169,196,286,293,302,360,362],get_puppet:[12,166,351],get_puppet_or_account:351,get_queryset:[432,433,435],get_rang:258,get_redirect_url:433,get_regex_tupl:241,get_respons:421,get_room:[82,281],get_room_at:95,get_rooms_around:95,get_serializer_class:413,get_sess:353,get_session_id:410,get_short_desc:216,get_shortest_path:[82,279],get_spawn_xyz:280,get_stat:113,get_statu:322,get_subscript:195,get_success_url:438,get_sync_data:352,get_system_cmd:173,get_tag:[361,410],get_tag_queri:407,get_time_and_season:222,get_typeclass_tot:361,get_uptim:326,get_url:400,get_username_valid:166,get_valu:[317,336],get_value_displai:410,get_vari:[227,230],get_view_detail:411,get_visual_rang:[82,279],get_weight:280,get_width:374,get_worn_cloth:204,get_xyz:[82,282],get_xyz_exit:[82,282],get_xyzgrid:[82,281],getattr:33,getbootstrap:56,getchild:357,getclientaddress:[61,332],getel:51,getenv:[312,322],getgl:51,getinput:372,getitem:251,getkeypair:332,getloadavg:153,getpeer:332,getpid:388,getsizof:379,getsslcontext:[333,337],getston:22,getter:[169,196,204,241,255,258,293,294,319,360,392],gettext:63,gfg:365,ghost:30,ghostli:269,giant:90,giantess:113,gid:[5,156,344],gidcount:343,gift:101,gig:122,girl:[118,294],gist:[53,240,388],git:[2,9,10,63,66,68,75,84,91,143,145,148,153,154,156],github:[10,11,63,75,77,79,83,88,91,98,111,120,143,148,153,155,202,340,357,388],gitignor:11,give:[0,4,5,8,9,12,13,14,16,18,19,22,27,28,29,32,36,38,40,41,44,45,46,47,48,50,53,54,55,57,67,69,73,74,75,76,77,79,81,82,84,86,87,89,90,91,94,95,98,99,100,101,102,104,105,106,107,108,110,111,112,113,114,115,116,117,118,120,121,123,126,127,128,129,131,133,134,135,140,141,143,145,148,153,154,155,156,157,161,166,171,173,174,177,185,186,188,190,194,195,202,203,204,208,214,216,217,219,222,239,240,249,252,254,255,256,257,258,263,269,271,279,280,294,302,338,344,351,357,360,362,365,372,374,385,386,388,391,392,410,439,440],given:[0,3,5,6,8,11,12,13,14,15,19,20,22,26,27,29,30,31,32,33,34,36,38,40,41,44,47,48,53,54,55,58,59,63,64,66,67,69,72,73,74,76,79,80,82,84,87,88,89,90,91,95,99,100,105,107,108,109,112,113,115,116,119,121,122,126,128,129,134,138,140,141,154,156,161,166,171,172,173,174,175,177,178,180,185,187,189,190,191,194,195,196,202,203,204,207,208,210,211,212,214,216,217,219,221,222,223,224,225,227,229,233,238,239,240,241,247,251,252,254,255,256,257,258,262,263,268,269,270,273,279,280,281,282,287,289,290,294,296,298,299,303,304,305,307,310,312,317,318,321,330,335,336,341,344,347,351,352,353,354,355,356,357,360,361,362,363,365,366,368,369,370,371,372,373,374,375,376,379,381,383,384,385,386,388,391,392,395,408,416,419,432,433,435],given_class:415,giver:[121,255,258,294],glad:106,glade:[82,112],glanc:[19,20,22,76,95,99,106,202,241],glance_exit:76,glass:[238,263],glob:[186,372],global:[5,11,14,22,25,27,29,31,36,40,41,43,44,47,48,51,68,73,76,78,82,87,97,105,117,120,136,139,150,156,180,190,194,199,207,222,230,239,241,247,273,281,294,299,300,302,306,309,312,317,319,322,343,344,366,367,368,372,375,376,385,386,388,420],global_script:[163,367],global_search:[14,19,76,99,106,166,241,294,361],globalscriptcontain:367,globalth:386,globe:[133,154],glori:119,glorifi:251,gloriou:110,glossari:[148,440],glow:81,glu:39,glyph:321,gmcp:[31,64,336],gmsheet:99,gmt:112,gmud:146,gno:76,gnome:[63,146],gnu:15,go_back:[252,372],go_up_one_categori:252,goal:[41,84,106,119,120,123,125,143,157,240,439],goals_of_input_valid:427,goblin:[27,40,112,180,299],goblin_arch:299,goblin_archwizard:299,goblin_wizard:299,goblinwieldingclub:40,god:[30,38,108,160,284,316],godlik:241,goe:[0,3,22,24,41,61,66,74,75,76,80,82,83,87,93,101,116,119,122,126,129,135,137,153,154,173,174,216,219,258,271,279,280,294,332,335,350,351,387,388,438],goff:[77,239],going:[0,8,27,29,50,53,61,67,74,79,80,81,82,88,91,99,100,101,104,106,108,110,113,115,117,120,122,128,131,137,140,149,150,154,156,159,202,241,254,255,256,257,258,263,266,269,271,294,309,314,365,372,410],goings:314,gold:[27,40,104,105,116,121,366],gold_valu:105,goldenlayout_config:51,goldenlayout_default_config:51,gone:[11,32,55,105,108,113,115,117,119,122,156,217,279],good:[0,5,6,7,8,11,12,13,15,18,19,20,22,27,29,32,34,35,40,41,43,48,50,53,55,59,61,74,75,76,77,78,79,80,81,83,84,86,89,90,91,95,97,98,101,102,105,106,107,108,110,111,115,118,120,121,122,123,125,126,127,129,137,138,140,141,143,147,148,152,154,156,157,161,166,173,174,175,191,201,229,241,277,335,344,372,375],goodby:332,goodgui:290,googl:[84,143,153,154,185,374],googlegroup:39,googli:[53,133],gorgeou:82,gossip:[143,149,185],got:[9,14,49,54,107,113,114,115,116,128,252,268],goto_cal:372,goto_cleanup_cmdset:266,goto_command_demo_comm:266,goto_command_demo_help:266,goto_command_demo_room:266,goto_kwarg:372,goto_next_room:137,gotostr_or_func:372,gotten:[11,86,123,258,268,294,339],gpl2:391,graaah:134,grab:[22,107,108,126,140,186,268,410,438],gracefulli:[0,177,190,241,294,312,388],gradual:[14,15,93,120,121,143,240,251],grai:[59,138],grain:[47,368],gram:104,grammar:[216,240],grammat:[123,240],grand:[13,30],grant:[11,32,38,57,145,196,254,255,256,257,258,289,290,298,360,408,431,437],granular:258,grapevin:[159,163,164,167,185,308,320,440],grapevine2chan:[30,107,149,185],grapevine_:185,grapevine_channel:[149,167,185],grapevine_client_id:149,grapevine_client_secret:149,grapevine_en:[149,185],grapevinebot:167,grapevinecli:323,graph:[11,80,279],graphic:[3,9,32,33,49,50,52,64,72,77,81,99,123,163,212,225,336],grasp:[138,140],grayscal:205,great:[11,15,27,29,30,41,45,50,56,68,74,76,78,82,83,88,89,90,93,95,98,101,106,115,120,123,126,129,141,143,202,223,357],greater:[6,20,32,44,76,110,289,372],greatli:142,greek:16,green:[11,20,32,40,59,82,115,138,180,190,216,268,365],greenforest:82,greenskin:299,greet:[25,43,44,75,79,134,317],greetjack:35,greg:143,grei:[40,82,138,365],grenad:36,grep:[11,153],greyscal:[59,365],greyskinnedgoblin:40,griatch:[66,77,78,90,107,110,201,203,205,207,210,211,212,222,224,234,237,240,241,247,248,249,251,266,268,371,379,384,387,391],grid:[56,81,118,129,159,187,258,271,273,275,276,277,279,280,281,282,388,440],gridmap:82,gridpoint:[277,279],gridsiz:277,grief:55,griefer:141,grin:[22,121,360,375,392],grip:[84,208],gritti:22,ground:[81,86,90,108,110,114,118],group:[0,8,18,22,30,40,46,48,50,54,55,57,73,75,79,83,88,89,90,106,107,112,117,122,143,156,169,176,180,186,187,195,222,238,240,268,269,294,298,299,321,344,360,363,365,368,395,403],groupd:360,grow:[0,14,18,86,91,110,114,120,121,143,148,161,251,279,323,324,374,388],grown:[27,71,75,91],grudg:126,grungies1138:[77,234,249],grunt:[180,299],gstart:190,gthi:103,gtranslat:63,guarante:[13,38,41,66,83,121,150,154,211,230,298,330,351,362,375],guard:[27,82,122,208,280],guess:[16,26,69,76,79,101,106,157,202,299],guest1:62,guest9:62,guest:[24,38,85,166,440],guest_en:[38,62],guest_hom:[62,140],guest_list:62,guest_start_loc:62,guestaccount:46,gui:[51,52,64,98,122,234,440],guid:[2,9,83,103,133,140,407],guidelin:[83,84,143],guild:[18,46,66,122,135,143,185],guild_memb:27,gun:90,guru:86,gzip:[199,200],gzip_content_typ:199,habit:97,habitu:47,hack:[86,126,128,321],hacker:[143,157],had:[0,9,15,16,20,41,57,72,75,78,83,86,90,93,108,110,113,114,115,116,120,122,129,144,154,156,175,179,191,204,214,268,280,299,302,312,362,366,373,391,392,427],hadn:[11,100,120],hair:208,half:[68,286],hall:[30,80],hallwai:80,halt:81,hammer:[207,208],hand:[16,27,35,36,44,61,68,83,84,86,88,97,98,99,110,114,116,121,124,126,141,175,186,188,190,201,208,410],hander:110,handi:[3,115,140,153,256],handl:[5,6,9,11,12,13,14,16,18,19,22,26,27,29,31,32,35,36,38,43,44,47,48,51,52,53,61,64,66,67,68,71,74,75,76,78,80,82,83,85,86,87,89,96,97,100,105,106,107,110,111,112,114,115,116,117,120,123,125,128,134,138,139,144,146,150,153,156,166,167,170,171,173,174,180,181,185,186,189,199,201,207,208,212,216,221,222,230,233,241,245,247,249,252,254,255,256,257,258,263,268,269,270,273,280,283,284,293,294,297,298,299,302,303,306,309,312,316,317,321,322,324,325,332,335,336,339,341,343,352,353,360,362,365,366,368,369,370,372,373,374,376,379,387,388,396,403,421],handle_appli:216,handle_consum:216,handle_egd_respons:314,handle_eof:332,handle_error:[185,230,306],handle_ff:332,handle_foo_messag:372,handle_int:332,handle_messag:372,handle_mix:216,handle_numb:372,handle_posit:216,handle_quit:332,handle_setup:316,handler:[12,13,20,22,32,33,34,35,36,38,41,43,44,46,47,48,64,66,87,111,112,113,121,126,166,171,174,189,193,196,201,219,227,230,231,233,241,251,267,271,289,290,293,294,299,303,304,306,307,317,329,330,350,353,359,360,362,363,367,368,371,372,382,383,388,396,403],handlertyp:363,handshak:[28,64,146,322,328,330,335],handshake_don:335,hang:[84,88,116,120,123,131],happen:[0,3,5,6,8,9,11,18,19,20,22,27,29,32,38,41,44,45,47,52,53,55,57,64,66,67,68,74,81,82,83,86,87,95,96,98,99,100,106,107,108,113,114,115,122,123,125,126,128,129,138,140,147,152,154,161,166,173,174,185,194,210,216,219,248,254,255,256,257,258,267,269,271,279,294,299,306,314,321,324,344,349,351,352,353,362,372,373,379,381,388,408],happend:299,happi:[14,121,122,372],happier:106,happili:[18,107],haproxi:[154,159,440],hard:[0,5,6,8,11,13,14,16,19,20,22,29,30,40,41,46,47,54,57,61,63,67,75,84,87,99,110,111,113,116,117,120,123,125,137,140,143,148,154,156,189,223,252,302,312,360,362,372],hardcod:[73,81,98,99,113,156,360],hardcor:82,harden:148,harder:[5,8,55,82,97,110,113,120,122,125,268],hardwar:[154,325],hare:143,harm:[13,93,125,256],harsh:122,harvest:433,has:[2,3,5,6,8,9,11,12,13,14,15,16,18,19,20,22,26,27,29,30,31,32,34,35,36,38,40,41,43,44,45,46,47,48,49,50,51,53,54,55,56,57,59,61,63,64,66,67,69,71,72,74,75,76,77,79,80,82,83,84,85,86,87,89,90,91,92,93,95,96,97,98,99,100,101,105,106,107,108,109,110,112,113,114,115,116,117,119,121,122,123,125,128,129,130,133,134,135,137,138,139,140,141,142,143,144,145,147,148,149,150,151,153,154,156,157,160,161,162,165,166,167,172,173,174,175,177,179,180,185,187,188,190,191,192,194,195,200,201,202,207,210,211,212,214,216,222,223,230,234,238,239,241,251,252,254,255,256,257,258,260,263,267,268,269,270,271,277,279,280,281,282,284,286,289,290,293,294,298,299,302,305,306,307,312,314,316,317,321,324,326,330,334,339,340,344,350,351,352,353,355,360,361,362,363,368,370,371,372,374,375,379,381,382,385,388,392,395,396,403,407,408,413,427,428,437,438],has_account:[36,267,289,293,294],has_add_permiss:395,has_attribut:360,has_cmdset:174,has_connect:[18,194],has_consum:216,has_delete_permiss:395,has_drawn:80,has_nick:360,has_object_permiss:408,has_par:388,has_perm:[188,290],has_permiss:408,has_sub:194,has_tag:363,has_thorn:[13,117],hasattr:[22,92],hasbutton:216,hash:[15,40,82,154,299,307,340,344,353,361],hasher:5,hasn:[76,80,239,268,360,403,434],hassl:100,hast:256,hat:[83,88,204],hau:[149,167,185,323],have:[0,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,18,19,20,22,25,26,27,29,30,31,32,33,34,35,36,38,39,40,41,43,44,46,47,48,50,51,52,53,54,55,56,57,59,61,62,63,64,66,67,68,69,71,72,73,74,75,76,78,79,80,81,82,83,84,86,87,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,117,119,120,121,123,124,125,126,127,128,130,131,132,133,134,135,136,137,138,139,140,141,142,145,147,148,149,150,151,152,153,154,155,156,157,159,160,161,166,167,171,173,174,175,177,180,182,185,188,189,190,191,192,194,195,196,198,199,201,202,203,204,207,210,212,216,217,222,223,224,229,230,233,237,239,240,241,244,245,251,252,254,255,256,257,258,263,269,270,279,280,284,285,286,287,289,293,294,297,298,299,300,302,305,306,307,317,322,325,326,330,332,335,336,350,351,352,353,358,359,360,361,362,363,365,366,367,368,369,371,372,373,374,375,381,384,385,386,388,389,391,392,396,403,408,410,413,418,420,427,436,438,439],haven:[3,8,9,40,76,81,89,93,100,107,134,135,136,140,141,150,355],havint:50,head:[7,20,30,63,79,90,101,108,110,118,121,123,129,137,160],header:[14,15,19,29,30,34,36,50,63,71,75,83,84,104,107,115,148,157,175,187,196,234,241,294,366,368,373,374],header_color:180,header_line_char:374,headi:374,heading1:374,heading2:374,headless:294,headlong:148,heal:[117,121,122,256,257,269],healing_rang:257,health:[33,40,67,94,112,121,122,126,128,154,225,251,299,336],health_bar:[163,164,197],healthi:251,hear:[18,79,93,120,191],heard:[81,119],heart:[30,113,138],heartbeat:[47,323],heat:208,heavi:[13,19,22,32,87,104,108,122,126,128,129,145,199,201,241,255,325,388],heavier:[41,255],heavili:[19,43,61,66,75,82,83,98,119,153,202,254,255,256,257,258,362,439],heed:[44,290],hei:[108,121,201,234,240],height:[28,31,51,163,279,317,332,351,371,374],held:[20,128,279,289],hello:[18,27,29,31,35,44,64,67,68,71,74,79,93,106,116,121,122,129,152,185,186,191,194,241,317,365],hello_valu:68,hello_world:[68,115,116],helmet:[93,121],help:[3,5,8,11,14,15,16,18,19,21,22,24,25,26,27,29,32,38,40,41,44,45,46,49,51,53,55,57,63,66,68,69,74,76,77,78,79,80,81,82,84,85,87,89,93,95,96,98,99,102,106,107,109,111,113,114,115,117,118,119,120,121,122,123,128,129,138,140,143,145,148,150,151,152,154,160,161,163,164,170,171,173,175,176,177,185,188,190,191,192,201,210,212,214,216,219,223,227,228,230,234,240,244,251,254,255,256,257,258,263,266,269,270,275,278,296,306,310,312,314,315,323,330,332,333,335,337,340,341,343,344,360,361,365,368,369,370,372,373,383,384,385,386,393,394,395,397,398,401,407,410,413,418,421,426,427,430,439,440],help_categori:[22,30,76,99,101,105,107,128,129,151,175,177,178,179,180,185,186,187,188,189,190,191,192,201,202,203,204,207,211,212,214,222,223,224,228,234,237,238,241,247,248,249,252,254,255,256,257,258,263,267,268,269,270,273,284,285,286,294,343,370,372,373,385],help_cateogori:370,help_detail:435,help_entri:[30,284,370],help_entry1:284,help_entry_dict:[30,284],help_file_modul:284,help_kei:180,help_list:435,help_messag:187,help_mor:187,help_more_en:30,help_search_with_index:287,help_system:101,help_text:[187,230,427],helpact:270,helparg:191,helpdetailview:435,helpentri:[30,32,49,101,187,284,285,286,368,399,410,432,435],helpentry_db_tag:399,helpentry_set:363,helpentryadmin:399,helpentryform:399,helpentrymanag:[285,286],helper:[27,29,38,40,57,82,99,107,109,110,113,114,117,122,163,166,174,177,180,185,187,195,199,202,207,209,210,216,221,240,251,278,280,281,282,294,298,299,309,321,322,341,353,366,372,373,375,381,386,387,388,397,405,411],helpfil:187,helpfilterset:[407,413],helplistseri:[410,413],helplistview:435,helpmixin:435,helpseri:[410,413],helptaginlin:399,helptext:[27,296,372],helptext_formatt:[27,296,372],helpviewset:413,henc:[4,7,74,76,79,115,116,269,270,366],henceforth:[6,11,14,32,44,62,73,81,96,129,139,154,353],henddher:238,hendher:77,her:[8,119,121,204,224],herbal:371,herd:145,here:[2,3,5,7,8,9,10,11,12,13,14,15,16,17,19,22,27,29,30,31,32,33,34,35,36,38,39,40,41,43,44,45,47,48,49,51,53,54,56,57,59,61,63,64,66,67,68,69,71,72,74,75,76,78,79,80,81,82,83,84,85,87,88,89,90,91,93,94,95,96,97,98,99,100,101,103,105,106,107,108,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,131,133,134,135,136,137,138,140,141,143,145,146,148,149,150,151,152,153,155,156,157,160,161,166,167,173,174,175,180,188,189,190,191,192,199,201,202,203,204,207,208,210,211,212,214,215,216,219,221,229,230,239,240,241,248,251,254,255,256,257,260,267,268,269,270,271,273,280,282,286,290,294,298,299,312,314,317,321,323,329,330,332,335,344,350,351,353,359,360,362,365,368,372,374,379,396,403,405,408,410,416,432,435,436],hereaft:121,heroism:122,herself:121,hesit:[76,95],hfill_char:374,hidden:[11,13,51,80,82,87,117,119,120,121,196,204,211,270],hide:[13,20,22,30,32,38,75,81,82,108,120,121,126,187,196,211,241,268],hide_from:[34,196],hide_from_accounts_set:169,hide_from_objects_set:293,hieararci:289,hierarch:[12,38,57,177],hierarchi:[38,57,62,76,89,101,120,186,204,289,408],high:[20,38,82,86,89,108,110,116,119,144,148,173,207,208,257,294,354],higher:[5,9,18,20,27,32,38,44,49,57,68,82,91,96,97,99,100,110,113,121,125,126,129,148,154,166,173,177,190,240,254,255,256,257,258,269,280,289,314,372,388],highest:[20,99,251,365,388],highest_protocol:384,highli:[0,17,27,32,45,47,66,75,77,82,86,87,97,115,134,225,366,379],highlight:[15,59,84,98,99,138],hijack:[141,150],hilight:387,hilit:387,hill:35,hilt:[122,208],him:[27,79,113,224,241],hint:[9,40,53,86,91,102,107,113,118,123,129,133,143,148,161,210,219,358,439],hire:[105,157],his:[8,27,40,79,99,121,204,224,241,373,387],histogram:388,histor:[41,71,100,118,311,381],histori:[11,18,26,51,87,89,99,108,115,122,145,156,174,185,194,223,381],hit:[11,28,75,90,93,114,119,126,128,167,207,254,255,256,257,258,267,268,310,351,381,384],hit_msg:267,hite:59,hitter:107,hnow:59,hoard:122,hobbi:[78,120,123,154],hobbit:100,hoc:86,hold:[0,2,6,7,11,12,14,15,20,27,30,32,36,40,43,44,46,48,56,62,73,75,80,81,82,84,87,90,99,105,107,112,113,120,125,126,128,129,133,140,148,156,173,174,197,202,204,207,208,211,216,219,239,249,252,254,255,256,257,258,265,267,268,283,287,289,290,298,299,300,303,308,319,321,330,340,341,343,353,362,363,364,368,371,372,374,375,377,381,388,393],holder:[75,101,154,360],hole:122,home:[0,11,36,40,52,53,56,62,82,87,107,112,113,122,140,144,148,154,157,174,180,186,267,293,294,299,368,388],home_loc:180,homepag:[5,19,143,148,154],homes_set:293,homogen:[19,123,298,299,302],homogenize_prototyp:298,honcho:123,honor:[122,241],honour:199,hood:[9,18,22,27,29,35,41,48,66,84,87,98,108,110,113,120,121,207,241,251,270],hook:[8,12,18,22,31,32,36,41,45,47,78,80,82,91,94,103,113,126,128,129,134,135,136,137,139,161,166,171,173,175,177,180,185,186,188,190,191,194,200,204,207,209,214,216,220,222,230,238,239,241,245,250,254,255,256,257,258,262,264,266,267,268,269,271,273,277,280,294,302,305,307,316,323,335,338,340,343,348,350,351,352,354,362,370,373,375,379,380,382,386,388,397,400,401,411,427,431,432,433,435,438],hooligan:55,hop:86,hope:[3,99,106,119,122],hopefulli:[0,51,80,81,115,119,123,140,144,154],horizon:100,horizont:[268,279,374,388],hors:19,host1plu:154,host:[0,11,19,36,55,72,87,120,132,145,150,155,156,157,159,199,240,357,388],host_os_i:388,hotbutton:51,hotel:154,hotspot:157,hould:122,hour:[19,100,122,139,210,376,388],hous:[40,82,123,154,180,375],housecat:19,how:[0,3,5,6,7,8,9,10,11,13,14,15,16,17,18,19,20,25,27,29,32,33,34,35,38,40,41,43,44,46,49,50,51,52,53,54,55,57,61,62,64,66,67,68,72,73,74,76,78,79,80,81,82,83,84,86,87,89,90,91,92,93,94,95,96,97,98,100,101,103,104,105,106,107,108,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,138,139,140,141,144,145,148,150,152,153,154,157,159,160,161,167,172,174,175,187,189,190,191,194,202,204,207,208,210,211,214,216,219,224,239,240,241,248,251,252,256,257,258,263,267,271,279,280,281,282,287,289,293,294,299,302,307,312,317,322,326,331,336,339,343,344,350,351,352,353,357,362,366,370,372,373,374,375,381,382,387,388,396,397,399,402,403,427,439,440],howev:[9,11,12,13,14,15,16,17,20,22,26,29,32,40,41,47,48,50,54,55,59,61,67,68,69,71,72,74,76,79,81,82,83,84,86,89,93,94,96,99,100,105,106,108,113,115,117,119,121,122,125,126,129,136,139,145,154,161,174,175,180,187,190,191,199,202,223,225,230,239,252,257,263,289,365,410],howto:[84,439,440],hpad_char:374,href:[17,101,140],hrs:210,htm:327,html5:112,html:[51,52,59,72,81,84,86,87,101,112,133,141,143,146,157,190,194,239,270,286,334,336,340,341,357,362,384,387,407,416,431,432,433,435,436,438],htmlchar:387,htop:[5,161],http404:[101,141],http:[2,8,9,10,11,39,45,49,50,51,52,53,54,56,63,68,72,75,76,77,79,81,84,86,87,89,95,101,112,118,128,131,140,141,143,145,147,148,149,153,154,155,157,160,163,167,185,199,202,239,270,287,314,321,323,324,325,326,327,328,334,336,339,340,341,357,365,374,387,388,391,407,427,440],http_request:[72,157],httpchannel:357,httpchannelwithxforwardedfor:357,httpd:144,httprequest:166,httprespons:[395,397,400],httpresponseredirect:140,hub:[30,143,156,368],hue:59,huge:[8,56,66,90,93,95,100,116,120,122,131,271,373],huh:[22,76],human:[5,55,61,87,89,98,105,120,126,134,140,207,251,433],humanizeconfig:89,hundr:[69,122,140,152],hung:123,hungri:66,hunt:[121,126,251,267],hunting_pac:267,hunting_skil:126,hurdl:80,hurri:114,hurt:[94,121,122,251],huzzah:75,hwejfpoiwjrpw09:75,hybrid:[122,126],hype:159,i18n:[63,111,294],iac:67,iattribut:360,iattributebackend:360,ice:82,ice_and_fir:117,icon:7,id_:[397,399,401,403,427],id_str:33,idcount:343,idea:[0,7,8,10,11,22,30,32,45,50,53,55,68,74,75,80,83,84,86,95,97,101,105,110,112,115,116,120,121,122,123,125,126,127,129,137,140,141,148,151,152,175,187,188,191,201,240,299,379,387,437],ideal:[22,63,71,79,83,154,169,290],idenfi:173,ident:[6,20,22,59,64,75,96,98,107,121,161,166,188,241,247,290,294,365,366],identif:[19,47,353],identifi:[3,5,6,20,22,26,27,31,33,40,41,47,48,64,67,74,78,80,84,92,94,95,99,101,110,113,114,120,128,141,144,145,172,175,180,185,188,191,195,202,207,219,222,240,241,252,269,280,290,294,298,304,307,309,312,317,319,322,336,340,349,351,353,360,361,365,368,371,372,375,388],identify_object:195,idl:[44,55,166,167,267,294,344,351,353],idle_command:22,idle_tim:[166,294],idle_timeout:167,idmap:379,idmapp:[48,66,163,164,190,196,286,319,345,360,361,362,364],idnum:195,ids:[55,99,137,222,343,353,371],idstr:[33,47,303,307,349,388],idtifi:195,idx:137,ietf:328,ifconfig:150,ifier:251,ifram:51,ignor:[3,11,15,18,19,20,22,27,29,30,31,32,38,44,48,59,64,66,84,93,99,106,107,108,112,116,125,126,134,137,145,148,154,166,172,173,174,175,180,191,222,241,273,279,280,282,289,293,294,307,312,317,323,324,339,340,341,360,362,365,366,371,372,383,388,389],ignore_ansi:388,ignore_error:166,ignorecas:[180,186,187,192,204,207,214,365,370,372,387],ignoredext:357,illumin:81,illus:54,imag:[7,17,51,52,53,72,89,101,112,133,140,148,154,199,416],imagesconfig:89,imagin:[15,20,27,79,93,107,114,119,120,123,125,128,134,139,263,366],imaginari:[81,90,143],imeplement:271,img:17,immedi:[16,19,22,27,31,40,41,50,64,74,80,82,87,88,93,107,110,113,115,125,128,136,140,141,154,156,160,178,190,207,267,280,323,366,368,372,373],immers:78,immobil:91,immort:267,immut:[13,307],impact:138,impass:[82,119],impati:148,implement:[0,6,8,9,11,13,18,20,22,23,27,29,32,34,36,46,47,48,51,53,59,61,66,67,68,72,73,77,78,80,81,83,86,90,91,92,93,97,98,99,102,103,109,112,114,116,120,121,125,128,129,134,135,136,142,143,150,169,173,174,177,178,179,180,181,182,185,186,187,188,189,190,194,195,196,199,201,203,204,207,210,211,222,224,237,240,241,245,247,248,249,250,252,254,255,258,267,268,269,271,273,279,285,286,290,293,294,302,304,307,318,323,325,326,327,328,329,330,332,334,335,336,339,340,341,343,350,357,360,361,362,363,365,366,369,370,372,373,380,383,384,387,388,395,412,434,436,440],impli:[46,76],implicit:[59,106,138],implicit_keep:299,impmement:290,impopular:122,import_cmdset:174,importantli:[18,27,108,113,121,140,290],importerror:[4,75,89,388],impos:[86,143,355],imposs:[16,27,57,69,80,81,82,84,137,140,154,280,298,374],impract:[22,40,82,299],imprecis:379,impress:[3,81,122],improperlyconfigur:199,improv:[9,13,63,74,83,88,106,114,115,120,123,439],impur:208,in_game_error:[0,157],inabl:157,inaccess:[32,74],inact:[216,267],inactiv:190,inadvert:258,inadyn:154,inarticul:68,inbuilt:[46,129],incant:153,incapacit:122,incarn:427,incid:245,includ:[2,5,7,8,11,12,14,19,20,22,27,29,31,32,33,36,40,43,44,45,46,47,48,50,51,53,55,56,59,67,68,72,75,76,77,81,82,83,84,85,86,87,89,90,94,95,96,99,100,101,105,106,107,108,109,112,113,114,115,116,117,118,120,121,122,124,125,126,127,128,130,132,133,137,140,141,142,143,148,153,156,166,171,172,173,175,178,179,180,188,191,194,199,201,204,207,208,209,214,219,222,223,224,230,240,241,245,251,252,254,255,256,257,258,269,270,271,277,279,280,281,282,287,289,294,305,312,330,332,335,336,344,349,352,360,361,362,363,365,366,367,368,369,371,372,374,376,381,388,410,416,420,436],include_account:360,include_children:361,include_par:361,include_prefix:172,include_unloggedin:[330,353],inclus:[30,361,375],incoher:138,incol:[99,371,374],incom:[22,43,52,61,67,145,154,167,172,189,214,245,255,280,312,321,325,328,331,335,336,340,341,343,351,352,353,357,372,373,375,395,397,400,401,408],incomplet:[175,248,374],inconsist:[6,54,239],incorpor:[177,374],incorrect:195,increas:[32,48,59,82,100,110,113,121,126,157,201,251,255,257,258,269,280,324,330,344,370,372],increase_ind:370,incred:[252,314],increment:[148,360],incur:19,indata:[61,360],inde:[75,86,106,154],indefinit:[256,268,368],indent:[14,15,19,26,29,51,71,74,75,84,98,107,115,116,279,341,366,370,372,375,388],independ:[34,41,52,74,87,97,138,160,201,244],indetermin:314,index:[30,52,53,66,68,72,80,81,84,97,105,113,120,133,137,143,154,159,163,164,172,185,186,187,201,216,252,268,279,280,284,286,287,310,314,315,357,363,365,373,374,388,393,426,427,428,430,432,435,440],index_category_clr:187,index_to_select:252,index_topic_clr:187,index_type_separator_clr:187,indexerror:[141,271,361],indexread:216,indextest:428,indic:[34,74,76,80,81,82,84,100,105,106,108,115,116,144,167,180,187,188,199,216,224,245,252,279,280,302,305,323,324,332,339,340,353,355,357,360,365,366,372,373,388,413],individu:[13,14,15,22,29,40,67,74,76,79,80,81,82,90,98,99,105,113,116,126,139,142,151,154,174,178,194,207,211,217,227,230,257,296,299,351,363,365,374,375,382,383],ineffici:[47,134,365],inf:[391,392],infact:22,infinit:[41,74,77,82,120,148,167,271,280,298,391,392],infinitely_lock:216,inflat:122,inflect:[375,391],inflict:256,inflict_condit:256,influenc:[27,54,56,76,79,120,129,201,219,388],influenti:143,info1:249,info2:249,info3:249,info:[0,5,7,11,13,14,17,18,19,22,25,28,30,36,37,41,43,44,46,48,49,53,56,66,67,82,83,86,87,91,99,112,113,115,121,131,142,145,146,148,156,166,167,169,177,178,180,187,190,192,197,201,203,212,216,222,225,234,269,282,286,294,312,317,321,329,330,350,351,353,361,362,363,368,371,381,388],infomsg:381,inforamt:[241,271,282,294,362],inform:[2,5,8,11,12,19,22,27,33,34,40,41,43,44,46,51,53,59,62,64,66,70,72,74,75,76,79,82,84,91,92,101,105,106,107,108,112,115,122,126,128,129,131,133,134,136,139,140,141,144,145,149,150,156,157,166,167,175,178,180,185,186,190,196,202,207,211,214,239,241,245,246,251,256,257,258,286,294,312,317,326,327,328,330,339,352,353,361,362,365,368,370,381,388,427],infrastructur:[64,84,87,123,154,157,171,322],infrequ:79,ing:[15,75,99,114,122,211],ingam:79,ingame_python:[163,164,197],ingame_tim:100,ingen:63,ingo:[20,27,31,82,99,173,324,375,391],ingot:[207,208],ingredi:[78,122,207,216],ingredient1:216,ingredient2:216,ingredient3:216,ingredient_recip:216,inher:[35,54,68,89,251],inherit:[2,3,8,12,18,19,20,22,36,40,48,50,53,59,61,66,76,78,82,87,94,98,101,103,107,109,111,113,114,117,122,129,134,169,173,175,180,188,190,191,194,196,201,202,204,207,214,216,222,224,238,241,248,251,254,255,256,257,258,266,267,269,270,273,291,293,294,299,302,304,343,352,359,361,362,370,373,374,379,386,388,410,413,431,432,433,435,437,438],inheritng:299,inherits_from:[134,141,190,388],inifinit:298,init:[7,11,43,51,61,75,76,80,82,84,99,111,118,148,153,160,201,202,219,223,274,293,312,330,331,341,353,388],init_delayed_messag:223,init_django_pagin:373,init_evt:373,init_f_str:373,init_fill_field:223,init_game_directori:312,init_iter:373,init_menu:266,init_mod:174,init_new_account:388,init_pag:[298,373],init_pars:270,init_queryset:373,init_rang:258,init_sess:[61,352],init_spawn_valu:298,init_st:219,init_str:373,init_tree_select:252,init_tru:174,initi:[0,6,8,10,11,13,22,26,27,41,44,45,51,52,53,75,78,80,82,84,87,90,93,99,105,107,111,120,121,125,126,129,136,140,161,166,167,174,175,191,194,199,201,207,212,219,223,227,231,233,240,241,251,252,254,255,256,257,258,263,266,267,268,278,279,280,281,284,293,294,298,303,306,307,309,310,312,314,315,316,321,322,323,325,326,327,328,330,331,332,333,334,335,336,337,339,340,341,343,351,352,353,360,365,367,370,371,372,373,375,383,384,388,396,397,399,401,403,405,421,427,438],initial_formdata:223,initial_ind:374,initial_setup:[163,164,308,350],initialdelai:[309,323,324,343],initialize_for_combat:[254,255,256,257,258],initialize_nick_templ:360,initil:340,initpath:82,inject:[52,112,125,157,216,281,298,312,343,344,351,366,372],inlin:[43,51,70,85,98,105,294,310,375,395,396,397,399,400,401,403],inlinefunc:[40,43,64,112,375],inlinetagform:403,inmemori:360,inmemoryattribut:360,inmemoryattributebackend:360,inmemorybackend:360,inmemorysavehandl:383,innermost:29,innoc:[55,178],innocu:157,inobject:321,inp:[27,180,195,298,310,373,375,388],inpect:27,input:[5,8,11,15,16,17,18,19,20,26,31,35,40,43,44,47,51,52,53,54,61,64,69,70,72,75,76,77,78,81,82,85,88,94,98,99,102,106,107,108,112,113,114,118,125,135,140,143,161,166,170,171,172,175,180,185,187,188,189,190,191,195,202,207,208,211,219,223,240,241,245,250,251,252,257,268,280,285,294,297,298,299,310,312,317,321,332,340,351,353,360,361,363,370,371,372,373,374,375,382,384,388,389,427],input_arg:191,input_cmdset:372,input_func_modul:[31,317],input_str:[29,372],input_validation_cheat_sheet:427,inputcmdset:372,inputcommand:[31,64,67],inputcompon:51,inputdebug:[31,317],inputfuc:112,inputfunc:[24,43,61,112,163,164,167,308,340,351,353,440],inputfunc_nam:340,inputfunct:31,inputhandl:163,inputlin:[35,186,194,360,361],insecur:154,insensit:[30,110,117,187,222,241,269,284,361,419],insert:[14,15,26,29,35,40,78,87,91,99,115,118,148,151,174,207,216,224,237,298,366,372,374,375,388],insid:[3,5,7,8,13,14,16,19,20,22,27,29,32,36,39,40,41,44,48,49,53,54,57,59,63,66,67,68,72,74,79,81,82,84,87,90,91,92,98,101,104,105,106,107,108,110,111,112,115,116,117,125,126,129,133,134,137,139,140,141,145,150,151,152,156,161,163,167,190,194,199,202,222,225,229,230,241,267,269,271,289,293,294,297,312,329,350,357,366,367,375,388],inside_rec:289,insiderecurs:289,insight:[3,108,119,133],insist:[106,154],inspect:[27,55,82,105,145,166,180,201,310,312,372],inspectdb:66,inspir:[8,22,71,77,121,126,128,203,224,374,388],instac:[175,207,294,351],instal:[0,3,5,6,7,8,9,10,15,63,68,74,77,78,79,83,84,86,87,98,99,108,111,115,118,119,121,131,141,143,147,149,155,157,161,163,164,197,199,201,203,204,205,206,211,212,222,234,237,238,241,245,247,248,254,255,256,257,258,418,439,440],installed_app:[8,66,89,101,140,141,418],instanc:[3,6,8,10,11,12,13,17,19,26,27,29,33,40,44,45,50,51,56,63,74,76,79,82,87,91,92,93,95,97,98,99,100,101,105,106,107,109,110,112,113,115,117,125,128,131,133,137,138,144,157,166,169,171,172,173,174,175,184,187,189,190,191,194,196,200,202,207,221,230,233,239,252,270,271,282,286,293,294,298,299,302,306,307,309,312,321,322,323,324,325,326,327,328,330,334,335,339,343,344,352,353,357,360,362,363,365,368,369,372,374,379,380,384,388,389,395,396,397,399,400,401,403,407,408,410,412,427],instanci:202,instant:133,instanti:[8,22,66,116,166,174,191,251,263,304,307,329,350,353,360,371],instantli:[396,403],instead:[0,5,7,8,9,11,13,15,18,19,20,22,27,29,33,36,38,40,41,43,44,46,48,53,54,55,56,57,59,63,64,66,72,74,75,76,77,78,79,80,81,82,83,84,87,90,91,93,94,95,98,99,100,105,106,108,109,110,112,113,114,115,116,117,118,120,122,123,125,128,129,131,133,134,135,137,138,139,140,141,143,145,148,150,154,156,157,159,161,166,167,174,175,177,178,180,182,185,189,190,192,194,202,207,211,212,214,216,221,223,233,240,241,248,252,254,255,256,257,258,266,268,270,271,273,279,280,282,289,290,294,299,307,312,340,341,351,355,360,362,363,368,372,373,375,379,381,383,384,385,388,396,403,418,427,431,432,433,435],instig:178,instil:[73,256],instnac:306,instr:[321,388],instruct:[3,6,7,11,14,15,19,31,64,74,75,77,79,83,84,86,94,98,99,105,111,115,116,118,119,120,122,143,144,145,148,150,153,154,156,159,160,166,175,190,199,241,245,299,307,309,312,322,324,330,335,336,340,341,343,351,353,372,382],instructrion:78,insur:122,integ:[20,22,29,40,44,48,59,95,105,106,129,172,204,210,211,223,251,254,255,256,257,258,269,280,282,289,294,361,375,384,388,389],integerfield:[140,401,427],integr:[1,49,51,87,89,116,121,141,143,157,191,241,315,317,372,407,440],intellig:[64,106,122,126,141,157,174,199,343],intend:[3,11,14,17,19,20,22,29,34,40,46,51,68,76,81,82,83,86,108,120,125,133,138,154,157,166,198,199,201,202,207,221,241,282,286,294,299,330,361,363,368,369,371,374,375,385,386,388,389,405,433,436],intens:[59,110,122,143],intent:[157,240,388],inter:[14,82,122,279],interact:[3,7,12,22,27,61,68,82,84,86,93,97,108,116,119,122,123,125,128,140,143,145,156,161,163,179,191,214,258,263,312,329,366,381,388],intercept:353,interchang:[118,128,284,372,437],interconnect:279,interest:[0,3,5,13,15,22,30,40,61,66,74,76,78,79,80,82,83,86,88,89,90,98,106,108,116,118,119,120,123,127,129,133,136,137,143,154,157,174,189,201,210,269,271,280],interestingli:121,interf:[148,263],interfac:[0,2,3,6,32,43,50,51,52,61,72,75,76,81,87,88,90,91,101,111,115,140,143,145,148,154,177,180,194,294,305,323,352,357,360,363,365,388,397,402,436],interfaceclass:332,interfer:[6,145,298],interim:[47,93],interlink:[329,350],intermediari:[241,290,303,372],intern:[9,13,16,18,19,27,32,35,40,43,44,45,46,54,61,67,69,84,110,111,112,122,128,148,150,154,156,157,161,166,167,196,207,212,224,241,251,262,271,277,279,280,294,298,304,340,341,360,362,363,365,369,372,374,388],internal:372,internal_port:154,internation:[69,440],internet:[22,53,54,55,56,61,145,148,150,152,154,157,160,178,309,314,322,323,324,332,335,343,357],interpret:[3,5,22,40,41,43,97,106,115,116,141,157,175,179,180,282,298,299,340,365,384],interract:82,interrupt:[125,148,171,175,191,227,230,233,273,277,332],interrupt_path:[82,280],interruptcommand:[22,106,125,163,171,175],interruptev:233,interruptmaplink:[82,280],interruptmapnod:[82,280],intersect:[20,173],interv:[31,41,47,87,128,136,137,139,167,208,210,230,251,254,255,256,257,258,260,267,269,302,307,317,368,376,388],interval1:307,intim:[20,22],intimid:99,intoexit:[180,273],intpropv:129,intricaci:100,intrigu:[77,147],intro:[89,101,107,116,118,119,141,266,269],intro_menu:[163,164,197,265],introduc:[0,6,8,11,20,29,78,93,98,121,122,123,126,129,241],introduct:[1,11,14,15,16,56,57,77,102,108,114,118,124,127,130,131,132,148,202,439,440],introductori:[86,148],introroom:269,introspect:238,intrus:138,intuit:[11,27,66,76,106,120,122,125,173],intxt:19,inv:[20,104,186,204,214],invalid:[13,29,40,82,106,166,223,241,251,280,298,374,375,384,388,389],invalid_formchar:371,invent:251,inventori:[6,19,20,32,78,90,91,105,106,107,108,110,114,117,122,123,186,204,207,208,214,241,289,294,362],invers:[32,59,82,107,113,138,241,250,280,338,387],invert:[59,138],investig:[53,113],invis:[82,146,277,280],invisiblesmartmaplink:280,invit:[54,74,120,132,263],invitingli:[108,263],invok:[13,14,15,41,244],involv:[32,36,41,44,45,60,61,82,97,114,120,122,128,129,153,207,208,223,258,280,362,363,365,408],ioerror:366,ipregex:178,ipstart:[148,156,161],iptabl:157,ipv4:145,ipython:[0,5,99],irc2chan:[30,107,152,185],irc:[0,11,75,86,88,123,143,148,155,159,163,164,167,185,193,308,317,320,330,353,440],irc_botnam:167,irc_channel:167,irc_en:[152,185,289],irc_network:167,irc_port:167,irc_rpl_endofnam:324,irc_rpl_namrepli:324,irc_ssl:167,ircbot:[167,324],ircbotfactori:[167,324],ircclient:[324,353],ircclientfactori:330,irchannel:[152,185],ircnetwork:[152,185],ircstatu:[107,185],iron:[121,201,207,208,439],ironrealm:336,irregular:[260,267,269],irregular_echo:267,irrelev:[157,321],irur:28,is_account_object:97,is_act:[302,395],is_aggress:134,is_anonym:[89,101],is_anyon:89,is_authent:140,is_ban:166,is_bot:169,is_build:89,is_categori:252,is_channel:22,is_connect:[169,294],is_craft:93,is_dark:113,is_exit:[22,175],is_fight:93,is_full_moon:91,is_giving_light:268,is_gm:99,is_in_chargen:129,is_in_combat:[254,255,256,257,258],is_inst:19,is_it:388,is_iter:388,is_lit:[268,269],is_next:[169,196,286,293,302,360,362],is_o:388,is_ouch:[13,117],is_prototype_bas:298,is_rest:125,is_sai:135,is_staff:395,is_subprocess:388,is_superus:[12,50,89,166,169,290,294,368,395],is_thief:187,is_turn:[254,255,256,257,258],is_typeclass:[166,362],is_valid:[41,137,140,201,302,305],is_valid_coordin:271,isalnum:365,isalpha:365,isb:191,isbinari:[323,340],isclos:51,isconnect:51,isdigit:[99,365],isfiremag:92,isinst:[95,388],isleaf:341,islow:365,isn:[3,17,26,74,76,79,89,97,100,101,106,110,125,148,202,227,231,258,269,270,314,365,382,391,396,403,419],isnul:384,iso:[16,69],isol:[8,14,83,84,87,106,115,118,120,148,156,160],isp:[154,157],isspac:365,issu:[3,5,8,11,13,14,15,20,22,36,48,54,68,73,76,77,81,83,84,88,90,93,99,105,116,121,125,129,138,143,144,145,147,148,154,157,185,298,312,343,344,374,439],istart:[3,161,163],istep:344,istitl:365,isub:128,isupp:365,italian:63,itch:[122,148],item:[27,51,66,77,101,104,105,108,111,112,121,122,128,134,148,186,199,201,204,207,217,223,241,256,263,271,331,360,375,388],item_consum:256,item_func:256,item_kwarg:256,item_selfonli:256,item_us:256,itemcoordin:271,itemfunc:256,itemfunc_add_condit:256,itemfunc_attack:256,itemfunc_cure_condit:256,itemfunc_h:256,itend:388,iter:[6,13,27,29,46,80,107,113,166,241,262,271,280,294,299,305,341,343,344,360,362,363,365,366,369,373,388],iter_cal:373,iter_to_str:388,itl:[76,202],its:[3,5,8,9,10,11,12,13,15,16,18,19,20,22,26,27,28,29,30,32,33,36,38,40,41,43,44,47,48,49,50,51,52,55,56,59,61,64,66,67,71,72,74,75,76,77,78,80,81,82,83,84,86,87,88,90,91,93,95,96,97,98,99,100,101,103,104,105,106,107,108,110,111,112,113,114,115,116,117,118,119,121,123,125,126,129,131,133,134,135,137,138,140,141,145,148,149,152,153,154,155,156,157,166,167,169,171,172,173,174,175,178,180,188,190,191,194,195,201,202,207,208,216,219,223,224,230,238,240,241,248,251,252,254,255,256,257,258,262,263,267,268,270,271,273,280,282,293,294,299,306,307,312,317,321,325,338,339,340,341,344,352,353,357,358,360,361,362,363,366,371,372,374,375,379,381,382,383,384,385,388,395,396,403,405,407,416,427,431,432,433,435,437],itself:[2,5,7,8,11,13,16,17,18,19,22,27,30,32,36,38,41,43,44,47,48,53,61,63,66,72,74,75,76,77,79,80,81,82,83,84,86,87,89,90,91,93,96,104,105,107,108,111,112,113,115,116,117,119,128,129,133,135,140,141,142,145,148,150,153,159,160,166,167,187,194,202,207,211,215,216,217,219,223,233,239,241,251,252,257,260,268,269,271,280,283,286,287,289,294,296,297,299,306,312,336,341,353,357,360,363,365,368,370,372,383,385,388,396,403,427,437],iusernamepassword:332,iwar:105,iweb:154,iwebsocketclientchannelfactori:323,iwth:307,jack:35,jail:[14,55],jam:77,jamochamud:146,jan:[55,100],januari:100,jarin:154,java:115,javascript:[49,51,52,53,67,72,86,133,157,199,340,341],jenkin:[77,129,204,223,225,252,254,255,256,257,258],jet:257,jetbrain:[7,143],jinja:112,jnwidufhjw4545_oifej:75,job:[22,32,101,150,166],jobfusc:240,johhni:77,john:[99,249],johnni:[244,245],johnsson:35,join:[46,75,76,80,88,99,110,120,122,128,129,140,148,149,152,166,185,194,199,201,215,240,365,388],join_fight:[254,255,256,257,258],join_rangefield:258,joiner:194,jointli:[87,174],joker_kei:[76,202],journal:81,json:[49,51,64,67,244,323,336,340,341,369,410],jsondata:67,jsonencod:341,jsonifi:341,jtext:365,judgement:126,jump:[0,11,14,15,27,28,36,68,77,80,86,90,96,120,122,148,214,252,310,375],jumpstat:214,june:63,junk:321,just:[0,3,4,5,6,7,8,9,11,13,14,15,16,17,18,19,20,22,27,28,29,30,31,32,34,35,36,40,41,44,45,46,47,48,50,51,53,54,55,57,59,61,63,64,66,67,69,72,73,74,75,76,77,78,79,80,81,82,83,84,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,103,105,106,107,108,110,111,112,113,114,115,116,117,118,119,120,121,123,125,126,128,129,131,133,134,135,136,137,138,139,140,141,143,145,147,148,150,154,156,160,161,166,173,174,175,178,180,185,188,189,190,191,194,199,201,202,204,207,208,211,214,219,221,222,227,229,230,240,241,249,251,252,254,255,256,257,258,263,267,269,271,273,280,282,290,294,299,303,317,330,340,344,350,357,360,361,362,365,369,370,372,374,375,383,384,388,389,433,436],justif:[373,388],justifi:[29,40,365,373,375,388],justifii:373,justify_kwarg:373,kcachegrind:5,keen:83,keep:[0,3,5,6,9,11,13,14,15,16,22,27,30,39,40,44,53,56,74,75,87,89,91,93,94,97,98,99,100,101,103,104,105,106,107,110,114,115,116,119,120,121,122,123,125,126,128,135,137,138,139,140,141,142,145,148,150,153,156,160,167,174,222,225,230,239,244,263,268,269,298,299,314,355,372,374,388],keep_log:[194,368],keepal:[44,335,341],keeper:[105,122],keepint:87,kei:[0,3,6,8,11,13,14,18,19,20,22,26,28,29,30,31,32,33,36,38,41,45,46,47,48,49,51,53,54,63,66,67,71,74,75,78,80,81,82,84,85,90,91,92,93,94,95,96,97,98,99,100,101,103,104,105,106,107,109,113,114,115,116,125,127,128,129,136,137,140,144,151,166,167,169,171,173,174,175,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,194,195,201,202,203,204,207,208,210,211,212,214,215,216,219,221,222,223,224,228,229,234,237,238,240,241,247,248,249,251,252,254,255,256,257,258,263,266,267,268,269,270,271,273,279,280,281,282,284,286,287,289,293,294,297,298,299,302,303,304,305,306,307,310,312,317,318,319,321,330,333,336,337,339,340,341,343,344,351,352,353,355,360,361,362,363,367,368,370,371,372,373,375,381,382,383,385,388,407,427,438],kept:[5,8,22,30,38,53,98,106,112,180,229,230,299,360],kept_opt:252,kernel:0,key1:237,key2:[27,237,294],key_mergetyp:[20,173,263],keydown:51,keyerror:[207,298,307,383,388],keyfil:[333,337],keynam:[194,297,299,368],keypair:332,keys_go_back:[76,202],keystr:363,keystrok:332,keywod:374,keyword:[5,8,13,19,22,26,27,28,29,31,32,40,41,45,47,48,54,64,66,74,76,91,93,94,99,100,103,106,109,110,115,125,129,141,166,167,171,175,180,186,194,199,204,210,219,221,222,227,229,230,233,240,241,245,254,255,256,257,258,269,270,282,290,294,298,299,303,306,307,310,312,317,321,323,324,330,331,332,335,340,341,351,352,353,355,360,361,362,368,371,372,373,374,375,379,382,384,385,388,436],keyword_ev:233,kick:[18,20,27,55,99,122,154,167,173,178,185,192,212,373],kildclient:146,kill:[5,19,27,44,108,112,120,123,128,153,156,201,267,268,303,307,312,350,357],killsign:312,kilogram:104,kind:[6,13,32,43,61,74,83,84,106,113,114,115,120,124,128,135,137,140,254,255,256,257,290,362,389],kindli:138,kitchen:[96,114,125,180,273],klass:63,knee:[82,216,280],kneeabl:216,kneed:216,kneel:216,kneelabl:216,knew:[113,115],knife:[78,207,208],knock:[27,119],knot:204,know:[0,3,5,6,8,9,11,12,13,14,15,16,18,20,22,27,29,30,31,32,33,36,43,44,48,53,54,56,59,61,63,64,66,69,74,76,78,80,81,82,83,84,87,88,90,93,95,96,97,98,99,101,103,104,105,106,107,108,110,112,113,114,115,116,117,118,120,121,122,123,125,126,128,133,134,135,137,138,139,140,141,143,144,145,147,150,152,154,155,156,161,175,179,180,188,191,201,229,234,240,252,257,263,268,280,293,294,317,351,353,360,366,367,372,388,396,403,434],knowledg:[14,16,22,86,334,353],known:[22,26,30,35,38,39,47,48,51,88,108,120,125,126,141,143,146,159,165,189,257,373,439],knuth:5,korean:63,koster:143,kovash:27,kwar:362,kwarg:[18,22,27,29,31,32,33,40,45,47,48,51,54,61,64,67,70,78,82,91,93,99,103,125,135,137,139,141,166,167,168,169,171,174,175,177,178,179,180,185,186,187,188,189,190,191,192,194,195,196,199,201,202,203,204,207,208,210,211,212,214,215,216,217,219,221,222,223,224,227,228,229,230,234,237,238,239,240,241,245,247,248,249,251,252,254,255,256,257,258,260,262,263,266,267,268,269,270,271,273,280,281,282,285,286,289,290,292,293,294,296,297,298,299,301,302,303,305,306,307,309,310,317,318,319,321,322,323,324,329,330,331,332,333,335,336,337,340,341,343,345,351,352,353,354,355,357,360,361,362,363,365,368,370,371,372,373,374,375,376,378,379,381,382,383,384,385,386,388,389,395,396,397,400,401,403,407,409,410,413,427,431,432,433,435,436,437,438],kwargtyp:388,label:[46,66,73,108,117,118,140,407,427],label_suffix:[397,399,401,403,427],laborum:28,labyrinth:82,lack:[14,53,71,84,97,107,120,123,241,263,294,360,388],laddad:63,ladder:99,ladi:113,lag:[5,80,148],lair:15,lambda:[27,40,54,95,101,230,299,388],lamp:[81,263],lamp_breaks_msg:263,land:[106,128,267,268],landscap:[81,157],lang:240,langcod:241,langnam:241,languag:[8,10,16,29,48,51,52,53,60,61,68,69,71,84,86,87,97,98,99,106,107,110,111,112,113,114,115,121,123,135,143,157,240,241],language_cod:63,languageerror:[240,241],languageexistserror:240,languagehandl:240,larg:[6,8,13,14,15,27,40,41,53,54,56,66,68,77,82,83,86,97,108,118,119,120,123,125,145,154,216,240,263,271,274,298,330,366,371,379],larger:[15,29,32,66,68,80,84,98,104,115,120,222,294,338,365,379,388,416,439],largest:251,largesword:66,last:[0,2,3,8,11,13,14,15,18,20,22,27,31,35,36,44,45,51,63,66,76,82,89,93,99,101,106,109,114,115,116,117,119,120,122,123,128,133,137,138,141,147,150,161,171,172,174,180,185,186,199,201,210,222,230,241,252,254,255,256,257,258,294,316,365,366,367,372,373,374,376,381,388],last_cmd:[22,113],last_initial_setup_step:350,last_login:395,last_nam:395,last_step:316,lastcast:92,lastli:[81,103,140,171,207],lastsit:91,late:[298,367],later:[6,11,12,13,14,18,22,30,31,33,40,41,47,48,55,61,64,66,73,74,75,76,78,79,81,82,84,86,87,99,101,103,107,108,110,113,114,115,116,118,120,121,122,123,125,126,127,129,134,136,137,140,145,148,154,173,177,178,180,188,194,210,238,241,280,298,299,307,332,363,375,388],latest:[2,11,19,20,53,77,84,87,90,99,148,150,153,155,180,185,190,294,299,331,355,372,375,381,407],latin:[16,63,69,294,388],latin_nam:294,latinifi:[294,388],latter:[19,32,36,47,82,87,93,106,138,241,251,284,302,304,363],launch:[7,8,15,77,82,90,105,119,147,148,153,154,161,174,263,311,312,322,324,343,370,388],launchcmd:[82,163,164,197,272,274],launcher:[5,7,82,274,275,311,312,321,322,343],lava:82,law:143,layer:[20,76,77,111,116,293,362],layout:[9,19,30,39,48,51,53,80,82,97,99,113,117,271,279],lazi:388,lazy_properti:[251,388],lazyencod:341,lazyset:381,lc_messag:63,lcnorth:58,ldesc:97,ldflag:153,lead:[13,14,17,20,27,29,41,50,52,53,64,66,70,74,76,77,80,81,82,83,86,87,97,101,108,110,117,120,122,137,143,145,157,166,172,173,180,190,207,230,233,239,247,273,278,280,281,282,294,299,351,360,362,372,374,375,388],leak:[53,72],lean:[34,121,241],leap:[100,115,125,135],learn:[3,7,11,16,17,20,22,49,53,56,68,74,76,77,79,80,82,93,97,98,101,103,107,109,110,111,113,114,115,116,119,120,121,122,123,125,133,138,141,143,148,160,240,257,440],learnspel:257,least:[3,7,22,27,32,34,50,66,80,86,95,98,99,113,115,116,118,120,123,126,131,137,144,150,154,166,174,195,201,216,240,251,285,294,299,305,365,371,374,375,385,388],leasur:267,leather:[105,122,208],leatherrecip:208,leav:[5,12,18,31,51,53,74,76,90,91,99,105,108,118,126,128,129,157,177,179,180,194,201,202,214,216,217,269,271,273,294,306,340,341,372,375,379,410],leaver:194,led:113,left:[2,19,22,29,31,32,40,51,66,76,81,82,95,98,101,105,106,110,114,119,125,148,166,180,186,188,216,225,254,255,256,257,258,263,268,271,279,280,290,299,362,365,374,388],left_justifi:40,leftmost:82,leg:349,legaci:[29,40,41,67,122,160,166,241,375],legal:[154,157],legend:[26,80,163,164,197,272,279,281],legend_key_except:279,legenddict:281,leisur:389,len:[40,80,91,99,105,110,117,128,136,137,151,172,189,210,388],lend:26,length:[62,66,76,80,82,91,100,106,115,119,122,145,151,154,172,199,207,210,221,223,225,233,240,241,279,280,314,355,360,365,374,375,388,438],lengthi:91,lenient:40,less:[7,27,30,53,63,66,68,76,82,87,96,97,106,113,114,120,122,125,126,128,139,140,154,210,255,257,280,360],lesson:[107,108,109,110,111,113,114,116,117,120,122,123,125],let:[5,7,8,11,13,15,16,18,20,22,27,29,31,32,36,38,47,51,53,55,59,61,64,73,74,75,76,78,79,80,81,82,83,87,90,91,92,95,96,97,98,99,100,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,131,132,133,134,135,137,138,140,141,144,148,149,152,153,155,157,166,174,175,180,186,191,201,204,211,223,225,251,252,271,279,290,294,322,341,353,368,372,382,387,407,427,434,435],letsencrypt:[150,154],letter:[16,34,59,63,69,76,81,82,95,115,129,140,154,177,186,202,216,239,240,251,356,365,388],leve:298,level:[0,2,4,12,13,14,18,19,26,27,29,30,32,38,43,44,46,48,49,50,53,57,61,62,63,68,73,76,78,81,84,86,94,98,99,101,105,108,110,115,120,122,123,125,126,140,143,151,154,166,177,182,183,190,194,202,203,208,210,214,234,240,252,263,279,284,289,294,299,314,351,360,362,368,370,375,376,388,408,438],lever:[22,48,214],leverag:[52,84,125,131],levi:66,lexicon:216,lhs:[91,99,188],lhslist:188,liabl:216,lib:[6,145,148,150,153],libapache2:144,libcrypt:153,libjpeg:153,librari:[0,4,8,9,14,40,48,49,51,63,68,85,87,97,98,102,106,113,116,118,133,140,142,143,148,153,156,157,160,197,239,270,298,299,325,360,362,374,388,440],licenc:365,licens:[7,77,83,122,239,365,391,440],lid:263,lidclosedcmdset:263,lidopencmdset:263,lie:[81,216],lied:216,lies:[11,22,114],life:[13,35,83,100,118,122,123,125,138,210,267,439],lift:[32,108,126,129,216,258,290],lifter:32,light:[15,19,41,68,84,119,120,123,145,174,255,268,269,282,299,306,365],lightabl:268,lighter:[59,255],lightest:19,lightli:[56,255],lightsail:154,lightsourc:268,lightsource_cmdset:268,like:[0,2,3,5,6,7,8,9,11,12,13,15,16,17,18,19,20,22,23,25,27,28,29,30,31,32,33,34,36,38,40,41,43,44,45,46,47,48,50,51,52,53,54,55,56,57,59,61,63,64,66,67,68,71,72,73,74,75,76,78,79,80,81,82,83,84,85,86,87,88,90,91,92,93,94,95,96,98,99,100,101,103,105,106,107,108,109,110,112,113,114,115,116,117,118,119,120,121,123,125,126,128,131,133,134,136,137,138,139,140,141,143,144,145,147,148,149,150,151,152,153,154,156,157,160,166,167,169,170,172,173,174,177,179,180,185,188,191,192,193,194,195,201,202,204,207,208,212,216,222,223,224,225,233,239,240,241,247,248,251,252,254,255,256,257,258,262,263,269,270,271,280,286,287,289,290,293,294,298,299,312,317,325,341,344,346,350,352,353,360,361,362,365,366,368,371,372,373,374,375,376,379,382,384,385,388,391,412,427,436,440],limbo:[14,15,19,43,62,74,75,76,77,81,82,108,112,113,119,137,141,148,180,202,269,273,316],limbo_exit:81,limit:[0,5,8,12,13,18,19,20,22,27,29,30,32,34,40,41,43,46,48,49,50,56,57,66,73,74,79,82,83,85,86,87,91,92,99,106,108,110,112,114,115,117,120,121,123,128,129,138,145,151,154,159,166,177,178,179,180,194,195,204,216,230,241,250,251,252,254,256,257,263,279,285,286,287,290,294,299,302,307,317,330,355,360,361,362,363,366,368,370,381,385,388,391,405,433],limit_valu:166,limitedsizeordereddict:388,limp:119,line2:114,line:[0,2,5,6,8,9,14,15,16,18,19,20,22,27,29,31,34,35,36,39,40,43,48,51,53,54,57,59,63,64,66,68,74,75,76,77,78,79,81,82,84,85,89,91,93,94,95,97,98,99,100,101,103,106,107,108,111,113,114,116,117,122,129,137,140,141,145,147,148,150,154,155,156,161,163,166,171,174,180,185,187,189,190,199,202,211,212,223,237,240,241,252,263,270,271,275,279,298,312,317,332,335,340,351,362,366,370,371,372,373,374,381,388,427,432],linear:80,linebreak:[101,387],lineeditor:370,lineend:387,lineno:84,linenum:370,liner:324,linereceiv:[332,335],linesend:341,lingo:[44,66,72,98],linguist:388,link:[0,9,11,12,15,17,18,20,22,27,30,36,44,49,52,53,61,70,75,76,77,79,80,81,83,86,87,89,91,93,95,98,101,105,107,108,110,111,112,113,115,122,129,131,137,140,141,147,148,152,154,155,159,166,169,180,185,227,270,273,277,278,279,280,281,290,294,302,310,312,323,327,332,335,362,387,388,400,439,440],link_button:400,link_object_to_account:400,linkdemo:84,linknam:147,linknod:280,linkref:84,linktext:84,linkweight:280,linod:154,linux:[0,5,6,7,11,35,75,84,87,89,91,115,116,144,145,150,152,153,154,156,244,388],liquid:362,list:[5,6,7,9,11,12,13,14,15,16,18,19,20,22,27,29,30,31,32,34,36,40,41,44,46,48,49,50,51,53,55,59,61,62,63,66,67,69,71,72,74,76,78,79,80,81,82,83,86,88,89,91,95,98,99,101,104,105,106,107,108,110,111,112,115,117,119,120,121,123,125,126,128,129,131,137,140,141,143,145,147,148,152,154,155,157,161,166,167,169,172,173,174,175,177,178,179,180,185,186,187,188,190,191,194,195,196,199,201,202,203,204,205,207,214,215,216,222,223,224,225,227,228,230,231,233,234,237,238,239,240,241,244,245,251,252,254,255,256,257,258,263,266,267,268,271,273,279,280,281,282,284,285,287,290,293,294,298,299,303,304,305,307,310,312,317,318,322,324,326,328,330,331,336,341,344,353,355,357,360,361,362,363,365,366,367,368,369,372,374,375,381,382,385,388,391,395,396,403,405,408,410,411,412,418,420,431,432,433,435,437,438,439],list_attribut:180,list_callback:228,list_channel:185,list_displai:[395,397,399,400,401,402,403],list_display_link:[395,397,399,400,401,402],list_filt:[395,399,400,403],list_nod:372,list_of_all_rose_attribut:13,list_of_all_rose_ndb_attr:13,list_of_myscript:41,list_prototyp:298,list_select_rel:[397,399,400,401,402],list_serializer_class:413,list_set:312,list_styl:177,list_task:228,list_to_str:388,listabl:180,listcmdset:180,listcmset:180,listdir:199,listen:[12,18,32,44,51,55,102,145,150,157,185,194,216,240,241,263,432,440],listen_address:145,listing_contact:147,listnod:372,listobj:190,listobject:190,listscript:190,listview:[432,433,435],lit:[268,269,375],liter:[14,29,30,40,50,62,84,98,108,186,365,375,384,388],literal_ev:[29,372,375,388,396],literari:123,littl:[3,11,16,22,40,41,48,53,54,74,75,78,81,82,84,87,89,90,91,92,98,99,101,105,106,107,108,110,112,113,114,115,116,117,118,119,120,121,122,123,125,133,134,135,141,151,154,156,161,216,255,266,269,347,360,372,388,427],live:[7,53,84,88,113,122,143,144,145,148,150,154,156],ljust:[29,365,375],lne:252,load:[0,5,6,7,8,13,14,16,20,22,26,27,40,51,52,53,55,63,81,82,93,96,97,98,99,101,104,113,114,115,116,120,126,129,133,137,157,169,174,186,187,190,196,209,219,222,230,240,279,281,284,286,290,293,294,298,302,306,316,319,321,352,360,362,363,366,367,370,375,380,382,383,386,388,405,425],load_buff:370,load_data:367,load_kwarg:383,load_module_prototyp:298,load_stat:219,load_sync_data:352,loader:[27,281,362,388],loadfunc:[26,370,383],loc:[180,273],local0:150,local:[2,6,7,11,29,49,50,53,59,63,82,83,87,91,100,107,111,114,133,140,145,150,152,156,157,199,227,230,241,299,335,360],local_non_red_ros:110,local_ros:110,localecho:154,localevenniatest:386,localhost:[49,50,51,52,53,72,75,89,101,118,131,140,141,145,146,148,150,153,154,160,341],locat:[4,5,8,9,11,12,13,14,19,20,22,25,27,31,32,36,40,41,46,48,49,50,51,53,55,62,72,73,74,75,77,78,79,80,81,82,84,87,89,90,91,94,95,98,99,105,106,107,108,110,111,112,113,114,115,119,121,122,125,129,133,134,135,137,140,144,148,150,154,156,157,160,166,171,180,186,190,194,195,199,202,203,204,207,219,221,222,238,241,247,262,267,269,271,273,277,279,280,281,282,289,293,294,299,341,350,360,361,362,363,366,368,372,374,381,385,413,416,418],location_nam:271,location_set:110,locations_set:[110,293],locattr:[268,289],lock:[18,20,22,24,29,34,36,38,40,41,43,46,48,50,54,55,57,76,82,85,89,90,91,92,93,95,96,99,100,104,105,107,108,111,112,113,125,129,140,145,151,154,161,163,164,166,175,177,178,179,180,185,186,187,189,190,191,192,194,196,201,202,203,204,207,208,211,212,214,216,222,224,227,228,230,231,234,237,238,241,247,249,263,267,268,269,271,273,280,284,286,293,294,298,299,357,360,362,368,370,372,382,389,400,408,440],lock_definit:290,lock_func_modul:[32,290],lock_storag:[175,177,178,179,180,185,186,187,188,189,190,191,192,196,201,202,203,204,207,211,212,214,222,223,224,228,234,237,238,241,247,248,249,252,254,255,256,257,258,263,267,268,269,270,273,284,286,294,343,360,362,370,372,373],lockabl:[34,99,216,247],lockablethreadpool:357,lockdown:[32,360],lockdown_mod:154,lockexcept:290,lockfunc1:32,lockfunc2:32,lockfunc:[18,22,32,38,43,85,91,112,114,137,163,164,180,185,288],lockhandl:[13,30,32,48,107,163,164,175,202,270,288,289],lockset:294,lockstr:[6,13,18,22,30,32,40,89,114,125,180,185,187,194,196,247,290,294,299,360,368,408],locktyp:[18,173,185,207,299,375],log:[2,5,7,9,10,11,12,13,22,25,27,31,34,36,41,44,45,50,51,52,53,54,55,62,63,66,72,77,81,82,85,86,87,89,90,91,95,96,98,99,107,108,114,118,122,125,126,129,137,140,141,144,145,146,148,149,150,151,152,153,154,156,161,166,174,178,192,194,203,212,217,223,244,245,279,280,281,294,302,306,312,317,321,322,326,329,330,332,335,343,344,345,351,353,355,357,362,368,381,388,395,432,433],log_dep:[19,381],log_depmsg:381,log_dir:[18,194,244,381],log_err:[19,381],log_errmsg:381,log_fil:[18,19,194,381],log_file_exist:381,log_info:[19,381],log_infomsg:381,log_msg:381,log_sec:381,log_secmsg:381,log_serv:381,log_trac:[19,41,135,136,381],log_tracemsg:381,log_typ:381,log_typemsg:381,log_warn:[19,381],log_warnmsg:381,logdir:2,logentry_set:169,logfil:[312,381,432],loggad:63,logged_in:44,loggedin:[53,330],logger:[19,41,85,135,136,163,164,244,324,364],logic:[3,6,53,54,74,78,80,81,82,89,95,96,101,112,122,125,141,216,240,293,297,316,360,372,389,410],login:[5,6,11,12,22,25,27,32,44,45,52,53,75,82,89,91,101,122,140,154,166,177,192,212,290,316,317,332,335,340,341,344,353,388,419,421,428,440],login_func:344,loginrequiredmixin:[433,438],logintest:428,logout:[343,344,428],logout_func:344,logouttest:428,logprefix:[322,332,335,357],lon:375,lone:[81,120,180,187],long_descript:147,long_running_funct:54,long_text:28,longer:[22,26,28,29,47,48,66,71,74,90,91,93,99,101,106,107,113,115,116,138,143,147,173,178,194,204,240,241,248,254,255,256,257,258,303,306,370,374],longest:[19,241],longrun:22,longsword:49,loo:[175,191],look:[0,2,3,5,6,8,11,13,14,15,16,17,19,20,22,25,27,29,31,32,35,36,38,40,41,44,46,48,50,52,53,54,55,56,57,59,61,63,64,66,67,68,72,74,75,76,77,78,79,80,81,82,83,84,86,87,88,89,90,91,93,94,95,96,98,99,100,101,103,104,105,106,107,110,111,112,113,114,115,116,117,118,119,120,121,123,125,126,128,131,132,133,134,135,137,138,140,141,145,148,150,151,153,154,156,157,161,166,167,172,174,175,177,180,186,188,191,192,199,203,204,207,212,214,215,216,222,223,229,237,238,240,241,252,256,262,263,266,268,269,271,280,281,282,285,289,290,293,294,296,299,317,332,333,340,344,360,362,366,372,373,374,382,385,387,388,395,400,427],look_str:166,lookaccount:99,lookat:22,looker:[5,29,80,82,99,129,166,204,216,217,222,241,262,271,282,294,362],lookm:22,lookstr:294,lookup:[6,13,22,32,46,66,171,186,244,284,293,331,363,365,378,379,384,385,388,389],lookup_env:199,lookup_expr:407,lookup_typ:384,lookup_usernam:27,lookuperror:365,loom:81,loop:[5,13,29,48,74,79,80,82,86,87,90,101,105,110,128,135,163,167,254,280,299,330],loopingcal:315,loos:[15,83,166,185,204,258,285,332,343,366],loot:120,lop:110,lore:[30,99,187,284],lose:[13,44,97,120,122,128,129,156,161,244,256,323,324,332,335],lost:[48,72,74,81,84,95,97,106,143,161,185,248,309,322,323,324,332,335,340,360,365],lot:[0,3,5,8,11,14,16,18,19,29,30,32,40,41,46,48,50,52,53,54,63,66,68,72,74,76,78,79,81,82,83,85,86,88,89,92,95,98,99,100,101,106,107,110,112,113,114,115,116,117,118,119,120,121,122,123,125,126,127,129,137,140,143,148,150,154,202,210,212,223,241,249,255,268,271,357],loud:[90,125],love:[30,51,123,284],low:[20,61,62,79,122,154,173],lower:[5,12,18,20,22,27,38,51,54,57,59,66,80,82,91,93,99,100,105,119,122,154,172,173,177,188,190,241,251,279,280,317,365],lower_bound_inclus:251,lowercas:[115,175,365],lowest:[62,154,251,289,365],lpmud:71,lsarmedpuzzl:238,lspuzzlerecip:238,lst:[80,368],lstart:26,lstrip:[106,365],ltthe:190,ltto:58,luc:371,luciano:143,luck:[27,78,106,113,144],luckili:[8,11,32,81],lue:[59,365],lug:86,luggag:117,luhttp:190,lunch:79,lunr:[30,187,287],lunrj:287,lurk:122,luxuri:[46,359],lycanthrophi:110,lycantrhopi:110,lycantrophi:110,lycantrroph:110,lying:[81,216],m2m:363,m2m_chang:45,m_len:388,mac:[5,7,11,75,84,87,115,118,145,146,156,160,388],machin:[7,11,14,91,115,122,145,156,267],macport:[11,148],macro:[89,128],macrosconfig:89,mad:[11,251],made:[0,2,11,13,25,27,29,32,38,40,43,49,53,57,77,81,82,84,90,91,97,99,107,108,113,114,116,117,120,122,125,129,131,137,141,154,155,157,171,173,190,191,194,201,204,223,251,252,256,257,258,275,290,306,314,344,358,365,366,370,372,375,388],mag:[8,371],magazin:143,mage:[27,110],mage_guild_block:27,mage_guild_welcom:27,magenta:138,magic:[32,46,73,77,78,94,119,120,121,122,137,201,225,250,257,314],magic_meadow:46,magicalforest:73,magnific:27,mai:[1,3,5,6,7,8,9,10,11,13,14,18,19,20,22,27,29,30,32,33,35,36,40,41,43,44,47,48,49,53,54,57,59,61,62,63,64,66,67,68,72,74,75,77,78,81,82,83,84,87,88,89,90,91,92,93,97,98,100,101,103,108,110,112,113,115,117,118,119,120,121,123,125,126,128,129,133,135,136,140,141,143,144,145,147,148,150,151,153,154,156,157,161,166,167,171,172,173,175,177,178,180,185,187,190,191,194,195,197,199,201,203,204,207,208,210,216,219,223,225,240,241,251,254,255,256,257,258,268,269,279,280,290,294,298,299,300,314,351,353,354,358,360,362,363,365,367,368,369,370,372,374,375,376,382,385,388,391,396,403,416,433],mail:[5,9,27,34,75,83,86,88,98,107,128,143,163,164,195,196,197],mailbox:[34,234],main:[4,11,14,15,16,20,22,27,30,33,36,38,39,40,41,43,44,46,47,48,49,51,52,53,61,64,66,72,76,80,82,83,87,90,94,97,101,103,105,106,108,111,113,114,121,122,125,128,140,141,143,145,147,154,156,159,161,166,169,171,177,180,185,187,191,194,196,202,207,209,223,230,234,240,241,271,275,281,286,287,293,299,302,312,316,317,319,324,329,331,336,350,352,357,362,363,372,373,377,385,387,388,395,401,418,436],mainli:[5,22,27,34,36,44,54,55,64,98,114,115,143,177,283,360,366,388],maintain:[5,30,47,57,68,77,83,84,85,89,97,117,123,145,154,156,159,160,190,192,212,275,307,439],mainten:[154,157,439],major:[15,16,29,87,98,121,137,140,145,148],make:[0,1,2,3,5,6,7,9,10,12,13,14,15,16,18,20,22,26,27,29,30,31,32,34,35,36,38,40,41,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,61,63,64,66,68,69,73,74,75,76,77,78,79,80,81,82,83,84,86,87,88,89,91,92,93,94,95,96,97,100,102,103,105,106,109,110,111,112,114,116,117,118,119,120,121,123,124,126,127,128,130,132,133,134,135,138,139,140,141,142,143,144,145,146,147,148,151,152,153,154,156,157,160,161,166,167,169,172,173,174,175,177,178,180,185,188,191,195,199,201,202,204,207,208,214,216,222,223,225,231,234,240,241,246,247,248,251,252,254,255,256,257,260,263,267,268,269,273,279,280,282,285,289,290,294,298,299,304,307,312,316,324,329,343,344,350,351,353,354,356,357,360,361,362,363,365,366,367,368,369,370,372,374,375,376,379,385,387,388,396,403,405,428,436,438,440],make_it:388,make_shared_login:421,make_uniqu:173,makeconnect:321,makefactori:332,makefil:84,makeit:343,makemessag:63,makemigr:[2,66,140],male:224,malevol:15,malform:[191,281,389],malici:[29,157],malign:290,man2x1:68,man:[35,68,71,121,154,186,234,241],mana:[92,94],manaag:399,manag:[5,8,9,11,12,13,18,20,32,36,41,44,47,48,61,64,66,75,82,85,95,97,98,105,110,112,121,125,140,156,161,163,164,165,166,169,185,190,191,193,194,196,199,219,237,241,258,269,282,283,286,291,293,294,298,300,302,307,308,312,319,359,360,362,363,364,367,368,377,380,381,385,388,428,431,432,433,438,440],manager_nam:360,manchest:388,mandat:427,mandatori:[40,45,71,74,76,82],mandatorytraitkei:251,maneuv:252,mangl:338,mango:238,manhol:332,manhole_ssh:332,mani:[0,5,8,9,11,12,13,15,16,17,18,19,20,22,27,29,30,36,40,41,43,44,45,47,48,49,52,53,54,55,59,60,61,62,63,66,67,68,69,71,72,73,74,75,77,80,81,82,84,86,87,88,89,94,96,97,98,99,100,105,106,107,108,109,110,112,114,115,116,120,122,123,126,128,129,135,136,137,138,140,141,148,152,154,155,157,161,169,173,175,180,185,191,196,199,201,204,207,209,212,216,223,241,248,249,252,256,257,267,270,279,280,282,286,287,290,293,299,302,307,312,326,334,336,355,360,362,363,365,372,373,375,379,380,381,436],manifest:[6,112],manipul:[13,20,27,40,41,50,66,74,76,87,96,107,129,180,195,222,227,251,285,294,318,368,373,433,435],manner:[15,241,271,294,330,362],manpow:83,manual:[5,6,9,11,15,22,30,32,36,40,41,48,50,52,59,61,63,66,73,81,82,84,86,89,90,94,99,105,108,112,113,115,120,123,125,134,137,141,143,145,148,150,154,161,163,167,180,252,263,266,270,280,294,299,305,312,329,336,372,373,375,439,440],manual_paus:[41,305],manual_transl:240,manytomanydescriptor:[169,196,286,293,302,360,362,363],manytomanyfield:[169,196,286,293,302,360,362,363],map10:277,map11:277,map12a:277,map12atransit:277,map12b:277,map12btransit:277,map1:[82,277,280],map2:[82,277,280],map3:277,map4:277,map5:277,map6:277,map7:277,map8:277,map9:277,map:[6,16,18,27,29,35,67,72,74,79,87,91,95,98,99,150,156,163,164,177,185,191,194,197,199,205,210,216,240,241,251,271,272,273,274,276,277,278,279,281,282,287,294,298,299,336,360,362,365,371,372,375,388,440],map_align:[82,282],map_area_cli:282,map_character_symbol:[82,282],map_data:[277,279],map_displai:[82,277,282],map_exampl:274,map_fill_al:[82,282],map_mod:[82,282],map_modul:81,map_module_or_dict:279,map_separator_char:[82,282],map_str:[80,81,271],map_target_path_styl:[82,282],map_visual_rang:[82,282],mapa:82,mapb:82,mapbuild:[163,164,197],mapc:82,mapcorner_symbol:279,mapdata:281,maperror:[278,279],maplink:[82,279,280],mapnam:[273,281],mapnod:[82,279,280],mapparsererror:[278,280],mapper:[279,379],mapprovid:271,maps_from_modul:281,mapstr:[82,281],mapstructur:279,maptransit:278,maptransitionnod:[82,280],march:[143,381],margin:17,mark:[11,14,15,22,29,30,32,50,51,53,58,59,70,72,73,80,82,84,90,99,107,110,115,121,148,152,154,172,179,208,221,222,230,239,252,277,279,280,353,360,362,366,371,372,375,384],mark_categori:252,markdown:[30,84,89,147],marker:[14,18,22,29,35,53,59,77,82,87,115,121,125,185,186,207,216,221,222,224,241,252,279,280,294,324,332,335,340,341,360,363,365,371,372,373,416],market:[122,154],markup:[30,59,84,103,133,163,164,205,364,387,388],mask:[77,121,238,241,245,246],maskout_protodef:238,mass:[5,102,120,440],massiv:[86,92],master:[75,79,83,84,98,120,126,128,135,141,148,155,156,251,358],match:[9,11,13,19,20,22,27,29,30,31,32,35,36,38,40,41,43,44,46,48,50,51,53,59,64,66,67,72,75,76,78,80,81,82,95,96,98,99,100,106,108,110,112,117,125,133,135,140,141,145,166,171,172,173,174,175,178,180,185,186,187,189,191,195,202,205,207,210,222,223,233,234,237,238,241,251,257,271,279,280,282,284,285,287,289,290,294,298,299,304,307,317,318,330,343,353,360,361,362,363,365,370,372,374,375,383,385,387,388,389,391,416,438],match_index:172,matched_charact:223,matches2:66,matchobject:[365,387],mate:87,materi:[78,115,122,207,208],math:95,mathemat:[121,173],matlab:0,matplotlib:345,matric:[82,279],matrix:[82,374],matter:[2,8,13,20,27,30,33,44,45,63,68,74,75,78,82,89,91,98,100,101,106,115,116,120,125,126,128,133,134,148,157,173,207,258,267,280,293,317,360],matur:[9,30,53,68,71,115],maverick:87,max:[18,56,80,121,122,128,151,187,223,241,251,279,287,355,381,388],max_damag:256,max_dbref:361,max_depth:388,max_dist:80,max_heal:256,max_l:80,max_length:[66,80,140,199,241],max_lin:374,max_memory_s:199,max_nest:375,max_nr_charact:122,max_num_lin:432,max_pathfinding_length:279,max_popular:432,max_rmem:379,max_siz:[277,279,381],max_tim:277,max_valu:[225,427],max_w:80,max_width:80,maxconn:150,maxdelai:[309,323,324,343],maxdepth:299,maxdiff:[191,209,411,422],maximum:[56,59,66,81,95,106,121,122,151,166,199,223,225,251,254,255,256,257,258,279,294,299,357,365,372,374,375,388],maxiumum:277,maxlengthvalid:166,maxnum:388,maxrotatedfil:381,maxsplit:365,maxthread:357,maxval:[375,388],maxvalu:375,maxwidth:374,may_use_red_door:40,mayb:[13,14,15,19,20,22,40,66,73,75,76,78,80,82,84,90,91,96,101,104,105,110,112,113,114,117,120,122,123,126,128,147,148,154,174,201,208,233,240,330],mccp:[31,146,163,164,308,317,320],mccp_compress:325,md5:145,meadow:[46,73,76,121,375],mean:[3,4,5,6,8,9,11,13,14,15,16,18,19,20,22,27,31,32,33,34,35,38,41,43,44,46,48,52,54,55,59,61,64,66,67,69,72,74,76,78,79,80,81,82,83,86,87,92,98,99,100,103,105,108,110,111,112,113,114,115,116,119,120,123,125,126,128,129,133,134,137,138,141,142,145,154,156,157,161,166,167,174,180,187,211,216,230,240,251,268,270,279,282,289,294,298,299,303,307,312,336,352,360,362,365,372,374,375,379,381,384,385],meaning:[175,191],meaningless:129,meant:[20,30,34,41,48,49,51,52,56,64,73,76,77,96,100,108,112,114,121,138,147,173,202,216,224,241,249,251,254,255,256,257,258,269,271,284,294,317,366],meanwhil:30,measaur:5,measur:[5,129,154,172,189,279,343,344,388],meat:[118,124,127,130,132,140],mech:[102,440],mechan:[4,18,19,22,26,27,40,41,48,92,95,99,101,106,119,120,126,128,129,138,166,167,171,217,222,241,257,288,299,307,312,316,322,330,341,352,362,370,373,377,383,433,438],mechcmdset:90,mechcommand:90,mechcommandset:90,meck:90,med:63,medan:63,media:[56,112,199,340,357,384,395,396,397,399,400,401,402,403,427],median:80,mediat:126,mediev:208,medium:56,mediumbox:321,meet:[2,91,112,119,121,229,271,356],mele:[121,258],melt:[207,208],mem:190,member:[13,18,50,66,75,122,185,186,188,294,388],membership:[75,89,110],memori:[5,20,22,30,48,53,55,66,69,72,92,97,113,115,145,153,154,166,190,194,294,306,307,345,355,360,364,373,379,383,388],memoryerror:148,memoryusag:345,memplot:[163,164,308,342],meni:202,mental:138,mention:[8,13,14,15,16,22,30,31,38,47,54,61,68,69,75,80,90,93,97,98,108,110,115,120,138,148,154,174,212],menu:[0,7,9,13,20,40,44,53,79,85,91,101,111,120,121,122,127,129,147,148,149,161,163,164,180,197,202,213,214,217,223,249,252,266,295,299,310,312,364,382,440],menu_cmdset:372,menu_data:27,menu_edit:202,menu_login:[163,164,197],menu_modul:372,menu_module_path:372,menu_quit:202,menu_setattr:202,menu_start_nod:249,menu_templ:372,menuchoic:[27,372],menudata:[215,223,266,296,372],menudebug:[27,372],menufil:372,menunode_fieldfil:223,menunode_inspect_and_bui:105,menunode_shopfront:105,menunode_treeselect:252,menunodename1:27,menunodename2:27,menunodename3:27,menuopt:252,menutest:107,menutre:372,merchandis:122,merchant:79,mercuri:68,mere:[134,225],merg:[6,11,22,27,29,76,83,87,96,98,100,110,113,114,125,131,171,172,173,174,263,269,271,299,302,336,372],merge_prior:372,merger:[20,81,83,173,174],mergetyp:[20,27,128,173,263,269,370,372],merit:125,mess:[5,11,13,18,19,57,84,122,154,252],messag:[5,8,9,11,14,16,18,19,22,23,24,26,27,28,29,31,32,34,36,39,41,43,44,51,54,61,63,69,70,73,76,78,79,81,84,85,87,88,90,92,93,96,99,100,103,104,105,106,107,108,115,117,120,121,122,125,126,128,129,135,139,144,148,149,151,154,157,159,161,166,167,171,174,175,178,180,185,186,187,191,193,194,195,196,201,202,204,207,209,216,217,219,223,224,228,230,234,238,239,241,245,251,254,255,256,257,258,260,262,263,264,266,267,268,269,270,273,280,294,312,314,321,323,324,330,331,332,335,336,338,340,349,351,353,355,357,368,370,372,373,381,385,388],message_rout:51,message_search:195,message_transform:194,messagepath:440,messagewindow:51,messeng:262,messsag:219,meta:[34,43,48,112,362,379,395,396,397,399,400,403,407,410,413,427],metaclass:[48,66,175,362],metadata:[34,245,314],metavar:270,meteor:104,meter:[77,225,251],method:[3,8,11,12,13,18,19,20,27,29,30,32,36,40,43,44,45,46,47,48,51,53,54,61,64,66,67,75,76,78,79,80,81,82,84,86,87,91,92,93,94,95,99,100,101,106,107,109,110,111,114,116,117,125,126,128,129,134,135,136,137,139,140,141,159,166,169,171,173,174,175,177,180,181,185,187,188,190,191,194,195,196,199,200,201,202,207,209,210,214,216,219,220,221,222,227,230,237,238,239,240,241,244,245,247,250,251,254,255,256,257,258,263,264,266,267,268,269,270,271,273,277,280,282,285,286,289,290,294,306,307,309,314,317,318,319,321,322,323,324,325,330,332,335,338,340,341,343,344,348,350,351,352,353,355,360,362,365,366,368,370,372,373,374,375,376,379,380,381,382,383,385,386,387,388,397,403,407,408,410,411,413,433,436,438],methodnam:[191,200,209,220,231,246,250,264,277,307,338,348,380,386,392,411,422,428],metric:[104,240],microsecond:13,microsoft:[81,148],mid:[68,93,137],middl:[22,80,93,154,255,277,365],middleman:150,middlewar:[163,164,393,417],midnight:[91,100],midst:119,midwai:59,mighht:106,might:[0,3,6,8,11,13,15,16,17,19,20,22,27,28,30,32,36,38,41,43,44,47,54,55,59,61,63,74,76,79,81,86,88,89,91,92,93,94,95,99,100,101,103,104,105,106,107,108,118,120,122,126,128,129,133,136,138,139,140,144,145,148,153,154,155,156,157,161,174,178,180,201,239,245,248,254,255,256,257,270,294,341,362,365,370,381,382,388,410,427],mighti:[18,81,93,113],migrat:[2,5,8,10,11,45,66,75,81,84,112,118,140,145,148,153,160,161,199,299],mike:180,million:[140,145],mime:368,mimic:[5,26,41,86,122,126,145,196,284,351,370],mimick:[26,87,126,343,370,373],mimim:363,min:[41,80,100,121,210,223,251,375,376],min_damag:256,min_dbref:361,min_heal:256,min_height:374,min_shortcut:[76,202],min_valu:427,min_width:374,mind:[14,15,27,54,55,83,86,97,98,102,115,116,119,120,121,123,125,138,141,145,147,201,225,230,239,314,388],mindex:172,mine:[79,122,157],mini:[81,86,112,113,114],miniatur:119,minim:[5,44,53,82,120,123,128,157,199,240,299],minimalist:[22,68,99],minimum:[44,76,78,87,99,122,126,223,251,254,255,256,257,258,317,357,362,374,375,383,388],minimum_create_permiss:408,minimum_list_permiss:408,mininum:374,minlengthvalid:166,minor:174,mint:[11,148,150],minthread:357,minu:[66,110,294,376],minut:[19,41,92,100,106,123,128,143,156,185,190,201,210,355,376,388],minval:[375,388],mirc:324,mirror:[44,82,115,143,152,163,164,197,259],mis:98,misanthrop:110,misc:24,miscelan:364,miscellan:[111,112],misconfigur:145,mismatch:[31,388],miss:[6,18,53,63,80,88,98,107,122,148,154,207,209,254,255,256,257,258,298,317,439],missil:[90,257],mission:101,mistak:[50,84],misus:154,mit:[143,365],mitig:[98,157,437],mix:[13,22,27,59,63,82,85,94,110,125,138,140,166,187,201,208,216,241,279,294,298,299,356,363,366,374,375],mixabl:216,mixer:216,mixer_flag:216,mixin:[163,164,298,346,393,410,413,426,430,431,432,433,435,438],mixtur:[103,216,375],mkdir:[2,75,148],mktime:100,mmorpg:123,mob0:97,mob:[15,32,44,86,97,119,120,163,164,174,180,197,265,269,299,366],mob_data:97,mob_db:97,mob_vnum_1:97,mobcmdset:267,mobdb:97,mobil:[15,40,102,119,122,151,159,267,289],moboff:267,mobon:267,mock:[8,191,208,306,386],mock_delai:191,mock_get_vers:422,mock_random:264,mock_repeat:191,mock_set:422,mock_tim:[250,348],mockdeferlat:386,mockdelai:386,mocked_idmapp:348,mocked_o:348,mocked_open:348,mockrandom:209,mockval:386,mod:[144,157,250,251,298],mod_import:388,mod_import_from_path:388,mod_or_prototyp:298,mod_prototype_list:298,mod_proxy_http:144,mod_proxy_wstunnel:144,mod_sslj:144,mode:[3,5,7,12,20,26,27,31,53,60,72,77,82,101,108,113,115,116,122,128,129,134,140,143,144,150,156,157,163,179,187,190,199,200,203,234,263,267,277,279,282,294,312,317,322,329,340,341,350,366,370,372,375,381,388,440],mode_clos:341,mode_init:341,mode_input:341,mode_keepal:341,mode_rec:341,model:[13,30,32,34,35,41,43,46,47,48,49,50,60,72,75,84,87,101,110,122,126,133,139,163,164,165,166,193,194,195,283,291,294,300,303,307,308,318,359,360,361,363,364,369,377,378,380,384,385,388,395,396,397,399,400,401,402,403,407,410,427,431,432,433,435,437,438,440],model_inst:384,modeladmin:[397,399,400,401,402,403],modelattributebackend:360,modelbackend:419,modelbas:379,modelchoicefield:[395,400],modelclass:[13,46],modelform:[395,396,397,399,400,401,403,427],modelmultiplechoicefield:[395,397,399,400],modelnam:[194,286,362],modelseri:410,modelviewset:413,moder:[89,95,201],modern:[13,16,54,68,81,94,138,143,150,157,325],modif:[11,22,29,53,64,74,79,83,91,106,129,144,156,251,358,427],modifi:[0,9,11,12,13,18,20,22,27,29,30,36,40,41,43,44,48,49,51,52,59,61,72,73,74,76,77,78,79,81,82,84,85,86,89,91,95,96,97,98,99,105,107,108,112,114,115,116,117,119,121,122,123,125,126,129,132,135,142,145,156,161,166,174,187,194,199,202,207,211,216,217,219,222,224,230,238,241,248,250,251,254,255,256,257,258,268,270,286,294,299,307,362,366,372,379,384,387,395,416,427,431,432,433,435,437,438],modified_tim:199,modul:[0,4,5,6,8,13,14,16,19,20,22,25,26,27,29,30,31,32,36,41,43,44,45,48,53,61,64,68,72,78,81,82,83,84,86,90,93,97,98,99,100,103,104,105,107,108,111,112,113,114,116,121,122,125,127,129,131,134,137,149,153,155,157,161,171,172,174,175,180,182,183,184,187,189,191,201,202,203,204,205,207,208,209,210,211,212,214,216,219,221,222,223,225,227,228,229,231,239,240,241,246,247,248,250,251,252,254,255,256,257,258,263,267,268,269,270,273,279,281,284,289,290,293,294,297,298,299,303,305,306,307,309,311,312,316,317,321,329,331,332,335,336,339,341,343,344,345,350,352,353,354,360,362,363,364,365,366,367,368,369,370,371,372,373,375,376,386,388],module_path:281,module_with_cal:375,modulepath:321,moifi:222,mold:116,mollit:28,moment:[20,30,47,63,72,79,90,98,105,106,113,121,166,279,302],mona_lisa_overdr:117,monei:[66,75,120,121,122,123,154],monetari:[83,88,201],monitor:[5,33,67,85,303,317,336,379],monitor_handl:[33,163,303],monitorhandl:[24,31,163,164,300,440],monlit:110,mono:91,monster:[30,36,40,87,93,98,113,116,120,121,122,127,180,299],monster_move_around:116,month:[83,100,150,154,210,376,381,388],monthli:100,montorhandl:33,moo:[68,71,86,98,118,143,287,375],mood:[79,119,122,123,251],moon:[91,100,104,110],moonlight:110,moonlit:110,moor:119,moral:6,more:[2,3,4,5,6,8,11,12,13,14,15,16,17,18,19,20,22,25,26,27,28,29,30,31,34,35,36,38,40,41,43,44,46,47,48,51,53,54,55,57,60,61,62,63,64,66,67,68,69,70,74,75,76,77,79,80,81,82,83,86,87,88,89,90,91,92,95,96,97,99,100,101,102,105,106,107,108,110,111,112,113,115,116,117,118,119,120,121,123,124,125,126,128,129,130,131,133,135,137,138,139,140,141,143,145,148,150,151,152,153,154,156,157,161,163,165,166,169,172,173,174,179,180,185,186,187,190,191,192,194,197,199,201,202,203,204,207,210,212,214,216,222,225,230,233,239,240,241,248,249,251,252,254,255,256,257,258,263,267,268,269,270,271,279,280,281,282,287,294,298,299,322,324,327,343,344,353,358,360,361,365,366,368,369,370,371,372,373,374,375,379,385,388,389,400,409,410,427,436,440],more_command:373,more_funcparser_cal:29,morennanoth:191,morennthird:191,moreov:[41,154],morn:[121,222,223],morph_engli:391,morpholog:391,mortal:[30,119],most:[3,5,6,9,13,14,17,18,19,20,22,25,27,30,31,32,34,36,43,44,45,47,48,49,50,51,53,54,59,61,64,66,67,68,69,71,73,74,75,76,78,79,80,81,82,83,84,87,89,91,94,95,97,98,99,100,101,104,106,107,108,109,110,111,112,115,116,117,118,119,121,122,123,125,126,128,129,134,137,138,140,144,145,148,154,156,157,160,166,169,173,174,177,180,188,191,196,202,207,208,221,225,240,241,248,251,254,255,256,257,258,277,279,280,286,287,290,293,294,298,299,302,306,335,340,350,360,361,362,363,372,373,379,380,388,432],mostli:[27,48,51,53,61,82,98,101,106,126,129,154,173,211,240,256,271,280,332,395],motiv:[14,15,36,83,86,88,120,323,324,330,331,332,335,340,341,352,353],mount:156,mountain:[68,81],mous:[51,58,372],mouth:273,movabl:216,move:[15,16,18,22,26,27,28,36,74,75,76,79,80,81,82,89,90,93,96,99,101,104,105,106,112,113,115,116,119,120,121,122,127,128,134,138,140,141,143,145,147,148,174,180,186,201,202,216,217,219,223,229,248,251,254,255,256,257,258,267,268,269,271,273,280,285,289,294,344,362,366,373],move_around:[113,116],move_callback:190,move_delai:190,move_hook:294,move_obj:271,move_posit:216,move_to:[36,74,105,125,137,248,294],movecommand:96,moved_obj:[217,269,271,294],moved_object:294,movement:[40,82,99,121,137,190,248,254,255,256,257,258,279,280,294],mover:258,mptt:89,mratio:[172,189],msdp:[64,317,336],msdp_list:317,msdp_report:317,msdp_send:317,msdp_unreport:317,msdp_var:336,msg:[3,8,12,13,14,18,19,22,23,26,27,28,29,32,33,36,38,44,51,54,61,66,67,71,74,76,78,79,81,84,85,91,92,93,94,96,97,99,100,104,105,106,107,113,114,115,116,125,126,128,129,135,137,151,163,166,167,175,177,181,185,191,194,195,196,207,216,219,224,234,245,251,262,263,270,279,280,281,282,290,294,323,324,351,366,368,370,372,373,381,388,396,397,403,440],msg_all:128,msg_all_sess:[22,175],msg_already_sit:125,msg_arriv:74,msg_channel:185,msg_char:216,msg_cinemat:221,msg_content:[19,22,36,41,74,79,90,100,129,135,137,139,294],msg_db_tag:397,msg_help:187,msg_leav:74,msg_locat:294,msg_other:201,msg_other_sit:125,msg_receiv:294,msg_room:216,msg_self:294,msg_set:363,msg_sitting_down:125,msg_standing_fail:125,msg_standing_up:125,msg_system:216,msgadmin:397,msgform:397,msglauncher2port:[312,321],msgmanag:[195,196],msgobj:194,msgportal2serv:321,msgserver2port:321,msgstatu:[312,321],msgtaginlin:397,mssp:[43,112,163,164,308,320],mtt:339,much:[0,1,3,5,8,13,14,15,16,27,30,32,36,40,41,47,48,53,54,63,69,74,76,78,80,81,82,83,84,87,89,91,93,95,97,100,101,104,106,107,108,110,113,114,115,116,118,119,122,123,125,126,127,128,136,137,139,140,141,143,145,148,154,169,174,179,188,202,210,211,240,241,251,252,258,263,268,279,352,360,365,366,367,374,388,405,416],muck:[98,118],mud:[6,9,16,31,32,35,39,43,44,47,51,59,61,67,68,72,73,76,77,80,81,86,87,90,94,97,106,108,112,115,119,120,123,126,128,134,138,139,144,145,146,148,152,154,155,156,159,160,161,169,174,177,258,266,309,325,326,327,332,335,336,339,366,376],mudbyt:143,mudconnector:143,mudderi:143,muddev:148,mudform:371,mudinfo:107,mudlab:143,mudlet:[146,317,327],mudmast:146,mudramm:146,muhammad:387,mukluk:146,mult:[29,40,375],multi:[20,27,43,44,54,76,77,84,86,113,117,118,119,120,125,129,156,172,190,208,216,241,252,277,279,280,287,294,353,372,388],multiaccount_mod:6,multidesc:[163,164,197],multilin:387,multilink:[82,280],multimatch:[20,117,172,241,294,375,388],multimatch_str:[166,241,294,388],multimedia:[51,199],multipart:199,multipl:[11,15,18,19,20,22,29,30,33,36,40,43,44,45,47,48,50,55,59,61,67,68,76,77,78,82,87,94,99,100,110,112,113,115,119,120,126,129,143,145,154,166,171,173,178,179,180,185,187,189,190,191,205,207,211,212,222,224,225,231,237,241,250,252,254,255,256,257,262,269,279,280,290,294,298,299,307,310,314,317,321,336,344,360,361,366,372,374,385,388,396,403],multiplay:[18,77,86,98,118,122,123,124,143],multipleobjectsreturn:[166,167,169,194,196,201,204,210,216,217,222,224,230,238,239,240,241,247,248,249,254,255,256,257,258,260,262,263,267,268,269,271,281,282,286,293,294,298,302,305,319,345,360,363,376,380],multipli:[29,115],multisess:[12,60,101,372,440],multisession_mod:[22,44,50,87,121,122,129,140,146,166,177,181,203,224,294,353],multisession_modd:27,multitud:[59,81,98],multumatch:294,mundan:90,murri:388,muscular:121,muse:143,mush:[2,68,75,77,86,102,118,126,128,143,205,237,440],mushclient:[31,146,317,327],musher:143,mushman:68,music:52,musoapbox:[98,143],must:[0,5,6,8,9,11,12,13,16,20,22,26,27,29,30,31,32,33,34,35,36,40,41,43,46,47,48,49,50,51,52,53,54,58,61,63,64,69,72,73,74,80,82,83,84,87,89,91,93,97,99,100,103,105,107,109,112,113,114,115,116,117,120,121,123,125,128,129,133,134,140,144,146,148,149,150,151,152,154,156,157,161,167,172,173,175,180,185,191,194,195,199,201,204,205,207,210,212,216,219,238,240,241,245,251,252,254,255,256,257,258,263,266,268,269,279,280,282,286,287,289,294,297,298,303,307,312,317,330,332,335,352,354,355,360,361,362,365,366,367,368,369,370,371,372,373,375,376,382,383,384,385,387,388,389,391,396,403,410,418,436],must_be_default:174,mustn:82,mutabl:369,mute:[17,18,166,185,194],mute_channel:185,mutelist:[18,194],mutltidesc:237,mutual:[263,361],mux2:71,mux:[22,60,68,86,90,99,108,118,157,170,188,205,440],mux_color_ansi_extra_map:205,mux_color_xterm256_extra_bg:205,mux_color_xterm256_extra_fg:205,mux_color_xterm256_extra_gbg:205,mux_color_xterm256_extra_gfg:205,muxaccountcommand:[188,234],muxaccountlookcommand:177,muxcommand:[22,85,91,92,93,94,96,99,104,107,129,163,164,170,176,177,178,179,180,185,186,187,189,190,192,204,211,212,214,222,228,234,237,238,247,249,256,257,269,273,294,370],mvattr:[107,180],mxp:[31,58,146,163,164,187,308,317,320,332,335,365,372,387,388],mxp_pars:327,mxp_re:365,mxp_sub:365,mxp_url_r:365,mxp_url_sub:365,my_callback:354,my_datastor:66,my_func:116,my_funct:93,my_github_password:11,my_github_usernam:11,my_identsystem:35,my_object:93,my_port:61,my_portal_plugin:61,my_script:41,my_server_plugin:61,my_servic:61,my_word_fil:240,myaccount:46,myaccountnam:117,myapp:66,myarx:75,myattr:[13,166],mybot:185,mycar2:35,mychair:46,mychan:18,mychannel1:185,mychannel2:185,mychannel:[18,55,185],mycharact:103,mychargen:27,mycmd:[22,30,312],mycmdget:114,mycmdset:[20,22,107,114],mycommand1:20,mycommand2:20,mycommand3:20,mycommand:[20,22,30,64,94,107,114,117,191],mycommandtest:191,mycompon:51,myconf:2,mycontrib:8,mycss:51,mycssdiv:51,mycustom_protocol:61,mycustomchannelcmd:18,mycustomcli:61,mycustomview:72,mydatastor:66,mydefault:29,mydhaccount:156,mydhaccountt:156,mydhacct:156,myevennia:152,myevilcmdset:[20,173],myevmenu:27,myfix:11,myformclass:53,myfunc:[8,47,54,388],myfuncparser_cal:29,mygam:[0,3,5,7,8,9,11,12,14,15,18,19,20,25,27,31,32,36,40,41,43,48,49,50,51,53,61,63,66,72,75,78,80,81,82,85,90,91,94,96,97,98,99,100,101,103,104,105,107,111,112,113,114,115,116,118,125,126,128,129,131,133,135,136,137,140,141,145,147,148,149,150,151,153,154,156,160,161,202,203,205,222,234,237,247,248,251,274,276,337,386,388],mygamedir:84,mygamegam:103,mygrapevin:185,mygreatgam:53,mygreatpwd:148,myhandl:45,myhousetypeclass:180,myinstanc:66,myircchan:185,mykwarg:27,mylayout:51,mylink:84,mylist2:13,mylist:[6,13,362],mylog:19,mymap:82,mymenu:27,mymethod:97,mymodul:47,mymud:[7,144],mymudgam:154,mynam:[122,156],mynestedlist:369,mynod:27,mynoinputcommand:22,mynpc:129,myobj1:46,myobj2:46,myobj:[13,19,32,41,307],myobject:13,myobjectcommand:91,myothercmdset:20,myownfactori:61,myownprototyp:40,mypassw:212,mypassword:49,mypath:8,myplugin:51,myproc:61,myproc_en:61,myprotfunc:40,myrecip:78,myreserv:29,myroom:[41,46,97,110,180],myros:36,myscript:[41,46,48],myself:123,myserv:212,myservic:61,mysess:44,mysql:[2,9,87,388],mysqlclient:145,mysteri:[30,35,77,153],myston:117,mytag:51,mytestview:53,mythic:119,mytick:307,mytickerhandl:307,mytickerpool:307,mytrait:251,mytup1:13,mytup:13,myusernam:49,myvar:22,myview:72,myxyzroom:82,naccount:353,nail:207,naiv:[194,199,271,286,362],nake:22,name1:180,name2:180,name:[2,3,4,5,7,8,9,10,11,12,13,14,15,16,18,20,22,27,28,29,30,31,32,33,35,36,38,40,41,43,44,45,46,48,49,50,51,53,54,57,61,62,64,66,69,72,73,74,75,76,77,78,79,80,81,82,84,87,89,91,93,96,97,98,99,100,101,103,104,105,106,107,108,109,110,111,112,114,115,116,117,118,119,120,121,125,128,129,131,133,134,137,138,139,140,141,143,145,146,147,149,150,151,152,153,154,156,157,160,161,163,166,167,169,171,172,173,174,175,177,178,180,185,186,187,188,189,190,191,192,194,195,196,199,202,203,204,207,208,210,212,214,216,217,219,221,223,227,229,230,233,238,239,240,241,247,251,252,256,257,267,269,270,271,273,279,280,281,282,285,286,287,293,294,298,299,302,303,305,307,312,315,317,318,319,321,322,324,329,332,335,336,339,340,341,344,353,355,357,360,361,362,363,365,366,367,368,370,371,372,373,375,379,380,381,382,384,385,387,388,389,391,396,403,407,411,412,413,418,419,427,432,433,438],namecolor:252,namedtupl:227,nameerror:[3,115],namelist:234,namesak:6,namespac:[48,51,101,230,270,299,355,366,404],namn:63,napoleon:84,narg:270,narr:258,narrow:[49,82,106,114,122,125],nativ:[3,41,49,67,84,110,122,244,355,357,438],nattempt:27,nattribut:[13,27,48,128,180,299,351,360,362,368,372],nattributehandl:360,natur:[13,16,18,19,46,67,86,143,167,374],natural_height:374,natural_kei:360,natural_width:374,navbar:53,navig:[7,9,27,75,80,81,82,84,140,141,258,435],naw:[28,146,163,164,308,320],nbsp:387,nchar:136,nclient:343,ncolumn:374,ncurs:163,ndb:[14,22,27,41,44,48,76,91,93,128,166,169,190,293,302,351,362,372],ndb_:[40,180,299],ndb_del:351,ndb_get:351,ndb_set:351,ndk:153,nearbi:[82,173,174,175,258],nearli:[112,125,365],neat:[74,131,427],neatli:[68,388],necess:61,necessari:[2,11,48,59,61,68,74,76,82,89,95,98,99,106,111,112,120,135,137,145,161,174,175,196,203,216,230,245,269,270,280,298,299,341,366,372,374,375,382,384,388,396,403],necessarili:[40,67,84,98,119,154,388],necessit:354,neck:[40,204],necklac:[121,204],need:[0,2,3,5,6,7,8,9,10,11,12,13,14,15,16,18,19,20,22,25,26,27,29,30,31,32,33,35,36,40,41,43,44,46,47,48,50,51,52,53,54,57,59,61,62,63,64,66,67,69,72,73,75,76,77,78,79,80,81,82,83,84,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,103,104,105,106,107,108,110,111,112,113,115,116,117,119,120,121,123,125,126,128,129,130,131,133,134,135,137,138,140,141,143,144,145,147,148,149,150,151,152,153,154,155,156,157,160,161,166,167,169,173,175,177,180,185,186,188,190,191,194,199,201,202,207,208,212,216,217,219,221,222,224,228,229,230,231,238,239,240,241,251,252,254,255,256,257,258,263,267,268,269,270,271,273,279,280,281,284,290,293,294,298,299,312,314,316,317,321,329,336,341,343,351,352,353,357,360,362,365,366,368,372,373,374,375,376,382,383,385,388,391,396,398,403,405,432,436],need_gamedir:312,needl:238,needless:113,neg:[100,138,173,370,388],negat:[59,110,290,391],negoti:[201,326,328,330,339,353],negotiate_s:328,neighbor:[95,122,280],neither:[6,13,126,147,161,187,211,298,336,360,363,372,389],nenter:27,neophyt:251,nerror:63,nest:[4,13,15,22,27,29,30,166,180,241,252,289,294,299,336,369,375],nested_mut:13,nested_r:180,nestl:81,neswmaplink:[82,280],net:[75,98,122,143,148,152,154,167,185,325,326,336,339,353],netrc:11,network:[61,69,85,86,87,88,123,143,145,149,151,152,154,157,159,167,185,323,324,329,350,353],neu:202,neural:122,neutral:[29,224],never:[0,1,8,11,15,19,20,22,27,29,34,38,43,47,48,55,59,66,67,82,87,97,100,106,112,113,115,116,117,120,121,122,125,135,137,140,147,150,166,190,229,240,241,257,258,267,274,290,294,351,360,369,388],nevertheless:[0,27,66,138,177,202],new_alias:175,new_arriv:269,new_attrobj:360,new_channel:[99,185],new_charact:267,new_coordin:271,new_create_dict:216,new_datastor:66,new_goto:372,new_kei:[45,175,294],new_loc:180,new_menu:202,new_nam:[45,180],new_name2:180,new_obj:[32,219,221,294,299],new_obj_lockstr:180,new_object:[40,299],new_po:216,new_posit:216,new_progress:217,new_raw_str:172,new_room_lockstr:180,new_ros:36,new_scor:217,new_script:41,new_typeclass:[166,362],new_typeclass_path:48,new_valu:[33,360],newbi:[86,91],newcom:[122,134],newer:75,newindex:252,newli:[11,49,62,79,99,110,115,140,180,194,202,207,219,221,234,239,270,279,282,294,299,305,368],newlin:[22,51,187,366,374],newnam:[22,180,362],newpassword:178,newstr:51,nexist:76,nexit:[8,136],next:[0,2,3,7,11,13,14,15,20,22,26,27,28,29,30,32,36,38,41,49,50,51,52,53,54,55,59,63,64,66,74,75,76,78,79,80,81,82,84,87,89,90,91,92,93,94,95,97,99,100,102,103,105,107,108,110,112,113,115,116,117,118,119,120,121,122,123,125,126,128,129,137,140,141,143,145,149,150,152,153,154,155,156,157,161,202,210,216,219,237,252,254,255,256,257,258,268,280,290,312,366,372,373,376,388,435],next_nod:27,next_stat:[216,219],next_turn:[254,255,256,257,258],nextnod:372,nextnodenam:372,nextrpi:143,nfkc:166,ng2:374,nginx:144,nice:[8,19,30,53,55,73,74,76,80,81,82,99,100,103,113,114,120,121,147,154,156,180,201,204,241,298,440],nicer:[108,115],niceti:180,nick:[12,13,18,24,31,36,71,98,107,143,166,167,180,185,186,194,241,293,294,324,360,361,410,440],nick_typ:35,nickhandl:[13,35,360],nicklist:[167,185,324],nicknam:[11,35,36,71,186,241,293,294,324,360,361],nickreplac:360,nickshandl:410,nicktemplateinvalid:360,nicktyp:[241,294],nifti:[114,144],night:[29,99,120,121,139,150,222],nine:62,nineti:389,nit:100,nline:381,nmisslyckad:63,nnode:280,no_act:372,no_channel:[20,22,173,372],no_default:[48,166,362],no_exit:[20,22,128,173,263,266,372],no_gmcp:336,no_log:174,no_match:202,no_mccp:325,no_more_weapons_msg:268,no_msdp:336,no_mssp:326,no_mxp:327,no_naw:328,no_obj:[20,173,263,266,372],no_of_subscrib:397,no_prefix:[166,194],no_superuser_bypass:[166,194,290,294,362],no_tel:32,noansi:191,nobj:136,nocaptcha:140,nocaptcha_recaptcha:140,nocolor:[103,317,332,335,340,341],nod:121,nodaemon:7,node1:[27,372],node2:[27,372],node3:[27,372],node:[14,40,105,215,223,252,266,274,277,279,280,281,282,296,310,372],node_abort:27,node_apply_diff:296,node_attack:27,node_background:27,node_betrayal_background:27,node_border_char:[215,372],node_create_room:215,node_destin:296,node_examine_ent:296,node_exit:27,node_formatt:[27,215,223,372],node_four:27,node_game_index_field:310,node_game_index_start:310,node_hom:296,node_index:[274,277,280,296,372],node_join_room:215,node_kei:296,node_loc:296,node_login:27,node_mssp_start:310,node_mylist:27,node_on:27,node_opt:215,node_or_link:[278,280],node_parse_input:27,node_password:27,node_prototype_desc:296,node_prototype_kei:296,node_prototype_sav:296,node_prototype_spawn:296,node_quit:215,node_readus:27,node_select:27,node_set_desc:215,node_set_nam:27,node_start:310,node_test:27,node_usernam:27,node_validate_prototyp:296,node_view_and_apply_set:310,node_view_sheet:27,node_violent_background:27,node_with_other_nam:372,nodebox:391,nodefunc:372,nodekei:372,nodenam:[27,372],nodetext:[27,215,223,296,372],nodetext_formatt:[27,215,223,296,372],noecho:[115,190],noerror:294,nofound_str:[166,241,294,388],nogoahead:334,nohom:368,nois:[90,125],noisi:[154,309,314,322,332,335,343,357],noloc:180,nomarkup:[31,103],nomatch:[76,189,202,370,388],nomatch_exit:76,nomatch_single_exit:76,nomigr:8,nomin:433,non:[11,15,16,18,19,20,22,26,28,29,30,31,40,41,44,48,51,53,59,66,67,73,76,80,82,84,86,87,88,89,93,96,99,100,104,108,110,113,114,117,120,122,125,138,149,161,166,167,169,171,173,180,185,190,194,196,208,211,219,230,239,247,249,251,252,268,273,282,284,285,293,294,297,298,299,302,303,305,307,312,321,335,336,350,351,353,360,362,365,368,369,370,372,374,385,388,410,413],nonc:340,nondatabas:[13,351,362],none:[3,5,12,13,14,15,16,18,20,22,26,27,29,31,32,33,35,41,44,46,49,54,59,61,64,66,67,74,76,80,81,82,87,91,94,95,96,97,99,100,101,103,105,106,107,109,110,113,114,117,125,128,129,135,137,166,167,171,172,173,174,175,177,180,181,182,183,184,185,187,188,191,194,195,196,199,200,201,202,203,204,207,209,211,214,215,216,217,219,221,222,223,224,227,229,230,233,238,239,240,241,247,249,251,252,254,255,256,257,258,262,263,266,267,268,269,270,271,273,274,277,278,279,280,281,282,284,285,287,289,290,293,294,296,298,299,303,304,306,307,309,310,312,314,318,321,322,323,324,331,332,340,341,343,351,352,353,355,356,357,360,361,362,363,365,366,367,368,369,370,371,372,373,374,375,376,379,381,383,384,385,388,389,392,395,396,397,399,400,401,403,405,407,411,413,419,422,427,432,435,438],nonpc:129,nonsens:240,noon:[32,63,108,126],nop:335,nopkeepal:[146,335],nor:[3,7,13,14,20,63,68,82,93,113,122,128,138,147,211,212,270,294,298,336,360,363],norecapcha:140,norecaptcha_secret_kei:140,norecaptcha_site_kei:140,norecaptchafield:140,normal:[4,5,6,8,9,12,13,14,15,16,18,19,20,22,27,29,30,31,32,34,35,38,40,43,44,46,48,50,51,53,54,57,59,62,63,64,66,67,69,72,73,75,77,79,80,81,82,84,86,87,90,91,93,94,96,97,98,99,100,101,103,104,105,107,108,110,113,114,115,116,119,121,128,129,131,137,138,141,145,152,153,154,156,161,166,167,169,171,172,173,174,175,177,180,187,190,191,194,199,200,201,207,210,211,216,254,255,256,257,258,263,267,270,271,279,280,282,284,293,294,296,299,307,312,321,324,325,326,328,330,344,351,353,359,360,361,362,365,366,369,372,373,379,385,387,388,393,410],normal_turn_end:128,normalize_nam:294,normalize_usernam:166,north:[36,58,74,76,79,80,81,82,96,108,125,137,180,202,248,273,279,280,281,344],north_south:81,northeast:[82,108,180,271,280],northern:[76,81],northwest:[82,180,279,280,281],nose:360,not_don:357,not_error:312,not_found:180,notabl:[5,6,11,18,54,61,75,148,175,180,191,201,362,369,388],notat:[4,53,180,365,388],notdatabas:48,note:[0,3,5,7,9,10,11,12,13,14,18,19,29,31,32,36,38,40,41,44,45,47,48,51,53,55,57,58,59,63,64,66,67,69,72,74,75,78,80,82,87,89,90,91,93,98,99,100,101,105,107,108,110,113,114,115,116,117,118,119,120,122,125,126,128,129,133,134,137,138,140,141,145,146,148,153,154,156,157,159,161,163,166,167,172,173,174,175,177,180,181,182,185,186,187,188,190,191,192,194,195,199,201,203,204,205,207,208,210,211,212,216,221,222,224,229,230,233,237,238,239,240,241,247,248,251,252,254,255,256,257,258,263,269,270,271,273,279,280,281,282,284,289,290,293,294,298,299,307,309,312,317,321,322,324,325,329,330,331,332,335,336,337,339,340,343,345,346,351,353,357,358,360,361,362,363,365,366,367,368,369,370,371,372,373,374,375,376,379,381,383,384,385,388,395,396,408,410,413,416,420,440],notepad:[118,148],notfound:388,notgm:99,noth:[3,8,13,15,19,22,29,36,47,54,64,68,74,76,81,82,93,97,98,100,105,107,108,113,115,117,122,125,128,166,180,189,252,254,257,258,267,271,280,294,305,324,360,362,372],nother:136,notic:[2,3,11,14,22,54,55,74,76,79,82,83,88,93,95,100,101,106,108,112,113,122,125,134,137,138,145,202,260,325,434],notif:[11,51,89,153,234],notifi:[117,155,159,185,207,254,255,256,257,258,269,298],notificationsconfig:89,notimplementederror:335,notion:[47,78,100,127,128,251],noun:[240,241],noun_postfix:240,noun_prefix:240,noun_transl:240,nov:63,now:[0,2,6,7,8,9,11,12,13,15,18,19,20,22,27,29,32,34,36,37,40,41,44,47,48,49,51,52,53,54,55,59,66,68,72,73,74,75,76,78,79,80,81,82,86,87,90,91,92,93,95,97,98,99,100,101,103,104,105,106,107,108,110,111,112,113,114,115,116,117,118,119,120,121,122,123,125,126,129,130,131,133,134,135,137,138,140,141,143,145,148,149,150,151,152,153,154,155,156,157,160,161,174,185,187,201,209,210,223,230,251,252,263,271,275,290,294,324,332,353,384,386,388,439],nowher:[81,115,122,280],noxterm256:335,npc:[22,27,75,79,81,87,120,126,201,249,289,440],npcname:135,npcshop:105,nprot:136,nr_start:304,nroom:[76,136],nroom_desc:8,nrow:374,nsmaplink:[82,279,280],nsonewaymaplink:[82,280],ntf:148,nthe:263,nuanc:59,nudg:[142,263,357],nuisanc:157,nulla:28,num:[29,32,80,241,294],num_lines_to_append:381,num_object:110,num_objects__gt:110,num_tag:110,number:[0,2,5,6,8,11,13,14,19,20,22,26,27,29,34,35,41,43,44,45,46,47,48,49,53,54,55,72,73,74,80,81,82,84,87,90,98,99,100,103,105,107,110,113,114,115,116,117,119,122,125,126,128,129,136,141,145,150,151,154,155,156,163,166,167,172,173,174,178,180,185,186,187,195,196,199,204,207,210,211,216,223,225,227,229,230,233,239,240,241,252,254,255,256,257,258,273,277,279,280,282,294,298,299,304,310,312,317,323,324,326,330,343,344,353,355,357,360,361,363,365,366,368,370,372,373,374,375,376,379,381,385,388,391,397,412,413,427],number_of_dummi:312,number_tweet_output:136,numberfilt:407,numbertweetoutput:136,numer:[6,120,126,225,250,251,279,365],numpi:345,oak:208,oakbarkrecip:208,oakwood:208,obelisk:[119,268],obfusc:[77,240,241],obfuscate_languag:[240,241],obfuscate_whisp:[240,241],obj1:[6,13,29,38,40,117,180,207,214,238,258],obj1_search:214,obj2:[6,8,13,29,38,40,117,180,207,214,238,258,366],obj2_search:214,obj3:[13,117,180,207],obj4:[13,117],obj5:13,obj:[3,8,12,13,19,20,22,29,32,33,35,36,40,41,46,47,48,54,66,76,91,97,99,104,106,107,109,110,114,117,125,134,137,166,173,174,175,178,180,186,188,190,191,195,200,202,204,214,216,219,222,223,224,227,229,230,233,234,238,241,251,252,254,255,256,257,258,262,263,268,269,271,289,290,293,294,299,302,303,304,341,343,344,351,360,361,362,363,366,368,369,373,375,383,384,385,388,395,396,397,400,401,403,408,410],obj_desc:257,obj_detail:269,obj_kei:257,obj_prototyp:299,obj_to_chang:48,obj_typeclass:257,objattr:[268,289],objclass:[379,388],object1:22,object2:[22,201,294],object:[0,2,3,4,5,8,12,14,15,16,18,20,22,23,24,26,27,28,29,30,31,33,34,35,38,40,43,45,47,48,49,51,52,54,55,57,61,64,66,67,68,71,72,73,74,75,76,77,78,79,80,82,84,85,86,90,93,94,95,96,97,98,99,100,101,102,103,105,106,107,111,112,118,119,121,126,128,129,134,135,136,139,140,141,143,145,157,161,163,164,165,166,167,168,169,171,172,173,174,175,177,178,179,180,181,182,185,186,187,188,190,191,192,194,195,196,197,199,201,202,203,204,207,212,213,214,215,217,219,221,222,223,224,227,228,229,230,231,233,234,238,239,241,244,245,246,247,248,249,250,251,252,254,255,256,257,258,260,262,263,265,266,267,269,270,271,273,277,279,280,281,282,284,285,286,289,290,296,297,298,299,300,302,303,304,305,306,307,310,312,314,316,317,318,319,321,322,325,326,327,328,329,330,331,332,334,336,339,341,343,344,350,351,352,353,355,356,357,360,361,362,363,365,366,367,368,369,370,371,372,373,374,375,379,380,382,383,384,385,386,387,388,389,393,394,395,396,397,399,401,403,407,408,410,412,413,418,419,421,426,427,428,430,431,432,433,435,436,437,440],object_confirm_delet:438,object_detail:[433,438],object_from_modul:388,object_id:[141,400],object_paramet:199,object_search:141,object_subscription_set:293,object_tot:361,object_typeclass:[386,428],objectadmin:[50,400],objectattributeinlin:400,objectcr:427,objectcreateform:[395,400],objectcreateview:[433,438],objectdb:[13,46,48,50,85,136,140,163,293,294,299,359,360,368,373,385,395,396,400,403,407,412],objectdb_db_attribut:400,objectdb_db_tag:[396,400,403],objectdb_set:[169,360,363],objectdbfilterset:[407,413],objectdbmanag:[292,293],objectdbseri:[410,413],objectdbviewset:[412,413],objectdeleteview:[433,438],objectdetailview:[432,433,438],objectdoesnotexist:[169,196,286,293,302,319,360,363,380],objecteditform:400,objectform:427,objectlistseri:[410,413],objectmanag:[282,292,294,361],objectnam:99,objectpuppetinlin:395,objects_objectdb:66,objectsessionhandl:[12,294],objecttaginlin:400,objectupd:427,objectupdateview:[433,438],objid:32,objlist:[29,40,375],objlocattr:[268,289],objmanip:180,objmanipcommand:180,objnam:[19,48,180],objparam:299,objs2:46,objsparam:299,objtag:289,objtyp:195,obnoxi:314,obs:362,obscur:[104,152,240,241],observ:[14,15,67,103,108,180,186,198,222,241,260,269,336,366,388],obtain:[5,22,74,95,106,148,154,156,202,268],obviou:[9,18,74,82,137,157,225,438],obvious:[15,44,68,74,80,86,89,137,363],occaecat:28,occas:9,occasion:[117,154],occat:115,occation:[122,374],occur:[3,22,41,51,54,75,91,98,189,239,256,270,290,294,306,344,372,381],occurr:[79,106,129,365],ocean:[119,154],oct:[115,116],octet:199,odd:[76,80,120,138,157,279],odor:99,off:[2,13,15,18,20,22,26,27,30,31,32,41,45,47,53,59,61,62,66,67,68,72,74,78,80,82,86,87,93,103,108,109,115,117,118,120,123,125,127,129,138,145,146,154,156,157,161,166,175,185,190,191,194,204,208,223,241,263,267,269,282,290,294,317,325,332,335,351,362,365,366,368,370,372,373,374,381,389,439],off_bal:93,offend:55,offer:[0,7,8,9,11,13,15,20,22,26,27,31,35,36,40,41,47,51,59,61,64,66,68,71,76,77,81,82,83,86,87,89,92,95,96,97,98,100,106,107,111,112,113,115,120,121,126,128,129,139,152,154,166,173,174,179,180,187,190,199,201,202,216,222,240,269,296,303,353,372],offernam:201,offici:[8,11,50,84,152,156,157,381],officia:28,offlin:[16,18,40,75,143,154,179,185,366],offscreen:75,offset:[49,241,370,381],often:[0,3,5,6,9,11,12,13,16,18,20,22,24,27,29,38,43,44,46,47,53,54,59,60,61,63,66,67,76,79,80,82,84,87,92,98,100,102,106,112,113,115,116,117,118,122,125,128,154,157,167,173,178,188,190,194,202,252,254,255,256,257,258,290,293,302,304,312,317,331,351,360,362,366,368,374,375,381,388,410,433],ohloh:83,okai:[3,9,27,80,81,82,99,122,125,129,153,233,280],olc:[111,180,296,299],olcmenu:296,old:[5,7,9,19,20,26,27,30,32,44,48,59,67,74,75,81,84,86,90,91,95,97,99,103,105,119,122,129,138,148,150,154,166,173,174,177,180,201,221,241,290,294,299,321,361,362,365,368],old_default_set:8,old_kei:[45,294],old_nam:45,old_obj:216,old_po:216,older:[12,44,53,75,87,143,146,148,180],oldnam:362,oliv:59,omit:[40,106,156],on_:202,on_bad_request:314,on_ent:[76,202],on_leav:[76,202],on_nomatch:[76,202],onbeforeunload:51,onbuild:156,onc:[3,5,6,9,11,12,14,18,22,27,30,32,34,36,41,44,48,51,53,54,56,59,61,63,64,68,74,75,76,79,80,82,83,84,86,87,90,91,95,98,99,100,105,108,110,111,112,113,114,115,116,120,122,123,125,128,137,138,140,143,145,148,150,152,154,156,160,166,167,172,175,180,185,188,191,194,201,202,214,216,217,223,224,230,234,238,240,247,252,254,255,256,257,258,260,263,267,268,269,270,271,275,280,294,298,302,305,317,322,335,339,350,360,365,372,373,381,386,388],onclos:[61,323,340],onconnectionclos:51,ond:363,one:[0,2,3,4,5,6,7,8,9,11,12,13,14,15,16,18,19,20,22,25,26,27,28,29,30,31,32,34,35,36,38,39,40,41,43,44,46,47,48,50,51,53,54,55,56,57,59,63,64,66,67,68,69,72,73,74,75,76,77,78,79,80,81,82,83,84,86,87,88,89,90,91,92,93,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,125,126,128,129,131,133,135,137,138,139,140,141,143,145,147,148,149,150,152,154,155,156,157,159,165,166,169,172,173,174,175,177,178,180,185,186,189,190,191,194,195,196,199,201,202,204,207,208,209,211,216,217,219,221,222,224,230,233,234,239,240,241,249,251,252,254,255,256,257,258,263,266,268,269,270,271,277,279,280,281,282,284,285,286,289,290,293,294,296,297,298,299,302,307,312,314,316,317,322,323,324,332,335,336,344,351,352,353,357,359,360,361,362,365,366,368,369,371,372,373,374,375,376,379,380,381,383,384,385,386,388,389,400,413,427,428,433],one_consume_onli:216,ones:[8,15,18,19,20,22,29,30,31,32,34,40,59,64,72,75,76,89,98,99,103,107,108,114,123,128,138,149,152,154,156,157,173,174,175,196,202,230,254,255,256,257,258,284,298,299,316,321,353,365,374,382],onewai:180,ongo:[41,92,106,122,128,201,248],ongotopt:51,onkeydown:51,onli:[0,3,5,7,8,11,12,13,14,15,16,18,19,20,22,26,27,28,29,30,31,32,34,35,36,38,40,41,43,44,45,46,48,49,50,51,52,53,54,55,57,58,59,61,64,66,67,72,73,74,75,76,77,78,79,80,81,82,83,85,86,87,89,90,91,92,93,95,96,97,98,99,100,101,103,104,105,106,107,108,109,112,113,114,115,116,117,118,119,120,121,123,125,126,128,129,133,134,135,137,138,139,140,141,143,145,146,147,148,149,150,151,152,154,156,157,163,166,167,171,172,173,174,175,177,178,179,180,185,186,187,188,189,190,191,194,195,196,199,201,202,203,204,207,208,209,211,214,216,217,221,222,223,225,230,234,240,241,249,251,252,254,255,256,257,258,260,268,269,270,271,273,274,279,280,281,286,289,290,294,298,299,302,305,306,307,312,316,317,324,327,329,330,332,335,344,350,351,353,355,356,357,360,361,362,363,365,366,367,368,370,372,373,374,375,379,381,383,384,385,386,388,391,395,396,403,427,432,433,435,436,438,439],onlin:[9,16,18,36,43,53,55,68,71,83,86,87,88,90,98,99,101,102,112,116,118,120,122,123,124,126,127,128,129,130,132,143,145,149,151,155,159,160,163,177,185,194,202,214,223,326,366,440],onloggedin:51,onlook:294,only_nod:279,only_tim:385,only_valid:299,onmessag:[61,323,340],onopen:[61,323,340],onoptionsui:51,onprompt:51,onsend:51,onset:13,ontext:51,onto:[18,20,22,51,82,86,91,96,114,120,137,152,154,174,185,208,269,293,324,369,372],onunknowncmd:51,onward:45,oob:[22,37,43,51,64,94,146,166,167,187,224,262,294,317,335,336,340,341,353,372,440],oobfunc:43,oobhandl:379,oobobject:41,ooc:[12,18,44,77,85,99,107,109,113,129,166,169,177,180,181,188,196,203,234,294],ooccmdsetchargen:203,ooclook:[44,203,373],oop:114,opaqu:[16,157],open:[0,3,7,10,11,20,26,30,32,44,52,53,58,74,75,76,77,79,81,82,83,84,86,87,88,89,98,99,101,107,108,111,113,114,115,116,122,125,126,128,129,131,140,141,143,145,148,149,150,151,152,153,154,157,159,180,187,190,199,200,201,202,214,216,221,223,247,248,258,263,268,273,279,355,360,368,381,388,439],open_chest:38,open_flag:216,open_parent_menu:202,open_submenu:[76,202],open_wal:268,openadventur:122,openhatch:143,opensourc:365,oper:[3,6,11,13,15,18,19,22,27,29,31,36,38,41,46,47,49,51,52,55,63,67,75,76,77,79,82,87,98,104,109,110,113,115,121,138,148,150,152,154,160,161,166,171,173,175,177,180,185,190,191,194,199,202,207,211,214,219,241,250,268,280,290,294,299,307,309,312,321,322,326,328,332,334,335,341,343,344,351,352,360,361,362,365,368,372,373,374,375,379,388,412,413,440],opic:191,opinion:[78,121],opnli:360,oppon:[13,126,255,257,267],opportun:[74,76,89,106,140,258],oppos:[19,36,59,157,161,351,363],opposit:[81,82,99,107,137,180,263,280],opt:[51,99,270],optim:[5,18,19,22,34,41,47,66,87,95,97,125,145,175,194,298,299,347,350,360],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,5,7,8,12,13,17,18,19,20,22,26,29,30,31,32,34,40,41,43,46,51,53,54,59,64,66,67,68,69,71,72,77,78,81,84,86,87,89,91,93,98,100,103,105,107,108,111,112,114,118,121,125,128,129,134,140,141,143,144,145,146,147,148,150,156,160,163,166,167,171,172,173,174,175,177,178,180,185,187,188,191,194,195,196,201,202,203,204,207,210,211,214,215,216,217,219,221,222,223,224,225,227,229,230,234,238,239,240,241,249,251,252,256,258,262,263,266,269,270,271,273,275,277,279,280,281,282,284,285,287,289,290,293,294,296,298,299,302,303,304,305,306,307,309,310,312,314,317,318,321,322,325,326,327,328,329,330,331,332,334,335,336,339,340,341,343,344,351,353,355,360,361,362,363,365,366,367,368,370,371,372,373,374,375,376,379,381,382,383,384,385,387,388,389,391,395,396,397,399,400,401,402,403,405,407,419,420],option_class:[163,367],option_dict:372,option_gener:372,option_kei:389,option_str:270,option_typ:383,option_valu:383,optiona:[166,309,362],optionclass:[163,164,364,367],optioncontain:367,optionhandl:[163,164,364,382],optionlist:[27,215,266,296,372],options2:51,options_dict:383,options_formatt:[27,215,223,266,296,372],optionsl:298,optionslist:266,optionsmenu:215,optionstext:[27,215,223,372],optlist:252,optlist_to_menuopt:252,optuon:240,oracl:[145,388],orang:[59,115,238,270,365],orc:[40,98,134],orc_shaman:40,orchestr:156,order:[0,2,5,8,9,10,11,12,13,14,15,19,20,22,26,27,29,30,32,33,35,36,40,41,43,49,50,51,54,58,63,69,74,75,76,78,80,81,82,83,87,88,95,96,99,100,101,110,112,113,114,115,119,121,122,123,128,129,133,137,138,140,141,145,148,151,160,166,171,174,175,181,186,187,190,191,199,201,202,203,204,205,207,209,211,216,223,238,239,241,251,254,255,256,257,258,267,268,269,270,279,280,282,289,290,294,299,323,335,340,344,351,360,362,365,366,372,373,374,381,385,388,395,397,399,400,401,402,438],order_bi:110,order_clothes_list:204,ordered_clothes_list:204,ordered_permutation_regex:241,ordereddict:[13,388],ordin:365,ore:[122,207,208],org:[63,84,87,128,154,239,270,328,334,340,365,388,427],organ:[11,18,30,36,38,41,46,50,68,71,75,76,81,82,84,101,110,116,125,126,139,175,187,191,281,391],organiz:125,orient:[86,87,98,116],origin:[7,11,27,36,44,49,50,53,63,74,75,77,80,86,89,90,91,93,98,103,106,110,113,114,123,133,143,150,153,157,166,167,173,180,202,234,240,241,270,280,294,298,299,321,355,362,365,372,384,387,388,391,439],origo:[82,279],orm:29,ormal:365,orthogon:82,oscar:[194,286,362],osnam:388,oss:7,ostr:[166,195,285,385],osx:[11,148],other:[2,6,8,9,11,12,13,14,15,16,17,18,19,20,23,26,27,29,30,31,32,34,35,36,40,44,45,46,47,48,49,51,52,54,55,56,57,58,59,61,63,64,66,67,68,69,72,73,74,75,76,77,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,95,96,98,99,100,101,103,104,105,106,107,108,109,110,112,113,114,116,118,120,121,123,125,126,128,129,133,134,135,136,137,138,140,141,144,148,149,150,151,156,157,159,160,161,166,171,172,173,174,175,180,185,186,187,188,191,192,194,195,199,201,204,207,210,212,214,215,216,221,223,229,234,240,241,245,247,252,254,255,256,257,258,263,269,270,271,279,280,282,284,286,290,293,294,298,299,303,305,307,310,312,316,317,321,323,324,330,332,335,344,351,352,354,360,362,364,365,366,368,370,371,372,373,374,375,382,383,385,388,389,403,432,433,435],other_modul:111,other_obj:216,othercondit:107,othermodul:53,otherroom:247,others_act:216,otherwis:[3,5,6,11,13,16,19,20,22,27,29,36,40,41,44,59,63,64,66,72,74,82,83,89,91,93,95,100,101,106,110,115,117,120,129,137,142,145,154,156,157,163,172,173,177,180,185,194,199,201,205,207,216,219,221,222,223,227,230,241,251,254,255,256,257,258,262,271,273,284,290,294,297,298,299,306,312,323,324,332,351,355,356,365,372,373,375,381,385,386,388,396,431,432,433,435,437],ought:391,our:[0,2,3,8,9,11,12,13,15,20,22,32,38,47,51,56,61,63,64,67,71,72,73,75,78,79,80,81,83,84,86,87,88,89,90,91,94,95,96,98,99,100,102,103,104,105,106,108,110,112,114,116,117,118,121,123,124,125,126,127,128,129,130,131,132,133,134,139,141,142,143,144,145,148,150,152,153,154,155,156,157,160,169,174,188,208,222,252,267,268,271,290,303,357,381,396,403,410],ourself:[114,129],ourselv:[32,35,50,74,99,107,108,110,114,120,122,125,135,139,166,203,325,326,328,339],out:[0,3,5,6,8,11,14,15,16,17,18,22,24,27,29,30,34,36,38,40,41,43,44,49,51,52,53,54,55,56,57,62,66,67,68,71,72,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,90,91,92,93,95,96,97,98,100,101,106,108,109,110,111,112,113,114,115,116,117,118,119,120,121,123,124,125,127,128,129,130,131,132,134,137,138,140,143,144,145,147,148,150,151,154,156,160,165,166,172,173,177,179,180,185,201,203,207,208,210,212,214,216,223,234,240,241,244,245,247,248,251,254,255,256,257,258,266,268,273,279,280,281,282,298,299,305,312,314,336,340,341,343,352,353,360,369,371,372,374,375,387,388,391,395,403,427,439],outcom:[66,84,126,173,207,211,290,294,298],outdat:[144,150],outdata:[61,353],outdoor:[46,82,119,122,139,269],outer:[110,111,374],outermost:[13,29,31,93,111,115,125],outerwear:204,outfunc_nam:61,outgo:[29,44,67,70,82,150,154,167,280,294,324,336,352,388],outgoing_port:154,outlet:154,outlin:[2,81,82,140,323],outlist:279,outmessag:294,output:[0,5,7,9,15,19,27,28,29,30,31,44,49,51,59,61,63,67,68,69,71,72,76,77,81,82,89,99,106,107,108,112,113,115,117,118,122,128,129,136,137,138,143,145,156,161,163,164,175,180,185,187,190,191,197,202,207,208,210,224,242,243,245,254,255,256,257,258,279,280,312,317,332,336,344,351,365,372,373,375,381,384,388],output_nam:207,output_prototyp:[78,207,208],outputcmd:336,outputcommand:[31,64],outputfunc:[24,61,64,294,317,323,440],outputfunc_nam:[61,317],outputfunct:64,outrank:361,outright:[55,154],outro:[119,269],outroroom:269,outsid:[14,16,29,30,40,43,46,49,52,53,63,67,68,74,77,82,84,87,90,95,98,108,112,115,116,117,121,122,126,137,141,150,156,161,187,199,239,257,267,274,279,280,284,289,336,351,352,360,363,374,418],outtempl:360,outtxt:19,outward:[80,154],oven:78,over:[2,4,5,6,8,9,13,14,15,16,17,18,19,20,22,27,41,44,46,47,48,49,51,53,56,59,60,61,64,67,68,69,71,80,81,82,83,84,92,95,98,99,103,105,107,110,113,114,115,116,120,122,125,126,128,133,135,138,140,144,147,154,156,157,166,174,195,208,223,247,252,254,255,256,257,258,269,280,307,316,330,332,335,337,341,343,345,358,362,366,379,384,436],overal:[49,54,66,97,98,151,154,173,188,255],overcom:81,overdo:113,overhead:[19,41,69,139,145,241,271,360],overhear:240,overlap:[20,100,240,365,374],overload:[6,20,22,27,31,36,43,47,61,76,94,96,98,114,129,133,134,166,173,175,189,194,202,203,207,214,222,224,238,241,247,248,254,255,256,257,258,266,267,268,269,270,273,294,299,307,316,335,343,352,370,372,373,374,382],overpow:122,overrid:[2,5,18,20,27,29,30,32,40,41,44,45,49,50,51,53,64,72,75,76,78,82,85,89,90,91,101,106,107,108,112,114,116,131,133,134,135,137,147,166,175,180,185,187,191,194,195,199,202,207,219,222,230,240,256,258,262,269,270,273,280,281,282,284,290,294,298,299,305,335,353,357,360,365,372,373,375,379,381,382,385,395,396,397,401,403,413,432,433,435,438],overridden:[34,53,61,82,89,133,166,180,202,250,270,280,298,373,375,395,438],override_set:45,overriden:[166,187,241],overrod:56,overrul:[12,38,166,174,241,294,374],overseen:126,overshadow:120,overshoot:388,oversight:98,overview:[0,1,5,16,50,56,77,79,98,102,118,121,124,127,129,145,157,440],overwhelm:[79,110,120],overwrit:[63,114,133,180,187,199,330,361,436],overwritten:[22,29,141,199,269,363],owasp:427,owen:207,own:[0,4,5,8,9,11,13,14,17,18,19,20,27,29,30,32,35,40,41,43,44,45,46,48,49,52,53,54,57,64,66,67,68,71,72,75,76,77,78,81,82,83,84,86,87,89,90,91,93,94,98,100,102,103,105,106,108,111,112,113,114,116,118,119,120,121,123,124,127,129,130,131,132,133,137,139,140,141,142,144,148,150,151,152,153,155,157,163,164,169,171,172,173,174,180,185,188,197,204,210,215,216,222,223,234,240,241,245,254,255,256,257,258,268,270,271,279,280,289,290,294,299,317,344,352,362,365,366,367,373,374,379,381,382,386,388,413,433,440],owner:[32,38,57,89,105,122,145,166,290,382],owner_object:32,ownership:[154,156,199],p_id:140,pace:[122,267],pack:[52,64,321],packag:[4,5,6,8,9,30,50,67,68,72,75,82,84,87,111,112,142,144,145,148,152,153,154,156,160,163,165,170,176,193,197,219,265,283,288,291,300,308,312,321,336,340,359,364,393,407],package_nam:87,packagenam:87,packed_data:321,packeddict:[6,362],packedlist:[6,362],packet:[64,332],pad:[17,29,365,374,375,388],pad_bottom:374,pad_char:374,pad_left:374,pad_right:374,pad_top:374,pad_width:374,page1:216,page2:216,page:[0,2,7,8,10,11,14,15,17,20,22,23,27,28,30,34,36,43,48,49,50,51,52,55,56,61,63,67,68,71,75,83,84,86,87,88,90,91,92,98,99,102,103,107,108,111,120,121,123,126,138,140,141,143,144,145,150,152,153,154,156,157,159,161,162,185,186,194,216,286,298,341,362,372,373,388,393,398,400,401,403,416,425,429,435,436,438,439,440],page_back:373,page_ban:185,page_end:373,page_formatt:[298,373],page_next:373,page_quit:373,page_titl:[432,433,435,437],page_top:373,pageno:[298,373],pager:[28,30,373],pages:[27,372],pagin:[30,49,85,298,373],paginag:373,paginate_bi:[432,433,435],paginated_db_queri:298,paginator_django:373,paginator_index:373,paginator_slic:373,pai:[97,105,122,154,157,268],paid:[123,154],pain:154,painstakingli:14,pair:[20,51,64,82,128,166,173,204,280,289,294,353,427,438],pal:35,palac:82,palett:138,pallet:81,palm:223,pane:[67,192,212,266,282],panel:[7,150],panic:[40,107],pant:120,pantheon:[30,284],paper:[102,128,143],paperback:126,paperwork:82,par:145,paradigm:[75,120,135,255],paragraph:[15,19,30,84,237,366,374,388],parallel:[98,100,101,118,361],paralyz:256,param:[150,180,294,307,314,324,357,387,407,408,410],paramat:[166,175,294,351],paramet:[2,3,7,8,20,49,74,76,79,80,95,100,106,110,117,122,146,156,163,166,167,171,172,173,174,175,180,185,187,191,194,195,196,199,201,202,204,207,210,211,214,215,216,217,219,221,222,223,224,225,227,228,229,230,233,234,239,240,241,244,245,247,251,252,254,255,256,257,258,262,263,266,269,270,271,279,280,281,282,284,285,286,287,290,293,294,296,298,299,303,304,305,306,307,309,310,311,312,314,316,317,318,319,321,322,323,324,325,326,327,328,329,330,331,332,334,335,336,337,339,340,341,343,349,350,351,352,353,355,356,357,360,361,362,363,365,366,367,368,369,370,371,372,373,374,375,376,379,381,382,383,385,386,387,388,389,391,395,397,400,401,405,408,419],paramount:8,paramt:389,paremt:299,parent1:40,parent2:40,parent:[12,19,20,22,36,40,41,48,61,73,76,78,82,84,87,91,96,103,107,109,113,114,116,129,135,137,169,177,180,188,190,202,207,209,214,216,241,251,252,270,280,293,294,298,299,302,360,361,362,370,380,381,388,405,407,413,436],parent_categori:252,parent_kei:[76,202],parent_model:[395,396,397,399,400,401,403],parenthes:[50,115],parenthesi:[115,116],paretn:405,pari:[143,154],pariatur:28,paricular:22,park:202,parlanc:[53,131],parri:[128,208,268],parrot:135,pars:[6,16,20,22,26,27,29,40,43,59,61,64,67,68,71,82,84,85,102,103,113,118,125,129,131,141,148,170,171,172,175,180,186,187,188,190,191,201,202,207,211,212,214,216,221,222,234,241,244,245,246,252,263,268,269,270,273,279,280,281,287,290,294,297,298,299,317,324,327,336,340,341,343,353,360,365,366,370,371,372,375,387,388,440],parse_ansi:365,parse_ansi_to_irc:324,parse_entry_for_subcategori:287,parse_fil:366,parse_for_perspect:221,parse_for_th:221,parse_html:387,parse_input:372,parse_irc_to_ansi:324,parse_languag:241,parse_menu_templ:372,parse_nick_templ:360,parse_opt:252,parse_sdescs_and_recog:241,parse_to_ani:[29,375],parseabl:[298,375],parsed_str:[29,324],parsedfunc:375,parseerror:270,parser:[22,30,40,43,68,70,82,111,141,143,171,172,177,180,187,188,190,212,214,216,222,238,240,241,268,269,270,278,279,280,298,331,365,375,387],parsingerror:[29,375,388],part1:[238,440],part2:[238,440],part3:440,part4:440,part5:440,part:[0,2,3,4,7,8,11,13,14,15,16,18,22,27,30,32,38,39,41,44,48,49,51,52,53,56,61,66,67,70,72,73,75,76,77,78,79,80,81,82,83,84,88,89,93,95,96,98,99,101,105,106,108,110,112,113,114,115,116,119,120,121,123,126,128,129,133,134,145,154,172,173,175,185,188,189,191,194,199,201,202,207,208,211,214,238,241,252,257,263,269,277,279,280,285,289,290,297,298,305,312,316,341,343,352,355,357,360,361,365,366,370,372,375,388],part_a:201,part_b:201,parth:337,parti:[3,9,14,19,29,58,75,83,87,115,116,121,123,141,144,145,152,153,154,196,201,211,375],partial:[30,82,91,185,187,240,284,298,314,327,353,383,385,388,389],particip:[157,254,255,256,257,258],participl:[391,392],particular:[5,6,11,14,15,20,30,31,32,36,38,41,43,44,45,46,48,55,59,61,64,67,69,72,76,82,84,87,88,92,96,99,102,105,108,110,111,112,114,115,116,117,120,121,122,125,135,137,139,143,144,150,152,153,166,172,173,180,195,207,217,222,245,256,257,279,280,282,285,289,290,302,353,355,362,375,379,385,434,436,439],particularli:[8,27,55,74,84,89,95,175,188,191,241,251,299,316],partit:365,partli:[13,20,66,71,111,173],party_oth:201,pass:[2,8,10,18,19,22,27,28,29,31,32,34,38,40,41,44,45,47,48,54,61,64,67,77,78,80,81,82,89,90,91,92,93,94,100,101,104,105,106,107,109,113,114,116,117,122,125,134,137,141,145,154,156,161,166,167,173,185,191,192,194,199,204,207,210,211,214,219,221,223,224,229,244,245,247,251,252,254,255,256,257,258,262,263,268,279,280,282,289,290,294,297,298,303,306,307,310,312,322,330,332,335,340,341,351,357,360,362,371,372,373,374,375,381,382,383,384,387,388,407,413,433,436,438],passabl:280,passag:[64,128,204,268,269,376],passant:138,passavataridterminalrealm:332,passiv:[93,128,140],passthrough:[20,279,305],password123:49,password1:[395,427],password2:[395,427],password:[2,5,11,25,27,31,32,53,55,75,77,87,89,107,112,113,118,145,148,150,157,160,166,177,178,192,212,216,239,245,317,332,335,356,368,395,419,427],password_chang:428,passwordresettest:428,past:[0,14,26,43,50,51,68,74,79,81,82,83,99,100,101,108,112,122,128,129,140,150,256,280,358,366,376,391,392,436],pastebin:83,pastpl:391,patch:[48,49,386],patfind:277,path:[4,7,12,15,19,27,29,30,31,32,34,36,40,41,44,48,52,53,61,62,63,66,67,72,74,76,82,84,87,89,90,93,95,105,108,109,110,113,115,116,118,125,129,133,134,135,137,141,144,148,150,154,156,166,167,169,172,173,174,179,180,181,182,183,184,185,190,194,196,199,200,201,202,203,204,207,210,211,214,216,217,219,221,222,224,230,233,238,239,240,241,247,248,249,254,255,256,257,258,260,262,263,266,267,268,269,271,273,277,279,280,281,282,284,286,293,294,298,299,302,304,305,307,312,319,321,330,337,343,345,349,353,357,360,361,362,366,368,370,371,372,373,375,376,379,380,385,388,405,413,433],path_or_typeclass:233,pathdata:273,pathfind:[77,273,277,279,280],pathnam:386,patient:88,patreon:88,patrol:267,patrolling_pac:267,patron:[83,88],pattern:[18,35,56,72,73,89,101,131,140,141,178,241,356,360,388,404],pattern_is_regex:360,paul:48,paus:[27,41,54,79,95,128,156,161,190,191,229,305,306,372,388],pausabl:388,pauseproduc:314,paxboard:143,payload:[323,340],payment:122,paypal:[83,88],pdb:163,pdbref:[32,289],pdf:143,peac:134,peek:[0,27,82,106,108,113],peer:[323,340],peform:317,peg:157,pem:150,pemit:[68,178],pen:102,penalti:[66,120,256],pend:357,pennmush:[68,71,98],pentagon:157,peopl:[0,6,12,18,29,30,32,53,59,68,77,83,86,87,90,99,103,105,108,110,112,120,121,122,123,125,126,128,143,147,151,152,154,157,159,185,186,212,241,268,269,368,396,403],pep8:0,per:[5,12,13,18,22,27,36,40,44,57,64,66,78,82,84,87,89,99,100,101,115,121,122,125,128,129,156,166,185,199,216,217,222,240,251,254,255,256,257,258,267,279,280,298,325,326,328,336,339,355,372,373,374,379,381,382],perceiv:[100,122],percent:[22,163,164,197,388],percentag:[128,250,251,361,388],percentil:388,perception_method_test:348,perfect:[11,26,86,120,121,125,153,156,199,279],perfectli:[41,46,71,89,101,365],perform:[3,5,6,13,14,15,18,28,31,32,36,41,76,86,91,95,106,115,128,129,134,140,141,145,151,153,157,166,171,173,177,180,185,187,202,204,207,214,223,229,230,241,244,252,254,255,256,257,258,277,294,298,302,303,321,335,343,344,360,361,362,369,372,373,375,382,385,388,389,427],perhap:[3,6,18,56,68,76,79,100,101,106],period:[8,9,10,115,154,156,157,388],perist:48,perm:[13,18,22,30,32,38,40,46,55,57,76,89,91,99,105,107,113,129,140,151,169,178,179,180,185,186,187,190,214,222,228,238,247,269,273,286,289,290,293,294,302,360,362],perm_abov:[32,38,289],perm_us:178,perma:122,permadeath:122,perman:[18,20,27,53,55,82,89,90,91,105,107,114,119,120,129,146,154,166,173,174,177,180,185,186,190,240,294,306,362],permiss:[5,12,13,18,20,40,49,50,55,60,62,68,75,89,90,91,108,113,125,129,140,144,145,151,153,163,164,166,168,169,173,175,177,178,179,180,185,186,188,194,217,228,241,258,284,286,289,290,293,294,298,299,302,360,361,362,363,366,368,375,381,385,393,395,406,407,410,413,438,440],permission_account_default:[38,343],permission_class:413,permission_func_modul:289,permission_guest_default:62,permission_hierarchi:[38,57,289,290],permissiondeni:408,permissionerror:298,permissionfilt:407,permissionhandl:[140,363],permissionshandl:[403,410],permit:[142,145,180,356],permstr:[32,166,362,368],permut:241,perpetu:5,persis:93,persist:[18,19,20,22,27,33,36,40,41,43,44,47,48,66,74,76,86,87,90,97,98,102,109,112,115,118,121,128,129,137,143,161,166,169,174,180,190,196,202,210,215,223,230,240,241,248,251,252,254,255,256,257,258,263,266,268,281,286,293,294,296,298,302,303,305,306,307,317,318,319,350,351,355,359,362,368,370,372,374,376,388],persit:34,person:[18,29,44,55,71,88,90,107,120,121,123,126,135,148,154,166,180,185,186,194,199,201,211,216,217,221,241,375,391,392],persona:30,perspect:[44,126,221],pertain:[133,138,157,420],pertin:140,perus:51,peski:105,pester:[98,120],peter:214,pg_ctlcluster:145,pg_hba:145,pg_lscluster:145,phantom:30,phase:[80,120],philosophi:[32,115,216],phone:[56,87,153,239],phone_gener:239,phonem:240,php:[68,87,427],phrase:[79,233],phrase_ev:233,physic:[12,34,80,120,257,267],pick:[7,14,16,20,22,25,27,29,30,32,41,43,53,75,81,82,83,86,90,95,100,105,108,114,115,118,121,122,125,126,139,152,154,156,172,177,180,186,188,204,225,241,258,268,269,294,298,344,375],pickl:[13,47,50,64,82,93,200,251,303,307,309,319,321,322,360,361,369,370,372,384,388],pickle_protocol:384,pickledfield:384,pickledformfield:[384,396],pickledobject:384,pickledobjectfield:384,pickledwidget:384,picklefield:[163,164,364,396],pickpocket:187,pickup:[258,294],pictur:[7,61,78,90,98],pid:[2,11,32,50,140,156,161,289,294,312,322,388],piddir:2,pidfil:312,pie:214,piec:[5,14,34,53,54,78,87,114,115,121,150,207,208,238,339,366,373],pierc:268,pig:[207,208],piggyback:166,pigironrecip:[207,208],pile:[174,366],pillow:153,pinch:122,ping:[167,185,312,324],pink:365,pip:[0,3,5,6,8,9,10,75,84,111,115,140,145,148,149,151,153,155,156,160,163],pipe:[44,324,369],pitfal:[0,15,59,138],pixel:[53,146],pizza:[169,196,286,293,302,360,362,363],pkg:153,pki:144,place:[0,9,11,12,13,15,16,18,27,32,34,36,40,41,43,44,49,52,53,63,64,65,71,72,74,75,77,78,79,80,81,82,83,84,86,87,89,90,91,94,100,101,106,108,111,112,114,115,117,122,125,126,129,131,133,137,138,139,140,144,148,151,153,154,156,157,166,178,180,186,194,201,202,204,208,210,216,223,238,241,244,251,254,255,256,257,258,263,268,269,271,279,280,282,294,305,321,330,335,351,352,353,360,366,367,369,372,388],placehold:[52,53,63,141,290,294,374],plai:[12,13,15,30,44,53,57,59,64,74,76,77,79,81,86,87,93,95,99,102,103,106,115,118,119,120,121,123,125,126,128,129,137,139,140,153,154,160,166,254,258,336,353,368,440],plain:[14,15,66,67,84,99,108,129,185,194,201,202,237,299,317,343,369,436],plaintext:245,plan:[3,15,16,18,48,61,75,86,97,102,110,114,117,118,124,127,130,132,154,156,366,440],plane:[82,117,137],planet:[100,112,143],plant:270,plate:[48,53,104,239],platform:[7,11,56,75,97,148,154],playabl:[122,140,428],player1:294,player2:294,player:[5,6,13,18,20,27,29,32,38,41,44,46,50,52,53,54,55,57,61,63,64,68,69,75,76,77,81,82,85,86,87,90,91,93,99,103,105,106,108,109,112,113,114,115,116,118,119,120,121,124,126,127,128,129,130,132,134,135,136,137,140,147,149,151,154,155,160,161,174,177,180,185,190,195,198,199,201,202,214,215,216,217,219,223,225,233,234,238,240,241,245,249,252,257,258,263,269,270,271,279,285,302,326,335,352,366,371,372,388,413,427,433],playernam:151,playerornpc:75,pleas:[0,5,8,11,17,20,27,30,40,48,56,59,81,83,88,89,108,114,122,125,134,135,136,140,142,144,148,151,152,153,154,190,314,343,379,384,427],pleasur:56,plenti:[15,71,86],plop:53,plot:345,plu:[0,7,19,76,87,190],pluck:22,plug:[34,45,133,157,271],plugin:[43,61,64,68,85,89,111,112,143,152,199,241,310,440],plugin_handl:51,plugin_manag:51,plural:[38,57,99,257,294,391],plusmaplink:[82,280],png:[39,53,133],po1x1jbkiv:83,pocoo:388,poeditor:63,poet:110,point:[2,3,5,6,7,8,10,11,12,14,15,16,19,20,22,27,29,30,34,36,41,43,44,46,47,48,50,53,64,66,67,69,72,74,76,77,80,82,83,84,86,89,90,91,93,95,97,100,101,102,103,105,106,107,108,112,113,114,115,116,120,122,123,126,128,129,130,133,137,140,141,144,148,150,153,154,156,160,166,171,175,180,185,188,190,201,207,214,224,241,247,254,269,270,271,273,277,279,280,294,296,298,307,312,316,330,332,340,351,353,360,362,366,372,375,388,396,403,416,438],pointer:[0,80,97,106],pointless:[36,47,54,187],poison:[121,251,256,299],pole:238,polici:[116,154,157,245,286,356,360],polish:63,polit:[77,116,122,157],poll:[61,133,177,267,312,341],pommel:[122,208],pong:324,pool:[20,47,145,307,357,369],poor:99,poorli:157,pop:[7,54,84,91,99,105,145],popen:322,popul:[2,72,76,98,100,103,120,145,173,181,182,183,184,202,204,207,214,222,238,241,249,254,255,256,257,258,263,266,267,268,269,273,306,307,343,366,370,371,373,396,403],popular:[68,75,77,87,98,110,118,143,157,159,432],popup:51,port:[2,5,74,75,86,118,144,145,147,148,150,152,156,161,167,185,321,324,332,344,353,357],portal:[5,7,9,24,36,42,43,51,52,61,67,85,111,112,137,143,154,157,161,163,164,167,190,205,308,309,312,350,351,352,353,376,381,388,440],portal_connect:353,portal_disconnect:353,portal_disconnect_al:353,portal_l:322,portal_pid:[322,388],portal_receive_adminserver2port:322,portal_receive_launcher2port:322,portal_receive_server2port:322,portal_receive_statu:322,portal_reset_serv:353,portal_restart_serv:353,portal_run:312,portal_service_plugin_modul:61,portal_services_plugin:[43,61,112],portal_services_plugin_modul:61,portal_sess:61,portal_session_sync:353,portal_sessions_sync:353,portal_shutdown:353,portal_st:312,portal_uptim:376,portallogobserv:381,portalsess:[44,61,330],portalsessiondata:353,portalsessionhandl:[61,163,164,308,320,331,353],portalsessionsdata:353,portion:[199,202,225],portuges:63,pos:[216,280],pose:[93,99,107,121,122,128,166,186,214,230,241,263],pose_transform:194,posgresql:145,posit:[14,27,41,51,76,80,81,82,95,106,108,116,121,128,138,174,192,199,202,212,214,216,237,258,268,269,270,271,279,280,282,294,306,365,366,369,370,374,388,389],position:216,position_prep_map:216,positive_integ:389,positiveinteg:382,posix:[381,388],possess:224,possibl:[0,5,8,9,11,13,18,20,22,26,27,29,30,31,32,34,40,41,43,44,46,50,52,53,54,59,62,74,75,76,79,81,83,84,86,87,91,95,98,99,106,110,111,112,115,116,119,121,122,123,125,126,128,129,133,138,141,145,148,153,156,163,166,169,171,173,180,187,188,199,201,207,216,222,229,238,240,241,249,251,267,269,271,279,280,282,287,290,294,297,298,299,303,307,317,337,341,351,353,360,361,363,365,368,370,371,372,374,384,385,388,391,405],post:[18,20,32,45,49,53,63,81,83,86,88,98,99,101,118,120,133,136,140,148,151,155,245,305,341,412,433],post_craft:[78,207],post_delet:45,post_init:45,post_join_channel:[18,194],post_leave_channel:[18,194],post_migr:45,post_sav:45,post_send_messag:194,post_text:225,post_url_continu:[395,397,400],postfix:240,postgr:[87,145],postgresql:388,postgresql_psycopg2:145,postinit:51,posttext:223,postupd:[136,151],pot:[55,109],potato:[146,270],potenti:[0,13,14,29,54,59,64,78,81,104,116,121,122,128,129,154,155,175,195,245,246,289,290,294,298,382,385,388],potion:[117,121,122,216,362],pow:29,power:[3,16,20,22,26,27,29,34,36,38,40,50,51,53,57,79,81,86,87,93,94,97,99,108,110,114,115,116,117,119,121,122,125,128,129,173,174,179,180,252,257,270,287,366,372,388],powerfulli:74,ppart:391,pperm:[18,32,38,55,113,140,151,177,185,238,289,294],pperm_abov:289,pprofil:312,pprogram:312,practial:16,practic:[0,2,11,14,15,22,36,40,41,44,50,74,76,77,83,87,88,93,98,99,113,114,115,116,117,121,122,125,138,148,150,154,280,366],pre:[22,36,49,80,81,120,122,147,148,151,154,166,180,187,207,240,290,294,298,299,340,341,344,370,375,384],pre_craft:[78,207],pre_delet:45,pre_init:45,pre_join_channel:[18,194],pre_leave_channel:[18,194],pre_migr:45,pre_sav:[45,384],pre_send_messag:194,pre_text:225,preced:[20,40,57,59,82,125,173,175,252,294,299,361,374],preceed:[29,108],precend:171,precis:[13,41,138,207,365],predefin:[137,356],predict:[48,115,123,140],prefer:[7,11,18,20,32,40,51,76,81,83,86,88,90,98,106,112,114,118,129,145,151,154,173,175,178,202,241,255,267,280,285,287,294],prefix:[3,6,18,48,66,76,145,157,166,172,189,194,225,240,317,324,355,365,375,381,385,388,396,397,399,401,403,407,427],prefix_str:91,preload_metadata:199,prelogout_loc:113,prematur:[5,19,41,201],premis:214,prep:214,prepai:154,prepar:[8,35,40,52,80,82,98,131,166,185,241,254,255,256,257,258,267,302,369,384],prepars:84,prepend:[234,241,294,365,366,372,375,388],prepopul:[396,403,436,438],preposit:216,preprocess:180,prerequisit:[2,75],prescrib:[86,98,121],presen:29,presenc:[17,29,75,82,86,97,112,113,133,138,145,154,166,294,357,393],present:[3,6,11,27,30,43,44,49,53,76,77,79,80,89,100,101,105,106,120,121,128,129,144,202,223,225,239,240,249,252,270,299,370,388,391,392,396,410],present_participl:392,preserv:[138,188,362,365,366,381,388],preset:375,press:[0,3,7,15,16,20,22,27,32,64,67,75,76,108,112,115,118,148,156,161,202,216,263,268,310,372,400],pressur:104,presto:108,presum:[34,100,126,174,381,382],pretend:153,pretext:223,pretti:[0,11,36,41,50,67,74,76,83,84,87,91,95,105,113,115,116,119,120,128,129,137,138,140,152,154,175,194,204,221,239,251,283,290,298,371,373,382,388],prettier:[5,74,427],prettifi:[98,388],prettili:100,pretty_corn:374,prettyt:[19,104,374],prev:[27,125,373],prev_entri:27,prevent:[13,22,79,84,100,108,115,199,229,258,270,355,373,396,433],preview:84,previou:[3,13,15,20,22,27,28,29,30,32,35,43,45,49,53,54,56,59,66,74,76,93,99,100,101,105,106,107,110,111,113,114,115,119,122,125,127,129,138,156,185,251,252,269,296,372,381,435],previous:[8,20,26,31,41,43,53,59,80,82,106,108,114,133,140,150,152,175,178,180,185,194,201,281,317,333,337,344,353,363,388],previu:41,prgmr:154,price:[122,154,199,268],primadonna:30,primari:[17,48,113,140,156,241,294,360,385],primarili:[2,12,55,68,83,84,86,120,121,166,201,241,285,287,330,369,388],primarli:84,primary_kei:140,prime:[171,201],primer:[53,54],primit:[122,180],princess:[81,119],princip:123,principl:[0,12,18,22,27,29,32,34,36,50,57,61,75,78,83,84,94,98,105,110,112,113,116,121,122,129,139,154,155,174,177,201,269],print:[0,3,4,5,6,13,19,26,27,41,48,54,61,66,69,75,89,90,91,99,106,110,113,115,116,161,177,211,240,251,270,279,298,311,312,371,372,373,374,381,388],print_debug_info:372,print_help:270,print_stat:5,print_usag:270,printabl:338,printable_order_list:279,printout:[116,335],prio:[20,22,91,113,171,269],prior:[134,229,294],priorit:[82,240,280],prioriti:[6,20,22,27,82,89,91,96,125,128,173,177,181,182,183,184,188,202,214,266,268,269,294,370,372,373],prison:[110,120],privat:[11,18,84,89,98,101,120,122,144,145,154,185,186,324,337],private_set:75,privatestaticroot:357,priveleg:114,privileg:[82,90,120,129,145,148,149,152,155,186,241,271,282,294,362],privkei:150,privkeyfil:332,privmsg:324,prize:119,proactiv:47,probabl:[5,9,13,22,27,30,36,41,49,50,53,56,66,68,76,79,82,83,86,87,89,90,91,93,98,101,105,113,122,125,128,133,137,140,141,145,154,187,199,202,233,239,251,269,314,324,332,379,388,389],problem:[0,2,6,8,13,14,16,19,32,69,73,76,81,84,87,88,90,91,97,101,102,107,115,117,120,122,123,125,145,146,150,153,154,156,157,161,166,174,207,230,279,294,321,366,375],problemat:[91,388],proce:[15,16,63,137,138,156,185,339,431,433],procedur:[252,332,335],proceed:[11,388],process:[0,2,3,5,7,11,13,14,15,16,22,27,29,34,36,39,49,52,53,63,64,67,74,75,76,80,82,84,87,89,91,93,95,106,112,115,120,122,124,125,126,140,144,145,150,153,154,156,166,171,173,180,190,194,201,207,208,241,252,270,275,288,290,294,298,303,306,312,317,321,322,329,332,335,340,341,344,350,351,353,360,365,366,369,372,382,387,388,389,405,440],process_languag:241,process_recog:241,process_sdesc:241,processed_result:388,processor:[24,81,122,130,161,163,164,179,190,364,440],procpool:388,produc:[11,18,22,27,30,59,121,123,129,177,180,207,208,216,221,238,240,268,271,294,298,299,311,343,360,362,371,372,388],produce_weapon:268,producion:19,product:[0,2,5,7,9,11,52,53,72,145,154,157,159,343,346,372],production_set:75,prof:5,profess:110,profession:[68,87,98,115,122,123,131],profil:[1,149,163,164,169,223,308,440],profile_templ:223,profunc:40,prog:[270,391],progmat:97,program:[0,5,7,8,9,12,16,18,29,39,49,52,54,66,68,85,87,95,97,98,111,112,115,116,119,123,124,125,143,145,148,150,153,154,156,157,161,190,270,308,312,335,341,343],programiz:95,programm:[106,118,123],progress:[11,88,105,126,143,217,219,254,255,256,257,258,280,370],proident:28,project:[8,11,16,68,72,77,80,81,83,87,89,91,106,123,133,143,152,382,439],projectil:257,promin:30,promis:0,promisqu:138,prompt:[0,3,48,51,64,67,75,81,87,102,115,118,145,146,147,148,153,156,160,175,191,252,310,324,335,340,341,366,372,440],promptli:15,prone:[9,174,362],pronoun:224,pronounc:221,prop:120,propag:[144,173,316,384],proper:[2,8,11,16,19,29,30,51,72,87,90,95,96,97,98,105,106,120,121,122,125,128,129,140,145,156,157,180,191,201,202,231,240,371,375],properli:[7,8,9,10,11,29,33,48,68,73,75,93,99,100,101,134,138,140,175,199,201,246,269,277,289,306,307,332,388,398],properti:[4,6,8,14,30,32,33,35,40,41,43,47,53,66,76,78,81,85,86,91,95,97,98,103,107,111,113,117,122,126,128,129,137,138,161,166,167,169,175,177,180,188,190,191,194,196,199,202,207,214,216,217,223,229,238,241,250,251,252,254,256,257,258,263,267,268,269,270,271,280,281,282,284,286,287,289,290,293,294,298,299,302,304,305,306,317,319,324,330,343,344,351,352,353,360,362,363,367,369,372,375,382,383,384,385,388,395,396,397,399,400,401,402,403,410,427,437],propnam:129,propos:26,proprietari:145,propval:129,propvalu:129,prose:123,prosimii:[140,141],prospect:[120,207],prot:299,prot_func_modul:[40,297],protect:[5,20,154,180,208,263],protfunc:[163,164,295,298,299,375],protfunc_callable_protkei:297,protfunc_modul:298,protfunc_pars:298,protfunct:298,protkei:[40,297,298],proto:[321,332],proto_def:238,protocol:[19,22,24,31,39,43,44,51,60,64,85,87,111,112,123,143,146,152,154,157,161,166,167,175,178,224,245,262,294,308,309,312,314,317,321,322,323,324,325,326,327,328,330,331,332,334,335,336,337,339,340,341,343,350,351,352,353,370,384,388,440],protocol_flag:[334,335,339,351],protocol_kei:352,protocol_path:[330,353],protodef:238,prototocol:190,protototyp:[296,298,299],protototype_tag:40,prototoyp:297,prototyp:[24,29,78,79,85,111,112,120,136,163,164,180,190,197,207,238,255,256,268,272,279,280,281,440],prototype1:299,prototype2:299,prototype_:40,prototype_desc:[40,299],prototype_dict:180,prototype_diff:299,prototype_diff_from_object:299,prototype_from_object:299,prototype_kei:[40,78,82,180,207,298,299],prototype_keykei:180,prototype_lock:[40,299],prototype_modul:[40,82,180,276,298,299],prototype_pagin:298,prototype_par:[40,82,180,276,299],prototype_tag:299,prototype_to_str:298,prototypeevmor:298,prototypefunc:299,protpar:[298,299],protpart:298,provid:[2,6,8,11,13,17,18,22,29,30,40,41,48,49,50,51,52,53,55,56,68,70,74,76,78,84,86,89,91,93,101,106,114,115,116,117,121,122,125,131,133,138,140,141,150,153,154,156,157,166,175,180,185,194,199,202,204,207,216,223,225,228,238,239,252,254,255,256,257,258,270,271,279,284,289,294,297,305,312,332,355,361,372,382,383,384,388,389,412,413,427,433,436,438],provok:[3,143],prowl:30,proxi:[48,111,150,157,159,199,357,396,403],proxypass:144,proxypassrevers:144,prudent:2,prune:20,pseudo:[61,68,77,80,106,239,240],psionic:257,psql:145,pstat:5,psycopg2:145,pty:75,pub:[185,194],pubkeyfil:332,publicli:[53,122,143,147],publish:[2,90,143,156],pudb:163,puff:97,pull:[2,9,11,20,22,29,52,53,83,84,87,91,112,123,133,156,233,268,314],pullrequest:83,pummel:119,punch:[20,107],punish:[122,258],puppet:[6,12,20,22,31,32,38,44,45,50,57,61,75,76,78,90,95,98,99,100,113,129,135,140,165,166,171,177,180,188,203,207,234,273,294,351,353,362,395,400,428,433],puppet_object:[12,166],puppeted_object:395,purchas:[105,150],pure:[48,59,67,79,97,122,138,150,302,312,360,365],pure_ascii:388,purg:[13,48,161,190],purpos:[13,39,46,64,89,110,116,129,138,140,150,154,167,171,175,211,221,229,280,332,360,369,372,388],pursu:[119,267],push:[76,84,114,138,156,157,216,233,263,268],pushd:148,put:[3,7,8,12,14,15,22,26,27,32,35,36,38,40,43,44,48,49,53,54,55,57,59,64,66,71,72,74,78,79,80,81,82,83,84,87,88,90,91,98,99,105,107,108,112,114,115,117,120,121,123,125,126,128,129,131,133,137,140,143,145,154,157,159,174,177,178,180,182,186,200,203,204,207,208,221,223,225,241,252,254,255,256,257,258,260,290,321,335,373,374,388,440],putti:154,puzzl:[78,119,143,163,164,197,207,268,269],puzzle_desc:268,puzzle_kei:269,puzzle_nam:238,puzzle_valu:269,puzzleedit:238,puzzlerecip:238,puzzlesystemcmdset:238,pvp:120,pwd:[5,156],py3:321,pyc:112,pycharm:[1,84,118,440],pyflak:0,pylint:0,pyopenssl:149,pypath:388,pypath_prefix:388,pypath_to_realpath:388,pypi:[5,87,143,154,365],pypiwin32:[75,148],pyprof2calltre:5,pyramid:271,pyramidmapprovid:271,pyself:121,python2:[6,75,148],python37:148,python3:[87,148,153,251],python:[3,5,6,7,8,9,10,12,13,15,16,19,20,22,26,27,29,30,32,34,36,40,43,48,49,50,52,53,54,55,57,59,62,63,66,68,69,70,72,74,75,76,79,80,81,82,83,84,85,87,89,90,93,95,97,99,100,101,102,104,105,106,107,108,109,110,111,113,114,117,118,121,122,123,124,125,126,127,128,129,130,131,132,135,140,141,145,148,149,152,153,154,155,156,157,160,161,172,174,179,180,184,190,191,202,207,211,227,228,229,230,231,233,239,270,271,281,284,290,293,297,299,304,307,312,314,321,325,330,340,351,353,357,359,361,362,365,366,368,369,370,371,372,374,375,376,379,381,384,388,405,410,416,439,440],python_execut:87,python_path:[174,388],pythonista:143,pythonpath:[174,312,322,366],pytz:389,q_lycantrop:110,q_moonlit:110,q_recently_bitten:110,qualiti:[120,122,172],queen:82,quell:[12,107,108,113,115,119,125,137,177,247],quell_color:180,queri:[11,13,29,40,46,49,56,64,66,82,87,95,97,102,117,118,125,169,185,187,196,241,282,285,286,287,293,294,298,299,302,319,332,347,360,361,362,363,373,375,380,385,388,389,440],query_al:360,query_categori:360,query_info:312,query_kei:360,query_statu:312,query_util:407,queryset:[41,46,87,195,217,234,281,282,285,298,318,361,373,385,396,403,407,413,432,433,435,438],queryset_maxs:373,querystr:407,querystring_auth:199,querystring_expir:199,quest:[77,86,98,102,119,120,121,123,127,134,148,269],question:[0,8,11,22,26,27,54,72,76,98,120,122,123,124,126,144,148,150,154,180,191,293,309,310,360,370,372,388],queu:312,queue:[2,128,357],qui:28,quick:[6,20,22,34,41,46,68,73,76,84,86,95,106,115,116,120,128,143,154,159,167,180,202,240,284,299,317,360,363,374,412],quicker:[35,66,74,83,122],quickli:[9,13,16,22,27,34,36,46,54,59,66,82,91,95,122,123,133,136,159,180,202,219,221,240,363,366],quickstart:[6,43,63,66,84,99,153,154,156,161,439,440],quiescentcallback:314,quiet:[82,91,105,117,166,178,180,185,202,204,241,273,294,373,388],quiethttp11clientfactori:314,quietli:[29,64,67,93,360],quirk:[1,146,174,440],quit:[3,5,8,9,12,17,22,26,27,44,54,61,74,76,79,82,84,86,89,90,94,95,98,105,107,108,110,113,115,116,117,119,122,125,140,145,147,150,153,177,192,202,212,214,219,223,229,257,332,370,372,373],quitfunc:[26,370],quitfunc_arg:370,quitsave_yesno:370,quo:47,quot:[19,25,26,32,40,115,121,135,145,180,192,212,241,370,372,384,388],qux:252,ra4d24e8a3cab:25,rabbit:122,race:[86,97,120,126,134,140,143,144,388],rack:[208,268],radio:[18,122],radiu:[80,81,95],rage:[119,251],ragetrait:251,rail:[87,137],railroad:137,railwai:280,rain:[41,119,122,139],raini:269,rais:[16,19,22,29,40,54,64,78,101,106,110,126,141,166,167,191,195,199,202,207,211,222,227,229,230,239,240,241,251,279,280,281,282,290,297,298,307,311,312,330,335,341,356,360,361,363,365,366,368,371,372,374,375,381,382,383,384,388,389,408],raise_error:[29,375,383,388],raise_except:[207,360],ram:[13,154],ramalho:143,ran:[2,3,8,14,115,305],rand:41,randint:[29,40,78,106,113,126,128,129,136,254,255,256,257,258,299,375],random:[25,29,40,41,43,75,78,79,106,108,113,119,121,122,126,128,129,136,139,154,208,221,239,240,254,255,256,257,258,260,263,264,268,269,271,299,343,344,375,388],random_string_from_modul:388,random_string_gener:[163,164,197],randomli:[5,41,66,136,139,254,255,256,257,258,263,267,268,312,344,375],randomstringgener:239,randomstringgeneratorscript:239,rang:[3,5,8,20,26,40,67,77,80,81,82,95,97,106,108,119,121,128,135,136,146,148,157,180,210,223,250,251,255,258,277,279,282,361,370,375,427,438],rank:[57,289],raph:143,raphkost:143,rapidli:174,rapier:110,raptur:336,rare:[7,9,22,43,47,54,66,76,84,148,185,281,290,368],rascal:46,rase:209,rate:[5,22,83,87,121,154,163,164,185,197,307,312,331,388],ratetarget:[121,250,251],rather:[0,6,8,9,11,12,13,14,22,30,36,41,43,46,47,53,66,71,72,76,77,78,81,82,83,84,86,87,91,93,95,98,106,108,112,115,117,118,121,122,125,128,131,141,150,151,161,166,169,173,177,180,181,185,187,188,190,194,201,225,229,237,241,251,254,255,256,257,258,280,283,294,296,298,299,360,362,365,374,383,384,387,396,403,436],ration:[121,201],raw:[22,31,40,55,59,64,66,84,87,97,108,115,116,118,122,131,166,172,175,180,188,189,191,241,245,251,270,294,317,332,335,340,341,351,360,365,370,372,382,388],raw_cmdnam:[107,172,189],raw_desc:222,raw_id_field:[397,400,401],raw_input:[105,372],raw_nick:35,raw_str:[22,27,105,107,166,167,171,172,175,191,215,223,252,266,294,296,351,360,372],raw_templ:35,rawhid:208,rawhiderecip:208,rawstr:[175,191],rcannot:76,rdelet:190,re_bg:387,re_bgfg:387,re_blink:387,re_bold:387,re_color:387,re_dblspac:387,re_double_spac:387,re_fg:387,re_format:365,re_hilit:387,re_invers:387,re_mxplink:387,re_mxpurl:387,re_norm:387,re_str:387,re_ulin:387,re_underlin:387,re_unhilit:387,re_url:387,reach:[27,35,63,67,76,82,95,107,108,119,125,126,137,154,163,175,223,227,251,258,280,332,336,355,372,373,385,439],reachabl:[47,87,279],react:[27,47,52,134,135,267,294],reactiv:190,reactor:[323,350,357,386],read:[5,8,9,11,13,14,16,17,19,20,22,27,29,30,32,34,40,43,44,49,53,56,63,66,67,70,74,75,76,79,82,83,84,86,87,88,89,91,93,95,97,99,101,105,106,107,108,110,111,112,113,114,115,116,119,121,122,123,125,129,138,140,141,143,144,145,151,152,154,157,160,166,169,179,186,187,196,199,202,216,222,225,233,234,239,241,251,268,269,279,280,284,286,293,294,298,299,302,319,321,344,360,362,363,366,367,371,373,380,381,395,432],read_batchfil:366,read_default_fil:2,read_flag:216,read_only_field:410,readabl:[5,19,47,48,59,68,80,84,187,200,207,216,268,279,365,372],readable_text:268,reader:[31,84,99,103,125,140,143,155,185,225,258,317,331],readi:[2,3,5,7,11,12,16,32,36,54,55,61,83,91,93,108,112,113,123,133,137,147,148,153,166,175,241,254,255,256,257,258,294,341,373,382,388],readili:[81,145],readin:371,readlin:[199,381],readm:[10,11,15,79,83,112,197,199,245],readonly_field:[395,397,400,401],readonlypasswordhashfield:395,readthedoc:[143,407],real:[3,4,5,11,12,19,20,29,36,40,48,54,62,68,76,79,81,84,86,90,95,99,100,110,115,116,122,126,128,129,130,138,148,150,152,154,156,161,169,174,196,201,208,210,240,241,256,280,281,289,343,366,375,376],real_address:12,real_nam:12,real_seconds_until:[210,376],real_word:240,realist:[5,8,122,123,139,216],realiti:[5,81,86,90,97,120,138,143],realiz:[11,113,138],realli:[0,3,4,8,9,13,14,15,18,20,22,27,29,32,36,41,43,46,47,49,54,55,57,68,76,81,82,84,87,89,91,95,99,100,105,106,107,108,113,114,116,117,121,123,125,135,137,150,152,155,161,175,191,201,202,203,252,270,280,290,321,365,366,372,384],really_all_weapon:110,realm:332,realnam:36,realpython:54,realtim:[99,112,210],realtime_to_gametim:210,reason:[5,6,7,11,13,14,18,27,30,32,34,35,36,40,41,43,47,50,55,59,61,64,66,71,75,76,78,80,82,83,84,87,91,93,95,96,97,98,99,101,104,107,113,114,120,122,123,125,126,128,138,144,148,150,157,166,178,180,185,190,207,212,217,239,240,251,279,280,294,298,303,309,314,321,322,323,324,330,331,332,335,340,341,343,351,352,353,362,370,375,381,388,438],reasourc:40,reassign:80,reattach:[7,323,324],rebas:11,reboot:[9,13,19,26,33,41,44,47,66,86,92,112,128,150,154,156,160,166,174,185,190,205,223,251,267,268,294,302,303,305,307,312,352,353,370,372],reboot_evennia:312,rebuild:[9,82,99,148,150,156,281,324],rebuilt:[22,82,150,279],rec:241,recach:269,recal:[268,432],recaptcha:140,receipt:[157,314],receiv:[3,8,18,20,22,27,28,29,34,35,44,51,52,64,69,78,83,99,106,112,134,140,166,173,174,191,192,194,195,196,212,217,234,241,245,251,279,294,314,317,321,323,324,330,340,341,343,350,351,368,373,375,385,388,397],receive_functioncal:321,receive_status_from_port:312,receiver1:191,receiver2:191,receiver_account_set:169,receiver_extern:196,receiver_object_set:293,receiver_script_set:302,recent:[17,53,89,91,110,129,150,355],recently_bitten:110,recev:341,recip:[47,74,92,122,163,164,197,206,208,209,238],recipe_modul:207,recipe_nam:207,recipenam:78,recipes_pot:207,recipes_weapon:207,recipi:[18,29,34,99,166,194,195,234,294,321,375],reckon:[75,77],recoc:121,recog:[35,77,121,241],recog_regex:241,recogerror:241,recoghandl:241,recogn:[8,31,36,56,107,108,116,122,141,148,154,161,241,251,357],recognit:[123,241,360],recommend:[0,2,5,8,11,27,36,40,48,55,66,67,68,72,75,82,83,84,86,91,99,101,102,109,115,120,122,126,143,145,146,148,154,160,190,225,229,244,251,270,279,290,294,314,366,372,385],recommonmark:84,reconfigur:154,reconnect:[166,167,185,194,309,312,321,323,324,350,353],reconnectingclientfactori:[309,323,324,343],record:[16,129,145,154,245,258,355,427],record_ip:355,recours:55,recov:[19,92,93,97,251,254,255,256,257,258,290,388],recoveri:128,recreat:[9,41,81,112,145,148,167,174,281,366,367],rectangl:371,rectangular:[99,371],recur:87,recurs:[13,280,289,298],red:[14,15,20,35,38,40,53,59,82,108,112,114,115,116,138,180,190,216,263,268,365,375,389],red_button:[14,15,35,108,112,163,164,180,197,259],red_kei:38,red_ros:110,redbutton:[14,15,35,108,112,180,263],redd:157,reddit:157,redefin:[22,36,76,86,294,427],redhat:[148,150],redirect:[44,53,61,72,76,101,112,140,144,202,216,219,372,429,433,438],redirectlink:280,redirectview:433,redit:202,redmapnod:82,redo:[26,115,116,120,370],redon:316,redraw:332,reduc:[128,254,255,256,257,258,325],reduced_redund:199,reduct:199,redund:365,reel:174,reen:[59,365],ref:[48,84,145,241,294,388,427],refactor:[98,294,391,439],refer:[7,8,10,11,14,20,22,27,29,35,36,40,41,43,44,48,53,57,61,66,67,71,74,75,76,78,79,80,81,83,87,97,98,100,101,102,107,110,112,113,114,115,116,118,121,122,123,126,128,138,140,141,143,144,154,156,161,166,174,180,185,189,194,201,208,219,223,239,241,254,255,256,257,258,273,279,282,289,294,304,306,307,314,324,344,352,361,372,375,379,384,385,388,396,403,438,439],referenc:[36,40,43,50,97,180,185,194,199,241,279,286,362,388],referenti:388,referr:154,refin:[80,208],reflect:[115,119,121,438],reflow:56,reformat:[299,374,381],reformat_cel:374,reformat_column:[81,374],refresh:[0,53,82,141,332,355],refus:[18,55,122],regain:93,regard:[8,138,239,407],regardless:[8,20,22,38,44,48,55,57,64,99,103,120,126,137,166,173,194,201,216,224,241,294,307,329,332,335,350,352,360,363,366,379,381,388],regener:256,regex:[18,22,26,35,51,53,175,178,190,191,205,239,241,356,360,372,388,416],regex_nick:35,regex_tupl:241,regex_tuple_from_key_alia:241,regexfield:395,region:[73,82,99,154,178],region_nam:199,regist:[11,43,51,52,53,64,72,82,128,136,140,149,151,157,159,166,185,233,267,268,303,312,323,324,330,353,355,357,365,375,412,418,428,431],register_error:365,register_ev:233,registercompon:51,registertest:428,registr:[49,149,431],registrar:150,registri:[239,355,357],regress:298,regul:290,regular:[17,18,22,30,34,41,44,47,50,52,72,82,84,101,108,109,110,112,115,116,120,125,131,139,141,143,154,167,173,204,238,239,269,280,284,290,307,360,363,375,379,388,416,439],regulararticl:380,regulararticle_set:380,regularcategori:380,regularli:[9,105,136,139,150,155,210,267,269,305,307,315,345,376],reilli:143,reinforc:143,reiniti:161,reinstal:148,reinvent:98,reject:[223,239],rejectedregex:239,rejoin:18,rel:[11,14,15,20,27,30,43,50,54,57,76,80,82,104,122,129,140,210,216,258,366,372],relai:[19,22,44,152,166,185,201,224,279,294,330,353,372,373,388],relat:[18,20,22,27,30,43,48,51,53,92,97,98,110,112,113,116,122,125,139,143,152,157,161,169,170,173,188,193,195,196,210,215,216,217,233,245,254,255,256,257,258,266,269,279,280,286,293,294,302,307,317,353,360,362,363,365,372,380,381,393,395,396,403,410,420,427],related_field:[395,396,397,399,400,401,403],related_nam:[169,196,286,293,302,360,362,363,380],relationship:[34,48,80],relay:167,releas:[75,77,83,86,92,112,123,142,143,148,154,190,439],relev:[13,15,22,32,36,45,46,48,50,53,59,72,73,75,76,82,83,84,94,99,100,125,128,129,131,140,143,166,171,173,201,202,207,251,280,290,304,326,344,351,352,353,365,370,372,382,396,403],relevant_choic:202,reli:[8,27,47,59,66,67,72,75,88,100,103,105,106,117,122,138,224,241,251,269,312,362,372],reliabl:[14,48,91,93,145,379],religion:[30,284],reload:[0,2,3,7,9,12,14,15,19,20,22,25,26,27,30,31,39,41,43,44,47,48,50,52,53,55,57,61,62,72,74,76,78,82,90,92,93,95,96,98,99,100,101,103,107,112,113,114,115,125,126,128,129,131,133,134,135,137,140,141,148,149,150,151,155,166,167,174,179,180,190,194,202,203,211,212,222,230,237,241,247,248,251,268,269,271,279,281,284,290,294,303,305,307,312,321,322,324,326,350,353,357,360,366,368,370,371,372,376,388,440],reload_evennia:312,reluct:122,remain:[6,14,20,22,26,27,40,41,45,57,69,94,99,106,112,113,114,125,154,161,172,174,180,182,186,203,207,210,219,222,240,254,255,256,257,258,267,294,312,340,341,372,373,388],remaind:[22,90,210],remaining_repeat:41,remap:[84,115,360],rememb:[1,5,6,9,11,13,14,20,22,27,30,38,46,47,51,53,55,59,66,67,74,76,80,81,82,89,90,92,93,95,97,99,100,101,106,113,115,117,119,120,121,122,123,125,129,138,147,148,154,178,180,203,229,280,294,303,366,385],remind:[26,74,84,89],remit:178,remnisc:98,remot:[91,150,156,157,159,185,199,321,323,335],remov:[2,8,9,11,13,18,19,20,23,26,27,29,30,33,35,36,38,41,47,55,74,75,76,82,86,89,90,95,99,101,103,105,106,107,112,113,119,122,128,133,140,155,163,173,174,178,180,185,186,187,190,191,194,196,202,204,208,216,221,222,223,227,231,238,239,240,241,250,251,252,254,255,256,257,258,263,280,281,290,293,294,299,303,306,307,312,330,341,353,355,360,363,365,369,372,379,384,386,387,388,413],remove_alia:185,remove_backspac:387,remove_bel:387,remove_charact:128,remove_default:[20,174],remove_map:281,remove_object:281,remove_receiv:196,remove_send:196,remove_user_channel_alia:[18,194],removeth:360,renam:[5,75,99,103,107,108,115,116,125,133,180,186,294,362],render:[45,52,53,76,84,101,103,131,133,140,141,187,225,357,382,384,395,396,397,399,400,401,403,410,416,425,427,438],render_post:341,renew:[93,99,150,355],repair:[90,120],repeat:[3,5,67,74,81,100,115,120,122,128,133,135,137,153,161,166,167,201,210,239,252,302,305,312,317,336,360,368,372,376,388],repeatedli:[3,15,31,100,112,267,302,305,307,312,317,343,420],repeatlist:31,repetit:[77,100,128,239],replac:[2,18,20,22,26,27,29,30,31,32,35,36,40,43,44,49,51,59,72,75,76,77,81,82,84,91,93,94,98,101,102,107,112,115,117,118,121,125,128,133,141,145,150,156,166,172,173,174,175,178,186,187,190,191,194,201,203,205,207,212,215,221,222,223,227,230,237,238,240,241,263,266,269,270,279,280,290,294,296,298,299,324,327,340,341,351,360,365,370,371,372,374,375,387,388,416,418],replace_data:374,replace_timeslot:222,replace_whitespac:374,replacement_str:186,replacement_templ:186,replenish:[254,255,256,257,258],repli:[22,27,122,149,167,201,234,310,334,335,341,353,372],replic:[76,123,133],replica:113,repo:[7,11,63,84,98,111,120,143,388],repoint:53,report:[0,5,6,8,11,22,33,41,43,47,76,77,78,82,83,88,106,117,120,122,125,126,128,133,145,146,148,153,157,180,185,207,227,230,241,270,280,294,312,317,324,327,328,335,336,340,343,351,353,365,368,372,388],report_to:368,repositori:[2,10,63,75,77,91,111,142,144,145,156,299],repositri:63,repr:[106,388],reprehenderit:28,repres:[8,12,20,22,29,30,34,36,44,45,48,53,61,66,69,74,75,76,79,80,82,85,87,90,91,97,100,101,107,108,110,111,112,113,114,116,118,123,128,133,138,140,166,171,195,204,219,223,225,227,233,239,240,241,245,247,251,252,256,268,269,270,279,280,281,284,294,299,306,307,309,323,324,340,341,351,352,353,357,360,361,365,367,368,372,373,374,375,384,388,391,413],represen:113,represent:[12,13,29,34,35,44,61,66,67,69,87,92,99,113,126,138,195,227,230,241,279,298,302,321,340,341,363,369,376,410],reprocess:157,reproduc:[54,82,280,294],reput:[120,244],reqhash:[361,388],reqiur:223,request:[0,11,27,32,45,49,52,53,61,72,83,101,112,116,129,131,140,141,144,148,154,157,166,167,178,201,230,294,298,312,314,321,324,326,331,332,334,341,357,363,372,395,396,397,398,400,401,403,407,408,413,418,419,420,421,425,432,434,435,438],request_finish:45,request_start:45,requestavatarid:332,requestfactori:357,requestor:[166,355],requir:[2,5,8,13,15,16,22,26,29,30,32,33,36,38,40,47,48,49,50,51,52,53,54,58,66,71,75,76,77,78,79,80,81,82,83,84,89,99,101,105,107,120,122,123,125,128,133,135,138,139,140,141,142,143,144,145,147,150,151,153,154,159,161,179,180,185,190,195,196,199,207,208,211,212,222,223,237,239,241,251,252,256,257,269,270,279,280,282,285,289,294,298,306,312,323,324,337,345,356,361,366,371,372,373,374,375,379,383,384,385,388,395,396,397,399,400,401,403,427,433],require_singl:298,requirements_extra:0,requr:40,requri:[298,375],rerout:[52,177,181,324,404],rerun:[14,15,27,82,207],research:[122,143,229],resembl:[71,86,91],resend:22,reserv:[22,29,54,81,107,113,115,298,356,361,375,388],reserved_keyword:29,reserved_kwarg:[29,375],reset:[16,17,19,20,22,26,41,43,44,48,55,59,62,74,81,93,96,103,107,112,121,126,128,129,137,138,145,166,167,174,180,190,210,214,216,230,241,250,251,268,290,312,316,322,332,350,360,363,366,374,375,376,386,388],reset_cach:[360,363],reset_callcount:41,reset_gametim:[19,376],reset_serv:316,reset_tim:222,resid:[68,111,290],residu:[190,256],resist:[299,388],resiz:[52,99,371,374],resolut:[122,128,251,279],resolv:[0,3,11,43,93,102,115,116,122,123,128,154,238,254,255,256,257,258,410],resolve_attack:[254,255,256,257,258],resolve_combat:128,resort:[22,99,147,185,241,388],resourc:[0,8,47,49,52,53,68,72,75,84,85,92,97,107,110,111,112,113,114,115,116,117,122,133,145,154,157,251,257,278,287,303,310,341,357,367,386,439],respawn:[82,120],respect:[22,32,41,43,44,48,49,74,78,82,99,114,125,129,145,178,180,187,201,207,234,238,241,248,290,294,351,352,362,363,366,368,374,385,388,427],respond:[27,33,45,64,74,79,112,120,134,135,138,161,339,343],respons:[5,17,27,29,30,49,52,53,54,56,67,80,83,87,88,105,106,135,136,137,148,154,166,167,174,185,194,207,269,271,286,294,310,312,314,321,343,344,353,362,382,384,388,410],response_add:[395,397,400],resport:388,rest:[7,17,18,22,27,29,35,41,43,52,53,66,81,93,97,104,105,112,113,115,116,119,120,122,126,129,148,160,172,188,189,251,254,255,256,257,258,360,365,374,407,408,410,411,412,413],rest_api_en:49,rest_framework:[49,407,408,409,410,411,413],restart:[0,3,7,9,11,39,43,51,55,63,72,99,113,116,128,145,150,154,157,161,163,166,190,194,202,205,230,294,303,305,306,307,316,329,350,351,352,388],restartingwebsocketserverfactori:[167,323],restock:105,restor:[20,74,138,202,257,303,307],restrain:[180,251,289,371,388],restrict:[13,32,40,47,48,51,57,81,89,108,111,112,117,121,126,141,144,154,180,185,204,239,257,258,279,284,290,299,368,370,372,374,385],restructur:[84,97],result1:238,result2:[27,238],result:[6,8,11,13,19,20,22,27,29,30,32,40,43,44,47,49,52,54,59,63,67,72,78,82,84,94,96,99,106,107,110,111,113,114,115,117,121,122,125,126,128,129,133,135,138,141,145,154,166,172,173,175,180,187,191,194,196,201,207,208,209,211,216,223,238,239,240,241,244,251,254,255,256,257,258,269,279,280,285,287,290,294,298,299,312,321,343,360,362,365,370,371,372,374,375,379,381,382,385,388,389,391,405],result_nam:238,resum:[22,82,93,125,306],resurrect:267,resync:[167,321,351],ret1:375,ret:[22,191],ret_index:388,retain:[6,19,20,30,53,54,63,81,116,224,251,284,286,299,358,362,366,368,381,388],retext:84,retract:201,retreat:258,retri:312,retriev:[6,18,22,31,46,49,66,68,73,74,82,101,129,166,169,171,174,180,185,190,191,195,222,229,251,273,280,285,289,293,298,310,317,318,324,330,339,360,363,369,379,383,385,388,392,407,408,412,413,432,435,438],retriv:[167,367],retro:18,retroact:[48,99],retur:28,return_alias:280,return_appear:[80,82,129,204,216,217,222,241,262,268,282,294],return_apper:282,return_cmdset:187,return_detail:[222,269],return_dict:284,return_iter:298,return_key_and_categori:363,return_list:[29,360,363,375],return_map:81,return_minimap:81,return_obj:[13,35,360,363,383],return_par:299,return_prototyp:136,return_puppet:166,return_str:[29,279,375],return_tagobj:363,return_tupl:[35,211,360],returnvalu:[22,54],reus:[115,117,379],rev342453534:388,reveal:[82,119,204],reveng:123,reverend:199,revers:[20,22,53,59,81,93,95,137,138,141,169,185,196,250,271,279,286,293,302,357,360,362,363,365,380,413],reverseerror:[312,321],reversemanytoonedescriptor:[169,293,380],reverseproxyresourc:357,revert:[11,53,138,154,177,285],review:[9,20,72,74,83,87,107,121],revis:120,revisit:[2,372],reviu:27,revok:99,revolutionari:11,reward:127,rework:[93,113,120],rewrit:53,rfc1073:328,rfc858:334,rfc:[328,334],rfind:365,rgb:[59,115,365],rgbmatch:365,rgh:115,rhel:144,rhello:29,rhostmush:[68,71,98],rhs:[91,99,188,191],rhs_split:[180,186,188],rhslist:188,ricardo:388,riccardomurri:388,rich:[76,98,142,143,369],richard:143,rick:40,rid:[97,114],riddanc:55,riddick:223,ride:137,right:[0,3,4,5,8,9,15,22,27,29,31,32,35,40,41,49,51,52,53,54,63,74,78,79,81,82,84,86,90,91,92,93,95,97,98,99,105,106,107,110,111,112,113,115,116,119,120,123,125,129,134,137,138,140,141,144,145,148,150,153,154,174,177,180,188,190,194,199,203,207,214,216,222,223,225,230,231,238,258,263,267,268,269,271,279,280,290,299,302,352,365,366,370,374,388,389],right_justifi:40,rightmost:[82,280],rigid:98,rindex:365,ring:[117,240],rise:[20,100],risen:100,risk:[29,52,84,98,120,122,129,148,154,179,190,388],rival:81,rjust:[29,365,375],rm_attr:180,rnormal:59,rnote:190,road:[20,79,81,137,173],roam:[119,174,267],roar:81,robot:140,robust:[105,106,157],rock:[66,128,174],rocki:119,rod:174,role:[17,86,98,106,114,120,126,145,254],roleplai:[13,30,75,86,98,120,121,126,128,129,143,211,241,440],roll1:126,roll2:126,roll:[13,77,78,99,106,116,121,122,126,128,129,148,211,254,255,256,257,258,355],roll_challeng:126,roll_dic:211,roll_dmg:126,roll_hit:126,roll_init:[254,255,256,257,258],roll_result:211,roll_skil:126,roller:[78,121,122,126,128,207,211],rom:143,roof:180,room1:8,room56:14,room:[3,8,14,15,16,18,19,20,22,23,32,34,40,41,43,46,48,49,50,55,68,71,73,75,76,79,81,82,85,86,87,90,96,97,98,100,105,106,108,109,110,112,113,114,115,116,117,119,125,126,128,129,134,135,136,137,139,140,148,163,164,171,172,173,174,178,180,186,191,197,202,204,211,213,214,215,216,219,221,222,229,241,247,248,249,254,255,256,257,258,263,265,266,267,268,270,271,273,274,276,279,280,281,282,289,294,302,316,344,366,386,407,413,428,440],room_flag:97,room_lava:97,room_replac:214,room_typeclass:[271,386,428],room_x_coordin:82,room_y_coordin:82,room_z_coordin:82,roombuildingmenu:[76,202],roomnam:[99,180],roomref:137,rooms_with_five_object:110,roomstat:216,roomviewset:413,root:[0,2,4,5,6,7,9,10,14,32,36,53,66,72,75,76,84,85,87,101,103,111,133,141,142,145,148,150,153,154,156,163,164,268,294,299,312,357,369,393,406,418,440],rose:[13,35,36,48,109,110,117],roster:[75,121,254,255,256,257,258],rosterentri:75,rot:8,rotat:[18,112,216,381],rotate_flag:216,rotate_log_fil:381,rotatelength:381,rough:[84,120],roughli:[99,120,388],round:[5,17,29,240,251,258,343,374,375],rounder:240,rout:[51,80,82,97,108,137,166,273,279,280],router:[154,409,412],routerlink:82,routermaplink:[82,280],routin:[241,347,385,388],row:[51,56,59,66,74,80,81,84,87,99,101,110,128,131,138,279,282,374,388],rpcharact:241,rpcommand:241,rpg:[99,102,112,113,120,126,211,258],rpi:143,rplanguag:[121,163,164,197,241],rpm:148,rpobject:241,rpsystem:[84,121,163,164,197,237,240],rpsystemcmdset:241,rred:365,rsa:[332,333],rspli8t:106,rsplit:[129,365],rss2chan:[107,155,185],rss:[9,143,159,163,164,167,185,193,308,317,320,330,440],rss_enabl:[155,185],rss_rate:167,rss_update_interv:185,rss_url:[155,167,185],rssbot:167,rssbotfactori:331,rsschan:185,rssfactori:331,rssreader:331,rst:84,rstop:190,rstrip:[106,365],rsyslog:244,rtest2:59,rtext:[105,375],rthe:76,rthi:[59,115],rtype:357,rubbish:177,rubbl:82,rubi:87,rudimentari:267,ruin:[119,222,269],rule:[4,8,11,14,15,22,32,55,59,86,90,99,112,116,120,121,127,138,143,202,239,240,251,254,255,258,286,366,440],rulebook:[122,128],rumor:30,rumour:119,run:[0,2,5,6,9,10,11,12,13,14,15,16,18,19,20,25,27,29,30,32,38,39,40,41,43,47,48,49,50,51,52,53,54,61,63,66,70,74,75,77,79,81,82,84,85,87,90,91,92,93,97,98,100,101,103,105,106,107,108,110,112,113,114,115,116,118,119,120,121,122,123,125,126,129,131,133,137,138,139,140,141,143,144,145,146,147,148,150,152,154,157,160,161,163,166,167,171,172,174,175,179,180,185,186,187,190,191,194,207,215,230,231,241,244,248,251,252,254,255,256,257,258,266,271,279,280,289,290,294,298,299,302,305,306,307,312,316,318,322,329,330,337,341,343,346,350,351,355,357,362,365,366,370,372,373,375,376,381,385,386,388,413,438,439,440],run_async:[54,388],run_connect_wizard:312,run_custom_command:312,run_dummyrunn:312,run_evscaperoom_menu:215,run_exec:372,run_exec_then_goto:372,run_init_hook:350,run_initial_setup:350,run_menu:312,run_option_menu:215,run_start_hook:[48,362],rundown:118,runexec:372,runexec_kwarg:372,runnabl:40,runner:[2,5,7,268,343],runsnak:5,runsnakerun:5,runtest:[191,200,209,220,231,246,250,264,277,338,348,380,386,392,411,422,428],runtim:[19,22,55,100,175,202,270,376,388],runtimeerror:[126,166,167,207,227,230,233,239,240,251,278,281,298,330,360,372,375,388],runtimewarn:[278,298],rusernam:27,rush:93,russian:63,rusti:[49,105],ruv:2,ryou:76,s3boto3storag:199,s3boto3storagefil:199,s3boto3storagetest:200,s3boto3testcas:200,sad:[140,335,372],safe:[0,6,11,13,20,36,43,52,53,70,77,79,82,87,94,97,104,121,122,140,150,159,166,177,201,290,307,321,353,357,362,366,369,375,379,388],safe_convert_input:388,safe_convert_to_typ:[29,388],safe_ev:388,safe_join:199,safer:[14,55],safest:[44,74,154,362],safeti:[12,36,48,97,121,129,154,180,201,293,366],sai:[0,5,8,9,11,15,17,18,19,20,22,27,32,36,38,40,48,50,51,53,54,55,59,61,71,73,74,76,79,82,87,91,93,95,96,97,98,99,100,101,106,107,108,110,113,115,116,121,122,123,125,126,128,129,134,135,138,142,148,154,174,186,194,201,203,211,214,216,223,233,240,241,251,252,263,269,294,372,375],said:[0,8,27,46,54,64,74,76,79,80,81,89,96,98,106,113,115,121,122,135,141,172,185,189,241,271,279,294,324,362,372],sake:[14,72,98,115,120,122,123,138,192,212,437,438],sale:105,salt:[78,207],same:[0,3,5,6,7,8,9,11,12,13,14,15,16,18,19,20,22,26,29,30,31,32,33,34,36,40,41,43,44,46,47,48,50,52,53,54,55,56,57,59,61,62,63,64,66,67,68,69,74,75,76,77,81,82,83,84,86,87,90,92,93,96,98,99,100,101,103,105,106,107,108,110,111,112,113,114,115,116,117,122,123,125,126,128,129,133,137,138,140,141,142,145,148,150,154,155,156,160,161,166,171,172,173,174,175,178,180,185,188,189,190,191,199,200,202,204,207,210,216,217,221,222,225,229,230,234,239,240,241,247,249,251,252,254,255,256,257,258,267,269,270,271,273,280,282,284,289,294,298,299,302,303,307,316,321,333,336,337,351,352,353,355,357,360,361,362,363,365,366,368,372,373,374,375,376,381,382,388,391,396,403,413,427,438],sampl:[2,97,144,156,252],san:225,sand:[100,208],sandi:81,sane:[1,82,84,120,143,280,438],sanit:[427,438],saniti:[8,75,80,81,82,115,382],sarah:[71,186],sat:[73,90,216],satisfi:[68,188,360],satur:157,sauc:115,save:[2,3,6,11,16,19,22,26,27,33,34,35,36,40,41,44,45,46,47,48,50,53,66,74,75,76,79,87,90,93,97,107,109,112,113,115,128,129,140,146,147,150,156,157,161,166,177,180,190,194,196,200,202,230,240,290,293,294,296,298,299,303,305,306,307,310,317,330,345,350,357,360,362,369,370,379,382,383,384,388,395,396,397,400,401,403],save_a:[397,399,400,401,402],save_as_new:[396,403],save_buff:370,save_data:382,save_for_next:[22,175],save_handl:382,save_kwarg:383,save_model:[395,397,400,401],save_nam:307,save_on_top:[397,399,400,401,402],save_prototyp:298,save_recip:238,savefunc:[26,370,383],savehandl:383,saver:369,saverdict:369,saverlist:369,saverset:369,saveyesnocmdset:370,savvi:123,saw:[54,79,101,113,115],say_text:135,saytext:241,scale:[7,50,59,84,98,112,120,126,145,240,439],scalewai:154,scam:122,scan:[82,144,171,267,269,279,280,282],scarf:204,scari:[113,115],scatter:[256,366],scedul:376,scenario:[99,277],scene:[6,13,31,40,46,59,84,86,90,116,119,122,126,128,138,239,269,302,307,379],schedul:[19,100,210,230,306,376],schema:[11,48,66,87,89,388],scheme:[22,59,66,92,115,148,180,190,365],school:122,sci:82,scienc:80,scientif:143,scipi:280,scissor:[78,128],scm:75,scope:[31,50,86,87,93,120,121,122,125,141,239,368],score:[99,217,388],scraper:433,scratch:[9,10,53,61,79,98,99,121,122,129,133,148,215,251,281],scream:119,screen:[6,22,24,27,28,30,31,40,41,43,44,56,59,62,82,103,105,112,114,121,140,156,192,212,225,258,317,332,373,375,388,395,440],screenheight:[31,317],screenread:[31,317,340,341],screenshot:140,screenwidth:[31,175,317],script:[2,5,7,10,13,14,15,19,24,29,32,33,34,36,40,43,44,45,46,47,48,49,51,66,68,77,82,85,86,97,98,100,105,107,108,111,112,113,117,119,122,123,128,134,136,139,140,148,151,154,157,161,163,164,166,167,179,180,190,195,196,197,201,210,213,222,226,227,233,238,239,240,248,254,255,256,257,258,260,263,269,271,281,293,294,298,299,312,345,350,366,367,368,375,376,383,385,386,388,393,394,407,410,413,418,428,440],script_path:180,script_typeclass:[264,386,428],scriptadmin:401,scriptattributeinlin:401,scriptbas:305,scriptclass:304,scriptdb:[48,85,163,302,359,401,407,410],scriptdb_db_attribut:401,scriptdb_db_tag:401,scriptdb_set:[169,293,360,363],scriptdbfilterset:[407,413],scriptdbmanag:[301,302],scriptdbseri:[410,413],scriptdbviewset:413,scriptform:401,scripthandl:[163,164,300],scriptkei:180,scriptlistseri:[410,413],scriptmanag:301,scriptnam:367,scripttaginlin:401,scroll:[6,28,30,111,115,129,148,373],scrollback:18,scrub:353,sdesc:[77,97,121,237,241],sdesc_regex:241,sdescerror:241,sdeschandl:241,sdk:148,sea:[81,119],seal:121,seamless:241,seamlessli:39,search:[3,8,11,12,14,18,22,26,29,30,34,35,36,40,41,43,48,63,73,74,75,76,82,86,87,90,94,99,102,107,110,111,112,113,114,115,118,122,123,125,126,128,129,133,141,163,164,166,171,173,175,180,185,187,190,194,195,201,216,219,229,234,238,241,254,255,256,257,258,269,271,273,279,280,282,284,285,286,287,289,294,298,304,318,360,361,362,363,364,365,368,370,375,388,407,416,440],search_:[19,110,117],search_account:[45,99,117,163,294,385],search_account_tag:385,search_at_multimatch_input:294,search_at_result:[241,294],search_channel:[163,185,195,385],search_channel_tag:385,search_field:[187,395,397,399,400,401,402,403],search_for_obj:180,search_help:[30,163,285],search_help_entri:385,search_helpentri:285,search_index_entri:[175,177,178,179,180,185,186,187,188,189,190,191,192,201,202,203,204,207,211,212,214,222,223,224,228,234,237,238,241,247,248,249,252,254,255,256,257,258,263,267,268,269,270,273,284,286,287,294,343,370,372,373],search_messag:[34,163,195,385],search_mod:241,search_multimatch_regex:294,search_object:[13,14,18,19,48,81,113,115,117,137,163,166,385],search_object_attribut:117,search_objects_with_prototyp:298,search_prototyp:298,search_script:[41,82,163,385],search_script_tag:385,search_tag:[46,73,110,117,163,385],search_tag_account:46,search_tag_script:46,search_target:234,searchabl:[111,229],searchdata:[166,241,294,385],searching_cal:70,season:[77,120,121,123,222],seat:120,sec:[31,54,93,100,210,324,376],secmsg:381,second:[5,8,13,15,19,20,22,27,29,32,38,40,41,43,47,54,56,59,66,67,74,76,82,84,90,91,93,95,100,101,104,105,106,107,113,115,117,121,128,129,136,137,138,139,141,148,154,157,161,166,167,172,180,185,187,191,207,210,221,229,230,233,241,248,251,254,255,256,257,258,260,267,279,289,294,299,306,307,312,317,326,331,344,355,365,368,372,376,381,388,389],secondari:[103,352],secondli:[36,109],secreci:11,secret:[75,112,120,145,149,151,211,312],secret_kei:[75,199],secret_key_nam:199,secret_set:[75,89,112,145,149,312],sect_insid:80,section:[0,2,5,8,13,16,20,22,25,27,29,30,32,36,41,48,50,51,53,61,66,69,75,76,81,82,84,89,90,91,93,95,99,100,101,102,108,110,111,113,114,115,117,118,122,140,145,148,153,154,156,160,187,222,240,299,365,366,372,389,407],sector:80,sector_typ:80,secur:[0,13,14,29,32,40,59,68,76,98,105,129,140,141,148,154,159,163,164,179,190,194,197,199,286,294,332,362,375,381,388,427,440],secure_attr:32,secure_url:199,security_token:199,security_token_nam:199,sed:2,sedat:251,see:[0,3,4,5,7,8,9,10,11,12,13,14,15,18,19,20,21,22,25,26,27,28,29,30,31,32,34,35,36,38,40,41,43,44,47,48,50,51,52,53,54,55,57,59,61,63,66,67,68,69,72,74,75,76,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,103,104,106,107,108,110,111,112,113,114,115,116,118,119,121,122,123,125,128,129,131,133,134,135,136,137,138,139,140,141,144,145,148,149,150,151,152,153,154,155,156,157,161,166,175,177,179,180,185,186,187,188,190,191,194,197,199,201,202,207,208,212,214,216,219,221,225,227,234,238,239,240,241,245,248,249,251,252,254,255,256,257,258,260,263,267,269,270,271,273,278,279,280,282,284,286,287,293,294,306,310,312,314,315,323,324,325,326,328,332,333,335,337,339,340,341,343,344,352,353,357,360,365,368,369,370,371,374,375,383,384,388,391,421,427,432,435,438,439],seed:[78,207,209,280],seek:[119,216,290,381],seem:[20,40,51,76,89,95,97,118,120,123,125,129,137,146,148,153,161,360,366],seen:[8,11,20,27,44,61,74,76,79,80,81,93,98,99,101,103,106,107,110,113,114,116,118,125,136,137,138,202,324,374],sefsefiwwj3:75,segment:[137,357],seldomli:[175,191],select:[7,11,12,19,20,27,38,43,44,50,51,52,53,66,73,76,81,84,101,105,108,121,129,136,140,147,148,172,173,178,215,252,255,362,370,372,405,410],selet:372,self:[3,8,12,13,14,19,20,22,26,27,32,35,36,38,40,41,47,48,50,54,61,63,66,71,74,75,76,78,80,82,84,90,91,92,93,94,95,96,97,98,99,100,103,104,105,107,108,113,114,115,116,117,121,122,125,126,128,129,134,135,136,137,139,141,148,151,152,166,167,169,171,173,174,175,177,180,181,185,188,190,191,194,196,201,202,203,204,207,211,214,215,216,219,222,223,227,234,237,238,241,251,252,254,255,256,257,258,260,263,266,267,268,269,270,271,273,278,281,284,289,294,306,310,312,314,315,319,323,324,330,332,333,335,337,339,340,341,343,351,352,353,360,362,363,365,370,372,373,375,379,382,383,384,388,421],self_pid:388,selfaccount:99,selfself:41,sell:[105,121,122,142,201],semi:[5,108,115,139,221,240],semicolon:[32,290,368],send:[5,12,18,19,22,27,28,29,31,32,36,38,41,44,45,47,49,51,52,53,55,64,69,73,76,78,82,87,88,91,93,99,103,106,107,112,114,117,122,126,128,129,135,136,138,140,150,151,157,159,161,166,167,174,175,178,185,191,194,195,196,199,201,207,216,223,224,234,241,245,258,260,262,266,267,279,280,294,306,307,309,312,314,315,317,321,322,323,324,325,327,330,331,332,334,335,336,338,340,341,343,344,351,352,353,354,365,368,369,372,374,388],send_:[61,64,330],send_adminportal2serv:322,send_adminserver2port:309,send_authent:323,send_channel:[323,324],send_default:[61,64,323,324,330,332,335,340,341],send_defeated_to:267,send_emot:241,send_functioncal:321,send_game_detail:314,send_heartbeat:323,send_instruct:312,send_mail:234,send_msgportal2serv:322,send_msgserver2port:309,send_p:324,send_privmsg:324,send_prompt:[332,335,340,341],send_random_messag:260,send_reconnect:324,send_request_nicklist:324,send_status2launch:322,send_subscrib:323,send_testing_tag:266,send_text:[61,64,332,335,340,341],send_to_online_onli:[18,194],send_unsubscrib:323,sender:[18,34,45,166,167,194,195,196,201,216,241,262,294,323,354,368,379,385,397],sender_account_set:169,sender_extern:196,sender_object:354,sender_object_set:293,sender_script_set:302,sender_str:194,senderobj:368,sendlin:[332,335,340],sendmessag:[61,223],sens:[20,32,36,52,53,54,63,66,76,82,83,97,99,116,125,137,145,173,251,263,368,369,372],sensibl:[18,30,154,316],sensit:[13,27,30,32,99,110,195,199,202,210,222,230,245,246,282,285,361,376,385],sensivit:239,sent:[5,18,27,29,31,34,44,45,51,53,64,67,69,91,99,101,106,112,115,150,166,167,171,185,191,194,195,196,202,212,216,223,230,234,245,262,264,270,294,309,312,314,317,321,322,323,324,332,336,340,351,353,360,372,385,410],sentenc:[63,79,106,216,233,240,241],senwmaplink:[82,280],sep:[63,365,388],sep_kei:[76,202],separ:[5,7,11,13,14,15,18,20,22,30,32,33,35,36,39,41,44,46,47,51,53,61,66,71,73,77,78,79,82,83,84,87,93,98,99,100,105,106,107,108,110,114,115,116,120,121,129,133,137,138,140,144,145,151,152,153,155,157,172,174,175,180,186,187,188,190,191,202,207,230,233,234,240,241,252,254,255,256,257,258,269,271,275,279,280,282,285,290,293,294,298,303,307,331,336,341,353,365,366,368,371,375,385,388,396],separatli:93,sepat:207,seq:35,sequenc:[14,15,16,22,32,35,36,52,54,69,84,87,103,112,119,122,125,138,175,179,191,194,207,210,219,241,279,290,310,316,365,366,372,374,387,388],sequenti:122,seri:[4,11,18,27,59,115,121,122,123,125,133,143,374],serial:[13,50,64,163,164,297,306,307,330,369,382,384,388,393,395,397,400,401,406,413],serializ:341,serialized_str:[395,397,400,401],serializer_class:413,seriou:[95,161],serious:148,serv:[43,52,53,64,72,80,81,87,107,112,116,117,122,150,157,173,199,256,341,357,366,368,425],server:[0,2,5,6,7,8,9,11,12,13,14,16,18,19,20,22,25,27,29,30,31,32,33,36,40,41,45,47,48,50,51,52,53,54,55,57,61,62,64,66,67,69,72,74,75,78,81,82,83,84,85,86,87,88,89,90,91,92,93,97,98,99,100,101,103,106,107,111,113,114,115,116,118,119,122,123,125,126,128,133,135,137,140,141,142,143,147,148,149,150,151,152,153,156,157,161,163,164,166,167,174,178,180,185,190,192,194,197,199,202,205,207,212,214,222,230,237,241,242,243,244,247,248,251,267,268,269,271,274,275,281,284,294,302,303,305,307,358,362,366,368,369,372,376,379,381,388,393,394,410,418,439,440],server_connect:330,server_disconnect:330,server_disconnect_al:330,server_epoch:[19,376],server_l:322,server_logged_in:330,server_nam:43,server_pid:[322,388],server_receive_adminportal2serv:309,server_receive_msgportal2serv:309,server_receive_statu:309,server_reload:[303,307],server_run:312,server_runn:350,server_servic:388,server_services_plugin:[43,61,112],server_services_plugin_modul:61,server_session_class:44,server_session_sync:330,server_st:312,server_twistd_cmd:322,server_twisted_cmd:322,serverconf:[178,307],serverconfig:[306,307,318,319],serverconfigadmin:402,serverconfigmanag:[318,319],serverfactori:[322,332,335],serverload:190,serverlogobserv:381,servermsg:381,servernam:[31,43,53,75,89,144,147,154],serverprocess:190,serversess:[44,61,107,163,164,245,290,308,330,353,360],serversessionhandl:[44,61,353],serverset:[32,185,289],servic:[11,43,55,61,107,112,140,145,150,151,154,156,157,161,163,164,190,199,308,309,312,313,321,322,329,350,357,388],sessdata:[352,353],sessid:[12,22,44,129,293,294,309,321,322,330,353],session:[8,12,16,20,22,24,27,29,31,33,36,41,45,55,61,67,85,98,103,104,106,107,111,113,114,122,129,146,156,163,164,166,167,169,171,172,173,175,177,178,181,183,188,192,212,215,223,224,244,245,246,266,293,294,296,297,298,303,308,309,317,321,322,323,324,330,331,332,335,340,341,350,351,353,355,370,372,373,375,388,389,410,440],session_data:353,session_from_account:353,session_from_sessid:353,session_handl:[44,163],session_id:410,session_portal_partial_sync:353,session_portal_sync:353,sessioncmdset:[20,114,183],sessionhandl:[61,64,163,164,166,294,308,317,323,324,330,331,351,352],sessionid:330,sessions_from_account:353,sessions_from_charact:353,sessions_from_csessid:[330,353],sessions_from_puppet:353,sessionsmain:85,sesslen:294,set:[0,2,3,5,6,9,10,12,13,14,15,16,17,18,19,21,22,24,25,26,28,29,30,31,34,35,36,38,40,41,44,45,46,48,49,50,51,53,54,55,56,57,59,61,62,63,64,66,68,69,70,71,72,74,76,77,78,79,81,82,83,84,85,86,87,90,91,93,94,95,96,97,98,99,101,104,105,106,107,108,109,110,111,112,114,115,116,120,123,125,127,128,131,133,134,136,137,138,140,141,144,145,146,148,150,151,153,156,159,160,161,163,165,166,167,169,171,172,173,174,175,177,178,180,181,182,183,184,185,187,188,191,193,194,199,200,202,203,204,205,207,209,210,211,212,214,215,216,217,219,220,222,223,224,228,230,233,237,238,240,241,244,247,248,250,251,252,254,255,256,257,258,263,264,266,267,268,269,270,271,273,274,275,276,277,279,280,282,284,289,290,293,294,297,298,299,304,305,306,307,309,311,312,316,317,318,319,322,323,325,326,328,329,332,334,335,337,338,343,344,346,348,350,351,352,353,355,357,358,360,361,362,363,365,366,367,368,369,370,371,372,373,374,375,376,379,380,381,382,383,384,385,386,387,388,389,396,399,400,402,403,408,409,411,412,413,416,420,427,428,440],set_active_coordin:271,set_al:267,set_alias:175,set_atribut:413,set_attr:180,set_attribut:413,set_cach:360,set_character_flag:216,set_class_from_typeclass:362,set_dead:267,set_desc:185,set_descript:27,set_detail:[222,269],set_flag:[216,217],set_game_name_and_slogan:420,set_gamedir:312,set_kei:175,set_lock:185,set_log_filenam:194,set_nam:27,set_password:166,set_posit:216,set_task:230,set_trac:[3,163],set_webclient_set:420,setcolor:103,setdesc:[98,107,186,247],setflag:[214,216],setgend:224,sethelp:[30,107,108,187,284],sethom:[107,180],setlock:247,setnam:61,setobjalia:180,setperm:178,setspe:248,sett:155,settabl:[31,66,113,335],setter:95,settestattr:26,settingnam:32,settings_chang:45,settings_default:[8,43,89,111,163,164,381,388],settings_ful:43,settings_mixin:[5,163,164,308,342],settl:[81,128],setup:[0,5,6,8,11,16,30,43,49,53,61,63,66,71,82,84,99,105,120,128,136,150,151,153,156,161,166,177,185,191,200,209,210,220,231,250,263,264,266,269,277,287,294,305,316,329,338,343,347,348,350,357,360,362,379,380,386,411,428,439,440],setup_str:347,setuptool:[148,153],sever:[2,3,13,15,20,22,26,28,32,40,41,43,48,49,51,53,57,69,74,76,82,84,93,97,98,100,101,110,115,118,121,122,127,128,143,179,180,188,190,222,229,230,267,269,294,338,339,363,368,388],sewag:82,sex:224,shadow:30,shall:[138,141],shaman:[40,98],shape:[76,81,95,99,108,120,208,271,374],sharabl:40,share:[2,3,18,20,32,44,46,48,52,66,72,75,79,83,87,91,98,112,118,122,128,140,148,149,154,157,229,230,299,307,343,360,361,363,374,388,395,410,413,421],shared_field:410,sharedloginmiddlewar:421,sharedmemorymanag:[361,378],sharedmemorymodel:[196,286,360,362,379,380],sharedmemorymodelbas:[169,196,286,293,302,360,362,379,380],sharedmemorystest:380,sharp:208,shaw:143,she:[22,30,74,76,97,106,121,138,202,224,240,391],sheer:180,sheet:[27,51,84,121,122,140,141,145,371],sheet_lock:99,shell:[0,2,5,9,35,48,66,68,91,98,99,115,145,148,150,153,154,156,157,161,332,360],shell_plu:0,shield:[66,93],shift:[15,16,19,68,82,230,268,285,388],shiftroot:268,shine:[82,90,269],shini:[49,388],shinier:49,ship:[81,86,87,108,119,143,153],shire:100,shirt:204,shoe:204,shoot:[90,257,258,371],shop:[27,68,98,122,440],shop_exit:105,shopcmdset:105,shopkeep:[102,121],shopnam:105,shopper:105,short_descript:147,shortcom:105,shortcut:[4,18,19,20,22,29,45,48,71,74,76,78,84,93,101,106,111,115,128,131,140,141,145,156,163,167,174,175,180,185,202,227,271,290,294,382,388],shorten:[3,48,79,299,410],shorter:[43,48,61,68,82,113,125,134,135,139,194,240,360,361,368,381],shortest:[82,95,241,273,277,279,280],shorthand:[36,138,180],shortli:[74,76,125],shortsword:110,shot:257,should:[0,3,5,6,7,8,9,10,11,12,13,14,15,16,18,19,20,22,27,29,30,31,32,34,36,38,40,41,43,44,45,46,47,48,50,51,53,54,55,56,57,59,61,62,63,64,66,67,68,69,71,72,73,74,75,76,77,78,79,81,82,83,84,86,87,89,91,93,95,98,99,100,101,103,104,105,106,107,108,110,112,113,114,115,116,117,118,119,120,121,123,125,126,128,129,131,133,137,138,140,141,144,145,146,148,149,150,152,153,154,155,156,157,160,161,166,167,169,171,173,174,175,177,179,180,181,184,185,187,188,190,191,194,196,199,200,202,204,207,208,209,210,214,216,217,219,221,222,227,230,233,234,237,238,239,240,241,244,250,251,254,255,256,257,258,266,267,269,270,273,275,277,279,280,281,282,284,289,290,293,294,296,298,299,302,305,306,307,310,311,312,316,319,323,329,332,335,336,338,340,341,343,344,350,351,352,353,355,356,358,360,362,363,365,366,368,369,370,372,373,374,375,376,381,382,383,384,386,388,389,395,396,403,427,428,433],should_join:194,should_leav:194,should_list_top:187,should_show_help:187,shoulddrop:[258,294],shoulder:[99,204],shouldget:[258,294],shouldgiv:[258,294],shouldmov:[254,255,256,257,258,294],shouldn:[14,74,76,90,93,99,138,202,230,233,257,343],shouldrot:381,shout:[93,214,216],shove:90,show:[0,3,6,7,8,9,11,14,15,18,19,22,25,27,28,29,30,41,43,44,50,51,53,55,58,59,61,66,71,74,76,77,78,79,80,81,82,83,84,86,87,88,94,95,98,99,100,101,103,104,105,106,107,108,112,113,114,115,116,118,119,120,121,122,124,125,126,127,128,130,132,133,134,135,136,138,140,141,146,147,148,150,151,154,155,157,161,166,177,178,180,185,186,187,188,190,192,201,203,204,211,212,214,222,223,225,237,251,252,257,258,263,269,270,271,273,277,279,280,282,284,294,296,298,299,310,312,321,370,372,381,382,383,388,427],show_change_link:395,show_foot:373,show_map:80,show_non_edit:298,show_non_us:298,show_valu:225,show_version_info:312,show_warn:312,showcas:[20,81,112,119],shown:[25,27,30,40,41,50,58,74,75,76,80,89,91,93,98,100,113,125,137,140,147,175,178,185,189,191,202,204,207,221,239,241,263,268,279,280,294,312,372,373,416],showtim:100,shrink:[114,374],shrug:79,shuffl:19,shun:[0,68,154],shut:[5,43,51,74,89,93,115,156,166,190,294,305,307,312,314,321,322,329,330,350,353],shutdown:[5,20,41,44,55,57,99,107,161,166,167,190,307,312,321,322,329,350,351,362,368,372],shy:[0,71,120,123],sibl:[41,54,98,116],sid:178,side:[2,8,13,31,41,44,46,51,53,64,74,77,80,82,84,99,106,110,121,122,126,138,140,146,166,167,169,186,188,196,201,211,247,280,286,293,302,309,321,322,330,333,336,337,340,351,352,353,360,362,363,365,374,380],sidebar:53,sidestep:57,sidewai:374,sigint:312,sign:[7,15,47,64,74,79,82,106,108,110,112,117,129,139,154,185,216,222,279,294,307,360,365,389],signal:[5,24,161,163,164,254,255,256,257,258,278,308,312,335,341,343,379,440],signal_acccount_post_first_login:45,signal_account_:45,signal_account_post_connect:45,signal_account_post_cr:45,signal_account_post_last_logout:45,signal_account_post_login:45,signal_account_post_login_fail:45,signal_account_post_logout:45,signal_account_post_renam:45,signal_channel_post_cr:45,signal_helpentry_post_cr:45,signal_object_:45,signal_object_post_cr:45,signal_object_post_puppet:45,signal_object_post_unpuppet:45,signal_script_post_cr:45,signal_typed_object_post_renam:45,signatur:[22,29,126,175,219,227,251,278,284,306,310,312,314,315,323,332,333,335,337,340,341,360,365,372,383,384,421],signature_vers:199,signed_integ:389,signedinteg:382,signedon:324,signifi:[15,289,360],signific:[6,29,82,191,375],significantli:26,signup:89,silenc:[185,314],silenced_system_check:8,silent:[54,100,135,178,185,263,316,324],silli:[36,40,110],silmarillion:117,silvren:154,similar:[0,7,13,14,22,27,30,36,48,49,51,52,53,66,71,73,74,76,82,86,87,90,91,99,108,113,119,120,126,133,137,150,154,166,175,177,191,194,202,207,223,240,254,255,256,257,258,271,286,294,353,363,368,372,388,410,436],similarli:[46,82,99,100,154,251,255,270,396,403,410],simpl:[0,12,14,15,16,17,20,22,25,26,29,30,31,36,40,44,46,53,54,61,63,66,67,68,72,74,75,78,79,80,81,82,84,86,87,88,89,91,92,94,95,97,98,99,101,103,105,106,107,113,114,116,117,119,120,121,125,126,127,128,129,130,134,135,136,138,139,140,150,154,155,156,157,180,194,199,201,202,203,207,212,214,216,222,223,224,229,234,238,239,240,241,247,248,249,251,252,254,255,256,257,258,260,262,263,267,268,269,271,277,283,293,294,299,305,322,331,333,366,367,372,375,388,424,425,427,440],simple_ev:29,simpledoor:[163,164,197],simpleev:29,simplemu:146,simpleobjectdbseri:410,simpler:[16,54,84,97,179,180,369,436],simpleresponsereceiv:314,simplest:[53,93,99,107,126,128,154,174,366,389],simpli:[8,9,11,13,14,17,20,27,32,38,40,43,46,48,53,55,59,61,64,73,76,80,83,84,90,91,93,95,99,103,105,108,111,114,120,121,125,126,129,135,137,139,144,145,148,151,152,157,166,173,174,175,191,192,194,202,212,222,231,241,248,252,254,255,256,257,258,262,263,268,279,286,294,330,360,362,366,367,371,373,388],simplic:[76,95,138,192,212,268],simplif:[122,128],simplifi:[5,54,63,81,101,113,128,135,156,227],simplist:[51,128,129,139,240,249],simul:[5,22,116,122,126,248],simultan:[67,99,122,128,388],sinc:[0,3,5,6,8,11,13,14,15,18,19,20,22,25,26,27,29,30,31,32,33,34,36,41,43,47,48,52,53,54,57,59,61,63,64,66,67,72,74,75,76,80,81,82,84,86,87,89,90,91,92,93,95,96,97,98,99,100,101,105,106,107,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,125,128,129,131,135,137,138,140,141,145,147,150,154,156,161,166,167,169,173,174,175,180,188,189,190,191,195,201,202,203,207,210,216,222,234,241,252,254,255,256,257,258,263,268,269,275,279,280,289,294,298,299,303,306,307,312,314,317,329,334,336,350,351,353,355,360,361,362,366,367,368,370,372,376,379,381,384,385,386,388,396,403,427],singl:[5,8,9,15,20,22,27,29,34,35,41,44,46,48,54,56,64,67,68,71,74,76,77,81,82,83,84,86,87,96,98,99,110,114,115,116,119,121,122,126,145,150,154,166,178,180,185,186,190,196,202,208,239,244,251,252,254,255,256,257,258,269,270,271,277,279,280,282,294,298,299,306,307,344,351,353,360,361,363,365,366,371,372,374,388,391,427],single_type_count:204,singleton:[33,44,47,82,303,306,367],singular:[84,99,294,391,392],sink:0,sint:28,sir:79,sit:[13,15,18,22,48,64,86,93,107,112,114,115,116,122,125,129,137,148,154,188,191,194,216,219,233,234,241,268,269,280,290,304,307,325,368,383,386],sitabl:48,sitat:269,site:[6,17,32,39,50,53,56,81,83,101,140,141,143,144,145,150,151,154,155,156,157,280,357,398,418],site_head:[50,418],site_id:53,sitsondthi:125,sitsonthi:125,sittabl:[216,440],sittablein:125,sitter:125,situ:[13,362,369],situat:[3,11,13,22,29,30,41,44,48,52,63,64,66,74,76,79,83,100,114,117,125,174,175,180,217,229,379],six:[106,126,211,252],sixti:100,sizabl:199,size:[3,6,51,56,68,80,81,82,99,123,146,163,199,200,271,279,280,314,328,365,371,373,374,379,381,388],size_limit:388,skeleton:129,sketch:128,skill:[8,86,88,92,93,94,102,110,112,115,120,121,126,128,137,140,141,143,161,208,240,241,251,282,371],skill_combat:126,skill_craft:78,skillnam:126,skillrecip:78,skim:[110,123],skin:[40,208],skip:[0,7,11,18,20,22,40,47,53,67,80,82,100,107,108,110,112,114,116,120,123,153,156,166,179,180,199,208,294,360,369,388,405],skip_cal:216,skipkei:341,skippabl:71,skull:40,sky:[41,139],slack:143,slam:223,slash:[53,84,86,108,118,119,126,128,200,268],slate:[81,114],sleep:[22,29,54,93,122,126],slew:[126,153,366],slice:[177,365,373],slice_bright_bg:177,slice_bright_fg:177,slice_dark_bg:177,slice_dark_fg:177,slide:[208,263],slider:53,slight:[106,144,210,230],slightli:[3,30,100,121,128,129,143,148,196,222,255,270,395,438],slip:387,slogan:75,slot:[53,77,99,141,222,223,251,255,257,299,388],slow:[5,19,121,128,190,195,248,267,271,275,280,298,325,331,365,385,388],slow_exit:[163,164,190,197],slower:[5,41,100,122,154],slowexit:248,slowli:[143,251,439],slug:[194,286,362,435,438],slugifi:432,small:[5,6,8,9,15,16,22,34,52,56,68,78,81,82,83,86,88,89,91,94,98,99,101,102,103,105,106,119,120,121,122,123,125,129,130,143,148,154,155,207,211,251,257,263,271,273,274,277,279,335,370,371,374,388],smaller:[14,15,56,84,251,277,374],smallest:[38,99,100,154,210,240,251,371,388],smallshield:66,smart:[106,271,280],smarter:40,smartmaplink:280,smartreroutermaplink:280,smartteleportermaplink:280,smash:263,smaug:[107,113,114,116],smedt:391,smell:[82,120,216],smellabl:216,smelli:40,smile:[22,29,113,121,186,214,392],smith:371,smithi:93,smoothi:238,smoothli:141,snake:[53,133],snap:104,snapshot:11,snazzi:142,sneak:290,snippet:[14,20,32,40,52,54,59,86,87,90,107,121,190,321,387,388],snonewaymaplink:[82,280],snoop:[150,157],snow:207,snowbal:207,snuff:0,soak:114,social:[86,122,151],socializechat:344,societi:110,sofa:125,soft:[60,87,89,240,440],softcod:[29,71,122],softli:142,softwar:[2,11,148,154],solar:100,soldier:[105,116],sole:[77,98,101,167],solid:[59,80,86,123],solo:[112,122,148],solut:[8,15,19,30,47,48,74,75,81,82,91,93,95,97,101,105,106,119,122,125,126,135,137,154,157,189,279,280,290],solv:[6,19,77,80,81,82,90,96,102,119,120,148,219,238,268,279],some:[0,1,2,3,6,7,8,9,11,13,14,15,16,18,19,20,22,26,27,29,30,31,32,34,35,36,38,40,41,43,44,45,46,47,48,49,50,51,53,55,56,59,61,63,64,66,68,69,74,75,76,78,79,80,81,82,83,84,86,87,88,89,90,91,92,93,98,99,100,101,102,104,105,106,107,108,109,110,112,113,114,116,117,118,119,120,123,124,125,126,127,128,129,131,133,134,135,137,138,140,141,142,143,144,145,146,148,150,152,153,154,157,159,160,161,166,174,175,180,182,185,186,189,190,194,195,199,201,202,203,207,212,216,219,230,233,239,240,247,251,252,255,256,257,258,263,266,268,269,270,271,280,290,294,298,299,302,314,316,321,324,350,360,362,365,366,371,372,375,376,379,381,382,388,391,395,400,413,427,438,440],some_long_text_output:373,some_modul:111,somebodi:74,someclass:111,somehow:[22,35,53,61,69,73,125,126,154,204,370],someon:[22,32,45,47,50,74,79,80,93,99,105,107,110,115,123,125,134,135,154,157,166,186,204,263,267,268,294],somepassword:145,someplac:267,someth:[5,8,9,13,15,18,19,22,27,28,29,30,32,36,40,41,43,45,47,48,50,51,52,54,55,59,61,64,66,68,71,72,74,75,76,78,79,80,81,82,84,86,87,88,89,91,93,94,95,96,97,98,99,100,101,104,105,106,107,108,110,113,115,116,117,119,120,123,125,126,129,131,140,141,144,145,149,150,151,152,153,154,159,166,173,175,180,186,188,191,201,202,204,208,224,233,239,241,248,251,254,255,256,257,258,268,269,270,271,280,290,294,299,351,362,366,372,373,375,382,388,433],something_els:41,sometim:[3,5,19,22,26,27,32,38,40,41,53,61,66,76,87,100,106,110,114,115,117,133,161,187],sometypeclass:109,somewhat:[8,76,89,98,202],somewher:[11,40,41,48,55,74,82,83,114,125,126,137,154,180,194,273,286,362,388],somon:216,soon:[3,8,44,101,120,122,152,156,341,388],sophist:[19,54,68,86,128],sorl:89,sorri:[32,162,290],sort:[13,20,33,38,44,46,53,64,72,73,78,80,87,95,101,110,113,114,115,120,126,128,131,134,154,161,201,216,225,251,254,255,256,257,258,269,280,294,299,302,360,361,362,372,388,418,427,432,433,435,436,437],sort_kei:341,sort_stat:5,sortkei:5,sought:[166,172,194,284,286,294,360,362],soul:[81,123],sound:[11,32,43,47,63,64,76,81,83,93,99,104,110,120,121,125,240,336],sourc:[1,2,6,8,9,10,11,16,17,19,20,29,36,54,55,56,63,67,68,74,75,76,77,79,83,86,87,88,89,90,98,111,115,118,119,121,141,143,145,148,150,152,153,163,166,167,168,169,171,172,173,174,175,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,194,195,196,199,200,201,202,203,204,207,208,209,210,211,212,214,215,216,217,219,220,221,222,223,224,225,227,228,229,230,231,233,234,237,238,239,240,241,244,245,246,247,248,249,250,251,252,254,255,256,257,258,260,262,263,264,266,267,268,269,270,271,273,274,275,277,278,279,280,281,282,284,285,286,287,289,290,292,293,294,296,297,298,299,301,302,303,304,305,306,307,309,310,311,312,314,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,343,344,345,347,348,349,350,351,352,353,355,356,357,360,361,362,363,365,366,367,368,369,370,371,372,373,374,375,376,378,379,380,381,382,383,384,385,386,387,388,389,391,392,395,396,397,398,399,400,401,402,403,405,407,408,409,410,411,413,415,418,419,420,421,422,425,427,428,431,432,433,434,435,436,437,438,439],source_loc:[91,134,217,268,269,271,294],source_object:[192,212],sourceforg:[325,326,336,339],sourceurl:324,south:[74,76,80,81,82,96,125,137,180,273,279,280,344],south_north:81,southeast:[180,280],southern:81,southwest:[82,108,180,280],space:[18,22,25,29,30,32,35,40,41,51,59,71,75,76,79,80,81,82,84,90,91,98,106,107,108,114,115,116,118,128,135,138,172,175,180,185,186,187,188,191,192,199,237,240,241,258,268,279,280,294,356,362,365,366,371,372,374,375,387,388,416],spaceship:137,spacestart:387,spaghetti:[14,372],spam:[18,41,55,92,102,128,157,185,355],spammi:[55,128],span:[17,56,68],spanish:63,spare:[254,255,256,257,258,279],sparkly_mag:110,spatial:81,spawen:238,spawn:[5,18,34,51,78,82,85,107,111,119,122,136,163,178,180,207,238,255,256,274,277,279,280,281,296,297,298,299],spawn_alias:[82,280],spawn_link:[279,280],spawn_nod:279,spawner:[24,36,82,136,163,164,180,256,257,295,297],spawng:78,spd:141,speak:[16,18,57,69,74,77,79,122,134,135,138,140,186,216,241,294],speaker:[79,216,240,241],spear:40,special:[0,3,8,11,12,13,14,15,16,18,19,20,22,25,27,29,32,36,38,43,45,46,48,50,51,52,53,54,57,59,63,64,66,67,69,81,82,83,87,91,94,99,101,103,105,108,110,111,112,113,114,115,116,117,121,128,129,141,157,167,169,171,174,186,189,214,216,217,221,222,224,241,252,256,257,268,269,271,282,287,290,294,316,317,340,344,360,362,366,372,387,400],specic:279,specif:[0,2,3,8,11,12,13,19,20,22,26,27,32,35,36,38,44,45,46,47,48,49,51,55,61,67,72,74,75,76,77,78,79,81,82,83,84,85,86,87,89,91,95,97,100,101,104,106,110,111,112,113,115,116,117,119,120,122,128,129,137,138,139,140,141,142,143,145,146,150,154,156,161,166,171,178,180,187,190,196,197,198,201,202,207,208,214,216,227,228,229,230,234,239,241,273,279,280,281,285,289,294,303,312,317,324,340,341,351,360,362,365,366,370,372,373,374,388,396,398,407,438,439],specifi:[8,13,18,19,20,27,30,33,40,44,46,47,53,55,56,57,59,64,66,67,76,78,79,80,81,82,84,90,93,95,99,100,106,108,109,113,114,116,117,125,129,131,133,141,147,148,154,155,156,157,171,172,180,187,191,194,202,204,205,207,211,216,222,223,227,229,230,234,238,239,241,251,252,255,256,257,271,273,279,280,289,290,294,297,298,299,303,323,349,360,363,365,366,368,371,372,376,382,383,384,388,391,407,410,427,438],specifici:217,spectacular:3,spectrum:122,speech:[214,294],speed:[5,13,35,66,100,104,122,128,141,248,299,330,363,385],spell:[16,40,46,57,92,98,252,257,299],spell_attack:257,spell_conjur:257,spell_heal:257,spell_nam:257,spellbook:[78,207],spellcast:121,spellnam:257,spend:[36,95,106,117,122,123,254,255,256,257,258],spend_act:[254,255,256,257,258],spend_item_us:256,spent:257,sphinx:84,spike:207,spiked_club:207,spin:[52,100,154,191],spit:[115,128,131,207],splashscreen:212,splinter:119,split:[11,20,22,43,44,75,81,82,91,99,106,114,115,122,129,133,135,137,172,188,210,268,271,287,296,338,353,365,366,376],split_nested_attr:180,spoiler:77,spoken:[74,79,121,152,240,241,294],spoof:[150,396,403],spool:148,sport:35,spot:[53,87,98,166,277,280],spread:[5,29,40,88,110,125,126],spring:[104,222],sprint:248,sprofil:312,spy:34,spyrit:146,sql:[2,48,66,87,97,98,117,347,440],sqlite3:[5,8,9,11,66,87,112,129,159,160,388],sqlite3_prep:350,sqlite:[9,66,145,350],sqllite:2,sqrt:95,squar:[29,71,84,95],squeez:66,src:[17,32,36,51,54,108,140,153,156,245],srcobj:[175,188],srun:316,srv:2,ssessionhandl:64,ssh:[44,61,64,75,87,91,154,161,163,164,308,320,351,352],ssh_interfac:154,ssh_port:154,sshd:157,sshfactori:332,sshprotocol:332,sshserverfactori:332,sshuserauthserv:332,ssl:[64,67,87,144,150,163,164,167,185,308,320,324,337,352],ssl_context:[333,337],ssl_interfac:154,ssl_port:154,sslcertificatefil:144,sslcertificatekeyfil:144,sslciphersuit:144,sslengin:144,ssllab:144,sslprotocol:[144,333,337],ssltest:144,sslv3:150,sstem:101,sta:371,stab:[93,119,268],stabil:[120,191,240],stabl:[53,61,83,97,156],stabli:[6,307],stack:[14,20,51,120,125,137,173,174,294,298,353,372],stackedinlin:395,stackexchang:8,stackoverflow:8,stacktrac:298,staf:68,staff:[18,38,40,50,57,68,75,81,91,98,120,126,129,140,173,282,299,366],staffer:[50,75,122],staffernam:75,stage:[2,11,12,81,97,120,129,140,395,397,400],stagger:324,stai:[20,27,48,80,106,115,137,138,148,154,159,271,280],stale:[48,156,306],stale_timeout:306,stalker:433,stall:77,stamina:[94,121,225,251,257],stamp:[19,44,48,51,166,169,178,190,293,302,344,349,362],stanc:[29,122,128,241,294,375,391],stand:[8,11,14,17,32,50,66,76,80,81,82,84,90,91,93,97,108,111,115,117,119,121,125,126,128,129,137,140,148,152,154,186,201,214,216,241,267,282,294,302,307,343,363,366,368,374,403],standalon:[150,157],standard:[11,16,18,19,26,49,53,59,60,64,67,69,74,75,77,82,87,90,94,98,99,106,110,113,115,128,133,136,138,143,144,148,150,157,163,166,177,211,212,241,270,282,294,332,334,339,356,360,365,374,376,389,412,440],stander:125,stanza:322,stapl:122,star:180,stare:11,start:[3,5,6,7,8,9,10,11,12,14,15,16,18,19,20,22,26,27,29,31,32,33,35,38,40,41,43,44,45,48,51,52,53,55,56,58,59,61,62,63,64,66,68,74,77,78,80,81,82,84,86,87,88,89,90,91,93,95,96,98,100,101,106,108,110,111,112,113,116,120,121,122,123,125,126,128,129,131,133,136,137,139,140,143,145,147,149,150,152,153,154,155,157,159,166,167,172,173,179,180,185,186,187,188,189,190,191,194,201,202,207,211,214,215,216,222,223,224,225,230,240,241,251,252,254,255,256,257,258,263,266,267,269,271,279,280,294,296,298,302,304,305,306,307,309,312,314,316,317,322,323,324,325,329,330,331,336,337,343,344,349,350,353,357,361,365,366,367,368,370,372,373,374,375,376,381,388,416,439,440],start_all_dummy_cli:343,start_attack:267,start_bot_sess:353,start_char:375,start_delai:[41,128,136,137,302,307,368],start_direct:280,start_driv:137,start_evennia:312,start_hunt:267,start_idl:267,start_index:185,start_lines1:312,start_lines2:312,start_loc_on_grid:80,start_of_messag:397,start_olc:296,start_only_serv:312,start_open:216,start_ov:27,start_patrol:267,start_plugin_servic:61,start_portal_interact:312,start_posit:216,start_read:216,start_rotat:216,start_serv:322,start_server_interact:312,start_sunrise_ev:100,start_text:252,start_turn:[254,255,256,257,258],start_xi:[82,279],startapp:[66,101,140,141],startclr:375,startcolor:29,startcoord:277,startedconnect:[309,323,324],starter:[75,118,119,133],starthour:91,startnod:[27,105,215,223,266,296,372],startnode_input:[27,215,223,266,296,372],startproduc:314,startservic:[315,357],startset:269,startswith:[30,33,180,191,365],starttupl:332,startup:[13,25,43,61,100,112,133,154,294,302,305,341,350,381,388],stat:[5,17,53,102,105,112,113,115,116,120,121,128,129,133,140,141,151,190,201,251,254,255,256,257,258,436,440],state:[3,11,13,14,15,20,22,26,27,32,41,44,51,59,86,87,97,112,113,116,119,122,128,137,138,156,161,163,164,166,171,173,174,177,184,192,194,197,213,214,216,217,220,221,247,254,255,256,257,258,263,267,269,299,302,304,305,307,312,332,360,370,372],state_chang:219,state_nam:219,state_unlog:184,statefultelnetprotocol:[335,343],statehandl:[217,219],statement:[3,14,15,19,20,27,53,54,66,80,86,99,110,115,135,263,366,387],statenam:[214,216,219],static_overrid:[51,72,112,133],static_root:133,staticfil:199,statict:190,statictrait:251,station:[122,137],stationari:267,statist:[43,44,52,53,55,72,131,136,190,225,345,361,379],statu:[11,27,43,44,47,50,67,93,99,108,112,120,121,145,150,154,201,256,257,258,267,307,310,312,321,322,323,326,340,395],status:120,status_cod:314,stderr:270,stdin_open:156,stdout:[156,270,312,381],steadi:87,steal:[34,105,187],stealth:122,steel:208,steer:137,step1:93,step2:93,step3:93,step:[0,2,6,7,9,14,15,18,20,22,26,66,68,74,79,82,84,89,90,93,95,99,101,102,104,105,106,122,123,124,126,129,137,138,141,144,145,148,156,179,185,202,208,250,269,277,279,280,307,316,328,339,343,344,353,362,366,369,370,372,373],step_sequ:273,stepper:[82,280],stick:[16,22,27,69,84,148,178],still:[0,1,7,9,11,13,14,15,16,18,20,22,44,45,48,50,57,59,61,63,64,68,74,75,76,78,80,82,83,84,86,87,89,91,93,95,98,99,100,106,107,108,112,113,114,115,122,125,129,137,138,141,142,143,148,150,157,161,173,180,185,187,194,207,212,219,251,252,254,255,256,257,258,266,269,271,280,294,298,304,344,372,374,375,376,384,388],sting:81,stock:[86,105,123,245,427],stolen:[157,365],stone:[22,108,117,123],stop:[3,5,7,9,15,18,19,27,29,31,36,38,41,43,44,47,51,54,55,63,68,75,80,82,91,93,98,99,100,104,108,111,112,115,118,121,122,125,128,129,136,137,148,150,154,156,159,177,180,185,190,194,201,208,210,229,231,241,247,248,251,255,258,263,280,294,304,305,306,307,311,312,314,317,329,330,350,351,357,365,366,368,388,440],stop_driv:137,stop_evennia:312,stop_serv:322,stop_server_onli:312,stopproduc:314,stopservic:[315,357],storag:[13,14,22,48,66,87,92,93,97,105,111,123,126,140,145,169,190,196,199,200,233,240,251,271,284,290,293,294,298,299,302,305,307,319,355,359,360,362,367,382,383],storage_modul:367,storagecontain:41,storagescript:41,store:[4,6,8,9,11,12,14,16,18,19,20,22,23,26,30,32,34,35,36,38,41,43,44,46,47,48,50,51,61,66,69,72,74,75,77,78,79,80,82,83,87,90,92,93,95,96,97,98,99,101,104,105,106,107,110,112,113,114,115,116,120,125,126,128,129,133,137,140,141,145,153,156,166,167,169,174,177,178,180,181,183,187,188,196,199,201,207,217,219,222,223,230,237,239,240,241,245,248,249,251,256,260,268,269,271,280,281,284,289,290,293,297,298,299,300,303,304,305,306,307,312,316,317,318,319,322,324,325,326,328,336,339,344,350,351,352,353,355,357,360,361,362,363,365,367,368,369,370,371,372,373,379,382,383,384,388,413,427,438],store_kei:[307,388],store_tru:270,stored_obj:91,storekei:[105,307],storenam:105,storeroom:105,storeroom_exit:105,storeroom_kei:105,storeroom_key_nam:105,stori:[6,30,75,131,140],storm:92,storypag:131,storytel:129,stove:294,str:[8,13,19,26,27,29,31,33,34,41,48,54,61,69,74,76,82,91,95,99,106,107,113,114,115,121,126,140,141,163,166,167,171,172,173,174,175,180,185,187,191,194,195,196,199,201,202,204,207,210,215,216,217,219,221,222,223,224,225,227,228,229,230,233,234,239,240,241,245,247,251,252,254,255,256,257,258,262,263,266,269,270,271,279,280,281,282,284,285,286,287,290,293,294,297,298,299,303,304,305,307,309,310,312,317,318,319,321,322,323,324,325,327,330,331,332,335,336,337,340,341,343,349,350,351,352,353,355,356,357,360,361,362,363,365,366,367,368,370,371,372,373,374,375,381,382,383,384,385,386,387,388,389,391,396,405,407,410,419,433],straght:280,straight:[80,82,123,138,280],straightforward:[91,105,106,129,137],strang:[11,15,41,93,97,113,144,174],strangl:154,strap:122,strategi:[3,258],strattr:[13,360],strawberri:270,stream:[7,199,321,325,351],streamlin:[2,201],stren:115,strength:[13,32,98,99,112,113,121,122,126,128,141,251],stress:[5,277,343],stretch:[81,82],stribg:388,strict:[54,209,298,365],stricter:[123,298],strictli:[27,57,110,140,212,257,374],strike:[27,104,128,186,249,257,258],string1:388,string2:388,string:[3,5,6,8,13,14,16,18,19,20,22,24,25,26,27,29,30,33,35,36,38,40,43,46,47,48,50,51,55,57,63,64,66,67,69,71,75,76,80,81,84,86,91,93,98,99,100,104,107,108,110,112,113,114,115,116,117,121,122,125,128,140,141,145,147,148,151,154,163,164,166,167,169,171,172,175,178,180,185,186,187,188,189,190,191,194,195,196,199,201,202,204,207,212,216,221,223,233,234,238,239,240,241,245,246,251,252,254,255,256,257,258,263,266,267,271,279,281,282,285,286,288,289,290,293,294,297,298,299,302,305,307,312,314,317,321,324,332,335,336,338,344,349,351,353,356,360,361,362,363,364,365,366,368,369,370,371,373,374,375,381,382,384,385,386,387,388,389,391,396,403,410,438],string_from_modul:388,string_partial_match:388,string_similar:388,string_suggest:388,stringproduc:314,stringvalu:251,strip:[22,27,29,30,31,40,59,68,76,84,90,99,103,105,107,114,125,129,135,172,180,188,189,191,199,208,216,241,299,317,332,335,336,365,366,370,372,375,388],strip_ansi:[103,365,387],strip_control_sequ:388,strip_dir:5,strip_mxp:365,strip_raw_ansi:365,strip_raw_cod:365,strippabl:372,stroll:248,strong:[32,59,123,129,387],strongest:32,strongli:[18,49,87,115,122,126,240],strr:239,struct:97,structur:[13,22,29,30,38,40,53,64,67,75,80,83,86,87,97,101,107,110,111,112,115,122,133,140,141,148,180,185,194,199,241,279,281,287,294,298,299,336,341,363,369,372,408,424,436],strvalu:[13,360,361],stuck:[27,107,119,125,148],stuff:[13,20,27,29,32,40,41,44,45,53,75,80,83,84,90,93,98,102,105,107,114,115,116,117,118,119,120,121,122,125,126,131,150,174,180,191,224,250,251,270,307,350,420],stumbl:[6,123],stupid:[117,123],sturdi:371,stutter:68,style:[7,18,19,22,27,35,56,59,61,71,77,78,81,83,84,86,90,98,99,102,107,115,118,119,120,122,123,127,128,131,143,169,175,177,188,204,205,207,221,223,234,254,270,298,370,374,375,388],styled_foot:175,styled_head:[22,175],styled_separ:175,styled_t:[22,175],sub:[2,13,18,29,30,40,41,51,53,67,68,75,83,84,98,101,110,112,128,149,154,165,170,185,187,193,197,202,241,270,277,283,285,287,288,291,299,300,308,359,364,365,375,387,393,397,429],sub_ansi:365,sub_app:140,sub_brightbg:365,sub_dblspac:387,sub_mxp_link:387,sub_mxp_url:387,sub_text:387,sub_to_channel:185,sub_xterm256:365,subbed_chan:185,subcategori:[187,287],subclass:[19,40,44,48,82,87,110,112,135,180,202,251,271,293,298,302,322,335,341,362,380,384,388,395,396,403],subcommand:82,subcrib:18,subdir:8,subdirectori:[8,83],subdomain:[144,154,157],subfold:[66,72,112,115,141],subhead:84,subject:[2,34,66,95,103,110,154,224,234],sublim:118,submarin:137,submenu:[7,202,296],submenu_class:202,submenu_obj:202,submiss:[223,427],submit:[17,53,83,140,157,223,427,431,433,438],submitcmd:223,submodul:336,subnegoti:336,subnet:[55,145,178],subpackag:[8,67],subprocess:[91,388],subreddit:143,subscrib:[9,18,22,32,47,55,85,87,99,139,167,185,194,195,256,307,323,354],subscribernam:185,subscript:[18,22,41,47,99,139,143,185,195,196,307,397],subscriptionhandl:18,subsect:279,subsequ:[13,22,54,115,128,148,185,214,240,366,388],subsequent_ind:374,subset:[8,46,97,112,122,279],subsid:48,substanti:[199,207],substitut:[7,35,151,294,365,387],substr:[114,365,375],subsub:[30,187,191],subsubhead:84,subsubsubhead:84,subsubtop:[30,187,191],subsubtopicn:191,subsystem:[66,75,121,148,290],subtext:217,subtitl:17,subtop:[185,187,191,284,287],subtopic_separator_char:187,subtract:[29,105,250],subturn:128,subword:388,suc:78,succe:[78,119,120,128,207,211],succeed:[185,211,270],success:[78,110,121,122,126,128,129,141,166,185,194,201,207,211,254,255,256,257,258,263,268,269,290,298,306,312,316,362,370,382,388,438],success_messag:207,success_teleport_msg:269,success_teleport_to:269,success_url:[431,433],successfuli:[207,238],successfulli:[2,10,22,54,81,92,116,125,161,166,207,209,238,268,271,294,306,312,324,356,362,438],suddenli:[0,6,362],sudo:[148,150,156,157],sue:121,suffic:[17,98,115],suffici:[66,154,199],suffix:[6,19,29,365,375,381,388,413],suggest:[6,27,28,30,48,73,83,84,86,91,120,121,122,123,145,154,172,187,201,208,241,251,269,287,294,388],suggestion_cutoff:187,suggestion_maxnum:[187,287],suggests:30,suit:[10,87,93,123,134,191,388,436],suitabl:[11,22,29,32,35,41,46,50,64,67,82,83,86,87,90,91,107,110,115,118,148,154,173,185,207,216,279,290,346,353,368,372,375],sum:[82,83,104,106,111,118,174,217],summar:[74,107,143],summari:[50,74,79,129,143,161,202],summer:[121,122,222],sun:[82,100],sunris:100,sunt:28,super_long_text:373,superclass:395,superfici:240,superflu:387,supersus:290,superus:[5,12,14,15,32,50,57,75,81,89,90,91,99,103,108,112,113,114,115,118,119,122,125,141,145,148,160,166,169,179,190,194,204,247,267,289,290,294,299,312,362,366,368,395],supplement:27,suppli:[5,8,13,19,27,30,31,33,40,41,44,46,47,49,54,67,83,99,114,122,128,129,148,152,169,174,175,178,180,185,190,191,195,202,210,212,222,225,251,279,293,294,298,302,307,323,353,362,370,375,376,385,388],supporst:339,support:[3,12,13,18,22,26,27,29,30,31,34,35,40,41,58,59,61,62,63,64,66,69,75,77,80,83,84,86,87,88,89,96,97,98,99,103,106,111,114,115,117,118,120,121,122,123,129,138,144,145,148,149,153,154,155,156,157,159,160,161,166,177,186,187,190,199,205,210,211,216,222,233,270,280,289,294,298,299,307,317,325,326,327,328,332,334,335,336,337,339,341,352,360,365,369,372,373,374,375,385,388,391,419,440],supports_set:[31,317],suppos:[22,27,40,49,64,74,110,166,202],supposedli:[150,240,336],suppress:[146,334],suppress_ga:[163,164,308,320],suppressga:334,supress:334,sur:143,sure:[2,3,6,7,8,9,11,12,13,14,15,16,18,20,22,27,30,32,35,36,38,40,41,44,46,47,48,49,50,51,53,55,57,63,66,69,73,74,75,80,81,82,83,84,89,90,91,92,93,94,96,98,99,100,103,106,108,110,113,114,115,118,119,120,121,122,123,125,126,128,129,133,135,138,140,141,142,144,145,148,150,151,152,153,154,156,160,161,166,167,173,174,175,177,180,188,195,199,202,204,207,216,231,239,240,241,246,251,252,257,260,267,268,269,280,285,289,290,294,298,299,304,312,316,322,324,329,350,356,357,358,361,362,365,367,369,372,379,384,385,387,388,396,403,405,428,436,438],surfac:[99,104,157,216],surpris:[32,76,95,101,106,115],surround:[20,22,29,71,81,82,128,178,221,267,280,384,388],surviv:[13,19,20,26,27,29,33,41,44,47,92,113,128,138,167,174,190,202,251,302,303,307,368,370,372,388],survivor:122,suscept:[19,97,290],suspect:140,suspend:[7,156,157],suspici:27,suspicion:140,svg:199,svn:[2,68],swallow:[135,321,387],swam:[391,392],swap:[8,51,59,180,222,237,362,370],swap_autoind:370,swap_object:362,swap_typeclass:[48,166,362],swapcas:365,swapper:362,swedish:63,sweep:41,swiftli:54,swim:[391,392],swing:[22,92,93,104,114],switch1:71,switch2:71,switch_map:190,switch_opt:[177,178,179,180,185,186,187,188,190,222],sword:[22,49,66,77,78,92,105,108,110,117,119,121,122,125,126,163,164,197,201,206,207,209,216,241,251,299,385,388],swordbladerecip:208,swordguardrecip:208,swordhandlerecip:208,swordmanship:121,swordpommelrecip:208,swordrecip:[207,208],swordsmithingbaserecip:208,swum:[391,392],symbol:[7,15,16,22,68,80,82,110,153,252,271,274,277,279,280,282,373],symlink:[84,148],symmetr:374,sync:[11,44,52,64,87,279,280,281,330,335,350,351,352,353,360,369],sync_node_to_grid:280,sync_port:353,syncdata:[352,353],syncdb:8,synchron:381,syntact:[290,388],syntax:[6,14,15,16,22,32,59,71,76,77,78,79,86,90,93,99,100,106,108,113,129,141,145,163,164,175,179,180,187,188,191,202,207,211,214,222,223,270,290,294,312,324,351,360,362,364,365,440],syntaxerror:115,sys_cmd:173,syscmdkei:[22,85,163],syscommand:[163,164,170,176,294],syslog:244,sysroot:153,system:[0,2,5,6,8,9,11,12,13,18,19,20,23,24,31,33,34,35,38,40,41,43,44,45,46,47,48,53,54,57,61,63,64,66,68,71,73,74,75,76,79,80,81,82,83,84,85,86,87,89,90,92,93,95,96,97,100,103,105,111,112,113,115,118,119,125,133,137,138,139,141,143,145,148,150,153,154,157,160,161,163,164,167,169,170,171,173,175,176,177,179,187,189,191,193,194,195,196,199,201,202,204,207,208,209,212,216,228,229,230,231,233,234,237,238,240,241,244,245,246,252,254,255,256,257,258,266,269,271,277,278,279,280,282,283,284,286,289,290,293,294,296,298,299,300,312,335,341,349,359,362,366,368,371,372,381,395,413,439,440],system_command:22,systemat:95,systemctl:144,systemd:150,systemmultimatch:189,systemnoinput:189,systemnomatch:189,tab:[0,2,7,15,51,52,59,75,94,101,115,116,118,123,365,374,387],tabl:[6,9,14,16,48,59,67,69,74,79,81,85,87,89,99,101,104,110,117,141,175,177,185,187,190,223,336,355,365,371,373,374,385,388,439],table_char:371,table_format:177,table_lin:374,table_str:99,tablea:371,tableb:371,tablechar:[99,371],tableclos:[67,336],tablecol:374,tableopen:[67,336],tablet:56,tabletop:[99,126,143,254,258],tabsiz:[365,374],tabstop:387,tabularinlin:[396,403],tack:[108,174],tackl:83,tactic:[122,126,128],taction:128,tag:[14,18,19,22,24,27,30,31,34,35,38,40,41,48,50,51,52,53,55,59,60,63,66,67,73,75,78,82,85,87,98,99,102,107,108,110,115,133,141,146,156,163,164,175,177,178,179,180,185,186,187,188,189,190,191,192,194,196,201,202,203,204,205,207,208,211,212,214,216,217,222,223,224,228,234,237,238,239,241,244,247,248,249,251,252,254,255,256,257,258,263,266,267,268,269,270,273,280,282,286,287,289,294,298,299,327,341,343,349,359,361,362,365,368,370,371,372,373,374,385,388,393,394,395,397,399,400,401,407,410,440],tag_all_charact:217,tag_categori:403,tag_charact:217,tag_data:403,tag_kei:403,tag_typ:[403,407],tagadmin:403,tagcategori:[216,217],tagcount:110,taget_map_xyz:280,tagform:403,tagformset:[396,403],taghandl:[46,48,363,403],taginlin:[395,397,399,400,401,403],tagkei:[289,363,368],taglin:17,tagnam:299,tagseri:410,tagshandl:410,tagstr:[299,363],tagtyp:[46,361,363,385,407],tagtypefilt:407,tail:[112,154,156,312,381],tail_log_fil:[312,381],tail_log_funct:381,tailor:[89,101,427],take:[0,3,7,8,13,14,15,16,17,18,19,20,22,27,28,29,31,32,38,40,43,44,48,54,56,57,59,61,63,64,68,74,75,76,77,78,79,80,81,82,83,84,86,87,88,89,90,91,92,93,97,98,99,100,101,102,105,106,108,112,113,114,115,118,119,121,122,123,124,125,127,128,129,130,131,132,133,137,138,140,141,143,153,154,157,159,166,167,172,173,177,189,191,194,196,201,204,207,210,214,219,221,222,223,238,239,241,244,248,252,254,255,256,257,258,263,266,267,269,273,277,290,299,316,332,340,343,352,353,361,362,365,370,371,372,373,382,388,389],taken:[0,20,87,97,116,128,129,136,137,157,186,212,244,254,255,256,257,258,294,332,356,365,368],takeov:354,tale:131,talk:[11,19,22,52,61,79,83,99,106,115,122,123,145,154,185,186,201,240,241,249,269,309],talker:86,talki:[18,87,122],talking_npc:[163,164,197],talkingcmdset:249,talkingnpc:249,tall:[71,121,122,186,241],tallman:186,tan:208,tang:[107,208],tannin:208,tantal:15,target1:257,target2:257,target:[8,22,34,61,67,82,90,91,92,93,94,99,107,108,114,115,122,125,126,128,129,133,157,166,175,180,185,186,190,194,196,204,211,214,216,219,222,234,251,252,254,255,256,257,258,267,271,273,274,277,279,280,294,361,365,368,372,388],target_flag:216,target_loc:[217,248,269,271,294],target_map_xyz:[82,274,277,280],target_obj:290,target_path_styl:279,targetlist:234,task:[2,5,18,19,41,46,61,74,106,112,150,161,190,191,228,230,252,273,306,307,388],task_handl:[163,306,388],task_id:[190,230,306],taskhandl:[163,164,300,388],taskhandlertask:[306,388],tast:[76,119,123,140],tasti:207,tavern:241,tax:[5,153],taylor:143,tb_basic:[163,164,197,253],tb_equip:[163,164,197,253],tb_filenam:366,tb_item:[163,164,197,253],tb_iter:366,tb_magic:[163,164,197,253],tb_rang:[163,164,197,253],tbbasiccharact:254,tbbasicturnhandl:254,tbearmor:255,tbequipcharact:255,tbequipturnhandl:255,tbeweapon:255,tbitemscharact:256,tbitemscharactertest:256,tbitemsturnhandl:256,tbmagiccharact:257,tbmagicturnhandl:257,tbodi:141,tbrangecharact:258,tbrangeobject:258,tbrangeturnhandl:258,tchar:128,tcp:157,tcpserver:[61,357],teach:[102,123],team:[2,11,22,30,68,87,120,122,123],teardown:[8,191,209,220,231,250,264,277,338,386,411],teaser:154,tech:[102,118,123,124,127,130,132,143],technic:[13,27,46,48,54,57,59,61,63,64,68,75,82,87,88,89,95,108,120,123,145,154,163,164,197,199,201,259,360],techniqu:[93,122,125,365],technolog:122,tediou:[7,81],teenag:[90,157],tehom:[75,77,110],tehomcd:75,tel:[55,74,99,106,107,137,148,180,273],telepath:122,telephathi:18,teleport:[15,55,73,99,105,108,119,180,186,269,273,277,280,366],teleportermaplink:[82,280],teleportmaplink:82,teleportroom:269,televis:20,tell:[0,3,4,8,9,10,11,14,20,22,27,31,32,34,35,38,40,41,54,55,57,63,64,66,72,74,76,78,79,80,90,93,99,101,106,107,108,112,113,114,115,116,122,126,128,131,134,137,139,141,144,145,153,154,156,157,161,167,177,185,186,196,211,241,269,280,294,312,330,341,353,370,436],telnet:[5,16,44,51,52,58,61,64,70,75,86,87,91,94,115,118,143,148,153,156,157,160,161,163,164,187,190,308,320,325,326,327,328,332,333,334,336,337,339,343,351,352,387],telnet_:154,telnet_hostnam:147,telnet_interfac:154,telnet_oob:[67,163,164,308,320],telnet_port:[2,5,75,112,147,154,344],telnet_ssl:[163,164,308,320],telnetoob:336,telnetprotocol:[333,335,337],telnetserverfactori:335,telport:119,temp:196,tempat:223,templat:[11,12,19,20,35,40,43,45,48,49,50,51,52,53,72,87,89,103,112,116,122,129,131,133,141,160,163,164,185,186,188,194,223,266,312,341,351,352,360,364,371,416,420,425,435,436,438],template2menu:372,template_nam:[53,431,432,433,435,436,438],template_overrid:[51,72,89,112,133],template_regex:360,template_rend:45,template_str:35,templates_overrid:72,templatestr:371,templatetag:[163,164,393],templateview:[53,436],tempmsg:196,temporari:[8,11,13,119,161,174,196,199,233,254,255,256,257,258,307,372],temporarili:[0,6,8,18,20,27,41,52,108,113,121,154,185,190,207,230,238,251,263],tempt:[29,43,113,115,120,178],ten:[81,93,154],tend:[5,6,66,71,87,98,122,126,137,154,157,180,240,244],tens:[391,392],tent:81,term:[20,30,54,63,74,87,100,101,106,112,113,114,123,138,148,154,175,216,239,355],term_siz:[3,163],termin:[0,3,5,6,7,11,19,53,59,82,84,87,89,107,115,116,118,129,138,145,148,153,154,156,157,160,161,163,190,229,252,254,255,256,257,258,311,312,332,339,355,436],terminalrealm:332,terminals:332,terminalsessiontransport:332,terminalsessiontransport_getp:332,terrain:[80,280],terribl:325,ters:41,test1:[13,31,374],test2010:107,test2028:107,test2:[13,22,31,59],test3:[13,374],test4:[13,374],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,32,36,38,40,41,45,47,51,53,54,57,74,76,78,79,81,83,84,90,91,93,97,99,100,101,103,105,106,108,110,114,116,120,122,123,125,127,128,130,136,139,140,143,145,146,148,149,150,152,154,155,163,164,170,172,176,177,179,187,190,197,198,204,206,207,211,213,222,223,226,242,243,250,252,254,255,256,257,258,259,260,266,272,279,298,308,314,317,320,341,342,343,347,362,364,365,366,368,372,377,386,388,390,393,406,417,420,426,440],test_:8,test_about:191,test_accept:231,test_access:191,test_active_task:191,test_add:231,test_add_trait:250,test_add_valid:231,test_al:250,test_all_com:191,test_all_st:220,test_alternative_cal:8,test_amp_in:338,test_amp_out:338,test_at_repeat:264,test_attribute_command:191,test_audit:246,test_auto_creating_bucket:200,test_auto_creating_bucket_with_acl:200,test_ban:191,test_base_pars:220,test_base_search:220,test_base_st:220,test_batch_command:191,test_bold:338,test_boundaries__bigmod:250,test_boundaries__change_boundari:250,test_boundaries__dis:250,test_boundaries__invers:250,test_boundaries__minmax:250,test_build:277,test_c_creates_button:348,test_c_creates_obj:348,test_c_dig:348,test_c_examin:348,test_c_help:348,test_c_login:348,test_c_login_no_dig:348,test_c_logout:348,test_c_look:348,test_c_mov:348,test_c_move_:348,test_c_move_n:348,test_c_soci:348,test_cach:250,test_cal:[191,231],test_cancel:191,test_cas:8,test_cboot:191,test_cdesc:191,test_cdestroi:191,test_channel__al:191,test_channel__alias__unalia:191,test_channel__ban__unban:191,test_channel__boot:191,test_channel__cr:191,test_channel__desc:191,test_channel__destroi:191,test_channel__histori:191,test_channel__list:191,test_channel__lock:191,test_channel__msg:191,test_channel__mut:191,test_channel__noarg:191,test_channel__sub:191,test_channel__unlock:191,test_channel__unmut:191,test_channel__unsub:191,test_channel__who:191,test_char_cr:191,test_char_delet:191,test_clean_nam:200,test_clean_name_norm:200,test_clean_name_trailing_slash:200,test_clean_name_window:200,test_clear:250,test_clock:191,test_color:338,test_color_test:191,test_comparisons_numer:250,test_comparisons_trait:250,test_compress_content_len:200,test_connection_thread:200,test_content_typ:200,test_copi:191,test_craft__nocons__failur:209,test_craft__notools__failur:209,test_craft__success:209,test_craft_cons_excess__fail:209,test_craft_cons_excess__sucess:209,test_craft_cons_order__fail:209,test_craft_hook__fail:209,test_craft_hook__succe:209,test_craft_missing_cons__always_consume__fail:209,test_craft_missing_cons__fail:209,test_craft_missing_tool__fail:209,test_craft_sword:209,test_craft_tool_excess__fail:209,test_craft_tool_excess__sucess:209,test_craft_tool_order__fail:209,test_craft_wrong_tool__fail:209,test_creat:[191,411],test_curr:250,test_cwho:191,test_data_in:338,test_data_out:338,test_del:231,test_delet:[250,411],test_desc:[191,250],test_desc_default_to_room:191,test_destroi:191,test_destroy_sequ:191,test_dig:191,test_do_nested_lookup:191,test_do_task:191,test_echo:191,test_edit:231,test_edit_valid:231,test_emit:191,test_emot:220,test_empty_desc:191,test_error_format:209,test_examin:191,test_exit:231,test_exit_command:191,test_extended_path_tracking__horizont:277,test_extended_path_tracking__vert:277,test_find:191,test_floordiv:250,test_focu:220,test_focus_interact:220,test_forc:191,test_func_name_manipul:191,test_general_context:422,test_generated_url_is_encod:200,test_get:[250,428],test_get_and_drop:191,test_get_authent:428,test_get_dis:428,test_get_shortest_path:277,test_get_visual_range__nodes__charact:277,test_get_visual_range__nodes__character_0:277,test_get_visual_range__nodes__character_1:277,test_get_visual_range__nodes__character_2:277,test_get_visual_range__nodes__character_3:277,test_get_visual_range__nodes__character_4:277,test_get_visual_range__nodes__character_5:277,test_get_visual_range__nodes__character_6:277,test_get_visual_range__nodes__character_7:277,test_get_visual_range__nodes__character_8:277,test_get_visual_range__nodes__character_9:277,test_get_visual_range__scan:277,test_get_visual_range__scan_0:277,test_get_visual_range__scan_1:277,test_get_visual_range__scan_2:277,test_get_visual_range__scan_3:277,test_get_visual_range__scan__charact:277,test_get_visual_range__scan__character_0:277,test_get_visual_range__scan__character_1:277,test_get_visual_range__scan__character_2:277,test_get_visual_range__scan__character_3:277,test_get_visual_range_with_path:277,test_get_visual_range_with_path_0:277,test_get_visual_range_with_path_1:277,test_get_visual_range_with_path_2:277,test_get_visual_range_with_path_3:277,test_get_visual_range_with_path_4:277,test_giv:191,test_grid_cr:277,test_grid_creation_0:277,test_grid_creation_1:277,test_grid_pathfind:277,test_grid_pathfind_0:277,test_grid_pathfind_1:277,test_grid_vis:277,test_grid_visibility_0:277,test_grid_visibility_1:277,test_handl:231,test_hello_world:116,test_help:191,test_hom:191,test_ic:191,test_ic__nonaccess:191,test_ic__other_object:191,test_ident:338,test_idl:348,test_info_command:191,test_init:250,test_interrupt_command:191,test_invalid_access:428,test_inventori:191,test_ital:338,test_large_msg:338,test_list:[231,411],test_list_cmdset:191,test_load_recip:209,test_location_leading_slash:200,test_lock:[191,231],test_look:[191,220],test_mask:246,test_memplot:348,test_menu:252,test_messag:349,test_misformed_command:191,test_msg:209,test_mudlet_ttyp:338,test_mul_trait:250,test_multimatch:191,test_mux_command:191,test_mycmd_char:8,test_mycmd_room:8,test_nam:191,test_nested_attribute_command:191,test_new_task_waiting_input:191,test_nick:191,test_no_input:191,test_no_task:191,test_node_from_coord:277,test_object:191,test_object_search:8,test_ooc:191,test_ooc_look:191,test_opt:191,test_override_class_vari:200,test_override_init_argu:200,test_overwrit:220,test_pag:191,test_parse_for_perspect:220,test_parse_for_th:220,test_password:191,test_path:277,test_paths_0:277,test_paths_1:277,test_pause_unpaus:191,test_percentag:250,test_perm:191,test_persistent_task:191,test_pi:191,test_pickle_with_bucket:200,test_pickle_without_bucket:200,test_plain_ansi:338,test_pos:191,test_pos_shortcut:250,test_pre_craft:209,test_pre_craft_fail:209,test_quel:191,test_queri:[163,164,308,342],test_quit:191,test_remov:[191,250],test_repr:250,test_resourc:[8,163,164,191,220,231,246,264,277,338,364,411,428],test_responce_of_y:191,test_retriev:411,test_return_valu:8,test_room_method:220,test_sai:191,test_script:191,test_seed__success:209,test_send_random_messag:264,test_server_load:191,test_sess:191,test_set:250,test_set_attribut:411,test_set_focu:220,test_set_game_name_and_slogan:422,test_set_help:191,test_set_hom:191,test_set_obj_alia:191,test_set_webclient_set:422,test_shortest_path:277,test_shortest_path_00:277,test_shortest_path_01:277,test_shortest_path_02:277,test_shortest_path_03:277,test_shortest_path_04:277,test_shortest_path_05:277,test_shortest_path_06:277,test_shortest_path_07:277,test_shortest_path_08:277,test_shortest_path_09:277,test_shortest_path_0:277,test_shortest_path_10:277,test_shortest_path_1:277,test_shortest_path_2:277,test_shortest_path_3:277,test_shortest_path_4:277,test_shortest_path_5:277,test_shortest_path_6:277,test_shortest_path_7:277,test_shortest_path_8:277,test_shortest_path_9:277,test_simpl:8,test_simple_default:191,test_spawn:[191,277],test_special_charact:200,test_speech:220,test_split_nested_attr:191,test_start:231,test_storage_delet:200,test_storage_exist:200,test_storage_exists_doesnt_create_bucket:200,test_storage_exists_fals:200,test_storage_listdir_bas:200,test_storage_listdir_subdir:200,test_storage_mtim:200,test_storage_open_no_overwrite_exist:200,test_storage_open_no_writ:200,test_storage_open_writ:200,test_storage_s:200,test_storage_sav:200,test_storage_save_gzip:200,test_storage_save_gzip_twic:200,test_storage_save_with_acl:200,test_storage_url:200,test_storage_url_slash:200,test_storage_write_beyond_buffer_s:200,test_str_output:277,test_strip_signing_paramet:200,test_sub_trait:250,test_subtopic_fetch:191,test_subtopic_fetch_00_test:191,test_subtopic_fetch_01_test_creating_extra_stuff:191,test_subtopic_fetch_02_test_cr:191,test_subtopic_fetch_03_test_extra:191,test_subtopic_fetch_04_test_extra_subsubtop:191,test_subtopic_fetch_05_test_creating_extra_subsub:191,test_subtopic_fetch_06_test_something_els:191,test_subtopic_fetch_07_test_mor:191,test_subtopic_fetch_08_test_more_second_mor:191,test_subtopic_fetch_09_test_more_mor:191,test_subtopic_fetch_10_test_more_second_more_again:191,test_subtopic_fetch_11_test_more_second_third:191,test_tag:191,test_task_complete_waiting_input:191,test_teleport:191,test_timer_r:250,test_timer_ratetarget:250,test_toggle_com:191,test_trait:[163,164,197],test_trait_db_connect:250,test_trait_getset:250,test_tunnel:191,test_tunnel_exit_typeclass:191,test_typeclass:191,test_upd:411,test_upp:8,test_valid_access:428,test_valid_access_multisession_0:428,test_valid_access_multisession_2:428,test_valid_char:428,test_validate_input__fail:250,test_validate_input__valid:250,test_valu:250,test_verb_actor_stance_compon:392,test_verb_actor_stance_components_00_hav:392,test_verb_actor_stance_components_01_swim:392,test_verb_actor_stance_components_02_g:392,test_verb_actor_stance_components_03_given:392,test_verb_actor_stance_components_04_am:392,test_verb_actor_stance_components_05_do:392,test_verb_actor_stance_components_06_ar:392,test_verb_actor_stance_components_07_had:392,test_verb_actor_stance_components_08_grin:392,test_verb_actor_stance_components_09_smil:392,test_verb_actor_stance_components_10_vex:392,test_verb_actor_stance_components_11_thrust:392,test_verb_conjug:392,test_verb_conjugate_0_inf:392,test_verb_conjugate_1_inf:392,test_verb_conjugate_2_inf:392,test_verb_conjugate_3_inf:392,test_verb_conjugate_4_inf:392,test_verb_conjugate_5_inf:392,test_verb_conjugate_6_inf:392,test_verb_conjugate_7_2sgpr:392,test_verb_conjugate_8_3sgpr:392,test_verb_get_all_tens:392,test_verb_infinit:392,test_verb_infinitive_0_hav:392,test_verb_infinitive_1_swim:392,test_verb_infinitive_2_g:392,test_verb_infinitive_3_given:392,test_verb_infinitive_4_am:392,test_verb_infinitive_5_do:392,test_verb_infinitive_6_ar:392,test_verb_is_past:392,test_verb_is_past_0_1st:392,test_verb_is_past_1_1st:392,test_verb_is_past_2_1st:392,test_verb_is_past_3_1st:392,test_verb_is_past_4_1st:392,test_verb_is_past_5_1st:392,test_verb_is_past_6_1st:392,test_verb_is_past_7_2nd:392,test_verb_is_past_participl:392,test_verb_is_past_participle_0_hav:392,test_verb_is_past_participle_1_swim:392,test_verb_is_past_participle_2_g:392,test_verb_is_past_participle_3_given:392,test_verb_is_past_participle_4_am:392,test_verb_is_past_participle_5_do:392,test_verb_is_past_participle_6_ar:392,test_verb_is_past_participle_7_had:392,test_verb_is_pres:392,test_verb_is_present_0_1st:392,test_verb_is_present_1_1st:392,test_verb_is_present_2_1st:392,test_verb_is_present_3_1st:392,test_verb_is_present_4_1st:392,test_verb_is_present_5_1st:392,test_verb_is_present_6_1st:392,test_verb_is_present_7_1st:392,test_verb_is_present_participl:392,test_verb_is_present_participle_0_hav:392,test_verb_is_present_participle_1_swim:392,test_verb_is_present_participle_2_g:392,test_verb_is_present_participle_3_given:392,test_verb_is_present_participle_4_am:392,test_verb_is_present_participle_5_do:392,test_verb_is_present_participle_6_ar:392,test_verb_is_tens:392,test_verb_is_tense_0_inf:392,test_verb_is_tense_1_inf:392,test_verb_is_tense_2_inf:392,test_verb_is_tense_3_inf:392,test_verb_is_tense_4_inf:392,test_verb_is_tense_5_inf:392,test_verb_is_tense_6_inf:392,test_verb_past:392,test_verb_past_0_1st:392,test_verb_past_1_1st:392,test_verb_past_2_1st:392,test_verb_past_3_1st:392,test_verb_past_4_1st:392,test_verb_past_5_1st:392,test_verb_past_6_1st:392,test_verb_past_7_2nd:392,test_verb_past_participl:392,test_verb_past_participle_0_hav:392,test_verb_past_participle_1_swim:392,test_verb_past_participle_2_g:392,test_verb_past_participle_3_given:392,test_verb_past_participle_4_am:392,test_verb_past_participle_5_do:392,test_verb_past_participle_6_ar:392,test_verb_pres:392,test_verb_present_0_1st:392,test_verb_present_1_1st:392,test_verb_present_2_1st:392,test_verb_present_3_1st:392,test_verb_present_4_1st:392,test_verb_present_5_1st:392,test_verb_present_6_1st:392,test_verb_present_7_2nd:392,test_verb_present_8_3rd:392,test_verb_present_participl:392,test_verb_present_participle_0_hav:392,test_verb_present_participle_1_swim:392,test_verb_present_participle_2_g:392,test_verb_present_participle_3_given:392,test_verb_present_participle_4_am:392,test_verb_present_participle_5_do:392,test_verb_present_participle_6_ar:392,test_verb_tens:392,test_verb_tense_0_hav:392,test_verb_tense_1_swim:392,test_verb_tense_2_g:392,test_verb_tense_3_given:392,test_verb_tense_4_am:392,test_verb_tense_5_do:392,test_verb_tense_6_ar:392,test_wal:191,test_whisp:191,test_who:191,test_without_migr:8,test_wrong_func_nam:191,testabl:8,testaccount:191,testadmin:191,testampserv:338,testapp:140,testbatchprocess:191,testbodyfunct:264,testbuild:191,testbuildexamplegrid:277,testcas:[8,200,209,250,277,338,348,380,386,392,422],testcmdcallback:231,testcmdtask:191,testcomm:191,testcommand:27,testcommschannel:191,testcraftcommand:209,testcraftingrecip:209,testcraftingrecipebas:209,testcraftsword:209,testcraftutil:209,testdefaultcallback:231,testdummyrunnerset:348,tester:[110,154,330],testevenniarestapi:411,testeventhandl:231,testevscaperoom:220,testevscaperoomcommand:220,testform:371,testgener:191,testgeneralcontext:422,testhelp:191,testid:22,testinterruptcommand:191,testirc:338,testmap10:277,testmap11:277,testmap1:277,testmap2:277,testmap3:277,testmap4:277,testmap5:277,testmap6:277,testmap7:277,testmap8:277,testmap9:277,testmapstresstest:277,testmemplot:348,testmenu:[223,372],testmixedrefer:380,testmod:353,testmymodel:8,testnnmain:191,testnumerictraitoper:250,testobj:[8,219,221],testobject:8,testobjectdelet:380,testok:106,testregularrefer:380,testrenam:107,testset:8,testsharedmemoryrefer:380,teststat:220,teststr:8,testsystem:191,testsystemcommand:191,testtabl:107,testtelnet:338,testtrait:250,testtraitcount:250,testtraitcountertim:250,testtraitgaug:250,testtraitgaugetim:250,testtraitstat:250,testunconnectedcommand:191,testutil:220,testvalu:13,testverbconjug:392,testview:53,testwebsocket:338,testxyzgrid:277,testxyzgridtransit:277,text2html:[163,164,364],text:[0,6,8,11,12,14,15,16,17,18,22,25,26,28,29,30,32,34,35,38,40,41,46,51,53,54,58,59,61,63,64,66,67,68,74,75,76,79,81,82,83,85,86,90,94,97,98,99,103,105,106,108,112,114,116,118,119,121,122,123,124,125,126,129,135,137,138,140,142,143,146,148,150,152,154,155,156,161,166,167,172,175,177,178,179,180,185,186,187,188,189,190,191,192,195,196,199,201,202,203,204,207,211,212,214,215,216,221,222,223,224,225,228,230,234,237,238,240,241,245,247,248,249,251,252,254,255,256,257,258,262,263,267,268,269,270,273,284,286,287,290,294,296,299,302,309,310,317,323,324,327,330,331,332,335,336,340,341,343,351,352,353,356,357,360,361,363,365,366,368,370,371,372,373,374,375,382,385,387,388,389,395,397,401,427,439,440],text_:84,text_color:225,text_descript:251,text_exit:[76,202],text_single_exit:76,textarea:[384,427],textbook:61,textbox:427,textfield:[66,140],textn:191,textstr:31,texttag:[103,138,440],texttohtmlpars:387,textual:95,textwrap:374,textwrapp:374,than:[0,3,4,5,6,7,8,9,11,12,13,14,15,18,20,22,24,25,27,28,29,30,32,36,38,40,41,43,44,46,47,48,51,53,56,57,59,63,66,69,71,72,74,77,78,79,80,82,83,84,86,87,89,91,93,95,98,99,100,101,104,106,107,110,112,113,114,115,117,118,119,120,121,123,125,126,128,129,138,141,144,145,147,150,151,154,157,159,161,166,169,172,173,174,177,178,179,180,181,185,187,188,190,191,201,202,203,207,210,216,219,225,230,239,240,241,248,251,252,254,255,256,257,258,268,270,275,279,280,282,289,294,296,298,312,338,353,358,360,361,362,365,366,372,373,374,375,379,381,383,384,385,387,388,396,403,416,436],thank:[89,141,234,357],thankfulli:140,the_answ:117,the_one_r:117,thead:141,theathr:30,theatr:30,thei:[3,4,5,6,7,8,11,12,13,14,15,16,17,18,19,20,22,27,29,30,32,36,38,39,40,41,44,45,46,48,50,51,52,53,54,55,56,57,59,61,62,63,64,66,67,68,69,73,74,75,76,77,78,79,81,82,83,84,86,87,89,90,91,93,94,95,96,97,98,99,101,102,103,105,106,107,108,109,110,112,113,114,115,116,117,120,121,123,125,126,128,129,133,135,137,138,139,141,142,144,145,148,153,154,157,160,161,166,173,174,177,179,180,185,186,188,189,190,194,199,201,202,204,207,208,211,216,222,224,229,240,241,251,254,255,256,257,258,268,269,270,271,279,280,282,284,289,290,293,294,298,299,300,302,304,305,307,312,332,333,335,336,337,341,344,350,351,352,353,355,360,365,366,367,369,372,374,375,388,389,396,403,408,410,413,427,433,437,438],theirs:[128,203,224],them:[0,5,6,7,8,9,11,12,13,14,15,16,18,19,20,22,25,26,27,29,30,31,32,34,35,36,38,40,41,43,44,46,47,48,50,51,53,54,55,56,59,61,62,63,64,66,67,69,72,73,74,75,76,77,78,79,81,82,83,84,86,87,89,90,92,93,94,95,98,99,100,101,104,105,106,107,110,112,113,114,115,116,117,119,120,121,123,125,126,128,129,132,133,135,137,138,140,141,145,147,151,153,154,155,157,161,166,171,172,173,175,177,179,180,185,187,188,191,194,199,203,204,205,207,208,217,222,223,224,225,227,229,238,239,241,251,252,254,255,256,257,258,263,267,269,270,279,285,290,294,299,304,307,312,330,332,335,343,347,350,351,353,360,362,363,365,366,368,372,375,384,387,396,403,405,410,418,433,436,438],themat:120,theme:[53,112,120,122,141],themself:256,themselv:[6,8,13,18,20,22,27,32,36,45,48,57,69,73,74,80,84,86,90,92,99,101,103,105,112,121,122,125,126,129,137,139,152,180,216,241,280,294,302,305,312,361,363,384],theoret:[20,68,82,124,282],theori:[3,20,98,129,143,166,173],thereaft:35,therefor:[8,41,74,80,82,100,106,119,179,202,216,227],therein:[16,22,177,188,190,214,222,238,269],thereof:[241,294],thet:112,thi:[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,18,19,20,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,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,75,76,77,78,79,80,81,82,83,84,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,124,125,126,127,128,129,130,131,133,134,135,136,137,138,139,140,141,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,159,160,161,162,163,165,166,167,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,199,201,202,203,204,205,207,208,209,210,211,212,214,215,216,217,219,221,222,223,224,225,227,228,229,230,233,234,237,238,239,240,241,244,245,247,248,249,251,252,254,255,256,257,258,260,262,263,265,266,267,268,269,270,271,273,274,275,276,277,279,280,281,282,283,284,285,286,287,288,289,290,291,293,294,297,298,299,300,302,303,304,305,306,307,308,309,310,311,312,314,316,317,318,319,321,322,323,324,325,326,327,328,329,330,331,332,333,334,335,336,337,339,340,341,343,344,345,346,347,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,379,380,381,382,383,384,385,386,387,388,389,391,393,395,396,397,399,400,401,402,403,405,407,408,410,413,416,418,419,420,424,425,427,429,431,432,433,434,435,436,437,438,439],thie:27,thieveri:187,thin:[54,76,81,93,204,381],thing:[0,1,5,6,8,9,10,11,13,14,16,18,19,20,22,26,27,29,30,31,36,38,40,43,44,45,47,48,51,53,54,55,57,59,61,63,64,66,68,71,72,74,75,76,78,79,80,81,82,83,86,87,88,89,90,91,92,93,94,95,99,101,102,104,105,106,107,108,110,111,112,114,115,119,120,121,123,125,126,127,128,129,131,133,135,137,138,139,140,141,143,144,148,151,153,154,156,157,159,160,161,166,173,174,180,201,202,207,208,216,221,222,230,240,241,251,252,258,263,266,269,270,290,293,294,316,321,325,357,360,362,365,366,374,375,384,396,403,405,436,438,439,440],things_styl:221,think:[6,20,27,34,38,40,46,47,52,53,59,72,79,81,82,83,86,88,93,100,103,106,107,108,115,117,118,120,124,125,126,127,130,132,143,150,159,353,436],third:[3,8,9,19,27,29,58,74,75,83,84,87,95,101,115,123,125,137,141,144,145,152,153,154,180,191,216,365,372,375],third_person:221,thirdnod:27,this_sign:354,thoma:[35,55,178],thorn:[13,36,117],thorough:0,those:[2,8,9,10,11,12,13,14,15,16,18,20,22,25,27,29,32,36,38,40,44,46,48,53,57,59,66,67,72,75,81,82,86,87,89,90,92,94,96,97,98,99,100,102,103,105,107,108,110,113,114,115,117,118,119,120,121,123,125,126,129,131,133,135,137,142,143,145,148,151,154,157,159,161,174,175,177,180,185,186,187,191,195,202,214,221,241,245,251,252,254,263,268,269,290,298,299,306,335,340,343,361,362,372,373,374,382,383,386,388,410,427,432,433,435],though:[0,6,8,9,11,12,13,14,15,16,19,20,27,36,43,50,54,55,63,71,76,82,83,87,94,95,98,100,101,103,106,107,109,111,113,115,119,121,122,123,125,128,129,137,138,143,145,148,150,152,153,154,156,157,161,166,175,202,203,225,251,254,255,257,258,269,270,280,294,298,299,360,365,372,388],thought:[32,33,95,115,120,122,143,145],thousand:[81,95,140,154],thread:[19,77,143,145,161,331,357,381,388],threadpool:357,threadsaf:[396,403],threat:157,three:[14,18,20,22,27,30,32,35,36,55,56,59,64,72,74,76,79,84,89,91,101,105,109,115,117,121,127,140,141,154,172,185,187,252,257,281,290,365,372],threshold:[82,264,355,366],thrill:105,throttl:[163,164,166,308,317,330],through:[5,6,7,12,14,15,17,19,20,22,27,28,29,30,32,35,36,40,41,43,44,45,50,52,53,61,64,67,68,73,74,75,79,82,84,86,87,88,91,94,95,96,97,98,99,100,101,105,106,111,112,116,117,118,119,122,123,124,125,127,128,132,133,134,137,145,151,154,155,157,159,161,163,166,174,180,185,187,191,201,219,220,222,227,245,247,254,255,256,257,258,271,279,280,288,290,293,294,303,304,307,312,314,319,328,332,335,341,344,349,351,352,361,362,366,368,371,372,373,387,388,396,403,427,436],throughout:[13,27,43,80,86,108,256,277],throughput:[194,368],thrown:128,thrust:[268,392],thu:[15,18,20,22,27,29,32,34,38,48,57,59,64,66,68,72,81,95,96,98,99,110,115,122,126,129,133,137,141,147,177,181,203,240,279,280,282,290,294,307,344,358,360,361,368],thud:224,thumb:[4,11,59],thumbnail:89,thunder:145,thunderstorm:119,thusli:153,tick:[5,11,22,27,41,47,84,87,139,145,220,256,267,269,307,344],ticker1:[47,307],ticker2:[47,307],ticker:[31,41,85,107,139,167,267,269,303,307,317,388],ticker_class:307,ticker_handl:[47,139,163,307,388],ticker_pool_class:307,ticker_storag:307,tickerhandl:[19,24,41,128,139,163,164,248,256,269,300,388,440],tickerpool:307,tickerpool_layout:307,ticket:88,tidbit:86,tidi:156,tie:[128,282],tied:[18,87,117,174,187,204,216,219,263,281,286],tier:[154,199],ties:[53,72,80,182],tight:204,tightli:[38,157,194],tild:110,tim:[77,204,223,225,252,254,255,256,257,258],time:[0,2,3,5,7,8,9,11,12,13,14,15,17,18,20,27,28,29,30,32,34,36,40,43,44,47,48,54,55,59,61,62,64,66,67,69,71,72,74,75,76,77,78,80,82,83,85,86,87,88,89,90,91,92,93,94,95,97,99,101,102,106,107,108,110,112,113,114,115,116,117,119,120,121,123,125,126,128,129,134,137,139,140,144,145,147,148,149,150,152,153,154,156,161,166,167,169,171,172,174,175,178,185,190,194,196,199,201,207,210,211,216,222,229,230,233,238,239,240,247,248,250,251,252,254,255,256,257,258,260,263,267,268,269,286,293,294,297,299,300,302,305,306,307,312,314,316,318,319,324,330,335,337,343,344,345,349,350,351,353,355,360,362,363,365,366,367,368,373,376,379,380,381,384,388,396,403],time_ev:233,time_factor:[19,100,210,376],time_format:388,time_game_epoch:[19,100,376],time_to_tupl:210,time_unit:[100,210],time_until_next_repeat:41,timed_script:41,timedelai:[93,306,386,388],timedelta:[382,389],timeeventscript:230,timefactor:100,timeformat:[381,388],timeit:5,timelin:123,timeout:[77,128,136,150,335,355,379],timer:[19,22,47,64,87,97,108,111,112,122,128,190,222,250,256,260,263,268,300,305,306,307,343,351,385,413],timerobject:41,timerscript:41,timescript:376,timeslot:222,timestamp:[19,63,91,343,344,355,376],timestep:[5,344],timestr:381,timetrac:[163,164,308,342],timetupl:100,timezon:[145,199,381,382,389],tin:116,tini:[95,103,145],tinker:6,tintin:[146,325,326,336,339],tinyfugu:146,tinymud:[68,98],tinymush:[68,71,98],tinymux:[68,98],tip:[46,83,88,143,157],tire:[108,174],titeuf87:[77,271],titl:[17,51,76,101,155,185,187,202,217,285,365,368,438],title_lone_categori:187,titlebar:51,titleblock:101,tlen:151,tls:144,tlsv10:150,tlsv1:144,tmp:[2,148],tmpmsg:18,to_be_impl:434,to_byt:388,to_closed_st:263,to_cur:256,to_displai:202,to_dupl:173,to_execut:388,to_exit:74,to_fil:244,to_init:258,to_non:294,to_obj:[166,175,294],to_object:195,to_open_st:263,to_pickl:369,to_str:388,to_syslog:244,tobox:321,todai:[122,225],todo:[23,37,42,65,99,109,127,130,132,158],toe:[68,115],togeth:[11,15,20,22,29,30,36,39,48,60,64,74,75,76,80,82,84,87,93,98,99,110,112,115,116,117,119,120,121,122,123,125,126,128,129,130,131,138,144,151,154,171,180,182,187,207,208,217,222,237,238,240,241,268,269,279,280,293,299,321,340,353,365,366,385,396,403,440],toggl:[103,335],toggle_nop_keepal:335,togglecolor:103,toi:78,toint:[29,40,375],token:[18,125,151,332,335,366,375],told:[9,59,69,96,106,112,115,129,154,384],tolkien:100,tom:[29,35,71,99,121,129,180,186,224,241,371,375,391],tomdesmedt:391,tommi:[35,38,57,375],ton:[98,104],tone:59,tonon:[180,273],too:[3,5,7,9,11,13,14,15,17,18,19,22,27,30,33,38,48,50,55,59,64,74,75,76,79,80,84,89,90,91,93,95,98,99,105,106,107,108,111,113,114,117,118,120,121,122,123,125,126,128,129,137,140,148,178,180,197,208,209,252,257,263,280,281,289,317,321,355,357,366,371,372,373,374,385,388],took:[8,111,388],tool2:209,tool:[29,40,46,50,53,59,66,68,77,78,81,82,85,87,89,93,98,100,113,115,117,118,120,122,123,124,127,130,132,133,144,145,148,150,154,156,207,208,209,439],tool_kwarg:207,tool_nam:207,tool_tag:[78,207,208],tool_tag_categori:[78,207],toolbox:143,toolkit:53,tooltip:51,top:[0,5,10,11,14,20,22,26,28,29,30,41,43,46,48,50,53,75,76,81,82,84,93,95,98,99,101,105,107,111,114,115,116,129,134,140,141,143,148,153,161,169,174,196,202,204,210,214,237,241,252,270,271,279,280,284,286,293,302,312,354,360,362,363,366,373,374,381],topcistr:285,topic:[3,5,20,22,30,44,50,54,61,66,86,89,101,108,110,115,122,138,187,214,216,254,255,256,257,258,285,287,385,427,435],topicstr:285,topolog:[82,279,280],tostr:321,total:[5,19,32,43,44,49,59,82,100,104,106,121,135,190,199,211,280,349,373,374,376],total_num:379,touch:[6,43,59,84,112,113,144,147,157,355],tour:[106,112,118,124,127,130,132],toward:[3,22,61,76,81,82,106,120,122,123,225,258,267],tower:[81,222,269],town:[82,273],trace:[64,82,230,280,349,372],traceback:[6,8,14,19,41,53,63,72,98,107,115,129,140,161,230,237,297,321,362,366,381,388],tracemessag:349,track:[9,13,19,41,44,66,80,87,94,98,104,112,115,120,121,126,128,137,139,140,155,156,166,174,194,251,258,277,280,303,323,324,329,332,335,350,355,369,370,382],tracker:[11,77,88],trade:[77,79,121,122,201],tradehandl:201,trader:79,tradetimeout:201,tradit:[2,16,31,54,59,64,108,112,115,122,126,128,154,157,207,271,335,351,373],tradition:[64,98,120,122,123,208],traffic:[144,157,199,325],trail:[53,200],train:[102,107,122,143,251],traindriv:137,traindrivingscript:137,trainobject:137,trainscript:137,trainstop:137,trainstoppedscript:137,trait1:251,trait2:251,trait:[19,84,122,126,163,164,197,250,299],trait_class_path:251,trait_data:251,trait_kei:251,trait_properti:251,trait_typ:251,traitexcept:251,traithandl:[250,251],traithandlertest:250,transact:[121,201],transfer:[105,140,174,323,333,337,374],transform:[2,110],transit:[36,274,277,279,280],transitionmapnod:[82,274,277,280],transitiontocav:274,transitiontolargetre:274,transitiontomapa:82,transitiontomapc:82,translat:[15,35,59,61,67,69,112,138,143,199,240,241,299,314,365],transmiss:244,transmit:[69,410],transpar:[18,44,51,138,150,293,307],transport:[321,332,341],transportfactori:332,transpos:138,trap:[15,104,119],traumat:27,travel:[64,67,80,104,248,271],travers:[13,32,36,80,82,96,105,137,199,247,248,267,268,271,279,280,289,294,413],traverse_:22,traversing_object:[247,248,271,294],travi:[1,440],travis_build_dir:10,treasur:[75,117,121,271],treasurechest:38,treat:[15,22,44,46,48,54,81,82,87,110,116,117,166,171,174,224,262,280,284,294,299,344,353,372,374,385],tree:[11,13,22,27,38,73,78,82,84,87,120,121,131,148,163,164,197,202,206,241,252,270,274,294,299,312,341,357,372,388,409],tree_select:[163,164,197],treestr:252,trembl:[113,116],treshold:379,trhr:199,tri:[13,15,22,32,34,35,44,45,55,63,64,69,93,99,106,107,114,117,120,122,125,128,140,146,154,172,190,201,203,223,268,269,316,355,388,389],trial:[7,338],tribal:81,trick:[76,114,125,143,144,362,427],tricki:[8,40,138],trickier:[75,101],tried_kei:38,trigger:[2,3,18,20,22,27,31,33,36,44,45,47,58,64,72,79,80,90,97,98,101,123,128,134,135,137,141,146,156,166,167,171,172,175,177,191,202,216,233,263,267,269,293,294,299,307,314,317,321,343,350,354,368,372],trim:365,tripl:[19,84,115,388],triumph:[119,122],trivial:[3,5,19,22,61,106,119,125],troll:55,troubl:[11,34,44,75,79,88,99,106,108,115,118,144,145,148,153,159,160,360],troubleshoot:[75,160],troublesom:[14,15,55],trove:[75,121],truestr:223,truli:[44,55,74,95,222],trunc:199,trust:[27,29,57,98,121,122,190,366],truth:3,truthfulli:22,truthi:[107,306],try_num_differenti:172,ttarget:128,tto:335,tty:[75,156],ttype:[163,164,308,320,332,335],ttype_step:339,tuck:81,tulip:117,tun:180,tune:[112,122,138,150],tunnel:[74,76,80,82,96,99,107,108,114,125,137,180,337],tup:[95,241],tupl:[3,5,13,27,29,35,38,40,50,66,67,95,107,110,125,128,141,154,163,166,172,178,180,185,187,188,195,199,201,202,207,210,211,215,221,224,227,241,256,257,262,266,271,273,279,280,281,282,287,289,290,294,298,299,307,309,321,322,332,333,337,344,351,353,360,363,365,367,368,370,372,376,381,383,388,391,411],tuple_of_arg_convert:29,tupled:381,turbo:153,turkish:166,turn:[8,11,19,20,22,26,27,32,44,45,53,54,55,59,62,64,67,72,74,77,81,82,84,87,98,99,103,107,113,114,115,116,117,119,121,122,125,134,135,137,138,140,143,154,161,166,175,185,190,191,194,233,241,252,254,255,256,257,258,267,269,282,294,299,312,317,325,332,335,343,353,359,362,366,368,372,373,374,375,388,396,416,418,440],turn_act:128,turn_end_check:[254,255,256,257,258],turnbattl:[163,164,197],turnchar:256,tut:[119,269],tutor:266,tutori:[3,17,20,21,22,25,27,46,47,53,54,56,59,72,76,80,81,83,84,86,87,89,91,92,93,95,98,99,103,104,106,107,108,110,112,113,114,115,116,121,123,131,138,140,143,148,151,154,160,202,248,255,268,269,439,440],tutorial_bridge_posist:269,tutorial_cmdset:269,tutorial_exampl:[14,15,108,112,115,163,164,197],tutorial_info:269,tutorial_world:[76,119,148,163,164,197],tutorialclimb:268,tutorialevmenu:266,tutorialmirror:[115,262],tutorialobject:[267,268],tutorialread:268,tutorialroom:[267,269],tutorialroomcmdset:269,tutorialroomlook:269,tutorialweapon:[267,268],tutorialweaponrack:268,tutorialworld:[268,269],tutoru:115,tweak:[6,18,30,40,48,53,75,82,91,98,99,107,113,121,127,134,144,150,166,191,263,357,365,395,400],tweet:[102,440],tweet_output:136,tweet_stat:136,tweetstat:136,twenti:99,twice:[27,91,100,119,128,200,230,258,372],twist:[6,19,22,52,54,61,93,143,148,152,153,157,294,306,309,312,314,315,321,322,323,324,329,332,335,338,340,341,343,350,353,357,381],twistd:[7,148,161,329,350],twistedcli:61,twistedweb:157,twitch:128,twitter:[136,159,440],twitter_api:151,two:[4,5,6,8,11,13,14,15,16,19,20,22,26,27,29,30,31,32,33,36,39,40,41,43,44,46,48,51,56,57,61,63,64,66,67,68,69,71,72,73,74,76,79,80,81,82,84,87,89,91,92,93,95,96,98,99,101,105,106,108,109,110,111,112,113,114,115,116,117,118,119,121,122,123,124,125,126,127,128,129,137,138,140,141,145,149,150,154,156,157,161,173,180,185,194,196,201,202,207,208,211,216,234,239,247,248,251,252,256,258,263,269,270,277,279,280,294,296,312,341,352,353,361,363,366,372,374,375,381,388,389],twowai:180,txt:[0,26,61,75,84,115,142,153,154,167,240,328,336,370,372,391],tying:[154,416],typclass:241,type:[0,3,6,9,15,17,18,19,20,22,25,26,27,29,30,32,34,35,40,41,44,45,46,47,48,49,50,51,55,56,57,59,64,66,67,68,69,74,76,77,78,79,80,81,82,83,84,86,87,90,91,92,93,96,97,98,99,100,103,104,106,108,109,110,111,112,113,115,116,119,120,121,122,125,126,127,128,129,134,135,136,137,138,140,143,144,146,153,154,157,161,163,164,166,167,175,180,185,187,190,191,192,194,195,196,197,200,202,204,207,208,212,214,216,217,219,223,227,230,233,234,241,248,254,255,256,257,258,263,268,269,270,278,279,280,282,284,286,289,290,293,294,298,299,306,307,310,312,314,315,323,324,330,332,333,335,336,337,339,340,341,343,351,353,357,360,361,362,363,365,366,368,369,372,373,374,375,383,384,385,387,388,395,396,403,407,408,410,413,421,427],type_count:204,typecalass:360,typecalss:230,typeclas:113,typeclass:[0,8,12,13,14,18,19,22,24,30,32,33,34,36,38,40,41,44,45,46,50,53,55,62,63,64,74,75,76,77,78,80,81,82,84,90,91,95,96,97,99,100,101,102,104,105,106,108,109,110,111,116,118,121,126,127,128,129,134,135,136,137,139,140,141,163,164,166,167,168,169,174,180,185,190,194,195,196,197,204,207,214,216,219,221,222,226,229,230,233,238,241,247,248,249,254,255,256,257,258,263,269,271,273,282,285,290,292,293,294,298,299,301,302,303,305,307,350,367,368,385,386,388,405,407,410,413,418,428,437,440],typeclass_path:[41,48,169,180,302,361,362],typeclass_search:361,typeclasses:113,typeclasslistserializermixin:410,typeclassmanag:[168,195,292,301],typeclassmixin:[431,432,433,435,437],typeclassserializermixin:410,typeclassviewsetmixin:413,typedobject:[48,169,175,196,241,271,282,293,294,302,360,361,362,363,383,388],typedobjectmanag:[195,285,361],typeerror:[3,211,341],typelass:18,typenam:[76,166,167,169,194,196,201,204,210,216,217,222,224,230,238,239,240,241,247,248,249,254,255,256,257,258,260,262,263,267,268,269,271,281,282,286,293,294,298,302,305,319,345,360,362,376,379,380],typeobject:363,types_count:204,typic:[8,19,86,106,251,257,258,410,437],typo:[83,84,88,157],ubbfwiuvdezxc0m:83,ubuntu:[6,11,144,145,148,150,154,157],ufw:157,ugli:[40,51,97,115,382],uid:[156,169,324,331,352,353],uit:[76,202],ulrik:99,ultima:143,umlaut:16,unabl:[151,225],unaccept:22,unaffect:[27,128,256,306],unalia:[18,185],unari:250,unarm:255,unarmor:255,unauthenticated_respons:428,unavoid:47,unban:[18,55,107,178,185,191,194],unban_us:185,unbias:211,unbroken:371,uncal:306,uncas:365,uncategor:385,unchang:[6,35,240,299,388],unclear:[82,94,123,280],uncolor:[59,103],uncom:[150,154],uncommit:11,uncompress:325,unconnect:[82,192,212],uncov:204,undefin:[2,46,66],under:[2,3,5,7,9,18,22,27,29,30,41,48,51,53,63,66,68,72,75,77,79,84,87,98,107,108,110,113,114,116,120,121,122,126,129,133,140,141,142,143,146,148,153,156,161,175,177,180,207,223,251,252,270,290,305,312,339,360,365,372,373,374,388,391,404],undergar:204,undergon:230,underground:82,underli:[11,32,50,87,98,120],underlin:[374,387],underneath:[75,362],underpin:130,underscor:[6,27,29,31,67,74,78,84,115,173,375,388],underscror:173,understand:[0,3,11,16,20,22,40,43,44,52,54,59,64,69,70,78,80,81,83,84,86,89,91,93,94,95,96,102,103,106,107,110,112,113,114,115,116,120,121,122,123,125,129,133,140,141,143,145,146,148,157,172,173,185,239,240,241,357,365,388,440],understood:[8,30,64,81,106,122,280,340,341],undertak:123,undestand:91,undo:[26,157,370],undon:177,undoubtedli:98,uneven:280,unexpect:[8,106,138,372],unexpectedli:379,unfair:122,unfamiliar:[31,32,53,67,77,115,135,148,154],unfocu:214,unfocus:216,unformat:[27,372,376],unfortun:[89,120],unhappi:75,unhilit:387,unicod:[16,64,69,77,82,166,280,365,388],unicodeencodeerror:365,unifi:[140,352],uniform:44,unimpl:440,uninflect:391,uninform:144,uninstal:148,uninstati:388,unintent:270,union:[20,27,113,173,263,372],uniqu:[2,8,12,14,20,22,25,32,33,34,40,44,46,48,50,51,55,61,64,79,82,84,87,98,108,110,113,117,129,151,154,166,171,173,175,180,185,190,192,194,195,203,207,210,212,216,229,239,240,241,247,252,255,256,267,269,273,279,280,282,285,294,298,299,307,309,321,322,330,343,344,352,353,360,361,362,363,368,370,382,385,388],unit:[1,2,10,19,20,45,53,83,87,100,104,143,195,209,210,220,233,250,256,314,368,376,388,392,420,440],unittest:[8,10,91,191,353,368,386],univers:[15,16,100,185],unix:[0,28,35,77,84,146,148,150,186,270,373,381,388],unixcommand:[163,164,197],unixcommandpars:270,unixtim:381,unjoin:201,unknown:[51,97,101,113,280,298,388],unleash:92,unless:[13,18,19,22,27,29,32,33,34,36,47,55,67,73,76,82,84,89,90,93,113,116,120,122,129,142,145,150,152,154,161,166,173,174,178,180,185,187,188,191,194,229,239,240,241,258,268,284,289,290,294,299,310,325,341,353,360,362,375,385,388,389],unlik:[45,82,83,87,122,126,154,166,202,256,280,362],unlimit:[271,279],unlink:[107,180],unload:[82,386],unload_modul:386,unlock:[18,38,99,113,185,216,360],unlock_flag:216,unlocks_red_chest:38,unlog:[5,178,183,184,192,212,353],unloggedin:[44,163,164,170,176,353],unloggedincmdset:[25,44,114,184,212],unlucki:55,unmask:241,unmodifi:[172,189,222,372],unmonitor:317,unmut:[18,185,194],unmute_channel:185,unnam:[46,173],unneccesari:69,unnecessari:[2,120],unnecessarili:110,unneed:271,unpaced_data:321,unpack:[106,289],unpars:[31,35,172,340,341,375],unpaus:[41,156,190,306],unpickl:[50,64,321,360,369,384],unplay:[44,91],unpredict:388,unprivileg:299,unprogram:126,unpuppet:[45,129,177,395],unpuppet_al:166,unpuppet_object:[12,166],unquel:[38,108,115,177],unreal:143,unrecogn:375,unrecord_ip:355,unregist:72,unrel:[11,27],unrepat:388,unrepeat:[317,388],unreport:317,unrestrict:121,unsaf:[161,173,269],unsatisfactori:81,unsav:370,unsel:105,unset:[22,36,80,99,128,178,191,216,217,219,241,251,267,279,281,290,294,298,299,307,368,372,373,374,375,381],unset_character_flag:216,unset_flag:[216,217],unset_lock:185,unsign:389,unsigned_integ:[382,389],unsignedinteg:382,unskil:251,unspawn:280,unstabl:156,unstrip:172,unsub:[18,185],unsub_from_channel:185,unsubscrib:[18,47,99,185,307,323],unsuccessful:63,unsuit:[57,298,363],unsur:[16,29,83,107,128,148,151,154,248],unsurprisingli:115,untag:51,untest:[8,146,148],until:[0,2,5,6,11,13,14,20,22,27,35,41,47,51,52,54,55,59,66,82,87,93,94,108,110,115,116,119,120,121,122,125,129,133,138,144,148,201,204,210,233,250,251,254,255,256,257,258,263,267,268,269,279,294,306,312,341,343,365,366,376,388],untouch:[82,116,365],untrust:[14,29,77,122,388],unus:[22,78,82,103,122,166,171,175,185,194,222,252,258,262,269,282,294,305,335,351,356,361],unusu:[123,157],unwield:255,unwieldli:174,upcom:[147,159],updat:[1,2,5,6,8,12,13,14,15,22,27,30,33,36,41,47,49,63,64,66,67,72,75,80,82,84,87,89,92,93,94,95,98,99,100,103,106,112,115,120,125,126,128,129,133,140,141,143,144,145,146,148,150,151,153,154,155,156,159,167,174,175,180,185,188,190,191,194,205,222,230,241,250,257,269,275,281,286,290,293,294,296,297,299,303,328,330,331,336,350,351,353,355,360,362,369,370,371,372,373,374,379,388,395,396,403,408,412,427,428,437,438,440],update_attribut:360,update_buff:370,update_cached_inst:379,update_charsheet:99,update_current_descript:222,update_default:350,update_flag:351,update_lock:408,update_method:51,update_po:80,update_session_count:351,update_undo:370,update_weath:269,updated_bi:227,updated_on:227,updatemethod:51,updateview:[437,438],upenn:391,upfir:7,upgrad:[87,148,153],upload:[87,89,148,154,156,199],upmaplink:[82,280],upon:[15,32,49,53,66,69,93,120,129,134,154,156,157,223,245,254,255,256,257,258,304,314,323,355,373,437],upp:269,upper:[8,49,59,66,82,93,95,177,251,279,280,365],upper_bound:251,upper_bound_inclus:251,uppercas:[59,365],upping:59,upsel:154,upset:107,upsid:271,upstart:61,upstream:[0,9,43,87],upt:174,uptim:[19,29,55,100,190,326,376],urfgar:40,uri:[194,286,362],url:[11,49,50,52,53,58,72,84,87,112,133,141,144,154,155,163,164,167,185,194,199,200,286,331,341,357,362,387,393,394,406,413,423,426,432,433,435,438],url_nam:[413,428],url_or_ref:84,url_path:413,url_protocol:199,url_to_online_repo:11,urlencod:101,urlpattern:[53,72,89,101,131,140,141],usabl:[62,89,115,121,129,180,202,216,225,256,289,355,372],usag:[3,5,22,27,30,34,40,47,55,71,74,76,84,87,90,92,93,94,99,103,104,105,106,107,114,115,125,126,128,129,137,151,154,160,175,177,178,179,180,185,186,187,190,191,192,201,202,203,204,207,210,211,212,214,222,223,224,234,237,238,240,241,245,247,248,249,254,255,256,257,258,263,266,267,268,269,270,271,273,275,289,297,306,312,343,372,374,375,379],use:[0,2,3,4,5,7,8,9,10,11,12,13,14,15,16,17,19,20,22,25,26,27,28,29,30,31,32,33,34,35,36,38,40,41,43,44,45,46,48,49,50,51,52,53,54,55,56,57,59,61,62,63,64,66,67,68,69,71,72,73,74,75,76,77,78,79,80,81,82,83,84,87,88,89,90,91,92,93,95,97,98,99,100,101,102,103,104,105,106,107,108,109,110,112,113,114,115,116,117,118,119,120,123,124,125,126,127,128,129,130,131,132,133,135,136,137,138,139,140,141,143,144,145,146,147,148,149,150,151,152,154,155,156,157,159,160,163,166,167,169,171,172,173,174,175,177,180,181,185,186,187,188,190,191,194,196,199,201,202,203,204,207,208,211,214,216,217,221,222,224,225,229,233,234,237,238,239,240,241,247,249,251,252,254,255,256,257,258,260,263,266,267,268,269,270,271,273,274,275,279,280,282,284,289,290,293,294,298,299,306,307,310,317,321,334,336,337,340,343,344,351,352,353,360,361,362,363,365,366,367,368,370,371,372,373,374,375,379,381,382,384,388,389,396,398,403,408,410,413,433,436],use_dbref:[241,294,385],use_destin:294,use_i18n:63,use_item:256,use_nick:[166,241,294],use_required_attribut:[397,399,401,403,427],use_ssl:199,use_success_location_messag:238,use_success_messag:238,use_tz:199,use_xterm256:365,useabl:271,used:[5,8,9,11,12,13,14,16,17,18,19,20,23,25,26,27,28,29,30,31,32,33,34,35,36,38,40,41,43,44,45,46,47,48,50,51,52,53,54,56,57,59,61,63,64,66,67,68,69,70,71,72,74,75,76,77,78,79,81,82,84,87,93,94,97,98,99,100,101,104,105,106,108,109,110,111,112,113,114,115,116,117,118,119,122,125,126,128,129,131,133,135,136,137,138,140,141,143,145,146,147,148,150,152,154,156,157,161,163,166,167,171,173,174,175,177,180,185,187,188,189,190,191,194,199,201,202,204,207,208,210,212,216,217,219,222,223,224,225,227,229,230,233,234,239,240,241,248,251,252,254,255,256,257,258,263,267,268,269,270,271,273,276,279,280,281,282,284,285,286,287,288,289,290,294,298,299,305,306,307,308,309,310,314,317,318,321,322,323,324,325,326,327,328,329,330,332,334,335,336,339,340,341,344,351,353,354,360,361,362,363,364,365,366,368,369,370,372,373,374,375,381,382,383,384,385,388,389,395,396,400,403,405,410,413,420,427,431,433,436,437],useful:[0,1,2,3,5,8,11,13,14,15,16,17,19,20,26,27,29,30,32,35,36,40,41,43,45,46,47,48,50,53,54,55,56,57,59,62,74,76,78,79,81,82,83,84,85,87,89,91,92,93,94,95,98,99,101,102,103,106,107,108,110,111,113,114,115,116,117,119,122,124,125,128,129,136,139,140,145,148,154,159,161,171,173,174,175,177,179,180,187,188,191,194,197,201,202,207,216,221,229,230,234,240,241,245,251,263,269,270,271,280,281,289,294,298,299,312,332,360,362,366,372,376,384,388,409,439],usefulli:114,useless:[113,125,267],user:[2,3,5,6,8,10,12,13,14,15,18,20,25,26,27,28,29,30,31,32,35,38,40,43,44,45,48,49,50,51,52,54,55,58,59,61,62,67,69,70,72,76,77,78,80,82,83,84,86,87,88,89,91,92,93,94,102,103,105,106,107,108,112,113,115,117,118,122,125,129,133,137,138,140,141,143,144,145,148,149,150,151,152,153,154,155,156,160,166,167,169,172,175,178,180,185,187,190,191,194,195,196,199,200,202,204,207,215,216,222,224,228,230,241,244,245,252,256,258,262,269,271,280,282,286,290,294,299,305,308,310,316,324,331,332,335,340,341,351,353,356,360,362,365,370,372,373,374,375,382,388,389,395,408,416,419,427,432,433,434,435,436,438,440],user_change_password:395,user_input:27,user_permiss:[169,395],useradmin:395,userauth:332,userchangeform:395,usercreationform:[395,427],usernam:[11,12,25,27,31,45,49,89,121,141,148,156,166,169,212,332,356,395,407,410,419,427],usernamefield:427,userpassword:[55,107,178],uses:[5,8,10,11,14,16,17,18,20,22,27,29,30,32,34,40,41,45,46,47,48,50,51,53,56,59,61,66,67,69,74,75,76,78,84,87,93,94,95,96,98,101,103,110,112,113,115,116,121,133,145,154,155,173,187,191,201,207,211,216,222,234,240,241,256,269,270,271,279,280,290,302,307,321,341,355,360,363,381,382,388,407,410,416],uses_databas:388,using:[0,2,5,6,9,11,12,13,14,15,16,18,19,20,22,26,27,29,30,31,32,35,36,40,41,44,45,46,47,48,49,50,51,52,53,54,55,57,59,64,66,67,68,71,73,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,97,98,99,100,103,105,106,107,108,109,110,111,112,115,116,120,121,122,123,125,126,127,128,129,134,135,136,137,138,139,140,141,142,143,144,145,146,148,150,151,152,154,156,157,160,161,166,169,171,174,175,177,179,180,185,187,188,189,190,191,194,199,201,202,203,207,208,209,210,211,216,222,223,225,229,238,240,241,247,248,249,251,252,254,255,256,257,258,266,267,269,270,271,273,274,279,280,282,284,287,290,294,297,298,299,302,306,307,323,324,325,330,331,335,341,344,353,354,355,357,360,362,363,365,366,370,372,373,376,381,382,383,384,385,386,388,393,408,412,413,427,436,439,440],usr:[87,148,153,156],usu:41,usual:[0,5,6,7,8,11,12,13,18,19,20,22,26,27,28,31,32,34,35,36,40,41,44,46,47,48,50,52,53,57,59,61,63,74,75,76,77,79,82,83,84,87,89,90,91,93,94,98,100,103,106,107,109,110,112,113,115,116,117,119,122,123,125,133,138,140,144,145,148,150,152,154,156,161,166,167,172,173,174,175,177,180,185,186,190,191,196,210,219,229,230,233,239,240,241,251,269,270,279,280,282,290,293,294,298,299,312,314,319,344,351,360,362,365,367,368,372,373,375,381,383,385,388,396,403],usuallyj:82,utc:[145,389],utf8:[2,145],utf:[16,31,69,81,99,146,199,317,323,340,374,388],util:[6,8,13,14,15,26,27,28,36,41,50,51,54,56,59,66,70,80,81,98,99,100,103,105,109,111,118,123,134,140,141,144,148,157,163,164,179,190,191,194,196,197,199,209,210,213,215,220,222,223,226,230,231,246,248,251,257,263,264,266,272,277,283,286,294,296,298,305,306,319,338,343,360,361,362,393,394,396,397,399,401,403,411,427,428,440],utilis:372,uyi:240,v19:148,vagu:90,val1:375,val2:375,val:[13,67,166,177,336,388],valid:[0,3,6,10,13,14,20,22,27,29,36,40,53,58,59,67,78,82,94,96,99,101,106,112,115,129,140,141,150,154,157,161,163,164,166,172,174,180,188,191,194,195,201,202,207,209,223,227,230,231,239,241,250,251,252,257,268,269,270,271,279,290,294,296,298,299,303,305,306,307,308,310,312,336,340,351,360,361,363,366,368,372,375,382,383,384,385,387,388,389,410,427,431,433,438],valid_handl:382,validate_cal:375,validate_email_address:388,validate_input:251,validate_nam:294,validate_onli:290,validate_password:[27,166],validate_prototyp:298,validate_sess:353,validate_usernam:166,validated_consum:[78,207],validated_input:207,validated_tool:[78,207],validationerror:[166,298,356,382,384],validator_config:166,validator_kei:382,validatorfunc:[163,164,364],valign:374,valu:[3,6,8,9,12,13,17,19,20,22,26,29,31,32,33,35,41,47,48,49,50,51,54,55,59,66,67,74,76,80,81,82,87,89,91,92,95,99,100,101,103,104,105,107,108,110,112,113,114,115,117,120,121,126,128,129,138,140,141,148,150,154,166,169,171,173,175,177,178,180,191,194,196,199,202,204,211,216,223,224,225,227,230,231,238,239,240,241,246,250,251,254,255,256,257,258,262,264,269,271,279,280,282,286,289,290,293,294,297,298,299,302,306,307,310,317,318,319,321,330,335,336,351,352,353,358,360,361,362,363,365,367,368,369,370,371,372,375,379,380,382,383,384,385,388,389,407,410,420,427,436,438],valuabl:119,value1:40,value2:40,value_displai:410,value_from_datadict:384,value_to_obj:298,value_to_obj_or_ani:298,value_to_str:384,valueerror:[40,106,129,199,202,237,239,360,363,365,368,388,389],valuei:81,values_list:110,valuex:81,vampir:110,vanilla:[0,48,66,75,80,97,99,113,120],vaniti:27,vari:[11,30,48,61,63,68,82,87,94,104,112,115,228,240,251,258,282,351,360,362],variabl:[4,5,6,7,13,14,20,22,27,29,30,32,40,41,43,51,62,63,67,69,72,74,79,80,82,84,86,87,92,97,99,101,106,107,110,113,114,115,116,131,137,140,141,148,156,157,166,169,171,175,177,180,185,188,190,191,194,199,205,214,222,223,227,229,230,233,238,251,269,279,281,289,293,294,298,299,309,312,322,325,326,328,332,334,344,351,358,365,366,372,375,388,420],variable_from_modul:388,variable_nam:[227,230],variablenam:388,varianc:240,variant:[13,46,77,86,115,174,202,212,248,323,365],variat:[100,110,122,125,126,128,173,222,240,388],varieti:[86,104,128,136,256,257],variou:[5,6,8,13,16,22,34,36,40,41,44,46,47,48,51,53,61,65,67,70,79,82,83,85,98,100,101,103,110,111,112,115,117,121,125,126,128,129,130,150,154,157,161,173,189,210,216,240,241,252,256,257,263,267,268,280,290,293,294,299,300,307,344,368,374,385,386,416],varnam:336,vast:[66,68,81,145],vastli:87,vcc:240,vccv:240,vccvccvc:240,vcpython27:75,vcv:240,vcvccv:240,vcvcvcc:240,vcvcvvccvcvv:240,vcvvccvvc:240,vector:388,vehicl:[90,440],velit:28,venu:[11,195],venv:[148,153],ver:145,verb:[29,91,294,348,375,391,392],verb_actor_stance_compon:391,verb_all_tens:391,verb_conjug:[163,164,364],verb_infinit:391,verb_is_past:391,verb_is_past_participl:391,verb_is_pres:391,verb_is_present_participl:391,verb_is_tens:391,verb_past:391,verb_past_participl:391,verb_pres:391,verb_present_participl:391,verb_tens:391,verb_tenses_kei:391,verbal:294,verbatim:[29,108,115],verbatim_el:388,verbos:[0,8,84,128,241],verbose_nam:[140,362,395,396,403],verbose_name_plur:[396,403],veri:[0,3,5,6,8,9,11,12,13,14,15,17,18,19,20,22,25,26,27,28,29,30,31,32,40,41,43,45,46,47,48,50,51,53,54,59,61,66,67,68,71,73,74,75,76,79,80,81,82,83,84,86,87,88,89,90,92,93,95,97,98,99,102,105,106,108,110,112,113,115,116,117,118,119,120,121,122,123,125,126,128,129,137,139,141,142,143,144,145,150,152,154,161,166,167,173,175,191,194,196,202,204,207,229,230,239,240,241,247,248,249,251,252,257,267,270,271,285,293,298,316,361,363,368,370,372,388,436],verif:154,verifi:[2,5,11,27,113,148,154,180,191,199,207,223,257,337],verify_online_play:223,verify_or_create_ssl_key_and_cert:337,verify_ssl_key_and_cert:333,verifyfunc:223,versa:[44,53,61,67,82,128,185,273,321],version:[1,2,9,12,13,14,15,18,20,22,25,27,30,31,34,35,41,48,51,53,59,63,66,68,78,81,82,83,87,89,90,93,94,98,103,106,107,108,112,114,115,120,122,125,129,133,138,143,145,146,147,148,153,154,156,160,180,188,190,192,199,203,204,212,221,222,241,255,256,257,258,263,268,294,299,312,317,331,355,360,365,373,388,395,396,397,400,401,404,410,427,439,440],version_info:312,versionad:84,versionchang:84,versu:86,vertic:[268,277,279,280,374,388],very_strong:290,very_weak:32,vest:157,vet:40,veteran:143,vex:392,vfill_char:374,via:[5,11,13,18,19,27,28,29,31,39,40,41,48,49,51,54,59,61,64,66,68,77,83,86,88,97,98,105,110,112,113,115,120,126,129,138,148,150,154,157,193,195,196,199,244,263,273,293,302,360,363,365,380],viabl:[78,122,267],vice:[44,53,61,67,82,128,185,273,321],vicin:[22,186,222,269],video:[51,59,112,143],vidual:82,vienv:75,view:[0,3,11,17,19,26,27,28,30,32,41,47,49,50,52,53,66,81,82,84,86,87,89,99,102,104,107,112,113,115,118,122,128,129,133,148,152,154,159,160,161,163,164,166,177,178,180,185,186,187,190,194,204,241,254,255,256,257,258,271,284,286,294,296,347,362,373,393,398,405,406,408,410,412,416,420,423,426,427,440],view_attr:180,view_lock:408,view_on_sit:[395,397,399,400,401,403],viewabl:[85,86,187],viewer:[84,91,101,241,271,294,362],viewport:3,viewset:[49,412,413],vim:[15,26,118,143,370],vincent:[77,202,222,239,270],violent:27,virtual:[82,86,89,98,143,148,154,190,222,280,376],virtual_env:153,virtualenv:[0,2,5,6,7,9,63,75,84,145,148,153,154,156,160,161],virtualhost:144,visibl:[2,11,14,20,30,34,44,48,53,59,82,84,91,101,103,120,121,122,125,129,147,148,150,154,160,186,187,241,277,279,280,294,324,357,372,388],vision:[13,99,120],visit:[76,80,81,140,141,154,270,372],visitor:[72,141,157],vista:148,visual:[5,30,51,59,82,91,98,148,166,187,225,277,279,280,282],visual_rang:282,vital:106,vlgeoff:[77,210],vniftg:148,vnum:97,vocabulari:[79,388],voic:[22,77,79,440],volatil:298,volcano:117,volum:[81,90,120,156],volund:110,volunt:63,voluntari:83,volupt:28,vowel:240,vpad_char:374,vscode:118,vulner:[93,157],vvc:240,vvcc:240,vvccv:240,vvccvvcc:240,w001:8,wai:[3,5,6,7,8,9,11,12,13,14,15,16,19,20,22,29,30,31,32,33,34,35,36,38,39,40,41,43,44,45,46,47,48,52,53,54,55,57,59,61,64,66,67,69,71,73,74,75,76,78,79,80,81,83,84,86,87,88,90,92,94,95,96,97,98,99,100,101,102,104,105,106,107,108,109,110,111,112,113,116,117,119,120,122,123,125,126,128,129,133,134,135,137,138,139,140,143,145,147,148,152,153,154,155,157,160,161,166,172,173,180,187,194,201,207,210,211,216,219,222,223,225,229,233,240,247,248,251,252,254,255,256,257,258,263,266,267,268,270,273,277,280,284,290,294,298,307,312,317,321,332,353,355,357,358,359,361,363,366,371,372,374,379,381,384,405,412,413,436,438],wail:80,waist:204,wait:[3,19,22,27,41,54,74,91,92,93,108,119,121,122,137,167,191,229,233,251,254,255,256,257,258,263,312,322,341,343,355,368,372,388],wait_for_disconnect:322,wait_for_server_connect:322,wait_for_statu:312,wait_for_status_repli:312,waiter:312,waitinf:191,wake:223,walias:180,walk:[15,20,74,77,79,80,82,86,90,95,100,105,120,122,125,248,249,252,263,271,273,280,366],walki:[18,87,122],wall:[81,107,115,119,125,178,186,222,268,269],wand:[78,207],wanna:[83,121,201,263],want:[0,3,4,5,6,7,8,9,11,12,13,14,15,16,18,19,20,22,25,26,27,29,30,31,32,33,34,35,36,38,40,41,43,44,45,47,48,49,50,51,53,54,55,57,59,61,62,63,64,66,67,68,69,72,73,74,75,76,77,78,79,80,81,82,83,84,87,88,89,90,91,92,93,94,95,96,98,99,100,101,103,104,105,106,107,108,110,111,112,113,114,115,116,117,118,120,121,123,124,125,126,127,129,130,131,132,133,135,137,138,139,140,141,142,144,145,146,147,148,150,151,152,153,154,155,157,159,160,161,166,173,174,175,177,186,187,191,201,202,207,212,216,222,223,225,239,241,244,251,252,254,255,256,257,258,263,269,271,279,280,282,289,290,294,299,305,307,328,330,336,343,353,358,360,362,370,372,373,379,384,388,396,403,405,412,427,432,435,436,438,439],wanted_id:32,war:[30,284],warchannel:185,ware:105,warehous:[244,366],wari:[59,271,294,362],warm:[41,161,316],warn:[9,19,20,30,43,44,73,77,81,82,87,106,112,115,141,144,148,154,173,194,199,245,311,312,337,381,439],warnmsg:381,warrior:[92,98,99,119,122,129,185],wasclean:[323,340],wasn:[3,74,141],wast:[15,47],watch:[7,15,33],water:[78,174,207,208,238],waterballon:238,wave:81,wavi:82,wcach:190,wcactu:257,wcommandnam:270,wcure:257,wdestin:180,weak:299,weakref:379,weaksharedmemorymodel:[319,379],weaksharedmemorymodelbas:[319,379],weakvalu:379,wealth:105,weapon:[27,40,66,87,93,104,105,107,109,110,114,119,120,121,126,127,128,208,255,267,268,299],weapon_ineffective_msg:267,weapon_prototyp:268,weaponrack_cmdset:268,weaponstr:114,weapoon:119,wear:[77,104,121,127,204,241,255,263],wearabl:204,wearer:204,wearstyl:204,weather:[41,46,47,73,81,94,102,112,119,120,126,269,440],weather_script:41,weatherroom:[139,269],web:[17,30,32,40,49,52,56,58,63,75,84,85,86,87,89,91,94,101,108,111,115,118,120,132,143,144,145,148,152,153,160,161,163,164,199,314,316,326,330,336,340,341,351,355,357,363,369,440],web_client_url:147,web_get_admin_url:[194,286,362],web_get_create_url:[194,286,362],web_get_delete_url:[194,286,362],web_get_detail_url:[194,286,362],web_get_puppet_url:362,web_get_update_url:[194,286,362],web_plugin:112,webclient:[24,44,51,53,58,59,61,64,67,70,72,85,87,94,101,112,115,146,147,150,157,161,163,164,187,190,199,216,266,308,317,320,336,341,352,372,393,420,421,428,440],webclient_ajax:[51,163,164,308,320],webclient_en:157,webclient_opt:317,webclientdata:341,webclienttest:428,webpag:[17,144,154,424],webport:2,webserv:[2,24,43,49,53,61,72,75,111,112,131,144,145,150,154,156,159,163,164,308,440],webserver_en:157,webserver_interfac:[150,154],webserver_port:154,webservic:157,websit:[17,49,50,51,52,75,85,86,87,98,101,102,112,131,133,140,143,150,154,155,157,163,164,341,357,393,395,421,440],websocket:[51,52,61,87,154,156,323,329,340,352,440],websocket_client_interfac:[150,154],websocket_client_port:154,websocket_client_url:[144,150,154],websocket_clos:340,websocketcli:340,websocketclientfactori:323,websocketclientprotocol:323,websocketserverfactori:329,websocketserverprotocol:340,weed:[0,173],week:[100,112,210,381,389],weeklylogfil:381,weigh:[104,343],weight:[68,82,84,120,145,225,240,279,280,361,440],weird:[30,107,122,125,388],welcom:[25,53,63,76,83,89,105,118,131,148,152],well:[0,7,8,9,11,12,13,17,18,22,26,27,28,29,30,31,36,40,43,44,48,50,53,55,56,57,61,62,67,68,69,72,75,76,77,79,80,82,83,84,86,87,89,90,91,95,96,98,99,100,101,103,105,106,110,113,114,115,116,117,119,121,122,123,125,128,129,133,135,136,140,141,145,151,153,155,157,160,169,173,174,175,180,185,190,193,194,201,204,214,215,216,222,229,237,240,241,251,252,256,257,258,263,267,279,282,294,302,306,308,312,321,323,324,330,347,355,360,361,365,369,372,375,376,384,388,396,403],went:[8,11,98,116,125,160,161,303,307],weonewaymaplink:[82,280],were:[3,8,13,14,18,20,22,27,29,40,41,43,48,51,54,66,68,78,82,83,84,87,96,99,101,104,105,106,110,112,113,114,115,116,122,129,138,146,156,166,172,173,174,185,194,239,252,279,280,294,298,359,362,366,375,385,388,391,392],weren:100,werewolf:91,werewolv:110,werkzeug:388,west:[80,81,82,91,96,108,180,269,279,280],west_east:81,west_exit:269,western:81,westward:269,wet:122,wether:[201,368],wevennia:76,wflame:257,wflushmem:190,wfull:257,wguild:185,what:[0,3,5,6,8,9,10,11,12,14,15,18,19,20,22,27,29,30,31,32,34,36,40,41,43,44,47,48,49,52,53,54,55,57,59,61,64,66,67,68,69,71,73,74,75,76,78,79,80,81,82,84,87,88,89,90,91,93,95,96,97,98,99,100,101,103,105,107,108,110,111,113,114,115,119,120,121,124,125,126,127,128,129,130,132,133,134,135,137,138,139,140,141,142,143,144,145,148,150,152,154,155,157,161,166,171,173,174,175,177,180,191,194,207,214,216,217,221,230,238,239,241,244,249,251,256,257,267,269,279,280,281,282,284,286,290,294,297,298,299,312,314,317,324,336,341,356,358,360,362,363,365,366,372,382,383,388,389,410,416,418,419,427,436,437,440],whatev:[8,11,12,13,15,19,22,27,29,36,61,76,79,81,82,87,90,97,99,104,106,115,116,120,121,123,129,140,141,142,145,150,156,160,166,167,174,180,207,214,223,257,262,267,268,294,299,302,303,323,332,335,340,353,360,373,382,436],wheat:207,wheel:[47,98,148,153],whelp:[187,270],when:[0,1,2,3,6,7,8,9,11,12,13,14,15,16,17,18,19,20,22,25,26,27,28,29,30,31,32,33,35,36,38,40,41,43,44,45,46,48,50,51,52,53,54,55,57,59,61,62,63,64,66,67,68,69,71,74,75,76,77,79,80,81,82,83,84,87,89,90,93,94,95,96,97,98,99,100,101,104,105,106,107,108,110,111,112,113,114,115,116,117,118,119,121,122,123,124,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,142,143,144,145,146,148,149,150,153,154,155,156,157,160,161,163,166,167,169,171,173,174,175,177,179,180,185,186,187,188,189,190,192,194,195,196,199,200,201,202,203,204,207,208,210,211,212,216,217,219,222,223,224,225,230,231,233,234,237,238,239,240,241,247,249,251,252,254,255,256,257,258,260,263,264,266,267,268,269,270,271,278,279,280,281,285,286,290,293,294,296,298,299,302,303,305,306,307,309,312,314,318,319,321,322,323,324,325,326,327,328,330,332,333,334,335,336,337,340,341,343,344,350,351,352,353,354,355,360,362,363,365,366,368,369,370,371,372,373,374,379,380,381,383,388,400,416,418,427,431,433,438],when_stop:312,whenev:[7,9,13,18,22,31,32,33,35,40,41,45,54,62,69,76,79,81,87,91,113,125,134,154,155,156,166,174,194,219,267,268,269,294,303,305,314,331,351,352,353],where:[0,2,3,4,5,8,11,13,14,15,18,20,22,26,27,28,29,30,32,34,38,40,41,43,44,48,50,51,53,54,55,58,59,61,63,64,66,67,68,69,72,74,75,76,78,79,80,81,82,84,87,90,91,93,95,97,98,99,100,101,105,106,107,108,112,113,114,115,116,118,119,120,122,124,125,126,127,129,131,133,134,135,137,140,141,145,153,154,156,157,159,160,172,173,178,180,186,187,189,191,194,195,199,203,208,211,216,234,240,241,245,250,251,256,268,269,271,279,280,281,282,287,289,290,294,298,299,303,312,314,317,321,344,349,353,360,362,365,366,370,372,373,374,375,382,383,388,403,410,438,440],wherea:[0,3,5,6,9,13,14,20,22,32,40,44,48,55,57,59,61,66,69,82,90,97,103,105,115,128,157,207,240,280,307,341,360,379],whereabout:119,wherebi:257,wherev:[8,13,81,87,117,148,150,156,202,244,256,280],whether:[27,55,74,79,86,95,100,101,114,137,166,167,174,180,185,187,194,223,252,254,255,256,257,258,294,307,323,340,355,360,361,365,382,384,388,391],whewiu:75,which:[0,2,3,4,5,6,7,8,11,13,14,15,16,18,19,20,22,24,27,28,29,30,31,32,34,35,36,38,40,41,43,44,45,46,47,48,49,51,52,54,55,57,59,61,62,64,66,67,68,69,72,73,74,75,76,78,79,80,81,82,83,84,87,89,91,92,93,94,95,96,97,98,99,100,101,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,119,120,121,122,123,125,126,128,129,131,133,134,135,136,137,138,139,140,141,145,146,148,149,150,151,152,154,156,157,160,161,166,167,171,173,174,175,177,178,180,186,187,188,190,191,194,195,196,199,201,202,203,204,205,207,208,210,214,216,221,222,223,225,233,234,237,241,244,245,247,249,251,252,254,255,256,257,258,263,267,268,269,270,271,279,280,281,282,286,290,293,294,298,299,302,303,305,307,309,311,312,316,317,324,330,332,340,341,343,344,351,352,353,355,358,360,361,362,363,365,366,368,369,372,373,374,375,376,379,381,382,384,385,386,388,391,396,403,410,413,416,418,419,420,427,433,436,438],whichev:[19,120,123,154,157,269],whilst:81,whimper:119,whisk:219,whisp:240,whisper:[77,79,107,186,214,216,233,240,241,294],white:[31,59,138,365,388],whitelist:31,whitenois:251,whitespac:[15,19,22,99,103,107,110,118,125,129,188,237,241,365,366,374,388],who:[13,18,27,29,30,32,35,38,40,41,48,49,54,55,59,63,79,80,86,89,90,97,99,110,114,115,116,119,120,121,123,125,126,128,129,137,139,140,157,167,175,177,180,185,194,201,214,216,223,230,240,241,254,255,256,257,258,268,286,290,294,299,362,370,372,375,408],whoever:140,whole:[35,46,56,71,80,81,82,86,89,98,107,120,122,125,129,150,173,180,190,214,258,374,418],wholist:[18,194],whome:180,whomev:[126,137,263],whoopi:125,whose:[29,48,67,78,110,112,113,166,175,191,230,241,252,254,255,256,257,258,317,367,372,375,388],whould:372,why:[13,27,48,55,74,76,79,81,84,86,87,91,95,96,104,106,108,121,123,125,129,138,148,157,160,178,239,254,257,258,280,309,310,372],wick:360,wide:[19,29,34,56,66,82,91,95,99,106,115,126,150,178,256,257,271,371,374,388],widen:[55,125],wider:[55,91,95,178,374],widest:388,widget:[384,395,396,397,399,400,401,403,410,427],width:[17,19,22,29,30,31,40,56,80,81,82,91,163,175,279,282,317,332,351,365,370,371,373,374,375,388],wield:[40,104,121,127,255],wifi:[154,157],wiki:[22,48,63,68,75,81,83,86,87,99,102,128,143,202,340,439,440],wiki_account_handl:89,wiki_account_signup_allow:89,wiki_can:89,wiki_can_admin:89,wiki_can_assign:89,wiki_can_assign_own:89,wiki_can_change_permiss:89,wiki_can_delet:89,wiki_can_moder:89,wiki_can_read:89,wiki_can_writ:89,wikiconfig:89,wikipedia:[8,11,16,69,86,87,128,340],wil:18,wild:[11,53,68,82,110,120,138,281,282],wildcard:[35,55,82,98,178,180,279,281,282,388],wildcard_to_regexp:388,wilder:[163,164,197],wildernessexit:271,wildernessmap:271,wildernessmapprovid:271,wildernessroom:271,wildernessscript:271,wildli:240,will_suppress_ga:334,will_transform:110,will_ttyp:339,willing:[99,120,123,143],win10:148,win7:148,win8:148,win:[75,106,128,146,214],wind:[119,139],winder:122,windmil:207,window:[0,5,6,7,9,11,20,28,36,44,51,52,64,67,80,82,84,87,89,91,96,108,115,118,121,145,152,160,161,175,187,216,312,328,351,355,373,388],windowid:351,windows10:148,wine:[117,119],wingd:81,winner:77,winpti:75,winter:222,wintertim:121,wintext:126,wip:[84,439],wipe:[9,14,18,75,81,107,115,145,173,180,190,256],wire:[19,61,64,67,69,87,150,154,189,309,321,322,353,365],wis:99,wisdom:5,wise:[0,11,13,14,15,16,32,72,99,113,121,135],wiser:[41,108,125],wish:[2,11,22,95,133,136,153,202,258,365,387,427],with_tag:238,withdraw:[128,258],withdrawl:258,within:[0,6,11,13,20,22,27,29,30,47,51,54,75,76,80,82,83,84,87,95,97,99,110,112,115,117,125,128,133,134,135,136,138,141,144,145,146,154,156,166,169,171,180,201,222,225,227,245,281,285,294,299,306,355,360,361,365,375,381,388,427,433,438],withot:280,without:[3,5,6,8,9,11,13,14,15,18,19,20,22,25,26,27,29,34,38,39,40,41,43,45,47,48,50,52,53,55,56,59,61,62,63,66,67,68,71,74,76,78,79,80,82,83,84,87,90,91,93,94,96,98,99,106,107,108,109,110,112,114,115,116,120,121,122,123,125,129,133,135,137,138,140,144,145,148,150,154,156,160,166,167,172,175,177,178,180,185,186,188,189,190,191,194,196,200,201,203,204,207,219,222,227,230,240,241,247,251,252,254,257,258,263,267,269,280,290,294,297,298,299,305,306,321,332,335,336,343,353,354,360,362,365,366,368,369,370,372,373,375,381,384,385,388,420],withstand:32,wiz:99,wizard:[40,122,269,299,310,312],wkei:180,wlocat:180,wlock:180,wmagic:257,wmass:257,wndb_:180,wnn:18,woah:[113,114],woman:[121,122],won:[3,8,12,13,14,16,20,48,49,51,54,55,59,64,66,74,76,79,81,84,89,90,93,98,101,103,105,106,107,110,114,115,120,122,124,126,129,141,142,145,148,156,174,223,239,260,263,277,357,365,384],wonder:[56,75,97,104],wont_suppress_ga:334,wont_ttyp:339,woo:107,wood:[78,122,207,208],wooden:[40,78,207,208],woodenpuppetrecip:78,woosh:90,word:[5,6,11,15,18,19,22,26,29,30,36,63,67,79,80,81,88,100,101,106,107,113,115,118,121,123,133,138,152,172,187,188,192,212,221,233,240,241,324,370,385,388],word_fil:240,word_length_vari:240,wordi:240,work:[0,2,3,4,5,6,7,8,9,12,13,14,15,16,18,19,20,27,29,30,32,33,36,38,40,41,44,46,47,50,52,53,54,56,59,62,64,66,68,71,74,75,76,78,80,81,83,84,87,88,89,90,91,92,93,96,97,98,99,100,103,105,107,108,110,111,112,113,114,115,116,117,118,120,121,123,125,128,129,130,132,133,134,138,139,140,141,144,145,146,148,150,151,152,153,154,157,159,160,171,174,175,177,180,185,186,188,190,194,201,202,203,207,209,214,222,237,238,241,247,252,256,257,258,269,270,271,280,284,286,289,290,294,298,299,312,316,317,329,344,357,359,360,362,366,371,372,373,374,382,388,420,431,432,433,435,437],workaround:[11,148,156],workflow:395,world:[8,11,13,14,15,16,18,19,20,22,27,30,38,40,43,53,54,66,68,69,75,78,80,81,82,86,87,90,95,98,99,100,104,109,113,114,116,118,123,124,126,127,128,129,130,132,134,137,142,143,148,152,154,166,179,180,185,187,191,201,207,210,237,241,251,254,255,256,257,258,268,269,271,279,284,286,302,351,353,365,366,376,440],world_map:81,worm:[80,122],worm_has_map:80,worn:[204,255],worri:[2,8,13,16,27,43,50,59,69,74,95,110,119,125,129,201,216,217],wors:[121,123],worst:120,worth:[5,27,41,48,74,90,93,106,121,122,123,140,143,144,201],worthi:120,worthless:154,would:[2,3,5,7,8,9,13,14,15,16,19,20,22,27,29,30,32,34,36,40,41,44,46,47,48,52,53,54,56,57,59,66,67,72,73,74,75,76,78,79,80,81,82,84,86,87,89,90,91,93,95,96,97,98,99,100,101,103,104,105,106,107,108,110,111,112,113,114,115,116,118,120,121,122,123,125,126,128,129,133,134,135,137,138,140,141,144,148,154,156,166,172,173,174,180,189,194,199,201,207,210,216,230,240,251,252,263,270,271,279,280,286,290,298,299,324,362,365,366,369,372,383,384,386,388,396,403],wouldn:[30,95,114,138],wound:257,wow:[101,123],wpermiss:180,wprototype_desc:180,wprototype_kei:180,wprototype_lock:180,wprototype_par:180,wprototype_tag:180,wrap:[27,40,41,54,80,94,110,115,117,125,133,204,208,216,223,241,319,359,374,388],wrap_conflictual_object:384,wrapper:[5,19,27,31,44,48,54,66,78,93,166,169,195,196,219,221,247,251,286,287,293,294,302,306,317,319,351,360,362,363,365,374,375,379,380,381,388,398,403],wresid:190,write:[5,10,11,13,15,16,19,20,22,27,30,35,48,54,56,67,68,71,74,76,79,83,84,88,89,91,96,97,99,100,101,106,107,108,110,113,114,115,116,119,121,122,123,125,129,145,148,149,151,152,180,185,187,194,199,200,202,244,245,270,294,325,381,386,436,438,440],writeabl:153,written:[8,16,18,19,40,52,82,84,97,98,99,107,110,112,113,114,115,116,117,140,141,143,147,157,162,187,244,280,366,436],wrong:[0,3,8,103,105,115,121,145,148,161,173,180,190,207,209,241],wrote:[110,113,191],wserver:190,wservic:185,wsgi:[144,357],wsgi_resourc:357,wsgiwebserv:357,wsl:[84,148],wss:[144,154,440],wtypeclass:180,wwhere:294,www:[9,49,68,75,76,84,86,87,95,140,143,144,154,163,190,327,328,334,336,387,391,427],wyou:104,x0c:180,x1b:[365,387],x2x:99,x4x:371,x5x:371,x6x:371,x7x:371,x8x:371,x9x:371,x_r:95,xcode:148,xforward:357,xgettext:63,xgiven:282,xit:[76,202],xml:199,xmlcharrefreplac:365,xp_gain:126,xpo:374,xtag:391,xterm256:[31,51,64,70,103,115,177,205,225,317,332,335,365,440],xterm256_bg:365,xterm256_bg_sub:365,xterm256_fg:365,xterm256_fg_sub:365,xterm256_gbg:365,xterm256_gbg_sub:365,xterm256_gfg:365,xterm256_gfg_sub:365,xterm:[59,115,138],xterms256:59,xval:22,xxx:[3,91,239],xxxx:239,xxxxx1xxxxx:371,xxxxx3xxxxx:371,xxxxxxx2xxxxxxx:371,xxxxxxxxxx3xxxxxxxxxxx:99,xxxxxxxxxx4xxxxxxxxxxx:99,xxxxxxxxxxx:371,xxxxxxxxxxxxxx1xxxxxxxxxxxxxxx:99,xxxxxxxxxxxxxxxxxxxxxx:99,xxxxxxxxxxxxxxxxxxxxxxxxxxxxxx:99,xygrid:[279,280],xymap:[163,164,197,272,273,274,277,280,281,282],xymap_data:[82,279,281],xymap_data_list:[82,279,281],xymap_legend:[82,163,164,197,272,274,277],xyroom:282,xyz:[35,82,273,276,280,281,282],xyz_destin:[82,282],xyz_destination_coord:282,xyz_exit:[82,276,280],xyz_room:[82,276,280],xyzcommand:[82,274,275],xyzexit:[281,282],xyzexit_parent_prototype_overrid:82,xyzexitmanag:282,xyzgrid:[163,164,197,440],xyzgrid_cmdset:273,xyzgridcmdset:[82,273],xyzmanag:282,xyzmap:82,xyzroom:[163,164,197,272,281],xyzroom_parent_prototype_overrid:82,y_r:95,yan:[59,365],yank:26,year:[67,68,86,100,118,122,154,199,210,376,381,388,427],yearli:[100,154],yeast:[78,207],yellow:[11,59,82,138,268],yer:121,yes:[22,27,54,79,95,138,180,190,233,310,370,372,388],yes_act:372,yes_no_question_cmdset:372,yesno:[27,370],yesnoquestioncmdset:372,yet:[2,3,9,11,12,15,25,27,40,44,55,63,66,74,76,79,80,81,82,87,89,91,92,107,110,113,123,125,137,140,141,143,147,148,150,154,160,162,166,185,192,201,212,230,263,280,290,293,306,330,353,357,365,434],yield:[22,32,54,68,145,180,191,245,374,388],yml:[10,156],yogurt:238,you:[1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,22,25,26,27,29,30,31,32,33,34,35,36,38,39,40,41,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,61,62,63,64,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,115,116,117,120,121,123,124,125,126,127,128,129,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,159,160,161,166,174,175,177,180,185,186,187,188,189,190,191,192,194,199,201,202,203,204,205,207,208,210,214,216,217,221,222,223,225,228,229,230,233,234,237,238,239,240,241,244,245,247,248,249,251,252,254,255,256,257,258,260,263,268,269,270,271,273,275,279,280,284,289,290,294,299,304,305,306,307,314,323,324,325,341,343,353,355,357,358,360,362,365,366,368,371,372,374,375,376,384,385,388,391,407,410,412,413,427,436,438,439],you_obj:29,you_replac:214,your:[2,3,5,7,8,10,13,14,15,16,17,18,19,20,25,26,27,29,30,32,34,35,38,40,41,43,44,45,46,47,48,49,50,52,53,54,55,56,59,62,63,64,67,69,71,72,73,74,75,76,77,78,79,80,81,82,83,84,86,87,88,90,91,93,94,96,97,98,99,100,101,102,103,104,105,106,110,111,113,114,115,116,117,118,119,120,121,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,141,142,143,144,145,147,148,149,150,151,152,153,155,159,160,161,163,164,166,169,172,174,175,177,178,180,185,186,187,190,191,192,197,199,201,202,204,205,207,210,211,212,214,216,222,223,225,229,239,240,241,244,245,248,252,254,255,256,257,258,260,263,268,269,270,271,273,274,279,289,290,293,343,362,365,370,372,374,384,385,386,388,389,396,403,413,427,433,436,440],your_act:216,your_email:11,yourchar:115,yourgam:244,yourhostnam:150,yournam:[107,113,114,144],yourpassword:145,yourrepo:7,yourself:[0,3,10,11,12,15,20,27,32,36,48,53,56,57,66,68,72,74,76,77,81,82,83,86,99,101,106,114,115,117,121,122,123,125,126,129,142,145,148,154,180,186,201,214,216,224,241,247,251,257,260,273,372],yoursit:140,yourusernam:11,yourwebsit:140,yousuck:55,yousuckmor:55,youth:223,youtub:11,ypo:374,yrs:210,ythi:59,yum:[11,144,150],yvonn:99,z_destin:282,z_r:95,z_sourc:282,zcoord:[273,277,279,281],zed:143,zero:[19,34,40,108,113,115,117,185,207,241,281,287,294,360,365,375],zip:[157,199],zlib:[153,321,325],zmud:[146,327],zone:[46,79,88,97,102,112,123,143,363,381,440],zoord:281,zope:6,zopeinterfac:148,zuggsoft:327},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","The Inline Function Parser","Help System","Inputfuncs","Locks","MonitorHandler","Msg","Nicks","Objects","Outputfuncs","Permissions","Portal And Server","Spawner and Prototypes","Scripts","Server component","Server Conf","Sessions","Signals","Tags","TickerHandler","Typeclasses","Evennia REST API","The Web Admin","Web Client","Webserver","Game website","Async Process","Banning","Bootstrap & Evennia","Building Permissions","Clickable links","Colors","Core Concepts","Custom Protocols","Guest Logins","Internationalization","Messagepath","Multisession modes","New Models","OOB","Soft Code","Text Encodings","In-text tags parsed by Evennia","Using MUX as a Standard","Web Features","Zones","A voice operated elevator using events","Arxcode installing help","Building menus","Contrib modules","Crafting system contrib","Dialogues in events","Dynamic In Game Map","Static In Game Map","XYZGrid contrib","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","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","Our own commands","Using the game and building stuff","Creating things","Django Database queries","Overview of the Evennia library","Overview of your new Game Dir","Persistent objects and typeclasses","More about Commands","Starting to code Evennia","Python Classes and objects","Searching for things","Starting Tutorial (Part 1)","The Tutorial World","On Planning a Game","Planning the use of some useful contribs","Planning our tutorial game","Where do I begin?","Evennia Starting Tutorial (Part 2)","Making a sittable object","Implementing a game rule system","Evennia Starting Tutorial (Part 3)","Turn based Combat System","Tutorial for basic MUSH like game","Evennia Starting Tutorial (Part 4)","Add a simple new web page","Evennia Starting Tutorial (part 5)","Web Tutorial","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","Making Evennia, HTTPS and WSS (Secure Websockets) play nicely together","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.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.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.crafting","evennia.contrib.crafting.crafting","evennia.contrib.crafting.example_recipes","evennia.contrib.crafting.tests","evennia.contrib.custom_gametime","evennia.contrib.dice","evennia.contrib.email_login","evennia.contrib.evscaperoom","evennia.contrib.evscaperoom.commands","evennia.contrib.evscaperoom.menu","evennia.contrib.evscaperoom.objects","evennia.contrib.evscaperoom.room","evennia.contrib.evscaperoom.scripts","evennia.contrib.evscaperoom.state","evennia.contrib.evscaperoom.tests","evennia.contrib.evscaperoom.utils","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.example_batch_code","evennia.contrib.tutorial_examples.mirror","evennia.contrib.tutorial_examples.red_button","evennia.contrib.tutorial_examples.tests","evennia.contrib.tutorial_world","evennia.contrib.tutorial_world.intro_menu","evennia.contrib.tutorial_world.mob","evennia.contrib.tutorial_world.objects","evennia.contrib.tutorial_world.rooms","evennia.contrib.unixcommand","evennia.contrib.wilderness","evennia.contrib.xyzgrid","evennia.contrib.xyzgrid.commands","evennia.contrib.xyzgrid.example","evennia.contrib.xyzgrid.launchcmd","evennia.contrib.xyzgrid.prototypes","evennia.contrib.xyzgrid.tests","evennia.contrib.xyzgrid.utils","evennia.contrib.xyzgrid.xymap","evennia.contrib.xyzgrid.xymap_legend","evennia.contrib.xyzgrid.xyzgrid","evennia.contrib.xyzgrid.xyzroom","evennia.help","evennia.help.filehelp","evennia.help.manager","evennia.help.models","evennia.help.utils","evennia.locks","evennia.locks.lockfuncs","evennia.locks.lockhandler","evennia.objects","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.manager","evennia.scripts.models","evennia.scripts.monitorhandler","evennia.scripts.scripthandler","evennia.scripts.scripts","evennia.scripts.taskhandler","evennia.scripts.tickerhandler","evennia.server","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.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.funcparser","evennia.utils.gametime","evennia.utils.idmapper","evennia.utils.idmapper.manager","evennia.utils.idmapper.models","evennia.utils.idmapper.tests","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.utils.verb_conjugation","evennia.utils.verb_conjugation.conjugate","evennia.utils.verb_conjugation.tests","evennia.web","evennia.web.admin","evennia.web.admin.accounts","evennia.web.admin.attributes","evennia.web.admin.comms","evennia.web.admin.frontpage","evennia.web.admin.help","evennia.web.admin.objects","evennia.web.admin.scripts","evennia.web.admin.server","evennia.web.admin.tags","evennia.web.admin.urls","evennia.web.admin.utils","evennia.web.api","evennia.web.api.filters","evennia.web.api.permissions","evennia.web.api.root","evennia.web.api.serializers","evennia.web.api.tests","evennia.web.api.urls","evennia.web.api.views","evennia.web.templatetags","evennia.web.templatetags.addclass","evennia.web.urls","evennia.web.utils","evennia.web.utils.adminsite","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.tests","evennia.web.website.urls","evennia.web.website.views","evennia.web.website.views.accounts","evennia.web.website.views.channels","evennia.web.website.views.characters","evennia.web.website.views.errors","evennia.web.website.views.help","evennia.web.website.views.index","evennia.web.website.views.mixins","evennia.web.website.views.objects","Evennia Documentation","Toc"],titleterms:{"break":110,"case":[74,122],"class":[8,19,22,48,76,112,113,116,122],"default":[29,31,32,51,53,82,91,94,96,113,114,158,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192],"final":[80,153],"function":[3,29,32,36,53,76,85,115,117],"goto":27,"import":[0,4,82,84,111,115,116],"new":[6,8,41,48,53,66,78,89,99,101,112,113,122,131,140,160],"public":[147,159],"return":[27,44,110,115],"static":[81,251],"super":[57,114],Adding:[20,31,46,50,53,61,66,74,75,78,89,91,95,96,108,114,137,140,251],And:[39,88],Are:122,Going:159,One:82,PMs:99,TLS:144,The:[0,5,13,14,15,26,27,29,30,40,41,50,54,56,57,64,72,76,77,79,80,82,93,99,101,102,105,119,120,123,128,129,131,158,160],Use:[0,157],Uses:29,Using:[5,8,10,18,28,29,30,33,40,46,53,66,71,73,80,102,108,154,251],Will:122,Yes:27,__init__:[111,113],_famili:110,_should:122,abl:122,abort:93,about:[4,9,47,48,82,93,114,116,122],absolut:111,abus:55,access:[50,60],access_typ:32,account:[6,12,50,87,99,109,122,165,166,167,168,169,177,395,431],across:125,action:122,activ:[98,122,140],actor_stance_cal:29,actual:[22,48],add:[53,89,91,131,145],add_choic:76,addclass:415,adding:8,addit:[75,95,96,156],address:91,admin:[6,50,72,87,178,394,395,396,397,398,399,400,401,402,403,404,405],administr:[18,120,122],adminsit:418,advanc:[1,35,85,93,114,145,161],aggress:134,ainnev:77,alia:6,alias:[46,117],all:[91,101,113,122,150],allow:[18,122],alpha:120,also:122,altern:[7,75],amount:122,amp:321,amp_client:309,amp_serv:322,analyz:5,android:153,ani:[14,86],annot:110,anoth:[41,84,114],ansi:[19,59,138,365],apach:144,api:[4,49,51,84,85,111,406,407,408,409,410,411,412,413],app:[101,140],appear:122,arbitrari:27,area:[81,129],arg:106,arg_regex:22,argument:[27,106,113,115],arm:90,around:108,arx:75,arxcod:[75,77],ascii:19,ask:[22,27],asset:123,assign:[22,57],assort:[15,20,22,27,46,54,61,135],async:54,asynchron:54,at_object_cr:113,attach:[7,41,45],attack:[122,129],attribut:[6,13,50,87,113,117,360,396],attributehandl:13,audit:[77,243,244,245,246],auto:30,automat:91,avail:[25,45],awai:1,aws_s3_cdn:199,awsstorag:[198,199,200],backend:419,ban:55,bank:122,bar:77,barter:[77,121,122,201],base:[40,82,91,122,128],basic:[8,14,15,52,86,89,129,133,151],batch:[14,15,16,366],batchcod:14,batchprocess:179,batchprocessor:366,befor:0,begin:123,behavior:18,best:106,beta:120,between:[14,27,48],block:[14,82,84,93],blockquot:84,blurb:53,board:122,bodyfunct:260,bold:84,boot:55,bootstrap:[17,56],border:17,bot:167,branch:[11,27],brief:101,briefli:67,broken:122,bug:[6,84],build:[50,57,76,77,80,81,84,90,99,105,108,120,122,180],builder:[77,122],building_menu:[76,202],built:122,bulletin:122,busi:105,button:[17,108],calendar:100,call:[22,113],callabl:29,callback:[51,74,79],callbackhandl:227,caller:27,can:[13,76,86,116,117,122],cannot:122,capabl:122,capcha:140,card:17,care:157,carri:122,caveat:[14,15,48,59,153],certain:110,certif:150,chair:[122,125],chang:[6,9,11,50,53,63,68,74,84,91,99,113,122,133,157],channel:[18,87,91,99,122,432],charact:[18,36,50,77,79,87,91,99,104,113,120,121,122,125,126,129,140,141,146,433],chargen:[77,129,203],chat:18,cheat:3,check:[13,32],checker:0,checkpoint:140,children:116,choic:76,choos:145,clean:75,clickabl:58,client:[51,64,67,72,118,146,154,314],client_opt:31,clone:[11,75],cloth:[77,121,204],cloud9:154,cmdhandler:171,cmdparser:172,cmdset:[107,114,173],cmdset_account:181,cmdset_charact:182,cmdset_sess:183,cmdset_unloggedin:184,cmdsethandl:174,code:[0,1,3,9,11,14,18,19,26,34,35,41,68,76,84,91,105,107,115,120,122,126,144,207,366],coin:122,collabor:98,color:[17,19,53,59,77,91,103,138],color_markup:205,colour:59,combat:[128,129],comfort:156,comm:[185,193,194,195,196,397],command:[3,6,8,15,20,21,22,24,25,30,41,67,76,85,91,92,93,94,96,99,100,103,105,106,107,112,113,114,115,118,125,128,129,137,151,156,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,214,228,273,366],comment:[80,96,116],commit:11,commom:53,commun:[14,23],complet:32,complex:[76,110],compon:[17,24,42,280],comput:154,concept:[1,60,80,122,128],conclud:[95,129],conclus:[76,81,106,110,113,115,121,122,123,125],condit:91,conf:[43,112],config:[77,85,103,144],configur:[7,11,103,140,144,145,149,150,151,152,155,159],congratul:120,conjug:391,connect:[6,25,147,151,154],connection_wizard:310,contain:[41,156,367],content:91,continu:[2,125],contrib:[8,76,77,78,82,83,121,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],contribut:[83,84,85],control:11,convert:[29,106],cooldown:92,coordin:95,copi:144,core:[24,60,85,87,97],counter:251,cprofil:5,craft:[77,78,122,206,207,208,209],crafter:78,creat:[2,6,12,19,22,36,48,55,66,74,81,85,90,101,102,107,108,109,113,115,122,129,131,137,140,156,368],create_object:113,createnpc:129,creation:123,creatur:156,credit:[113,119],crop:19,current:[3,100],custom:[8,18,27,29,30,32,44,49,50,51,53,54,61,69,72,76,77,78,89,98,100,103,107,159],custom_gametim:210,dai:122,data:[7,13,27,44,52,61],databas:[6,9,24,30,40,66,75,85,110,113],dbref:117,dbserial:369,deal:41,death:122,debug:[3,14,157],debugg:7,decid:122,decor:[27,54],dedent:19,dedic:140,deep:102,deeper:78,defaultobject:6,defeat:122,defin:[11,20,22,27,29,32,41,66,82],definit:32,delai:[19,41,54,93],delimit:91,demo:120,depend:[9,75],deploi:156,deprec:[84,311],desc:[27,251],descer:98,descript:[122,156],design:105,detail:[101,140],detect:122,develop:[1,8,98,143,156,157,161],dialogu:79,dice:[77,99,121,211],dictionari:27,differ:[48,97,122],diku:97,dir:[112,118,159],direct:7,directori:[43,154],disabl:157,discuss:143,displai:[19,80,100,146],dive:102,django:[32,72,87,110,140,161],doc:[0,84],docker:156,docstr:116,document:[71,83,84,439],doe:122,doing:123,don:[14,86,125,156],donat:83,done:119,door:77,down:[82,108,137,161],dummyrunn:[5,343],dummyrunner_set:344,durat:93,dure:161,dynam:[22,27,80],each:[117,122],echo:31,economi:122,edit:[26,76,84,129],editnpc:129,editor:[26,118],elev:74,els:122,email:77,email_login:212,emul:97,encod:[16,69],encrypt:154,enemi:122,enforc:122,engin:123,enjoi:144,enough:[119,122],enter:137,entir:74,entit:24,entiti:122,entri:[30,108],error:[41,96,107,115,161,434],eveditor:[26,370],even:78,evennia:[0,3,4,7,8,9,11,29,40,49,51,56,63,70,73,75,84,86,89,91,97,98,99,106,111,115,122,124,127,130,132,138,143,144,145,147,150,151,153,154,156,158,161,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,388,389,390,391,392,393,394,395,396,397,398,399,400,401,402,403,404,405,406,407,408,409,410,411,412,413,414,415,416,417,418,419,420,421,422,423,424,425,426,427,428,429,430,431,432,433,434,435,436,437,438,439],evennia_launch:312,evenniatest:8,event:[74,79,100],eventfunc:229,everi:94,everyth:76,evform:[99,371],evmenu:[27,91,372],evmor:[28,373],evscaperoom:[77,213,214,215,216,217,218,219,220,221],evtabl:[91,99,374],examin:[3,113],exampl:[3,8,26,27,29,32,41,51,53,68,77,79,82,95,111,126,128,154,274,366],example_batch_cod:261,example_recip:208,except:125,execut:3,exist:[48,122],exit:[22,36,74,77,91,96],expand:[128,137,251],experi:122,explan:76,explor:[0,111],extend:[60,77,82,121],extended_room:222,extern:157,extra:[113,119],fail:122,familiar:[97,98],faq:[91,102],faster:8,featur:[60,72,84,101],feel:97,field:[77,87,110],fieldfil:223,fight:122,figur:107,file:[8,11,14,15,16,30,43,84,158,366],filehelp:284,fill:[19,77],filter:407,find:[1,95,115,117],firewal:157,first:[74,76,79,82,98,113,115],fix:11,flat:[4,53],flexibl:84,flow:[52,122],flower:122,folder:[0,11,75],foreground:161,forget:6,fork:[11,83],form:[17,53,122,140,427],formal:122,format:27,forum:143,framework:143,from:[4,27,30,51,86,89,91,108,115,140,154,156,372],front:[53,133],frontpag:398,full:[76,77,101],funcpars:[29,375],funcparser_cal:29,further:[54,133,144],futur:90,gain:122,game:[0,8,9,11,18,19,30,41,53,77,80,81,86,95,98,99,100,108,112,118,120,122,123,126,129,136,147,154,156,159,160,207],game_index_cli:[313,314,315],gamedir:84,gameplai:119,gametim:[77,100,376],gaug:251,gendersub:[77,224],gener:[17,60,76,77,121,122,129,140,143,186,372],general_context:420,get:[27,88,102,108,110,148,150],get_client_opt:31,get_input:27,get_inputfunc:31,get_valu:31,git:[11,87],github:[84,87],give:[88,122],given:46,global:[85,106,122],global_script:41,glossari:87,gmcp:67,godhood:108,goldenlayout:51,good:116,googl:140,grant:[50,99],grapevin:[149,323],graphic:115,grid:[77,80,82,146],group:110,guest:62,guid:75,had:119,handl:[55,101,122,157,161],handler:[45,85,128],haproxi:150,have:[102,116,118,122,129],head:84,health:77,health_bar:225,hello:115,help:[0,1,30,75,83,88,101,108,187,283,284,285,286,287,399,435],here:[0,86],hidden:122,hide:122,hierarchi:[99,122],hint:[5,41,63,119,144],hit:107,hold:114,hook:48,host:154,hous:108,how:[12,22,36,48,69,88,99,102,122,137,151,156],howto:102,html:[53,131,140],http:[144,150],human:122,idmapp:[377,378,379,380],imag:[156,157],implement:[122,126],improv:[101,122],index:[101,140,147,436],infinit:122,influenc:122,info:[143,161],inform:154,infrastructur:126,ingame_python:[226,227,228,229,230,231,232,233],ingo:64,inherit:[73,116],inherits_from:19,initi:[91,128,145,160],initial_setup:316,inlin:29,input:[22,27,29,67,115],inputfunc:[31,64,67,317],instal:[11,75,82,89,140,144,145,148,150,151,153,154,156,159,160,207],instanc:[22,48,66,116],instruct:67,integr:2,interact:[0,14,15,54,115,148],interfac:157,internation:63,interpret:7,interrupt:82,intro_menu:266,introduct:[0,5,27,75,80,81,86,140],inventori:104,ipython:115,irc:[152,324],issu:146,ital:84,item:120,itself:125,join:18,jumbotron:17,jupyt:0,just:[86,122],kei:[27,40,76,117],keyword:[79,113],kill:[122,161],kind:122,know:[86,157],known:[6,122],languag:[63,77],larg:122,last:91,latest:[9,156],latin:91,launch:[26,27],launchcmd:275,layout:56,learn:[0,86],leav:137,legend:[82,146,280],lesson:[118,124],let:[3,14,101,154],librari:111,licens:142,life:159,lift:55,like:[14,97,122,129],limit:[14,15,122],line:[3,26,90,110,115,118,125],link:[50,58,82,84,143],linux:[2,148,161],list:[3,84,113,114,122],list_nod:27,listen:135,literatur:143,live:161,local:[84,106,154],locat:117,lock:[13,30,32,114,137,288,289,290],lockdown:154,lockfunc:[125,289],lockhandl:290,log:[18,19,75,101,112,115,157,160],logfil:7,logger:381,login:[31,62,77],logo:[53,133],longer:79,look:[30,97,108,122,129],lookup:[85,110],loop:113,loot:122,mac:[148,161],machin:154,magic:6,mai:122,mail:[11,77,234],main:[84,85,117,439],make:[8,11,19,90,98,99,107,108,113,115,122,125,129,137,150],manag:[51,89,168,195,285,292,301,318,361,378],manual:[103,122,147],map:[77,80,81,82,280],mapbuild:235,mapper:80,mariadb:145,markup:[77,365],mass:104,master:[11,99,122],match:[6,114],matter:122,mccp:325,mean:122,mech:90,mechan:122,memplot:345,menu:[19,27,76,77,105,215,296,372],menu_login:236,merg:20,messag:[64,67,74,91],messagepath:64,method:[6,22,41,103,113,115],middlewar:421,migrat:[9,87,89],mind:11,mini:8,minimap:81,mirror:262,mixin:437,mob:[102,122,267],mod_proxi:144,mod_ssl:144,mod_wsgi:144,mode:[14,15,44,65,87,154,161],model:[8,66,85,140,169,196,286,293,302,319,362,379],modif:99,modifi:[53,94,113,144],modul:[40,77,115,126,128,151],monitor:31,monitorhandl:[33,303],more:[0,9,32,56,59,72,78,84,85,93,98,103,114,122],most:0,motiv:123,move:[91,125,137],movement:77,msdp:67,msg:[34,64,103],mssp:326,mud:[118,143],multi:[98,114,115,116,122],multidesc:[77,98,237],multipl:[13,122,125],multisess:[44,65,87],mush:[98,129],must:122,mutabl:[6,13],mux:71,muxcommand:188,mxp:327,mysql:145,name:[6,55,67,113,122],naw:328,ndb:13,need:[74,86,114,118,122],nest:76,network:24,next:[98,148,151,160],nice:150,nick:35,night:122,node:[27,82],non:[13,91,92,147,148],nop:146,note:[8,15,16,20,22,27,30,35,46,52,54,61,84,135,144],notebook:0,npc:[77,102,105,121,122,129,134,135],number:106,numer:122,object:[6,13,19,32,36,41,44,46,50,81,87,91,104,108,109,110,113,114,115,116,117,120,122,125,137,216,268,291,292,293,294,400,438],obtain:140,off:[91,122],offici:143,olc:40,onc:119,one:[95,122],onli:[84,110,122,161],onlin:[11,84,154],oob:67,oop:116,open:105,oper:[54,74],option:[27,76,82,99,106,154,157,161],optionclass:382,optionhandl:383,other:[22,41,43,50,53,115,117,122,143,145,154],our:[68,74,76,101,107,113,115,120,122,137,140],ourselv:113,out:[61,99,107,122],outgo:64,output:[18,244],outputcommand:67,outputfunc:[37,67],outsid:154,overal:126,overload:[48,72,103],overrid:6,overview:[2,66,82,111,112,128,133],own:[12,22,31,36,51,61,107,115,122,154,156,251],page:[53,72,89,101,131,133],parent:[66,98],pars:[70,91,106,114,115],parser:29,part3:102,part:[102,118,124,127,130,132],parti:143,pass:115,patch:83,path:[14,64,112],pathfind:82,paus:[22,74,93],pax:75,pdb:3,penalti:122,percent:251,perman:122,permiss:[32,38,46,57,99,408],perpetu:120,persist:[13,26,92,93,107,113],person:[108,122],physic:122,picklefield:384,pictur:140,pip:[87,89],plai:[122,150],plan:[0,81,120,121,122],player:[98,122],plugin:51,point:0,polici:71,port:[154,157],portal:[39,44,64,320,321,322,323,324,325,326,327,328,329,330,331,332,333,334,335,336,337,338,339,340,341],portalsess:64,portalsessionhandl:[64,330],post:122,postgresql:145,practic:106,prepar:2,prerequisit:153,prevent:91,prioriti:30,prison:122,privileg:[89,122],problem:68,process:[54,60,161],processor:[14,15,16,366],product:[90,156],profil:[5,342,343,344,345,346,347,348,349],program:[3,86],project:[2,7],prompt:[27,94],prop:122,properti:[12,13,18,20,22,27,34,36,44,46,48,82,87,110],protfunc:[40,297],protocol:[61,67],prototyp:[40,82,276,295,296,297,298,299],proxi:[144,154],publicli:11,pudb:3,puppet:87,push:[11,108],put:[11,101,150],puzzl:[77,238],pvp:122,pycharm:7,python:[0,14,77,86,98,112,115,116,143,151],quell:[38,57,114],queri:[48,110,113],queryset:[110,117],quest:122,quick:[2,122,148],quickstart:160,quiet:106,quirk:6,race:122,rais:125,random:77,random_string_gener:239,rate:251,read:[0,54,59,72,133],real:14,reboot:161,recapcha:140,receiv:[61,67],recip:[78,207],red_button:263,refer:[84,91],regist:154,regular:122,rel:[111,117],relat:[77,100,102],releas:[84,120],relev:154,reli:14,reload:[6,91,116,144,161],remark:129,rememb:[4,84,116],remind:101,remot:[11,145,154],remov:[46,91,114],repair:122,repeat:[27,31,41],replac:114,repo:75,report:84,repositori:[0,11,83,84,87],reput:122,request:84,requir:148,reset:[9,161],reshuffl:108,resourc:143,respawn:122,rest:[49,84,125],restart:[144,160],restrict:18,retriev:13,role:[99,122],roleplai:[77,99,122],roller:99,rom:97,room:[36,74,77,80,91,95,99,104,120,121,122,217,269],root:409,router:82,rpg:122,rplanguag:240,rpsystem:241,rss:[155,331],rule:[20,77,122,126,128],run:[3,7,8,22,86,89,153,156,159],runner:8,safe:29,safeti:14,same:[27,79],save:13,schema:9,score:129,screen:25,script:[41,87,137,218,230,300,301,302,303,304,305,306,307,401],scripthandl:304,search:[19,20,46,66,85,95,106,117,385],searching_cal:29,season:122,secret:140,section:439,secur:[77,144,150,157,242,243,244,245,246],see:[6,101,160],select:[77,91],self:106,send:[61,67,94,115],sent:94,separ:[76,122,125],serial:410,server:[24,39,42,43,44,60,63,77,112,129,144,145,154,159,160,245,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,402],serverconf:43,serversess:[64,351],serversessionhandl:64,servic:315,session:[44,64,87,91,99,352],sessionhandl:[44,353],set:[1,7,8,11,20,27,32,43,75,80,89,100,103,113,118,122,129,147,149,152,154,155,157,158],setpow:129,settings_default:358,settings_mixin:346,setup:[2,75,144,145,148,154,159,160],sever:[79,95,106],share:11,sharedmemorymodel:66,sheet:[3,99],shop:105,shortcut:[13,85],should:122,show:[102,129],shut:161,sidebar:84,signal:[45,354],similar:122,simpl:[3,5,8,27,32,41,76,77,93,122,131],simpledoor:247,singl:13,singleton:85,site:[72,87],sitekei:140,sittabl:125,skill:[78,122,123],slow:77,slow_exit:248,snippet:77,soft:68,softcod:[68,98],solut:68,solv:122,some:[95,97,115,121,122],someth:122,somewher:86,sort:122,sourc:[7,30,84],space:[17,113],spawn:[40,98],spawner:[40,299],special:[84,122],spread:83,spuriou:146,sql:[110,145],sqlite3:145,ssh:[67,157,332],ssl:[154,333],stack:122,staff:122,standard:[71,100],start:[0,75,99,102,105,115,118,124,127,130,132,148,156,160,161],stat:136,state:219,statement:107,statu:[122,161],status:122,step:[3,11,75,98,108,120,140,149,151,152,153,155,160],stop:[160,161],storag:[27,41],store:[13,27,40,91,122],string:[32,77,82,106,372],strip:106,structur:84,studi:74,stuff:[86,108,129],style:[17,53],sub:76,subclass:36,subtop:30,succe:122,suit:8,summari:[55,85,107,114,116,117],superus:38,support:[0,67,146],suppress_ga:334,surround:3,swap:48,sword:[114,208],synchron:54,syntax:[0,84,98,161,366],syscommand:189,system:[21,22,30,32,56,77,78,101,102,120,121,122,126,128,129,190],tabl:[19,66,84,91],tag:[46,70,95,117,138,363,403],talk:[77,121],talking_npc:249,taskhandl:306,tb_basic:254,tb_equip:255,tb_item:256,tb_magic:257,tb_rang:258,teamciti:2,tech:120,technic:[30,84,263],teleport:82,telnet:[67,146,154,335],telnet_oob:336,telnet_ssl:337,templat:[2,101,140,372],templatetag:[414,415],tempmsg:34,temporari:27,term:116,termux:153,test:[5,8,86,115,129,191,200,209,220,231,246,264,277,338,348,380,392,411,422,428],test_queri:347,test_resourc:386,test_trait:250,text2html:387,text:[19,27,31,60,69,70,84,115,133],than:122,thei:122,them:122,theori:106,thi:[101,123],thing:[4,84,97,98,109,113,116,117,118,122],third:143,those:122,throttl:355,through:[3,83,156],ticker:[47,87],tickerhandl:[47,307],tie:99,time:[19,22,41,68,100,122],time_format:19,timer:[5,41],timetrac:349,tip:11,titl:[50,53],to_byt:19,to_str:19,toc:440,togeth:[101,150],tool:[19,24,55,143],traceback:0,track:[11,122],train:137,trait:[121,251],transit:82,translat:63,travi:10,treat:14,tree:[77,122,208],tree_select:252,trick:11,troubleshoot:[148,153],ttype:339,tupl:[113,114],turn:[6,91,128],turnbattl:[77,121,253,254,255,256,257,258],tutori:[0,8,74,77,79,90,100,101,102,105,118,119,120,122,124,127,128,129,130,132,133,134,135,136,137,139,141],tutorial_exampl:[259,260,261,262,263,264],tutorial_world:[265,266,267,268,269],tweet:[136,151],twist:87,twitter:151,type:[12,13,36,251],typeclass:[6,48,73,85,87,98,103,107,112,113,117,125,232,251,359,360,361,362,363],under:11,understand:138,ungm:99,unimpl:162,uninstal:119,unit:8,unixcommand:[77,270],unloggedin:192,unmonitor:31,unquel:114,unrepeat:31,updat:[9,11,48,91,113],upgrad:9,upload:157,upstream:[6,11],url:[89,101,131,140,404,412,416,424,429],usag:[14,15,26,49,50,82,145],use:[6,18,47,86,121,122],used:[22,91],useful:[22,121,143],user:[11,22,53,57,63,97,98,101,157],using:[3,8,74,113,117],util:[7,17,19,22,24,29,85,93,143,221,233,278,287,364,365,366,367,368,369,370,371,372,373,374,375,376,377,378,379,380,381,382,383,384,385,386,387,388,389,390,391,392,405,417,418,419,420,421,422],valid:[32,356],validatorfunc:389,valu:[27,40,122],vanilla:122,variabl:3,variant:125,vehicl:[102,137],verb_conjug:[390,391,392],verbatim:84,version:[11,84],versu:54,vhost:144,via:122,view:[18,72,101,131,140,141,413,425,430,431,432,433,434,435,436,437,438],virtualenv:87,voic:74,volum:122,wai:[1,27,82,93,114,115],want:[86,102,122,156],warn:84,weapon:122,weather:[122,139],web:[6,50,51,53,60,67,72,102,112,131,133,140,141,154,157,393,394,395,396,397,398,399,400,401,402,403,404,405,406,407,408,409,410,411,412,413,414,415,416,417,418,419,420,421,422,423,424,425,426,427,428,429,430,431,432,433,434,435,436,437,438],webclient:[52,340,423,424,425],webclient_ajax:341,webclient_gui:51,webpag:53,webserv:[52,157,357],websit:[53,72,89,426,427,428,429,430,431,432,433,434,435,436,437,438],websocket:[144,150],weight:[104,122],werewolf:110,what:[2,13,56,86,102,106,116,117,118,122,123,156],when:[4,47,91,125],where:[86,111,123,148],who:[22,107],wiki:89,wilder:[77,271],willing:86,window:[63,75,148],wizard:147,word:83,work:[11,22,48,82,86,101,106,122,137,156],workaround:146,workflow:1,world:[77,102,108,112,115,119,120,122],write:[8,51,61],wss:150,xterm256:[59,138],xymap:[82,279],xymap_legend:280,xyzexit:82,xyzgrid:[77,82,272,273,274,275,276,277,278,279,280,281,282],xyzroom:[82,282],yield:[27,93],you:[0,86,114,118,119,122],your:[0,1,6,9,11,12,22,31,36,51,57,61,66,68,89,95,107,108,112,122,123,140,154,156,157,251],yourself:[108,120],zcoord:82,zone:73}})
\ 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/FuncParser","Components/Help-System","Components/Inputfuncs","Components/Locks","Components/MonitorHandler","Components/Msg","Components/Nicks","Components/Objects","Components/Outputfuncs","Components/Permissions","Components/Portal-And-Server","Components/Prototypes","Components/Scripts","Components/Server","Components/Server-Conf","Components/Sessions","Components/Signals","Components/Tags","Components/TickerHandler","Components/Typeclasses","Components/Web-API","Components/Web-Admin","Components/Webclient","Components/Webserver","Components/Website","Concepts/Async-Process","Concepts/Banning","Concepts/Bootstrap-&-Evennia","Concepts/Building-Permissions","Concepts/Clickable-Links","Concepts/Colors","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/Crafting","Contribs/Dialogues-in-events","Contribs/Dynamic-In-Game-Map","Contribs/Static-In-Game-Map","Contribs/XYZGrid","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/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/Starting-Part1","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/Part2/Planning-Where-Do-I-Begin","Howto/Starting/Part2/Starting-Part2","Howto/Starting/Part3/A-Sittable-Object","Howto/Starting/Part3/Implementing-a-game-rule-system","Howto/Starting/Part3/Starting-Part3","Howto/Starting/Part3/Turn-based-Combat-System","Howto/Starting/Part3/Tutorial-for-basic-MUSH-like-game","Howto/Starting/Part4/Starting-Part4","Howto/Starting/Part5/Add-a-simple-new-web-page","Howto/Starting/Part5/Starting-Part5","Howto/Starting/Part5/Web-Tutorial","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.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.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.crafting","api/evennia.contrib.crafting.crafting","api/evennia.contrib.crafting.example_recipes","api/evennia.contrib.crafting.tests","api/evennia.contrib.custom_gametime","api/evennia.contrib.dice","api/evennia.contrib.email_login","api/evennia.contrib.evscaperoom","api/evennia.contrib.evscaperoom.commands","api/evennia.contrib.evscaperoom.menu","api/evennia.contrib.evscaperoom.objects","api/evennia.contrib.evscaperoom.room","api/evennia.contrib.evscaperoom.scripts","api/evennia.contrib.evscaperoom.state","api/evennia.contrib.evscaperoom.tests","api/evennia.contrib.evscaperoom.utils","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.example_batch_code","api/evennia.contrib.tutorial_examples.mirror","api/evennia.contrib.tutorial_examples.red_button","api/evennia.contrib.tutorial_examples.tests","api/evennia.contrib.tutorial_world","api/evennia.contrib.tutorial_world.intro_menu","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.contrib.xyzgrid","api/evennia.contrib.xyzgrid.commands","api/evennia.contrib.xyzgrid.example","api/evennia.contrib.xyzgrid.launchcmd","api/evennia.contrib.xyzgrid.prototypes","api/evennia.contrib.xyzgrid.tests","api/evennia.contrib.xyzgrid.utils","api/evennia.contrib.xyzgrid.xymap","api/evennia.contrib.xyzgrid.xymap_legend","api/evennia.contrib.xyzgrid.xyzgrid","api/evennia.contrib.xyzgrid.xyzroom","api/evennia.help","api/evennia.help.filehelp","api/evennia.help.manager","api/evennia.help.models","api/evennia.help.utils","api/evennia.locks","api/evennia.locks.lockfuncs","api/evennia.locks.lockhandler","api/evennia.objects","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.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.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.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.funcparser","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.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.utils.verb_conjugation","api/evennia.utils.verb_conjugation.conjugate","api/evennia.utils.verb_conjugation.tests","api/evennia.web","api/evennia.web.admin","api/evennia.web.admin.accounts","api/evennia.web.admin.attributes","api/evennia.web.admin.comms","api/evennia.web.admin.frontpage","api/evennia.web.admin.help","api/evennia.web.admin.objects","api/evennia.web.admin.scripts","api/evennia.web.admin.server","api/evennia.web.admin.tags","api/evennia.web.admin.urls","api/evennia.web.admin.utils","api/evennia.web.api","api/evennia.web.api.filters","api/evennia.web.api.permissions","api/evennia.web.api.root","api/evennia.web.api.serializers","api/evennia.web.api.tests","api/evennia.web.api.urls","api/evennia.web.api.views","api/evennia.web.templatetags","api/evennia.web.templatetags.addclass","api/evennia.web.urls","api/evennia.web.utils","api/evennia.web.utils.adminsite","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.tests","api/evennia.web.website.urls","api/evennia.web.website.views","api/evennia.web.website.views.accounts","api/evennia.web.website.views.channels","api/evennia.web.website.views.characters","api/evennia.web.website.views.errors","api/evennia.web.website.views.help","api/evennia.web.website.views.index","api/evennia.web.website.views.mixins","api/evennia.web.website.views.objects","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/FuncParser.md","Components/Help-System.md","Components/Inputfuncs.md","Components/Locks.md","Components/MonitorHandler.md","Components/Msg.md","Components/Nicks.md","Components/Objects.md","Components/Outputfuncs.md","Components/Permissions.md","Components/Portal-And-Server.md","Components/Prototypes.md","Components/Scripts.md","Components/Server.md","Components/Server-Conf.md","Components/Sessions.md","Components/Signals.md","Components/Tags.md","Components/TickerHandler.md","Components/Typeclasses.md","Components/Web-API.md","Components/Web-Admin.md","Components/Webclient.md","Components/Webserver.md","Components/Website.md","Concepts/Async-Process.md","Concepts/Banning.md","Concepts/Bootstrap-&-Evennia.md","Concepts/Building-Permissions.md","Concepts/Clickable-Links.md","Concepts/Colors.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/Crafting.md","Contribs/Dialogues-in-events.md","Contribs/Dynamic-In-Game-Map.md","Contribs/Static-In-Game-Map.md","Contribs/XYZGrid.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/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/Starting-Part1.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/Part2/Planning-Where-Do-I-Begin.md","Howto/Starting/Part2/Starting-Part2.md","Howto/Starting/Part3/A-Sittable-Object.md","Howto/Starting/Part3/Implementing-a-game-rule-system.md","Howto/Starting/Part3/Starting-Part3.md","Howto/Starting/Part3/Turn-based-Combat-System.md","Howto/Starting/Part3/Tutorial-for-basic-MUSH-like-game.md","Howto/Starting/Part4/Starting-Part4.md","Howto/Starting/Part5/Add-a-simple-new-web-page.md","Howto/Starting/Part5/Starting-Part5.md","Howto/Starting/Part5/Web-Tutorial.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.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.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.crafting.rst","api/evennia.contrib.crafting.crafting.rst","api/evennia.contrib.crafting.example_recipes.rst","api/evennia.contrib.crafting.tests.rst","api/evennia.contrib.custom_gametime.rst","api/evennia.contrib.dice.rst","api/evennia.contrib.email_login.rst","api/evennia.contrib.evscaperoom.rst","api/evennia.contrib.evscaperoom.commands.rst","api/evennia.contrib.evscaperoom.menu.rst","api/evennia.contrib.evscaperoom.objects.rst","api/evennia.contrib.evscaperoom.room.rst","api/evennia.contrib.evscaperoom.scripts.rst","api/evennia.contrib.evscaperoom.state.rst","api/evennia.contrib.evscaperoom.tests.rst","api/evennia.contrib.evscaperoom.utils.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.example_batch_code.rst","api/evennia.contrib.tutorial_examples.mirror.rst","api/evennia.contrib.tutorial_examples.red_button.rst","api/evennia.contrib.tutorial_examples.tests.rst","api/evennia.contrib.tutorial_world.rst","api/evennia.contrib.tutorial_world.intro_menu.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.contrib.xyzgrid.rst","api/evennia.contrib.xyzgrid.commands.rst","api/evennia.contrib.xyzgrid.example.rst","api/evennia.contrib.xyzgrid.launchcmd.rst","api/evennia.contrib.xyzgrid.prototypes.rst","api/evennia.contrib.xyzgrid.tests.rst","api/evennia.contrib.xyzgrid.utils.rst","api/evennia.contrib.xyzgrid.xymap.rst","api/evennia.contrib.xyzgrid.xymap_legend.rst","api/evennia.contrib.xyzgrid.xyzgrid.rst","api/evennia.contrib.xyzgrid.xyzroom.rst","api/evennia.help.rst","api/evennia.help.filehelp.rst","api/evennia.help.manager.rst","api/evennia.help.models.rst","api/evennia.help.utils.rst","api/evennia.locks.rst","api/evennia.locks.lockfuncs.rst","api/evennia.locks.lockhandler.rst","api/evennia.objects.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.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.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.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.funcparser.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.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.utils.verb_conjugation.rst","api/evennia.utils.verb_conjugation.conjugate.rst","api/evennia.utils.verb_conjugation.tests.rst","api/evennia.web.rst","api/evennia.web.admin.rst","api/evennia.web.admin.accounts.rst","api/evennia.web.admin.attributes.rst","api/evennia.web.admin.comms.rst","api/evennia.web.admin.frontpage.rst","api/evennia.web.admin.help.rst","api/evennia.web.admin.objects.rst","api/evennia.web.admin.scripts.rst","api/evennia.web.admin.server.rst","api/evennia.web.admin.tags.rst","api/evennia.web.admin.urls.rst","api/evennia.web.admin.utils.rst","api/evennia.web.api.rst","api/evennia.web.api.filters.rst","api/evennia.web.api.permissions.rst","api/evennia.web.api.root.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.templatetags.rst","api/evennia.web.templatetags.addclass.rst","api/evennia.web.urls.rst","api/evennia.web.utils.rst","api/evennia.web.utils.adminsite.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.tests.rst","api/evennia.web.website.urls.rst","api/evennia.web.website.views.rst","api/evennia.web.website.views.accounts.rst","api/evennia.web.website.views.channels.rst","api/evennia.web.website.views.characters.rst","api/evennia.web.website.views.errors.rst","api/evennia.web.website.views.help.rst","api/evennia.web.website.views.index.rst","api/evennia.web.website.views.mixins.rst","api/evennia.web.website.views.objects.rst","index.md","toc.md"],objects:{"":{evennia:[163,0,0,"-"]},"evennia.accounts":{accounts:[166,0,0,"-"],bots:[167,0,0,"-"],manager:[168,0,0,"-"],models:[169,0,0,"-"]},"evennia.accounts.accounts":{DefaultAccount:[166,1,1,""],DefaultGuest:[166,1,1,""]},"evennia.accounts.accounts.DefaultAccount":{"delete":[166,3,1,""],DoesNotExist:[166,2,1,""],MultipleObjectsReturned:[166,2,1,""],access:[166,3,1,""],at_access:[166,3,1,""],at_account_creation:[166,3,1,""],at_cmdset_get:[166,3,1,""],at_disconnect:[166,3,1,""],at_failed_login:[166,3,1,""],at_first_login:[166,3,1,""],at_first_save:[166,3,1,""],at_init:[166,3,1,""],at_look:[166,3,1,""],at_msg_receive:[166,3,1,""],at_msg_send:[166,3,1,""],at_password_change:[166,3,1,""],at_post_channel_msg:[166,3,1,""],at_post_disconnect:[166,3,1,""],at_post_login:[166,3,1,""],at_pre_channel_msg:[166,3,1,""],at_pre_login:[166,3,1,""],at_server_reload:[166,3,1,""],at_server_shutdown:[166,3,1,""],authenticate:[166,3,1,""],basetype_setup:[166,3,1,""],channel_msg:[166,3,1,""],character:[166,3,1,""],characters:[166,3,1,""],cmdset:[166,4,1,""],connection_time:[166,3,1,""],create:[166,3,1,""],create_character:[166,3,1,""],disconnect_session_from_account:[166,3,1,""],execute_cmd:[166,3,1,""],get_all_puppets:[166,3,1,""],get_display_name:[166,3,1,""],get_puppet:[166,3,1,""],get_username_validators:[166,3,1,""],idle_time:[166,3,1,""],is_banned:[166,3,1,""],msg:[166,3,1,""],nicks:[166,4,1,""],normalize_username:[166,3,1,""],objects:[166,4,1,""],options:[166,4,1,""],path:[166,4,1,""],puppet:[166,3,1,""],puppet_object:[166,3,1,""],scripts:[166,4,1,""],search:[166,3,1,""],sessions:[166,4,1,""],set_password:[166,3,1,""],typename:[166,4,1,""],unpuppet_all:[166,3,1,""],unpuppet_object:[166,3,1,""],validate_password:[166,3,1,""],validate_username:[166,3,1,""]},"evennia.accounts.accounts.DefaultGuest":{DoesNotExist:[166,2,1,""],MultipleObjectsReturned:[166,2,1,""],at_post_disconnect:[166,3,1,""],at_post_login:[166,3,1,""],at_server_shutdown:[166,3,1,""],authenticate:[166,3,1,""],create:[166,3,1,""],path:[166,4,1,""],typename:[166,4,1,""]},"evennia.accounts.bots":{Bot:[167,1,1,""],BotStarter:[167,1,1,""],GrapevineBot:[167,1,1,""],IRCBot:[167,1,1,""],RSSBot:[167,1,1,""]},"evennia.accounts.bots.Bot":{DoesNotExist:[167,2,1,""],MultipleObjectsReturned:[167,2,1,""],at_server_shutdown:[167,3,1,""],basetype_setup:[167,3,1,""],execute_cmd:[167,3,1,""],msg:[167,3,1,""],path:[167,4,1,""],start:[167,3,1,""],typename:[167,4,1,""]},"evennia.accounts.bots.BotStarter":{DoesNotExist:[167,2,1,""],MultipleObjectsReturned:[167,2,1,""],at_repeat:[167,3,1,""],at_script_creation:[167,3,1,""],at_server_reload:[167,3,1,""],at_server_shutdown:[167,3,1,""],at_start:[167,3,1,""],path:[167,4,1,""],typename:[167,4,1,""]},"evennia.accounts.bots.GrapevineBot":{DoesNotExist:[167,2,1,""],MultipleObjectsReturned:[167,2,1,""],at_msg_send:[167,3,1,""],execute_cmd:[167,3,1,""],factory_path:[167,4,1,""],msg:[167,3,1,""],path:[167,4,1,""],start:[167,3,1,""],typename:[167,4,1,""]},"evennia.accounts.bots.IRCBot":{DoesNotExist:[167,2,1,""],MultipleObjectsReturned:[167,2,1,""],at_msg_send:[167,3,1,""],execute_cmd:[167,3,1,""],factory_path:[167,4,1,""],get_nicklist:[167,3,1,""],msg:[167,3,1,""],path:[167,4,1,""],ping:[167,3,1,""],reconnect:[167,3,1,""],start:[167,3,1,""],typename:[167,4,1,""]},"evennia.accounts.bots.RSSBot":{DoesNotExist:[167,2,1,""],MultipleObjectsReturned:[167,2,1,""],execute_cmd:[167,3,1,""],path:[167,4,1,""],start:[167,3,1,""],typename:[167,4,1,""]},"evennia.accounts.manager":{AccountManager:[168,1,1,""]},"evennia.accounts.models":{AccountDB:[169,1,1,""]},"evennia.accounts.models.AccountDB":{DoesNotExist:[169,2,1,""],MultipleObjectsReturned:[169,2,1,""],account_subscription_set:[169,4,1,""],cmdset_storage:[169,3,1,""],db_attributes:[169,4,1,""],db_cmdset_storage:[169,4,1,""],db_is_bot:[169,4,1,""],db_is_connected:[169,4,1,""],db_tags:[169,4,1,""],get_next_by_date_joined:[169,3,1,""],get_next_by_db_date_created:[169,3,1,""],get_previous_by_date_joined:[169,3,1,""],get_previous_by_db_date_created:[169,3,1,""],groups:[169,4,1,""],hide_from_accounts_set:[169,4,1,""],id:[169,4,1,""],is_bot:[169,3,1,""],is_connected:[169,3,1,""],key:[169,3,1,""],logentry_set:[169,4,1,""],name:[169,3,1,""],objectdb_set:[169,4,1,""],objects:[169,4,1,""],path:[169,4,1,""],receiver_account_set:[169,4,1,""],scriptdb_set:[169,4,1,""],sender_account_set:[169,4,1,""],typename:[169,4,1,""],uid:[169,3,1,""],user_permissions:[169,4,1,""]},"evennia.commands":{"default":[176,0,0,"-"],cmdhandler:[171,0,0,"-"],cmdparser:[172,0,0,"-"],cmdset:[173,0,0,"-"],cmdsethandler:[174,0,0,"-"],command:[175,0,0,"-"]},"evennia.commands.cmdhandler":{InterruptCommand:[171,2,1,""],cmdhandler:[171,5,1,""]},"evennia.commands.cmdparser":{build_matches:[172,5,1,""],cmdparser:[172,5,1,""],create_match:[172,5,1,""],try_num_differentiators:[172,5,1,""]},"evennia.commands.cmdset":{CmdSet:[173,1,1,""]},"evennia.commands.cmdset.CmdSet":{__init__:[173,3,1,""],add:[173,3,1,""],at_cmdset_creation:[173,3,1,""],count:[173,3,1,""],duplicates:[173,4,1,""],errmessage:[173,4,1,""],get:[173,3,1,""],get_all_cmd_keys_and_aliases:[173,3,1,""],get_system_cmds:[173,3,1,""],key:[173,4,1,""],key_mergetypes:[173,4,1,""],make_unique:[173,3,1,""],mergetype:[173,4,1,""],no_channels:[173,4,1,""],no_exits:[173,4,1,""],no_objs:[173,4,1,""],path:[173,4,1,""],permanent:[173,4,1,""],priority:[173,4,1,""],remove:[173,3,1,""],to_duplicate:[173,4,1,""]},"evennia.commands.cmdsethandler":{CmdSetHandler:[174,1,1,""],import_cmdset:[174,5,1,""]},"evennia.commands.cmdsethandler.CmdSetHandler":{"delete":[174,3,1,""],__init__:[174,3,1,""],add:[174,3,1,""],add_default:[174,3,1,""],all:[174,3,1,""],clear:[174,3,1,""],delete_default:[174,3,1,""],get:[174,3,1,""],has:[174,3,1,""],has_cmdset:[174,3,1,""],remove:[174,3,1,""],remove_default:[174,3,1,""],reset:[174,3,1,""],update:[174,3,1,""]},"evennia.commands.command":{Command:[175,1,1,""],CommandMeta:[175,1,1,""],InterruptCommand:[175,2,1,""]},"evennia.commands.command.Command":{__init__:[175,3,1,""],access:[175,3,1,""],aliases:[175,4,1,""],arg_regex:[175,4,1,""],at_post_cmd:[175,3,1,""],at_pre_cmd:[175,3,1,""],auto_help:[175,4,1,""],client_width:[175,3,1,""],execute_cmd:[175,3,1,""],func:[175,3,1,""],get_command_info:[175,3,1,""],get_extra_info:[175,3,1,""],get_help:[175,3,1,""],help_category:[175,4,1,""],is_exit:[175,4,1,""],key:[175,4,1,""],lock_storage:[175,4,1,""],lockhandler:[175,4,1,""],locks:[175,4,1,""],match:[175,3,1,""],msg:[175,3,1,""],msg_all_sessions:[175,4,1,""],parse:[175,3,1,""],save_for_next:[175,4,1,""],search_index_entry:[175,4,1,""],set_aliases:[175,3,1,""],set_key:[175,3,1,""],styled_footer:[175,3,1,""],styled_header:[175,3,1,""],styled_separator:[175,3,1,""],styled_table:[175,3,1,""],web_get_admin_url:[175,3,1,""],web_get_detail_url:[175,3,1,""]},"evennia.commands.command.CommandMeta":{__init__:[175,3,1,""]},"evennia.commands.default":{account:[177,0,0,"-"],admin:[178,0,0,"-"],batchprocess:[179,0,0,"-"],building:[180,0,0,"-"],cmdset_account:[181,0,0,"-"],cmdset_character:[182,0,0,"-"],cmdset_session:[183,0,0,"-"],cmdset_unloggedin:[184,0,0,"-"],comms:[185,0,0,"-"],general:[186,0,0,"-"],help:[187,0,0,"-"],muxcommand:[188,0,0,"-"],syscommands:[189,0,0,"-"],system:[190,0,0,"-"],unloggedin:[192,0,0,"-"]},"evennia.commands.default.account":{CmdCharCreate:[177,1,1,""],CmdCharDelete:[177,1,1,""],CmdColorTest:[177,1,1,""],CmdIC:[177,1,1,""],CmdOOC:[177,1,1,""],CmdOOCLook:[177,1,1,""],CmdOption:[177,1,1,""],CmdPassword:[177,1,1,""],CmdQuell:[177,1,1,""],CmdQuit:[177,1,1,""],CmdSessions:[177,1,1,""],CmdStyle:[177,1,1,""],CmdWho:[177,1,1,""]},"evennia.commands.default.account.CmdCharCreate":{account_caller:[177,4,1,""],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.account.CmdCharDelete":{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.account.CmdColorTest":{account_caller:[177,4,1,""],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,""],slice_bright_bg:[177,4,1,""],slice_bright_fg:[177,4,1,""],slice_dark_bg:[177,4,1,""],slice_dark_fg:[177,4,1,""],table_format:[177,3,1,""]},"evennia.commands.default.account.CmdIC":{account_caller:[177,4,1,""],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.account.CmdOOC":{account_caller:[177,4,1,""],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.account.CmdOOCLook":{account_caller:[177,4,1,""],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.account.CmdOption":{account_caller:[177,4,1,""],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,""],switch_options:[177,4,1,""]},"evennia.commands.default.account.CmdPassword":{account_caller:[177,4,1,""],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.account.CmdQuell":{account_caller:[177,4,1,""],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.account.CmdQuit":{account_caller:[177,4,1,""],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,""],switch_options:[177,4,1,""]},"evennia.commands.default.account.CmdSessions":{account_caller:[177,4,1,""],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.account.CmdStyle":{aliases:[177,4,1,""],func:[177,3,1,""],help_category:[177,4,1,""],key:[177,4,1,""],list_styles:[177,3,1,""],lock_storage:[177,4,1,""],search_index_entry:[177,4,1,""],set:[177,3,1,""],switch_options:[177,4,1,""]},"evennia.commands.default.account.CmdWho":{account_caller:[177,4,1,""],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.admin":{CmdBan:[178,1,1,""],CmdBoot:[178,1,1,""],CmdEmit:[178,1,1,""],CmdForce:[178,1,1,""],CmdNewPassword:[178,1,1,""],CmdPerm:[178,1,1,""],CmdUnban:[178,1,1,""],CmdWall:[178,1,1,""]},"evennia.commands.default.admin.CmdBan":{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.admin.CmdBoot":{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.admin.CmdEmit":{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.admin.CmdForce":{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,""],perm_used:[178,4,1,""],search_index_entry:[178,4,1,""]},"evennia.commands.default.admin.CmdNewPassword":{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.admin.CmdPerm":{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.admin.CmdUnban":{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.admin.CmdWall":{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.batchprocess":{CmdBatchCode:[179,1,1,""],CmdBatchCommands:[179,1,1,""]},"evennia.commands.default.batchprocess.CmdBatchCode":{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.batchprocess.CmdBatchCommands":{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.building":{CmdCopy:[180,1,1,""],CmdCpAttr:[180,1,1,""],CmdCreate:[180,1,1,""],CmdDesc:[180,1,1,""],CmdDestroy:[180,1,1,""],CmdDig:[180,1,1,""],CmdExamine:[180,1,1,""],CmdFind:[180,1,1,""],CmdLink:[180,1,1,""],CmdListCmdSets:[180,1,1,""],CmdLock:[180,1,1,""],CmdMvAttr:[180,1,1,""],CmdName:[180,1,1,""],CmdOpen:[180,1,1,""],CmdScript:[180,1,1,""],CmdSetAttribute:[180,1,1,""],CmdSetHome:[180,1,1,""],CmdSetObjAlias:[180,1,1,""],CmdSpawn:[180,1,1,""],CmdTag:[180,1,1,""],CmdTeleport:[180,1,1,""],CmdTunnel:[180,1,1,""],CmdTypeclass:[180,1,1,""],CmdUnLink:[180,1,1,""],CmdWipe:[180,1,1,""],ObjManipCommand:[180,1,1,""]},"evennia.commands.default.building.CmdCopy":{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.building.CmdCpAttr":{aliases:[180,4,1,""],check_from_attr:[180,3,1,""],check_has_attr:[180,3,1,""],check_to_attr:[180,3,1,""],func:[180,3,1,""],get_attr:[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,""],switch_options:[180,4,1,""]},"evennia.commands.default.building.CmdCreate":{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,""],new_obj_lockstring:[180,4,1,""],search_index_entry:[180,4,1,""],switch_options:[180,4,1,""]},"evennia.commands.default.building.CmdDesc":{aliases:[180,4,1,""],edit_handler:[180,3,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,""],switch_options:[180,4,1,""]},"evennia.commands.default.building.CmdDestroy":{aliases:[180,4,1,""],confirm:[180,4,1,""],default_confirm:[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,""],switch_options:[180,4,1,""]},"evennia.commands.default.building.CmdDig":{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,""],new_room_lockstring:[180,4,1,""],search_index_entry:[180,4,1,""],switch_options:[180,4,1,""]},"evennia.commands.default.building.CmdExamine":{account_mode:[180,4,1,""],aliases:[180,4,1,""],arg_regex:[180,4,1,""],detail_color:[180,4,1,""],format_attributes:[180,3,1,""],format_output:[180,3,1,""],func:[180,3,1,""],header_color:[180,4,1,""],help_category:[180,4,1,""],key:[180,4,1,""],list_attribute:[180,3,1,""],lock_storage:[180,4,1,""],locks:[180,4,1,""],quell_color:[180,4,1,""],search_index_entry:[180,4,1,""],separator:[180,4,1,""]},"evennia.commands.default.building.CmdFind":{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,""],switch_options:[180,4,1,""]},"evennia.commands.default.building.CmdLink":{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.building.CmdListCmdSets":{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.building.CmdLock":{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.building.CmdMvAttr":{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,""],switch_options:[180,4,1,""]},"evennia.commands.default.building.CmdName":{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.building.CmdOpen":{aliases:[180,4,1,""],create_exit:[180,3,1,""],func:[180,3,1,""],help_category:[180,4,1,""],key:[180,4,1,""],lock_storage:[180,4,1,""],locks:[180,4,1,""],new_obj_lockstring:[180,4,1,""],parse:[180,3,1,""],search_index_entry:[180,4,1,""]},"evennia.commands.default.building.CmdScript":{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,""],switch_options:[180,4,1,""]},"evennia.commands.default.building.CmdSetAttribute":{aliases:[180,4,1,""],check_attr:[180,3,1,""],check_obj:[180,3,1,""],do_nested_lookup:[180,3,1,""],edit_handler:[180,3,1,""],func:[180,3,1,""],help_category:[180,4,1,""],key:[180,4,1,""],lock_storage:[180,4,1,""],locks:[180,4,1,""],nested_re:[180,4,1,""],not_found:[180,4,1,""],rm_attr:[180,3,1,""],search_for_obj:[180,3,1,""],search_index_entry:[180,4,1,""],set_attr:[180,3,1,""],split_nested_attr:[180,3,1,""],view_attr:[180,3,1,""]},"evennia.commands.default.building.CmdSetHome":{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.building.CmdSetObjAlias":{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,""],switch_options:[180,4,1,""]},"evennia.commands.default.building.CmdSpawn":{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,""],switch_options:[180,4,1,""]},"evennia.commands.default.building.CmdTag":{aliases:[180,4,1,""],arg_regex:[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,""],options:[180,4,1,""],search_index_entry:[180,4,1,""]},"evennia.commands.default.building.CmdTeleport":{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,""],rhs_split:[180,4,1,""],search_index_entry:[180,4,1,""],switch_options:[180,4,1,""]},"evennia.commands.default.building.CmdTunnel":{aliases:[180,4,1,""],directions:[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,""],switch_options:[180,4,1,""]},"evennia.commands.default.building.CmdTypeclass":{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,""],switch_options:[180,4,1,""]},"evennia.commands.default.building.CmdUnLink":{aliases:[180,4,1,""],func:[180,3,1,""],help_category:[180,4,1,""],help_key:[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.building.CmdWipe":{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.building.ObjManipCommand":{aliases:[180,4,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.cmdset_account":{AccountCmdSet:[181,1,1,""]},"evennia.commands.default.cmdset_account.AccountCmdSet":{at_cmdset_creation:[181,3,1,""],key:[181,4,1,""],path:[181,4,1,""],priority:[181,4,1,""]},"evennia.commands.default.cmdset_character":{CharacterCmdSet:[182,1,1,""]},"evennia.commands.default.cmdset_character.CharacterCmdSet":{at_cmdset_creation:[182,3,1,""],key:[182,4,1,""],path:[182,4,1,""],priority:[182,4,1,""]},"evennia.commands.default.cmdset_session":{SessionCmdSet:[183,1,1,""]},"evennia.commands.default.cmdset_session.SessionCmdSet":{at_cmdset_creation:[183,3,1,""],key:[183,4,1,""],path:[183,4,1,""],priority:[183,4,1,""]},"evennia.commands.default.cmdset_unloggedin":{UnloggedinCmdSet:[184,1,1,""]},"evennia.commands.default.cmdset_unloggedin.UnloggedinCmdSet":{at_cmdset_creation:[184,3,1,""],key:[184,4,1,""],path:[184,4,1,""],priority:[184,4,1,""]},"evennia.commands.default.comms":{CmdAddCom:[185,1,1,""],CmdAllCom:[185,1,1,""],CmdCBoot:[185,1,1,""],CmdCWho:[185,1,1,""],CmdCdesc:[185,1,1,""],CmdCdestroy:[185,1,1,""],CmdChannel:[185,1,1,""],CmdChannelCreate:[185,1,1,""],CmdClock:[185,1,1,""],CmdDelCom:[185,1,1,""],CmdGrapevine2Chan:[185,1,1,""],CmdIRC2Chan:[185,1,1,""],CmdIRCStatus:[185,1,1,""],CmdPage:[185,1,1,""],CmdRSS2Chan:[185,1,1,""]},"evennia.commands.default.comms.CmdAddCom":{account_caller:[185,4,1,""],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.commands.default.comms.CmdAllCom":{account_caller:[185,4,1,""],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.commands.default.comms.CmdCBoot":{account_caller:[185,4,1,""],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,""],switch_options:[185,4,1,""]},"evennia.commands.default.comms.CmdCWho":{account_caller:[185,4,1,""],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.commands.default.comms.CmdCdesc":{account_caller:[185,4,1,""],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.commands.default.comms.CmdCdestroy":{account_caller:[185,4,1,""],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.commands.default.comms.CmdChannel":{account_caller:[185,4,1,""],add_alias:[185,3,1,""],aliases:[185,4,1,""],ban_user:[185,3,1,""],boot_user:[185,3,1,""],channel_list_bans:[185,3,1,""],channel_list_who:[185,3,1,""],create_channel:[185,3,1,""],destroy_channel:[185,3,1,""],display_all_channels:[185,3,1,""],display_subbed_channels:[185,3,1,""],func:[185,3,1,""],get_channel_aliases:[185,3,1,""],get_channel_history:[185,3,1,""],help_category:[185,4,1,""],key:[185,4,1,""],list_channels:[185,3,1,""],lock_storage:[185,4,1,""],locks:[185,4,1,""],msg_channel:[185,3,1,""],mute_channel:[185,3,1,""],remove_alias:[185,3,1,""],search_channel:[185,3,1,""],search_index_entry:[185,4,1,""],set_desc:[185,3,1,""],set_lock:[185,3,1,""],sub_to_channel:[185,3,1,""],switch_options:[185,4,1,""],unban_user:[185,3,1,""],unmute_channel:[185,3,1,""],unset_lock:[185,3,1,""],unsub_from_channel:[185,3,1,""]},"evennia.commands.default.comms.CmdChannelCreate":{account_caller:[185,4,1,""],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.commands.default.comms.CmdClock":{account_caller:[185,4,1,""],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.commands.default.comms.CmdDelCom":{account_caller:[185,4,1,""],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.commands.default.comms.CmdGrapevine2Chan":{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,""],switch_options:[185,4,1,""]},"evennia.commands.default.comms.CmdIRC2Chan":{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,""],switch_options:[185,4,1,""]},"evennia.commands.default.comms.CmdIRCStatus":{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.commands.default.comms.CmdPage":{account_caller:[185,4,1,""],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,""],switch_options:[185,4,1,""]},"evennia.commands.default.comms.CmdRSS2Chan":{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,""],switch_options:[185,4,1,""]},"evennia.commands.default.general":{CmdAccess:[186,1,1,""],CmdDrop:[186,1,1,""],CmdGet:[186,1,1,""],CmdGive:[186,1,1,""],CmdHome:[186,1,1,""],CmdInventory:[186,1,1,""],CmdLook:[186,1,1,""],CmdNick:[186,1,1,""],CmdPose:[186,1,1,""],CmdSay:[186,1,1,""],CmdSetDesc:[186,1,1,""],CmdWhisper:[186,1,1,""]},"evennia.commands.default.general.CmdAccess":{aliases:[186,4,1,""],arg_regex:[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.commands.default.general.CmdDrop":{aliases:[186,4,1,""],arg_regex:[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.commands.default.general.CmdGet":{aliases:[186,4,1,""],arg_regex:[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.commands.default.general.CmdGive":{aliases:[186,4,1,""],arg_regex:[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,""],rhs_split:[186,4,1,""],search_index_entry:[186,4,1,""]},"evennia.commands.default.general.CmdHome":{aliases:[186,4,1,""],arg_regex:[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.commands.default.general.CmdInventory":{aliases:[186,4,1,""],arg_regex:[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.commands.default.general.CmdLook":{aliases:[186,4,1,""],arg_regex:[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.commands.default.general.CmdNick":{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,""],parse:[186,3,1,""],search_index_entry:[186,4,1,""],switch_options:[186,4,1,""]},"evennia.commands.default.general.CmdPose":{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,""],parse:[186,3,1,""],search_index_entry:[186,4,1,""]},"evennia.commands.default.general.CmdSay":{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.commands.default.general.CmdSetDesc":{aliases:[186,4,1,""],arg_regex:[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.commands.default.general.CmdWhisper":{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.commands.default.help":{CmdHelp:[187,1,1,""],CmdSetHelp:[187,1,1,""]},"evennia.commands.default.help.CmdHelp":{aliases:[187,4,1,""],arg_regex:[187,4,1,""],can_list_topic:[187,3,1,""],can_read_topic:[187,3,1,""],clickable_topics:[187,4,1,""],collect_topics:[187,3,1,""],do_search:[187,3,1,""],format_help_entry:[187,3,1,""],format_help_index:[187,3,1,""],func:[187,3,1,""],help_category:[187,4,1,""],help_more:[187,4,1,""],index_category_clr:[187,4,1,""],index_topic_clr:[187,4,1,""],index_type_separator_clr:[187,4,1,""],key:[187,4,1,""],lock_storage:[187,4,1,""],locks:[187,4,1,""],msg_help:[187,3,1,""],parse:[187,3,1,""],return_cmdset:[187,4,1,""],search_index_entry:[187,4,1,""],subtopic_separator_char:[187,4,1,""],suggestion_cutoff:[187,4,1,""],suggestion_maxnum:[187,4,1,""]},"evennia.commands.default.help.CmdSetHelp":{aliases:[187,4,1,""],arg_regex:[187,4,1,""],func:[187,3,1,""],help_category:[187,4,1,""],key:[187,4,1,""],lock_storage:[187,4,1,""],locks:[187,4,1,""],parse:[187,3,1,""],search_index_entry:[187,4,1,""],switch_options:[187,4,1,""]},"evennia.commands.default.muxcommand":{MuxAccountCommand:[188,1,1,""],MuxCommand:[188,1,1,""]},"evennia.commands.default.muxcommand.MuxAccountCommand":{account_caller:[188,4,1,""],aliases:[188,4,1,""],help_category:[188,4,1,""],key:[188,4,1,""],lock_storage:[188,4,1,""],search_index_entry:[188,4,1,""]},"evennia.commands.default.muxcommand.MuxCommand":{aliases:[188,4,1,""],at_post_cmd:[188,3,1,""],at_pre_cmd:[188,3,1,""],func:[188,3,1,""],get_command_info:[188,3,1,""],has_perm:[188,3,1,""],help_category:[188,4,1,""],key:[188,4,1,""],lock_storage:[188,4,1,""],parse:[188,3,1,""],search_index_entry:[188,4,1,""]},"evennia.commands.default.syscommands":{SystemMultimatch:[189,1,1,""],SystemNoInput:[189,1,1,""],SystemNoMatch:[189,1,1,""]},"evennia.commands.default.syscommands.SystemMultimatch":{aliases:[189,4,1,""],func:[189,3,1,""],help_category:[189,4,1,""],key:[189,4,1,""],lock_storage:[189,4,1,""],locks:[189,4,1,""],search_index_entry:[189,4,1,""]},"evennia.commands.default.syscommands.SystemNoInput":{aliases:[189,4,1,""],func:[189,3,1,""],help_category:[189,4,1,""],key:[189,4,1,""],lock_storage:[189,4,1,""],locks:[189,4,1,""],search_index_entry:[189,4,1,""]},"evennia.commands.default.syscommands.SystemNoMatch":{aliases:[189,4,1,""],func:[189,3,1,""],help_category:[189,4,1,""],key:[189,4,1,""],lock_storage:[189,4,1,""],locks:[189,4,1,""],search_index_entry:[189,4,1,""]},"evennia.commands.default.system":{CmdAbout:[190,1,1,""],CmdObjects:[190,1,1,""],CmdPy:[190,1,1,""],CmdReload:[190,1,1,""],CmdReset:[190,1,1,""],CmdScripts:[190,1,1,""],CmdServerLoad:[190,1,1,""],CmdService:[190,1,1,""],CmdShutdown:[190,1,1,""],CmdTasks:[190,1,1,""],CmdTime:[190,1,1,""]},"evennia.commands.default.system.CmdAbout":{aliases:[190,4,1,""],func:[190,3,1,""],help_category:[190,4,1,""],key:[190,4,1,""],lock_storage:[190,4,1,""],locks:[190,4,1,""],search_index_entry:[190,4,1,""]},"evennia.commands.default.system.CmdObjects":{aliases:[190,4,1,""],func:[190,3,1,""],help_category:[190,4,1,""],key:[190,4,1,""],lock_storage:[190,4,1,""],locks:[190,4,1,""],search_index_entry:[190,4,1,""]},"evennia.commands.default.system.CmdPy":{aliases:[190,4,1,""],func:[190,3,1,""],help_category:[190,4,1,""],key:[190,4,1,""],lock_storage:[190,4,1,""],locks:[190,4,1,""],search_index_entry:[190,4,1,""],switch_options:[190,4,1,""]},"evennia.commands.default.system.CmdReload":{aliases:[190,4,1,""],func:[190,3,1,""],help_category:[190,4,1,""],key:[190,4,1,""],lock_storage:[190,4,1,""],locks:[190,4,1,""],search_index_entry:[190,4,1,""]},"evennia.commands.default.system.CmdReset":{aliases:[190,4,1,""],func:[190,3,1,""],help_category:[190,4,1,""],key:[190,4,1,""],lock_storage:[190,4,1,""],locks:[190,4,1,""],search_index_entry:[190,4,1,""]},"evennia.commands.default.system.CmdScripts":{aliases:[190,4,1,""],excluded_typeclass_paths:[190,4,1,""],func:[190,3,1,""],help_category:[190,4,1,""],key:[190,4,1,""],lock_storage:[190,4,1,""],locks:[190,4,1,""],search_index_entry:[190,4,1,""],switch_mapping:[190,4,1,""],switch_options:[190,4,1,""]},"evennia.commands.default.system.CmdServerLoad":{aliases:[190,4,1,""],func:[190,3,1,""],help_category:[190,4,1,""],key:[190,4,1,""],lock_storage:[190,4,1,""],locks:[190,4,1,""],search_index_entry:[190,4,1,""],switch_options:[190,4,1,""]},"evennia.commands.default.system.CmdService":{aliases:[190,4,1,""],func:[190,3,1,""],help_category:[190,4,1,""],key:[190,4,1,""],lock_storage:[190,4,1,""],locks:[190,4,1,""],search_index_entry:[190,4,1,""],switch_options:[190,4,1,""]},"evennia.commands.default.system.CmdShutdown":{aliases:[190,4,1,""],func:[190,3,1,""],help_category:[190,4,1,""],key:[190,4,1,""],lock_storage:[190,4,1,""],locks:[190,4,1,""],search_index_entry:[190,4,1,""]},"evennia.commands.default.system.CmdTasks":{aliases:[190,4,1,""],coll_date_func:[190,3,1,""],do_task_action:[190,3,1,""],func:[190,3,1,""],help_category:[190,4,1,""],key:[190,4,1,""],lock_storage:[190,4,1,""],locks:[190,4,1,""],search_index_entry:[190,4,1,""],switch_options:[190,4,1,""]},"evennia.commands.default.system.CmdTime":{aliases:[190,4,1,""],func:[190,3,1,""],help_category:[190,4,1,""],key:[190,4,1,""],lock_storage:[190,4,1,""],locks:[190,4,1,""],search_index_entry:[190,4,1,""]},"evennia.commands.default.tests":{CmdInterrupt:[191,1,1,""],CommandTest:[191,1,1,""],TestAccount:[191,1,1,""],TestAdmin:[191,1,1,""],TestBatchProcess:[191,1,1,""],TestBuilding:[191,1,1,""],TestCmdTasks:[191,1,1,""],TestComms:[191,1,1,""],TestCommsChannel:[191,1,1,""],TestGeneral:[191,1,1,""],TestHelp:[191,1,1,""],TestInterruptCommand:[191,1,1,""],TestSystem:[191,1,1,""],TestSystemCommands:[191,1,1,""],TestUnconnectedCommand:[191,1,1,""],func_test_cmd_tasks:[191,5,1,""]},"evennia.commands.default.tests.CmdInterrupt":{aliases:[191,4,1,""],func:[191,3,1,""],help_category:[191,4,1,""],key:[191,4,1,""],lock_storage:[191,4,1,""],parse:[191,3,1,""],search_index_entry:[191,4,1,""]},"evennia.commands.default.tests.CommandTest":{call:[191,3,1,""]},"evennia.commands.default.tests.TestAccount":{test_char_create:[191,3,1,""],test_char_delete:[191,3,1,""],test_color_test:[191,3,1,""],test_ic:[191,3,1,""],test_ic__nonaccess:[191,3,1,""],test_ic__other_object:[191,3,1,""],test_ooc:[191,3,1,""],test_ooc_look:[191,3,1,""],test_option:[191,3,1,""],test_password:[191,3,1,""],test_quell:[191,3,1,""],test_quit:[191,3,1,""],test_sessions:[191,3,1,""],test_who:[191,3,1,""]},"evennia.commands.default.tests.TestAdmin":{test_ban:[191,3,1,""],test_emit:[191,3,1,""],test_force:[191,3,1,""],test_perm:[191,3,1,""],test_wall:[191,3,1,""]},"evennia.commands.default.tests.TestBatchProcess":{test_batch_commands:[191,3,1,""]},"evennia.commands.default.tests.TestBuilding":{test_attribute_commands:[191,3,1,""],test_copy:[191,3,1,""],test_create:[191,3,1,""],test_desc:[191,3,1,""],test_desc_default_to_room:[191,3,1,""],test_destroy:[191,3,1,""],test_destroy_sequence:[191,3,1,""],test_dig:[191,3,1,""],test_do_nested_lookup:[191,3,1,""],test_empty_desc:[191,3,1,""],test_examine:[191,3,1,""],test_exit_commands:[191,3,1,""],test_find:[191,3,1,""],test_list_cmdsets:[191,3,1,""],test_lock:[191,3,1,""],test_name:[191,3,1,""],test_nested_attribute_commands:[191,3,1,""],test_script:[191,3,1,""],test_set_home:[191,3,1,""],test_set_obj_alias:[191,3,1,""],test_spawn:[191,3,1,""],test_split_nested_attr:[191,3,1,""],test_tag:[191,3,1,""],test_teleport:[191,3,1,""],test_tunnel:[191,3,1,""],test_tunnel_exit_typeclass:[191,3,1,""],test_typeclass:[191,3,1,""]},"evennia.commands.default.tests.TestCmdTasks":{setUp:[191,3,1,""],tearDown:[191,3,1,""],test_active_task:[191,3,1,""],test_call:[191,3,1,""],test_cancel:[191,3,1,""],test_do_task:[191,3,1,""],test_func_name_manipulation:[191,3,1,""],test_misformed_command:[191,3,1,""],test_new_task_waiting_input:[191,3,1,""],test_no_input:[191,3,1,""],test_no_tasks:[191,3,1,""],test_pause_unpause:[191,3,1,""],test_persistent_task:[191,3,1,""],test_remove:[191,3,1,""],test_responce_of_yes:[191,3,1,""],test_task_complete_waiting_input:[191,3,1,""],test_wrong_func_name:[191,3,1,""]},"evennia.commands.default.tests.TestComms":{setUp:[191,3,1,""],test_all_com:[191,3,1,""],test_cboot:[191,3,1,""],test_cdesc:[191,3,1,""],test_cdestroy:[191,3,1,""],test_clock:[191,3,1,""],test_cwho:[191,3,1,""],test_page:[191,3,1,""],test_toggle_com:[191,3,1,""]},"evennia.commands.default.tests.TestCommsChannel":{setUp:[191,3,1,""],tearDown:[191,3,1,""],test_channel__alias__unalias:[191,3,1,""],test_channel__all:[191,3,1,""],test_channel__ban__unban:[191,3,1,""],test_channel__boot:[191,3,1,""],test_channel__create:[191,3,1,""],test_channel__desc:[191,3,1,""],test_channel__destroy:[191,3,1,""],test_channel__history:[191,3,1,""],test_channel__list:[191,3,1,""],test_channel__lock:[191,3,1,""],test_channel__msg:[191,3,1,""],test_channel__mute:[191,3,1,""],test_channel__noarg:[191,3,1,""],test_channel__sub:[191,3,1,""],test_channel__unlock:[191,3,1,""],test_channel__unmute:[191,3,1,""],test_channel__unsub:[191,3,1,""],test_channel__who:[191,3,1,""]},"evennia.commands.default.tests.TestGeneral":{test_access:[191,3,1,""],test_get_and_drop:[191,3,1,""],test_give:[191,3,1,""],test_home:[191,3,1,""],test_inventory:[191,3,1,""],test_look:[191,3,1,""],test_mux_command:[191,3,1,""],test_nick:[191,3,1,""],test_pose:[191,3,1,""],test_say:[191,3,1,""],test_whisper:[191,3,1,""]},"evennia.commands.default.tests.TestHelp":{maxDiff:[191,4,1,""],setUp:[191,3,1,""],tearDown:[191,3,1,""],test_help:[191,3,1,""],test_set_help:[191,3,1,""],test_subtopic_fetch:[191,4,1,""],test_subtopic_fetch_00_test:[191,3,1,""],test_subtopic_fetch_01_test_creating_extra_stuff:[191,3,1,""],test_subtopic_fetch_02_test_creating:[191,3,1,""],test_subtopic_fetch_03_test_extra:[191,3,1,""],test_subtopic_fetch_04_test_extra_subsubtopic:[191,3,1,""],test_subtopic_fetch_05_test_creating_extra_subsub:[191,3,1,""],test_subtopic_fetch_06_test_Something_else:[191,3,1,""],test_subtopic_fetch_07_test_More:[191,3,1,""],test_subtopic_fetch_08_test_More_Second_more:[191,3,1,""],test_subtopic_fetch_09_test_More_more:[191,3,1,""],test_subtopic_fetch_10_test_more_second_more_again:[191,3,1,""],test_subtopic_fetch_11_test_more_second_third:[191,3,1,""]},"evennia.commands.default.tests.TestInterruptCommand":{test_interrupt_command:[191,3,1,""]},"evennia.commands.default.tests.TestSystem":{test_about:[191,3,1,""],test_objects:[191,3,1,""],test_py:[191,3,1,""],test_scripts:[191,3,1,""],test_server_load:[191,3,1,""]},"evennia.commands.default.tests.TestSystemCommands":{test_multimatch:[191,3,1,""],test_simple_defaults:[191,3,1,""]},"evennia.commands.default.tests.TestUnconnectedCommand":{test_info_command:[191,3,1,""]},"evennia.commands.default.unloggedin":{CmdUnconnectedConnect:[192,1,1,""],CmdUnconnectedCreate:[192,1,1,""],CmdUnconnectedHelp:[192,1,1,""],CmdUnconnectedLook:[192,1,1,""],CmdUnconnectedQuit:[192,1,1,""]},"evennia.commands.default.unloggedin.CmdUnconnectedConnect":{aliases:[192,4,1,""],arg_regex:[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.commands.default.unloggedin.CmdUnconnectedCreate":{aliases:[192,4,1,""],arg_regex:[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.commands.default.unloggedin.CmdUnconnectedHelp":{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.commands.default.unloggedin.CmdUnconnectedLook":{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.commands.default.unloggedin.CmdUnconnectedQuit":{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.comms":{comms:[194,0,0,"-"],managers:[195,0,0,"-"],models:[196,0,0,"-"]},"evennia.comms.comms":{DefaultChannel:[194,1,1,""]},"evennia.comms.comms.DefaultChannel":{"delete":[194,3,1,""],DoesNotExist:[194,2,1,""],MultipleObjectsReturned:[194,2,1,""],access:[194,3,1,""],add_user_channel_alias:[194,3,1,""],at_channel_creation:[194,3,1,""],at_first_save:[194,3,1,""],at_init:[194,3,1,""],at_post_msg:[194,3,1,""],at_pre_msg:[194,3,1,""],ban:[194,3,1,""],banlist:[194,3,1,""],basetype_setup:[194,3,1,""],channel_msg_nick_pattern:[194,4,1,""],channel_msg_nick_replacement:[194,4,1,""],channel_prefix:[194,3,1,""],channel_prefix_string:[194,4,1,""],connect:[194,3,1,""],create:[194,3,1,""],disconnect:[194,3,1,""],distribute_message:[194,3,1,""],format_external:[194,3,1,""],format_message:[194,3,1,""],format_senders:[194,3,1,""],get_absolute_url:[194,3,1,""],get_log_filename:[194,3,1,""],has_connection:[194,3,1,""],log_file:[194,4,1,""],message_transform:[194,3,1,""],msg:[194,3,1,""],mute:[194,3,1,""],mutelist:[194,3,1,""],objects:[194,4,1,""],path:[194,4,1,""],pose_transform:[194,3,1,""],post_join_channel:[194,3,1,""],post_leave_channel:[194,3,1,""],post_send_message:[194,3,1,""],pre_join_channel:[194,3,1,""],pre_leave_channel:[194,3,1,""],pre_send_message:[194,3,1,""],remove_user_channel_alias:[194,3,1,""],send_to_online_only:[194,4,1,""],set_log_filename:[194,3,1,""],typename:[194,4,1,""],unban:[194,3,1,""],unmute:[194,3,1,""],web_get_admin_url:[194,3,1,""],web_get_create_url:[194,3,1,""],web_get_delete_url:[194,3,1,""],web_get_detail_url:[194,3,1,""],web_get_update_url:[194,3,1,""],wholist:[194,3,1,""]},"evennia.comms.managers":{ChannelDBManager:[195,1,1,""],ChannelManager:[195,1,1,""],CommError:[195,2,1,""],MsgManager:[195,1,1,""],identify_object:[195,5,1,""],to_object:[195,5,1,""]},"evennia.comms.managers.ChannelDBManager":{channel_search:[195,3,1,""],get_all_channels:[195,3,1,""],get_channel:[195,3,1,""],get_subscriptions:[195,3,1,""],search_channel:[195,3,1,""]},"evennia.comms.managers.MsgManager":{get_message_by_id:[195,3,1,""],get_messages_by_receiver:[195,3,1,""],get_messages_by_sender:[195,3,1,""],identify_object:[195,3,1,""],message_search:[195,3,1,""],search_message:[195,3,1,""]},"evennia.comms.models":{ChannelDB:[196,1,1,""],Msg:[196,1,1,""],TempMsg:[196,1,1,""]},"evennia.comms.models.ChannelDB":{DoesNotExist:[196,2,1,""],MultipleObjectsReturned:[196,2,1,""],db_account_subscriptions:[196,4,1,""],db_attributes:[196,4,1,""],db_object_subscriptions:[196,4,1,""],db_tags:[196,4,1,""],get_next_by_db_date_created:[196,3,1,""],get_previous_by_db_date_created:[196,3,1,""],id:[196,4,1,""],objects:[196,4,1,""],path:[196,4,1,""],subscriptions:[196,4,1,""],typename:[196,4,1,""]},"evennia.comms.models.Msg":{DoesNotExist:[196,2,1,""],MultipleObjectsReturned:[196,2,1,""],access:[196,3,1,""],date_created:[196,3,1,""],db_date_created:[196,4,1,""],db_header:[196,4,1,""],db_hide_from_accounts:[196,4,1,""],db_hide_from_objects:[196,4,1,""],db_lock_storage:[196,4,1,""],db_message:[196,4,1,""],db_receiver_external:[196,4,1,""],db_receivers_accounts:[196,4,1,""],db_receivers_objects:[196,4,1,""],db_receivers_scripts:[196,4,1,""],db_sender_accounts:[196,4,1,""],db_sender_external:[196,4,1,""],db_sender_objects:[196,4,1,""],db_sender_scripts:[196,4,1,""],db_tags:[196,4,1,""],get_next_by_db_date_created:[196,3,1,""],get_previous_by_db_date_created:[196,3,1,""],header:[196,3,1,""],hide_from:[196,3,1,""],id:[196,4,1,""],lock_storage:[196,3,1,""],locks:[196,4,1,""],message:[196,3,1,""],objects:[196,4,1,""],path:[196,4,1,""],receiver_external:[196,3,1,""],receivers:[196,3,1,""],remove_receiver:[196,3,1,""],remove_sender:[196,3,1,""],sender_external:[196,3,1,""],senders:[196,3,1,""],tags:[196,4,1,""],typename:[196,4,1,""]},"evennia.comms.models.TempMsg":{__init__:[196,3,1,""],access:[196,3,1,""],locks:[196,4,1,""],remove_receiver:[196,3,1,""],remove_sender:[196,3,1,""]},"evennia.contrib":{awsstorage:[198,0,0,"-"],barter:[201,0,0,"-"],building_menu:[202,0,0,"-"],chargen:[203,0,0,"-"],clothing:[204,0,0,"-"],color_markups:[205,0,0,"-"],crafting:[206,0,0,"-"],custom_gametime:[210,0,0,"-"],dice:[211,0,0,"-"],email_login:[212,0,0,"-"],evscaperoom:[213,0,0,"-"],extended_room:[222,0,0,"-"],fieldfill:[223,0,0,"-"],gendersub:[224,0,0,"-"],health_bar:[225,0,0,"-"],ingame_python:[226,0,0,"-"],mail:[234,0,0,"-"],multidescer:[237,0,0,"-"],puzzles:[238,0,0,"-"],random_string_generator:[239,0,0,"-"],rplanguage:[240,0,0,"-"],rpsystem:[241,0,0,"-"],security:[242,0,0,"-"],simpledoor:[247,0,0,"-"],slow_exit:[248,0,0,"-"],talking_npc:[249,0,0,"-"],test_traits:[250,0,0,"-"],traits:[251,0,0,"-"],tree_select:[252,0,0,"-"],turnbattle:[253,0,0,"-"],tutorial_examples:[259,0,0,"-"],tutorial_world:[265,0,0,"-"],unixcommand:[270,0,0,"-"],wilderness:[271,0,0,"-"],xyzgrid:[272,0,0,"-"]},"evennia.contrib.awsstorage":{aws_s3_cdn:[199,0,0,"-"],tests:[200,0,0,"-"]},"evennia.contrib.awsstorage.aws_s3_cdn":{S3Boto3Storage:[199,1,1,""],S3Boto3StorageFile:[199,1,1,""],check_location:[199,5,1,""],get_available_overwrite_name:[199,5,1,""],lookup_env:[199,5,1,""],safe_join:[199,5,1,""],setting:[199,5,1,""]},"evennia.contrib.awsstorage.aws_s3_cdn.S3Boto3Storage":{"delete":[199,3,1,""],__init__:[199,3,1,""],access_key:[199,4,1,""],access_key_names:[199,4,1,""],addressing_style:[199,4,1,""],auto_create_bucket:[199,4,1,""],bucket:[199,3,1,""],bucket_acl:[199,4,1,""],bucket_name:[199,4,1,""],config:[199,4,1,""],connection:[199,3,1,""],custom_domain:[199,4,1,""],deconstruct:[199,3,1,""],default_acl:[199,4,1,""],default_content_type:[199,4,1,""],encryption:[199,4,1,""],endpoint_url:[199,4,1,""],entries:[199,3,1,""],exists:[199,3,1,""],file_name_charset:[199,4,1,""],file_overwrite:[199,4,1,""],get_available_name:[199,3,1,""],get_modified_time:[199,3,1,""],get_object_parameters:[199,3,1,""],gzip:[199,4,1,""],gzip_content_types:[199,4,1,""],listdir:[199,3,1,""],location:[199,4,1,""],max_memory_size:[199,4,1,""],modified_time:[199,3,1,""],object_parameters:[199,4,1,""],preload_metadata:[199,4,1,""],proxies:[199,4,1,""],querystring_auth:[199,4,1,""],querystring_expire:[199,4,1,""],reduced_redundancy:[199,4,1,""],region_name:[199,4,1,""],secret_key:[199,4,1,""],secret_key_names:[199,4,1,""],secure_urls:[199,4,1,""],security_token:[199,4,1,""],security_token_names:[199,4,1,""],signature_version:[199,4,1,""],size:[199,3,1,""],url:[199,3,1,""],url_protocol:[199,4,1,""],use_ssl:[199,4,1,""],verify:[199,4,1,""]},"evennia.contrib.awsstorage.aws_s3_cdn.S3Boto3StorageFile":{__init__:[199,3,1,""],buffer_size:[199,4,1,""],close:[199,3,1,""],deconstruct:[199,3,1,""],file:[199,3,1,""],read:[199,3,1,""],readline:[199,3,1,""],size:[199,3,1,""],write:[199,3,1,""]},"evennia.contrib.awsstorage.tests":{S3Boto3StorageTests:[200,1,1,""],S3Boto3TestCase:[200,1,1,""]},"evennia.contrib.awsstorage.tests.S3Boto3StorageTests":{test_auto_creating_bucket:[200,3,1,""],test_auto_creating_bucket_with_acl:[200,3,1,""],test_clean_name:[200,3,1,""],test_clean_name_normalize:[200,3,1,""],test_clean_name_trailing_slash:[200,3,1,""],test_clean_name_windows:[200,3,1,""],test_compress_content_len:[200,3,1,""],test_connection_threading:[200,3,1,""],test_content_type:[200,3,1,""],test_generated_url_is_encoded:[200,3,1,""],test_location_leading_slash:[200,3,1,""],test_override_class_variable:[200,3,1,""],test_override_init_argument:[200,3,1,""],test_pickle_with_bucket:[200,3,1,""],test_pickle_without_bucket:[200,3,1,""],test_special_characters:[200,3,1,""],test_storage_delete:[200,3,1,""],test_storage_exists:[200,3,1,""],test_storage_exists_doesnt_create_bucket:[200,3,1,""],test_storage_exists_false:[200,3,1,""],test_storage_listdir_base:[200,3,1,""],test_storage_listdir_subdir:[200,3,1,""],test_storage_mtime:[200,3,1,""],test_storage_open_no_overwrite_existing:[200,3,1,""],test_storage_open_no_write:[200,3,1,""],test_storage_open_write:[200,3,1,""],test_storage_save:[200,3,1,""],test_storage_save_gzip:[200,3,1,""],test_storage_save_gzip_twice:[200,3,1,""],test_storage_save_gzipped:[200,3,1,""],test_storage_save_with_acl:[200,3,1,""],test_storage_size:[200,3,1,""],test_storage_url:[200,3,1,""],test_storage_url_slashes:[200,3,1,""],test_storage_write_beyond_buffer_size:[200,3,1,""],test_strip_signing_parameters:[200,3,1,""]},"evennia.contrib.awsstorage.tests.S3Boto3TestCase":{setUp:[200,3,1,""]},"evennia.contrib.barter":{CmdAccept:[201,1,1,""],CmdDecline:[201,1,1,""],CmdEvaluate:[201,1,1,""],CmdFinish:[201,1,1,""],CmdOffer:[201,1,1,""],CmdStatus:[201,1,1,""],CmdTrade:[201,1,1,""],CmdTradeBase:[201,1,1,""],CmdTradeHelp:[201,1,1,""],CmdsetTrade:[201,1,1,""],TradeHandler:[201,1,1,""],TradeTimeout:[201,1,1,""]},"evennia.contrib.barter.CmdAccept":{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.barter.CmdDecline":{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.barter.CmdEvaluate":{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.barter.CmdFinish":{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.barter.CmdOffer":{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.barter.CmdStatus":{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.barter.CmdTrade":{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.barter.CmdTradeBase":{aliases:[201,4,1,""],help_category:[201,4,1,""],key:[201,4,1,""],lock_storage:[201,4,1,""],parse:[201,3,1,""],search_index_entry:[201,4,1,""]},"evennia.contrib.barter.CmdTradeHelp":{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.barter.CmdsetTrade":{at_cmdset_creation:[201,3,1,""],key:[201,4,1,""],path:[201,4,1,""]},"evennia.contrib.barter.TradeHandler":{__init__:[201,3,1,""],accept:[201,3,1,""],decline:[201,3,1,""],finish:[201,3,1,""],get_other:[201,3,1,""],join:[201,3,1,""],list:[201,3,1,""],msg_other:[201,3,1,""],offer:[201,3,1,""],search:[201,3,1,""],unjoin:[201,3,1,""]},"evennia.contrib.barter.TradeTimeout":{DoesNotExist:[201,2,1,""],MultipleObjectsReturned:[201,2,1,""],at_repeat:[201,3,1,""],at_script_creation:[201,3,1,""],is_valid:[201,3,1,""],path:[201,4,1,""],typename:[201,4,1,""]},"evennia.contrib.building_menu":{BuildingMenu:[202,1,1,""],BuildingMenuCmdSet:[202,1,1,""],Choice:[202,1,1,""],CmdNoInput:[202,1,1,""],CmdNoMatch:[202,1,1,""],GenericBuildingCmd:[202,1,1,""],GenericBuildingMenu:[202,1,1,""],menu_edit:[202,5,1,""],menu_quit:[202,5,1,""],menu_setattr:[202,5,1,""]},"evennia.contrib.building_menu.BuildingMenu":{__init__:[202,3,1,""],add_choice:[202,3,1,""],add_choice_edit:[202,3,1,""],add_choice_quit:[202,3,1,""],close:[202,3,1,""],current_choice:[202,3,1,""],display:[202,3,1,""],display_choice:[202,3,1,""],display_title:[202,3,1,""],init:[202,3,1,""],joker_key:[202,4,1,""],keys_go_back:[202,4,1,""],min_shortcut:[202,4,1,""],move:[202,3,1,""],open:[202,3,1,""],open_parent_menu:[202,3,1,""],open_submenu:[202,3,1,""],relevant_choices:[202,3,1,""],restore:[202,3,1,""],sep_keys:[202,4,1,""]},"evennia.contrib.building_menu.BuildingMenuCmdSet":{at_cmdset_creation:[202,3,1,""],key:[202,4,1,""],path:[202,4,1,""],priority:[202,4,1,""]},"evennia.contrib.building_menu.Choice":{__init__:[202,3,1,""],enter:[202,3,1,""],format_text:[202,3,1,""],keys:[202,3,1,""],leave:[202,3,1,""],nomatch:[202,3,1,""]},"evennia.contrib.building_menu.CmdNoInput":{__init__:[202,3,1,""],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.building_menu.CmdNoMatch":{__init__:[202,3,1,""],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.building_menu.GenericBuildingCmd":{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.building_menu.GenericBuildingMenu":{init:[202,3,1,""]},"evennia.contrib.chargen":{CmdOOCCharacterCreate:[203,1,1,""],CmdOOCLook:[203,1,1,""],OOCCmdSetCharGen:[203,1,1,""]},"evennia.contrib.chargen.CmdOOCCharacterCreate":{aliases:[203,4,1,""],func:[203,3,1,""],help_category:[203,4,1,""],key:[203,4,1,""],lock_storage:[203,4,1,""],locks:[203,4,1,""],search_index_entry:[203,4,1,""]},"evennia.contrib.chargen.CmdOOCLook":{aliases:[203,4,1,""],func:[203,3,1,""],help_category:[203,4,1,""],key:[203,4,1,""],lock_storage:[203,4,1,""],locks:[203,4,1,""],search_index_entry:[203,4,1,""]},"evennia.contrib.chargen.OOCCmdSetCharGen":{at_cmdset_creation:[203,3,1,""],path:[203,4,1,""]},"evennia.contrib.clothing":{ClothedCharacter:[204,1,1,""],ClothedCharacterCmdSet:[204,1,1,""],Clothing:[204,1,1,""],CmdCover:[204,1,1,""],CmdDrop:[204,1,1,""],CmdGive:[204,1,1,""],CmdInventory:[204,1,1,""],CmdRemove:[204,1,1,""],CmdUncover:[204,1,1,""],CmdWear:[204,1,1,""],clothing_type_count:[204,5,1,""],get_worn_clothes:[204,5,1,""],order_clothes_list:[204,5,1,""],single_type_count:[204,5,1,""]},"evennia.contrib.clothing.ClothedCharacter":{DoesNotExist:[204,2,1,""],MultipleObjectsReturned:[204,2,1,""],path:[204,4,1,""],return_appearance:[204,3,1,""],typename:[204,4,1,""]},"evennia.contrib.clothing.ClothedCharacterCmdSet":{at_cmdset_creation:[204,3,1,""],key:[204,4,1,""],path:[204,4,1,""]},"evennia.contrib.clothing.Clothing":{DoesNotExist:[204,2,1,""],MultipleObjectsReturned:[204,2,1,""],at_get:[204,3,1,""],path:[204,4,1,""],remove:[204,3,1,""],typename:[204,4,1,""],wear:[204,3,1,""]},"evennia.contrib.clothing.CmdCover":{aliases:[204,4,1,""],func:[204,3,1,""],help_category:[204,4,1,""],key:[204,4,1,""],lock_storage:[204,4,1,""],search_index_entry:[204,4,1,""]},"evennia.contrib.clothing.CmdDrop":{aliases:[204,4,1,""],arg_regex:[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.clothing.CmdGive":{aliases:[204,4,1,""],arg_regex:[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.clothing.CmdInventory":{aliases:[204,4,1,""],arg_regex:[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.clothing.CmdRemove":{aliases:[204,4,1,""],func:[204,3,1,""],help_category:[204,4,1,""],key:[204,4,1,""],lock_storage:[204,4,1,""],search_index_entry:[204,4,1,""]},"evennia.contrib.clothing.CmdUncover":{aliases:[204,4,1,""],func:[204,3,1,""],help_category:[204,4,1,""],key:[204,4,1,""],lock_storage:[204,4,1,""],search_index_entry:[204,4,1,""]},"evennia.contrib.clothing.CmdWear":{aliases:[204,4,1,""],func:[204,3,1,""],help_category:[204,4,1,""],key:[204,4,1,""],lock_storage:[204,4,1,""],search_index_entry:[204,4,1,""]},"evennia.contrib.crafting":{crafting:[207,0,0,"-"],example_recipes:[208,0,0,"-"],tests:[209,0,0,"-"]},"evennia.contrib.crafting.crafting":{CmdCraft:[207,1,1,""],CraftingCmdSet:[207,1,1,""],CraftingError:[207,2,1,""],CraftingRecipe:[207,1,1,""],CraftingRecipeBase:[207,1,1,""],CraftingValidationError:[207,2,1,""],craft:[207,5,1,""]},"evennia.contrib.crafting.crafting.CmdCraft":{aliases:[207,4,1,""],arg_regex:[207,4,1,""],func:[207,3,1,""],help_category:[207,4,1,""],key:[207,4,1,""],lock_storage:[207,4,1,""],locks:[207,4,1,""],parse:[207,3,1,""],search_index_entry:[207,4,1,""]},"evennia.contrib.crafting.crafting.CraftingCmdSet":{at_cmdset_creation:[207,3,1,""],key:[207,4,1,""],path:[207,4,1,""]},"evennia.contrib.crafting.crafting.CraftingRecipe":{__init__:[207,3,1,""],consumable_names:[207,4,1,""],consumable_tag_category:[207,4,1,""],consumable_tags:[207,4,1,""],consume_on_fail:[207,4,1,""],do_craft:[207,3,1,""],error_consumable_excess_message:[207,4,1,""],error_consumable_missing_message:[207,4,1,""],error_consumable_order_message:[207,4,1,""],error_tool_excess_message:[207,4,1,""],error_tool_missing_message:[207,4,1,""],error_tool_order_message:[207,4,1,""],exact_consumable_order:[207,4,1,""],exact_consumables:[207,4,1,""],exact_tool_order:[207,4,1,""],exact_tools:[207,4,1,""],failure_message:[207,4,1,""],name:[207,4,1,""],output_names:[207,4,1,""],output_prototypes:[207,4,1,""],post_craft:[207,3,1,""],pre_craft:[207,3,1,""],seed:[207,3,1,""],success_message:[207,4,1,""],tool_names:[207,4,1,""],tool_tag_category:[207,4,1,""],tool_tags:[207,4,1,""]},"evennia.contrib.crafting.crafting.CraftingRecipeBase":{__init__:[207,3,1,""],allow_reuse:[207,4,1,""],craft:[207,3,1,""],do_craft:[207,3,1,""],msg:[207,3,1,""],name:[207,4,1,""],post_craft:[207,3,1,""],pre_craft:[207,3,1,""]},"evennia.contrib.crafting.example_recipes":{CrucibleSteelRecipe:[208,1,1,""],LeatherRecipe:[208,1,1,""],OakBarkRecipe:[208,1,1,""],PigIronRecipe:[208,1,1,""],RawhideRecipe:[208,1,1,""],SwordBladeRecipe:[208,1,1,""],SwordGuardRecipe:[208,1,1,""],SwordHandleRecipe:[208,1,1,""],SwordPommelRecipe:[208,1,1,""],SwordRecipe:[208,1,1,""],random:[208,5,1,""]},"evennia.contrib.crafting.example_recipes.CrucibleSteelRecipe":{consumable_tags:[208,4,1,""],name:[208,4,1,""],output_prototypes:[208,4,1,""],tool_tags:[208,4,1,""]},"evennia.contrib.crafting.example_recipes.LeatherRecipe":{consumable_tags:[208,4,1,""],name:[208,4,1,""],output_prototypes:[208,4,1,""],tool_tags:[208,4,1,""]},"evennia.contrib.crafting.example_recipes.OakBarkRecipe":{consumable_tags:[208,4,1,""],name:[208,4,1,""],output_prototypes:[208,4,1,""],tool_tags:[208,4,1,""]},"evennia.contrib.crafting.example_recipes.PigIronRecipe":{consumable_tags:[208,4,1,""],name:[208,4,1,""],output_prototypes:[208,4,1,""],tool_tags:[208,4,1,""]},"evennia.contrib.crafting.example_recipes.RawhideRecipe":{consumable_tags:[208,4,1,""],name:[208,4,1,""],output_prototypes:[208,4,1,""],tool_tags:[208,4,1,""]},"evennia.contrib.crafting.example_recipes.SwordBladeRecipe":{consumable_tags:[208,4,1,""],name:[208,4,1,""],output_prototypes:[208,4,1,""],tool_tags:[208,4,1,""]},"evennia.contrib.crafting.example_recipes.SwordGuardRecipe":{consumable_tags:[208,4,1,""],name:[208,4,1,""],output_prototypes:[208,4,1,""],tool_tags:[208,4,1,""]},"evennia.contrib.crafting.example_recipes.SwordHandleRecipe":{consumable_tags:[208,4,1,""],name:[208,4,1,""],output_prototypes:[208,4,1,""],tool_tags:[208,4,1,""]},"evennia.contrib.crafting.example_recipes.SwordPommelRecipe":{consumable_tags:[208,4,1,""],name:[208,4,1,""],output_prototypes:[208,4,1,""],tool_tags:[208,4,1,""]},"evennia.contrib.crafting.example_recipes.SwordRecipe":{consumable_tags:[208,4,1,""],exact_consumable_order:[208,4,1,""],name:[208,4,1,""],output_prototypes:[208,4,1,""],tool_tags:[208,4,1,""]},"evennia.contrib.crafting.tests":{TestCraftCommand:[209,1,1,""],TestCraftSword:[209,1,1,""],TestCraftUtils:[209,1,1,""],TestCraftingRecipe:[209,1,1,""],TestCraftingRecipeBase:[209,1,1,""]},"evennia.contrib.crafting.tests.TestCraftCommand":{setUp:[209,3,1,""],test_craft__nocons__failure:[209,3,1,""],test_craft__notools__failure:[209,3,1,""],test_craft__success:[209,3,1,""]},"evennia.contrib.crafting.tests.TestCraftSword":{setUp:[209,3,1,""],test_craft_sword:[209,3,1,""]},"evennia.contrib.crafting.tests.TestCraftUtils":{maxDiff:[209,4,1,""],test_load_recipes:[209,3,1,""]},"evennia.contrib.crafting.tests.TestCraftingRecipe":{maxDiff:[209,4,1,""],setUp:[209,3,1,""],tearDown:[209,3,1,""],test_craft__success:[209,3,1,""],test_craft_cons_excess__fail:[209,3,1,""],test_craft_cons_excess__sucess:[209,3,1,""],test_craft_cons_order__fail:[209,3,1,""],test_craft_missing_cons__always_consume__fail:[209,3,1,""],test_craft_missing_cons__fail:[209,3,1,""],test_craft_missing_tool__fail:[209,3,1,""],test_craft_tool_excess__fail:[209,3,1,""],test_craft_tool_excess__sucess:[209,3,1,""],test_craft_tool_order__fail:[209,3,1,""],test_craft_wrong_tool__fail:[209,3,1,""],test_error_format:[209,3,1,""],test_seed__success:[209,3,1,""]},"evennia.contrib.crafting.tests.TestCraftingRecipeBase":{setUp:[209,3,1,""],test_craft_hook__fail:[209,3,1,""],test_craft_hook__succeed:[209,3,1,""],test_msg:[209,3,1,""],test_pre_craft:[209,3,1,""],test_pre_craft_fail:[209,3,1,""]},"evennia.contrib.custom_gametime":{GametimeScript:[210,1,1,""],custom_gametime:[210,5,1,""],gametime_to_realtime:[210,5,1,""],real_seconds_until:[210,5,1,""],realtime_to_gametime:[210,5,1,""],schedule:[210,5,1,""],time_to_tuple:[210,5,1,""]},"evennia.contrib.custom_gametime.GametimeScript":{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.dice":{CmdDice:[211,1,1,""],DiceCmdSet:[211,1,1,""],roll_dice:[211,5,1,""]},"evennia.contrib.dice.CmdDice":{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.dice.DiceCmdSet":{at_cmdset_creation:[211,3,1,""],path:[211,4,1,""]},"evennia.contrib.email_login":{CmdUnconnectedConnect:[212,1,1,""],CmdUnconnectedCreate:[212,1,1,""],CmdUnconnectedHelp:[212,1,1,""],CmdUnconnectedLook:[212,1,1,""],CmdUnconnectedQuit:[212,1,1,""]},"evennia.contrib.email_login.CmdUnconnectedConnect":{aliases:[212,4,1,""],func:[212,3,1,""],help_category:[212,4,1,""],key:[212,4,1,""],lock_storage:[212,4,1,""],locks:[212,4,1,""],search_index_entry:[212,4,1,""]},"evennia.contrib.email_login.CmdUnconnectedCreate":{aliases:[212,4,1,""],func:[212,3,1,""],help_category:[212,4,1,""],key:[212,4,1,""],lock_storage:[212,4,1,""],locks:[212,4,1,""],parse:[212,3,1,""],search_index_entry:[212,4,1,""]},"evennia.contrib.email_login.CmdUnconnectedHelp":{aliases:[212,4,1,""],func:[212,3,1,""],help_category:[212,4,1,""],key:[212,4,1,""],lock_storage:[212,4,1,""],locks:[212,4,1,""],search_index_entry:[212,4,1,""]},"evennia.contrib.email_login.CmdUnconnectedLook":{aliases:[212,4,1,""],func:[212,3,1,""],help_category:[212,4,1,""],key:[212,4,1,""],lock_storage:[212,4,1,""],locks:[212,4,1,""],search_index_entry:[212,4,1,""]},"evennia.contrib.email_login.CmdUnconnectedQuit":{aliases:[212,4,1,""],func:[212,3,1,""],help_category:[212,4,1,""],key:[212,4,1,""],lock_storage:[212,4,1,""],locks:[212,4,1,""],search_index_entry:[212,4,1,""]},"evennia.contrib.evscaperoom":{commands:[214,0,0,"-"],menu:[215,0,0,"-"],objects:[216,0,0,"-"],room:[217,0,0,"-"],state:[219,0,0,"-"],tests:[220,0,0,"-"],utils:[221,0,0,"-"]},"evennia.contrib.evscaperoom.commands":{CmdCreateObj:[214,1,1,""],CmdEmote:[214,1,1,""],CmdEvscapeRoom:[214,1,1,""],CmdEvscapeRoomStart:[214,1,1,""],CmdFocus:[214,1,1,""],CmdFocusInteraction:[214,1,1,""],CmdGet:[214,1,1,""],CmdGiveUp:[214,1,1,""],CmdHelp:[214,1,1,""],CmdJumpState:[214,1,1,""],CmdLook:[214,1,1,""],CmdOptions:[214,1,1,""],CmdRerouter:[214,1,1,""],CmdSetEvScapeRoom:[214,1,1,""],CmdSetFlag:[214,1,1,""],CmdSpeak:[214,1,1,""],CmdStand:[214,1,1,""],CmdWho:[214,1,1,""]},"evennia.contrib.evscaperoom.commands.CmdCreateObj":{aliases:[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,""],obj1_search:[214,4,1,""],obj2_search:[214,4,1,""],search_index_entry:[214,4,1,""]},"evennia.contrib.evscaperoom.commands.CmdEmote":{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,""],room_replace:[214,3,1,""],search_index_entry:[214,4,1,""],you_replace:[214,3,1,""]},"evennia.contrib.evscaperoom.commands.CmdEvscapeRoom":{aliases:[214,4,1,""],arg_regex:[214,4,1,""],focus:[214,3,1,""],help_category:[214,4,1,""],key:[214,4,1,""],lock_storage:[214,4,1,""],obj1_search:[214,4,1,""],obj2_search:[214,4,1,""],parse:[214,3,1,""],search_index_entry:[214,4,1,""]},"evennia.contrib.evscaperoom.commands.CmdEvscapeRoomStart":{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.evscaperoom.commands.CmdFocus":{aliases:[214,4,1,""],func:[214,3,1,""],help_category:[214,4,1,""],key:[214,4,1,""],lock_storage:[214,4,1,""],obj1_search:[214,4,1,""],search_index_entry:[214,4,1,""]},"evennia.contrib.evscaperoom.commands.CmdFocusInteraction":{aliases:[214,4,1,""],func:[214,3,1,""],help_category:[214,4,1,""],key:[214,4,1,""],lock_storage:[214,4,1,""],obj1_search:[214,4,1,""],obj2_search:[214,4,1,""],parse:[214,3,1,""],search_index_entry:[214,4,1,""]},"evennia.contrib.evscaperoom.commands.CmdGet":{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.evscaperoom.commands.CmdGiveUp":{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.evscaperoom.commands.CmdHelp":{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.evscaperoom.commands.CmdJumpState":{aliases:[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,""],obj1_search:[214,4,1,""],obj2_search:[214,4,1,""],search_index_entry:[214,4,1,""]},"evennia.contrib.evscaperoom.commands.CmdLook":{aliases:[214,4,1,""],func:[214,3,1,""],help_category:[214,4,1,""],key:[214,4,1,""],lock_storage:[214,4,1,""],obj1_search:[214,4,1,""],obj2_search:[214,4,1,""],search_index_entry:[214,4,1,""]},"evennia.contrib.evscaperoom.commands.CmdOptions":{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.evscaperoom.commands.CmdRerouter":{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.evscaperoom.commands.CmdSetEvScapeRoom":{at_cmdset_creation:[214,3,1,""],path:[214,4,1,""],priority:[214,4,1,""]},"evennia.contrib.evscaperoom.commands.CmdSetFlag":{aliases:[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,""],obj1_search:[214,4,1,""],obj2_search:[214,4,1,""],search_index_entry:[214,4,1,""]},"evennia.contrib.evscaperoom.commands.CmdSpeak":{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,""],search_index_entry:[214,4,1,""]},"evennia.contrib.evscaperoom.commands.CmdStand":{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.evscaperoom.commands.CmdWho":{aliases:[214,4,1,""],func:[214,3,1,""],help_category:[214,4,1,""],key:[214,4,1,""],lock_storage:[214,4,1,""],obj1_search:[214,4,1,""],obj2_search:[214,4,1,""],search_index_entry:[214,4,1,""]},"evennia.contrib.evscaperoom.menu":{EvscaperoomMenu:[215,1,1,""],OptionsMenu:[215,1,1,""],node_create_room:[215,5,1,""],node_join_room:[215,5,1,""],node_options:[215,5,1,""],node_quit:[215,5,1,""],node_set_desc:[215,5,1,""],run_evscaperoom_menu:[215,5,1,""],run_option_menu:[215,5,1,""]},"evennia.contrib.evscaperoom.menu.EvscaperoomMenu":{node_border_char:[215,4,1,""],nodetext_formatter:[215,3,1,""],options_formatter:[215,3,1,""]},"evennia.contrib.evscaperoom.menu.OptionsMenu":{node_formatter:[215,3,1,""]},"evennia.contrib.evscaperoom.objects":{BaseApplicable:[216,1,1,""],BaseConsumable:[216,1,1,""],BasePositionable:[216,1,1,""],Climbable:[216,1,1,""],CodeInput:[216,1,1,""],Combinable:[216,1,1,""],Drinkable:[216,1,1,""],Edible:[216,1,1,""],EvscaperoomObject:[216,1,1,""],Feelable:[216,1,1,""],HasButtons:[216,1,1,""],IndexReadable:[216,1,1,""],Insertable:[216,1,1,""],Kneelable:[216,1,1,""],Liable:[216,1,1,""],Listenable:[216,1,1,""],Mixable:[216,1,1,""],Movable:[216,1,1,""],Openable:[216,1,1,""],Positionable:[216,1,1,""],Readable:[216,1,1,""],Rotatable:[216,1,1,""],Sittable:[216,1,1,""],Smellable:[216,1,1,""],Usable:[216,1,1,""]},"evennia.contrib.evscaperoom.objects.BaseApplicable":{DoesNotExist:[216,2,1,""],MultipleObjectsReturned:[216,2,1,""],at_apply:[216,3,1,""],at_cannot_apply:[216,3,1,""],handle_apply:[216,3,1,""],path:[216,4,1,""],target_flag:[216,4,1,""],typename:[216,4,1,""]},"evennia.contrib.evscaperoom.objects.BaseConsumable":{DoesNotExist:[216,2,1,""],MultipleObjectsReturned:[216,2,1,""],at_already_consumed:[216,3,1,""],at_consume:[216,3,1,""],consume_flag:[216,4,1,""],handle_consume:[216,3,1,""],has_consumed:[216,3,1,""],one_consume_only:[216,4,1,""],path:[216,4,1,""],typename:[216,4,1,""]},"evennia.contrib.evscaperoom.objects.BasePositionable":{DoesNotExist:[216,2,1,""],MultipleObjectsReturned:[216,2,1,""],at_again_position:[216,3,1,""],at_cannot_position:[216,3,1,""],at_object_creation:[216,3,1,""],at_position:[216,3,1,""],handle_position:[216,3,1,""],path:[216,4,1,""],typename:[216,4,1,""]},"evennia.contrib.evscaperoom.objects.Climbable":{DoesNotExist:[216,2,1,""],MultipleObjectsReturned:[216,2,1,""],at_focus_climb:[216,3,1,""],path:[216,4,1,""],typename:[216,4,1,""]},"evennia.contrib.evscaperoom.objects.CodeInput":{DoesNotExist:[216,2,1,""],MultipleObjectsReturned:[216,2,1,""],at_code_correct:[216,3,1,""],at_code_incorrect:[216,3,1,""],at_focus_code:[216,3,1,""],at_no_code:[216,3,1,""],case_insensitive:[216,4,1,""],code:[216,4,1,""],code_hint:[216,4,1,""],get_cmd_signatures:[216,3,1,""],infinitely_locked:[216,4,1,""],path:[216,4,1,""],typename:[216,4,1,""]},"evennia.contrib.evscaperoom.objects.Combinable":{DoesNotExist:[216,2,1,""],MultipleObjectsReturned:[216,2,1,""],at_apply:[216,3,1,""],at_cannot_apply:[216,3,1,""],at_focus_combine:[216,3,1,""],destroy_components:[216,4,1,""],get_cmd_signatures:[216,3,1,""],new_create_dict:[216,4,1,""],path:[216,4,1,""],target_flag:[216,4,1,""],typename:[216,4,1,""]},"evennia.contrib.evscaperoom.objects.Drinkable":{DoesNotExist:[216,2,1,""],MultipleObjectsReturned:[216,2,1,""],at_already_consumed:[216,3,1,""],at_consume:[216,3,1,""],at_focus_drink:[216,3,1,""],at_focus_sip:[216,3,1,""],consume_flag:[216,4,1,""],path:[216,4,1,""],typename:[216,4,1,""]},"evennia.contrib.evscaperoom.objects.Edible":{DoesNotExist:[216,2,1,""],MultipleObjectsReturned:[216,2,1,""],at_focus_eat:[216,3,1,""],consume_flag:[216,4,1,""],path:[216,4,1,""],typename:[216,4,1,""]},"evennia.contrib.evscaperoom.objects.EvscaperoomObject":{DoesNotExist:[216,2,1,""],MultipleObjectsReturned:[216,2,1,""],action_prepositions:[216,4,1,""],at_focus:[216,3,1,""],at_object_creation:[216,3,1,""],at_speech:[216,3,1,""],at_unfocus:[216,3,1,""],check_character_flag:[216,3,1,""],check_flag:[216,3,1,""],get_cmd_signatures:[216,3,1,""],get_help:[216,3,1,""],get_position:[216,3,1,""],get_short_desc:[216,3,1,""],msg_char:[216,3,1,""],msg_room:[216,3,1,""],msg_system:[216,3,1,""],next_state:[216,3,1,""],parse:[216,3,1,""],path:[216,4,1,""],position_prep_map:[216,4,1,""],return_appearance:[216,3,1,""],room:[216,3,1,""],roomstate:[216,3,1,""],set_character_flag:[216,3,1,""],set_flag:[216,3,1,""],set_position:[216,3,1,""],tagcategory:[216,3,1,""],typename:[216,4,1,""],unset_character_flag:[216,3,1,""],unset_flag:[216,3,1,""]},"evennia.contrib.evscaperoom.objects.Feelable":{DoesNotExist:[216,2,1,""],MultipleObjectsReturned:[216,2,1,""],at_focus_feel:[216,3,1,""],path:[216,4,1,""],typename:[216,4,1,""]},"evennia.contrib.evscaperoom.objects.HasButtons":{DoesNotExist:[216,2,1,""],MultipleObjectsReturned:[216,2,1,""],at_focus_press:[216,3,1,""],at_focus_push:[216,3,1,""],at_green_button:[216,3,1,""],at_nomatch:[216,3,1,""],at_red_button:[216,3,1,""],buttons:[216,4,1,""],get_cmd_signatures:[216,3,1,""],path:[216,4,1,""],typename:[216,4,1,""]},"evennia.contrib.evscaperoom.objects.IndexReadable":{DoesNotExist:[216,2,1,""],MultipleObjectsReturned:[216,2,1,""],at_cannot_read:[216,3,1,""],at_focus_read:[216,3,1,""],at_read:[216,3,1,""],get_cmd_signatures:[216,3,1,""],index:[216,4,1,""],path:[216,4,1,""],typename:[216,4,1,""]},"evennia.contrib.evscaperoom.objects.Insertable":{DoesNotExist:[216,2,1,""],MultipleObjectsReturned:[216,2,1,""],at_apply:[216,3,1,""],at_cannot_apply:[216,3,1,""],at_focus_insert:[216,3,1,""],get_cmd_signatures:[216,3,1,""],path:[216,4,1,""],target_flag:[216,4,1,""],typename:[216,4,1,""]},"evennia.contrib.evscaperoom.objects.Kneelable":{DoesNotExist:[216,2,1,""],MultipleObjectsReturned:[216,2,1,""],at_focus_kneel:[216,3,1,""],path:[216,4,1,""],typename:[216,4,1,""]},"evennia.contrib.evscaperoom.objects.Liable":{DoesNotExist:[216,2,1,""],MultipleObjectsReturned:[216,2,1,""],at_focus_lie:[216,3,1,""],path:[216,4,1,""],typename:[216,4,1,""]},"evennia.contrib.evscaperoom.objects.Listenable":{DoesNotExist:[216,2,1,""],MultipleObjectsReturned:[216,2,1,""],at_focus_listen:[216,3,1,""],path:[216,4,1,""],typename:[216,4,1,""]},"evennia.contrib.evscaperoom.objects.Mixable":{DoesNotExist:[216,2,1,""],MultipleObjectsReturned:[216,2,1,""],at_mix:[216,3,1,""],at_mix_failure:[216,3,1,""],at_mix_success:[216,3,1,""],at_object_creation:[216,3,1,""],check_mixture:[216,3,1,""],handle_mix:[216,3,1,""],ingredient_recipe:[216,4,1,""],mixer_flag:[216,4,1,""],path:[216,4,1,""],typename:[216,4,1,""]},"evennia.contrib.evscaperoom.objects.Movable":{DoesNotExist:[216,2,1,""],MultipleObjectsReturned:[216,2,1,""],at_already_moved:[216,3,1,""],at_cannot_move:[216,3,1,""],at_focus_move:[216,3,1,""],at_focus_push:[216,3,1,""],at_focus_shove:[216,3,1,""],at_left:[216,3,1,""],at_object_creation:[216,3,1,""],at_right:[216,3,1,""],get_cmd_signatures:[216,3,1,""],move_positions:[216,4,1,""],path:[216,4,1,""],start_position:[216,4,1,""],typename:[216,4,1,""]},"evennia.contrib.evscaperoom.objects.Openable":{DoesNotExist:[216,2,1,""],MultipleObjectsReturned:[216,2,1,""],at_already_closed:[216,3,1,""],at_already_open:[216,3,1,""],at_close:[216,3,1,""],at_focus_close:[216,3,1,""],at_focus_open:[216,3,1,""],at_locked:[216,3,1,""],at_object_creation:[216,3,1,""],at_open:[216,3,1,""],open_flag:[216,4,1,""],path:[216,4,1,""],start_open:[216,4,1,""],typename:[216,4,1,""],unlock_flag:[216,4,1,""]},"evennia.contrib.evscaperoom.objects.Positionable":{DoesNotExist:[216,2,1,""],MultipleObjectsReturned:[216,2,1,""],get_cmd_signatures:[216,3,1,""],path:[216,4,1,""],typename:[216,4,1,""]},"evennia.contrib.evscaperoom.objects.Readable":{DoesNotExist:[216,2,1,""],MultipleObjectsReturned:[216,2,1,""],at_cannot_read:[216,3,1,""],at_focus_read:[216,3,1,""],at_object_creation:[216,3,1,""],at_read:[216,3,1,""],path:[216,4,1,""],read_flag:[216,4,1,""],start_readable:[216,4,1,""],typename:[216,4,1,""]},"evennia.contrib.evscaperoom.objects.Rotatable":{DoesNotExist:[216,2,1,""],MultipleObjectsReturned:[216,2,1,""],at_cannot_rotate:[216,3,1,""],at_focus_rotate:[216,3,1,""],at_focus_turn:[216,3,1,""],at_object_creation:[216,3,1,""],at_rotate:[216,3,1,""],path:[216,4,1,""],rotate_flag:[216,4,1,""],start_rotatable:[216,4,1,""],typename:[216,4,1,""]},"evennia.contrib.evscaperoom.objects.Sittable":{DoesNotExist:[216,2,1,""],MultipleObjectsReturned:[216,2,1,""],at_focus_sit:[216,3,1,""],path:[216,4,1,""],typename:[216,4,1,""]},"evennia.contrib.evscaperoom.objects.Smellable":{DoesNotExist:[216,2,1,""],MultipleObjectsReturned:[216,2,1,""],at_focus_smell:[216,3,1,""],path:[216,4,1,""],typename:[216,4,1,""]},"evennia.contrib.evscaperoom.objects.Usable":{DoesNotExist:[216,2,1,""],MultipleObjectsReturned:[216,2,1,""],at_apply:[216,3,1,""],at_cannot_apply:[216,3,1,""],at_focus_use:[216,3,1,""],path:[216,4,1,""],target_flag:[216,4,1,""],typename:[216,4,1,""]},"evennia.contrib.evscaperoom.room":{EvscapeRoom:[217,1,1,""]},"evennia.contrib.evscaperoom.room.EvscapeRoom":{"delete":[217,3,1,""],DoesNotExist:[217,2,1,""],MultipleObjectsReturned:[217,2,1,""],achievement:[217,3,1,""],at_object_creation:[217,3,1,""],at_object_leave:[217,3,1,""],at_object_receive:[217,3,1,""],character_cleanup:[217,3,1,""],character_exit:[217,3,1,""],check_flag:[217,3,1,""],check_perm:[217,3,1,""],get_all_characters:[217,3,1,""],log:[217,3,1,""],path:[217,4,1,""],progress:[217,3,1,""],return_appearance:[217,3,1,""],score:[217,3,1,""],set_flag:[217,3,1,""],state:[217,3,1,""],statehandler:[217,4,1,""],tag_all_characters:[217,3,1,""],tag_character:[217,3,1,""],typename:[217,4,1,""],unset_flag:[217,3,1,""]},"evennia.contrib.evscaperoom.state":{BaseState:[219,1,1,""],StateHandler:[219,1,1,""]},"evennia.contrib.evscaperoom.state.BaseState":{__init__:[219,3,1,""],character_enters:[219,3,1,""],character_leaves:[219,3,1,""],cinematic:[219,3,1,""],clean:[219,3,1,""],create_object:[219,3,1,""],get_hint:[219,3,1,""],get_object:[219,3,1,""],hints:[219,4,1,""],init:[219,3,1,""],msg:[219,3,1,""],next:[219,3,1,""],next_state:[219,4,1,""]},"evennia.contrib.evscaperoom.state.StateHandler":{__init__:[219,3,1,""],init_state:[219,3,1,""],load_state:[219,3,1,""],next_state:[219,3,1,""]},"evennia.contrib.evscaperoom.tests":{TestEvScapeRoom:[220,1,1,""],TestEvscaperoomCommands:[220,1,1,""],TestStates:[220,1,1,""],TestUtils:[220,1,1,""]},"evennia.contrib.evscaperoom.tests.TestEvScapeRoom":{setUp:[220,3,1,""],tearDown:[220,3,1,""],test_room_methods:[220,3,1,""]},"evennia.contrib.evscaperoom.tests.TestEvscaperoomCommands":{setUp:[220,3,1,""],test_base_parse:[220,3,1,""],test_base_search:[220,3,1,""],test_emote:[220,3,1,""],test_focus:[220,3,1,""],test_focus_interaction:[220,3,1,""],test_look:[220,3,1,""],test_set_focus:[220,3,1,""],test_speech:[220,3,1,""]},"evennia.contrib.evscaperoom.tests.TestStates":{setUp:[220,3,1,""],tearDown:[220,3,1,""],test_all_states:[220,3,1,""],test_base_state:[220,3,1,""]},"evennia.contrib.evscaperoom.tests.TestUtils":{test_overwrite:[220,3,1,""],test_parse_for_perspectives:[220,3,1,""],test_parse_for_things:[220,3,1,""]},"evennia.contrib.evscaperoom.utils":{add_msg_borders:[221,5,1,""],create_evscaperoom_object:[221,5,1,""],create_fantasy_word:[221,5,1,""],msg_cinematic:[221,5,1,""],parse_for_perspectives:[221,5,1,""],parse_for_things:[221,5,1,""]},"evennia.contrib.extended_room":{CmdExtendedRoomDesc:[222,1,1,""],CmdExtendedRoomDetail:[222,1,1,""],CmdExtendedRoomGameTime:[222,1,1,""],CmdExtendedRoomLook:[222,1,1,""],ExtendedRoom:[222,1,1,""],ExtendedRoomCmdSet:[222,1,1,""]},"evennia.contrib.extended_room.CmdExtendedRoomDesc":{aliases:[222,4,1,""],func:[222,3,1,""],help_category:[222,4,1,""],key:[222,4,1,""],lock_storage:[222,4,1,""],reset_times:[222,3,1,""],search_index_entry:[222,4,1,""],switch_options:[222,4,1,""]},"evennia.contrib.extended_room.CmdExtendedRoomDetail":{aliases:[222,4,1,""],func:[222,3,1,""],help_category:[222,4,1,""],key:[222,4,1,""],lock_storage:[222,4,1,""],locks:[222,4,1,""],search_index_entry:[222,4,1,""]},"evennia.contrib.extended_room.CmdExtendedRoomGameTime":{aliases:[222,4,1,""],func:[222,3,1,""],help_category:[222,4,1,""],key:[222,4,1,""],lock_storage:[222,4,1,""],locks:[222,4,1,""],search_index_entry:[222,4,1,""]},"evennia.contrib.extended_room.CmdExtendedRoomLook":{aliases:[222,4,1,""],func:[222,3,1,""],help_category:[222,4,1,""],key:[222,4,1,""],lock_storage:[222,4,1,""],search_index_entry:[222,4,1,""]},"evennia.contrib.extended_room.ExtendedRoom":{DoesNotExist:[222,2,1,""],MultipleObjectsReturned:[222,2,1,""],at_object_creation:[222,3,1,""],del_detail:[222,3,1,""],get_time_and_season:[222,3,1,""],path:[222,4,1,""],replace_timeslots:[222,3,1,""],return_appearance:[222,3,1,""],return_detail:[222,3,1,""],set_detail:[222,3,1,""],typename:[222,4,1,""],update_current_description:[222,3,1,""]},"evennia.contrib.extended_room.ExtendedRoomCmdSet":{at_cmdset_creation:[222,3,1,""],path:[222,4,1,""]},"evennia.contrib.fieldfill":{CmdTestMenu:[223,1,1,""],FieldEvMenu:[223,1,1,""],display_formdata:[223,5,1,""],form_template_to_dict:[223,5,1,""],init_delayed_message:[223,5,1,""],init_fill_field:[223,5,1,""],menunode_fieldfill:[223,5,1,""],sendmessage:[223,5,1,""],verify_online_player:[223,5,1,""]},"evennia.contrib.fieldfill.CmdTestMenu":{aliases:[223,4,1,""],func:[223,3,1,""],help_category:[223,4,1,""],key:[223,4,1,""],lock_storage:[223,4,1,""],search_index_entry:[223,4,1,""]},"evennia.contrib.fieldfill.FieldEvMenu":{node_formatter:[223,3,1,""]},"evennia.contrib.gendersub":{GenderCharacter:[224,1,1,""],SetGender:[224,1,1,""]},"evennia.contrib.gendersub.GenderCharacter":{DoesNotExist:[224,2,1,""],MultipleObjectsReturned:[224,2,1,""],at_object_creation:[224,3,1,""],msg:[224,3,1,""],path:[224,4,1,""],typename:[224,4,1,""]},"evennia.contrib.gendersub.SetGender":{aliases:[224,4,1,""],func:[224,3,1,""],help_category:[224,4,1,""],key:[224,4,1,""],lock_storage:[224,4,1,""],locks:[224,4,1,""],search_index_entry:[224,4,1,""]},"evennia.contrib.health_bar":{display_meter:[225,5,1,""]},"evennia.contrib.ingame_python":{callbackhandler:[227,0,0,"-"],commands:[228,0,0,"-"],eventfuncs:[229,0,0,"-"],scripts:[230,0,0,"-"],tests:[231,0,0,"-"],utils:[233,0,0,"-"]},"evennia.contrib.ingame_python.callbackhandler":{Callback:[227,1,1,""],CallbackHandler:[227,1,1,""]},"evennia.contrib.ingame_python.callbackhandler.Callback":{author:[227,4,1,""],code:[227,4,1,""],created_on:[227,4,1,""],name:[227,4,1,""],number:[227,4,1,""],obj:[227,4,1,""],parameters:[227,4,1,""],updated_by:[227,4,1,""],updated_on:[227,4,1,""],valid:[227,4,1,""]},"evennia.contrib.ingame_python.callbackhandler.CallbackHandler":{__init__:[227,3,1,""],add:[227,3,1,""],all:[227,3,1,""],call:[227,3,1,""],edit:[227,3,1,""],format_callback:[227,3,1,""],get:[227,3,1,""],get_variable:[227,3,1,""],remove:[227,3,1,""],script:[227,4,1,""]},"evennia.contrib.ingame_python.commands":{CmdCallback:[228,1,1,""]},"evennia.contrib.ingame_python.commands.CmdCallback":{accept_callback:[228,3,1,""],add_callback:[228,3,1,""],aliases:[228,4,1,""],del_callback:[228,3,1,""],edit_callback:[228,3,1,""],func:[228,3,1,""],get_help:[228,3,1,""],help_category:[228,4,1,""],key:[228,4,1,""],list_callbacks:[228,3,1,""],list_tasks:[228,3,1,""],lock_storage:[228,4,1,""],locks:[228,4,1,""],search_index_entry:[228,4,1,""]},"evennia.contrib.ingame_python.eventfuncs":{call_event:[229,5,1,""],deny:[229,5,1,""],get:[229,5,1,""]},"evennia.contrib.ingame_python.scripts":{EventHandler:[230,1,1,""],TimeEventScript:[230,1,1,""],complete_task:[230,5,1,""]},"evennia.contrib.ingame_python.scripts.EventHandler":{DoesNotExist:[230,2,1,""],MultipleObjectsReturned:[230,2,1,""],accept_callback:[230,3,1,""],add_callback:[230,3,1,""],add_event:[230,3,1,""],at_script_creation:[230,3,1,""],at_server_start:[230,3,1,""],call:[230,3,1,""],del_callback:[230,3,1,""],edit_callback:[230,3,1,""],get_callbacks:[230,3,1,""],get_events:[230,3,1,""],get_variable:[230,3,1,""],handle_error:[230,3,1,""],path:[230,4,1,""],set_task:[230,3,1,""],typename:[230,4,1,""]},"evennia.contrib.ingame_python.scripts.TimeEventScript":{DoesNotExist:[230,2,1,""],MultipleObjectsReturned:[230,2,1,""],at_repeat:[230,3,1,""],at_script_creation:[230,3,1,""],path:[230,4,1,""],typename:[230,4,1,""]},"evennia.contrib.ingame_python.tests":{TestCmdCallback:[231,1,1,""],TestDefaultCallbacks:[231,1,1,""],TestEventHandler:[231,1,1,""]},"evennia.contrib.ingame_python.tests.TestCmdCallback":{setUp:[231,3,1,""],tearDown:[231,3,1,""],test_accept:[231,3,1,""],test_add:[231,3,1,""],test_del:[231,3,1,""],test_list:[231,3,1,""],test_lock:[231,3,1,""]},"evennia.contrib.ingame_python.tests.TestDefaultCallbacks":{setUp:[231,3,1,""],tearDown:[231,3,1,""],test_exit:[231,3,1,""]},"evennia.contrib.ingame_python.tests.TestEventHandler":{setUp:[231,3,1,""],tearDown:[231,3,1,""],test_accept:[231,3,1,""],test_add_validation:[231,3,1,""],test_call:[231,3,1,""],test_del:[231,3,1,""],test_edit:[231,3,1,""],test_edit_validation:[231,3,1,""],test_handler:[231,3,1,""],test_start:[231,3,1,""]},"evennia.contrib.ingame_python.utils":{InterruptEvent:[233,2,1,""],get_event_handler:[233,5,1,""],get_next_wait:[233,5,1,""],keyword_event:[233,5,1,""],phrase_event:[233,5,1,""],register_events:[233,5,1,""],time_event:[233,5,1,""]},"evennia.contrib.mail":{CmdMail:[234,1,1,""],CmdMailCharacter:[234,1,1,""]},"evennia.contrib.mail.CmdMail":{aliases:[234,4,1,""],func:[234,3,1,""],get_all_mail:[234,3,1,""],help_category:[234,4,1,""],key:[234,4,1,""],lock:[234,4,1,""],lock_storage:[234,4,1,""],parse:[234,3,1,""],search_index_entry:[234,4,1,""],search_targets:[234,3,1,""],send_mail:[234,3,1,""]},"evennia.contrib.mail.CmdMailCharacter":{account_caller:[234,4,1,""],aliases:[234,4,1,""],help_category:[234,4,1,""],key:[234,4,1,""],lock_storage:[234,4,1,""],search_index_entry:[234,4,1,""]},"evennia.contrib.multidescer":{CmdMultiDesc:[237,1,1,""],DescValidateError:[237,2,1,""]},"evennia.contrib.multidescer.CmdMultiDesc":{aliases:[237,4,1,""],func:[237,3,1,""],help_category:[237,4,1,""],key:[237,4,1,""],lock_storage:[237,4,1,""],locks:[237,4,1,""],search_index_entry:[237,4,1,""]},"evennia.contrib.puzzles":{CmdArmPuzzle:[238,1,1,""],CmdCreatePuzzleRecipe:[238,1,1,""],CmdEditPuzzle:[238,1,1,""],CmdListArmedPuzzles:[238,1,1,""],CmdListPuzzleRecipes:[238,1,1,""],CmdUsePuzzleParts:[238,1,1,""],PuzzleRecipe:[238,1,1,""],PuzzleSystemCmdSet:[238,1,1,""],maskout_protodef:[238,5,1,""],proto_def:[238,5,1,""]},"evennia.contrib.puzzles.CmdArmPuzzle":{aliases:[238,4,1,""],func:[238,3,1,""],help_category:[238,4,1,""],key:[238,4,1,""],lock_storage:[238,4,1,""],locks:[238,4,1,""],search_index_entry:[238,4,1,""]},"evennia.contrib.puzzles.CmdCreatePuzzleRecipe":{aliases:[238,4,1,""],confirm:[238,4,1,""],default_confirm:[238,4,1,""],func:[238,3,1,""],help_category:[238,4,1,""],key:[238,4,1,""],lock_storage:[238,4,1,""],locks:[238,4,1,""],search_index_entry:[238,4,1,""]},"evennia.contrib.puzzles.CmdEditPuzzle":{aliases:[238,4,1,""],func:[238,3,1,""],help_category:[238,4,1,""],key:[238,4,1,""],lock_storage:[238,4,1,""],locks:[238,4,1,""],search_index_entry:[238,4,1,""]},"evennia.contrib.puzzles.CmdListArmedPuzzles":{aliases:[238,4,1,""],func:[238,3,1,""],help_category:[238,4,1,""],key:[238,4,1,""],lock_storage:[238,4,1,""],locks:[238,4,1,""],search_index_entry:[238,4,1,""]},"evennia.contrib.puzzles.CmdListPuzzleRecipes":{aliases:[238,4,1,""],func:[238,3,1,""],help_category:[238,4,1,""],key:[238,4,1,""],lock_storage:[238,4,1,""],locks:[238,4,1,""],search_index_entry:[238,4,1,""]},"evennia.contrib.puzzles.CmdUsePuzzleParts":{aliases:[238,4,1,""],func:[238,3,1,""],help_category:[238,4,1,""],key:[238,4,1,""],lock_storage:[238,4,1,""],locks:[238,4,1,""],search_index_entry:[238,4,1,""]},"evennia.contrib.puzzles.PuzzleRecipe":{DoesNotExist:[238,2,1,""],MultipleObjectsReturned:[238,2,1,""],path:[238,4,1,""],save_recipe:[238,3,1,""],typename:[238,4,1,""]},"evennia.contrib.puzzles.PuzzleSystemCmdSet":{at_cmdset_creation:[238,3,1,""],path:[238,4,1,""]},"evennia.contrib.random_string_generator":{ExhaustedGenerator:[239,2,1,""],RandomStringGenerator:[239,1,1,""],RandomStringGeneratorScript:[239,1,1,""],RejectedRegex:[239,2,1,""]},"evennia.contrib.random_string_generator.RandomStringGenerator":{__init__:[239,3,1,""],all:[239,3,1,""],clear:[239,3,1,""],get:[239,3,1,""],remove:[239,3,1,""],script:[239,4,1,""]},"evennia.contrib.random_string_generator.RandomStringGeneratorScript":{DoesNotExist:[239,2,1,""],MultipleObjectsReturned:[239,2,1,""],at_script_creation:[239,3,1,""],path:[239,4,1,""],typename:[239,4,1,""]},"evennia.contrib.rplanguage":{LanguageError:[240,2,1,""],LanguageExistsError:[240,2,1,""],LanguageHandler:[240,1,1,""],add_language:[240,5,1,""],available_languages:[240,5,1,""],obfuscate_language:[240,5,1,""],obfuscate_whisper:[240,5,1,""]},"evennia.contrib.rplanguage.LanguageHandler":{DoesNotExist:[240,2,1,""],MultipleObjectsReturned:[240,2,1,""],add:[240,3,1,""],at_script_creation:[240,3,1,""],path:[240,4,1,""],translate:[240,3,1,""],typename:[240,4,1,""]},"evennia.contrib.rpsystem":{CmdEmote:[241,1,1,""],CmdMask:[241,1,1,""],CmdPose:[241,1,1,""],CmdRecog:[241,1,1,""],CmdSay:[241,1,1,""],CmdSdesc:[241,1,1,""],ContribRPCharacter:[241,1,1,""],ContribRPObject:[241,1,1,""],ContribRPRoom:[241,1,1,""],EmoteError:[241,2,1,""],LanguageError:[241,2,1,""],RPCommand:[241,1,1,""],RPSystemCmdSet:[241,1,1,""],RecogError:[241,2,1,""],RecogHandler:[241,1,1,""],SdescError:[241,2,1,""],SdescHandler:[241,1,1,""],ordered_permutation_regex:[241,5,1,""],parse_language:[241,5,1,""],parse_sdescs_and_recogs:[241,5,1,""],regex_tuple_from_key_alias:[241,5,1,""],send_emote:[241,5,1,""]},"evennia.contrib.rpsystem.CmdEmote":{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.rpsystem.CmdMask":{aliases:[241,4,1,""],func:[241,3,1,""],help_category:[241,4,1,""],key:[241,4,1,""],lock_storage:[241,4,1,""],search_index_entry:[241,4,1,""]},"evennia.contrib.rpsystem.CmdPose":{aliases:[241,4,1,""],func:[241,3,1,""],help_category:[241,4,1,""],key:[241,4,1,""],lock_storage:[241,4,1,""],parse:[241,3,1,""],search_index_entry:[241,4,1,""]},"evennia.contrib.rpsystem.CmdRecog":{aliases:[241,4,1,""],func:[241,3,1,""],help_category:[241,4,1,""],key:[241,4,1,""],lock_storage:[241,4,1,""],parse:[241,3,1,""],search_index_entry:[241,4,1,""]},"evennia.contrib.rpsystem.CmdSay":{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.rpsystem.CmdSdesc":{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.rpsystem.ContribRPCharacter":{DoesNotExist:[241,2,1,""],MultipleObjectsReturned:[241,2,1,""],at_before_say:[241,3,1,""],at_object_creation:[241,3,1,""],get_display_name:[241,3,1,""],path:[241,4,1,""],process_language:[241,3,1,""],process_recog:[241,3,1,""],process_sdesc:[241,3,1,""],recog:[241,4,1,""],sdesc:[241,4,1,""],typename:[241,4,1,""]},"evennia.contrib.rpsystem.ContribRPObject":{DoesNotExist:[241,2,1,""],MultipleObjectsReturned:[241,2,1,""],at_object_creation:[241,3,1,""],get_display_name:[241,3,1,""],path:[241,4,1,""],return_appearance:[241,3,1,""],search:[241,3,1,""],typename:[241,4,1,""]},"evennia.contrib.rpsystem.ContribRPRoom":{DoesNotExist:[241,2,1,""],MultipleObjectsReturned:[241,2,1,""],path:[241,4,1,""],typename:[241,4,1,""]},"evennia.contrib.rpsystem.RPCommand":{aliases:[241,4,1,""],help_category:[241,4,1,""],key:[241,4,1,""],lock_storage:[241,4,1,""],parse:[241,3,1,""],search_index_entry:[241,4,1,""]},"evennia.contrib.rpsystem.RPSystemCmdSet":{at_cmdset_creation:[241,3,1,""],path:[241,4,1,""]},"evennia.contrib.rpsystem.RecogHandler":{__init__:[241,3,1,""],add:[241,3,1,""],all:[241,3,1,""],get:[241,3,1,""],get_regex_tuple:[241,3,1,""],remove:[241,3,1,""]},"evennia.contrib.rpsystem.SdescHandler":{__init__:[241,3,1,""],add:[241,3,1,""],get:[241,3,1,""],get_regex_tuple:[241,3,1,""]},"evennia.contrib.security":{auditing:[243,0,0,"-"]},"evennia.contrib.security.auditing":{outputs:[244,0,0,"-"],server:[245,0,0,"-"],tests:[246,0,0,"-"]},"evennia.contrib.security.auditing.outputs":{to_file:[244,5,1,""],to_syslog:[244,5,1,""]},"evennia.contrib.security.auditing.server":{AuditedServerSession:[245,1,1,""]},"evennia.contrib.security.auditing.server.AuditedServerSession":{audit:[245,3,1,""],data_in:[245,3,1,""],data_out:[245,3,1,""],mask:[245,3,1,""]},"evennia.contrib.security.auditing.tests":{AuditingTest:[246,1,1,""]},"evennia.contrib.security.auditing.tests.AuditingTest":{test_audit:[246,3,1,""],test_mask:[246,3,1,""]},"evennia.contrib.simpledoor":{CmdOpen:[247,1,1,""],CmdOpenCloseDoor:[247,1,1,""],SimpleDoor:[247,1,1,""]},"evennia.contrib.simpledoor.CmdOpen":{aliases:[247,4,1,""],create_exit:[247,3,1,""],help_category:[247,4,1,""],key:[247,4,1,""],lock_storage:[247,4,1,""],search_index_entry:[247,4,1,""]},"evennia.contrib.simpledoor.CmdOpenCloseDoor":{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.simpledoor.SimpleDoor":{"delete":[247,3,1,""],DoesNotExist:[247,2,1,""],MultipleObjectsReturned:[247,2,1,""],at_failed_traverse:[247,3,1,""],at_object_creation:[247,3,1,""],path:[247,4,1,""],setdesc:[247,3,1,""],setlock:[247,3,1,""],typename:[247,4,1,""]},"evennia.contrib.slow_exit":{CmdSetSpeed:[248,1,1,""],CmdStop:[248,1,1,""],SlowExit:[248,1,1,""]},"evennia.contrib.slow_exit.CmdSetSpeed":{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.slow_exit.CmdStop":{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.slow_exit.SlowExit":{DoesNotExist:[248,2,1,""],MultipleObjectsReturned:[248,2,1,""],at_traverse:[248,3,1,""],path:[248,4,1,""],typename:[248,4,1,""]},"evennia.contrib.talking_npc":{CmdTalk:[249,1,1,""],END:[249,5,1,""],TalkingCmdSet:[249,1,1,""],TalkingNPC:[249,1,1,""],info1:[249,5,1,""],info2:[249,5,1,""],info3:[249,5,1,""],menu_start_node:[249,5,1,""]},"evennia.contrib.talking_npc.CmdTalk":{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.talking_npc.TalkingCmdSet":{at_cmdset_creation:[249,3,1,""],key:[249,4,1,""],path:[249,4,1,""]},"evennia.contrib.talking_npc.TalkingNPC":{DoesNotExist:[249,2,1,""],MultipleObjectsReturned:[249,2,1,""],at_object_creation:[249,3,1,""],path:[249,4,1,""],typename:[249,4,1,""]},"evennia.contrib.test_traits":{TestNumericTraitOperators:[250,1,1,""],TestTrait:[250,1,1,""],TestTraitCounter:[250,1,1,""],TestTraitCounterTimed:[250,1,1,""],TestTraitGauge:[250,1,1,""],TestTraitGaugeTimed:[250,1,1,""],TestTraitStatic:[250,1,1,""],TraitHandlerTest:[250,1,1,""]},"evennia.contrib.test_traits.TestNumericTraitOperators":{setUp:[250,3,1,""],tearDown:[250,3,1,""],test_add_traits:[250,3,1,""],test_comparisons_numeric:[250,3,1,""],test_comparisons_traits:[250,3,1,""],test_floordiv:[250,3,1,""],test_mul_traits:[250,3,1,""],test_pos_shortcut:[250,3,1,""],test_sub_traits:[250,3,1,""]},"evennia.contrib.test_traits.TestTrait":{setUp:[250,3,1,""],test_init:[250,3,1,""],test_repr:[250,3,1,""],test_trait_getset:[250,3,1,""],test_validate_input__fail:[250,3,1,""],test_validate_input__valid:[250,3,1,""]},"evennia.contrib.test_traits.TestTraitCounter":{setUp:[250,3,1,""],test_boundaries__bigmod:[250,3,1,""],test_boundaries__change_boundaries:[250,3,1,""],test_boundaries__disable:[250,3,1,""],test_boundaries__inverse:[250,3,1,""],test_boundaries__minmax:[250,3,1,""],test_current:[250,3,1,""],test_delete:[250,3,1,""],test_descs:[250,3,1,""],test_init:[250,3,1,""],test_percentage:[250,3,1,""],test_value:[250,3,1,""]},"evennia.contrib.test_traits.TestTraitCounterTimed":{setUp:[250,3,1,""],test_timer_rate:[250,3,1,""],test_timer_ratetarget:[250,3,1,""]},"evennia.contrib.test_traits.TestTraitGauge":{setUp:[250,3,1,""],test_boundaries__bigmod:[250,3,1,""],test_boundaries__change_boundaries:[250,3,1,""],test_boundaries__disable:[250,3,1,""],test_boundaries__inverse:[250,3,1,""],test_boundaries__minmax:[250,3,1,""],test_current:[250,3,1,""],test_delete:[250,3,1,""],test_descs:[250,3,1,""],test_init:[250,3,1,""],test_percentage:[250,3,1,""],test_value:[250,3,1,""]},"evennia.contrib.test_traits.TestTraitGaugeTimed":{setUp:[250,3,1,""],test_timer_rate:[250,3,1,""],test_timer_ratetarget:[250,3,1,""]},"evennia.contrib.test_traits.TestTraitStatic":{setUp:[250,3,1,""],test_delete:[250,3,1,""],test_init:[250,3,1,""],test_value:[250,3,1,""]},"evennia.contrib.test_traits.TraitHandlerTest":{setUp:[250,3,1,""],test_add_trait:[250,3,1,""],test_all:[250,3,1,""],test_cache:[250,3,1,""],test_clear:[250,3,1,""],test_getting:[250,3,1,""],test_remove:[250,3,1,""],test_setting:[250,3,1,""],test_trait_db_connection:[250,3,1,""]},"evennia.contrib.traits":{CounterTrait:[251,1,1,""],GaugeTrait:[251,1,1,""],MandatoryTraitKey:[251,1,1,""],StaticTrait:[251,1,1,""],Trait:[251,1,1,""],TraitException:[251,2,1,""],TraitHandler:[251,1,1,""]},"evennia.contrib.traits.CounterTrait":{base:[251,3,1,""],current:[251,3,1,""],default_keys:[251,4,1,""],desc:[251,3,1,""],max:[251,3,1,""],min:[251,3,1,""],mod:[251,3,1,""],percent:[251,3,1,""],ratetarget:[251,3,1,""],reset:[251,3,1,""],trait_type:[251,4,1,""],validate_input:[251,3,1,""],value:[251,3,1,""]},"evennia.contrib.traits.GaugeTrait":{base:[251,3,1,""],current:[251,3,1,""],default_keys:[251,4,1,""],max:[251,3,1,""],min:[251,3,1,""],mod:[251,3,1,""],percent:[251,3,1,""],reset:[251,3,1,""],trait_type:[251,4,1,""],value:[251,3,1,""]},"evennia.contrib.traits.StaticTrait":{default_keys:[251,4,1,""],mod:[251,3,1,""],trait_type:[251,4,1,""],value:[251,3,1,""]},"evennia.contrib.traits.Trait":{__init__:[251,3,1,""],allow_extra_properties:[251,4,1,""],default_keys:[251,4,1,""],key:[251,3,1,""],name:[251,3,1,""],trait_type:[251,4,1,""],validate_input:[251,3,1,""],value:[251,3,1,""]},"evennia.contrib.traits.TraitException":{__init__:[251,3,1,""]},"evennia.contrib.traits.TraitHandler":{__init__:[251,3,1,""],add:[251,3,1,""],all:[251,3,1,""],clear:[251,3,1,""],get:[251,3,1,""],remove:[251,3,1,""]},"evennia.contrib.tree_select":{CmdNameColor:[252,1,1,""],change_name_color:[252,5,1,""],dashcount:[252,5,1,""],go_up_one_category:[252,5,1,""],index_to_selection:[252,5,1,""],init_tree_selection:[252,5,1,""],is_category:[252,5,1,""],menunode_treeselect:[252,5,1,""],optlist_to_menuoptions:[252,5,1,""],parse_opts:[252,5,1,""]},"evennia.contrib.tree_select.CmdNameColor":{aliases:[252,4,1,""],func:[252,3,1,""],help_category:[252,4,1,""],key:[252,4,1,""],lock_storage:[252,4,1,""],search_index_entry:[252,4,1,""]},"evennia.contrib.turnbattle":{tb_basic:[254,0,0,"-"],tb_equip:[255,0,0,"-"],tb_items:[256,0,0,"-"],tb_magic:[257,0,0,"-"],tb_range:[258,0,0,"-"]},"evennia.contrib.turnbattle.tb_basic":{ACTIONS_PER_TURN:[254,6,1,""],BattleCmdSet:[254,1,1,""],CmdAttack:[254,1,1,""],CmdCombatHelp:[254,1,1,""],CmdDisengage:[254,1,1,""],CmdFight:[254,1,1,""],CmdPass:[254,1,1,""],CmdRest:[254,1,1,""],TBBasicCharacter:[254,1,1,""],TBBasicTurnHandler:[254,1,1,""],apply_damage:[254,5,1,""],at_defeat:[254,5,1,""],combat_cleanup:[254,5,1,""],get_attack:[254,5,1,""],get_damage:[254,5,1,""],get_defense:[254,5,1,""],is_in_combat:[254,5,1,""],is_turn:[254,5,1,""],resolve_attack:[254,5,1,""],roll_init:[254,5,1,""],spend_action:[254,5,1,""]},"evennia.contrib.turnbattle.tb_basic.BattleCmdSet":{at_cmdset_creation:[254,3,1,""],key:[254,4,1,""],path:[254,4,1,""]},"evennia.contrib.turnbattle.tb_basic.CmdAttack":{aliases:[254,4,1,""],func:[254,3,1,""],help_category:[254,4,1,""],key:[254,4,1,""],lock_storage:[254,4,1,""],search_index_entry:[254,4,1,""]},"evennia.contrib.turnbattle.tb_basic.CmdCombatHelp":{aliases:[254,4,1,""],func:[254,3,1,""],help_category:[254,4,1,""],key:[254,4,1,""],lock_storage:[254,4,1,""],search_index_entry:[254,4,1,""]},"evennia.contrib.turnbattle.tb_basic.CmdDisengage":{aliases:[254,4,1,""],func:[254,3,1,""],help_category:[254,4,1,""],key:[254,4,1,""],lock_storage:[254,4,1,""],search_index_entry:[254,4,1,""]},"evennia.contrib.turnbattle.tb_basic.CmdFight":{aliases:[254,4,1,""],func:[254,3,1,""],help_category:[254,4,1,""],key:[254,4,1,""],lock_storage:[254,4,1,""],search_index_entry:[254,4,1,""]},"evennia.contrib.turnbattle.tb_basic.CmdPass":{aliases:[254,4,1,""],func:[254,3,1,""],help_category:[254,4,1,""],key:[254,4,1,""],lock_storage:[254,4,1,""],search_index_entry:[254,4,1,""]},"evennia.contrib.turnbattle.tb_basic.CmdRest":{aliases:[254,4,1,""],func:[254,3,1,""],help_category:[254,4,1,""],key:[254,4,1,""],lock_storage:[254,4,1,""],search_index_entry:[254,4,1,""]},"evennia.contrib.turnbattle.tb_basic.TBBasicCharacter":{DoesNotExist:[254,2,1,""],MultipleObjectsReturned:[254,2,1,""],at_before_move:[254,3,1,""],at_object_creation:[254,3,1,""],path:[254,4,1,""],typename:[254,4,1,""]},"evennia.contrib.turnbattle.tb_basic.TBBasicTurnHandler":{DoesNotExist:[254,2,1,""],MultipleObjectsReturned:[254,2,1,""],at_repeat:[254,3,1,""],at_script_creation:[254,3,1,""],at_stop:[254,3,1,""],initialize_for_combat:[254,3,1,""],join_fight:[254,3,1,""],next_turn:[254,3,1,""],path:[254,4,1,""],start_turn:[254,3,1,""],turn_end_check:[254,3,1,""],typename:[254,4,1,""]},"evennia.contrib.turnbattle.tb_equip":{ACTIONS_PER_TURN:[255,6,1,""],BattleCmdSet:[255,1,1,""],CmdAttack:[255,1,1,""],CmdCombatHelp:[255,1,1,""],CmdDisengage:[255,1,1,""],CmdDoff:[255,1,1,""],CmdDon:[255,1,1,""],CmdFight:[255,1,1,""],CmdPass:[255,1,1,""],CmdRest:[255,1,1,""],CmdUnwield:[255,1,1,""],CmdWield:[255,1,1,""],TBEArmor:[255,1,1,""],TBEWeapon:[255,1,1,""],TBEquipCharacter:[255,1,1,""],TBEquipTurnHandler:[255,1,1,""],apply_damage:[255,5,1,""],at_defeat:[255,5,1,""],combat_cleanup:[255,5,1,""],get_attack:[255,5,1,""],get_damage:[255,5,1,""],get_defense:[255,5,1,""],is_in_combat:[255,5,1,""],is_turn:[255,5,1,""],resolve_attack:[255,5,1,""],roll_init:[255,5,1,""],spend_action:[255,5,1,""]},"evennia.contrib.turnbattle.tb_equip.BattleCmdSet":{at_cmdset_creation:[255,3,1,""],key:[255,4,1,""],path:[255,4,1,""]},"evennia.contrib.turnbattle.tb_equip.CmdAttack":{aliases:[255,4,1,""],func:[255,3,1,""],help_category:[255,4,1,""],key:[255,4,1,""],lock_storage:[255,4,1,""],search_index_entry:[255,4,1,""]},"evennia.contrib.turnbattle.tb_equip.CmdCombatHelp":{aliases:[255,4,1,""],func:[255,3,1,""],help_category:[255,4,1,""],key:[255,4,1,""],lock_storage:[255,4,1,""],search_index_entry:[255,4,1,""]},"evennia.contrib.turnbattle.tb_equip.CmdDisengage":{aliases:[255,4,1,""],func:[255,3,1,""],help_category:[255,4,1,""],key:[255,4,1,""],lock_storage:[255,4,1,""],search_index_entry:[255,4,1,""]},"evennia.contrib.turnbattle.tb_equip.CmdDoff":{aliases:[255,4,1,""],func:[255,3,1,""],help_category:[255,4,1,""],key:[255,4,1,""],lock_storage:[255,4,1,""],search_index_entry:[255,4,1,""]},"evennia.contrib.turnbattle.tb_equip.CmdDon":{aliases:[255,4,1,""],func:[255,3,1,""],help_category:[255,4,1,""],key:[255,4,1,""],lock_storage:[255,4,1,""],search_index_entry:[255,4,1,""]},"evennia.contrib.turnbattle.tb_equip.CmdFight":{aliases:[255,4,1,""],func:[255,3,1,""],help_category:[255,4,1,""],key:[255,4,1,""],lock_storage:[255,4,1,""],search_index_entry:[255,4,1,""]},"evennia.contrib.turnbattle.tb_equip.CmdPass":{aliases:[255,4,1,""],func:[255,3,1,""],help_category:[255,4,1,""],key:[255,4,1,""],lock_storage:[255,4,1,""],search_index_entry:[255,4,1,""]},"evennia.contrib.turnbattle.tb_equip.CmdRest":{aliases:[255,4,1,""],func:[255,3,1,""],help_category:[255,4,1,""],key:[255,4,1,""],lock_storage:[255,4,1,""],search_index_entry:[255,4,1,""]},"evennia.contrib.turnbattle.tb_equip.CmdUnwield":{aliases:[255,4,1,""],func:[255,3,1,""],help_category:[255,4,1,""],key:[255,4,1,""],lock_storage:[255,4,1,""],search_index_entry:[255,4,1,""]},"evennia.contrib.turnbattle.tb_equip.CmdWield":{aliases:[255,4,1,""],func:[255,3,1,""],help_category:[255,4,1,""],key:[255,4,1,""],lock_storage:[255,4,1,""],search_index_entry:[255,4,1,""]},"evennia.contrib.turnbattle.tb_equip.TBEArmor":{DoesNotExist:[255,2,1,""],MultipleObjectsReturned:[255,2,1,""],at_before_drop:[255,3,1,""],at_before_give:[255,3,1,""],at_drop:[255,3,1,""],at_give:[255,3,1,""],at_object_creation:[255,3,1,""],path:[255,4,1,""],typename:[255,4,1,""]},"evennia.contrib.turnbattle.tb_equip.TBEWeapon":{DoesNotExist:[255,2,1,""],MultipleObjectsReturned:[255,2,1,""],at_drop:[255,3,1,""],at_give:[255,3,1,""],at_object_creation:[255,3,1,""],path:[255,4,1,""],typename:[255,4,1,""]},"evennia.contrib.turnbattle.tb_equip.TBEquipCharacter":{DoesNotExist:[255,2,1,""],MultipleObjectsReturned:[255,2,1,""],at_before_move:[255,3,1,""],at_object_creation:[255,3,1,""],path:[255,4,1,""],typename:[255,4,1,""]},"evennia.contrib.turnbattle.tb_equip.TBEquipTurnHandler":{DoesNotExist:[255,2,1,""],MultipleObjectsReturned:[255,2,1,""],at_repeat:[255,3,1,""],at_script_creation:[255,3,1,""],at_stop:[255,3,1,""],initialize_for_combat:[255,3,1,""],join_fight:[255,3,1,""],next_turn:[255,3,1,""],path:[255,4,1,""],start_turn:[255,3,1,""],turn_end_check:[255,3,1,""],typename:[255,4,1,""]},"evennia.contrib.turnbattle.tb_items":{BattleCmdSet:[256,1,1,""],CmdAttack:[256,1,1,""],CmdCombatHelp:[256,1,1,""],CmdDisengage:[256,1,1,""],CmdFight:[256,1,1,""],CmdPass:[256,1,1,""],CmdRest:[256,1,1,""],CmdUse:[256,1,1,""],DEF_DOWN_MOD:[256,6,1,""],ITEMFUNCS:[256,6,1,""],TBItemsCharacter:[256,1,1,""],TBItemsCharacterTest:[256,1,1,""],TBItemsTurnHandler:[256,1,1,""],add_condition:[256,5,1,""],apply_damage:[256,5,1,""],at_defeat:[256,5,1,""],combat_cleanup:[256,5,1,""],condition_tickdown:[256,5,1,""],get_attack:[256,5,1,""],get_damage:[256,5,1,""],get_defense:[256,5,1,""],is_in_combat:[256,5,1,""],is_turn:[256,5,1,""],itemfunc_add_condition:[256,5,1,""],itemfunc_attack:[256,5,1,""],itemfunc_cure_condition:[256,5,1,""],itemfunc_heal:[256,5,1,""],resolve_attack:[256,5,1,""],roll_init:[256,5,1,""],spend_action:[256,5,1,""],spend_item_use:[256,5,1,""],use_item:[256,5,1,""]},"evennia.contrib.turnbattle.tb_items.BattleCmdSet":{at_cmdset_creation:[256,3,1,""],key:[256,4,1,""],path:[256,4,1,""]},"evennia.contrib.turnbattle.tb_items.CmdAttack":{aliases:[256,4,1,""],func:[256,3,1,""],help_category:[256,4,1,""],key:[256,4,1,""],lock_storage:[256,4,1,""],search_index_entry:[256,4,1,""]},"evennia.contrib.turnbattle.tb_items.CmdCombatHelp":{aliases:[256,4,1,""],func:[256,3,1,""],help_category:[256,4,1,""],key:[256,4,1,""],lock_storage:[256,4,1,""],search_index_entry:[256,4,1,""]},"evennia.contrib.turnbattle.tb_items.CmdDisengage":{aliases:[256,4,1,""],func:[256,3,1,""],help_category:[256,4,1,""],key:[256,4,1,""],lock_storage:[256,4,1,""],search_index_entry:[256,4,1,""]},"evennia.contrib.turnbattle.tb_items.CmdFight":{aliases:[256,4,1,""],func:[256,3,1,""],help_category:[256,4,1,""],key:[256,4,1,""],lock_storage:[256,4,1,""],search_index_entry:[256,4,1,""]},"evennia.contrib.turnbattle.tb_items.CmdPass":{aliases:[256,4,1,""],func:[256,3,1,""],help_category:[256,4,1,""],key:[256,4,1,""],lock_storage:[256,4,1,""],search_index_entry:[256,4,1,""]},"evennia.contrib.turnbattle.tb_items.CmdRest":{aliases:[256,4,1,""],func:[256,3,1,""],help_category:[256,4,1,""],key:[256,4,1,""],lock_storage:[256,4,1,""],search_index_entry:[256,4,1,""]},"evennia.contrib.turnbattle.tb_items.CmdUse":{aliases:[256,4,1,""],func:[256,3,1,""],help_category:[256,4,1,""],key:[256,4,1,""],lock_storage:[256,4,1,""],search_index_entry:[256,4,1,""]},"evennia.contrib.turnbattle.tb_items.TBItemsCharacter":{DoesNotExist:[256,2,1,""],MultipleObjectsReturned:[256,2,1,""],apply_turn_conditions:[256,3,1,""],at_before_move:[256,3,1,""],at_object_creation:[256,3,1,""],at_turn_start:[256,3,1,""],at_update:[256,3,1,""],path:[256,4,1,""],typename:[256,4,1,""]},"evennia.contrib.turnbattle.tb_items.TBItemsCharacterTest":{DoesNotExist:[256,2,1,""],MultipleObjectsReturned:[256,2,1,""],at_object_creation:[256,3,1,""],path:[256,4,1,""],typename:[256,4,1,""]},"evennia.contrib.turnbattle.tb_items.TBItemsTurnHandler":{DoesNotExist:[256,2,1,""],MultipleObjectsReturned:[256,2,1,""],at_repeat:[256,3,1,""],at_script_creation:[256,3,1,""],at_stop:[256,3,1,""],initialize_for_combat:[256,3,1,""],join_fight:[256,3,1,""],next_turn:[256,3,1,""],path:[256,4,1,""],start_turn:[256,3,1,""],turn_end_check:[256,3,1,""],typename:[256,4,1,""]},"evennia.contrib.turnbattle.tb_magic":{ACTIONS_PER_TURN:[257,6,1,""],BattleCmdSet:[257,1,1,""],CmdAttack:[257,1,1,""],CmdCast:[257,1,1,""],CmdCombatHelp:[257,1,1,""],CmdDisengage:[257,1,1,""],CmdFight:[257,1,1,""],CmdLearnSpell:[257,1,1,""],CmdPass:[257,1,1,""],CmdRest:[257,1,1,""],CmdStatus:[257,1,1,""],TBMagicCharacter:[257,1,1,""],TBMagicTurnHandler:[257,1,1,""],apply_damage:[257,5,1,""],at_defeat:[257,5,1,""],combat_cleanup:[257,5,1,""],get_attack:[257,5,1,""],get_damage:[257,5,1,""],get_defense:[257,5,1,""],is_in_combat:[257,5,1,""],is_turn:[257,5,1,""],resolve_attack:[257,5,1,""],roll_init:[257,5,1,""],spell_attack:[257,5,1,""],spell_conjure:[257,5,1,""],spell_healing:[257,5,1,""],spend_action:[257,5,1,""]},"evennia.contrib.turnbattle.tb_magic.BattleCmdSet":{at_cmdset_creation:[257,3,1,""],key:[257,4,1,""],path:[257,4,1,""]},"evennia.contrib.turnbattle.tb_magic.CmdAttack":{aliases:[257,4,1,""],func:[257,3,1,""],help_category:[257,4,1,""],key:[257,4,1,""],lock_storage:[257,4,1,""],search_index_entry:[257,4,1,""]},"evennia.contrib.turnbattle.tb_magic.CmdCast":{aliases:[257,4,1,""],func:[257,3,1,""],help_category:[257,4,1,""],key:[257,4,1,""],lock_storage:[257,4,1,""],search_index_entry:[257,4,1,""]},"evennia.contrib.turnbattle.tb_magic.CmdCombatHelp":{aliases:[257,4,1,""],func:[257,3,1,""],help_category:[257,4,1,""],key:[257,4,1,""],lock_storage:[257,4,1,""],search_index_entry:[257,4,1,""]},"evennia.contrib.turnbattle.tb_magic.CmdDisengage":{aliases:[257,4,1,""],func:[257,3,1,""],help_category:[257,4,1,""],key:[257,4,1,""],lock_storage:[257,4,1,""],search_index_entry:[257,4,1,""]},"evennia.contrib.turnbattle.tb_magic.CmdFight":{aliases:[257,4,1,""],func:[257,3,1,""],help_category:[257,4,1,""],key:[257,4,1,""],lock_storage:[257,4,1,""],search_index_entry:[257,4,1,""]},"evennia.contrib.turnbattle.tb_magic.CmdLearnSpell":{aliases:[257,4,1,""],func:[257,3,1,""],help_category:[257,4,1,""],key:[257,4,1,""],lock_storage:[257,4,1,""],search_index_entry:[257,4,1,""]},"evennia.contrib.turnbattle.tb_magic.CmdPass":{aliases:[257,4,1,""],func:[257,3,1,""],help_category:[257,4,1,""],key:[257,4,1,""],lock_storage:[257,4,1,""],search_index_entry:[257,4,1,""]},"evennia.contrib.turnbattle.tb_magic.CmdRest":{aliases:[257,4,1,""],func:[257,3,1,""],help_category:[257,4,1,""],key:[257,4,1,""],lock_storage:[257,4,1,""],search_index_entry:[257,4,1,""]},"evennia.contrib.turnbattle.tb_magic.CmdStatus":{aliases:[257,4,1,""],func:[257,3,1,""],help_category:[257,4,1,""],key:[257,4,1,""],lock_storage:[257,4,1,""],search_index_entry:[257,4,1,""]},"evennia.contrib.turnbattle.tb_magic.TBMagicCharacter":{DoesNotExist:[257,2,1,""],MultipleObjectsReturned:[257,2,1,""],at_before_move:[257,3,1,""],at_object_creation:[257,3,1,""],path:[257,4,1,""],typename:[257,4,1,""]},"evennia.contrib.turnbattle.tb_magic.TBMagicTurnHandler":{DoesNotExist:[257,2,1,""],MultipleObjectsReturned:[257,2,1,""],at_repeat:[257,3,1,""],at_script_creation:[257,3,1,""],at_stop:[257,3,1,""],initialize_for_combat:[257,3,1,""],join_fight:[257,3,1,""],next_turn:[257,3,1,""],path:[257,4,1,""],start_turn:[257,3,1,""],turn_end_check:[257,3,1,""],typename:[257,4,1,""]},"evennia.contrib.turnbattle.tb_range":{ACTIONS_PER_TURN:[258,6,1,""],BattleCmdSet:[258,1,1,""],CmdApproach:[258,1,1,""],CmdAttack:[258,1,1,""],CmdCombatHelp:[258,1,1,""],CmdDisengage:[258,1,1,""],CmdFight:[258,1,1,""],CmdPass:[258,1,1,""],CmdRest:[258,1,1,""],CmdShoot:[258,1,1,""],CmdStatus:[258,1,1,""],CmdWithdraw:[258,1,1,""],TBRangeCharacter:[258,1,1,""],TBRangeObject:[258,1,1,""],TBRangeTurnHandler:[258,1,1,""],apply_damage:[258,5,1,""],approach:[258,5,1,""],at_defeat:[258,5,1,""],combat_cleanup:[258,5,1,""],combat_status_message:[258,5,1,""],distance_inc:[258,5,1,""],get_attack:[258,5,1,""],get_damage:[258,5,1,""],get_defense:[258,5,1,""],get_range:[258,5,1,""],is_in_combat:[258,5,1,""],is_turn:[258,5,1,""],resolve_attack:[258,5,1,""],roll_init:[258,5,1,""],spend_action:[258,5,1,""],withdraw:[258,5,1,""]},"evennia.contrib.turnbattle.tb_range.BattleCmdSet":{at_cmdset_creation:[258,3,1,""],key:[258,4,1,""],path:[258,4,1,""]},"evennia.contrib.turnbattle.tb_range.CmdApproach":{aliases:[258,4,1,""],func:[258,3,1,""],help_category:[258,4,1,""],key:[258,4,1,""],lock_storage:[258,4,1,""],search_index_entry:[258,4,1,""]},"evennia.contrib.turnbattle.tb_range.CmdAttack":{aliases:[258,4,1,""],func:[258,3,1,""],help_category:[258,4,1,""],key:[258,4,1,""],lock_storage:[258,4,1,""],search_index_entry:[258,4,1,""]},"evennia.contrib.turnbattle.tb_range.CmdCombatHelp":{aliases:[258,4,1,""],func:[258,3,1,""],help_category:[258,4,1,""],key:[258,4,1,""],lock_storage:[258,4,1,""],search_index_entry:[258,4,1,""]},"evennia.contrib.turnbattle.tb_range.CmdDisengage":{aliases:[258,4,1,""],func:[258,3,1,""],help_category:[258,4,1,""],key:[258,4,1,""],lock_storage:[258,4,1,""],search_index_entry:[258,4,1,""]},"evennia.contrib.turnbattle.tb_range.CmdFight":{aliases:[258,4,1,""],func:[258,3,1,""],help_category:[258,4,1,""],key:[258,4,1,""],lock_storage:[258,4,1,""],search_index_entry:[258,4,1,""]},"evennia.contrib.turnbattle.tb_range.CmdPass":{aliases:[258,4,1,""],func:[258,3,1,""],help_category:[258,4,1,""],key:[258,4,1,""],lock_storage:[258,4,1,""],search_index_entry:[258,4,1,""]},"evennia.contrib.turnbattle.tb_range.CmdRest":{aliases:[258,4,1,""],func:[258,3,1,""],help_category:[258,4,1,""],key:[258,4,1,""],lock_storage:[258,4,1,""],search_index_entry:[258,4,1,""]},"evennia.contrib.turnbattle.tb_range.CmdShoot":{aliases:[258,4,1,""],func:[258,3,1,""],help_category:[258,4,1,""],key:[258,4,1,""],lock_storage:[258,4,1,""],search_index_entry:[258,4,1,""]},"evennia.contrib.turnbattle.tb_range.CmdStatus":{aliases:[258,4,1,""],func:[258,3,1,""],help_category:[258,4,1,""],key:[258,4,1,""],lock_storage:[258,4,1,""],search_index_entry:[258,4,1,""]},"evennia.contrib.turnbattle.tb_range.CmdWithdraw":{aliases:[258,4,1,""],func:[258,3,1,""],help_category:[258,4,1,""],key:[258,4,1,""],lock_storage:[258,4,1,""],search_index_entry:[258,4,1,""]},"evennia.contrib.turnbattle.tb_range.TBRangeCharacter":{DoesNotExist:[258,2,1,""],MultipleObjectsReturned:[258,2,1,""],at_before_move:[258,3,1,""],at_object_creation:[258,3,1,""],path:[258,4,1,""],typename:[258,4,1,""]},"evennia.contrib.turnbattle.tb_range.TBRangeObject":{DoesNotExist:[258,2,1,""],MultipleObjectsReturned:[258,2,1,""],at_before_drop:[258,3,1,""],at_before_get:[258,3,1,""],at_before_give:[258,3,1,""],at_drop:[258,3,1,""],at_get:[258,3,1,""],at_give:[258,3,1,""],path:[258,4,1,""],typename:[258,4,1,""]},"evennia.contrib.turnbattle.tb_range.TBRangeTurnHandler":{DoesNotExist:[258,2,1,""],MultipleObjectsReturned:[258,2,1,""],at_repeat:[258,3,1,""],at_script_creation:[258,3,1,""],at_stop:[258,3,1,""],init_range:[258,3,1,""],initialize_for_combat:[258,3,1,""],join_fight:[258,3,1,""],join_rangefield:[258,3,1,""],next_turn:[258,3,1,""],path:[258,4,1,""],start_turn:[258,3,1,""],turn_end_check:[258,3,1,""],typename:[258,4,1,""]},"evennia.contrib.tutorial_examples":{bodyfunctions:[260,0,0,"-"],mirror:[262,0,0,"-"],red_button:[263,0,0,"-"],tests:[264,0,0,"-"]},"evennia.contrib.tutorial_examples.bodyfunctions":{BodyFunctions:[260,1,1,""]},"evennia.contrib.tutorial_examples.bodyfunctions.BodyFunctions":{DoesNotExist:[260,2,1,""],MultipleObjectsReturned:[260,2,1,""],at_repeat:[260,3,1,""],at_script_creation:[260,3,1,""],path:[260,4,1,""],send_random_message:[260,3,1,""],typename:[260,4,1,""]},"evennia.contrib.tutorial_examples.mirror":{TutorialMirror:[262,1,1,""]},"evennia.contrib.tutorial_examples.mirror.TutorialMirror":{DoesNotExist:[262,2,1,""],MultipleObjectsReturned:[262,2,1,""],msg:[262,3,1,""],path:[262,4,1,""],return_appearance:[262,3,1,""],typename:[262,4,1,""]},"evennia.contrib.tutorial_examples.red_button":{BlindCmdSet:[263,1,1,""],CmdBlindHelp:[263,1,1,""],CmdBlindLook:[263,1,1,""],CmdCloseLid:[263,1,1,""],CmdNudge:[263,1,1,""],CmdOpenLid:[263,1,1,""],CmdPushLidClosed:[263,1,1,""],CmdPushLidOpen:[263,1,1,""],CmdSmashGlass:[263,1,1,""],LidClosedCmdSet:[263,1,1,""],LidOpenCmdSet:[263,1,1,""],RedButton:[263,1,1,""]},"evennia.contrib.tutorial_examples.red_button.BlindCmdSet":{at_cmdset_creation:[263,3,1,""],key:[263,4,1,""],mergetype:[263,4,1,""],no_exits:[263,4,1,""],no_objs:[263,4,1,""],path:[263,4,1,""]},"evennia.contrib.tutorial_examples.red_button.CmdBlindHelp":{aliases:[263,4,1,""],func:[263,3,1,""],help_category:[263,4,1,""],key:[263,4,1,""],lock_storage:[263,4,1,""],locks:[263,4,1,""],search_index_entry:[263,4,1,""]},"evennia.contrib.tutorial_examples.red_button.CmdBlindLook":{aliases:[263,4,1,""],func:[263,3,1,""],help_category:[263,4,1,""],key:[263,4,1,""],lock_storage:[263,4,1,""],locks:[263,4,1,""],search_index_entry:[263,4,1,""]},"evennia.contrib.tutorial_examples.red_button.CmdCloseLid":{aliases:[263,4,1,""],func:[263,3,1,""],help_category:[263,4,1,""],key:[263,4,1,""],lock_storage:[263,4,1,""],locks:[263,4,1,""],search_index_entry:[263,4,1,""]},"evennia.contrib.tutorial_examples.red_button.CmdNudge":{aliases:[263,4,1,""],func:[263,3,1,""],help_category:[263,4,1,""],key:[263,4,1,""],lock_storage:[263,4,1,""],locks:[263,4,1,""],search_index_entry:[263,4,1,""]},"evennia.contrib.tutorial_examples.red_button.CmdOpenLid":{aliases:[263,4,1,""],func:[263,3,1,""],help_category:[263,4,1,""],key:[263,4,1,""],lock_storage:[263,4,1,""],locks:[263,4,1,""],search_index_entry:[263,4,1,""]},"evennia.contrib.tutorial_examples.red_button.CmdPushLidClosed":{aliases:[263,4,1,""],func:[263,3,1,""],help_category:[263,4,1,""],key:[263,4,1,""],lock_storage:[263,4,1,""],locks:[263,4,1,""],search_index_entry:[263,4,1,""]},"evennia.contrib.tutorial_examples.red_button.CmdPushLidOpen":{aliases:[263,4,1,""],func:[263,3,1,""],help_category:[263,4,1,""],key:[263,4,1,""],lock_storage:[263,4,1,""],locks:[263,4,1,""],search_index_entry:[263,4,1,""]},"evennia.contrib.tutorial_examples.red_button.CmdSmashGlass":{aliases:[263,4,1,""],func:[263,3,1,""],help_category:[263,4,1,""],key:[263,4,1,""],lock_storage:[263,4,1,""],locks:[263,4,1,""],search_index_entry:[263,4,1,""]},"evennia.contrib.tutorial_examples.red_button.LidClosedCmdSet":{at_cmdset_creation:[263,3,1,""],key:[263,4,1,""],path:[263,4,1,""]},"evennia.contrib.tutorial_examples.red_button.LidOpenCmdSet":{at_cmdset_creation:[263,3,1,""],key:[263,4,1,""],path:[263,4,1,""]},"evennia.contrib.tutorial_examples.red_button.RedButton":{DoesNotExist:[263,2,1,""],MultipleObjectsReturned:[263,2,1,""],at_object_creation:[263,3,1,""],auto_close_msg:[263,4,1,""],blind_target:[263,3,1,""],blink_msgs:[263,4,1,""],break_lamp:[263,3,1,""],desc_add_lamp_broken:[263,4,1,""],desc_closed_lid:[263,4,1,""],desc_open_lid:[263,4,1,""],lamp_breaks_msg:[263,4,1,""],path:[263,4,1,""],to_closed_state:[263,3,1,""],to_open_state:[263,3,1,""],typename:[263,4,1,""]},"evennia.contrib.tutorial_examples.tests":{TestBodyFunctions:[264,1,1,""]},"evennia.contrib.tutorial_examples.tests.TestBodyFunctions":{script_typeclass:[264,4,1,""],setUp:[264,3,1,""],tearDown:[264,3,1,""],test_at_repeat:[264,3,1,""],test_send_random_message:[264,3,1,""]},"evennia.contrib.tutorial_world":{intro_menu:[266,0,0,"-"],mob:[267,0,0,"-"],objects:[268,0,0,"-"],rooms:[269,0,0,"-"]},"evennia.contrib.tutorial_world.intro_menu":{DemoCommandSetComms:[266,1,1,""],DemoCommandSetHelp:[266,1,1,""],DemoCommandSetRoom:[266,1,1,""],TutorialEvMenu:[266,1,1,""],do_nothing:[266,5,1,""],goto_cleanup_cmdsets:[266,5,1,""],goto_command_demo_comms:[266,5,1,""],goto_command_demo_help:[266,5,1,""],goto_command_demo_room:[266,5,1,""],init_menu:[266,5,1,""],send_testing_tagged:[266,5,1,""]},"evennia.contrib.tutorial_world.intro_menu.DemoCommandSetComms":{at_cmdset_creation:[266,3,1,""],key:[266,4,1,""],no_exits:[266,4,1,""],no_objs:[266,4,1,""],path:[266,4,1,""],priority:[266,4,1,""]},"evennia.contrib.tutorial_world.intro_menu.DemoCommandSetHelp":{at_cmdset_creation:[266,3,1,""],key:[266,4,1,""],path:[266,4,1,""],priority:[266,4,1,""]},"evennia.contrib.tutorial_world.intro_menu.DemoCommandSetRoom":{at_cmdset_creation:[266,3,1,""],key:[266,4,1,""],no_exits:[266,4,1,""],no_objs:[266,4,1,""],path:[266,4,1,""],priority:[266,4,1,""]},"evennia.contrib.tutorial_world.intro_menu.TutorialEvMenu":{close_menu:[266,3,1,""],options_formatter:[266,3,1,""]},"evennia.contrib.tutorial_world.mob":{CmdMobOnOff:[267,1,1,""],Mob:[267,1,1,""],MobCmdSet:[267,1,1,""]},"evennia.contrib.tutorial_world.mob.CmdMobOnOff":{aliases:[267,4,1,""],func:[267,3,1,""],help_category:[267,4,1,""],key:[267,4,1,""],lock_storage:[267,4,1,""],locks:[267,4,1,""],search_index_entry:[267,4,1,""]},"evennia.contrib.tutorial_world.mob.Mob":{DoesNotExist:[267,2,1,""],MultipleObjectsReturned:[267,2,1,""],at_hit:[267,3,1,""],at_init:[267,3,1,""],at_new_arrival:[267,3,1,""],at_object_creation:[267,3,1,""],do_attack:[267,3,1,""],do_hunting:[267,3,1,""],do_patrol:[267,3,1,""],path:[267,4,1,""],set_alive:[267,3,1,""],set_dead:[267,3,1,""],start_attacking:[267,3,1,""],start_hunting:[267,3,1,""],start_idle:[267,3,1,""],start_patrolling:[267,3,1,""],typename:[267,4,1,""]},"evennia.contrib.tutorial_world.mob.MobCmdSet":{at_cmdset_creation:[267,3,1,""],path:[267,4,1,""]},"evennia.contrib.tutorial_world.objects":{CmdAttack:[268,1,1,""],CmdClimb:[268,1,1,""],CmdGetWeapon:[268,1,1,""],CmdLight:[268,1,1,""],CmdPressButton:[268,1,1,""],CmdRead:[268,1,1,""],CmdSetClimbable:[268,1,1,""],CmdSetCrumblingWall:[268,1,1,""],CmdSetLight:[268,1,1,""],CmdSetReadable:[268,1,1,""],CmdSetWeapon:[268,1,1,""],CmdSetWeaponRack:[268,1,1,""],CmdShiftRoot:[268,1,1,""],CrumblingWall:[268,1,1,""],LightSource:[268,1,1,""],Obelisk:[268,1,1,""],TutorialClimbable:[268,1,1,""],TutorialObject:[268,1,1,""],TutorialReadable:[268,1,1,""],TutorialWeapon:[268,1,1,""],TutorialWeaponRack:[268,1,1,""]},"evennia.contrib.tutorial_world.objects.CmdAttack":{aliases:[268,4,1,""],func:[268,3,1,""],help_category:[268,4,1,""],key:[268,4,1,""],lock_storage:[268,4,1,""],locks:[268,4,1,""],search_index_entry:[268,4,1,""]},"evennia.contrib.tutorial_world.objects.CmdClimb":{aliases:[268,4,1,""],func:[268,3,1,""],help_category:[268,4,1,""],key:[268,4,1,""],lock_storage:[268,4,1,""],locks:[268,4,1,""],search_index_entry:[268,4,1,""]},"evennia.contrib.tutorial_world.objects.CmdGetWeapon":{aliases:[268,4,1,""],func:[268,3,1,""],help_category:[268,4,1,""],key:[268,4,1,""],lock_storage:[268,4,1,""],locks:[268,4,1,""],search_index_entry:[268,4,1,""]},"evennia.contrib.tutorial_world.objects.CmdLight":{aliases:[268,4,1,""],func:[268,3,1,""],help_category:[268,4,1,""],key:[268,4,1,""],lock_storage:[268,4,1,""],locks:[268,4,1,""],search_index_entry:[268,4,1,""]},"evennia.contrib.tutorial_world.objects.CmdPressButton":{aliases:[268,4,1,""],func:[268,3,1,""],help_category:[268,4,1,""],key:[268,4,1,""],lock_storage:[268,4,1,""],locks:[268,4,1,""],search_index_entry:[268,4,1,""]},"evennia.contrib.tutorial_world.objects.CmdRead":{aliases:[268,4,1,""],func:[268,3,1,""],help_category:[268,4,1,""],key:[268,4,1,""],lock_storage:[268,4,1,""],locks:[268,4,1,""],search_index_entry:[268,4,1,""]},"evennia.contrib.tutorial_world.objects.CmdSetClimbable":{at_cmdset_creation:[268,3,1,""],path:[268,4,1,""]},"evennia.contrib.tutorial_world.objects.CmdSetCrumblingWall":{at_cmdset_creation:[268,3,1,""],key:[268,4,1,""],path:[268,4,1,""],priority:[268,4,1,""]},"evennia.contrib.tutorial_world.objects.CmdSetLight":{at_cmdset_creation:[268,3,1,""],key:[268,4,1,""],path:[268,4,1,""],priority:[268,4,1,""]},"evennia.contrib.tutorial_world.objects.CmdSetReadable":{at_cmdset_creation:[268,3,1,""],path:[268,4,1,""]},"evennia.contrib.tutorial_world.objects.CmdSetWeapon":{at_cmdset_creation:[268,3,1,""],path:[268,4,1,""]},"evennia.contrib.tutorial_world.objects.CmdSetWeaponRack":{at_cmdset_creation:[268,3,1,""],key:[268,4,1,""],path:[268,4,1,""]},"evennia.contrib.tutorial_world.objects.CmdShiftRoot":{aliases:[268,4,1,""],func:[268,3,1,""],help_category:[268,4,1,""],key:[268,4,1,""],lock_storage:[268,4,1,""],locks:[268,4,1,""],parse:[268,3,1,""],search_index_entry:[268,4,1,""]},"evennia.contrib.tutorial_world.objects.CrumblingWall":{DoesNotExist:[268,2,1,""],MultipleObjectsReturned:[268,2,1,""],at_after_traverse:[268,3,1,""],at_failed_traverse:[268,3,1,""],at_init:[268,3,1,""],at_object_creation:[268,3,1,""],open_wall:[268,3,1,""],path:[268,4,1,""],reset:[268,3,1,""],return_appearance:[268,3,1,""],typename:[268,4,1,""]},"evennia.contrib.tutorial_world.objects.LightSource":{DoesNotExist:[268,2,1,""],MultipleObjectsReturned:[268,2,1,""],at_init:[268,3,1,""],at_object_creation:[268,3,1,""],light:[268,3,1,""],path:[268,4,1,""],typename:[268,4,1,""]},"evennia.contrib.tutorial_world.objects.Obelisk":{DoesNotExist:[268,2,1,""],MultipleObjectsReturned:[268,2,1,""],at_object_creation:[268,3,1,""],path:[268,4,1,""],return_appearance:[268,3,1,""],typename:[268,4,1,""]},"evennia.contrib.tutorial_world.objects.TutorialClimbable":{DoesNotExist:[268,2,1,""],MultipleObjectsReturned:[268,2,1,""],at_object_creation:[268,3,1,""],path:[268,4,1,""],typename:[268,4,1,""]},"evennia.contrib.tutorial_world.objects.TutorialObject":{DoesNotExist:[268,2,1,""],MultipleObjectsReturned:[268,2,1,""],at_object_creation:[268,3,1,""],path:[268,4,1,""],reset:[268,3,1,""],typename:[268,4,1,""]},"evennia.contrib.tutorial_world.objects.TutorialReadable":{DoesNotExist:[268,2,1,""],MultipleObjectsReturned:[268,2,1,""],at_object_creation:[268,3,1,""],path:[268,4,1,""],typename:[268,4,1,""]},"evennia.contrib.tutorial_world.objects.TutorialWeapon":{DoesNotExist:[268,2,1,""],MultipleObjectsReturned:[268,2,1,""],at_object_creation:[268,3,1,""],path:[268,4,1,""],reset:[268,3,1,""],typename:[268,4,1,""]},"evennia.contrib.tutorial_world.objects.TutorialWeaponRack":{DoesNotExist:[268,2,1,""],MultipleObjectsReturned:[268,2,1,""],at_object_creation:[268,3,1,""],path:[268,4,1,""],produce_weapon:[268,3,1,""],typename:[268,4,1,""]},"evennia.contrib.tutorial_world.rooms":{BridgeCmdSet:[269,1,1,""],BridgeRoom:[269,1,1,""],CmdBridgeHelp:[269,1,1,""],CmdDarkHelp:[269,1,1,""],CmdDarkNoMatch:[269,1,1,""],CmdEast:[269,1,1,""],CmdEvenniaIntro:[269,1,1,""],CmdLookBridge:[269,1,1,""],CmdLookDark:[269,1,1,""],CmdSetEvenniaIntro:[269,1,1,""],CmdTutorial:[269,1,1,""],CmdTutorialGiveUp:[269,1,1,""],CmdTutorialLook:[269,1,1,""],CmdTutorialSetDetail:[269,1,1,""],CmdWest:[269,1,1,""],DarkCmdSet:[269,1,1,""],DarkRoom:[269,1,1,""],IntroRoom:[269,1,1,""],OutroRoom:[269,1,1,""],TeleportRoom:[269,1,1,""],TutorialRoom:[269,1,1,""],TutorialRoomCmdSet:[269,1,1,""],WeatherRoom:[269,1,1,""]},"evennia.contrib.tutorial_world.rooms.BridgeCmdSet":{at_cmdset_creation:[269,3,1,""],key:[269,4,1,""],path:[269,4,1,""],priority:[269,4,1,""]},"evennia.contrib.tutorial_world.rooms.BridgeRoom":{DoesNotExist:[269,2,1,""],MultipleObjectsReturned:[269,2,1,""],at_object_creation:[269,3,1,""],at_object_leave:[269,3,1,""],at_object_receive:[269,3,1,""],path:[269,4,1,""],typename:[269,4,1,""],update_weather:[269,3,1,""]},"evennia.contrib.tutorial_world.rooms.CmdBridgeHelp":{aliases:[269,4,1,""],func:[269,3,1,""],help_category:[269,4,1,""],key:[269,4,1,""],lock_storage:[269,4,1,""],locks:[269,4,1,""],search_index_entry:[269,4,1,""]},"evennia.contrib.tutorial_world.rooms.CmdDarkHelp":{aliases:[269,4,1,""],func:[269,3,1,""],help_category:[269,4,1,""],key:[269,4,1,""],lock_storage:[269,4,1,""],locks:[269,4,1,""],search_index_entry:[269,4,1,""]},"evennia.contrib.tutorial_world.rooms.CmdDarkNoMatch":{aliases:[269,4,1,""],func:[269,3,1,""],help_category:[269,4,1,""],key:[269,4,1,""],lock_storage:[269,4,1,""],locks:[269,4,1,""],search_index_entry:[269,4,1,""]},"evennia.contrib.tutorial_world.rooms.CmdEast":{aliases:[269,4,1,""],func:[269,3,1,""],help_category:[269,4,1,""],key:[269,4,1,""],lock_storage:[269,4,1,""],locks:[269,4,1,""],search_index_entry:[269,4,1,""]},"evennia.contrib.tutorial_world.rooms.CmdEvenniaIntro":{aliases:[269,4,1,""],func:[269,3,1,""],help_category:[269,4,1,""],key:[269,4,1,""],lock_storage:[269,4,1,""],search_index_entry:[269,4,1,""]},"evennia.contrib.tutorial_world.rooms.CmdLookBridge":{aliases:[269,4,1,""],func:[269,3,1,""],help_category:[269,4,1,""],key:[269,4,1,""],lock_storage:[269,4,1,""],locks:[269,4,1,""],search_index_entry:[269,4,1,""]},"evennia.contrib.tutorial_world.rooms.CmdLookDark":{aliases:[269,4,1,""],func:[269,3,1,""],help_category:[269,4,1,""],key:[269,4,1,""],lock_storage:[269,4,1,""],locks:[269,4,1,""],search_index_entry:[269,4,1,""]},"evennia.contrib.tutorial_world.rooms.CmdSetEvenniaIntro":{at_cmdset_creation:[269,3,1,""],key:[269,4,1,""],path:[269,4,1,""]},"evennia.contrib.tutorial_world.rooms.CmdTutorial":{aliases:[269,4,1,""],func:[269,3,1,""],help_category:[269,4,1,""],key:[269,4,1,""],lock_storage:[269,4,1,""],locks:[269,4,1,""],search_index_entry:[269,4,1,""]},"evennia.contrib.tutorial_world.rooms.CmdTutorialGiveUp":{aliases:[269,4,1,""],func:[269,3,1,""],help_category:[269,4,1,""],key:[269,4,1,""],lock_storage:[269,4,1,""],search_index_entry:[269,4,1,""]},"evennia.contrib.tutorial_world.rooms.CmdTutorialLook":{aliases:[269,4,1,""],func:[269,3,1,""],help_category:[269,4,1,""],key:[269,4,1,""],lock_storage:[269,4,1,""],search_index_entry:[269,4,1,""]},"evennia.contrib.tutorial_world.rooms.CmdTutorialSetDetail":{aliases:[269,4,1,""],func:[269,3,1,""],help_category:[269,4,1,""],key:[269,4,1,""],lock_storage:[269,4,1,""],locks:[269,4,1,""],search_index_entry:[269,4,1,""]},"evennia.contrib.tutorial_world.rooms.CmdWest":{aliases:[269,4,1,""],func:[269,3,1,""],help_category:[269,4,1,""],key:[269,4,1,""],lock_storage:[269,4,1,""],locks:[269,4,1,""],search_index_entry:[269,4,1,""]},"evennia.contrib.tutorial_world.rooms.DarkCmdSet":{at_cmdset_creation:[269,3,1,""],key:[269,4,1,""],mergetype:[269,4,1,""],path:[269,4,1,""],priority:[269,4,1,""]},"evennia.contrib.tutorial_world.rooms.DarkRoom":{DoesNotExist:[269,2,1,""],MultipleObjectsReturned:[269,2,1,""],at_init:[269,3,1,""],at_object_creation:[269,3,1,""],at_object_leave:[269,3,1,""],at_object_receive:[269,3,1,""],check_light_state:[269,3,1,""],path:[269,4,1,""],typename:[269,4,1,""]},"evennia.contrib.tutorial_world.rooms.IntroRoom":{DoesNotExist:[269,2,1,""],MultipleObjectsReturned:[269,2,1,""],at_object_creation:[269,3,1,""],at_object_receive:[269,3,1,""],path:[269,4,1,""],typename:[269,4,1,""]},"evennia.contrib.tutorial_world.rooms.OutroRoom":{DoesNotExist:[269,2,1,""],MultipleObjectsReturned:[269,2,1,""],at_object_creation:[269,3,1,""],at_object_leave:[269,3,1,""],at_object_receive:[269,3,1,""],path:[269,4,1,""],typename:[269,4,1,""]},"evennia.contrib.tutorial_world.rooms.TeleportRoom":{DoesNotExist:[269,2,1,""],MultipleObjectsReturned:[269,2,1,""],at_object_creation:[269,3,1,""],at_object_receive:[269,3,1,""],path:[269,4,1,""],typename:[269,4,1,""]},"evennia.contrib.tutorial_world.rooms.TutorialRoom":{DoesNotExist:[269,2,1,""],MultipleObjectsReturned:[269,2,1,""],at_object_creation:[269,3,1,""],at_object_receive:[269,3,1,""],path:[269,4,1,""],return_detail:[269,3,1,""],set_detail:[269,3,1,""],typename:[269,4,1,""]},"evennia.contrib.tutorial_world.rooms.TutorialRoomCmdSet":{at_cmdset_creation:[269,3,1,""],key:[269,4,1,""],path:[269,4,1,""],priority:[269,4,1,""]},"evennia.contrib.tutorial_world.rooms.WeatherRoom":{DoesNotExist:[269,2,1,""],MultipleObjectsReturned:[269,2,1,""],at_object_creation:[269,3,1,""],path:[269,4,1,""],typename:[269,4,1,""],update_weather:[269,3,1,""]},"evennia.contrib.unixcommand":{HelpAction:[270,1,1,""],ParseError:[270,2,1,""],UnixCommand:[270,1,1,""],UnixCommandParser:[270,1,1,""]},"evennia.contrib.unixcommand.UnixCommand":{__init__:[270,3,1,""],aliases:[270,4,1,""],func:[270,3,1,""],get_help:[270,3,1,""],help_category:[270,4,1,""],init_parser:[270,3,1,""],key:[270,4,1,""],lock_storage:[270,4,1,""],parse:[270,3,1,""],search_index_entry:[270,4,1,""]},"evennia.contrib.unixcommand.UnixCommandParser":{__init__:[270,3,1,""],format_help:[270,3,1,""],format_usage:[270,3,1,""],print_help:[270,3,1,""],print_usage:[270,3,1,""]},"evennia.contrib.wilderness":{WildernessExit:[271,1,1,""],WildernessMapProvider:[271,1,1,""],WildernessRoom:[271,1,1,""],WildernessScript:[271,1,1,""],create_wilderness:[271,5,1,""],enter_wilderness:[271,5,1,""],get_new_coordinates:[271,5,1,""]},"evennia.contrib.wilderness.WildernessExit":{DoesNotExist:[271,2,1,""],MultipleObjectsReturned:[271,2,1,""],at_traverse:[271,3,1,""],at_traverse_coordinates:[271,3,1,""],mapprovider:[271,3,1,""],path:[271,4,1,""],typename:[271,4,1,""],wilderness:[271,3,1,""]},"evennia.contrib.wilderness.WildernessMapProvider":{at_prepare_room:[271,3,1,""],exit_typeclass:[271,4,1,""],get_location_name:[271,3,1,""],is_valid_coordinates:[271,3,1,""],room_typeclass:[271,4,1,""]},"evennia.contrib.wilderness.WildernessRoom":{DoesNotExist:[271,2,1,""],MultipleObjectsReturned:[271,2,1,""],at_object_leave:[271,3,1,""],at_object_receive:[271,3,1,""],coordinates:[271,3,1,""],get_display_name:[271,3,1,""],location_name:[271,3,1,""],path:[271,4,1,""],set_active_coordinates:[271,3,1,""],typename:[271,4,1,""],wilderness:[271,3,1,""]},"evennia.contrib.wilderness.WildernessScript":{DoesNotExist:[271,2,1,""],MultipleObjectsReturned:[271,2,1,""],at_after_object_leave:[271,3,1,""],at_script_creation:[271,3,1,""],at_start:[271,3,1,""],get_obj_coordinates:[271,3,1,""],get_objs_at_coordinates:[271,3,1,""],is_valid_coordinates:[271,3,1,""],itemcoordinates:[271,3,1,""],mapprovider:[271,3,1,""],move_obj:[271,3,1,""],path:[271,4,1,""],typename:[271,4,1,""]},"evennia.contrib.xyzgrid":{commands:[273,0,0,"-"],example:[274,0,0,"-"],launchcmd:[275,0,0,"-"],prototypes:[276,0,0,"-"],tests:[277,0,0,"-"],utils:[278,0,0,"-"],xymap:[279,0,0,"-"],xymap_legend:[280,0,0,"-"],xyzgrid:[281,0,0,"-"],xyzroom:[282,0,0,"-"]},"evennia.contrib.xyzgrid.commands":{CmdGoto:[273,1,1,""],CmdMap:[273,1,1,""],CmdXYZOpen:[273,1,1,""],CmdXYZTeleport:[273,1,1,""],PathData:[273,1,1,""],XYZGridCmdSet:[273,1,1,""]},"evennia.contrib.xyzgrid.commands.CmdGoto":{aliases:[273,4,1,""],auto_step_delay:[273,4,1,""],default_xyz_path_interrupt_msg:[273,4,1,""],func:[273,3,1,""],help_category:[273,4,1,""],key:[273,4,1,""],lock_storage:[273,4,1,""],locks:[273,4,1,""],search_index_entry:[273,4,1,""]},"evennia.contrib.xyzgrid.commands.CmdMap":{aliases:[273,4,1,""],func:[273,3,1,""],help_category:[273,4,1,""],key:[273,4,1,""],lock_storage:[273,4,1,""],locks:[273,4,1,""],search_index_entry:[273,4,1,""]},"evennia.contrib.xyzgrid.commands.CmdXYZOpen":{aliases:[273,4,1,""],help_category:[273,4,1,""],key:[273,4,1,""],lock_storage:[273,4,1,""],parse:[273,3,1,""],search_index_entry:[273,4,1,""]},"evennia.contrib.xyzgrid.commands.CmdXYZTeleport":{aliases:[273,4,1,""],help_category:[273,4,1,""],key:[273,4,1,""],lock_storage:[273,4,1,""],parse:[273,3,1,""],search_index_entry:[273,4,1,""]},"evennia.contrib.xyzgrid.commands.PathData":{directions:[273,4,1,""],step_sequence:[273,4,1,""],target:[273,4,1,""],task:[273,4,1,""],xymap:[273,4,1,""]},"evennia.contrib.xyzgrid.commands.XYZGridCmdSet":{at_cmdset_creation:[273,3,1,""],key:[273,4,1,""],path:[273,4,1,""]},"evennia.contrib.xyzgrid.example":{TransitionToCave:[274,1,1,""],TransitionToLargeTree:[274,1,1,""]},"evennia.contrib.xyzgrid.example.TransitionToCave":{symbol:[274,4,1,""],target_map_xyz:[274,4,1,""]},"evennia.contrib.xyzgrid.example.TransitionToLargeTree":{symbol:[274,4,1,""],target_map_xyz:[274,4,1,""]},"evennia.contrib.xyzgrid.launchcmd":{xyzcommand:[275,5,1,""]},"evennia.contrib.xyzgrid.tests":{Map12aTransition:[277,1,1,""],Map12bTransition:[277,1,1,""],TestBuildExampleGrid:[277,1,1,""],TestMap10:[277,1,1,""],TestMap11:[277,1,1,""],TestMap1:[277,1,1,""],TestMap2:[277,1,1,""],TestMap3:[277,1,1,""],TestMap4:[277,1,1,""],TestMap5:[277,1,1,""],TestMap6:[277,1,1,""],TestMap7:[277,1,1,""],TestMap8:[277,1,1,""],TestMap9:[277,1,1,""],TestMapStressTest:[277,1,1,""],TestXYZGrid:[277,1,1,""],TestXYZGridTransition:[277,1,1,""]},"evennia.contrib.xyzgrid.tests.Map12aTransition":{symbol:[277,4,1,""],target_map_xyz:[277,4,1,""]},"evennia.contrib.xyzgrid.tests.Map12bTransition":{symbol:[277,4,1,""],target_map_xyz:[277,4,1,""]},"evennia.contrib.xyzgrid.tests.TestBuildExampleGrid":{setUp:[277,3,1,""],tearDown:[277,3,1,""],test_build:[277,3,1,""]},"evennia.contrib.xyzgrid.tests.TestMap1":{test_get_shortest_path:[277,3,1,""],test_get_visual_range__nodes__character:[277,4,1,""],test_get_visual_range__nodes__character_0:[277,3,1,""],test_get_visual_range__nodes__character_1:[277,3,1,""],test_get_visual_range__nodes__character_2:[277,3,1,""],test_get_visual_range__nodes__character_3:[277,3,1,""],test_get_visual_range__nodes__character_4:[277,3,1,""],test_get_visual_range__scan:[277,4,1,""],test_get_visual_range__scan_0:[277,3,1,""],test_get_visual_range__scan_1:[277,3,1,""],test_get_visual_range__scan_2:[277,3,1,""],test_get_visual_range__scan_3:[277,3,1,""],test_get_visual_range__scan__character:[277,4,1,""],test_get_visual_range__scan__character_0:[277,3,1,""],test_get_visual_range__scan__character_1:[277,3,1,""],test_get_visual_range__scan__character_2:[277,3,1,""],test_get_visual_range__scan__character_3:[277,3,1,""],test_node_from_coord:[277,3,1,""],test_spawn:[277,3,1,""],test_str_output:[277,3,1,""]},"evennia.contrib.xyzgrid.tests.TestMap10":{map_data:[277,4,1,""],map_display:[277,4,1,""],test_paths:[277,4,1,""],test_paths_0:[277,3,1,""],test_paths_1:[277,3,1,""],test_shortest_path:[277,4,1,""],test_shortest_path_0:[277,3,1,""],test_shortest_path_1:[277,3,1,""],test_shortest_path_2:[277,3,1,""],test_shortest_path_3:[277,3,1,""],test_shortest_path_4:[277,3,1,""],test_shortest_path_5:[277,3,1,""],test_shortest_path_6:[277,3,1,""],test_shortest_path_7:[277,3,1,""],test_shortest_path_8:[277,3,1,""],test_shortest_path_9:[277,3,1,""],test_spawn:[277,3,1,""],test_str_output:[277,3,1,""]},"evennia.contrib.xyzgrid.tests.TestMap11":{map_data:[277,4,1,""],map_display:[277,4,1,""],test_get_visual_range_with_path:[277,4,1,""],test_get_visual_range_with_path_0:[277,3,1,""],test_get_visual_range_with_path_1:[277,3,1,""],test_paths:[277,4,1,""],test_paths_0:[277,3,1,""],test_paths_1:[277,3,1,""],test_shortest_path:[277,4,1,""],test_shortest_path_0:[277,3,1,""],test_shortest_path_1:[277,3,1,""],test_spawn:[277,3,1,""],test_str_output:[277,3,1,""]},"evennia.contrib.xyzgrid.tests.TestMap2":{map_data:[277,4,1,""],map_display:[277,4,1,""],test_extended_path_tracking__horizontal:[277,3,1,""],test_extended_path_tracking__vertical:[277,3,1,""],test_get_visual_range__nodes__character:[277,4,1,""],test_get_visual_range__nodes__character_0:[277,3,1,""],test_get_visual_range__nodes__character_1:[277,3,1,""],test_get_visual_range__nodes__character_2:[277,3,1,""],test_get_visual_range__nodes__character_3:[277,3,1,""],test_get_visual_range__nodes__character_4:[277,3,1,""],test_get_visual_range__nodes__character_5:[277,3,1,""],test_get_visual_range__nodes__character_6:[277,3,1,""],test_get_visual_range__nodes__character_7:[277,3,1,""],test_get_visual_range__nodes__character_8:[277,3,1,""],test_get_visual_range__nodes__character_9:[277,3,1,""],test_get_visual_range__scan__character:[277,4,1,""],test_get_visual_range__scan__character_0:[277,3,1,""],test_get_visual_range__scan__character_1:[277,3,1,""],test_get_visual_range__scan__character_2:[277,3,1,""],test_get_visual_range__scan__character_3:[277,3,1,""],test_node_from_coord:[277,3,1,""],test_shortest_path:[277,4,1,""],test_shortest_path_0:[277,3,1,""],test_shortest_path_1:[277,3,1,""],test_shortest_path_2:[277,3,1,""],test_shortest_path_3:[277,3,1,""],test_shortest_path_4:[277,3,1,""],test_shortest_path_5:[277,3,1,""],test_shortest_path_6:[277,3,1,""],test_spawn:[277,3,1,""],test_str_output:[277,3,1,""]},"evennia.contrib.xyzgrid.tests.TestMap3":{map_data:[277,4,1,""],map_display:[277,4,1,""],test_get_visual_range__nodes__character:[277,4,1,""],test_get_visual_range__nodes__character_0:[277,3,1,""],test_get_visual_range__nodes__character_1:[277,3,1,""],test_shortest_path:[277,4,1,""],test_shortest_path_00:[277,3,1,""],test_shortest_path_01:[277,3,1,""],test_shortest_path_02:[277,3,1,""],test_shortest_path_03:[277,3,1,""],test_shortest_path_04:[277,3,1,""],test_shortest_path_05:[277,3,1,""],test_shortest_path_06:[277,3,1,""],test_shortest_path_07:[277,3,1,""],test_shortest_path_08:[277,3,1,""],test_shortest_path_09:[277,3,1,""],test_shortest_path_10:[277,3,1,""],test_spawn:[277,3,1,""],test_str_output:[277,3,1,""]},"evennia.contrib.xyzgrid.tests.TestMap4":{map_data:[277,4,1,""],map_display:[277,4,1,""],test_shortest_path:[277,4,1,""],test_shortest_path_0:[277,3,1,""],test_shortest_path_1:[277,3,1,""],test_shortest_path_2:[277,3,1,""],test_shortest_path_3:[277,3,1,""],test_shortest_path_4:[277,3,1,""],test_shortest_path_5:[277,3,1,""],test_spawn:[277,3,1,""],test_str_output:[277,3,1,""]},"evennia.contrib.xyzgrid.tests.TestMap5":{map_data:[277,4,1,""],map_display:[277,4,1,""],test_shortest_path:[277,4,1,""],test_shortest_path_0:[277,3,1,""],test_shortest_path_1:[277,3,1,""],test_shortest_path_2:[277,3,1,""],test_shortest_path_3:[277,3,1,""],test_spawn:[277,3,1,""],test_str_output:[277,3,1,""]},"evennia.contrib.xyzgrid.tests.TestMap6":{map_data:[277,4,1,""],map_display:[277,4,1,""],test_shortest_path:[277,4,1,""],test_shortest_path_0:[277,3,1,""],test_shortest_path_1:[277,3,1,""],test_shortest_path_2:[277,3,1,""],test_shortest_path_3:[277,3,1,""],test_shortest_path_4:[277,3,1,""],test_shortest_path_5:[277,3,1,""],test_shortest_path_6:[277,3,1,""],test_shortest_path_7:[277,3,1,""],test_spawn:[277,3,1,""],test_str_output:[277,3,1,""]},"evennia.contrib.xyzgrid.tests.TestMap7":{map_data:[277,4,1,""],map_display:[277,4,1,""],test_shortest_path:[277,4,1,""],test_shortest_path_0:[277,3,1,""],test_shortest_path_1:[277,3,1,""],test_shortest_path_2:[277,3,1,""],test_shortest_path_3:[277,3,1,""],test_spawn:[277,3,1,""],test_str_output:[277,3,1,""]},"evennia.contrib.xyzgrid.tests.TestMap8":{map_data:[277,4,1,""],map_display:[277,4,1,""],test_get_visual_range__nodes__character:[277,4,1,""],test_get_visual_range__nodes__character_0:[277,3,1,""],test_get_visual_range_with_path:[277,4,1,""],test_get_visual_range_with_path_0:[277,3,1,""],test_get_visual_range_with_path_1:[277,3,1,""],test_get_visual_range_with_path_2:[277,3,1,""],test_get_visual_range_with_path_3:[277,3,1,""],test_get_visual_range_with_path_4:[277,3,1,""],test_shortest_path:[277,4,1,""],test_shortest_path_0:[277,3,1,""],test_shortest_path_1:[277,3,1,""],test_shortest_path_2:[277,3,1,""],test_shortest_path_3:[277,3,1,""],test_shortest_path_4:[277,3,1,""],test_shortest_path_5:[277,3,1,""],test_shortest_path_6:[277,3,1,""],test_spawn:[277,3,1,""],test_str_output:[277,3,1,""]},"evennia.contrib.xyzgrid.tests.TestMap9":{map_data:[277,4,1,""],map_display:[277,4,1,""],test_shortest_path:[277,4,1,""],test_shortest_path_0:[277,3,1,""],test_shortest_path_1:[277,3,1,""],test_shortest_path_2:[277,3,1,""],test_shortest_path_3:[277,3,1,""],test_spawn:[277,3,1,""],test_str_output:[277,3,1,""]},"evennia.contrib.xyzgrid.tests.TestMapStressTest":{test_grid_creation:[277,4,1,""],test_grid_creation_0:[277,3,1,""],test_grid_creation_1:[277,3,1,""],test_grid_pathfind:[277,4,1,""],test_grid_pathfind_0:[277,3,1,""],test_grid_pathfind_1:[277,3,1,""],test_grid_visibility:[277,4,1,""],test_grid_visibility_0:[277,3,1,""],test_grid_visibility_1:[277,3,1,""]},"evennia.contrib.xyzgrid.tests.TestXYZGrid":{setUp:[277,3,1,""],tearDown:[277,3,1,""],test_spawn:[277,3,1,""],test_str_output:[277,3,1,""],zcoord:[277,4,1,""]},"evennia.contrib.xyzgrid.tests.TestXYZGridTransition":{setUp:[277,3,1,""],tearDown:[277,3,1,""],test_shortest_path:[277,4,1,""],test_shortest_path_0:[277,3,1,""],test_shortest_path_1:[277,3,1,""],test_spawn:[277,3,1,""]},"evennia.contrib.xyzgrid.utils":{MapError:[278,2,1,""],MapParserError:[278,2,1,""],MapTransition:[278,2,1,""]},"evennia.contrib.xyzgrid.utils.MapError":{__init__:[278,3,1,""]},"evennia.contrib.xyzgrid.xymap":{XYMap:[279,1,1,""]},"evennia.contrib.xyzgrid.xymap.XYMap":{__init__:[279,3,1,""],calculate_path_matrix:[279,3,1,""],empty_symbol:[279,4,1,""],get_components_with_symbol:[279,3,1,""],get_node_from_coord:[279,3,1,""],get_shortest_path:[279,3,1,""],get_visual_range:[279,3,1,""],legend_key_exceptions:[279,4,1,""],log:[279,3,1,""],mapcorner_symbol:[279,4,1,""],max_pathfinding_length:[279,4,1,""],parse:[279,3,1,""],reload:[279,3,1,""],spawn_links:[279,3,1,""],spawn_nodes:[279,3,1,""]},"evennia.contrib.xyzgrid.xymap_legend":{BasicMapNode:[280,1,1,""],BlockedMapLink:[280,1,1,""],CrossMapLink:[280,1,1,""],DownMapLink:[280,1,1,""],EWMapLink:[280,1,1,""],EWOneWayMapLink:[280,1,1,""],InterruptMapLink:[280,1,1,""],InterruptMapNode:[280,1,1,""],InvisibleSmartMapLink:[280,1,1,""],MapLink:[280,1,1,""],MapNode:[280,1,1,""],MapTransitionNode:[280,1,1,""],NESWMapLink:[280,1,1,""],NSMapLink:[280,1,1,""],NSOneWayMapLink:[280,1,1,""],PlusMapLink:[280,1,1,""],RouterMapLink:[280,1,1,""],SENWMapLink:[280,1,1,""],SNOneWayMapLink:[280,1,1,""],SmartMapLink:[280,1,1,""],SmartRerouterMapLink:[280,1,1,""],SmartTeleporterMapLink:[280,1,1,""],TeleporterMapLink:[280,1,1,""],TransitionMapNode:[280,1,1,""],UpMapLink:[280,1,1,""],WEOneWayMapLink:[280,1,1,""]},"evennia.contrib.xyzgrid.xymap_legend.BasicMapNode":{prototype:[280,4,1,""],symbol:[280,4,1,""]},"evennia.contrib.xyzgrid.xymap_legend.BlockedMapLink":{prototype:[280,4,1,""],symbol:[280,4,1,""],weights:[280,4,1,""]},"evennia.contrib.xyzgrid.xymap_legend.CrossMapLink":{directions:[280,4,1,""],prototype:[280,4,1,""],symbol:[280,4,1,""]},"evennia.contrib.xyzgrid.xymap_legend.DownMapLink":{direction_aliases:[280,4,1,""],prototype:[280,4,1,""],spawn_aliases:[280,4,1,""],symbol:[280,4,1,""]},"evennia.contrib.xyzgrid.xymap_legend.EWMapLink":{directions:[280,4,1,""],prototype:[280,4,1,""],symbol:[280,4,1,""]},"evennia.contrib.xyzgrid.xymap_legend.EWOneWayMapLink":{directions:[280,4,1,""],prototype:[280,4,1,""],symbol:[280,4,1,""]},"evennia.contrib.xyzgrid.xymap_legend.InterruptMapLink":{interrupt_path:[280,4,1,""],prototype:[280,4,1,""],symbol:[280,4,1,""]},"evennia.contrib.xyzgrid.xymap_legend.InterruptMapNode":{display_symbol:[280,4,1,""],interrupt_path:[280,4,1,""],prototype:[280,4,1,""],symbol:[280,4,1,""]},"evennia.contrib.xyzgrid.xymap_legend.InvisibleSmartMapLink":{direction_aliases:[280,4,1,""],display_symbol_aliases:[280,4,1,""],get_display_symbol:[280,3,1,""]},"evennia.contrib.xyzgrid.xymap_legend.MapLink":{__init__:[280,3,1,""],at_empty_target:[280,3,1,""],average_long_link_weights:[280,4,1,""],default_weight:[280,4,1,""],direction_aliases:[280,4,1,""],directions:[280,4,1,""],display_symbol:[280,4,1,""],generate_prototype_key:[280,3,1,""],get_direction:[280,3,1,""],get_display_symbol:[280,3,1,""],get_linked_neighbors:[280,3,1,""],get_weight:[280,3,1,""],interrupt_path:[280,4,1,""],multilink:[280,4,1,""],prototype:[280,4,1,""],spawn_aliases:[280,4,1,""],symbol:[280,4,1,""],traverse:[280,3,1,""],weights:[280,4,1,""]},"evennia.contrib.xyzgrid.xymap_legend.MapNode":{__init__:[280,3,1,""],build_links:[280,3,1,""],direction_spawn_defaults:[280,4,1,""],display_symbol:[280,4,1,""],generate_prototype_key:[280,3,1,""],get_display_symbol:[280,3,1,""],get_exit_spawn_name:[280,3,1,""],get_spawn_xyz:[280,3,1,""],interrupt_path:[280,4,1,""],linkweights:[280,3,1,""],log:[280,3,1,""],multilink:[280,4,1,""],node_index:[280,4,1,""],prototype:[280,4,1,""],spawn:[280,3,1,""],spawn_links:[280,3,1,""],symbol:[280,4,1,""],unspawn:[280,3,1,""]},"evennia.contrib.xyzgrid.xymap_legend.MapTransitionNode":{display_symbol:[280,4,1,""],prototype:[280,4,1,""],symbol:[280,4,1,""],target_map_xyz:[280,4,1,""]},"evennia.contrib.xyzgrid.xymap_legend.NESWMapLink":{directions:[280,4,1,""],prototype:[280,4,1,""],symbol:[280,4,1,""]},"evennia.contrib.xyzgrid.xymap_legend.NSMapLink":{directions:[280,4,1,""],display_symbol:[280,4,1,""],prototype:[280,4,1,""],symbol:[280,4,1,""]},"evennia.contrib.xyzgrid.xymap_legend.NSOneWayMapLink":{directions:[280,4,1,""],prototype:[280,4,1,""],symbol:[280,4,1,""]},"evennia.contrib.xyzgrid.xymap_legend.PlusMapLink":{directions:[280,4,1,""],prototype:[280,4,1,""],symbol:[280,4,1,""]},"evennia.contrib.xyzgrid.xymap_legend.RouterMapLink":{symbol:[280,4,1,""]},"evennia.contrib.xyzgrid.xymap_legend.SENWMapLink":{directions:[280,4,1,""],prototype:[280,4,1,""],symbol:[280,4,1,""]},"evennia.contrib.xyzgrid.xymap_legend.SNOneWayMapLink":{directions:[280,4,1,""],prototype:[280,4,1,""],symbol:[280,4,1,""]},"evennia.contrib.xyzgrid.xymap_legend.SmartMapLink":{get_direction:[280,3,1,""],multilink:[280,4,1,""]},"evennia.contrib.xyzgrid.xymap_legend.SmartRerouterMapLink":{get_direction:[280,3,1,""],multilink:[280,4,1,""]},"evennia.contrib.xyzgrid.xymap_legend.SmartTeleporterMapLink":{__init__:[280,3,1,""],at_empty_target:[280,3,1,""],direction_name:[280,4,1,""],display_symbol:[280,4,1,""],get_direction:[280,3,1,""],symbol:[280,4,1,""]},"evennia.contrib.xyzgrid.xymap_legend.TeleporterMapLink":{symbol:[280,4,1,""]},"evennia.contrib.xyzgrid.xymap_legend.TransitionMapNode":{build_links:[280,3,1,""],display_symbol:[280,4,1,""],get_spawn_xyz:[280,3,1,""],symbol:[280,4,1,""],taget_map_xyz:[280,4,1,""]},"evennia.contrib.xyzgrid.xymap_legend.UpMapLink":{direction_aliases:[280,4,1,""],prototype:[280,4,1,""],spawn_aliases:[280,4,1,""],symbol:[280,4,1,""]},"evennia.contrib.xyzgrid.xymap_legend.WEOneWayMapLink":{directions:[280,4,1,""],prototype:[280,4,1,""],symbol:[280,4,1,""]},"evennia.contrib.xyzgrid.xyzgrid":{XYZGrid:[281,1,1,""],get_xyzgrid:[281,5,1,""]},"evennia.contrib.xyzgrid.xyzgrid.XYZGrid":{"delete":[281,3,1,""],DoesNotExist:[281,2,1,""],MultipleObjectsReturned:[281,2,1,""],add_maps:[281,3,1,""],all_maps:[281,3,1,""],at_script_creation:[281,3,1,""],get_exit:[281,3,1,""],get_map:[281,3,1,""],get_room:[281,3,1,""],grid:[281,3,1,""],log:[281,3,1,""],maps_from_module:[281,3,1,""],path:[281,4,1,""],reload:[281,3,1,""],remove_map:[281,3,1,""],spawn:[281,3,1,""],typename:[281,4,1,""]},"evennia.contrib.xyzgrid.xyzroom":{XYZExit:[282,1,1,""],XYZExitManager:[282,1,1,""],XYZManager:[282,1,1,""],XYZRoom:[282,1,1,""]},"evennia.contrib.xyzgrid.xyzroom.XYZExit":{DoesNotExist:[282,2,1,""],MultipleObjectsReturned:[282,2,1,""],create:[282,3,1,""],objects:[282,4,1,""],path:[282,4,1,""],typename:[282,4,1,""],xyz:[282,3,1,""],xyz_destination:[282,3,1,""],xyzgrid:[282,3,1,""]},"evennia.contrib.xyzgrid.xyzroom.XYZExitManager":{filter_xyz_exit:[282,3,1,""],get_xyz_exit:[282,3,1,""]},"evennia.contrib.xyzgrid.xyzroom.XYZManager":{filter_xyz:[282,3,1,""],get_xyz:[282,3,1,""]},"evennia.contrib.xyzgrid.xyzroom.XYZRoom":{DoesNotExist:[282,2,1,""],MultipleObjectsReturned:[282,2,1,""],create:[282,3,1,""],get_display_name:[282,3,1,""],map_align:[282,4,1,""],map_character_symbol:[282,4,1,""],map_display:[282,4,1,""],map_fill_all:[282,4,1,""],map_mode:[282,4,1,""],map_separator_char:[282,4,1,""],map_target_path_style:[282,4,1,""],map_visual_range:[282,4,1,""],objects:[282,4,1,""],path:[282,4,1,""],return_appearance:[282,3,1,""],typename:[282,4,1,""],xymap:[282,3,1,""],xyz:[282,3,1,""],xyzgrid:[282,3,1,""]},"evennia.help":{filehelp:[284,0,0,"-"],manager:[285,0,0,"-"],models:[286,0,0,"-"],utils:[287,0,0,"-"]},"evennia.help.filehelp":{FileHelpEntry:[284,1,1,""],FileHelpStorageHandler:[284,1,1,""]},"evennia.help.filehelp.FileHelpEntry":{__init__:[284,3,1,""],access:[284,3,1,""],aliases:[284,4,1,""],entrytext:[284,4,1,""],help_category:[284,4,1,""],key:[284,4,1,""],lock_storage:[284,4,1,""],locks:[284,4,1,""],search_index_entry:[284,3,1,""],web_get_admin_url:[284,3,1,""],web_get_detail_url:[284,3,1,""]},"evennia.help.filehelp.FileHelpStorageHandler":{__init__:[284,3,1,""],all:[284,3,1,""],load:[284,3,1,""]},"evennia.help.manager":{HelpEntryManager:[285,1,1,""]},"evennia.help.manager.HelpEntryManager":{all_to_category:[285,3,1,""],find_apropos:[285,3,1,""],find_topicmatch:[285,3,1,""],find_topics_with_category:[285,3,1,""],find_topicsuggestions:[285,3,1,""],get_all_categories:[285,3,1,""],get_all_topics:[285,3,1,""],search_help:[285,3,1,""]},"evennia.help.models":{HelpEntry:[286,1,1,""]},"evennia.help.models.HelpEntry":{DoesNotExist:[286,2,1,""],MultipleObjectsReturned:[286,2,1,""],access:[286,3,1,""],aliases:[286,4,1,""],date_created:[286,3,1,""],db_date_created:[286,4,1,""],db_entrytext:[286,4,1,""],db_help_category:[286,4,1,""],db_key:[286,4,1,""],db_lock_storage:[286,4,1,""],db_tags:[286,4,1,""],entrytext:[286,3,1,""],get_absolute_url:[286,3,1,""],get_next_by_db_date_created:[286,3,1,""],get_previous_by_db_date_created:[286,3,1,""],help_category:[286,3,1,""],id:[286,4,1,""],key:[286,3,1,""],lock_storage:[286,3,1,""],locks:[286,4,1,""],objects:[286,4,1,""],path:[286,4,1,""],search_index_entry:[286,3,1,""],tags:[286,4,1,""],typename:[286,4,1,""],web_get_admin_url:[286,3,1,""],web_get_create_url:[286,3,1,""],web_get_delete_url:[286,3,1,""],web_get_detail_url:[286,3,1,""],web_get_update_url:[286,3,1,""]},"evennia.help.utils":{help_search_with_index:[287,5,1,""],parse_entry_for_subcategories:[287,5,1,""]},"evennia.locks":{lockfuncs:[289,0,0,"-"],lockhandler:[290,0,0,"-"]},"evennia.locks.lockfuncs":{"false":[289,5,1,""],"true":[289,5,1,""],all:[289,5,1,""],attr:[289,5,1,""],attr_eq:[289,5,1,""],attr_ge:[289,5,1,""],attr_gt:[289,5,1,""],attr_le:[289,5,1,""],attr_lt:[289,5,1,""],attr_ne:[289,5,1,""],dbref:[289,5,1,""],has_account:[289,5,1,""],holds:[289,5,1,""],id:[289,5,1,""],inside:[289,5,1,""],inside_rec:[289,5,1,""],locattr:[289,5,1,""],none:[289,5,1,""],objattr:[289,5,1,""],objlocattr:[289,5,1,""],objtag:[289,5,1,""],pdbref:[289,5,1,""],perm:[289,5,1,""],perm_above:[289,5,1,""],pid:[289,5,1,""],pperm:[289,5,1,""],pperm_above:[289,5,1,""],self:[289,5,1,""],serversetting:[289,5,1,""],superuser:[289,5,1,""],tag:[289,5,1,""]},"evennia.locks.lockhandler":{LockException:[290,2,1,""],LockHandler:[290,1,1,""]},"evennia.locks.lockhandler.LockHandler":{"delete":[290,3,1,""],__init__:[290,3,1,""],add:[290,3,1,""],all:[290,3,1,""],append:[290,3,1,""],cache_lock_bypass:[290,3,1,""],check:[290,3,1,""],check_lockstring:[290,3,1,""],clear:[290,3,1,""],get:[290,3,1,""],remove:[290,3,1,""],replace:[290,3,1,""],reset:[290,3,1,""],validate:[290,3,1,""]},"evennia.objects":{manager:[292,0,0,"-"],models:[293,0,0,"-"],objects:[294,0,0,"-"]},"evennia.objects.manager":{ObjectManager:[292,1,1,""]},"evennia.objects.models":{ContentsHandler:[293,1,1,""],ObjectDB:[293,1,1,""]},"evennia.objects.models.ContentsHandler":{__init__:[293,3,1,""],add:[293,3,1,""],clear:[293,3,1,""],get:[293,3,1,""],init:[293,3,1,""],load:[293,3,1,""],remove:[293,3,1,""]},"evennia.objects.models.ObjectDB":{DoesNotExist:[293,2,1,""],MultipleObjectsReturned:[293,2,1,""],account:[293,3,1,""],at_db_location_postsave:[293,3,1,""],cmdset_storage:[293,3,1,""],contents_cache:[293,4,1,""],db_account:[293,4,1,""],db_account_id:[293,4,1,""],db_attributes:[293,4,1,""],db_cmdset_storage:[293,4,1,""],db_destination:[293,4,1,""],db_destination_id:[293,4,1,""],db_home:[293,4,1,""],db_home_id:[293,4,1,""],db_location:[293,4,1,""],db_location_id:[293,4,1,""],db_sessid:[293,4,1,""],db_tags:[293,4,1,""],destination:[293,3,1,""],destinations_set:[293,4,1,""],get_next_by_db_date_created:[293,3,1,""],get_previous_by_db_date_created:[293,3,1,""],hide_from_objects_set:[293,4,1,""],home:[293,3,1,""],homes_set:[293,4,1,""],id:[293,4,1,""],location:[293,3,1,""],locations_set:[293,4,1,""],object_subscription_set:[293,4,1,""],objects:[293,4,1,""],path:[293,4,1,""],receiver_object_set:[293,4,1,""],scriptdb_set:[293,4,1,""],sender_object_set:[293,4,1,""],sessid:[293,3,1,""],typename:[293,4,1,""]},"evennia.objects.objects":{DefaultCharacter:[294,1,1,""],DefaultExit:[294,1,1,""],DefaultObject:[294,1,1,""],DefaultRoom:[294,1,1,""],ExitCommand:[294,1,1,""],ObjectSessionHandler:[294,1,1,""]},"evennia.objects.objects.DefaultCharacter":{DoesNotExist:[294,2,1,""],MultipleObjectsReturned:[294,2,1,""],at_after_move:[294,3,1,""],at_post_puppet:[294,3,1,""],at_post_unpuppet:[294,3,1,""],at_pre_puppet:[294,3,1,""],basetype_setup:[294,3,1,""],connection_time:[294,3,1,""],create:[294,3,1,""],idle_time:[294,3,1,""],lockstring:[294,4,1,""],normalize_name:[294,3,1,""],path:[294,4,1,""],typename:[294,4,1,""],validate_name:[294,3,1,""]},"evennia.objects.objects.DefaultExit":{DoesNotExist:[294,2,1,""],MultipleObjectsReturned:[294,2,1,""],at_cmdset_get:[294,3,1,""],at_failed_traverse:[294,3,1,""],at_init:[294,3,1,""],at_traverse:[294,3,1,""],basetype_setup:[294,3,1,""],create:[294,3,1,""],create_exit_cmdset:[294,3,1,""],exit_command:[294,4,1,""],lockstring:[294,4,1,""],path:[294,4,1,""],priority:[294,4,1,""],typename:[294,4,1,""]},"evennia.objects.objects.DefaultObject":{"delete":[294,3,1,""],DoesNotExist:[294,2,1,""],MultipleObjectsReturned:[294,2,1,""],access:[294,3,1,""],announce_move_from:[294,3,1,""],announce_move_to:[294,3,1,""],at_access:[294,3,1,""],at_after_move:[294,3,1,""],at_after_traverse:[294,3,1,""],at_before_drop:[294,3,1,""],at_before_get:[294,3,1,""],at_before_give:[294,3,1,""],at_before_move:[294,3,1,""],at_before_say:[294,3,1,""],at_cmdset_get:[294,3,1,""],at_desc:[294,3,1,""],at_drop:[294,3,1,""],at_failed_traverse:[294,3,1,""],at_first_save:[294,3,1,""],at_get:[294,3,1,""],at_give:[294,3,1,""],at_init:[294,3,1,""],at_look:[294,3,1,""],at_msg_receive:[294,3,1,""],at_msg_send:[294,3,1,""],at_object_creation:[294,3,1,""],at_object_delete:[294,3,1,""],at_object_leave:[294,3,1,""],at_object_post_copy:[294,3,1,""],at_object_receive:[294,3,1,""],at_post_puppet:[294,3,1,""],at_post_unpuppet:[294,3,1,""],at_pre_puppet:[294,3,1,""],at_pre_unpuppet:[294,3,1,""],at_say:[294,3,1,""],at_server_reload:[294,3,1,""],at_server_shutdown:[294,3,1,""],at_traverse:[294,3,1,""],basetype_posthook_setup:[294,3,1,""],basetype_setup:[294,3,1,""],clear_contents:[294,3,1,""],clear_exits:[294,3,1,""],cmdset:[294,4,1,""],contents:[294,3,1,""],contents_get:[294,3,1,""],contents_set:[294,3,1,""],copy:[294,3,1,""],create:[294,3,1,""],execute_cmd:[294,3,1,""],exits:[294,3,1,""],for_contents:[294,3,1,""],get_display_name:[294,3,1,""],get_numbered_name:[294,3,1,""],has_account:[294,3,1,""],is_connected:[294,3,1,""],is_superuser:[294,3,1,""],lockstring:[294,4,1,""],move_to:[294,3,1,""],msg:[294,3,1,""],msg_contents:[294,3,1,""],nicks:[294,4,1,""],objects:[294,4,1,""],path:[294,4,1,""],return_appearance:[294,3,1,""],scripts:[294,4,1,""],search:[294,3,1,""],search_account:[294,3,1,""],sessions:[294,4,1,""],typename:[294,4,1,""]},"evennia.objects.objects.DefaultRoom":{DoesNotExist:[294,2,1,""],MultipleObjectsReturned:[294,2,1,""],basetype_setup:[294,3,1,""],create:[294,3,1,""],lockstring:[294,4,1,""],path:[294,4,1,""],typename:[294,4,1,""]},"evennia.objects.objects.ExitCommand":{aliases:[294,4,1,""],func:[294,3,1,""],get_extra_info:[294,3,1,""],help_category:[294,4,1,""],key:[294,4,1,""],lock_storage:[294,4,1,""],obj:[294,4,1,""],search_index_entry:[294,4,1,""]},"evennia.objects.objects.ObjectSessionHandler":{__init__:[294,3,1,""],add:[294,3,1,""],all:[294,3,1,""],clear:[294,3,1,""],count:[294,3,1,""],get:[294,3,1,""],remove:[294,3,1,""]},"evennia.prototypes":{menus:[296,0,0,"-"],protfuncs:[297,0,0,"-"],prototypes:[298,0,0,"-"],spawner:[299,0,0,"-"]},"evennia.prototypes.menus":{OLCMenu:[296,1,1,""],node_apply_diff:[296,5,1,""],node_destination:[296,5,1,""],node_examine_entity:[296,5,1,""],node_home:[296,5,1,""],node_index:[296,5,1,""],node_key:[296,5,1,""],node_location:[296,5,1,""],node_prototype_desc:[296,5,1,""],node_prototype_key:[296,5,1,""],node_prototype_save:[296,5,1,""],node_prototype_spawn:[296,5,1,""],node_validate_prototype:[296,5,1,""],start_olc:[296,5,1,""]},"evennia.prototypes.menus.OLCMenu":{display_helptext:[296,3,1,""],helptext_formatter:[296,3,1,""],nodetext_formatter:[296,3,1,""],options_formatter:[296,3,1,""]},"evennia.prototypes.protfuncs":{protfunc_callable_protkey:[297,5,1,""]},"evennia.prototypes.prototypes":{DbPrototype:[298,1,1,""],PermissionError:[298,2,1,""],PrototypeEvMore:[298,1,1,""],ValidationError:[298,2,1,""],check_permission:[298,5,1,""],create_prototype:[298,5,1,""],delete_prototype:[298,5,1,""],format_available_protfuncs:[298,5,1,""],homogenize_prototype:[298,5,1,""],init_spawn_value:[298,5,1,""],list_prototypes:[298,5,1,""],load_module_prototypes:[298,5,1,""],protfunc_parser:[298,5,1,""],prototype_to_str:[298,5,1,""],save_prototype:[298,5,1,""],search_objects_with_prototype:[298,5,1,""],search_prototype:[298,5,1,""],validate_prototype:[298,5,1,""],value_to_obj:[298,5,1,""],value_to_obj_or_any:[298,5,1,""]},"evennia.prototypes.prototypes.DbPrototype":{DoesNotExist:[298,2,1,""],MultipleObjectsReturned:[298,2,1,""],at_script_creation:[298,3,1,""],path:[298,4,1,""],prototype:[298,3,1,""],typename:[298,4,1,""]},"evennia.prototypes.prototypes.PrototypeEvMore":{__init__:[298,3,1,""],init_pages:[298,3,1,""],page_formatter:[298,3,1,""],prototype_paginator:[298,3,1,""]},"evennia.prototypes.spawner":{Unset:[299,1,1,""],batch_create_object:[299,5,1,""],batch_update_objects_with_prototype:[299,5,1,""],flatten_diff:[299,5,1,""],flatten_prototype:[299,5,1,""],format_diff:[299,5,1,""],prototype_diff:[299,5,1,""],prototype_diff_from_object:[299,5,1,""],prototype_from_object:[299,5,1,""],spawn:[299,5,1,""]},"evennia.scripts":{manager:[301,0,0,"-"],models:[302,0,0,"-"],monitorhandler:[303,0,0,"-"],scripthandler:[304,0,0,"-"],scripts:[305,0,0,"-"],taskhandler:[306,0,0,"-"],tickerhandler:[307,0,0,"-"]},"evennia.scripts.manager":{ScriptManager:[301,1,1,""]},"evennia.scripts.models":{ScriptDB:[302,1,1,""]},"evennia.scripts.models.ScriptDB":{DoesNotExist:[302,2,1,""],MultipleObjectsReturned:[302,2,1,""],account:[302,3,1,""],db_account:[302,4,1,""],db_account_id:[302,4,1,""],db_attributes:[302,4,1,""],db_desc:[302,4,1,""],db_interval:[302,4,1,""],db_is_active:[302,4,1,""],db_obj:[302,4,1,""],db_obj_id:[302,4,1,""],db_persistent:[302,4,1,""],db_repeats:[302,4,1,""],db_start_delay:[302,4,1,""],db_tags:[302,4,1,""],desc:[302,3,1,""],get_next_by_db_date_created:[302,3,1,""],get_previous_by_db_date_created:[302,3,1,""],id:[302,4,1,""],interval:[302,3,1,""],is_active:[302,3,1,""],obj:[302,3,1,""],object:[302,3,1,""],objects:[302,4,1,""],path:[302,4,1,""],persistent:[302,3,1,""],receiver_script_set:[302,4,1,""],repeats:[302,3,1,""],sender_script_set:[302,4,1,""],start_delay:[302,3,1,""],typename:[302,4,1,""]},"evennia.scripts.monitorhandler":{MonitorHandler:[303,1,1,""]},"evennia.scripts.monitorhandler.MonitorHandler":{__init__:[303,3,1,""],add:[303,3,1,""],all:[303,3,1,""],at_update:[303,3,1,""],clear:[303,3,1,""],remove:[303,3,1,""],restore:[303,3,1,""],save:[303,3,1,""]},"evennia.scripts.scripthandler":{ScriptHandler:[304,1,1,""]},"evennia.scripts.scripthandler.ScriptHandler":{"delete":[304,3,1,""],__init__:[304,3,1,""],add:[304,3,1,""],all:[304,3,1,""],get:[304,3,1,""],start:[304,3,1,""],stop:[304,3,1,""]},"evennia.scripts.scripts":{DefaultScript:[305,1,1,""],DoNothing:[305,1,1,""],Store:[305,1,1,""]},"evennia.scripts.scripts.DefaultScript":{DoesNotExist:[305,2,1,""],MultipleObjectsReturned:[305,2,1,""],at_pause:[305,3,1,""],at_repeat:[305,3,1,""],at_script_creation:[305,3,1,""],at_script_delete:[305,3,1,""],at_server_reload:[305,3,1,""],at_server_shutdown:[305,3,1,""],at_server_start:[305,3,1,""],at_start:[305,3,1,""],at_stop:[305,3,1,""],create:[305,3,1,""],is_valid:[305,3,1,""],path:[305,4,1,""],typename:[305,4,1,""]},"evennia.scripts.scripts.DoNothing":{DoesNotExist:[305,2,1,""],MultipleObjectsReturned:[305,2,1,""],at_script_creation:[305,3,1,""],path:[305,4,1,""],typename:[305,4,1,""]},"evennia.scripts.scripts.Store":{DoesNotExist:[305,2,1,""],MultipleObjectsReturned:[305,2,1,""],at_script_creation:[305,3,1,""],path:[305,4,1,""],typename:[305,4,1,""]},"evennia.scripts.taskhandler":{TaskHandler:[306,1,1,""],TaskHandlerTask:[306,1,1,""],handle_error:[306,5,1,""]},"evennia.scripts.taskhandler.TaskHandler":{__init__:[306,3,1,""],active:[306,3,1,""],add:[306,3,1,""],call_task:[306,3,1,""],cancel:[306,3,1,""],clean_stale_tasks:[306,3,1,""],clear:[306,3,1,""],create_delays:[306,3,1,""],do_task:[306,3,1,""],exists:[306,3,1,""],get_deferred:[306,3,1,""],load:[306,3,1,""],remove:[306,3,1,""],save:[306,3,1,""]},"evennia.scripts.taskhandler.TaskHandlerTask":{__init__:[306,3,1,""],active:[306,3,1,"id6"],call:[306,3,1,"id3"],called:[306,3,1,""],cancel:[306,3,1,"id5"],do_task:[306,3,1,"id2"],exists:[306,3,1,"id7"],get_deferred:[306,3,1,""],get_id:[306,3,1,"id8"],pause:[306,3,1,"id0"],paused:[306,3,1,""],remove:[306,3,1,"id4"],unpause:[306,3,1,"id1"]},"evennia.scripts.tickerhandler":{Ticker:[307,1,1,""],TickerHandler:[307,1,1,""],TickerPool:[307,1,1,""]},"evennia.scripts.tickerhandler.Ticker":{__init__:[307,3,1,""],add:[307,3,1,""],remove:[307,3,1,""],stop:[307,3,1,""],validate:[307,3,1,""]},"evennia.scripts.tickerhandler.TickerHandler":{__init__:[307,3,1,""],add:[307,3,1,""],all:[307,3,1,""],all_display:[307,3,1,""],clear:[307,3,1,""],remove:[307,3,1,""],restore:[307,3,1,""],save:[307,3,1,""],ticker_pool_class:[307,4,1,""]},"evennia.scripts.tickerhandler.TickerPool":{__init__:[307,3,1,""],add:[307,3,1,""],remove:[307,3,1,""],stop:[307,3,1,""],ticker_class:[307,4,1,""]},"evennia.server":{amp_client:[309,0,0,"-"],connection_wizard:[310,0,0,"-"],deprecations:[311,0,0,"-"],evennia_launcher:[312,0,0,"-"],game_index_client:[313,0,0,"-"],initial_setup:[316,0,0,"-"],inputfuncs:[317,0,0,"-"],manager:[318,0,0,"-"],models:[319,0,0,"-"],portal:[320,0,0,"-"],profiling:[342,0,0,"-"],server:[350,0,0,"-"],serversession:[351,0,0,"-"],session:[352,0,0,"-"],sessionhandler:[353,0,0,"-"],signals:[354,0,0,"-"],throttle:[355,0,0,"-"],validators:[356,0,0,"-"],webserver:[357,0,0,"-"]},"evennia.server.amp_client":{AMPClientFactory:[309,1,1,""],AMPServerClientProtocol:[309,1,1,""]},"evennia.server.amp_client.AMPClientFactory":{__init__:[309,3,1,""],buildProtocol:[309,3,1,""],clientConnectionFailed:[309,3,1,""],clientConnectionLost:[309,3,1,""],factor:[309,4,1,""],initialDelay:[309,4,1,""],maxDelay:[309,4,1,""],noisy:[309,4,1,""],startedConnecting:[309,3,1,""]},"evennia.server.amp_client.AMPServerClientProtocol":{connectionMade:[309,3,1,""],data_to_portal:[309,3,1,""],send_AdminServer2Portal:[309,3,1,""],send_MsgServer2Portal:[309,3,1,""],server_receive_adminportal2server:[309,3,1,""],server_receive_msgportal2server:[309,3,1,""],server_receive_status:[309,3,1,""]},"evennia.server.connection_wizard":{ConnectionWizard:[310,1,1,""],node_game_index_fields:[310,5,1,""],node_game_index_start:[310,5,1,""],node_mssp_start:[310,5,1,""],node_start:[310,5,1,""],node_view_and_apply_settings:[310,5,1,""]},"evennia.server.connection_wizard.ConnectionWizard":{__init__:[310,3,1,""],ask_choice:[310,3,1,""],ask_continue:[310,3,1,""],ask_input:[310,3,1,""],ask_node:[310,3,1,""],ask_yesno:[310,3,1,""],display:[310,3,1,""]},"evennia.server.deprecations":{check_errors:[311,5,1,""],check_warnings:[311,5,1,""]},"evennia.server.evennia_launcher":{AMPLauncherProtocol:[312,1,1,""],MsgLauncher2Portal:[312,1,1,""],MsgStatus:[312,1,1,""],check_database:[312,5,1,""],check_main_evennia_dependencies:[312,5,1,""],collectstatic:[312,5,1,""],create_game_directory:[312,5,1,""],create_secret_key:[312,5,1,""],create_settings_file:[312,5,1,""],create_superuser:[312,5,1,""],del_pid:[312,5,1,""],error_check_python_modules:[312,5,1,""],evennia_version:[312,5,1,""],get_pid:[312,5,1,""],getenv:[312,5,1,""],init_game_directory:[312,5,1,""],kill:[312,5,1,""],list_settings:[312,5,1,""],main:[312,5,1,""],query_info:[312,5,1,""],query_status:[312,5,1,""],reboot_evennia:[312,5,1,""],reload_evennia:[312,5,1,""],run_connect_wizard:[312,5,1,""],run_custom_commands:[312,5,1,""],run_dummyrunner:[312,5,1,""],run_menu:[312,5,1,""],send_instruction:[312,5,1,""],set_gamedir:[312,5,1,""],show_version_info:[312,5,1,""],start_evennia:[312,5,1,""],start_only_server:[312,5,1,""],start_portal_interactive:[312,5,1,""],start_server_interactive:[312,5,1,""],stop_evennia:[312,5,1,""],stop_server_only:[312,5,1,""],tail_log_files:[312,5,1,""],wait_for_status:[312,5,1,""],wait_for_status_reply:[312,5,1,""]},"evennia.server.evennia_launcher.AMPLauncherProtocol":{__init__:[312,3,1,""],receive_status_from_portal:[312,3,1,""],wait_for_status:[312,3,1,""]},"evennia.server.evennia_launcher.MsgLauncher2Portal":{allErrors:[312,4,1,""],arguments:[312,4,1,""],commandName:[312,4,1,""],errors:[312,4,1,""],key:[312,4,1,""],response:[312,4,1,""],reverseErrors:[312,4,1,""]},"evennia.server.evennia_launcher.MsgStatus":{allErrors:[312,4,1,""],arguments:[312,4,1,""],commandName:[312,4,1,""],errors:[312,4,1,""],key:[312,4,1,""],response:[312,4,1,""],reverseErrors:[312,4,1,""]},"evennia.server.game_index_client":{client:[314,0,0,"-"],service:[315,0,0,"-"]},"evennia.server.game_index_client.client":{EvenniaGameIndexClient:[314,1,1,""],QuietHTTP11ClientFactory:[314,1,1,""],SimpleResponseReceiver:[314,1,1,""],StringProducer:[314,1,1,""]},"evennia.server.game_index_client.client.EvenniaGameIndexClient":{__init__:[314,3,1,""],handle_egd_response:[314,3,1,""],send_game_details:[314,3,1,""]},"evennia.server.game_index_client.client.QuietHTTP11ClientFactory":{noisy:[314,4,1,""]},"evennia.server.game_index_client.client.SimpleResponseReceiver":{__init__:[314,3,1,""],connectionLost:[314,3,1,""],dataReceived:[314,3,1,""]},"evennia.server.game_index_client.client.StringProducer":{__init__:[314,3,1,""],pauseProducing:[314,3,1,""],startProducing:[314,3,1,""],stopProducing:[314,3,1,""]},"evennia.server.game_index_client.service":{EvenniaGameIndexService:[315,1,1,""]},"evennia.server.game_index_client.service.EvenniaGameIndexService":{__init__:[315,3,1,""],name:[315,4,1,""],startService:[315,3,1,""],stopService:[315,3,1,""]},"evennia.server.initial_setup":{at_initial_setup:[316,5,1,""],collectstatic:[316,5,1,""],create_objects:[316,5,1,""],handle_setup:[316,5,1,""],reset_server:[316,5,1,""]},"evennia.server.inputfuncs":{"default":[317,5,1,""],bot_data_in:[317,5,1,""],client_options:[317,5,1,""],echo:[317,5,1,""],external_discord_hello:[317,5,1,""],get_client_options:[317,5,1,""],get_inputfuncs:[317,5,1,""],get_value:[317,5,1,""],hello:[317,5,1,""],login:[317,5,1,""],monitor:[317,5,1,""],monitored:[317,5,1,""],msdp_list:[317,5,1,""],msdp_report:[317,5,1,""],msdp_send:[317,5,1,""],msdp_unreport:[317,5,1,""],repeat:[317,5,1,""],supports_set:[317,5,1,""],text:[317,5,1,""],unmonitor:[317,5,1,""],unrepeat:[317,5,1,""],webclient_options:[317,5,1,""]},"evennia.server.manager":{ServerConfigManager:[318,1,1,""]},"evennia.server.manager.ServerConfigManager":{conf:[318,3,1,""]},"evennia.server.models":{ServerConfig:[319,1,1,""]},"evennia.server.models.ServerConfig":{DoesNotExist:[319,2,1,""],MultipleObjectsReturned:[319,2,1,""],db_key:[319,4,1,""],db_value:[319,4,1,""],id:[319,4,1,""],key:[319,3,1,""],objects:[319,4,1,""],path:[319,4,1,""],store:[319,3,1,""],typename:[319,4,1,""],value:[319,3,1,""]},"evennia.server.portal":{amp:[321,0,0,"-"],amp_server:[322,0,0,"-"],grapevine:[323,0,0,"-"],irc:[324,0,0,"-"],mccp:[325,0,0,"-"],mssp:[326,0,0,"-"],mxp:[327,0,0,"-"],naws:[328,0,0,"-"],portal:[329,0,0,"-"],portalsessionhandler:[330,0,0,"-"],rss:[331,0,0,"-"],ssh:[332,0,0,"-"],ssl:[333,0,0,"-"],suppress_ga:[334,0,0,"-"],telnet:[335,0,0,"-"],telnet_oob:[336,0,0,"-"],telnet_ssl:[337,0,0,"-"],tests:[338,0,0,"-"],ttype:[339,0,0,"-"],webclient:[340,0,0,"-"],webclient_ajax:[341,0,0,"-"]},"evennia.server.portal.amp":{AMPMultiConnectionProtocol:[321,1,1,""],AdminPortal2Server:[321,1,1,""],AdminServer2Portal:[321,1,1,""],Compressed:[321,1,1,""],FunctionCall:[321,1,1,""],MsgLauncher2Portal:[321,1,1,""],MsgPortal2Server:[321,1,1,""],MsgServer2Portal:[321,1,1,""],MsgStatus:[321,1,1,""],dumps:[321,5,1,""],loads:[321,5,1,""]},"evennia.server.portal.amp.AMPMultiConnectionProtocol":{__init__:[321,3,1,""],broadcast:[321,3,1,""],connectionLost:[321,3,1,""],connectionMade:[321,3,1,""],dataReceived:[321,3,1,""],data_in:[321,3,1,""],errback:[321,3,1,""],makeConnection:[321,3,1,""],receive_functioncall:[321,3,1,""],send_FunctionCall:[321,3,1,""]},"evennia.server.portal.amp.AdminPortal2Server":{allErrors:[321,4,1,""],arguments:[321,4,1,""],commandName:[321,4,1,""],errors:[321,4,1,""],key:[321,4,1,""],response:[321,4,1,""],reverseErrors:[321,4,1,""]},"evennia.server.portal.amp.AdminServer2Portal":{allErrors:[321,4,1,""],arguments:[321,4,1,""],commandName:[321,4,1,""],errors:[321,4,1,""],key:[321,4,1,""],response:[321,4,1,""],reverseErrors:[321,4,1,""]},"evennia.server.portal.amp.Compressed":{fromBox:[321,3,1,""],fromString:[321,3,1,""],toBox:[321,3,1,""],toString:[321,3,1,""]},"evennia.server.portal.amp.FunctionCall":{allErrors:[321,4,1,""],arguments:[321,4,1,""],commandName:[321,4,1,""],errors:[321,4,1,""],key:[321,4,1,""],response:[321,4,1,""],reverseErrors:[321,4,1,""]},"evennia.server.portal.amp.MsgLauncher2Portal":{allErrors:[321,4,1,""],arguments:[321,4,1,""],commandName:[321,4,1,""],errors:[321,4,1,""],key:[321,4,1,""],response:[321,4,1,""],reverseErrors:[321,4,1,""]},"evennia.server.portal.amp.MsgPortal2Server":{allErrors:[321,4,1,""],arguments:[321,4,1,""],commandName:[321,4,1,""],errors:[321,4,1,""],key:[321,4,1,""],response:[321,4,1,""],reverseErrors:[321,4,1,""]},"evennia.server.portal.amp.MsgServer2Portal":{allErrors:[321,4,1,""],arguments:[321,4,1,""],commandName:[321,4,1,""],errors:[321,4,1,""],key:[321,4,1,""],response:[321,4,1,""],reverseErrors:[321,4,1,""]},"evennia.server.portal.amp.MsgStatus":{allErrors:[321,4,1,""],arguments:[321,4,1,""],commandName:[321,4,1,""],errors:[321,4,1,""],key:[321,4,1,""],response:[321,4,1,""],reverseErrors:[321,4,1,""]},"evennia.server.portal.amp_server":{AMPServerFactory:[322,1,1,""],AMPServerProtocol:[322,1,1,""],getenv:[322,5,1,""]},"evennia.server.portal.amp_server.AMPServerFactory":{__init__:[322,3,1,""],buildProtocol:[322,3,1,""],logPrefix:[322,3,1,""],noisy:[322,4,1,""]},"evennia.server.portal.amp_server.AMPServerProtocol":{connectionLost:[322,3,1,""],data_to_server:[322,3,1,""],get_status:[322,3,1,""],portal_receive_adminserver2portal:[322,3,1,""],portal_receive_launcher2portal:[322,3,1,""],portal_receive_server2portal:[322,3,1,""],portal_receive_status:[322,3,1,""],send_AdminPortal2Server:[322,3,1,""],send_MsgPortal2Server:[322,3,1,""],send_Status2Launcher:[322,3,1,""],start_server:[322,3,1,""],stop_server:[322,3,1,""],wait_for_disconnect:[322,3,1,""],wait_for_server_connect:[322,3,1,""]},"evennia.server.portal.grapevine":{GrapevineClient:[323,1,1,""],RestartingWebsocketServerFactory:[323,1,1,""]},"evennia.server.portal.grapevine.GrapevineClient":{__init__:[323,3,1,""],at_login:[323,3,1,""],data_in:[323,3,1,""],disconnect:[323,3,1,""],onClose:[323,3,1,""],onMessage:[323,3,1,""],onOpen:[323,3,1,""],send_authenticate:[323,3,1,""],send_channel:[323,3,1,""],send_default:[323,3,1,""],send_heartbeat:[323,3,1,""],send_subscribe:[323,3,1,""],send_unsubscribe:[323,3,1,""]},"evennia.server.portal.grapevine.RestartingWebsocketServerFactory":{__init__:[323,3,1,""],buildProtocol:[323,3,1,""],clientConnectionFailed:[323,3,1,""],clientConnectionLost:[323,3,1,""],factor:[323,4,1,""],initialDelay:[323,4,1,""],maxDelay:[323,4,1,""],reconnect:[323,3,1,""],start:[323,3,1,""],startedConnecting:[323,3,1,""]},"evennia.server.portal.irc":{IRCBot:[324,1,1,""],IRCBotFactory:[324,1,1,""],parse_ansi_to_irc:[324,5,1,""],parse_irc_to_ansi:[324,5,1,""]},"evennia.server.portal.irc.IRCBot":{action:[324,3,1,""],at_login:[324,3,1,""],channel:[324,4,1,""],data_in:[324,3,1,""],disconnect:[324,3,1,""],factory:[324,4,1,""],get_nicklist:[324,3,1,""],irc_RPL_ENDOFNAMES:[324,3,1,""],irc_RPL_NAMREPLY:[324,3,1,""],lineRate:[324,4,1,""],logger:[324,4,1,""],nickname:[324,4,1,""],pong:[324,3,1,""],privmsg:[324,3,1,""],send_channel:[324,3,1,""],send_default:[324,3,1,""],send_ping:[324,3,1,""],send_privmsg:[324,3,1,""],send_reconnect:[324,3,1,""],send_request_nicklist:[324,3,1,""],signedOn:[324,3,1,""],sourceURL:[324,4,1,""]},"evennia.server.portal.irc.IRCBotFactory":{__init__:[324,3,1,""],buildProtocol:[324,3,1,""],clientConnectionFailed:[324,3,1,""],clientConnectionLost:[324,3,1,""],factor:[324,4,1,""],initialDelay:[324,4,1,""],maxDelay:[324,4,1,""],reconnect:[324,3,1,""],start:[324,3,1,""],startedConnecting:[324,3,1,""]},"evennia.server.portal.mccp":{Mccp:[325,1,1,""],mccp_compress:[325,5,1,""]},"evennia.server.portal.mccp.Mccp":{__init__:[325,3,1,""],do_mccp:[325,3,1,""],no_mccp:[325,3,1,""]},"evennia.server.portal.mssp":{Mssp:[326,1,1,""]},"evennia.server.portal.mssp.Mssp":{__init__:[326,3,1,""],do_mssp:[326,3,1,""],get_player_count:[326,3,1,""],get_uptime:[326,3,1,""],no_mssp:[326,3,1,""]},"evennia.server.portal.mxp":{Mxp:[327,1,1,""],mxp_parse:[327,5,1,""]},"evennia.server.portal.mxp.Mxp":{__init__:[327,3,1,""],do_mxp:[327,3,1,""],no_mxp:[327,3,1,""]},"evennia.server.portal.naws":{Naws:[328,1,1,""]},"evennia.server.portal.naws.Naws":{__init__:[328,3,1,""],do_naws:[328,3,1,""],negotiate_sizes:[328,3,1,""],no_naws:[328,3,1,""]},"evennia.server.portal.portal":{Portal:[329,1,1,""],Websocket:[329,1,1,""]},"evennia.server.portal.portal.Portal":{__init__:[329,3,1,""],get_info_dict:[329,3,1,""],shutdown:[329,3,1,""]},"evennia.server.portal.portalsessionhandler":{PortalSessionHandler:[330,1,1,""]},"evennia.server.portal.portalsessionhandler.PortalSessionHandler":{__init__:[330,3,1,""],announce_all:[330,3,1,""],at_server_connection:[330,3,1,""],connect:[330,3,1,""],count_loggedin:[330,3,1,""],data_in:[330,3,1,""],data_out:[330,3,1,""],disconnect:[330,3,1,""],disconnect_all:[330,3,1,""],generate_sessid:[330,3,1,""],server_connect:[330,3,1,""],server_disconnect:[330,3,1,""],server_disconnect_all:[330,3,1,""],server_logged_in:[330,3,1,""],server_session_sync:[330,3,1,""],sessions_from_csessid:[330,3,1,""],sync:[330,3,1,""]},"evennia.server.portal.rss":{RSSBotFactory:[331,1,1,""],RSSReader:[331,1,1,""]},"evennia.server.portal.rss.RSSBotFactory":{__init__:[331,3,1,""],start:[331,3,1,""]},"evennia.server.portal.rss.RSSReader":{__init__:[331,3,1,""],data_in:[331,3,1,""],disconnect:[331,3,1,""],get_new:[331,3,1,""],update:[331,3,1,""]},"evennia.server.portal.ssh":{AccountDBPasswordChecker:[332,1,1,""],ExtraInfoAuthServer:[332,1,1,""],PassAvatarIdTerminalRealm:[332,1,1,""],SSHServerFactory:[332,1,1,""],SshProtocol:[332,1,1,""],TerminalSessionTransport_getPeer:[332,1,1,""],getKeyPair:[332,5,1,""],makeFactory:[332,5,1,""]},"evennia.server.portal.ssh.AccountDBPasswordChecker":{__init__:[332,3,1,""],credentialInterfaces:[332,4,1,""],noisy:[332,4,1,""],requestAvatarId:[332,3,1,""]},"evennia.server.portal.ssh.ExtraInfoAuthServer":{auth_password:[332,3,1,""],noisy:[332,4,1,""]},"evennia.server.portal.ssh.PassAvatarIdTerminalRealm":{noisy:[332,4,1,""]},"evennia.server.portal.ssh.SSHServerFactory":{logPrefix:[332,3,1,""],noisy:[332,4,1,""]},"evennia.server.portal.ssh.SshProtocol":{__init__:[332,3,1,""],at_login:[332,3,1,""],connectionLost:[332,3,1,""],connectionMade:[332,3,1,""],data_out:[332,3,1,""],disconnect:[332,3,1,""],getClientAddress:[332,3,1,""],handle_EOF:[332,3,1,""],handle_FF:[332,3,1,""],handle_INT:[332,3,1,""],handle_QUIT:[332,3,1,""],lineReceived:[332,3,1,""],noisy:[332,4,1,""],sendLine:[332,3,1,""],send_default:[332,3,1,""],send_prompt:[332,3,1,""],send_text:[332,3,1,""],terminalSize:[332,3,1,""]},"evennia.server.portal.ssh.TerminalSessionTransport_getPeer":{__init__:[332,3,1,""],noisy:[332,4,1,""]},"evennia.server.portal.ssl":{SSLProtocol:[333,1,1,""],getSSLContext:[333,5,1,""],verify_SSL_key_and_cert:[333,5,1,""]},"evennia.server.portal.ssl.SSLProtocol":{__init__:[333,3,1,""]},"evennia.server.portal.suppress_ga":{SuppressGA:[334,1,1,""]},"evennia.server.portal.suppress_ga.SuppressGA":{__init__:[334,3,1,""],will_suppress_ga:[334,3,1,""],wont_suppress_ga:[334,3,1,""]},"evennia.server.portal.telnet":{TelnetProtocol:[335,1,1,""],TelnetServerFactory:[335,1,1,""]},"evennia.server.portal.telnet.TelnetProtocol":{__init__:[335,3,1,""],applicationDataReceived:[335,3,1,""],at_login:[335,3,1,""],connectionLost:[335,3,1,""],connectionMade:[335,3,1,""],dataReceived:[335,3,1,""],data_in:[335,3,1,""],data_out:[335,3,1,""],disableLocal:[335,3,1,""],disableRemote:[335,3,1,""],disconnect:[335,3,1,""],enableLocal:[335,3,1,""],enableRemote:[335,3,1,""],handshake_done:[335,3,1,""],sendLine:[335,3,1,""],send_default:[335,3,1,""],send_prompt:[335,3,1,""],send_text:[335,3,1,""],toggle_nop_keepalive:[335,3,1,""]},"evennia.server.portal.telnet.TelnetServerFactory":{logPrefix:[335,3,1,""],noisy:[335,4,1,""]},"evennia.server.portal.telnet_oob":{TelnetOOB:[336,1,1,""]},"evennia.server.portal.telnet_oob.TelnetOOB":{__init__:[336,3,1,""],data_out:[336,3,1,""],decode_gmcp:[336,3,1,""],decode_msdp:[336,3,1,""],do_gmcp:[336,3,1,""],do_msdp:[336,3,1,""],encode_gmcp:[336,3,1,""],encode_msdp:[336,3,1,""],no_gmcp:[336,3,1,""],no_msdp:[336,3,1,""]},"evennia.server.portal.telnet_ssl":{SSLProtocol:[337,1,1,""],getSSLContext:[337,5,1,""],verify_or_create_SSL_key_and_cert:[337,5,1,""]},"evennia.server.portal.telnet_ssl.SSLProtocol":{__init__:[337,3,1,""]},"evennia.server.portal.tests":{TestAMPServer:[338,1,1,""],TestIRC:[338,1,1,""],TestTelnet:[338,1,1,""],TestWebSocket:[338,1,1,""]},"evennia.server.portal.tests.TestAMPServer":{setUp:[338,3,1,""],test_amp_in:[338,3,1,""],test_amp_out:[338,3,1,""],test_large_msg:[338,3,1,""]},"evennia.server.portal.tests.TestIRC":{test_bold:[338,3,1,""],test_colors:[338,3,1,""],test_identity:[338,3,1,""],test_italic:[338,3,1,""],test_plain_ansi:[338,3,1,""]},"evennia.server.portal.tests.TestTelnet":{setUp:[338,3,1,""],test_mudlet_ttype:[338,3,1,""]},"evennia.server.portal.tests.TestWebSocket":{setUp:[338,3,1,""],tearDown:[338,3,1,""],test_data_in:[338,3,1,""],test_data_out:[338,3,1,""]},"evennia.server.portal.ttype":{Ttype:[339,1,1,""]},"evennia.server.portal.ttype.Ttype":{__init__:[339,3,1,""],will_ttype:[339,3,1,""],wont_ttype:[339,3,1,""]},"evennia.server.portal.webclient":{WebSocketClient:[340,1,1,""]},"evennia.server.portal.webclient.WebSocketClient":{__init__:[340,3,1,""],at_login:[340,3,1,""],data_in:[340,3,1,""],disconnect:[340,3,1,""],get_client_session:[340,3,1,""],nonce:[340,4,1,""],onClose:[340,3,1,""],onMessage:[340,3,1,""],onOpen:[340,3,1,""],sendLine:[340,3,1,""],send_default:[340,3,1,""],send_prompt:[340,3,1,""],send_text:[340,3,1,""]},"evennia.server.portal.webclient_ajax":{AjaxWebClient:[341,1,1,""],AjaxWebClientSession:[341,1,1,""],LazyEncoder:[341,1,1,""],jsonify:[341,5,1,""]},"evennia.server.portal.webclient_ajax.AjaxWebClient":{__init__:[341,3,1,""],allowedMethods:[341,4,1,""],at_login:[341,3,1,""],client_disconnect:[341,3,1,""],get_client_sessid:[341,3,1,""],isLeaf:[341,4,1,""],lineSend:[341,3,1,""],mode_close:[341,3,1,""],mode_init:[341,3,1,""],mode_input:[341,3,1,""],mode_keepalive:[341,3,1,""],mode_receive:[341,3,1,""],render_POST:[341,3,1,""]},"evennia.server.portal.webclient_ajax.AjaxWebClientSession":{__init__:[341,3,1,""],at_login:[341,3,1,""],data_in:[341,3,1,""],data_out:[341,3,1,""],disconnect:[341,3,1,""],get_client_session:[341,3,1,""],send_default:[341,3,1,""],send_prompt:[341,3,1,""],send_text:[341,3,1,""]},"evennia.server.portal.webclient_ajax.LazyEncoder":{"default":[341,3,1,""]},"evennia.server.profiling":{dummyrunner:[343,0,0,"-"],dummyrunner_settings:[344,0,0,"-"],memplot:[345,0,0,"-"],settings_mixin:[346,0,0,"-"],test_queries:[347,0,0,"-"],tests:[348,0,0,"-"],timetrace:[349,0,0,"-"]},"evennia.server.profiling.dummyrunner":{CmdDummyRunnerEchoResponse:[343,1,1,""],DummyClient:[343,1,1,""],DummyFactory:[343,1,1,""],DummyRunnerCmdSet:[343,1,1,""],gidcounter:[343,5,1,""],idcounter:[343,5,1,""],makeiter:[343,5,1,""],start_all_dummy_clients:[343,5,1,""]},"evennia.server.profiling.dummyrunner.CmdDummyRunnerEchoResponse":{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.server.profiling.dummyrunner.DummyClient":{connectionLost:[343,3,1,""],connectionMade:[343,3,1,""],counter:[343,3,1,""],dataReceived:[343,3,1,""],error:[343,3,1,""],logout:[343,3,1,""],report:[343,3,1,""],step:[343,3,1,""]},"evennia.server.profiling.dummyrunner.DummyFactory":{__init__:[343,3,1,""],initialDelay:[343,4,1,""],maxDelay:[343,4,1,""],noisy:[343,4,1,""],protocol:[343,4,1,""]},"evennia.server.profiling.dummyrunner.DummyRunnerCmdSet":{at_cmdset_creation:[343,3,1,""],path:[343,4,1,""]},"evennia.server.profiling.dummyrunner_settings":{c_creates_button:[344,5,1,""],c_creates_obj:[344,5,1,""],c_digs:[344,5,1,""],c_examines:[344,5,1,""],c_help:[344,5,1,""],c_idles:[344,5,1,""],c_login:[344,5,1,""],c_login_nodig:[344,5,1,""],c_logout:[344,5,1,""],c_looks:[344,5,1,""],c_measure_lag:[344,5,1,""],c_moves:[344,5,1,""],c_moves_n:[344,5,1,""],c_moves_s:[344,5,1,""],c_socialize:[344,5,1,""]},"evennia.server.profiling.memplot":{Memplot:[345,1,1,""]},"evennia.server.profiling.memplot.Memplot":{DoesNotExist:[345,2,1,""],MultipleObjectsReturned:[345,2,1,""],at_repeat:[345,3,1,""],at_script_creation:[345,3,1,""],path:[345,4,1,""],typename:[345,4,1,""]},"evennia.server.profiling.test_queries":{count_queries:[347,5,1,""]},"evennia.server.profiling.tests":{TestDummyrunnerSettings:[348,1,1,""],TestMemPlot:[348,1,1,""]},"evennia.server.profiling.tests.TestDummyrunnerSettings":{clear_client_lists:[348,3,1,""],perception_method_tests:[348,3,1,""],setUp:[348,3,1,""],test_c_creates_button:[348,3,1,""],test_c_creates_obj:[348,3,1,""],test_c_digs:[348,3,1,""],test_c_examines:[348,3,1,""],test_c_help:[348,3,1,""],test_c_login:[348,3,1,""],test_c_login_no_dig:[348,3,1,""],test_c_logout:[348,3,1,""],test_c_looks:[348,3,1,""],test_c_move_n:[348,3,1,""],test_c_move_s:[348,3,1,""],test_c_moves:[348,3,1,""],test_c_socialize:[348,3,1,""],test_idles:[348,3,1,""]},"evennia.server.profiling.tests.TestMemPlot":{test_memplot:[348,3,1,""]},"evennia.server.profiling.timetrace":{timetrace:[349,5,1,""]},"evennia.server.server":{Evennia:[350,1,1,""]},"evennia.server.server.Evennia":{__init__:[350,3,1,""],at_post_portal_sync:[350,3,1,""],at_server_cold_start:[350,3,1,""],at_server_cold_stop:[350,3,1,""],at_server_reload_start:[350,3,1,""],at_server_reload_stop:[350,3,1,""],at_server_start:[350,3,1,""],at_server_stop:[350,3,1,""],create_default_channels:[350,3,1,""],get_info_dict:[350,3,1,""],run_init_hooks:[350,3,1,""],run_initial_setup:[350,3,1,""],shutdown:[350,3,1,""],sqlite3_prep:[350,3,1,""],update_defaults:[350,3,1,""]},"evennia.server.serversession":{ServerSession:[351,1,1,""]},"evennia.server.serversession.ServerSession":{__init__:[351,3,1,""],access:[351,3,1,""],at_cmdset_get:[351,3,1,""],at_disconnect:[351,3,1,""],at_login:[351,3,1,""],at_sync:[351,3,1,""],attributes:[351,4,1,""],cmdset_storage:[351,3,1,""],data_in:[351,3,1,""],data_out:[351,3,1,""],db:[351,3,1,""],execute_cmd:[351,3,1,""],get_account:[351,3,1,""],get_character:[351,3,1,""],get_client_size:[351,3,1,""],get_puppet:[351,3,1,""],get_puppet_or_account:[351,3,1,""],id:[351,3,1,""],log:[351,3,1,""],msg:[351,3,1,""],nattributes:[351,4,1,""],ndb:[351,3,1,""],ndb_del:[351,3,1,""],ndb_get:[351,3,1,""],ndb_set:[351,3,1,""],update_flags:[351,3,1,""],update_session_counters:[351,3,1,""]},"evennia.server.session":{Session:[352,1,1,""]},"evennia.server.session.Session":{at_sync:[352,3,1,""],data_in:[352,3,1,""],data_out:[352,3,1,""],disconnect:[352,3,1,""],get_sync_data:[352,3,1,""],init_session:[352,3,1,""],load_sync_data:[352,3,1,""]},"evennia.server.sessionhandler":{DummySession:[353,1,1,""],ServerSessionHandler:[353,1,1,""],SessionHandler:[353,1,1,""],delayed_import:[353,5,1,""]},"evennia.server.sessionhandler.DummySession":{sessid:[353,4,1,""]},"evennia.server.sessionhandler.ServerSessionHandler":{__init__:[353,3,1,""],account_count:[353,3,1,""],all_connected_accounts:[353,3,1,""],all_sessions_portal_sync:[353,3,1,""],announce_all:[353,3,1,""],call_inputfuncs:[353,3,1,""],data_in:[353,3,1,""],data_out:[353,3,1,""],disconnect:[353,3,1,""],disconnect_all_sessions:[353,3,1,""],disconnect_duplicate_sessions:[353,3,1,""],get_inputfuncs:[353,3,1,""],login:[353,3,1,""],portal_connect:[353,3,1,""],portal_disconnect:[353,3,1,""],portal_disconnect_all:[353,3,1,""],portal_reset_server:[353,3,1,""],portal_restart_server:[353,3,1,""],portal_session_sync:[353,3,1,""],portal_sessions_sync:[353,3,1,""],portal_shutdown:[353,3,1,""],session_from_account:[353,3,1,""],session_from_sessid:[353,3,1,""],session_portal_partial_sync:[353,3,1,""],session_portal_sync:[353,3,1,""],sessions_from_account:[353,3,1,""],sessions_from_character:[353,3,1,""],sessions_from_csessid:[353,3,1,""],sessions_from_puppet:[353,3,1,""],start_bot_session:[353,3,1,""],validate_sessions:[353,3,1,""]},"evennia.server.sessionhandler.SessionHandler":{clean_senddata:[353,3,1,""],get:[353,3,1,""],get_all_sync_data:[353,3,1,""],get_sessions:[353,3,1,""]},"evennia.server.throttle":{Throttle:[355,1,1,""]},"evennia.server.throttle.Throttle":{__init__:[355,3,1,""],check:[355,3,1,""],error_msg:[355,4,1,""],get:[355,3,1,""],get_cache_key:[355,3,1,""],record_ip:[355,3,1,""],remove:[355,3,1,""],touch:[355,3,1,""],unrecord_ip:[355,3,1,""],update:[355,3,1,""]},"evennia.server.validators":{EvenniaPasswordValidator:[356,1,1,""],EvenniaUsernameAvailabilityValidator:[356,1,1,""]},"evennia.server.validators.EvenniaPasswordValidator":{__init__:[356,3,1,""],get_help_text:[356,3,1,""],validate:[356,3,1,""]},"evennia.server.webserver":{DjangoWebRoot:[357,1,1,""],EvenniaReverseProxyResource:[357,1,1,""],HTTPChannelWithXForwardedFor:[357,1,1,""],LockableThreadPool:[357,1,1,""],PrivateStaticRoot:[357,1,1,""],WSGIWebServer:[357,1,1,""],Website:[357,1,1,""]},"evennia.server.webserver.DjangoWebRoot":{__init__:[357,3,1,""],empty_threadpool:[357,3,1,""],getChild:[357,3,1,""]},"evennia.server.webserver.EvenniaReverseProxyResource":{getChild:[357,3,1,""],render:[357,3,1,""]},"evennia.server.webserver.HTTPChannelWithXForwardedFor":{allHeadersReceived:[357,3,1,""]},"evennia.server.webserver.LockableThreadPool":{__init__:[357,3,1,""],callInThread:[357,3,1,""],lock:[357,3,1,""]},"evennia.server.webserver.PrivateStaticRoot":{directoryListing:[357,3,1,""]},"evennia.server.webserver.WSGIWebServer":{__init__:[357,3,1,""],startService:[357,3,1,""],stopService:[357,3,1,""]},"evennia.server.webserver.Website":{log:[357,3,1,""],logPrefix:[357,3,1,""],noisy:[357,4,1,""]},"evennia.typeclasses":{attributes:[360,0,0,"-"],managers:[361,0,0,"-"],models:[362,0,0,"-"],tags:[363,0,0,"-"]},"evennia.typeclasses.attributes":{Attribute:[360,1,1,""],AttributeHandler:[360,1,1,""],DbHolder:[360,1,1,""],IAttribute:[360,1,1,""],IAttributeBackend:[360,1,1,""],InMemoryAttribute:[360,1,1,""],InMemoryAttributeBackend:[360,1,1,""],ModelAttributeBackend:[360,1,1,""],NickHandler:[360,1,1,""],NickTemplateInvalid:[360,2,1,""],initialize_nick_templates:[360,5,1,""],parse_nick_template:[360,5,1,""]},"evennia.typeclasses.attributes.Attribute":{DoesNotExist:[360,2,1,""],MultipleObjectsReturned:[360,2,1,""],accountdb_set:[360,4,1,""],attrtype:[360,3,1,""],category:[360,3,1,""],channeldb_set:[360,4,1,""],date_created:[360,3,1,""],db_attrtype:[360,4,1,""],db_category:[360,4,1,""],db_date_created:[360,4,1,""],db_key:[360,4,1,""],db_lock_storage:[360,4,1,""],db_model:[360,4,1,""],db_strvalue:[360,4,1,""],db_value:[360,4,1,""],get_next_by_db_date_created:[360,3,1,""],get_previous_by_db_date_created:[360,3,1,""],id:[360,4,1,""],key:[360,3,1,""],lock_storage:[360,3,1,""],model:[360,3,1,""],objectdb_set:[360,4,1,""],path:[360,4,1,""],scriptdb_set:[360,4,1,""],strvalue:[360,3,1,""],typename:[360,4,1,""],value:[360,3,1,""]},"evennia.typeclasses.attributes.AttributeHandler":{__init__:[360,3,1,""],add:[360,3,1,""],all:[360,3,1,""],batch_add:[360,3,1,""],clear:[360,3,1,""],get:[360,3,1,""],has:[360,3,1,""],remove:[360,3,1,""],reset_cache:[360,3,1,""]},"evennia.typeclasses.attributes.DbHolder":{__init__:[360,3,1,""],all:[360,3,1,""],get_all:[360,3,1,""]},"evennia.typeclasses.attributes.IAttribute":{access:[360,3,1,""],attrtype:[360,3,1,""],category:[360,3,1,""],date_created:[360,3,1,""],key:[360,3,1,""],lock_storage:[360,3,1,""],locks:[360,4,1,""],model:[360,3,1,""],strvalue:[360,3,1,""]},"evennia.typeclasses.attributes.IAttributeBackend":{__init__:[360,3,1,""],batch_add:[360,3,1,""],clear_attributes:[360,3,1,""],create_attribute:[360,3,1,""],delete_attribute:[360,3,1,""],do_batch_delete:[360,3,1,""],do_batch_finish:[360,3,1,""],do_batch_update_attribute:[360,3,1,""],do_create_attribute:[360,3,1,""],do_delete_attribute:[360,3,1,""],do_update_attribute:[360,3,1,""],get:[360,3,1,""],get_all_attributes:[360,3,1,""],query_all:[360,3,1,""],query_category:[360,3,1,""],query_key:[360,3,1,""],reset_cache:[360,3,1,""],update_attribute:[360,3,1,""]},"evennia.typeclasses.attributes.InMemoryAttribute":{__init__:[360,3,1,""],value:[360,3,1,""]},"evennia.typeclasses.attributes.InMemoryAttributeBackend":{__init__:[360,3,1,""],do_batch_finish:[360,3,1,""],do_batch_update_attribute:[360,3,1,""],do_create_attribute:[360,3,1,""],do_delete_attribute:[360,3,1,""],do_update_attribute:[360,3,1,""],query_all:[360,3,1,""],query_category:[360,3,1,""],query_key:[360,3,1,""]},"evennia.typeclasses.attributes.ModelAttributeBackend":{__init__:[360,3,1,""],do_batch_finish:[360,3,1,""],do_batch_update_attribute:[360,3,1,""],do_create_attribute:[360,3,1,""],do_delete_attribute:[360,3,1,""],do_update_attribute:[360,3,1,""],query_all:[360,3,1,""],query_category:[360,3,1,""],query_key:[360,3,1,""]},"evennia.typeclasses.attributes.NickHandler":{__init__:[360,3,1,""],add:[360,3,1,""],get:[360,3,1,""],has:[360,3,1,""],nickreplace:[360,3,1,""],remove:[360,3,1,""]},"evennia.typeclasses.managers":{TypedObjectManager:[361,1,1,""]},"evennia.typeclasses.managers.TypedObjectManager":{create_tag:[361,3,1,""],dbref:[361,3,1,""],dbref_search:[361,3,1,""],get_alias:[361,3,1,""],get_attribute:[361,3,1,""],get_by_alias:[361,3,1,""],get_by_attribute:[361,3,1,""],get_by_nick:[361,3,1,""],get_by_permission:[361,3,1,""],get_by_tag:[361,3,1,""],get_dbref_range:[361,3,1,""],get_id:[361,3,1,""],get_nick:[361,3,1,""],get_permission:[361,3,1,""],get_tag:[361,3,1,""],get_typeclass_totals:[361,3,1,""],object_totals:[361,3,1,""],typeclass_search:[361,3,1,""]},"evennia.typeclasses.models":{TypedObject:[362,1,1,""]},"evennia.typeclasses.models.TypedObject":{"delete":[362,3,1,""],Meta:[362,1,1,""],__init__:[362,3,1,""],access:[362,3,1,""],aliases:[362,4,1,""],at_idmapper_flush:[362,3,1,""],at_rename:[362,3,1,""],attributes:[362,4,1,""],check_permstring:[362,3,1,""],date_created:[362,3,1,""],db:[362,3,1,""],db_attributes:[362,4,1,""],db_date_created:[362,4,1,""],db_key:[362,4,1,""],db_lock_storage:[362,4,1,""],db_tags:[362,4,1,""],db_typeclass_path:[362,4,1,""],dbid:[362,3,1,""],dbref:[362,3,1,""],get_absolute_url:[362,3,1,""],get_display_name:[362,3,1,""],get_extra_info:[362,3,1,""],get_next_by_db_date_created:[362,3,1,""],get_previous_by_db_date_created:[362,3,1,""],is_typeclass:[362,3,1,""],key:[362,3,1,""],lock_storage:[362,3,1,""],locks:[362,4,1,""],name:[362,3,1,""],nattributes:[362,4,1,""],ndb:[362,3,1,""],objects:[362,4,1,""],path:[362,4,1,""],permissions:[362,4,1,""],set_class_from_typeclass:[362,3,1,""],swap_typeclass:[362,3,1,""],tags:[362,4,1,""],typeclass_path:[362,3,1,""],typename:[362,4,1,""],web_get_admin_url:[362,3,1,""],web_get_create_url:[362,3,1,""],web_get_delete_url:[362,3,1,""],web_get_detail_url:[362,3,1,""],web_get_puppet_url:[362,3,1,""],web_get_update_url:[362,3,1,""]},"evennia.typeclasses.models.TypedObject.Meta":{"abstract":[362,4,1,""],ordering:[362,4,1,""],verbose_name:[362,4,1,""]},"evennia.typeclasses.tags":{AliasHandler:[363,1,1,""],PermissionHandler:[363,1,1,""],Tag:[363,1,1,""],TagHandler:[363,1,1,""]},"evennia.typeclasses.tags.Tag":{DoesNotExist:[363,2,1,""],MultipleObjectsReturned:[363,2,1,""],accountdb_set:[363,4,1,""],channeldb_set:[363,4,1,""],db_category:[363,4,1,""],db_data:[363,4,1,""],db_key:[363,4,1,""],db_model:[363,4,1,""],db_tagtype:[363,4,1,""],helpentry_set:[363,4,1,""],id:[363,4,1,""],msg_set:[363,4,1,""],objectdb_set:[363,4,1,""],objects:[363,4,1,""],scriptdb_set:[363,4,1,""]},"evennia.typeclasses.tags.TagHandler":{__init__:[363,3,1,""],add:[363,3,1,""],all:[363,3,1,""],batch_add:[363,3,1,""],clear:[363,3,1,""],get:[363,3,1,""],has:[363,3,1,""],remove:[363,3,1,""],reset_cache:[363,3,1,""]},"evennia.utils":{ansi:[365,0,0,"-"],batchprocessors:[366,0,0,"-"],containers:[367,0,0,"-"],create:[368,0,0,"-"],dbserialize:[369,0,0,"-"],eveditor:[370,0,0,"-"],evform:[371,0,0,"-"],evmenu:[372,0,0,"-"],evmore:[373,0,0,"-"],evtable:[374,0,0,"-"],funcparser:[375,0,0,"-"],gametime:[376,0,0,"-"],idmapper:[377,0,0,"-"],logger:[381,0,0,"-"],optionclasses:[382,0,0,"-"],optionhandler:[383,0,0,"-"],picklefield:[384,0,0,"-"],search:[385,0,0,"-"],test_resources:[386,0,0,"-"],text2html:[387,0,0,"-"],utils:[388,0,0,"-"],validatorfuncs:[389,0,0,"-"],verb_conjugation:[390,0,0,"-"]},"evennia.utils.ansi":{ANSIMeta:[365,1,1,""],ANSIParser:[365,1,1,""],ANSIString:[365,1,1,""],parse_ansi:[365,5,1,""],raw:[365,5,1,""],strip_ansi:[365,5,1,""],strip_raw_ansi:[365,5,1,""]},"evennia.utils.ansi.ANSIMeta":{__init__:[365,3,1,""]},"evennia.utils.ansi.ANSIParser":{ansi_escapes:[365,4,1,""],ansi_map:[365,4,1,""],ansi_map_dict:[365,4,1,""],ansi_re:[365,4,1,""],ansi_regex:[365,4,1,""],ansi_sub:[365,4,1,""],ansi_xterm256_bright_bg_map:[365,4,1,""],ansi_xterm256_bright_bg_map_dict:[365,4,1,""],brightbg_sub:[365,4,1,""],mxp_re:[365,4,1,""],mxp_sub:[365,4,1,""],mxp_url_re:[365,4,1,""],mxp_url_sub:[365,4,1,""],parse_ansi:[365,3,1,""],strip_mxp:[365,3,1,""],strip_raw_codes:[365,3,1,""],sub_ansi:[365,3,1,""],sub_brightbg:[365,3,1,""],sub_xterm256:[365,3,1,""],xterm256_bg:[365,4,1,""],xterm256_bg_sub:[365,4,1,""],xterm256_fg:[365,4,1,""],xterm256_fg_sub:[365,4,1,""],xterm256_gbg:[365,4,1,""],xterm256_gbg_sub:[365,4,1,""],xterm256_gfg:[365,4,1,""],xterm256_gfg_sub:[365,4,1,""]},"evennia.utils.ansi.ANSIString":{__init__:[365,3,1,""],capitalize:[365,3,1,""],center:[365,3,1,""],clean:[365,3,1,""],count:[365,3,1,""],decode:[365,3,1,""],encode:[365,3,1,""],endswith:[365,3,1,""],expandtabs:[365,3,1,""],find:[365,3,1,""],format:[365,3,1,""],index:[365,3,1,""],isalnum:[365,3,1,""],isalpha:[365,3,1,""],isdigit:[365,3,1,""],islower:[365,3,1,""],isspace:[365,3,1,""],istitle:[365,3,1,""],isupper:[365,3,1,""],join:[365,3,1,""],ljust:[365,3,1,""],lower:[365,3,1,""],lstrip:[365,3,1,""],partition:[365,3,1,""],raw:[365,3,1,""],re_format:[365,4,1,""],replace:[365,3,1,""],rfind:[365,3,1,""],rindex:[365,3,1,""],rjust:[365,3,1,""],rsplit:[365,3,1,""],rstrip:[365,3,1,""],split:[365,3,1,""],startswith:[365,3,1,""],strip:[365,3,1,""],swapcase:[365,3,1,""],translate:[365,3,1,""],upper:[365,3,1,""]},"evennia.utils.batchprocessors":{BatchCodeProcessor:[366,1,1,""],BatchCommandProcessor:[366,1,1,""],read_batchfile:[366,5,1,""],tb_filename:[366,5,1,""],tb_iter:[366,5,1,""]},"evennia.utils.batchprocessors.BatchCodeProcessor":{code_exec:[366,3,1,""],parse_file:[366,3,1,""]},"evennia.utils.batchprocessors.BatchCommandProcessor":{parse_file:[366,3,1,""]},"evennia.utils.containers":{Container:[367,1,1,""],GlobalScriptContainer:[367,1,1,""],OptionContainer:[367,1,1,""]},"evennia.utils.containers.Container":{__init__:[367,3,1,""],all:[367,3,1,""],get:[367,3,1,""],load_data:[367,3,1,""],storage_modules:[367,4,1,""]},"evennia.utils.containers.GlobalScriptContainer":{__init__:[367,3,1,""],all:[367,3,1,""],get:[367,3,1,""],load_data:[367,3,1,""],start:[367,3,1,""]},"evennia.utils.containers.OptionContainer":{storage_modules:[367,4,1,""]},"evennia.utils.create":{create_account:[368,5,1,""],create_channel:[368,5,1,""],create_help_entry:[368,5,1,""],create_message:[368,5,1,""],create_object:[368,5,1,""],create_script:[368,5,1,""]},"evennia.utils.dbserialize":{dbserialize:[369,5,1,""],dbunserialize:[369,5,1,""],do_pickle:[369,5,1,""],do_unpickle:[369,5,1,""],from_pickle:[369,5,1,""],to_pickle:[369,5,1,""]},"evennia.utils.eveditor":{CmdEditorBase:[370,1,1,""],CmdEditorGroup:[370,1,1,""],CmdLineInput:[370,1,1,""],CmdSaveYesNo:[370,1,1,""],EvEditor:[370,1,1,""],EvEditorCmdSet:[370,1,1,""],SaveYesNoCmdSet:[370,1,1,""]},"evennia.utils.eveditor.CmdEditorBase":{aliases:[370,4,1,""],editor:[370,4,1,""],help_category:[370,4,1,""],help_entry:[370,4,1,""],key:[370,4,1,""],lock_storage:[370,4,1,""],locks:[370,4,1,""],parse:[370,3,1,""],search_index_entry:[370,4,1,""]},"evennia.utils.eveditor.CmdEditorGroup":{aliases:[370,4,1,""],arg_regex:[370,4,1,""],func:[370,3,1,""],help_category:[370,4,1,""],key:[370,4,1,""],lock_storage:[370,4,1,""],search_index_entry:[370,4,1,""]},"evennia.utils.eveditor.CmdLineInput":{aliases:[370,4,1,""],func:[370,3,1,""],help_category:[370,4,1,""],key:[370,4,1,""],lock_storage:[370,4,1,""],search_index_entry:[370,4,1,""]},"evennia.utils.eveditor.CmdSaveYesNo":{aliases:[370,4,1,""],func:[370,3,1,""],help_category:[370,4,1,""],help_cateogory:[370,4,1,""],key:[370,4,1,""],lock_storage:[370,4,1,""],locks:[370,4,1,""],search_index_entry:[370,4,1,""]},"evennia.utils.eveditor.EvEditor":{__init__:[370,3,1,""],decrease_indent:[370,3,1,""],deduce_indent:[370,3,1,""],display_buffer:[370,3,1,""],display_help:[370,3,1,""],get_buffer:[370,3,1,""],increase_indent:[370,3,1,""],load_buffer:[370,3,1,""],quit:[370,3,1,""],save_buffer:[370,3,1,""],swap_autoindent:[370,3,1,""],update_buffer:[370,3,1,""],update_undo:[370,3,1,""]},"evennia.utils.eveditor.EvEditorCmdSet":{at_cmdset_creation:[370,3,1,""],key:[370,4,1,""],mergetype:[370,4,1,""],path:[370,4,1,""]},"evennia.utils.eveditor.SaveYesNoCmdSet":{at_cmdset_creation:[370,3,1,""],key:[370,4,1,""],mergetype:[370,4,1,""],path:[370,4,1,""],priority:[370,4,1,""]},"evennia.utils.evform":{EvForm:[371,1,1,""]},"evennia.utils.evform.EvForm":{__init__:[371,3,1,""],map:[371,3,1,""],reload:[371,3,1,""]},"evennia.utils.evmenu":{CmdEvMenuNode:[372,1,1,""],CmdGetInput:[372,1,1,""],CmdYesNoQuestion:[372,1,1,""],EvMenu:[372,1,1,""],EvMenuCmdSet:[372,1,1,""],EvMenuError:[372,2,1,""],EvMenuGotoAbortMessage:[372,2,1,""],InputCmdSet:[372,1,1,""],YesNoQuestionCmdSet:[372,1,1,""],ask_yes_no:[372,5,1,""],get_input:[372,5,1,""],list_node:[372,5,1,""],parse_menu_template:[372,5,1,""],template2menu:[372,5,1,""]},"evennia.utils.evmenu.CmdEvMenuNode":{aliases:[372,4,1,""],auto_help_display_key:[372,4,1,""],func:[372,3,1,""],get_help:[372,3,1,""],help_category:[372,4,1,""],key:[372,4,1,""],lock_storage:[372,4,1,""],locks:[372,4,1,""],search_index_entry:[372,4,1,""]},"evennia.utils.evmenu.CmdGetInput":{aliases:[372,4,1,""],func:[372,3,1,""],help_category:[372,4,1,""],key:[372,4,1,""],lock_storage:[372,4,1,""],search_index_entry:[372,4,1,""]},"evennia.utils.evmenu.CmdYesNoQuestion":{aliases:[372,4,1,""],arg_regex:[372,4,1,""],func:[372,3,1,""],help_category:[372,4,1,""],key:[372,4,1,""],lock_storage:[372,4,1,""],search_index_entry:[372,4,1,""]},"evennia.utils.evmenu.EvMenu":{"goto":[372,3,1,""],__init__:[372,3,1,""],close_menu:[372,3,1,""],display_helptext:[372,3,1,""],display_nodetext:[372,3,1,""],extract_goto_exec:[372,3,1,""],helptext_formatter:[372,3,1,""],msg:[372,3,1,""],node_border_char:[372,4,1,""],node_formatter:[372,3,1,""],nodetext_formatter:[372,3,1,""],options_formatter:[372,3,1,""],parse_input:[372,3,1,""],print_debug_info:[372,3,1,""],run_exec:[372,3,1,""],run_exec_then_goto:[372,3,1,""]},"evennia.utils.evmenu.EvMenuCmdSet":{at_cmdset_creation:[372,3,1,""],key:[372,4,1,""],mergetype:[372,4,1,""],no_channels:[372,4,1,""],no_exits:[372,4,1,""],no_objs:[372,4,1,""],path:[372,4,1,""],priority:[372,4,1,""]},"evennia.utils.evmenu.InputCmdSet":{at_cmdset_creation:[372,3,1,""],key:[372,4,1,""],mergetype:[372,4,1,""],no_channels:[372,4,1,""],no_exits:[372,4,1,""],no_objs:[372,4,1,""],path:[372,4,1,""],priority:[372,4,1,""]},"evennia.utils.evmenu.YesNoQuestionCmdSet":{at_cmdset_creation:[372,3,1,""],key:[372,4,1,""],mergetype:[372,4,1,""],no_channels:[372,4,1,""],no_exits:[372,4,1,""],no_objs:[372,4,1,""],path:[372,4,1,""],priority:[372,4,1,""]},"evennia.utils.evmore":{CmdMore:[373,1,1,""],CmdMoreLook:[373,1,1,""],CmdSetMore:[373,1,1,""],EvMore:[373,1,1,""],msg:[373,5,1,""],queryset_maxsize:[373,5,1,""]},"evennia.utils.evmore.CmdMore":{aliases:[373,4,1,""],auto_help:[373,4,1,""],func:[373,3,1,""],help_category:[373,4,1,""],key:[373,4,1,""],lock_storage:[373,4,1,""],search_index_entry:[373,4,1,""]},"evennia.utils.evmore.CmdMoreLook":{aliases:[373,4,1,""],auto_help:[373,4,1,""],func:[373,3,1,""],help_category:[373,4,1,""],key:[373,4,1,""],lock_storage:[373,4,1,""],search_index_entry:[373,4,1,""]},"evennia.utils.evmore.CmdSetMore":{at_cmdset_creation:[373,3,1,""],key:[373,4,1,""],path:[373,4,1,""],priority:[373,4,1,""]},"evennia.utils.evmore.EvMore":{__init__:[373,3,1,""],display:[373,3,1,""],init_django_paginator:[373,3,1,""],init_evtable:[373,3,1,""],init_f_str:[373,3,1,""],init_iterable:[373,3,1,""],init_pages:[373,3,1,""],init_queryset:[373,3,1,""],init_str:[373,3,1,""],page_back:[373,3,1,""],page_end:[373,3,1,""],page_formatter:[373,3,1,""],page_next:[373,3,1,""],page_quit:[373,3,1,""],page_top:[373,3,1,""],paginator:[373,3,1,""],paginator_django:[373,3,1,""],paginator_index:[373,3,1,""],paginator_slice:[373,3,1,""],start:[373,3,1,""]},"evennia.utils.evtable":{ANSITextWrapper:[374,1,1,""],EvCell:[374,1,1,""],EvColumn:[374,1,1,""],EvTable:[374,1,1,""],fill:[374,5,1,""],wrap:[374,5,1,""]},"evennia.utils.evtable.EvCell":{__init__:[374,3,1,""],get:[374,3,1,""],get_height:[374,3,1,""],get_min_height:[374,3,1,""],get_min_width:[374,3,1,""],get_width:[374,3,1,""],reformat:[374,3,1,""],replace_data:[374,3,1,""]},"evennia.utils.evtable.EvColumn":{__init__:[374,3,1,""],add_rows:[374,3,1,""],reformat:[374,3,1,""],reformat_cell:[374,3,1,""]},"evennia.utils.evtable.EvTable":{__init__:[374,3,1,""],add_column:[374,3,1,""],add_header:[374,3,1,""],add_row:[374,3,1,""],get:[374,3,1,""],reformat:[374,3,1,""],reformat_column:[374,3,1,""]},"evennia.utils.funcparser":{FuncParser:[375,1,1,""],ParsingError:[375,2,1,""],funcparser_callable_You:[375,5,1,""],funcparser_callable_add:[375,5,1,""],funcparser_callable_center_justify:[375,5,1,""],funcparser_callable_choice:[375,5,1,""],funcparser_callable_clr:[375,5,1,""],funcparser_callable_conjugate:[375,5,1,""],funcparser_callable_crop:[375,5,1,""],funcparser_callable_div:[375,5,1,""],funcparser_callable_eval:[375,5,1,""],funcparser_callable_justify:[375,5,1,""],funcparser_callable_left_justify:[375,5,1,""],funcparser_callable_mult:[375,5,1,""],funcparser_callable_pad:[375,5,1,""],funcparser_callable_randint:[375,5,1,""],funcparser_callable_random:[375,5,1,""],funcparser_callable_right_justify:[375,5,1,""],funcparser_callable_round:[375,5,1,""],funcparser_callable_search:[375,5,1,""],funcparser_callable_search_list:[375,5,1,""],funcparser_callable_space:[375,5,1,""],funcparser_callable_sub:[375,5,1,""],funcparser_callable_toint:[375,5,1,""],funcparser_callable_you:[375,5,1,""]},"evennia.utils.funcparser.FuncParser":{__init__:[375,3,1,""],execute:[375,3,1,""],parse:[375,3,1,""],parse_to_any:[375,3,1,""],validate_callables:[375,3,1,""]},"evennia.utils.gametime":{TimeScript:[376,1,1,""],game_epoch:[376,5,1,""],gametime:[376,5,1,""],portal_uptime:[376,5,1,""],real_seconds_until:[376,5,1,""],reset_gametime:[376,5,1,""],runtime:[376,5,1,""],schedule:[376,5,1,""],server_epoch:[376,5,1,""],uptime:[376,5,1,""]},"evennia.utils.gametime.TimeScript":{DoesNotExist:[376,2,1,""],MultipleObjectsReturned:[376,2,1,""],at_repeat:[376,3,1,""],at_script_creation:[376,3,1,""],path:[376,4,1,""],typename:[376,4,1,""]},"evennia.utils.idmapper":{manager:[378,0,0,"-"],models:[379,0,0,"-"],tests:[380,0,0,"-"]},"evennia.utils.idmapper.manager":{SharedMemoryManager:[378,1,1,""]},"evennia.utils.idmapper.manager.SharedMemoryManager":{get:[378,3,1,""]},"evennia.utils.idmapper.models":{SharedMemoryModel:[379,1,1,""],SharedMemoryModelBase:[379,1,1,""],WeakSharedMemoryModel:[379,1,1,""],WeakSharedMemoryModelBase:[379,1,1,""],cache_size:[379,5,1,""],conditional_flush:[379,5,1,""],flush_cache:[379,5,1,""],flush_cached_instance:[379,5,1,""],update_cached_instance:[379,5,1,""]},"evennia.utils.idmapper.models.SharedMemoryModel":{"delete":[379,3,1,""],Meta:[379,1,1,""],at_idmapper_flush:[379,3,1,""],cache_instance:[379,3,1,""],flush_cached_instance:[379,3,1,""],flush_from_cache:[379,3,1,""],flush_instance_cache:[379,3,1,""],get_all_cached_instances:[379,3,1,""],get_cached_instance:[379,3,1,""],objects:[379,4,1,""],path:[379,4,1,""],save:[379,3,1,""],typename:[379,4,1,""]},"evennia.utils.idmapper.models.SharedMemoryModel.Meta":{"abstract":[379,4,1,""]},"evennia.utils.idmapper.models.WeakSharedMemoryModel":{Meta:[379,1,1,""],path:[379,4,1,""],typename:[379,4,1,""]},"evennia.utils.idmapper.models.WeakSharedMemoryModel.Meta":{"abstract":[379,4,1,""]},"evennia.utils.idmapper.tests":{Article:[380,1,1,""],Category:[380,1,1,""],RegularArticle:[380,1,1,""],RegularCategory:[380,1,1,""],SharedMemorysTest:[380,1,1,""]},"evennia.utils.idmapper.tests.Article":{DoesNotExist:[380,2,1,""],MultipleObjectsReturned:[380,2,1,""],category2:[380,4,1,""],category2_id:[380,4,1,""],category:[380,4,1,""],category_id:[380,4,1,""],id:[380,4,1,""],name:[380,4,1,""],path:[380,4,1,""],typename:[380,4,1,""]},"evennia.utils.idmapper.tests.Category":{DoesNotExist:[380,2,1,""],MultipleObjectsReturned:[380,2,1,""],article_set:[380,4,1,""],id:[380,4,1,""],name:[380,4,1,""],path:[380,4,1,""],regulararticle_set:[380,4,1,""],typename:[380,4,1,""]},"evennia.utils.idmapper.tests.RegularArticle":{DoesNotExist:[380,2,1,""],MultipleObjectsReturned:[380,2,1,""],category2:[380,4,1,""],category2_id:[380,4,1,""],category:[380,4,1,""],category_id:[380,4,1,""],id:[380,4,1,""],name:[380,4,1,""],objects:[380,4,1,""]},"evennia.utils.idmapper.tests.RegularCategory":{DoesNotExist:[380,2,1,""],MultipleObjectsReturned:[380,2,1,""],article_set:[380,4,1,""],id:[380,4,1,""],name:[380,4,1,""],objects:[380,4,1,""],regulararticle_set:[380,4,1,""]},"evennia.utils.idmapper.tests.SharedMemorysTest":{setUp:[380,3,1,""],testMixedReferences:[380,3,1,""],testObjectDeletion:[380,3,1,""],testRegularReferences:[380,3,1,""],testSharedMemoryReferences:[380,3,1,""]},"evennia.utils.logger":{EvenniaLogFile:[381,1,1,""],PortalLogObserver:[381,1,1,""],ServerLogObserver:[381,1,1,""],WeeklyLogFile:[381,1,1,""],log_dep:[381,5,1,""],log_depmsg:[381,5,1,""],log_err:[381,5,1,""],log_errmsg:[381,5,1,""],log_file:[381,5,1,""],log_file_exists:[381,5,1,""],log_info:[381,5,1,""],log_infomsg:[381,5,1,""],log_msg:[381,5,1,""],log_sec:[381,5,1,""],log_secmsg:[381,5,1,""],log_server:[381,5,1,""],log_trace:[381,5,1,""],log_tracemsg:[381,5,1,""],log_warn:[381,5,1,""],log_warnmsg:[381,5,1,""],rotate_log_file:[381,5,1,""],tail_log_file:[381,5,1,""],timeformat:[381,5,1,""]},"evennia.utils.logger.EvenniaLogFile":{num_lines_to_append:[381,4,1,""],readlines:[381,3,1,""],rotate:[381,3,1,""],seek:[381,3,1,""],settings:[381,4,1,""]},"evennia.utils.logger.PortalLogObserver":{emit:[381,3,1,""],prefix:[381,4,1,""],timeFormat:[381,4,1,""]},"evennia.utils.logger.ServerLogObserver":{prefix:[381,4,1,""]},"evennia.utils.logger.WeeklyLogFile":{__init__:[381,3,1,""],shouldRotate:[381,3,1,""],suffix:[381,3,1,""],write:[381,3,1,""]},"evennia.utils.optionclasses":{BaseOption:[382,1,1,""],Boolean:[382,1,1,""],Color:[382,1,1,""],Datetime:[382,1,1,""],Duration:[382,1,1,""],Email:[382,1,1,""],Future:[382,1,1,""],Lock:[382,1,1,""],PositiveInteger:[382,1,1,""],SignedInteger:[382,1,1,""],Text:[382,1,1,""],Timezone:[382,1,1,""],UnsignedInteger:[382,1,1,""]},"evennia.utils.optionclasses.BaseOption":{"default":[382,3,1,""],__init__:[382,3,1,""],changed:[382,3,1,""],deserialize:[382,3,1,""],display:[382,3,1,""],load:[382,3,1,""],save:[382,3,1,""],serialize:[382,3,1,""],set:[382,3,1,""],validate:[382,3,1,""],value:[382,3,1,""]},"evennia.utils.optionclasses.Boolean":{deserialize:[382,3,1,""],display:[382,3,1,""],serialize:[382,3,1,""],validate:[382,3,1,""]},"evennia.utils.optionclasses.Color":{deserialize:[382,3,1,""],display:[382,3,1,""],validate:[382,3,1,""]},"evennia.utils.optionclasses.Datetime":{deserialize:[382,3,1,""],serialize:[382,3,1,""],validate:[382,3,1,""]},"evennia.utils.optionclasses.Duration":{deserialize:[382,3,1,""],serialize:[382,3,1,""],validate:[382,3,1,""]},"evennia.utils.optionclasses.Email":{deserialize:[382,3,1,""],validate:[382,3,1,""]},"evennia.utils.optionclasses.Future":{validate:[382,3,1,""]},"evennia.utils.optionclasses.Lock":{validate:[382,3,1,""]},"evennia.utils.optionclasses.PositiveInteger":{deserialize:[382,3,1,""],validate:[382,3,1,""]},"evennia.utils.optionclasses.SignedInteger":{deserialize:[382,3,1,""],validate:[382,3,1,""]},"evennia.utils.optionclasses.Text":{deserialize:[382,3,1,""]},"evennia.utils.optionclasses.Timezone":{"default":[382,3,1,""],deserialize:[382,3,1,""],serialize:[382,3,1,""],validate:[382,3,1,""]},"evennia.utils.optionclasses.UnsignedInteger":{deserialize:[382,3,1,""],validate:[382,3,1,""],validator_key:[382,4,1,""]},"evennia.utils.optionhandler":{InMemorySaveHandler:[383,1,1,""],OptionHandler:[383,1,1,""]},"evennia.utils.optionhandler.InMemorySaveHandler":{__init__:[383,3,1,""],add:[383,3,1,""],get:[383,3,1,""]},"evennia.utils.optionhandler.OptionHandler":{__init__:[383,3,1,""],all:[383,3,1,""],get:[383,3,1,""],set:[383,3,1,""]},"evennia.utils.picklefield":{PickledFormField:[384,1,1,""],PickledObject:[384,1,1,""],PickledObjectField:[384,1,1,""],PickledWidget:[384,1,1,""],dbsafe_decode:[384,5,1,""],dbsafe_encode:[384,5,1,""],wrap_conflictual_object:[384,5,1,""]},"evennia.utils.picklefield.PickledFormField":{__init__:[384,3,1,""],clean:[384,3,1,""],default_error_messages:[384,4,1,""],widget:[384,4,1,""]},"evennia.utils.picklefield.PickledObjectField":{__init__:[384,3,1,""],formfield:[384,3,1,""],from_db_value:[384,3,1,""],get_db_prep_lookup:[384,3,1,""],get_db_prep_value:[384,3,1,""],get_default:[384,3,1,""],get_internal_type:[384,3,1,""],pre_save:[384,3,1,""],value_to_string:[384,3,1,""]},"evennia.utils.picklefield.PickledWidget":{media:[384,3,1,""],render:[384,3,1,""],value_from_datadict:[384,3,1,""]},"evennia.utils.search":{search_account:[385,5,1,""],search_account_tag:[385,5,1,""],search_channel:[385,5,1,""],search_channel_tag:[385,5,1,""],search_help_entry:[385,5,1,""],search_message:[385,5,1,""],search_object:[385,5,1,""],search_script:[385,5,1,""],search_script_tag:[385,5,1,""],search_tag:[385,5,1,""]},"evennia.utils.test_resources":{EvenniaTest:[386,1,1,""],LocalEvenniaTest:[386,1,1,""],mockdeferLater:[386,5,1,""],mockdelay:[386,5,1,""],unload_module:[386,5,1,""]},"evennia.utils.test_resources.EvenniaTest":{account_typeclass:[386,4,1,""],character_typeclass:[386,4,1,""],exit_typeclass:[386,4,1,""],object_typeclass:[386,4,1,""],room_typeclass:[386,4,1,""],script_typeclass:[386,4,1,""],setUp:[386,3,1,""],tearDown:[386,3,1,""]},"evennia.utils.test_resources.LocalEvenniaTest":{account_typeclass:[386,4,1,""],character_typeclass:[386,4,1,""],exit_typeclass:[386,4,1,""],object_typeclass:[386,4,1,""],room_typeclass:[386,4,1,""],script_typeclass:[386,4,1,""]},"evennia.utils.text2html":{TextToHTMLparser:[387,1,1,""],parse_html:[387,5,1,""]},"evennia.utils.text2html.TextToHTMLparser":{bg_colormap:[387,4,1,""],bgfgstart:[387,4,1,""],bgfgstop:[387,4,1,""],bgstart:[387,4,1,""],bgstop:[387,4,1,""],blink:[387,4,1,""],colorback:[387,4,1,""],colorcodes:[387,4,1,""],convert_linebreaks:[387,3,1,""],convert_urls:[387,3,1,""],fg_colormap:[387,4,1,""],fgstart:[387,4,1,""],fgstop:[387,4,1,""],hilite:[387,4,1,""],inverse:[387,4,1,""],normal:[387,4,1,""],parse:[387,3,1,""],re_bgfg:[387,4,1,""],re_bgs:[387,4,1,""],re_blink:[387,4,1,""],re_blinking:[387,3,1,""],re_bold:[387,3,1,""],re_color:[387,3,1,""],re_dblspace:[387,4,1,""],re_double_space:[387,3,1,""],re_fgs:[387,4,1,""],re_hilite:[387,4,1,""],re_inverse:[387,4,1,""],re_inversing:[387,3,1,""],re_mxplink:[387,4,1,""],re_mxpurl:[387,4,1,""],re_normal:[387,4,1,""],re_string:[387,4,1,""],re_uline:[387,4,1,""],re_underline:[387,3,1,""],re_unhilite:[387,4,1,""],re_url:[387,4,1,""],remove_backspaces:[387,3,1,""],remove_bells:[387,3,1,""],sub_dblspace:[387,3,1,""],sub_mxp_links:[387,3,1,""],sub_mxp_urls:[387,3,1,""],sub_text:[387,3,1,""],tabstop:[387,4,1,""],underline:[387,4,1,""],unhilite:[387,4,1,""]},"evennia.utils.utils":{LimitedSizeOrderedDict:[388,1,1,""],all_from_module:[388,5,1,""],at_search_result:[388,5,1,""],callables_from_module:[388,5,1,""],calledby:[388,5,1,""],check_evennia_dependencies:[388,5,1,""],class_from_module:[388,5,1,""],columnize:[388,5,1,""],crop:[388,5,1,""],datetime_format:[388,5,1,""],dbid_to_obj:[388,5,1,""],dbref:[388,5,1,""],dbref_to_obj:[388,5,1,""],dedent:[388,5,1,""],deepsize:[388,5,1,""],delay:[388,5,1,""],display_len:[388,5,1,""],fill:[388,5,1,""],format_grid:[388,5,1,""],format_table:[388,5,1,""],fuzzy_import_from_module:[388,5,1,""],get_all_cmdsets:[388,5,1,""],get_all_typeclasses:[388,5,1,""],get_evennia_pids:[388,5,1,""],get_evennia_version:[388,5,1,""],get_game_dir_path:[388,5,1,""],has_parent:[388,5,1,""],host_os_is:[388,5,1,""],inherits_from:[388,5,1,""],init_new_account:[388,5,1,""],interactive:[388,5,1,""],is_iter:[388,5,1,""],iter_to_str:[388,5,1,""],iter_to_string:[388,5,1,""],justify:[388,5,1,""],latinify:[388,5,1,""],lazy_property:[388,1,1,""],list_to_string:[388,5,1,""],m_len:[388,5,1,""],make_iter:[388,5,1,""],mod_import:[388,5,1,""],mod_import_from_path:[388,5,1,""],object_from_module:[388,5,1,""],pad:[388,5,1,""],percent:[388,5,1,""],percentile:[388,5,1,""],pypath_to_realpath:[388,5,1,""],random_string_from_module:[388,5,1,""],repeat:[388,5,1,""],run_async:[388,5,1,""],safe_convert_to_types:[388,5,1,""],server_services:[388,5,1,""],string_from_module:[388,5,1,""],string_partial_matching:[388,5,1,""],string_similarity:[388,5,1,""],string_suggestions:[388,5,1,""],strip_control_sequences:[388,5,1,""],time_format:[388,5,1,""],to_bytes:[388,5,1,""],to_str:[388,5,1,""],unrepeat:[388,5,1,""],uses_database:[388,5,1,""],validate_email_address:[388,5,1,""],variable_from_module:[388,5,1,""],wildcard_to_regexp:[388,5,1,""],wrap:[388,5,1,""]},"evennia.utils.utils.LimitedSizeOrderedDict":{__init__:[388,3,1,""],update:[388,3,1,""]},"evennia.utils.utils.lazy_property":{__init__:[388,3,1,""]},"evennia.utils.validatorfuncs":{"boolean":[389,5,1,""],color:[389,5,1,""],datetime:[389,5,1,""],duration:[389,5,1,""],email:[389,5,1,""],future:[389,5,1,""],lock:[389,5,1,""],positive_integer:[389,5,1,""],signed_integer:[389,5,1,""],text:[389,5,1,""],timezone:[389,5,1,""],unsigned_integer:[389,5,1,""]},"evennia.utils.verb_conjugation":{conjugate:[391,0,0,"-"],tests:[392,0,0,"-"]},"evennia.utils.verb_conjugation.conjugate":{verb_actor_stance_components:[391,5,1,""],verb_all_tenses:[391,5,1,""],verb_conjugate:[391,5,1,""],verb_infinitive:[391,5,1,""],verb_is_past:[391,5,1,""],verb_is_past_participle:[391,5,1,""],verb_is_present:[391,5,1,""],verb_is_present_participle:[391,5,1,""],verb_is_tense:[391,5,1,""],verb_past:[391,5,1,""],verb_past_participle:[391,5,1,""],verb_present:[391,5,1,""],verb_present_participle:[391,5,1,""],verb_tense:[391,5,1,""]},"evennia.utils.verb_conjugation.tests":{TestVerbConjugate:[392,1,1,""]},"evennia.utils.verb_conjugation.tests.TestVerbConjugate":{test_verb_actor_stance_components:[392,4,1,""],test_verb_actor_stance_components_00_have:[392,3,1,""],test_verb_actor_stance_components_01_swimming:[392,3,1,""],test_verb_actor_stance_components_02_give:[392,3,1,""],test_verb_actor_stance_components_03_given:[392,3,1,""],test_verb_actor_stance_components_04_am:[392,3,1,""],test_verb_actor_stance_components_05_doing:[392,3,1,""],test_verb_actor_stance_components_06_are:[392,3,1,""],test_verb_actor_stance_components_07_had:[392,3,1,""],test_verb_actor_stance_components_08_grin:[392,3,1,""],test_verb_actor_stance_components_09_smile:[392,3,1,""],test_verb_actor_stance_components_10_vex:[392,3,1,""],test_verb_actor_stance_components_11_thrust:[392,3,1,""],test_verb_conjugate:[392,4,1,""],test_verb_conjugate_0_inf:[392,3,1,""],test_verb_conjugate_1_inf:[392,3,1,""],test_verb_conjugate_2_inf:[392,3,1,""],test_verb_conjugate_3_inf:[392,3,1,""],test_verb_conjugate_4_inf:[392,3,1,""],test_verb_conjugate_5_inf:[392,3,1,""],test_verb_conjugate_6_inf:[392,3,1,""],test_verb_conjugate_7_2sgpres:[392,3,1,""],test_verb_conjugate_8_3sgpres:[392,3,1,""],test_verb_get_all_tenses:[392,3,1,""],test_verb_infinitive:[392,4,1,""],test_verb_infinitive_0_have:[392,3,1,""],test_verb_infinitive_1_swim:[392,3,1,""],test_verb_infinitive_2_give:[392,3,1,""],test_verb_infinitive_3_given:[392,3,1,""],test_verb_infinitive_4_am:[392,3,1,""],test_verb_infinitive_5_doing:[392,3,1,""],test_verb_infinitive_6_are:[392,3,1,""],test_verb_is_past:[392,4,1,""],test_verb_is_past_0_1st:[392,3,1,""],test_verb_is_past_1_1st:[392,3,1,""],test_verb_is_past_2_1st:[392,3,1,""],test_verb_is_past_3_1st:[392,3,1,""],test_verb_is_past_4_1st:[392,3,1,""],test_verb_is_past_5_1st:[392,3,1,""],test_verb_is_past_6_1st:[392,3,1,""],test_verb_is_past_7_2nd:[392,3,1,""],test_verb_is_past_participle:[392,4,1,""],test_verb_is_past_participle_0_have:[392,3,1,""],test_verb_is_past_participle_1_swimming:[392,3,1,""],test_verb_is_past_participle_2_give:[392,3,1,""],test_verb_is_past_participle_3_given:[392,3,1,""],test_verb_is_past_participle_4_am:[392,3,1,""],test_verb_is_past_participle_5_doing:[392,3,1,""],test_verb_is_past_participle_6_are:[392,3,1,""],test_verb_is_past_participle_7_had:[392,3,1,""],test_verb_is_present:[392,4,1,""],test_verb_is_present_0_1st:[392,3,1,""],test_verb_is_present_1_1st:[392,3,1,""],test_verb_is_present_2_1st:[392,3,1,""],test_verb_is_present_3_1st:[392,3,1,""],test_verb_is_present_4_1st:[392,3,1,""],test_verb_is_present_5_1st:[392,3,1,""],test_verb_is_present_6_1st:[392,3,1,""],test_verb_is_present_7_1st:[392,3,1,""],test_verb_is_present_participle:[392,4,1,""],test_verb_is_present_participle_0_have:[392,3,1,""],test_verb_is_present_participle_1_swim:[392,3,1,""],test_verb_is_present_participle_2_give:[392,3,1,""],test_verb_is_present_participle_3_given:[392,3,1,""],test_verb_is_present_participle_4_am:[392,3,1,""],test_verb_is_present_participle_5_doing:[392,3,1,""],test_verb_is_present_participle_6_are:[392,3,1,""],test_verb_is_tense:[392,4,1,""],test_verb_is_tense_0_inf:[392,3,1,""],test_verb_is_tense_1_inf:[392,3,1,""],test_verb_is_tense_2_inf:[392,3,1,""],test_verb_is_tense_3_inf:[392,3,1,""],test_verb_is_tense_4_inf:[392,3,1,""],test_verb_is_tense_5_inf:[392,3,1,""],test_verb_is_tense_6_inf:[392,3,1,""],test_verb_past:[392,4,1,""],test_verb_past_0_1st:[392,3,1,""],test_verb_past_1_1st:[392,3,1,""],test_verb_past_2_1st:[392,3,1,""],test_verb_past_3_1st:[392,3,1,""],test_verb_past_4_1st:[392,3,1,""],test_verb_past_5_1st:[392,3,1,""],test_verb_past_6_1st:[392,3,1,""],test_verb_past_7_2nd:[392,3,1,""],test_verb_past_participle:[392,4,1,""],test_verb_past_participle_0_have:[392,3,1,""],test_verb_past_participle_1_swim:[392,3,1,""],test_verb_past_participle_2_give:[392,3,1,""],test_verb_past_participle_3_given:[392,3,1,""],test_verb_past_participle_4_am:[392,3,1,""],test_verb_past_participle_5_doing:[392,3,1,""],test_verb_past_participle_6_are:[392,3,1,""],test_verb_present:[392,4,1,""],test_verb_present_0_1st:[392,3,1,""],test_verb_present_1_1st:[392,3,1,""],test_verb_present_2_1st:[392,3,1,""],test_verb_present_3_1st:[392,3,1,""],test_verb_present_4_1st:[392,3,1,""],test_verb_present_5_1st:[392,3,1,""],test_verb_present_6_1st:[392,3,1,""],test_verb_present_7_2nd:[392,3,1,""],test_verb_present_8_3rd:[392,3,1,""],test_verb_present_participle:[392,4,1,""],test_verb_present_participle_0_have:[392,3,1,""],test_verb_present_participle_1_swim:[392,3,1,""],test_verb_present_participle_2_give:[392,3,1,""],test_verb_present_participle_3_given:[392,3,1,""],test_verb_present_participle_4_am:[392,3,1,""],test_verb_present_participle_5_doing:[392,3,1,""],test_verb_present_participle_6_are:[392,3,1,""],test_verb_tense:[392,4,1,""],test_verb_tense_0_have:[392,3,1,""],test_verb_tense_1_swim:[392,3,1,""],test_verb_tense_2_give:[392,3,1,""],test_verb_tense_3_given:[392,3,1,""],test_verb_tense_4_am:[392,3,1,""],test_verb_tense_5_doing:[392,3,1,""],test_verb_tense_6_are:[392,3,1,""]},"evennia.web":{admin:[394,0,0,"-"],api:[406,0,0,"-"],templatetags:[414,0,0,"-"],urls:[416,0,0,"-"],utils:[417,0,0,"-"],webclient:[423,0,0,"-"],website:[426,0,0,"-"]},"evennia.web.admin":{accounts:[395,0,0,"-"],attributes:[396,0,0,"-"],comms:[397,0,0,"-"],frontpage:[398,0,0,"-"],help:[399,0,0,"-"],objects:[400,0,0,"-"],scripts:[401,0,0,"-"],server:[402,0,0,"-"],tags:[403,0,0,"-"],urls:[404,0,0,"-"],utils:[405,0,0,"-"]},"evennia.web.admin.accounts":{AccountAdmin:[395,1,1,""],AccountAttributeInline:[395,1,1,""],AccountChangeForm:[395,1,1,""],AccountCreationForm:[395,1,1,""],AccountTagInline:[395,1,1,""],ObjectPuppetInline:[395,1,1,""]},"evennia.web.admin.accounts.AccountAdmin":{add_fieldsets:[395,4,1,""],add_form:[395,4,1,""],fieldsets:[395,4,1,""],form:[395,4,1,""],get_form:[395,3,1,""],inlines:[395,4,1,""],list_display:[395,4,1,""],list_display_links:[395,4,1,""],list_filter:[395,4,1,""],media:[395,3,1,""],ordering:[395,4,1,""],puppeted_objects:[395,3,1,""],readonly_fields:[395,4,1,""],response_add:[395,3,1,""],save_model:[395,3,1,""],search_fields:[395,4,1,""],serialized_string:[395,3,1,""],user_change_password:[395,3,1,""],view_on_site:[395,4,1,""]},"evennia.web.admin.accounts.AccountAttributeInline":{media:[395,3,1,""],model:[395,4,1,""],related_field:[395,4,1,""]},"evennia.web.admin.accounts.AccountChangeForm":{Meta:[395,1,1,""],__init__:[395,3,1,""],base_fields:[395,4,1,""],clean_username:[395,3,1,""],declared_fields:[395,4,1,""],media:[395,3,1,""]},"evennia.web.admin.accounts.AccountChangeForm.Meta":{fields:[395,4,1,""],model:[395,4,1,""]},"evennia.web.admin.accounts.AccountCreationForm":{Meta:[395,1,1,""],base_fields:[395,4,1,""],clean_username:[395,3,1,""],declared_fields:[395,4,1,""],media:[395,3,1,""]},"evennia.web.admin.accounts.AccountCreationForm.Meta":{fields:[395,4,1,""],model:[395,4,1,""]},"evennia.web.admin.accounts.AccountTagInline":{media:[395,3,1,""],model:[395,4,1,""],related_field:[395,4,1,""]},"evennia.web.admin.accounts.ObjectPuppetInline":{ObjectCreateForm:[395,1,1,""],extra:[395,4,1,""],fieldsets:[395,4,1,""],form:[395,4,1,""],has_add_permission:[395,3,1,""],has_delete_permission:[395,3,1,""],media:[395,3,1,""],model:[395,4,1,""],readonly_fields:[395,4,1,""],show_change_link:[395,4,1,""],verbose_name:[395,4,1,""],view_on_site:[395,4,1,""]},"evennia.web.admin.accounts.ObjectPuppetInline.ObjectCreateForm":{Meta:[395,1,1,""],__init__:[395,3,1,""],base_fields:[395,4,1,""],declared_fields:[395,4,1,""],media:[395,3,1,""]},"evennia.web.admin.accounts.ObjectPuppetInline.ObjectCreateForm.Meta":{fields:[395,4,1,""],model:[395,4,1,""]},"evennia.web.admin.attributes":{AttributeForm:[396,1,1,""],AttributeFormSet:[396,1,1,""],AttributeInline:[396,1,1,""]},"evennia.web.admin.attributes.AttributeForm":{Meta:[396,1,1,""],__init__:[396,3,1,""],base_fields:[396,4,1,""],clean_attr_value:[396,3,1,""],declared_fields:[396,4,1,""],media:[396,3,1,""],save:[396,3,1,""]},"evennia.web.admin.attributes.AttributeForm.Meta":{fields:[396,4,1,""]},"evennia.web.admin.attributes.AttributeFormSet":{save:[396,3,1,""]},"evennia.web.admin.attributes.AttributeInline":{extra:[396,4,1,""],form:[396,4,1,""],formset:[396,4,1,""],get_formset:[396,3,1,""],media:[396,3,1,""],model:[396,4,1,""],related_field:[396,4,1,""],verbose_name:[396,4,1,""],verbose_name_plural:[396,4,1,""]},"evennia.web.admin.comms":{ChannelAdmin:[397,1,1,""],ChannelAttributeInline:[397,1,1,""],ChannelForm:[397,1,1,""],ChannelTagInline:[397,1,1,""],MsgAdmin:[397,1,1,""],MsgForm:[397,1,1,""],MsgTagInline:[397,1,1,""]},"evennia.web.admin.comms.ChannelAdmin":{fieldsets:[397,4,1,""],form:[397,4,1,""],get_form:[397,3,1,""],inlines:[397,4,1,""],list_display:[397,4,1,""],list_display_links:[397,4,1,""],list_select_related:[397,4,1,""],media:[397,3,1,""],no_of_subscribers:[397,3,1,""],ordering:[397,4,1,""],raw_id_fields:[397,4,1,""],readonly_fields:[397,4,1,""],response_add:[397,3,1,""],save_as:[397,4,1,""],save_model:[397,3,1,""],save_on_top:[397,4,1,""],search_fields:[397,4,1,""],serialized_string:[397,3,1,""],subscriptions:[397,3,1,""]},"evennia.web.admin.comms.ChannelAttributeInline":{media:[397,3,1,""],model:[397,4,1,""],related_field:[397,4,1,""]},"evennia.web.admin.comms.ChannelForm":{Meta:[397,1,1,""],base_fields:[397,4,1,""],declared_fields:[397,4,1,""],media:[397,3,1,""]},"evennia.web.admin.comms.ChannelForm.Meta":{fields:[397,4,1,""],model:[397,4,1,""]},"evennia.web.admin.comms.ChannelTagInline":{media:[397,3,1,""],model:[397,4,1,""],related_field:[397,4,1,""]},"evennia.web.admin.comms.MsgAdmin":{fieldsets:[397,4,1,""],form:[397,4,1,""],get_form:[397,3,1,""],inlines:[397,4,1,""],list_display:[397,4,1,""],list_display_links:[397,4,1,""],list_select_related:[397,4,1,""],media:[397,3,1,""],ordering:[397,4,1,""],raw_id_fields:[397,4,1,""],readonly_fields:[397,4,1,""],receiver:[397,3,1,""],save_as:[397,4,1,""],save_on_top:[397,4,1,""],search_fields:[397,4,1,""],sender:[397,3,1,""],serialized_string:[397,3,1,""],start_of_message:[397,3,1,""],view_on_site:[397,4,1,""]},"evennia.web.admin.comms.MsgForm":{Meta:[397,1,1,""],base_fields:[397,4,1,""],declared_fields:[397,4,1,""],media:[397,3,1,""]},"evennia.web.admin.comms.MsgForm.Meta":{fields:[397,4,1,""],models:[397,4,1,""]},"evennia.web.admin.comms.MsgTagInline":{media:[397,3,1,""],model:[397,4,1,""],related_field:[397,4,1,""]},"evennia.web.admin.frontpage":{admin_wrapper:[398,5,1,""],evennia_admin:[398,5,1,""]},"evennia.web.admin.help":{HelpEntryAdmin:[399,1,1,""],HelpEntryForm:[399,1,1,""],HelpTagInline:[399,1,1,""]},"evennia.web.admin.help.HelpEntryAdmin":{fieldsets:[399,4,1,""],form:[399,4,1,""],inlines:[399,4,1,""],list_display:[399,4,1,""],list_display_links:[399,4,1,""],list_filter:[399,4,1,""],list_select_related:[399,4,1,""],media:[399,3,1,""],ordering:[399,4,1,""],save_as:[399,4,1,""],save_on_top:[399,4,1,""],search_fields:[399,4,1,""],view_on_site:[399,4,1,""]},"evennia.web.admin.help.HelpEntryForm":{Meta:[399,1,1,""],base_fields:[399,4,1,""],declared_fields:[399,4,1,""],media:[399,3,1,""]},"evennia.web.admin.help.HelpEntryForm.Meta":{fields:[399,4,1,""],model:[399,4,1,""]},"evennia.web.admin.help.HelpTagInline":{media:[399,3,1,""],model:[399,4,1,""],related_field:[399,4,1,""]},"evennia.web.admin.objects":{ObjectAdmin:[400,1,1,""],ObjectAttributeInline:[400,1,1,""],ObjectCreateForm:[400,1,1,""],ObjectEditForm:[400,1,1,""],ObjectTagInline:[400,1,1,""]},"evennia.web.admin.objects.ObjectAdmin":{add_fieldsets:[400,4,1,""],add_form:[400,4,1,""],fieldsets:[400,4,1,""],form:[400,4,1,""],get_fieldsets:[400,3,1,""],get_form:[400,3,1,""],get_urls:[400,3,1,""],inlines:[400,4,1,""],link_button:[400,3,1,""],link_object_to_account:[400,3,1,""],list_display:[400,4,1,""],list_display_links:[400,4,1,""],list_filter:[400,4,1,""],list_select_related:[400,4,1,""],media:[400,3,1,""],ordering:[400,4,1,""],raw_id_fields:[400,4,1,""],readonly_fields:[400,4,1,""],response_add:[400,3,1,""],save_as:[400,4,1,""],save_model:[400,3,1,""],save_on_top:[400,4,1,""],search_fields:[400,4,1,""],serialized_string:[400,3,1,""],view_on_site:[400,4,1,""]},"evennia.web.admin.objects.ObjectAttributeInline":{media:[400,3,1,""],model:[400,4,1,""],related_field:[400,4,1,""]},"evennia.web.admin.objects.ObjectCreateForm":{Meta:[400,1,1,""],__init__:[400,3,1,""],base_fields:[400,4,1,""],declared_fields:[400,4,1,""],media:[400,3,1,""]},"evennia.web.admin.objects.ObjectCreateForm.Meta":{fields:[400,4,1,""],model:[400,4,1,""]},"evennia.web.admin.objects.ObjectEditForm":{Meta:[400,1,1,""],base_fields:[400,4,1,""],declared_fields:[400,4,1,""],media:[400,3,1,""]},"evennia.web.admin.objects.ObjectEditForm.Meta":{fields:[400,4,1,""],model:[400,4,1,""]},"evennia.web.admin.objects.ObjectTagInline":{media:[400,3,1,""],model:[400,4,1,""],related_field:[400,4,1,""]},"evennia.web.admin.scripts":{ScriptAdmin:[401,1,1,""],ScriptAttributeInline:[401,1,1,""],ScriptForm:[401,1,1,""],ScriptTagInline:[401,1,1,""]},"evennia.web.admin.scripts.ScriptAdmin":{fieldsets:[401,4,1,""],form:[401,4,1,""],get_form:[401,3,1,""],inlines:[401,4,1,""],list_display:[401,4,1,""],list_display_links:[401,4,1,""],list_select_related:[401,4,1,""],media:[401,3,1,""],ordering:[401,4,1,""],raw_id_fields:[401,4,1,""],readonly_fields:[401,4,1,""],save_as:[401,4,1,""],save_model:[401,3,1,""],save_on_top:[401,4,1,""],search_fields:[401,4,1,""],serialized_string:[401,3,1,""],view_on_site:[401,4,1,""]},"evennia.web.admin.scripts.ScriptAttributeInline":{media:[401,3,1,""],model:[401,4,1,""],related_field:[401,4,1,""]},"evennia.web.admin.scripts.ScriptForm":{base_fields:[401,4,1,""],declared_fields:[401,4,1,""],media:[401,3,1,""]},"evennia.web.admin.scripts.ScriptTagInline":{media:[401,3,1,""],model:[401,4,1,""],related_field:[401,4,1,""]},"evennia.web.admin.server":{ServerConfigAdmin:[402,1,1,""]},"evennia.web.admin.server.ServerConfigAdmin":{list_display:[402,4,1,""],list_display_links:[402,4,1,""],list_select_related:[402,4,1,""],media:[402,3,1,""],ordering:[402,4,1,""],save_as:[402,4,1,""],save_on_top:[402,4,1,""],search_fields:[402,4,1,""]},"evennia.web.admin.tags":{InlineTagForm:[403,1,1,""],TagAdmin:[403,1,1,""],TagForm:[403,1,1,""],TagFormSet:[403,1,1,""],TagInline:[403,1,1,""]},"evennia.web.admin.tags.InlineTagForm":{Meta:[403,1,1,""],__init__:[403,3,1,""],base_fields:[403,4,1,""],declared_fields:[403,4,1,""],media:[403,3,1,""],save:[403,3,1,""]},"evennia.web.admin.tags.InlineTagForm.Meta":{fields:[403,4,1,""]},"evennia.web.admin.tags.TagAdmin":{fieldsets:[403,4,1,""],form:[403,4,1,""],list_display:[403,4,1,""],list_filter:[403,4,1,""],media:[403,3,1,""],search_fields:[403,4,1,""],view_on_site:[403,4,1,""]},"evennia.web.admin.tags.TagForm":{Meta:[403,1,1,""],base_fields:[403,4,1,""],declared_fields:[403,4,1,""],media:[403,3,1,""]},"evennia.web.admin.tags.TagForm.Meta":{fields:[403,4,1,""]},"evennia.web.admin.tags.TagFormSet":{save:[403,3,1,""],verbose_name:[403,4,1,""],verbose_name_plural:[403,4,1,""]},"evennia.web.admin.tags.TagInline":{extra:[403,4,1,""],form:[403,4,1,""],formset:[403,4,1,""],get_formset:[403,3,1,""],media:[403,3,1,""],model:[403,4,1,""],related_field:[403,4,1,""],verbose_name:[403,4,1,""],verbose_name_plural:[403,4,1,""]},"evennia.web.admin.utils":{get_and_load_cmdsets:[405,5,1,""],get_and_load_typeclasses:[405,5,1,""]},"evennia.web.api":{filters:[407,0,0,"-"],permissions:[408,0,0,"-"],root:[409,0,0,"-"],serializers:[410,0,0,"-"],tests:[411,0,0,"-"],urls:[412,0,0,"-"],views:[413,0,0,"-"]},"evennia.web.api.filters":{AccountDBFilterSet:[407,1,1,""],AliasFilter:[407,1,1,""],BaseTypeclassFilterSet:[407,1,1,""],HelpFilterSet:[407,1,1,""],ObjectDBFilterSet:[407,1,1,""],PermissionFilter:[407,1,1,""],ScriptDBFilterSet:[407,1,1,""],TagTypeFilter:[407,1,1,""],get_tag_query:[407,5,1,""]},"evennia.web.api.filters.AccountDBFilterSet":{Meta:[407,1,1,""],base_filters:[407,4,1,""],declared_filters:[407,4,1,""]},"evennia.web.api.filters.AccountDBFilterSet.Meta":{fields:[407,4,1,""],model:[407,4,1,""]},"evennia.web.api.filters.AliasFilter":{tag_type:[407,4,1,""]},"evennia.web.api.filters.BaseTypeclassFilterSet":{base_filters:[407,4,1,""],declared_filters:[407,4,1,""],filter_name:[407,3,1,""]},"evennia.web.api.filters.HelpFilterSet":{base_filters:[407,4,1,""],declared_filters:[407,4,1,""]},"evennia.web.api.filters.ObjectDBFilterSet":{Meta:[407,1,1,""],base_filters:[407,4,1,""],declared_filters:[407,4,1,""]},"evennia.web.api.filters.ObjectDBFilterSet.Meta":{fields:[407,4,1,""],model:[407,4,1,""]},"evennia.web.api.filters.PermissionFilter":{tag_type:[407,4,1,""]},"evennia.web.api.filters.ScriptDBFilterSet":{Meta:[407,1,1,""],base_filters:[407,4,1,""],declared_filters:[407,4,1,""]},"evennia.web.api.filters.ScriptDBFilterSet.Meta":{fields:[407,4,1,""],model:[407,4,1,""]},"evennia.web.api.filters.TagTypeFilter":{filter:[407,3,1,""],tag_type:[407,4,1,""]},"evennia.web.api.permissions":{EvenniaPermission:[408,1,1,""]},"evennia.web.api.permissions.EvenniaPermission":{MINIMUM_CREATE_PERMISSION:[408,4,1,""],MINIMUM_LIST_PERMISSION:[408,4,1,""],check_locks:[408,3,1,""],destroy_locks:[408,4,1,""],has_object_permission:[408,3,1,""],has_permission:[408,3,1,""],update_locks:[408,4,1,""],view_locks:[408,4,1,""]},"evennia.web.api.root":{APIRootRouter:[409,1,1,""],EvenniaAPIRoot:[409,1,1,""]},"evennia.web.api.root.APIRootRouter":{APIRootView:[409,4,1,""]},"evennia.web.api.serializers":{AccountListSerializer:[410,1,1,""],AccountSerializer:[410,1,1,""],AttributeSerializer:[410,1,1,""],HelpListSerializer:[410,1,1,""],HelpSerializer:[410,1,1,""],ObjectDBSerializer:[410,1,1,""],ObjectListSerializer:[410,1,1,""],ScriptDBSerializer:[410,1,1,""],ScriptListSerializer:[410,1,1,""],SimpleObjectDBSerializer:[410,1,1,""],TagSerializer:[410,1,1,""],TypeclassListSerializerMixin:[410,1,1,""],TypeclassSerializerMixin:[410,1,1,""]},"evennia.web.api.serializers.AccountListSerializer":{Meta:[410,1,1,""]},"evennia.web.api.serializers.AccountListSerializer.Meta":{fields:[410,4,1,""],model:[410,4,1,""],read_only_fields:[410,4,1,""]},"evennia.web.api.serializers.AccountSerializer":{Meta:[410,1,1,""],get_session_ids:[410,3,1,""]},"evennia.web.api.serializers.AccountSerializer.Meta":{fields:[410,4,1,""],model:[410,4,1,""],read_only_fields:[410,4,1,""]},"evennia.web.api.serializers.AttributeSerializer":{Meta:[410,1,1,""],get_value_display:[410,3,1,""]},"evennia.web.api.serializers.AttributeSerializer.Meta":{fields:[410,4,1,""],model:[410,4,1,""]},"evennia.web.api.serializers.HelpListSerializer":{Meta:[410,1,1,""]},"evennia.web.api.serializers.HelpListSerializer.Meta":{fields:[410,4,1,""],model:[410,4,1,""],read_only_fields:[410,4,1,""]},"evennia.web.api.serializers.HelpSerializer":{Meta:[410,1,1,""]},"evennia.web.api.serializers.HelpSerializer.Meta":{fields:[410,4,1,""],model:[410,4,1,""],read_only_fields:[410,4,1,""]},"evennia.web.api.serializers.ObjectDBSerializer":{Meta:[410,1,1,""],get_contents:[410,3,1,""],get_exits:[410,3,1,""]},"evennia.web.api.serializers.ObjectDBSerializer.Meta":{fields:[410,4,1,""],model:[410,4,1,""],read_only_fields:[410,4,1,""]},"evennia.web.api.serializers.ObjectListSerializer":{Meta:[410,1,1,""]},"evennia.web.api.serializers.ObjectListSerializer.Meta":{fields:[410,4,1,""],model:[410,4,1,""],read_only_fields:[410,4,1,""]},"evennia.web.api.serializers.ScriptDBSerializer":{Meta:[410,1,1,""]},"evennia.web.api.serializers.ScriptDBSerializer.Meta":{fields:[410,4,1,""],model:[410,4,1,""],read_only_fields:[410,4,1,""]},"evennia.web.api.serializers.ScriptListSerializer":{Meta:[410,1,1,""]},"evennia.web.api.serializers.ScriptListSerializer.Meta":{fields:[410,4,1,""],model:[410,4,1,""],read_only_fields:[410,4,1,""]},"evennia.web.api.serializers.SimpleObjectDBSerializer":{Meta:[410,1,1,""]},"evennia.web.api.serializers.SimpleObjectDBSerializer.Meta":{fields:[410,4,1,""],model:[410,4,1,""]},"evennia.web.api.serializers.TagSerializer":{Meta:[410,1,1,""]},"evennia.web.api.serializers.TagSerializer.Meta":{fields:[410,4,1,""],model:[410,4,1,""]},"evennia.web.api.serializers.TypeclassListSerializerMixin":{shared_fields:[410,4,1,""]},"evennia.web.api.serializers.TypeclassSerializerMixin":{get_aliases:[410,3,1,""],get_attributes:[410,3,1,""],get_nicks:[410,3,1,""],get_permissions:[410,3,1,""],get_tags:[410,3,1,""],shared_fields:[410,4,1,""]},"evennia.web.api.tests":{TestEvenniaRESTApi:[411,1,1,""]},"evennia.web.api.tests.TestEvenniaRESTApi":{client_class:[411,4,1,""],get_view_details:[411,3,1,""],maxDiff:[411,4,1,""],setUp:[411,3,1,""],tearDown:[411,3,1,""],test_create:[411,3,1,""],test_delete:[411,3,1,""],test_list:[411,3,1,""],test_retrieve:[411,3,1,""],test_set_attribute:[411,3,1,""],test_update:[411,3,1,""]},"evennia.web.api.views":{AccountDBViewSet:[413,1,1,""],CharacterViewSet:[413,1,1,""],ExitViewSet:[413,1,1,""],GeneralViewSetMixin:[413,1,1,""],HelpViewSet:[413,1,1,""],ObjectDBViewSet:[413,1,1,""],RoomViewSet:[413,1,1,""],ScriptDBViewSet:[413,1,1,""],TypeclassViewSetMixin:[413,1,1,""]},"evennia.web.api.views.AccountDBViewSet":{basename:[413,4,1,""],description:[413,4,1,""],detail:[413,4,1,""],filterset_class:[413,4,1,""],list_serializer_class:[413,4,1,""],name:[413,4,1,""],queryset:[413,4,1,""],serializer_class:[413,4,1,""],suffix:[413,4,1,""]},"evennia.web.api.views.CharacterViewSet":{basename:[413,4,1,""],description:[413,4,1,""],detail:[413,4,1,""],list_serializer_class:[413,4,1,""],name:[413,4,1,""],queryset:[413,4,1,""],suffix:[413,4,1,""]},"evennia.web.api.views.ExitViewSet":{basename:[413,4,1,""],description:[413,4,1,""],detail:[413,4,1,""],list_serializer_class:[413,4,1,""],name:[413,4,1,""],queryset:[413,4,1,""],suffix:[413,4,1,""]},"evennia.web.api.views.GeneralViewSetMixin":{get_serializer_class:[413,3,1,""]},"evennia.web.api.views.HelpViewSet":{basename:[413,4,1,""],description:[413,4,1,""],detail:[413,4,1,""],filterset_class:[413,4,1,""],list_serializer_class:[413,4,1,""],name:[413,4,1,""],queryset:[413,4,1,""],serializer_class:[413,4,1,""],suffix:[413,4,1,""]},"evennia.web.api.views.ObjectDBViewSet":{basename:[413,4,1,""],description:[413,4,1,""],detail:[413,4,1,""],filterset_class:[413,4,1,""],list_serializer_class:[413,4,1,""],name:[413,4,1,""],queryset:[413,4,1,""],serializer_class:[413,4,1,""],suffix:[413,4,1,""]},"evennia.web.api.views.RoomViewSet":{basename:[413,4,1,""],description:[413,4,1,""],detail:[413,4,1,""],list_serializer_class:[413,4,1,""],name:[413,4,1,""],queryset:[413,4,1,""],suffix:[413,4,1,""]},"evennia.web.api.views.ScriptDBViewSet":{basename:[413,4,1,""],description:[413,4,1,""],detail:[413,4,1,""],filterset_class:[413,4,1,""],list_serializer_class:[413,4,1,""],name:[413,4,1,""],queryset:[413,4,1,""],serializer_class:[413,4,1,""],suffix:[413,4,1,""]},"evennia.web.api.views.TypeclassViewSetMixin":{filter_backends:[413,4,1,""],permission_classes:[413,4,1,""],set_attribute:[413,3,1,""]},"evennia.web.templatetags":{addclass:[415,0,0,"-"]},"evennia.web.templatetags.addclass":{addclass:[415,5,1,""]},"evennia.web.utils":{adminsite:[418,0,0,"-"],backends:[419,0,0,"-"],general_context:[420,0,0,"-"],middleware:[421,0,0,"-"],tests:[422,0,0,"-"]},"evennia.web.utils.adminsite":{EvenniaAdminApp:[418,1,1,""],EvenniaAdminSite:[418,1,1,""]},"evennia.web.utils.adminsite.EvenniaAdminApp":{default_site:[418,4,1,""]},"evennia.web.utils.adminsite.EvenniaAdminSite":{app_order:[418,4,1,""],get_app_list:[418,3,1,""],site_header:[418,4,1,""]},"evennia.web.utils.backends":{CaseInsensitiveModelBackend:[419,1,1,""]},"evennia.web.utils.backends.CaseInsensitiveModelBackend":{authenticate:[419,3,1,""]},"evennia.web.utils.general_context":{general_context:[420,5,1,""],set_game_name_and_slogan:[420,5,1,""],set_webclient_settings:[420,5,1,""]},"evennia.web.utils.middleware":{SharedLoginMiddleware:[421,1,1,""]},"evennia.web.utils.middleware.SharedLoginMiddleware":{__init__:[421,3,1,""],make_shared_login:[421,3,1,""]},"evennia.web.utils.tests":{TestGeneralContext:[422,1,1,""]},"evennia.web.utils.tests.TestGeneralContext":{maxDiff:[422,4,1,""],test_general_context:[422,3,1,""],test_set_game_name_and_slogan:[422,3,1,""],test_set_webclient_settings:[422,3,1,""]},"evennia.web.webclient":{urls:[424,0,0,"-"],views:[425,0,0,"-"]},"evennia.web.webclient.views":{webclient:[425,5,1,""]},"evennia.web.website":{forms:[427,0,0,"-"],tests:[428,0,0,"-"],urls:[429,0,0,"-"],views:[430,0,0,"-"]},"evennia.web.website.forms":{AccountForm:[427,1,1,""],CharacterForm:[427,1,1,""],CharacterUpdateForm:[427,1,1,""],EvenniaForm:[427,1,1,""],ObjectForm:[427,1,1,""]},"evennia.web.website.forms.AccountForm":{Meta:[427,1,1,""],base_fields:[427,4,1,""],declared_fields:[427,4,1,""],media:[427,3,1,""]},"evennia.web.website.forms.AccountForm.Meta":{field_classes:[427,4,1,""],fields:[427,4,1,""],model:[427,4,1,""]},"evennia.web.website.forms.CharacterForm":{Meta:[427,1,1,""],base_fields:[427,4,1,""],declared_fields:[427,4,1,""],media:[427,3,1,""]},"evennia.web.website.forms.CharacterForm.Meta":{fields:[427,4,1,""],labels:[427,4,1,""],model:[427,4,1,""]},"evennia.web.website.forms.CharacterUpdateForm":{base_fields:[427,4,1,""],declared_fields:[427,4,1,""],media:[427,3,1,""]},"evennia.web.website.forms.EvenniaForm":{base_fields:[427,4,1,""],clean:[427,3,1,""],declared_fields:[427,4,1,""],media:[427,3,1,""]},"evennia.web.website.forms.ObjectForm":{Meta:[427,1,1,""],base_fields:[427,4,1,""],declared_fields:[427,4,1,""],media:[427,3,1,""]},"evennia.web.website.forms.ObjectForm.Meta":{fields:[427,4,1,""],labels:[427,4,1,""],model:[427,4,1,""]},"evennia.web.website.tests":{AdminTest:[428,1,1,""],ChannelDetailTest:[428,1,1,""],ChannelListTest:[428,1,1,""],CharacterCreateView:[428,1,1,""],CharacterDeleteView:[428,1,1,""],CharacterListView:[428,1,1,""],CharacterManageView:[428,1,1,""],CharacterPuppetView:[428,1,1,""],CharacterUpdateView:[428,1,1,""],EvenniaWebTest:[428,1,1,""],HelpDetailTest:[428,1,1,""],HelpListTest:[428,1,1,""],HelpLockedDetailTest:[428,1,1,""],IndexTest:[428,1,1,""],LoginTest:[428,1,1,""],LogoutTest:[428,1,1,""],PasswordResetTest:[428,1,1,""],RegisterTest:[428,1,1,""],WebclientTest:[428,1,1,""]},"evennia.web.website.tests.AdminTest":{unauthenticated_response:[428,4,1,""],url_name:[428,4,1,""]},"evennia.web.website.tests.ChannelDetailTest":{get_kwargs:[428,3,1,""],setUp:[428,3,1,""],url_name:[428,4,1,""]},"evennia.web.website.tests.ChannelListTest":{url_name:[428,4,1,""]},"evennia.web.website.tests.CharacterCreateView":{test_valid_access_multisession_0:[428,3,1,""],test_valid_access_multisession_2:[428,3,1,""],unauthenticated_response:[428,4,1,""],url_name:[428,4,1,""]},"evennia.web.website.tests.CharacterDeleteView":{get_kwargs:[428,3,1,""],test_invalid_access:[428,3,1,""],test_valid_access:[428,3,1,""],unauthenticated_response:[428,4,1,""],url_name:[428,4,1,""]},"evennia.web.website.tests.CharacterListView":{unauthenticated_response:[428,4,1,""],url_name:[428,4,1,""]},"evennia.web.website.tests.CharacterManageView":{unauthenticated_response:[428,4,1,""],url_name:[428,4,1,""]},"evennia.web.website.tests.CharacterPuppetView":{get_kwargs:[428,3,1,""],test_invalid_access:[428,3,1,""],unauthenticated_response:[428,4,1,""],url_name:[428,4,1,""]},"evennia.web.website.tests.CharacterUpdateView":{get_kwargs:[428,3,1,""],test_invalid_access:[428,3,1,""],test_valid_access:[428,3,1,""],unauthenticated_response:[428,4,1,""],url_name:[428,4,1,""]},"evennia.web.website.tests.EvenniaWebTest":{account_typeclass:[428,4,1,""],authenticated_response:[428,4,1,""],channel_typeclass:[428,4,1,""],character_typeclass:[428,4,1,""],exit_typeclass:[428,4,1,""],get_kwargs:[428,3,1,""],login:[428,3,1,""],object_typeclass:[428,4,1,""],room_typeclass:[428,4,1,""],script_typeclass:[428,4,1,""],setUp:[428,3,1,""],test_get:[428,3,1,""],test_get_authenticated:[428,3,1,""],test_valid_chars:[428,3,1,""],unauthenticated_response:[428,4,1,""],url_name:[428,4,1,""]},"evennia.web.website.tests.HelpDetailTest":{get_kwargs:[428,3,1,""],setUp:[428,3,1,""],test_object_cache:[428,3,1,""],test_view:[428,3,1,""],url_name:[428,4,1,""]},"evennia.web.website.tests.HelpListTest":{url_name:[428,4,1,""]},"evennia.web.website.tests.HelpLockedDetailTest":{get_kwargs:[428,3,1,""],setUp:[428,3,1,""],test_lock_with_perm:[428,3,1,""],test_locked_entry:[428,3,1,""],url_name:[428,4,1,""]},"evennia.web.website.tests.IndexTest":{url_name:[428,4,1,""]},"evennia.web.website.tests.LoginTest":{url_name:[428,4,1,""]},"evennia.web.website.tests.LogoutTest":{url_name:[428,4,1,""]},"evennia.web.website.tests.PasswordResetTest":{unauthenticated_response:[428,4,1,""],url_name:[428,4,1,""]},"evennia.web.website.tests.RegisterTest":{url_name:[428,4,1,""]},"evennia.web.website.tests.WebclientTest":{test_get:[428,3,1,""],test_get_disabled:[428,3,1,""],url_name:[428,4,1,""]},"evennia.web.website.views":{accounts:[431,0,0,"-"],channels:[432,0,0,"-"],characters:[433,0,0,"-"],errors:[434,0,0,"-"],help:[435,0,0,"-"],index:[436,0,0,"-"],mixins:[437,0,0,"-"],objects:[438,0,0,"-"]},"evennia.web.website.views.accounts":{AccountCreateView:[431,1,1,""],AccountMixin:[431,1,1,""]},"evennia.web.website.views.accounts.AccountCreateView":{form_valid:[431,3,1,""],success_url:[431,4,1,""],template_name:[431,4,1,""]},"evennia.web.website.views.accounts.AccountMixin":{form_class:[431,4,1,""],model:[431,4,1,""]},"evennia.web.website.views.channels":{ChannelDetailView:[432,1,1,""],ChannelListView:[432,1,1,""],ChannelMixin:[432,1,1,""]},"evennia.web.website.views.channels.ChannelDetailView":{attributes:[432,4,1,""],get_context_data:[432,3,1,""],get_object:[432,3,1,""],max_num_lines:[432,4,1,""],template_name:[432,4,1,""]},"evennia.web.website.views.channels.ChannelListView":{get_context_data:[432,3,1,""],max_popular:[432,4,1,""],page_title:[432,4,1,""],paginate_by:[432,4,1,""],template_name:[432,4,1,""]},"evennia.web.website.views.channels.ChannelMixin":{access_type:[432,4,1,""],get_queryset:[432,3,1,""],model:[432,4,1,""],page_title:[432,4,1,""]},"evennia.web.website.views.characters":{CharacterCreateView:[433,1,1,""],CharacterDeleteView:[433,1,1,""],CharacterDetailView:[433,1,1,""],CharacterListView:[433,1,1,""],CharacterManageView:[433,1,1,""],CharacterMixin:[433,1,1,""],CharacterPuppetView:[433,1,1,""],CharacterUpdateView:[433,1,1,""]},"evennia.web.website.views.characters.CharacterCreateView":{form_valid:[433,3,1,""],template_name:[433,4,1,""]},"evennia.web.website.views.characters.CharacterDetailView":{access_type:[433,4,1,""],attributes:[433,4,1,""],get_queryset:[433,3,1,""],template_name:[433,4,1,""]},"evennia.web.website.views.characters.CharacterListView":{access_type:[433,4,1,""],get_queryset:[433,3,1,""],page_title:[433,4,1,""],paginate_by:[433,4,1,""],template_name:[433,4,1,""]},"evennia.web.website.views.characters.CharacterManageView":{page_title:[433,4,1,""],paginate_by:[433,4,1,""],template_name:[433,4,1,""]},"evennia.web.website.views.characters.CharacterMixin":{form_class:[433,4,1,""],get_queryset:[433,3,1,""],model:[433,4,1,""],success_url:[433,4,1,""]},"evennia.web.website.views.characters.CharacterPuppetView":{get_redirect_url:[433,3,1,""]},"evennia.web.website.views.characters.CharacterUpdateView":{form_class:[433,4,1,""],template_name:[433,4,1,""]},"evennia.web.website.views.errors":{to_be_implemented:[434,5,1,""]},"evennia.web.website.views.help":{HelpDetailView:[435,1,1,""],HelpListView:[435,1,1,""],HelpMixin:[435,1,1,""],can_read_topic:[435,5,1,""],collect_topics:[435,5,1,""],get_help_category:[435,5,1,""],get_help_topic:[435,5,1,""]},"evennia.web.website.views.help.HelpDetailView":{get_context_data:[435,3,1,""],get_object:[435,3,1,""],page_title:[435,3,1,""],template_name:[435,4,1,""]},"evennia.web.website.views.help.HelpListView":{page_title:[435,4,1,""],paginate_by:[435,4,1,""],template_name:[435,4,1,""]},"evennia.web.website.views.help.HelpMixin":{get_queryset:[435,3,1,""],page_title:[435,4,1,""]},"evennia.web.website.views.index":{EvenniaIndexView:[436,1,1,""]},"evennia.web.website.views.index.EvenniaIndexView":{get_context_data:[436,3,1,""],template_name:[436,4,1,""]},"evennia.web.website.views.mixins":{EvenniaCreateView:[437,1,1,""],EvenniaDeleteView:[437,1,1,""],EvenniaDetailView:[437,1,1,""],EvenniaUpdateView:[437,1,1,""],TypeclassMixin:[437,1,1,""]},"evennia.web.website.views.mixins.EvenniaCreateView":{page_title:[437,3,1,""]},"evennia.web.website.views.mixins.EvenniaDeleteView":{page_title:[437,3,1,""]},"evennia.web.website.views.mixins.EvenniaDetailView":{page_title:[437,3,1,""]},"evennia.web.website.views.mixins.EvenniaUpdateView":{page_title:[437,3,1,""]},"evennia.web.website.views.mixins.TypeclassMixin":{typeclass:[437,3,1,""]},"evennia.web.website.views.objects":{ObjectCreateView:[438,1,1,""],ObjectDeleteView:[438,1,1,""],ObjectDetailView:[438,1,1,""],ObjectUpdateView:[438,1,1,""]},"evennia.web.website.views.objects.ObjectCreateView":{model:[438,4,1,""]},"evennia.web.website.views.objects.ObjectDeleteView":{"delete":[438,3,1,""],access_type:[438,4,1,""],model:[438,4,1,""],template_name:[438,4,1,""]},"evennia.web.website.views.objects.ObjectDetailView":{access_type:[438,4,1,""],attributes:[438,4,1,""],get_context_data:[438,3,1,""],get_object:[438,3,1,""],model:[438,4,1,""],template_name:[438,4,1,""]},"evennia.web.website.views.objects.ObjectUpdateView":{access_type:[438,4,1,""],form_valid:[438,3,1,""],get_initial:[438,3,1,""],get_success_url:[438,3,1,""],model:[438,4,1,""]},evennia:{accounts:[165,0,0,"-"],commands:[170,0,0,"-"],comms:[193,0,0,"-"],contrib:[197,0,0,"-"],help:[283,0,0,"-"],locks:[288,0,0,"-"],objects:[291,0,0,"-"],prototypes:[295,0,0,"-"],scripts:[300,0,0,"-"],server:[308,0,0,"-"],set_trace:[163,5,1,""],settings_default:[358,0,0,"-"],typeclasses:[359,0,0,"-"],utils:[364,0,0,"-"],web:[393,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:{"000":[59,74,79,82,104,387],"0000":[74,79],"0004":76,"0005":199,"001":[8,76,277,387],"002":387,"003":[115,387],"004":387,"005":[59,365,387],"006":387,"007":387,"008":387,"009":387,"010":[91,387],"011":387,"012":387,"013":387,"0131018167":143,"014":387,"015":387,"015public":91,"016":387,"017":387,"018":387,"019":387,"020":387,"020t":91,"021":387,"022":387,"023":387,"024":387,"0247":76,"025":387,"026":387,"027":387,"028":387,"029":387,"030":387,"030a":91,"031":387,"032":387,"033":[365,387],"034":[76,387],"035":387,"036":387,"037":387,"038":387,"039":387,"040":387,"040f":91,"041":387,"042":387,"043":387,"043thi":115,"044":387,"045":387,"046":387,"047":387,"048":387,"049":387,"050":[365,387],"050f":91,"051":387,"052":387,"053":387,"054":[59,387],"055":[365,387],"056":387,"057":387,"058":387,"059":387,"060":387,"061":387,"062":387,"063":387,"064":387,"065":387,"066":387,"067":387,"068":387,"069":387,"070":387,"071":387,"072":387,"073":387,"074":387,"075":387,"076":387,"077":387,"078":387,"079":387,"080":387,"081":387,"082":387,"083":387,"084":387,"085":387,"086":387,"087":387,"088":387,"089":387,"090":387,"091":387,"092":387,"093":387,"094":387,"095":387,"096":387,"097":387,"098":387,"099":387,"0b16":146,"0d0":97,"0x045a0990":3,"100":[5,20,48,78,81,97,105,121,126,190,211,217,223,251,254,257,258,277,387,388,432,433],"1000":[5,41,97,128,156,254,255,256,257,258,298],"10000":432,"1000000":[5,104,381],"100m":387,"100mb":154,"101":[20,294,387],"101m":387,"102":387,"102m":387,"103":387,"103m":387,"104":387,"104m":387,"105":387,"105m":387,"106":387,"106m":387,"107":387,"107m":387,"108":387,"108m":387,"109":387,"1098":48,"109m":387,"10gold":121,"10m":150,"110":[251,365,373,387],"110m":387,"111":[55,59,178,387],"111m":387,"112":387,"112m":387,"113":[154,387],"113m":387,"114":387,"114m":387,"115":387,"115600":97,"115m":387,"116":387,"116m":387,"117":387,"117m":387,"118":[47,387],"1184":145,"118m":387,"119":387,"119m":387,"120":[20,387],"1200":371,"120m":387,"121":387,"121m":387,"122":387,"122m":387,"123":[11,141,294,375,387],"1234":[40,147,238],"123dark":103,"123m":387,"124":387,"12400":104,"124m":387,"125":[49,387],"125m":387,"126":387,"126m":387,"127":[53,75,118,144,145,146,148,150,154,160,332,387],"127m":387,"128":387,"128m":387,"129":387,"129m":387,"12s":19,"130":387,"130m":387,"131":387,"131m":387,"132":387,"132m":387,"133":387,"133m":387,"134":[55,178,387],"134m":387,"135":387,"135m":387,"136":387,"136m":387,"137":387,"137m":387,"138":387,"138m":387,"139":387,"139m":387,"140":[3,163,387],"1400":371,"140313967648552":22,"140m":387,"141":387,"141m":387,"142":[76,202,387],"142m":387,"143":387,"143m":387,"144":387,"144m":387,"145":387,"145m":387,"146":387,"146m":387,"147":387,"147m":387,"148":387,"148m":387,"149":387,"149m":387,"150":[370,387],"150m":387,"151":387,"151m":387,"152":387,"152m":387,"153":387,"153m":387,"154":387,"154m":387,"155":387,"155m":387,"156":[8,387],"156m":387,"157":387,"1577865600":100,"157m":387,"158":387,"158m":387,"159":387,"159m":387,"160":387,"160m":387,"161":387,"161m":387,"162":387,"162m":387,"163":387,"163m":387,"164":387,"164m":387,"165":387,"165m":387,"166":387,"166m":387,"167":387,"167m":387,"168":387,"168m":387,"169":387,"169m":387,"16m":387,"170":387,"170m":387,"171":387,"171m":387,"172":387,"172m":387,"173":387,"1730":143,"173m":387,"174":387,"174m":387,"175":387,"175m":387,"176":387,"1763":110,"1764":110,"176m":387,"177":387,"177m":387,"178":387,"178m":387,"179":387,"179m":387,"17m":387,"180":387,"180m":387,"181":387,"181m":387,"182":387,"182m":387,"183":387,"183m":387,"184":387,"184m":387,"185":387,"185m":387,"186":387,"186m":387,"187":387,"187m":387,"188":387,"188m":387,"189":[111,387],"189m":387,"18m":387,"190":387,"1903":110,"190m":387,"191":387,"191m":387,"192":387,"192m":387,"193":387,"193m":387,"194":387,"194m":387,"195":387,"195m":387,"196":387,"196m":387,"197":387,"1970":100,"197m":387,"198":387,"198m":387,"199":387,"1996":143,"1998":143,"199m":387,"19m":387,"1_7":8,"1d100":[121,126,211],"1d2":97,"1d20":121,"1d6":126,"1gb":154,"1st":[100,391,392],"200":[251,387,428],"2001":143,"2003":143,"2004":143,"2008":388,"200m":387,"201":387,"2010":387,"2011":[77,203,249,268],"2012":[77,201,211,212,222],"2013":143,"2014":[77,90,248,251],"2015":[63,77,146,224,240,241],"2016":[77,234,237,247,249],"2017":[6,77,100,154,204,205,210,225,239,244,245,252,254,255,256,257,258,270,271],"2018":[63,75,77,115,116,202,223,233,238],"2019":[63,77,143,222],"201m":387,"202":387,"2020":[55,63,77,78,100,199,207,251,266],"2020_01_29":381,"2020_01_29__1":381,"2020_01_29__2":381,"2021":[50,63,77,391,435],"202m":387,"203":[154,387],"203m":387,"204":387,"2048":150,"204m":387,"205":[371,387],"205m":387,"206":387,"206m":387,"207":387,"2076":110,"207m":387,"208":[106,387],"208m":387,"209":387,"209m":387,"20m":387,"210":387,"210m":387,"211":387,"211m":387,"212":[55,387],"2128":97,"212m":387,"213":[49,387],"213m":387,"214":[49,387],"214m":387,"215":387,"215m":387,"216":387,"216m":387,"217":387,"217m":387,"218":387,"218m":387,"219":[75,387],"219m":387,"21m":387,"220":387,"2207":239,"220m":387,"221":[366,387],"221m":387,"222":[59,365,387],"222m":387,"223":[55,387],"223m":387,"224":387,"224m":387,"225":[55,387],"225m":387,"226":387,"226m":387,"227":387,"227m":387,"228":387,"228m":387,"229":387,"229m":387,"22m":[365,387],"22nd":388,"230":[59,387],"230m":387,"231":387,"231m":387,"232":387,"232m":387,"233":[55,178,375,387],"233m":387,"234":[205,387],"234m":387,"235":387,"235m":387,"236":387,"236m":387,"237":[55,387],"237m":387,"238":387,"238m":387,"239":387,"239m":387,"23fwsf23sdfw23wef23":5,"23m":387,"240":387,"240m":387,"241":387,"241m":387,"242":387,"2429":435,"242m":387,"243":387,"243m":387,"244":[41,387],"244m":387,"245":387,"245m":387,"246":387,"246m":387,"247":387,"247m":387,"248":387,"248m":387,"249":387,"249m":387,"24m":387,"250":387,"250m":387,"251":387,"251m":387,"252":387,"252m":387,"253":387,"253m":387,"254":387,"254m":387,"255":[146,365,387],"255m":387,"256":[55,59,177,365],"25m":387,"26m":387,"27m":387,"280":151,"28gmcp":336,"28m":387,"29m":387,"2d6":[99,121,211],"2gb":154,"2nd":[221,375,391,392],"2pm6ywo":83,"2sgpre":392,"2xcoal":208,"300":[59,138,210,376],"3000000":104,"302":428,"30m":[365,387],"30s":[121,277],"31m":[365,387],"31st":100,"32bit":[146,148],"32m":[365,387],"32nd":99,"333":[55,59],"33m":[365,387],"340":97,"343":29,"34m":[365,387],"358":50,"358283996582031":5,"35m":[365,387],"360":100,"3600":[100,199],"36m":[365,387],"37m":[365,387],"3872":110,"38m":387,"39m":387,"3c3ccec30f037be174d3":388,"3d6":211,"3rd":[29,100,221,391,392],"3sgpast":391,"3sgpre":[391,392],"4000":[2,75,86,118,148,150,153,154,156,157,160],"4001":[2,49,50,51,52,53,72,75,89,101,118,131,140,141,144,148,150,153,154,156,157,160,341],"4002":[2,144,150,154,156],"4003":154,"4004":154,"4005":154,"4006":154,"403":11,"404":[53,101],"40m":[365,387],"41917":332,"41m":[365,387],"4201":154,"425":365,"42m":[365,387],"430000":100,"431":365,"43m":[365,387],"443":[144,150,157],"444":59,"44m":[365,387],"45m":[19,365,387],"46m":[365,387],"474a3b9f":39,"47m":[365,387],"48m":387,"49m":387,"4er43233fwefwfw":75,"4nd":29,"4th":[82,84,143],"500":[53,59,82,138,279,365,435],"50000":104,"500red":365,"502916":8,"503435":8,"505":365,"50m":387,"50mb":154,"516106":97,"51m":387,"520":59,"5242880":199,"52m":387,"530":115,"53m":387,"543":[29,375],"5432":145,"54343":29,"5434343":375,"54m":387,"550":[365,371],"550n":91,"551e":91,"552w":91,"553b":91,"554i":91,"555":[59,239,365],"555e":91,"55m":387,"565000":100,"566":41,"56m":387,"577349":387,"57m":387,"5885d80a13c0db1f8e263663d3faee8d66f31424b43e9a70645c907a6cbd8fb4":83,"58m":387,"593":388,"59m":387,"5d5":97,"5mb":199,"5x5":81,"600":388,"60m":387,"61m":387,"624660":50,"62cb3a1a":39,"62m":387,"63m":387,"64m":387,"64x64":53,"65m":387,"6666":61,"6667":[143,152,167,185,353],"66m":387,"67m":387,"68m":387,"69m":387,"6d6":97,"70982813835144":5,"70m":387,"71m":387,"72m":387,"73m":387,"74m":387,"75m":387,"760000":100,"76m":387,"775":2,"77m":387,"78m":387,"79m":387,"7a3d54":53,"8080":154,"80m":387,"8111":2,"81m":387,"82m":387,"83m":387,"84m":387,"85000":104,"85m":387,"86400":136,"86m":387,"87m":387,"8859":[16,69],"88m":387,"89m":387,"8f64fec2670c":154,"900":[223,371],"9000":427,"90m":387,"90s":389,"91m":387,"92m":387,"93m":387,"94m":387,"95m":387,"96m":387,"97m":387,"981":239,"98m":387,"990":371,"99999":120,"999999999999":280,"99m":387,"\u6d4b\u8bd5":91,"abstract":[66,82,87,111,121,216,258,360,361,362,379,382,388],"ansl\u00f6t":63,"boolean":[14,18,22,29,51,107,140,175,211,223,290,294,305,332,360,363,365,366,382,389],"break":[3,15,30,48,51,54,55,59,63,68,81,83,94,98,99,106,114,115,116,120,122,125,147,157,163,180,187,188,237,263,273,282,321,372,373,388],"byte":[16,19,29,69,314,321,323,332,340,388],"case":[3,8,9,11,13,14,15,16,18,19,20,22,27,30,31,32,36,38,40,44,45,48,49,50,51,52,53,54,55,59,61,63,64,66,67,68,69,76,79,80,81,82,83,84,87,90,91,92,93,96,99,100,101,103,104,106,107,108,109,110,111,112,113,114,115,116,117,119,120,123,125,128,129,136,137,140,143,144,145,156,157,160,161,166,167,172,174,175,177,180,186,187,188,191,194,195,199,200,201,202,204,207,208,211,222,223,231,239,241,246,250,263,269,273,280,282,284,285,286,289,290,294,298,302,304,317,321,325,329,343,350,353,360,361,362,363,365,367,379,385,388,395,419],"catch":[0,6,16,19,35,41,47,94,99,106,125,135,167,186,214,269,303,312,317,324,350,351,360,370,372,379,381,384,436],"char":[44,67,81,82,97,99,105,110,113,126,128,134,136,140,151,166,180,186,216,217,224,269,279,282,294,309,322,335,336,357,365,371,374],"class":[0,3,6,12,13,17,18,20,26,27,28,29,30,36,38,40,41,44,49,50,52,53,54,55,56,61,63,66,72,77,78,80,82,84,85,86,87,90,91,92,93,94,95,96,97,98,99,100,102,103,104,105,106,107,108,109,110,111,114,117,118,120,121,125,126,128,129,131,134,135,136,137,139,140,141,151,166,167,168,169,170,173,174,175,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,194,195,196,199,200,201,202,203,204,207,208,209,210,211,212,214,215,216,217,219,220,221,222,223,224,227,228,230,231,233,234,237,238,239,240,241,245,246,247,248,249,250,251,252,254,255,256,257,258,260,262,263,264,266,267,268,269,270,271,273,274,277,279,280,281,282,284,285,286,290,291,292,293,294,296,298,299,301,302,303,304,305,306,307,309,310,312,314,315,318,319,321,322,323,324,325,326,327,328,329,330,331,332,333,334,335,336,337,338,339,340,341,343,345,348,350,351,352,353,355,356,357,359,360,361,362,363,365,366,367,368,369,370,371,372,373,374,375,376,378,379,380,381,382,383,384,385,386,387,388,392,395,396,397,399,400,401,402,403,405,407,408,409,410,411,413,416,418,419,421,422,427,428,431,432,433,435,436,437,438,440],"const":270,"default":[2,3,5,6,7,8,9,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,30,34,35,36,38,40,41,43,44,45,46,48,49,50,52,54,55,56,57,59,60,61,62,63,64,66,67,69,70,71,72,73,74,75,76,77,78,79,80,81,84,85,86,87,89,90,93,95,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,115,116,117,118,121,122,123,125,128,129,131,133,134,135,137,138,140,141,144,145,148,149,150,151,152,153,154,156,157,160,163,164,166,167,169,170,171,172,173,174,175,194,196,199,201,202,203,204,205,207,209,210,211,212,214,216,217,219,220,221,222,223,224,225,228,230,231,234,237,238,240,241,244,245,247,248,249,250,251,252,254,255,256,257,258,262,263,267,269,270,271,273,276,279,280,281,282,283,284,285,286,287,288,290,294,298,299,302,303,305,306,307,310,312,314,316,317,318,322,334,335,336,341,343,344,350,351,352,353,357,358,360,361,362,363,365,367,368,370,372,373,374,375,378,379,381,382,383,384,385,388,389,395,407,413,418,419,427,433,435,436,437,438,440],"export":153,"final":[0,2,8,19,22,40,44,48,53,54,59,63,64,66,84,88,93,95,99,101,105,107,109,110,111,113,114,119,122,126,128,129,133,138,140,141,145,148,150,157,171,172,173,180,185,189,199,207,211,252,279,290,299,349,353,365,367,372,373],"float":[29,80,84,114,167,210,229,230,233,251,306,312,324,361,375,376,384,388],"function":[0,5,7,8,9,13,14,15,19,22,26,27,28,30,31,38,40,41,43,45,47,48,49,51,52,54,57,59,61,64,66,67,68,70,72,73,75,78,79,81,83,84,86,87,89,90,91,93,96,98,99,100,101,103,104,105,106,107,108,110,112,113,114,116,119,120,121,122,123,125,126,129,131,135,137,140,141,145,148,153,161,163,166,169,172,174,175,177,178,179,180,181,185,186,187,188,190,191,194,195,199,201,202,203,207,209,210,211,214,216,221,222,223,225,229,230,233,234,238,240,241,246,247,251,252,254,255,256,257,258,263,266,268,269,270,271,279,280,281,286,288,289,290,294,297,298,299,303,305,306,307,312,316,317,321,332,333,338,341,344,351,353,355,362,363,364,365,366,368,369,370,372,373,375,376,381,382,383,387,388,389,411,413,416,420,436,437,438],"g\u00e9n\u00e9ral":143,"goto":[82,105,266,273,372],"import":[1,3,5,6,7,8,10,12,13,14,15,16,18,19,20,22,26,27,28,29,30,31,32,33,34,36,38,41,43,44,45,46,47,48,49,50,51,53,54,56,57,61,63,64,66,69,72,73,74,75,76,78,79,80,81,85,86,87,89,90,91,92,93,94,95,96,97,98,99,100,101,103,105,106,107,109,110,112,113,114,117,120,122,123,125,126,128,129,131,133,134,135,136,137,138,139,140,141,147,148,151,152,154,157,161,163,174,180,190,191,199,201,202,203,204,205,207,210,211,221,222,223,233,234,237,239,240,241,247,248,251,252,254,255,256,257,258,263,268,269,271,285,290,298,299,307,312,316,324,325,346,350,353,354,360,362,366,367,370,371,372,373,374,375,385,386,388,418,438],"int":[13,20,27,29,31,41,48,80,82,91,95,97,99,105,106,113,115,129,141,166,167,172,173,175,195,199,201,204,210,211,221,223,225,227,229,230,233,241,251,252,254,255,256,257,258,270,279,280,282,287,294,299,304,306,307,309,310,312,317,321,322,323,324,326,330,331,332,340,341,343,353,355,357,360,361,365,368,370,371,372,373,374,375,376,379,381,385,388,391],"long":[0,8,11,16,18,19,22,27,28,30,32,35,44,47,48,54,61,66,68,69,71,72,75,76,79,80,81,82,83,84,87,91,93,96,99,100,103,105,107,108,110,113,115,116,122,123,125,126,135,137,138,140,142,143,145,151,152,154,177,180,187,201,208,212,230,238,248,257,270,280,321,326,341,365,366,373,374,375,388,391],"new":[0,2,5,7,9,11,12,13,14,15,18,19,20,22,25,26,27,30,32,33,34,36,38,39,40,43,44,45,46,49,50,51,55,56,57,60,61,63,64,67,68,71,72,74,75,76,77,80,81,82,83,84,86,87,88,90,91,93,95,96,98,100,103,104,105,106,107,108,110,114,115,116,117,118,119,120,121,123,124,125,126,127,128,129,130,132,133,134,135,137,139,141,142,143,145,146,147,148,149,150,151,152,153,154,155,156,166,167,173,174,175,177,178,180,185,187,188,190,191,192,194,202,203,204,207,212,214,215,216,219,221,222,223,227,230,234,237,238,239,240,241,247,248,251,252,254,255,256,257,258,267,268,269,271,273,279,280,281,282,284,286,290,293,294,296,298,299,302,305,306,307,309,312,321,322,323,324,330,331,332,337,344,352,353,357,360,361,362,363,365,366,368,371,372,373,374,379,381,382,388,395,397,400,401,428,433,435,437,439,440],"null":[49,66,107,144,396,403],"public":[11,18,53,91,99,107,112,122,141,149,150,152,154,156,157,185,199,294,357,374],"return":[2,3,5,6,8,13,16,18,19,22,26,28,29,30,31,32,36,38,40,41,45,46,48,49,51,52,53,54,59,61,63,68,71,76,78,80,81,82,84,87,89,90,91,92,93,94,95,96,99,100,101,103,104,105,106,107,108,113,114,117,119,125,126,128,129,131,134,135,137,140,141,151,156,157,161,162,166,167,169,171,172,173,174,175,177,180,185,187,190,191,194,195,196,199,200,201,202,204,207,210,211,214,215,216,217,219,221,222,223,225,227,228,229,230,233,234,238,239,240,241,245,246,247,250,251,252,254,255,256,257,258,260,263,266,267,268,269,270,271,273,279,280,281,282,284,285,286,287,289,290,293,294,296,297,298,299,303,304,305,306,307,309,310,312,317,318,321,322,324,325,326,327,329,330,331,332,333,335,336,337,339,340,341,343,344,350,351,353,355,356,357,360,361,362,363,365,366,367,368,369,370,372,373,374,375,376,379,381,382,383,384,385,387,388,389,391,395,396,397,399,400,401,403,405,407,408,410,416,418,420,427,432,433,435,436,438],"short":[3,27,35,36,46,51,59,64,71,73,76,79,82,84,93,95,98,99,100,108,111,113,115,121,129,147,151,157,161,185,202,204,216,230,237,240,241,270,280,299,366,388,391],"static":[30,49,51,52,53,72,77,80,84,99,112,121,122,133,163,164,190,197,202,227,241,249,250,357,368,407,408,410,416,425,436,440],"super":[20,36,48,61,76,78,80,91,98,99,100,103,113,116,129,135,137,202,204,241],"switch":[11,12,14,15,18,20,22,26,30,38,48,54,56,57,59,67,71,74,75,79,91,99,103,104,108,128,129,137,138,145,149,152,154,155,160,177,178,179,180,185,186,187,188,190,211,216,219,222,234,237,238,255,263,273,302,362,368,373,389],"th\u00ed":108,"throw":[11,13,40,62,76,140,153,174,306,388],"true":[0,8,12,13,14,18,19,20,22,26,27,29,30,31,32,33,35,38,41,44,47,48,49,50,51,52,53,54,59,61,62,63,66,70,72,76,80,82,84,89,90,91,93,97,99,100,101,103,105,106,107,108,112,113,114,117,119,122,125,128,129,134,136,137,138,140,147,149,152,154,155,156,166,169,171,173,174,175,177,180,185,187,188,191,194,195,196,199,201,202,204,205,207,208,210,211,214,215,216,219,221,223,225,227,230,238,239,240,241,247,251,252,254,255,256,257,258,263,266,267,271,279,280,281,282,284,286,289,290,293,294,296,298,299,302,303,304,305,306,307,310,312,317,318,321,323,330,335,340,341,351,353,355,357,360,361,362,365,368,370,372,373,374,375,376,379,383,384,385,388,389,392,395,396,397,399,400,401,402,403,408,435],"try":[0,3,5,6,8,13,14,16,18,19,26,27,29,30,31,32,38,40,41,50,51,54,55,56,62,63,66,68,69,72,73,74,75,76,78,79,80,81,82,84,86,87,89,90,91,93,94,95,96,97,98,99,101,103,106,107,108,109,110,111,113,114,115,116,118,120,121,123,124,125,126,127,129,130,132,133,135,136,137,138,140,141,144,145,147,148,149,150,153,154,157,161,166,169,173,175,180,194,196,201,202,207,212,231,239,240,241,247,248,250,254,255,256,257,258,263,267,268,269,271,279,282,284,286,294,298,309,312,321,336,337,341,355,360,362,365,367,368,370,371,375,384,388,396,403],"var":[51,67,145,150,199,244,336,366],"void":97,"while":[5,8,13,14,15,18,20,22,25,26,27,29,34,40,41,49,51,54,59,63,64,66,68,71,74,75,76,80,81,82,83,84,86,88,91,92,93,97,98,99,100,106,108,109,111,112,113,115,116,119,120,121,122,125,128,133,135,137,140,141,145,148,150,153,154,157,161,166,177,180,187,188,191,199,201,207,223,231,238,239,255,258,263,267,269,271,279,282,294,298,299,305,336,359,362,372,374,375,388,389,396,403,436],AIs:143,AND:[32,110,126,180,223,290,360],AWS:[154,156,199],Adding:[1,21,22,68,98,102,104,105,112,115,121,122,125,128,151,163,164,187,197,222,279,372,440],Age:[223,427],And:[0,2,3,13,18,22,27,38,44,54,66,74,75,76,79,81,89,90,91,93,98,100,101,106,113,115,116,121,123,126,138,140,174,204,252,254,255,256,257,258,282,440],Are:[22,104,108,120,143,372],Aye:79,BGs:138,Being:[99,103,115,119,129],But:[0,3,8,13,14,16,18,19,20,22,27,30,38,40,41,43,45,48,54,59,64,66,74,76,81,82,83,84,86,87,90,91,92,93,95,96,98,100,101,104,105,106,107,108,110,112,113,114,115,116,117,120,122,123,125,126,130,138,140,141,147,150,152,156,173,174,201,282,298,363,437],DNS:[150,154],DOING:223,DoS:[5,330],Doing:[22,41,86,93,107,126,141,174,177],For:[2,3,4,5,8,10,11,12,14,15,17,18,19,20,22,27,29,30,32,34,37,40,41,44,49,50,52,53,55,56,57,58,59,63,64,66,67,69,71,72,73,74,75,76,78,79,80,81,82,83,84,86,87,90,91,93,95,97,98,99,100,101,103,105,106,108,110,112,113,114,115,116,117,121,122,125,126,128,129,133,137,138,139,140,141,143,144,145,148,150,152,154,155,156,157,161,166,173,174,175,180,185,187,190,194,195,196,202,204,209,211,216,222,223,224,233,241,247,249,251,252,255,267,280,282,284,286,290,294,299,306,332,341,360,362,365,369,372,375,382,384,388,412,420,427,437],GMs:[99,121,122],Going:[122,123,270],Has:[77,146,254,255,256,257,258],His:[98,224],IDE:[7,84],IDEs:98,IDs:[74,140,141,156,229,360,388,410],INTO:[180,223,273],IOS:146,IPs:[55,145,157,244,355],IRE:[67,336],Its:[4,32,36,41,44,64,66,100,101,185,224,263,299,370,372,388],LTS:6,NOT:[13,22,32,51,91,110,154,157,180,280,290,299,355,375],Near:111,Not:[8,11,18,31,46,47,51,68,94,98,107,110,115,116,120,123,139,140,144,146,147,154,167,174,188,294,309,322,323,324,326,327,328,334,336,339,360,361,382],OBS:[57,77],ONE:157,Obs:8,One:[2,9,10,11,27,29,32,35,41,44,47,55,74,76,79,80,84,87,91,93,98,99,101,106,107,108,110,113,115,116,117,122,125,129,134,137,138,139,143,144,145,148,161,163,169,171,187,201,207,211,216,240,251,252,267,268,279,280,282,298,299,322,350,360,361,365,366,372,373,375,388,396,403,435],PRs:11,Such:[8,14,22,27,50,83,87,92,98,120,122,126,180,299,365,372],THAT:106,THE:223,THEN:[174,223],THERE:223,TLS:157,That:[0,3,4,5,11,16,20,22,29,31,41,44,46,47,48,54,73,74,75,76,79,80,81,82,86,87,89,90,91,95,98,100,101,106,107,108,110,111,113,114,115,119,121,122,125,126,131,133,141,155,201,202,212,251,252,280,290,299,353,372,412],The:[2,3,4,6,7,8,9,10,11,12,16,17,18,19,20,22,24,28,31,32,33,34,35,36,38,39,43,44,45,46,47,48,49,51,52,53,55,59,61,62,63,66,67,68,69,70,71,73,74,75,78,81,83,84,85,86,87,89,90,91,92,94,95,96,97,98,100,103,104,106,107,108,109,110,111,112,113,114,115,116,117,118,121,122,125,126,133,135,136,137,138,139,140,141,142,143,144,145,146,147,148,150,152,153,154,155,156,157,159,161,166,167,168,169,171,172,173,174,175,177,180,184,185,186,187,188,189,190,191,192,194,195,196,199,201,202,204,207,208,210,211,212,214,215,216,217,219,221,222,223,224,225,227,228,229,230,233,234,238,239,240,241,247,248,251,252,254,255,256,257,258,260,262,263,266,267,268,269,270,271,273,276,279,280,281,282,283,284,285,286,287,289,290,293,294,296,297,298,299,301,302,303,304,305,306,307,309,310,311,312,314,316,317,319,321,322,323,324,325,326,327,328,329,330,331,332,334,335,336,337,339,340,341,343,344,349,350,351,352,353,357,360,361,362,363,365,366,367,368,369,370,371,372,373,374,375,376,377,379,381,382,383,384,385,386,388,389,391,396,397,403,407,408,410,412,413,416,418,427,435,436,439,440],Their:[27,40,53,126,157,224],Theirs:224,Then:[3,5,8,11,16,45,51,53,63,74,75,76,79,82,84,95,97,101,106,113,148,156,222,274],There:[0,5,6,8,9,13,14,15,16,18,19,20,22,27,29,30,36,38,41,43,44,45,46,48,49,50,53,54,57,59,66,67,68,69,74,76,79,80,81,82,84,87,88,90,91,98,99,100,101,103,105,106,107,108,109,110,112,114,115,117,120,121,122,123,125,126,128,129,133,134,135,137,140,143,144,145,150,152,154,155,157,188,207,222,223,252,254,255,256,257,258,271,279,299,307,317,336,353,365,366,372,439],These:[5,8,11,13,14,17,22,24,25,27,29,30,31,34,40,41,44,45,46,48,50,51,52,53,59,61,64,66,67,70,74,75,76,78,80,81,82,84,89,91,95,101,106,107,108,109,110,112,113,115,116,117,121,122,125,126,137,140,149,150,154,156,157,161,165,166,171,173,175,177,179,181,185,189,195,202,207,210,233,234,238,240,241,245,251,263,269,277,279,280,282,284,285,290,294,298,299,307,311,318,337,340,341,343,352,353,354,360,362,365,369,372,373,374,375,381,382,383,388,395,404,437],USING:207,Use:[5,8,11,12,14,15,20,27,29,30,34,36,40,44,48,51,55,59,75,76,82,84,89,91,99,101,108,114,115,116,119,128,129,144,145,146,147,148,149,150,154,156,160,166,172,177,178,180,185,186,187,190,192,194,201,202,207,210,212,214,234,237,238,239,241,255,256,257,258,270,275,284,293,294,312,314,318,323,340,341,343,347,360,362,365,371,372,374,375,379,385,388,400],Used:[22,137,171,174,180,223,237,252,271,278,279,282,293,305,314,332,360,362,373,374,388,395,420],Useful:[27,82,154,440],Uses:[70,180,192,212,244,267,312,360,374,379],Using:[1,4,19,27,32,34,47,60,70,76,79,86,99,100,106,110,113,114,115,116,118,122,124,127,129,130,132,137,159,163,164,180,197,241,255,263,270,294,332,359,372,440],VCS:2,VHS:223,VPS:154,WILL:[106,146],WIS:99,WITH:[145,223],Was:185,Will:[20,31,82,84,108,120,161,166,185,207,210,219,221,239,241,282,294,297,299,310,312,321,322,362,372,374,375,376,383,388],With:[13,16,18,35,53,57,78,81,82,86,98,107,110,117,119,120,121,122,125,129,144,145,156,163,166,199,202,207,241,280,294,299,360,365,375],Yes:[22,223,370,372],__1:381,__2:381,_________________:48,_________________________:27,______________________________:27,________________________________:27,_________________________________:48,______________________________________:372,______________________________________________:27,_______________________________________________:27,____________________________________________________:27,_________________________________________________________:105,__________________________________________________________:105,__all__:[395,397,399,400],__defaultclasspath__:362,__dict__:312,__doc__:[22,30,175,188,190,191,286,368,372],__example__:6,__ge:110,__ge__:6,__getitem__:365,__gt:110,__iendswith:110,__in:110,__init_:374,__init__:[4,6,13,45,48,61,80,85,112,116,131,173,174,175,196,199,201,202,207,219,227,239,241,251,270,278,279,280,284,290,293,294,298,303,304,306,307,309,310,312,314,315,321,322,323,324,325,326,327,328,329,330,331,332,333,334,335,336,337,339,340,341,343,350,351,353,355,356,357,360,362,363,365,367,370,371,372,373,374,375,381,382,383,384,388,395,396,400,403,418,421],__istartswith:110,__iter__:13,__le:110,__lt:110,__multimatch_command:189,__noinput_command:[173,189,202,370,372,373],__nomatch_command:[189,202,214,269,370,372],__packed_dbobj__:50,__pycache__:112,__settingsclasspath__:362,__str__:435,__unloggedin_look_command:[192,212],_action_thre:27,_action_two:27,_all_:173,_always_:[207,375],_and_:375,_asynctest:338,_attrs_to_sync:352,_attrtyp:360,_cach:362,_cached_cmdset:174,_call_or_get:202,_callable_no:372,_callable_y:372,_callback:[19,307],_char_index:365,_character_dbref:203,_check_password:27,_check_usernam:27,_clean_nam:200,_clean_str:365,_cleanup_charact:128,_code_index:365,_compress_cont:200,_copi:[180,294],_creation:48,_dashlin:29,_data:373,_default:[27,372],_defend:27,_differ:365,_errorcmdset:174,_event:233,_every_:207,_evmenu:372,_file:381,_flag:298,_footer:22,_format_diff_text_and_opt:299,_funcnam:388,_get_a_random_goblin_nam:40,_get_db_hold:[351,362],_get_top:101,_getinput:372,_gettabl:317,_guaranteed_:375,_helper:375,_http11clientfactori:314,_init:0,_init_charact:128,_is_fight:93,_is_in_mage_guild:27,_ital:84,_italic_:147,_last_puppet:[50,400],_linklen:280,_loadfunc:370,_maptest:277,_menutre:[27,91,372],_monitor:317,_monitor_callback:33,_nicklist_cal:167,_npage:373,_oob_at_:379,_option:27,_os:199,_page_formatt:373,_pagin:373,_parsedfunc:375,_pending_request:357,_permission_hierarchi:289,_ping_cal:167,_playabel_charact:50,_playable_charact:[101,140,400],_postsav:379,_power_cal:29,_prefix:241,_process_cal:29,_quell:289,_quitfunc:370,_raw_str:365,_reactor_stop:[329,350],_recog_obj2recog:241,_recog_obj2regex:241,_recog_ref2recog:241,_regex:241,_repeat:317,_safe_contents_upd:293,_savefunc:370,_saver:[13,369],_saverdict:[13,251,369],_saverlist:[13,369],_saverset:369,_sdesc:241,_select:27,_sensitive_:419,_session:372,_set:110,_set_attribut:27,_set_nam:27,_some_other_monitor_callback:33,_start_delai:307,_static:84,_step:280,_stop_:388,_stop_serv:329,_swordsmithingbaserecip:208,_templat:84,_test:[29,171],_to_evt:373,_traithandlerbas:250,_transit_:282,_uptim:29,_validate_fieldnam:99,_weight:280,_yes_no_quest:372,a2enmod:144,a8oc3d5b:156,a_off:201,a_python_func:84,aaaaaargh:115,aardwolf:67,abandon:214,abat:123,abbrevi:[59,63,180,208,237,375],abcd:186,abid:138,abil:[8,20,22,28,32,40,51,54,68,82,97,98,99,108,112,115,119,121,122,126,129,141,154,156,240,241,248,254,255,256,257,258,294,305,312,360,431],abl:[0,2,3,5,7,10,11,13,14,15,18,19,20,22,27,28,29,35,36,40,41,43,46,50,52,53,57,66,73,74,76,78,80,81,82,86,87,89,90,92,93,98,99,101,103,105,106,108,114,115,119,120,123,125,126,128,129,131,137,140,141,144,145,148,150,151,153,154,156,157,174,177,178,180,181,185,187,194,196,202,210,216,225,234,241,247,251,254,255,256,257,258,275,279,280,360,362,369,384,388,428],abort:[19,22,27,28,36,82,91,117,125,166,175,180,194,207,214,248,269,273,280,294,297,372,373,375,388],about:[0,2,3,5,6,8,11,13,14,15,16,17,20,22,27,29,30,34,37,40,43,46,49,50,53,54,55,56,59,64,66,68,69,72,74,75,76,79,83,84,86,87,88,90,91,94,95,96,98,101,102,103,105,106,107,108,109,110,111,112,113,115,118,119,120,123,124,125,126,127,128,129,130,131,132,133,135,136,138,141,142,143,145,146,147,148,151,153,154,156,157,159,161,166,180,187,190,199,201,202,204,207,211,214,216,217,249,256,257,258,268,269,277,279,286,294,312,314,317,326,328,330,339,341,343,344,351,353,361,363,365,373,379,388,396,403,410],abov:[0,2,7,8,11,12,13,14,15,19,20,22,26,27,29,30,31,32,33,38,40,41,44,46,48,49,51,52,53,54,55,61,63,66,72,73,75,78,79,80,81,82,83,87,89,90,92,93,94,96,97,98,99,100,101,103,105,106,108,110,112,113,114,115,116,117,118,121,125,128,129,135,137,139,140,144,145,146,148,150,154,156,161,173,174,180,202,207,211,221,223,225,234,239,241,248,249,251,252,254,256,257,258,273,279,290,294,317,372,383,396,420],above_str:29,abruptli:251,absolut:[19,53,84,97,100,102,106,141,143,204,210,211,224,371,376,388],absorb:31,abspath:388,abstractus:169,abus:157,academi:143,acccount:24,accecss:375,accept:[11,13,15,18,19,20,27,29,31,32,40,47,48,67,76,82,83,99,114,115,121,122,140,141,145,147,154,166,171,172,190,201,211,223,228,231,239,240,241,248,267,269,279,280,282,294,312,317,330,356,357,361,366,372,375,384,388],accept_callback:[228,230],access:[0,8,9,11,13,14,15,18,19,20,22,27,28,29,30,31,32,33,34,35,36,38,40,41,43,44,45,46,48,49,51,52,53,55,57,61,62,64,66,68,72,74,76,77,78,80,81,82,84,85,87,89,90,91,93,95,97,98,99,101,102,105,106,107,109,110,111,112,113,114,115,118,119,121,122,125,126,128,129,137,138,140,141,144,145,148,150,151,154,156,157,160,166,169,173,174,175,177,178,180,185,186,187,188,190,194,195,196,199,202,207,209,214,222,225,227,229,238,240,241,251,254,255,256,257,258,269,270,282,284,286,287,288,289,290,293,294,297,298,299,302,304,306,307,309,312,321,322,351,353,359,360,362,363,366,367,368,375,381,387,388,396,397,403,408,410,413,427,433,435,438],access_kei:199,access_key_nam:199,access_obj:[289,360],access_opt:389,access_token_kei:[136,151],access_token_secret:[136,151],access_typ:[166,175,180,194,196,284,286,289,290,294,360,362,432,433,438],accessed_obj:[32,91,125,137,289,290],accessing_obj:[13,32,91,125,137,166,194,196,284,286,289,290,294,360,362],accessing_object:[13,289],accessor:[169,196,286,293,302,360,362,363,380],accessori:148,accident:[16,20,82,84,122,129,178,180,208,351],accommod:89,accomod:374,accompani:129,accomplish:[55,80,86,91,120,122,125,375],accord:[20,22,81,110,122,128,138,202,204,221,239,240,255,279,306,365,366,375],accordingli:[7,80,99,154,270],account1:428,account2:428,account:[5,8,11,13,15,17,18,19,20,22,25,26,27,28,29,31,32,34,35,36,38,39,40,41,43,44,45,46,48,49,53,55,57,59,62,64,68,71,72,74,75,76,80,81,83,84,85,89,90,91,97,98,100,101,103,106,107,108,111,112,113,114,117,120,129,136,138,140,141,146,149,151,154,156,161,163,164,170,171,172,173,174,175,176,178,180,181,182,185,186,187,188,191,192,194,195,196,202,203,204,210,212,214,215,222,223,225,227,228,230,234,241,244,247,254,256,257,258,263,266,267,268,269,271,282,284,286,289,290,293,294,296,298,299,300,302,312,316,317,332,343,344,351,352,353,360,362,365,368,372,373,375,382,383,385,386,388,389,393,394,400,407,408,410,413,418,419,426,427,428,430,433,435,437,440],account_cal:[177,185,188,234],account_count:353,account_id:[140,294],account_mod:180,account_nam:97,account_search:[241,294],account_subscription_set:169,account_typeclass:[386,428],accountadmin:[50,395],accountattributeinlin:395,accountchangeform:395,accountcmdset:[12,20,76,98,99,100,114,177,181,203,234],accountcreateview:431,accountcreationform:395,accountdb:[48,85,140,163,166,169,175,194,284,286,359,362,382,389,395,396,403,407],accountdb_db_attribut:395,accountdb_db_tag:395,accountdb_set:[360,363],accountdbfilterset:[407,413],accountdbmanag:[168,169],accountdbpasswordcheck:332,accountdbviewset:413,accountform:[427,431],accountid:140,accountlist:99,accountlistseri:[410,413],accountmanag:[166,168],accountmixin:431,accountnam:[99,180,192,195,212],accountseri:[410,413],accounttaginlin:395,accross:82,accru:166,acct:117,accur:[76,175,219,227,251,255,258,278,284,299,306,310,312,314,315,323,332,333,335,337,340,341,360,365,383,384,421],accuraci:[79,106,121,255,256,257],accus:126,accustom:35,acept:223,achiev:[19,22,59,74,76,84,98,110,119,123,138,217,257,312],ack:28,acl:[199,200],acquaint:[98,123],acquir:367,across:[27,29,40,41,44,48,56,61,66,68,82,97,106,115,120,122,150,166,173,174,204,223,240,269,280,282,285,294,305,307,309,321,322,336,353,373,374,375],act:[5,12,14,18,20,27,41,44,52,60,80,81,82,83,88,93,97,99,110,115,120,122,129,144,145,161,163,166,180,185,196,216,217,223,251,252,274,279,280,281,282,309,321,322,341,360,363,367,372],action1:128,action2:128,action:[3,5,13,41,49,50,59,67,74,76,77,79,82,86,87,93,95,98,100,106,112,113,115,120,125,126,128,129,134,135,140,154,166,167,175,185,186,190,194,201,214,216,219,221,223,241,254,255,256,257,258,263,266,270,280,284,285,286,298,302,303,324,343,344,345,355,362,372,373,379,395,408,411,412,413],action_count:128,action_nam:[254,255,256,257,258],action_preposit:216,actiondict:128,actions_per_turn:[254,255,257,258],activ:[0,2,9,11,14,19,20,22,36,38,41,44,49,55,59,62,63,64,72,75,84,87,89,92,100,103,107,120,133,143,148,149,152,153,154,155,160,161,166,171,174,178,180,190,194,228,245,263,267,271,293,294,297,306,317,324,325,326,327,328,332,334,335,336,343,353,355,360,361,372,373,374,375,388],activest:387,actor:[29,258,294,375,391],actor_stance_cal:70,actual:[0,2,3,5,6,7,8,9,12,13,14,15,18,19,27,29,30,32,34,35,36,40,43,44,46,47,50,51,52,53,54,57,59,61,64,66,67,69,76,79,80,81,82,84,87,90,93,96,99,101,103,105,106,107,108,109,110,111,112,114,115,116,117,119,120,121,122,123,125,126,128,129,130,133,137,138,140,141,143,144,148,151,154,156,166,171,175,177,180,185,186,188,190,191,194,196,199,201,202,204,207,208,214,219,222,223,233,237,238,240,241,248,249,250,251,252,254,255,256,257,258,263,268,269,271,276,277,279,280,281,284,286,289,290,293,294,299,332,335,341,343,349,351,352,353,357,358,360,362,365,367,370,372,379,382,383,384,388,405,438],actual_return:8,ada:30,adapt:[61,74,89,90,101,121,126,140,207],add:[0,2,3,5,7,8,9,10,11,12,13,14,15,16,17,18,20,22,25,26,27,29,30,31,32,33,34,35,36,38,40,41,43,44,46,47,48,49,50,51,54,56,57,59,61,62,63,66,67,69,72,73,74,75,76,77,78,79,80,81,82,83,84,86,87,90,93,94,95,96,98,99,100,101,102,103,104,105,106,107,108,110,112,113,114,115,116,117,118,120,121,122,123,125,126,128,129,134,135,136,137,139,140,141,142,143,144,146,147,149,150,151,154,155,156,163,166,169,173,174,180,185,186,187,189,191,194,201,202,203,204,205,207,211,212,214,216,221,222,227,228,230,231,233,234,237,238,240,241,244,247,248,250,251,252,254,255,256,257,258,260,263,266,267,268,269,270,273,274,275,276,279,280,281,289,290,293,294,298,299,302,303,304,305,306,307,312,317,318,322,325,326,328,330,334,341,343,344,346,354,360,363,366,370,371,372,373,374,375,379,381,383,384,395,400,407,413,435,438,440],add_:374,add_act:128,add_alia:185,add_argu:270,add_callback:[228,230],add_charact:128,add_choic:202,add_choice_:202,add_choice_edit:[76,202],add_choice_quit:[76,202],add_collumn:175,add_column:[99,374],add_condit:256,add_default:[20,90,105,125,137,174],add_dist:258,add_ev:230,add_fieldset:[395,400],add_form:[395,400],add_head:374,add_languag:240,add_map:281,add_msg_bord:221,add_row:[99,104,175,374],add_user_channel_alia:[18,194],add_view:[395,397,400],add_xp:126,addcallback:[22,294],addclass:[51,163,164,393,414],addcom:[99,107,185],added:[2,3,7,9,11,17,19,20,22,30,32,40,41,46,49,61,66,67,68,74,76,78,81,82,84,89,90,91,98,99,101,106,107,110,112,113,114,115,116,121,125,126,128,129,134,137,139,140,142,146,149,153,156,161,166,171,173,174,175,185,189,190,201,202,204,205,207,208,211,224,227,230,233,240,241,251,254,255,256,257,258,263,271,275,279,280,284,290,294,297,299,304,306,317,351,355,360,363,366,372,373,374,381,388,413,420,431,435,439],addendum:83,adding:[2,5,6,7,9,11,15,17,19,20,25,27,32,40,43,46,47,48,51,53,59,61,63,66,68,74,75,76,78,79,82,84,90,93,98,99,100,101,102,103,105,106,110,114,115,116,122,128,129,131,137,138,140,173,174,178,180,187,202,207,210,223,225,227,230,234,240,241,251,252,254,255,256,257,269,270,273,298,299,304,312,343,360,368,374,388,396,403],addingservermxp:327,addit:[2,20,26,29,41,43,50,53,59,67,76,79,80,82,83,89,91,99,100,101,104,106,141,144,154,157,166,167,174,175,187,194,202,205,227,228,230,240,244,250,252,258,270,280,282,290,294,297,306,323,351,360,362,372,427],addition:[81,91,258],additionalcmdset:20,addpart:238,addquot:388,addr:[309,322,323,324,368],address:[11,22,35,44,55,61,72,75,80,106,131,145,150,154,157,166,178,194,212,224,294,309,322,324,332,352,355,388,389],address_and_port:332,addressing_styl:199,addresult:238,addscript:[41,180],addservic:61,adjac:[82,258,267],adject:[6,125],adjoin:241,adjust:[22,74,83,121,138,140,148,199,225,306,372,374],admin:[12,13,16,18,22,32,38,52,53,55,57,66,75,80,90,99,101,105,112,113,120,122,129,137,140,141,152,155,161,163,164,169,170,175,176,180,185,190,192,194,212,214,221,267,284,286,290,293,294,321,322,362,368,384,393,418,440],admin_sit:[395,396,397,399,400,401,402,403],admin_wrapp:398,adminconfig:418,administr:[2,22,32,38,54,71,84,86,87,99,145,148,157,309,321,322],adminportal2serv:321,adminserver2port:321,adminsit:[50,163,164,393,417],adminstr:309,admintest:428,admit:95,admittedli:[82,119],adopt:[0,76,78,87,90,98,122,196,336,391],advanc:[5,14,20,22,27,29,40,43,44,48,53,54,55,61,66,68,76,77,81,86,87,92,95,96,99,102,110,115,118,122,129,143,180,188,222,239,241,251,254,255,256,257,258,263,327,366,370,371,372,374,440],advantag:[2,15,16,27,30,40,43,79,82,86,92,95,97,99,100,101,122,125,126,128,129,131,135,140,154,157,201,202,244,252,254,255,256,257,258,363,366],advent:203,adventur:[77,81,112,119,122],advic:143,advis:[74,76,91],aesthet:26,affair:367,affect:[5,8,9,11,13,14,15,20,22,38,41,44,46,50,57,59,82,91,100,103,115,120,122,125,126,128,138,160,166,173,190,205,207,219,233,240,247,256,263,279,294,298,362,366,374,382],affili:306,affliat:306,afford:[44,105],afraid:154,after:[0,2,8,9,10,11,13,15,16,19,20,22,26,27,32,41,45,52,53,54,59,63,64,66,74,75,76,77,78,79,80,82,84,86,90,91,92,93,94,95,96,99,105,106,107,108,112,113,114,115,116,119,120,122,123,128,129,133,134,137,138,140,143,144,148,150,154,156,157,166,173,174,175,176,177,180,187,188,190,191,194,199,201,202,204,207,209,210,211,212,214,219,220,222,223,225,230,238,240,241,250,251,252,254,255,256,257,258,263,264,267,268,269,270,271,277,280,284,293,294,299,303,305,306,312,334,335,338,343,350,351,352,353,355,357,360,365,366,367,370,372,373,379,383,386,387,388,408,411,431,433,438],after_mov:294,afterlif:122,afternoon:222,afterward:[11,66,82,93,101,106,113,117,119,202],again:[3,7,9,11,14,15,18,22,27,34,38,41,44,52,55,59,66,74,76,80,81,82,87,90,92,93,95,97,98,99,100,101,103,105,106,107,108,111,113,114,115,116,118,120,122,125,126,128,129,137,138,140,145,147,148,150,154,155,156,160,161,167,174,185,191,210,230,239,254,257,258,263,271,305,312,329,332,335,355,365,366,369,384,386],againnneven:191,against:[8,13,20,22,48,63,64,83,90,98,99,110,119,121,128,154,157,166,172,173,208,241,254,255,256,257,258,290,294,298,299,330,355,360,362,385,388],age:[223,270,427],agenc:157,agent:2,agenta:[59,365],ages:223,aggreg:143,aggress:[13,15,119,153,267,362,440],aggressive_pac:267,agi:[8,13,251],agil:13,agnost:[83,87],ago:[91,113,156,388],agre:[69,122,123,126,201,219],agree:201,ahead:[2,15,68,76,80,114,137,146,154,334],aid:[69,118,187,188,201,357],aim:[1,66,68,86,99,102,105,115,120,121,123,126,138,154,298],ain:79,ainnev:[110,126,251],air:[81,90,108,116],airport:117,ajax:[51,61,154,341,352],ajaxwebcli:341,ajaxwebclientsess:341,aka:[5,13,75,122,238,388],akin:113,alarm:[104,108],alert:[18,194,294],alexandrian:143,algebra:80,algorith:240,algorithm:[30,82,122,279,280,388],alia:[8,11,12,18,20,22,29,35,36,41,44,46,48,50,71,75,76,81,82,90,96,98,99,107,108,115,117,148,154,169,172,175,177,180,185,186,187,188,191,194,222,227,241,247,251,264,267,269,271,273,280,289,293,294,299,302,307,317,343,361,362,363,368,375,384,385,386,395,396,397,399,400,401,403,407,409,410,411,413,427,431,432,433,438],alias1:[180,222],alias2:[180,222],alias3:222,alias:[11,12,14,18,19,20,22,27,29,30,31,35,36,40,50,71,73,76,81,90,91,93,96,99,103,104,105,107,108,125,128,129,166,173,175,177,178,179,180,185,186,187,188,189,190,191,192,194,195,201,202,203,204,207,211,212,214,216,222,223,224,228,234,237,238,241,247,248,249,252,254,255,256,257,258,263,267,268,269,270,271,273,280,284,285,286,287,293,294,299,343,361,362,363,368,370,372,373,381,385,407,410],aliaschan:185,aliasdb:166,aliasfilt:407,aliashandl:[363,403,410],aliasnam:299,aliasstr:368,align:[29,40,99,225,365,374,375,388],alist:6,aliv:[86,267],alkarouri:387,all:[0,2,5,6,7,8,9,11,12,13,14,15,16,17,18,19,20,22,25,26,27,29,30,31,32,34,35,36,38,40,41,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,61,63,64,66,67,68,69,70,71,72,73,74,75,76,78,79,80,81,82,83,84,85,86,87,88,90,92,93,94,95,96,97,98,99,100,103,104,105,106,107,108,109,110,111,112,114,115,116,117,118,119,120,121,123,125,126,127,128,129,130,131,133,134,135,137,138,139,140,141,142,143,144,145,147,148,152,153,154,155,156,157,160,161,166,167,170,171,172,173,174,175,176,177,178,179,180,181,182,185,186,187,188,189,190,191,192,194,195,196,201,202,203,204,207,211,212,214,216,217,219,220,222,223,224,227,230,234,237,238,239,240,241,245,247,248,249,250,251,252,254,255,256,257,258,262,263,266,267,268,269,270,271,273,279,280,281,282,284,285,286,287,288,289,290,291,293,294,297,298,299,303,304,305,306,307,308,311,312,316,317,318,321,323,324,326,328,329,330,331,332,335,336,339,340,341,343,344,350,351,352,353,355,357,358,359,360,361,362,363,365,366,367,368,369,370,371,372,373,374,375,379,381,383,385,387,388,389,391,392,395,396,397,399,400,401,403,404,405,413,416,418,420,427,433,435,436,438,439,440],all_alias:46,all_attr:362,all_book:117,all_cannon:110,all_connected_account:353,all_displai:307,all_famili:110,all_fantasy_book:117,all_flow:117,all_from_modul:388,all_map:[82,281],all_opt:383,all_receiv:294,all_room:[14,110],all_ros:117,all_script:41,all_scripts_on_obj:41,all_sessions_portal_sync:353,all_to_categori:285,all_weapon:110,allcom:[107,185],allerror:[312,321],allevi:[8,13,68,357],allheadersreceiv:357,alli:258,alloc:154,allow:[0,2,3,6,7,11,12,13,14,15,16,19,20,22,27,29,30,31,32,34,35,36,38,39,40,43,46,48,49,50,51,52,53,54,55,56,57,63,66,68,69,70,71,72,74,75,76,77,78,79,80,81,82,84,85,86,87,89,90,93,94,95,96,98,99,102,103,105,106,108,110,112,113,114,115,116,117,120,121,125,126,128,129,131,137,138,140,141,142,144,145,147,148,149,150,151,152,153,154,155,156,157,166,167,169,171,173,174,175,177,178,179,180,185,187,188,190,191,194,195,196,201,202,204,207,209,210,211,214,216,219,221,222,223,224,230,237,239,240,241,250,251,252,254,255,256,257,258,263,267,268,269,270,271,279,280,282,284,286,287,289,290,294,298,299,303,306,307,312,316,317,319,323,325,326,327,328,335,336,337,339,344,350,351,353,355,356,360,362,363,365,366,368,370,372,373,374,375,376,379,382,383,384,386,388,398,400,407,408,413,427,432,435],allow_abort:372,allow_dupl:173,allow_extra_properti:251,allow_nan:341,allow_quit:372,allow_reus:207,allowed_attr:99,allowed_fieldnam:99,allowed_host:154,allowed_propnam:129,allowedmethod:341,allowext:357,almost:[22,30,47,48,50,57,115,116,202,204,314,321,359],alon:[8,14,27,32,35,66,77,80,93,97,99,115,123,126,128,173,187,282,307,317,343,366,368,374,375,403],alone_suffix:348,along:[5,22,27,31,41,43,45,55,59,67,82,87,88,106,110,111,115,119,120,123,125,127,137,142,166,177,201,211,240,244,251,252,257,280,290,294,341,359,413],alongsid:[84,150,223,281],alonw:302,alpha:[147,154,365],alphabet:[16,69,81,365,439],alreadi:[0,7,8,9,11,12,13,14,16,19,20,22,26,27,29,30,32,36,41,44,46,48,51,53,61,67,72,74,75,76,79,80,82,84,87,90,91,93,97,98,99,101,103,104,105,106,107,108,109,112,113,114,115,116,117,118,120,123,125,126,128,129,133,134,135,136,137,140,141,147,148,152,156,157,161,173,174,177,180,185,188,190,191,194,195,201,203,204,207,208,216,221,239,240,241,251,254,255,256,257,258,267,268,271,279,280,282,290,294,298,299,312,321,329,330,332,337,340,345,350,351,353,360,363,365,368,373,381,388,408,419],alredi:61,alright:201,also:[0,1,2,3,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,25,26,27,29,30,31,32,33,35,36,38,40,41,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,59,61,62,63,64,66,67,68,69,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,90,91,92,93,94,95,96,97,98,99,100,101,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,123,125,126,127,128,129,130,131,132,133,134,135,137,138,139,140,141,143,144,145,146,147,148,149,150,152,153,154,155,156,157,160,161,166,169,172,173,174,175,177,178,179,180,182,185,186,187,188,190,191,194,195,196,201,202,203,204,207,208,211,216,217,221,222,223,225,230,234,237,239,240,241,248,251,252,256,257,258,263,267,268,269,271,273,279,280,282,284,288,289,290,293,294,298,299,300,302,305,307,308,312,316,317,321,323,330,332,335,336,339,340,343,344,353,357,359,360,361,362,363,364,365,366,367,368,369,370,371,372,373,374,375,376,379,385,388,407,433,435,436,438],alt:365,alter:[51,74,81,87,89,145,360],altern:[11,18,22,27,30,35,41,46,50,59,63,73,77,78,81,84,87,93,98,103,107,118,125,135,140,145,148,152,154,159,185,188,194,238,241,258,263,289,290,330,365,368,388],although:[3,76,93,95,116,148,177,202,203,211,357,384,388],althougn:79,altogeth:[26,59,82,157],alwai:[4,8,9,11,12,13,14,15,18,19,20,22,27,29,30,31,32,34,36,38,40,41,44,45,46,47,48,51,55,59,66,67,72,74,77,78,80,82,83,84,87,89,90,91,94,95,98,99,100,101,105,106,107,108,113,114,115,116,117,118,120,122,125,126,129,137,138,141,144,145,148,152,154,166,173,174,175,177,179,180,185,187,188,191,194,195,196,207,209,214,219,234,240,241,247,251,263,279,280,282,287,289,290,293,294,298,299,307,312,314,317,321,329,332,335,336,340,341,344,351,353,358,360,361,362,363,365,368,375,379,384,385,388,389,408,420,436],always_pag:373,always_return:312,amaz:153,amazon:[143,154,199],ambianc:68,ambigu:[82,175,224,280,294,362],ambiti:[68,71],amend:11,amfl:15,ammo:90,among:[2,8,12,25,36,43,81,87,100,117,123,129,143,186,204,268,290,374,385],amor:231,amount:[13,18,41,56,59,83,120,121,126,129,157,190,254,255,256,257,258,294,353,370],amp:[39,44,61,64,163,164,308,309,312,320,322,330,338,350,353],amp_client:[163,164,308],amp_maxlen:338,amp_port:154,amp_serv:[163,164,308,320],ampclientfactori:309,ampersand:68,amphack:321,ampl:115,amplauncherprotocol:312,ampmulticonnectionprotocol:[309,321,322],ampprotocol:309,ampserverclientprotocol:309,ampserverfactori:322,ampserverprotocol:322,amsterdam:154,amus:107,anaconda:75,analog:[64,80],analys:27,analysi:245,analyz:[16,22,27,32,77,78,122,135,171,180,207,241,294,298,299,303,312,373,388,391],anchor:[175,194,258,284,286,362],anchor_obj:258,ancient:59,andr:146,android:[159,440],anew:[81,114,115,148,194,312],angelica:121,angl:[71,82,216],angri:30,angular:190,ani:[2,3,6,8,9,11,12,13,15,16,18,19,20,22,26,27,29,30,31,32,33,34,35,36,38,40,41,43,44,45,46,47,48,49,51,54,55,56,57,59,61,63,64,66,67,71,72,73,74,76,77,78,80,82,83,84,87,88,90,91,94,95,96,97,98,99,103,104,105,106,107,108,109,110,112,113,114,115,116,117,119,121,122,123,124,125,126,128,129,133,134,135,137,138,140,141,143,144,145,146,147,148,149,152,154,155,156,157,160,166,169,171,172,173,174,175,177,178,180,186,187,190,191,194,195,196,201,202,203,204,207,212,214,216,219,221,222,223,224,225,229,234,237,239,240,241,244,245,248,251,254,255,256,257,258,260,262,263,267,269,270,271,279,280,282,284,287,289,290,294,297,298,299,302,303,305,306,307,309,310,312,314,316,317,321,322,324,330,331,332,335,336,340,341,343,351,352,353,357,360,361,362,363,365,366,367,369,370,371,372,373,374,375,381,382,383,384,385,387,388,395,405,412,413,418,431,432,433,435,436,437,438],anim:[19,28,52,208],anna:[99,129,134,135,148,152,180],annoi:[55,105,106,107,116,122],annot:143,announc:[9,83,91,128,129,143,178,185,190,194,254,255,256,257,258,294],announce_al:[330,353],announce_move_from:[36,91,294],announce_move_to:[36,91,294],annoy:166,annoyinguser123:18,anonym:[62,89,101,241],anonymous_add:241,anoth:[2,3,5,6,7,8,11,13,14,15,20,22,27,30,32,36,40,44,46,49,51,54,56,59,68,69,73,74,76,77,78,79,80,81,82,87,90,93,95,97,98,99,100,101,106,107,108,110,112,115,116,118,121,122,125,128,129,133,137,139,142,144,148,150,154,155,166,173,174,177,180,185,186,191,194,201,202,204,207,216,219,223,229,234,239,241,252,254,255,256,257,258,268,271,273,278,280,284,286,287,294,297,353,360,362,366,370,372,373,375,388,413],another_batch_fil:366,another_nod:372,another_script:41,anotherusernam:49,ansi:[31,51,70,85,103,115,146,163,164,177,205,225,237,317,324,332,335,340,341,364,374,375,387,388,440],ansi_escap:365,ansi_map:365,ansi_map_dict:365,ansi_pars:365,ansi_r:365,ansi_regex:365,ansi_sub:365,ansi_xterm256_bright_bg_map:365,ansi_xterm256_bright_bg_map_dict:365,ansimatch:365,ansimeta:365,ansipars:365,ansistr:[163,365,374],ansitextwrapp:374,answer:[0,8,13,22,27,74,79,90,91,101,115,120,122,123,125,126,148,150,157,310,372],anticip:82,anul:144,anvil:[207,208],anwer:96,anybodi:157,anymor:[8,89,125,203,230,238,239,271,372,384],anyon:[3,32,55,63,89,90,91,93,99,105,122,128,129,135,147,154],anyth:[0,3,7,8,9,11,13,14,18,20,22,27,32,35,36,41,43,48,50,51,53,56,57,61,64,72,74,76,79,80,81,82,87,93,97,101,104,105,106,107,108,112,113,115,116,117,120,122,123,125,128,129,133,135,137,140,145,148,154,156,160,173,175,189,202,241,251,252,254,255,256,257,258,279,290,324,358,360,366,372,375],anytim:122,anywai:[15,18,27,59,68,73,74,86,89,106,108,125,153,201,203,212,279],anywher:[22,27,41,48,82,87,113,115,118,125,141,279,370],apach:[145,154,157,159,357,440],apache2:144,apache_wsgi:144,apart:[8,12,13,19,32,43,48,86,103,138,141,148,156,258,273],api:[0,3,14,16,18,19,22,24,28,30,34,36,40,41,44,48,52,77,78,81,113,117,126,136,140,151,163,164,166,179,190,192,196,207,212,284,351,360,362,366,367,373,393,439,440],api_kei:151,api_secret:151,apicli:411,apirootrout:409,apirootview:409,apocalyps:122,apostroph:16,app:[32,53,61,63,66,72,89,133,141,151,418],app_id:140,app_modul:418,app_nam:[101,418],app_ord:418,appar:[99,138],apparit:269,appeal:[27,59],appear:[0,7,11,18,19,27,30,32,41,43,50,51,53,54,58,59,62,75,76,78,81,82,84,90,91,94,104,107,110,115,119,120,129,138,148,149,152,154,156,163,177,187,204,230,241,247,271,280,294,336,337,362,374,381,403],append:[5,6,8,19,20,26,32,36,61,67,76,80,91,95,101,105,106,110,128,129,140,150,154,175,180,187,204,234,241,290,345,366,381,388],appendto:51,appform:140,appl:[201,216,294],appli:[2,7,9,14,20,22,29,30,32,47,48,53,56,74,75,76,81,82,83,103,114,122,123,127,137,138,140,144,145,166,171,173,188,205,214,216,251,254,255,256,257,258,271,279,280,290,294,298,299,302,307,353,360,361,362,365,366,371,374,376,385,388],applic:[9,32,46,49,61,66,72,111,133,140,141,143,144,148,156,157,166,199,207,216,222,223,258,312,315,325,329,350,351,357,424],applicationdatareceiv:335,applied_d:140,apply_damag:[254,255,256,257,258],apply_turn_condit:256,appnam:[13,32],appreci:[41,76,83,88,142,379],approach:[7,47,76,91,95,97,106,122,140,202,258,280],appropri:[2,7,20,22,71,75,106,137,140,144,145,151,166,178,216,225,312,351,382,384,388,416],approrpri:61,approv:[140,141],approxim:[190,388],apr:63,april:100,apt:[11,144,148,150,153,154,157],arbitrari:[6,13,14,19,29,32,48,51,57,73,79,81,82,87,113,156,166,194,214,222,251,252,258,262,269,294,299,305,310,321,341,355,360,369,381,384,388],arcan:71,arcanist:122,arch:60,archer:299,archetyp:122,architectur:[32,123,299],archiv:[112,143,157],archwizard:299,area:[8,12,76,77,80,82,99,119,120,123,134,143,146,267,271,273,279,282,289,371,372,374,388],aren:[8,11,74,89,93,95,101,133,140,157,166,204,223,230,238,256,381,384,391],arg1:[32,175,188,191,194,214,360],arg2:[175,188,191,214,360],arg:[3,22,27,29,30,31,32,34,40,47,51,54,61,64,67,70,71,76,84,90,91,93,94,95,99,103,105,107,112,114,125,126,128,129,137,139,151,166,167,168,169,172,175,180,188,189,190,191,194,195,196,199,201,204,210,214,216,217,222,224,227,230,238,239,240,241,247,248,249,252,254,255,256,257,258,260,262,263,267,268,269,270,271,275,280,281,282,285,286,287,289,290,292,293,294,297,298,299,301,302,305,306,307,309,312,317,318,319,321,322,323,324,329,330,332,333,335,336,337,340,341,345,351,353,355,357,360,361,362,363,365,372,374,375,376,378,379,381,384,386,388,389,395,396,400,403,409,410,427,433,438],arg_regex:[96,175,180,186,187,191,192,204,207,214,370,372],arglist:188,argn:360,argpars:270,argtyp:388,argu:13,arguabl:[82,115,121],argument:[3,5,8,15,18,19,20,22,26,28,29,31,32,35,36,40,41,47,48,54,55,61,64,67,71,76,79,81,89,90,91,93,98,99,100,101,103,105,107,108,109,110,116,125,129,131,141,145,166,167,171,172,174,175,177,178,180,185,186,187,188,190,191,194,195,199,202,204,207,210,214,216,219,221,222,223,224,227,229,230,239,240,241,245,247,254,255,256,257,258,262,269,270,273,281,282,290,294,298,299,303,305,306,307,310,312,317,321,323,324,330,331,332,335,336,340,341,343,344,351,352,353,355,356,360,361,362,363,365,366,368,370,371,372,373,374,375,379,382,384,385,388,413,436],argumentpars:270,argumnet:374,aribtrarili:388,aris:157,arithmet:[29,251],arm:[0,22,238],armchair:125,armi:105,armor:[93,104,121,127,204,255],armour:93,armpuzzl:238,armscii:[16,69],arnold:35,around:[3,14,15,16,20,29,32,36,40,52,53,54,59,69,71,74,78,80,81,82,84,86,87,88,89,90,93,95,99,101,105,106,107,110,112,113,114,115,116,117,120,121,122,125,126,128,129,133,134,137,143,145,148,151,154,180,188,204,208,210,229,238,241,258,263,267,268,269,271,277,280,294,365,366,374,381],arrai:[49,67,106,280,336,388],arrang:76,arrayclos:[67,336],arrayopen:[67,336],arrest:82,arriv:[44,64,74,91,93,126,180,217,273,324],arrow:[3,51,82,115],art:[59,371],articl:[8,11,16,69,89,90,95,98,143,380],article_set:380,artifact:374,artifici:[122,126],artsi:123,arx:[77,143,159],arxcod:[143,159,440],as_view:[53,175,194,284,286,362],ascii:[16,69,75,81,82,166,279,371,374,388],asciiusernamevalid:166,asdf:180,ash:208,ashlei:[77,204,223,225,252,254,255,256,257,258],asian:388,asid:75,ask:[0,3,5,6,11,26,30,33,54,77,79,82,83,88,90,99,101,106,108,113,114,120,122,123,125,126,140,145,147,148,154,173,175,180,201,210,228,239,270,310,312,339,372,376,388],ask_choic:310,ask_continu:310,ask_input:310,ask_nod:310,ask_yes_no:372,ask_yesno:310,askew:121,asn:244,aspect:[8,27,40,53,66,87,98,112,115,126,207,225],assert:[8,128,375],assertequ:8,assertionerror:[191,375],asserttru:8,asset:[133,157,199,316,416],assetown:75,assign:[2,6,11,12,13,14,18,27,32,35,36,38,40,41,46,47,51,55,82,97,99,108,112,113,114,115,117,125,128,129,137,166,171,172,174,180,185,187,188,191,205,214,222,223,241,251,254,255,256,257,258,269,290,293,294,298,299,317,324,330,332,335,351,369],assist:154,associ:[13,27,44,64,72,89,93,107,113,117,143,154,166,170,180,194,227,230,241,294,351,353,361,433],assum:[6,7,9,14,15,16,18,19,20,22,27,30,31,32,33,36,40,41,44,47,55,57,61,68,69,74,75,76,78,79,80,81,82,83,86,90,91,92,93,95,96,97,99,100,103,104,105,108,110,112,117,123,126,128,129,131,134,135,136,137,139,140,141,150,153,154,156,157,161,171,173,174,175,177,180,185,187,191,194,202,203,208,214,216,241,248,251,268,269,281,282,284,289,294,299,303,336,353,365,366,372,375,388,408,419,435,438],assumpt:[125,172],assur:[48,80],ast:[29,375],asterisk:[12,55,84,114,178],astronom:100,asymmetr:77,async:[140,388,440],asynccommand:54,asynchron:[5,19,22,39,60,87,92,93,167,294,321,322,336,381,388],at_:[48,379],at_access:[166,294],at_account_cr:[12,166],at_after_mov:[36,134,294],at_after_object_leav:271,at_after_travers:[36,268,294],at_again_posit:216,at_already_clos:216,at_already_consum:216,at_already_mov:216,at_already_open:216,at_appli:216,at_befor:294,at_before_drop:[255,258,294],at_before_g:[255,258,294],at_before_get:[258,294],at_before_leav:36,at_before_mov:[36,91,125,254,255,256,257,258,294],at_before_sai:[241,294],at_cannot_appli:216,at_cannot_mov:216,at_cannot_posit:216,at_cannot_read:216,at_cannot_rot:216,at_channel_cr:194,at_channel_msg:194,at_char_ent:134,at_clos:216,at_cmdset_cr:[20,22,76,90,91,94,96,98,99,100,103,105,107,114,125,128,129,137,173,181,182,183,184,201,202,203,204,207,211,214,222,234,237,238,241,249,254,255,256,257,258,263,266,267,268,269,273,343,370,372,373],at_cmdset_get:[166,294,351],at_code_correct:216,at_code_incorrect:216,at_consum:216,at_db_location_postsav:293,at_defeat:[254,255,256,257,258],at_desc:294,at_disconnect:[166,351],at_drink:216,at_drop:[255,258,294],at_empty_target:280,at_end:302,at_err:[54,388],at_err_funct:54,at_err_kwarg:[54,388],at_failed_login:166,at_failed_travers:[36,247,268,294],at_first_login:166,at_first_sav:[166,194,294],at_first_start:362,at_focu:216,at_focus_:[214,216],at_focus_climb:216,at_focus_clos:216,at_focus_cod:216,at_focus_combin:216,at_focus_drink:216,at_focus_eat:216,at_focus_feel:216,at_focus_insert:216,at_focus_kneel:216,at_focus_li:216,at_focus_listen:216,at_focus_mov:216,at_focus_open:216,at_focus_press:216,at_focus_push:216,at_focus_read:216,at_focus_rot:216,at_focus_shov:216,at_focus_sip:216,at_focus_sit:216,at_focus_smel:216,at_focus_turn:216,at_focus_us:216,at_get:[204,258,294],at_giv:[255,258,294],at_green_button:216,at_heard_sai:135,at_hit:267,at_idmapper_flush:[362,379],at_init:[45,48,166,194,267,268,269,294],at_initial_setup:[43,112,316],at_initial_setup_hook_modul:316,at_left:216,at_lock:216,at_login:[48,61,323,324,332,335,340,341,351],at_look:[166,294],at_message_rec:166,at_message_send:166,at_mix:216,at_mix_failur:216,at_mix_success:216,at_msg_rec:[166,224,294],at_msg_send:[166,167,224,262,294],at_new_arriv:267,at_no_cod:216,at_nomatch:216,at_now_add:66,at_object_cr:[20,32,36,48,90,91,95,99,103,105,125,126,129,137,139,180,216,217,222,224,241,247,249,254,255,256,257,258,263,267,268,269,294,362],at_object_delet:294,at_object_leav:[217,269,271,294],at_object_post_copi:294,at_object_rec:[36,134,217,269,271,294],at_open:216,at_password_chang:166,at_paus:[41,305],at_posit:216,at_post_all_msg:194,at_post_channel_msg:[18,166,194],at_post_cmd:[22,94,171,175,188,191],at_post_command:22,at_post_disconnect:166,at_post_func:125,at_post_login:[91,166],at_post_msg:194,at_post_portal_sync:350,at_post_puppet:294,at_post_unpuppet:294,at_pre_channel_msg:[18,166,194],at_pre_cmd:[22,171,175,188,191],at_pre_command:[22,125],at_pre_login:166,at_pre_msg:[18,194],at_pre_puppet:294,at_pre_unpuppet:294,at_prepare_room:271,at_read:216,at_red_button:216,at_reload:[190,350],at_renam:362,at_repeat:[41,48,128,136,137,167,201,210,230,254,255,256,257,258,260,305,345,376],at_return:[54,388],at_return_funct:54,at_return_kwarg:[54,388],at_right:216,at_rot:216,at_sai:[135,216,294],at_script_cr:[41,128,136,137,167,201,210,230,239,240,254,255,256,257,258,260,271,281,298,305,345,376],at_script_delet:305,at_search:112,at_search_result:[189,388],at_server_cold_start:350,at_server_cold_stop:350,at_server_connect:330,at_server_reload:[41,161,166,167,294,305],at_server_reload_start:350,at_server_reload_stop:[91,350],at_server_shutdown:[41,161,166,167,294,305],at_server_start:[41,230,305,350],at_server_startstop:[43,91,112],at_server_stop:350,at_shutdown:350,at_smel:216,at_speech:216,at_start:[41,128,167,271,302,305],at_startstop_modul:307,at_stop:[41,128,137,254,255,256,257,258,305],at_sunris:100,at_sync:[351,352],at_tick:[47,307],at_travers:[36,248,271,294],at_traverse_coordin:271,at_turn_start:256,at_unfocu:216,at_upd:[256,303],at_weather_upd:139,ating:191,atlanti:146,atleast:240,atom:[118,155],atop:271,atribut:369,att:[27,63],attach:[13,36,44,46,63,73,87,89,90,97,99,107,114,115,117,161,175,180,188,190,200,224,234,252,271,290,294,304,349,363,396,403],attachmentsconfig:89,attachscript:180,attack:[15,27,77,79,92,93,94,102,114,119,120,121,126,128,141,154,157,174,241,252,254,255,256,257,258,267,268,294,299,330],attack_count:257,attack_nam:257,attack_skil:299,attack_typ:258,attack_valu:[254,255,256,257,258],attempt:[7,12,20,27,35,72,74,76,77,82,93,106,136,146,157,177,180,214,222,245,247,254,255,256,257,258,309,312,317,350,355,362,375,388,433],attemt:29,attent:[36,81,84,97,99,157,214],attitud:98,attr1:[180,238],attr2:[180,238],attr3:180,attr:[13,27,32,40,51,76,80,99,110,180,187,202,217,269,289,298,299,351,360,362,379,384],attr_categori:396,attr_eq:289,attr_g:[32,289],attr_gt:[32,289],attr_kei:396,attr_l:[32,289],attr_lockstr:396,attr_lt:[32,289],attr_n:[32,289],attr_nam:180,attr_obj:[360,362],attr_object:362,attr_typ:396,attr_valu:396,attract:83,attrcreat:[32,360],attread:13,attredit:[13,32,360],attrib:290,attribiut:360,attribut:[3,8,12,18,19,24,26,27,31,32,33,34,35,36,40,41,44,46,47,48,55,66,68,74,76,79,80,91,92,94,95,97,98,99,101,103,104,105,106,108,110,115,121,125,126,128,129,140,141,163,164,166,169,174,180,189,190,194,199,202,203,207,216,222,229,230,237,238,241,248,251,254,255,256,257,258,263,267,268,269,280,289,293,294,297,298,299,302,303,306,317,351,359,361,362,363,368,369,370,381,382,385,388,393,394,395,397,400,401,403,410,412,413,427,432,433,435,438,440],attribute1:129,attribute2:129,attribute_list:360,attribute_nam:[125,166,241,294,385],attributeerror:[3,66,113,125,351,360],attributeform:396,attributeformset:396,attributehandl:[48,360,383,388,410],attributeinlin:[395,396,397,400,401],attributeobject:13,attributeseri:410,attrkei:299,attrlist:360,attrnam:[13,27,32,40,48,180,251,289,362],attrread:[13,32,360],attrtyp:[13,360,361],attrvalu:27,attryp:361,atttribut:80,atyp:290,audibl:240,audio:51,audit:[163,164,194,197,242,294],audit_callback:244,auditedserversess:[244,245],auditingtest:246,aug:[63,75],august:[75,388],aut:28,auth:[49,166,169,185,332,395,418,419,427,433,438],auth_password:332,auth_profile_modul:169,authent:[44,45,53,61,140,157,166,323,330,332,335,341,351,353,419,432,433,435,438],authenticated_respons:428,author:[138,154,166,227,230,391],auto:[3,4,11,15,18,20,21,22,27,34,36,41,44,52,55,74,77,82,84,90,111,119,122,140,148,150,151,163,166,169,175,179,180,187,190,191,240,241,251,263,273,279,280,283,286,290,294,299,302,307,309,312,323,333,340,341,350,353,362,367,373,374,413,419],auto_close_msg:263,auto_create_bucket:199,auto_help:[22,27,30,96,101,175,187,191,215,223,266,296,372,373],auto_help_display_kei:[175,191,372],auto_id:[397,399,401,403,427],auto_look:[27,215,223,266,296,372],auto_now_add:66,auto_quit:[27,215,223,266,296,372],auto_step_delai:273,auto_transl:240,autobahn:[323,329,340],autodoc:[49,84],autofield:140,autologin:419,autom:[2,15,29,49,50,66,98,99,143,148,150,156,157,161,433],automat:[6,9,11,15,18,19,20,26,27,29,30,32,33,40,41,43,44,48,50,53,54,57,62,66,72,73,74,76,79,81,82,83,84,86,87,94,99,100,103,105,107,110,112,113,114,115,116,117,121,125,128,129,133,134,135,137,138,145,149,150,151,152,154,156,166,173,174,175,180,185,186,188,190,191,199,201,202,203,204,207,209,216,229,230,231,238,239,240,241,249,258,270,273,281,290,293,294,304,306,307,317,326,329,332,337,350,353,355,366,370,372,373,374,375,388,412,413,420],automatical:307,autostart:[41,304,368],autumn:[6,222],avail:[0,2,3,5,7,8,9,11,13,14,18,20,22,24,27,29,30,31,32,34,36,40,41,43,44,48,49,51,53,54,56,59,61,63,67,68,69,70,74,76,78,79,80,81,82,84,85,87,90,91,95,96,98,99,100,103,104,105,106,107,108,109,112,113,114,115,116,117,119,120,122,123,125,128,129,137,140,141,142,143,144,145,148,149,152,153,154,155,156,160,161,163,166,171,172,173,174,175,177,180,182,185,186,187,188,190,191,192,201,202,203,207,211,214,216,221,222,224,230,234,237,239,240,241,249,251,252,254,255,256,257,258,263,268,269,275,290,294,297,298,299,302,317,341,343,344,355,366,367,372,373,374,375,388,405,420,432,435],available_chan:185,available_choic:[27,372],available_funct:298,available_languag:240,available_weapon:268,avatar:[67,87,112,113,115,294,332,413],avatarid:332,avenu:204,averag:[5,14,82,154,190,230,240,270],average_long_link_weight:[82,280],avoid:[0,3,6,8,11,13,19,20,22,27,38,40,48,53,59,61,71,77,81,82,83,84,103,105,113,115,116,120,122,125,138,144,145,156,173,180,239,240,263,270,271,280,289,293,317,321,331,341,351,360,362,365,366,367,370,373,375,379,410],awai:[0,3,11,13,15,16,27,30,32,40,41,44,54,62,66,74,75,78,79,80,81,82,86,90,93,101,113,116,119,121,125,126,129,137,154,186,204,219,252,255,258,263,267,269,271,279,282,294,302,352,365,388,395],await:54,awak:122,awar:[0,13,15,20,22,27,48,67,82,96,118,121,138,139,140,161,199,216,224,239,241,267,270,271,273,280,282,294,362,365],award:122,awesom:[53,72,115,148],awesome_func:116,awesomegam:150,awkward:63,aws:154,aws_access_key_id:199,aws_s3_access_key_id:199,aws_s3_cdn:[163,164,197,198],aws_s3_object_paramet:199,aws_s3_secret_access_kei:199,aws_secret_access_kei:199,aws_security_token:199,aws_session_token:199,awsstorag:[163,164,197],axe:122,axes:[82,279],axi:279,axio:49,azur:156,b64decod:384,b64encod:384,b_offer:201,baaaad:8,back:[0,2,6,7,11,13,14,15,18,19,20,22,26,27,29,31,35,41,44,48,49,51,52,53,54,55,63,64,66,69,72,74,76,79,80,81,82,84,87,90,93,97,99,101,103,105,106,108,110,112,113,114,115,116,117,118,119,120,121,122,123,124,126,128,129,131,135,137,138,140,145,148,150,154,156,161,162,163,166,174,177,180,185,189,201,202,207,216,219,241,247,251,252,257,262,263,273,296,312,317,321,324,330,332,335,350,362,369,372,373,381,388],back_exit:74,backbon:[140,366],backend:[2,8,40,41,49,50,53,72,145,163,164,199,360,388,393,407,413,417],backend_class:360,background:[0,17,27,53,54,59,93,115,138,140,150,154,157,161,205,225,365,375,436],backpack:20,backtick:[11,84,375],backtrack:11,backup:[11,36,44,54,112,154,189,366],backward:[18,26,27,99,137,381],bad:[8,41,63,74,76,82,83,87,99,105,115,117,122,123,146,245,314],bad_back:290,baddi:119,badg:10,badli:251,bag:[30,107,207,388],bake:[78,279],baker:122,balanc:[93,97,120,122,128,143,374],ball:[20,43,172,173,208,299],ballon:238,balloon:238,ban:[18,32,60,91,107,122,166,178,185,191,194,290,440],ban_us:185,band:[51,67,332,335,336],bandag:78,bandit:79,bandwidth:[199,325],banid:178,bank:120,banlist:[18,194],bar:[18,27,29,33,41,46,51,64,67,72,82,104,107,112,117,121,225,241,252,287,312,336,372,375,388],bare:[22,43,86,99,114,121,126,225,255],barehandattack:97,bargain:66,bark:208,barkeep:[3,241],barrel:119,barstool:125,barter:[41,120,134,148,163,164,197],bartl:143,base:[2,3,8,14,17,18,22,27,29,30,32,34,36,41,44,47,48,51,52,53,56,64,66,68,69,71,75,76,77,78,80,81,84,85,86,87,89,90,94,95,97,98,99,101,102,105,108,110,112,113,116,117,118,119,120,121,123,126,127,129,131,133,136,138,140,141,143,145,148,150,152,153,154,156,157,159,163,166,167,168,169,171,173,174,175,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,194,195,196,199,200,201,202,203,204,207,208,209,210,211,212,214,215,216,217,219,220,222,223,224,227,228,230,231,233,234,237,238,239,240,241,245,246,247,248,249,250,251,252,254,255,256,257,258,260,262,263,264,266,267,268,269,270,271,273,274,277,278,279,280,281,282,284,285,286,290,292,293,294,296,298,299,301,302,303,304,305,306,307,309,310,312,314,315,318,319,321,322,323,324,325,326,327,328,329,330,331,332,333,334,335,336,337,338,339,340,341,343,344,345,348,350,351,352,353,355,356,357,360,361,362,363,365,366,367,370,371,372,373,374,375,376,378,379,380,381,382,383,384,385,386,387,388,392,395,396,397,398,399,400,401,402,403,405,407,408,409,410,411,412,413,418,419,421,422,427,428,431,432,433,435,436,437,438,439,440],base_account_typeclass:12,base_channel_typeclass:18,base_char_typeclass:136,base_character_typeclass:[103,136,140,141,166,180],base_field:[395,396,397,399,400,401,403,427],base_filt:407,base_guest_typeclass:62,base_object_typeclass:[40,109,113,299,362],base_script_path:289,base_script_typeclass:41,base_set:75,baseapplic:216,baseclass:268,basecommand:107,baseconsum:216,basecontain:367,baseinlineformset:[396,403],baseline_index:388,basenam:413,baseobject:48,baseopt:382,basepath:388,basepermiss:408,baseposition:216,basest:219,basetyp:[294,366],basetype_posthook_setup:294,basetype_setup:[32,95,166,167,194,294],basetypeclassfilterset:407,bash:[2,148,268],basi:[22,82,83,89,100,112,133,154,188,196,199,241,280,341,362,371],basic:[0,2,9,12,16,17,20,22,32,35,51,53,56,57,61,64,66,69,72,74,75,76,77,79,81,82,93,95,97,98,99,100,101,102,103,107,108,112,113,114,115,116,118,119,120,121,122,125,126,128,131,134,135,137,138,140,141,143,161,166,167,180,185,187,194,196,207,223,229,238,251,255,257,268,289,291,294,343,386,427,436,440],basicmapnod:[82,280],bat:[75,148],batch:[24,81,112,143,148,163,164,179,299,321,360,363,364,440],batch_add:[299,360,363],batch_cmd:15,batch_cod:[14,366],batch_code_insert:14,batch_create_object:299,batch_exampl:366,batch_import_path:[14,15],batch_insert_fil:15,batch_update_objects_with_prototyp:299,batchcmd:[120,122,179],batchcmdfil:[15,366],batchcod:[15,81,107,122,130,143,179],batchcode_map:81,batchcode_world:81,batchcodefil:14,batchcodeprocessor:366,batchcommand:[15,76,107,119,130,148,179,366],batchcommandprocessor:366,batchfil:[15,16,81,366],batchprocess:[163,164,170,176],batchprocessor:[14,163,164,179,364],batchscript:[14,366],batteri:166,battl:[119,128,143,157,254,255,256,257,258],battlecmdset:[254,255,256,257,258],bayonet:78,baz:252,bazaar:68,beach:81,bear:[239,267],beat:[120,122,128],beaten:[128,269],beauti:[76,80,140],beazlei:143,becam:[93,138],becasu:4,becaus:[2,3,12,13,14,16,20,29,30,32,36,40,45,47,48,49,50,53,54,55,56,61,63,68,74,75,76,79,81,82,84,87,90,91,93,96,97,106,107,110,113,114,115,116,121,123,125,126,128,133,134,138,140,141,144,147,150,174,187,192,194,212,219,229,240,257,271,277,279,294,305,324,330,343,353,365,375,382,384,388,395,396,403,413,418],becom:[3,9,27,32,35,40,43,54,66,67,70,74,76,80,81,83,84,87,88,97,103,107,111,112,113,114,115,120,122,125,126,142,177,191,208,224,238,240,252,255,294,299,351,366,372],been:[2,3,5,9,11,14,15,27,29,30,41,44,57,63,72,74,76,79,80,82,84,89,90,99,101,105,106,110,115,117,128,129,134,138,140,141,143,145,157,162,173,174,175,179,180,185,188,194,202,207,230,238,239,241,254,255,256,257,258,269,271,280,284,286,290,293,294,298,299,306,307,314,326,330,332,340,350,351,352,353,355,360,362,366,370,371,388,391,392,403,418,434,439],befit:48,befor:[1,3,5,6,7,8,10,11,13,14,15,16,18,19,20,22,27,30,32,33,38,40,41,43,45,46,47,48,50,51,53,54,55,63,65,66,68,69,72,76,78,79,80,81,82,83,89,90,91,92,93,97,98,99,101,103,105,106,107,108,110,113,114,115,116,118,120,122,125,128,129,134,135,137,138,139,140,141,143,145,150,151,153,154,156,157,166,171,172,175,180,185,187,188,192,194,200,207,209,210,212,219,222,223,224,225,229,233,240,241,244,245,250,251,252,254,255,256,257,258,263,266,268,269,271,279,280,289,290,293,294,297,298,299,306,307,312,321,330,332,338,344,346,348,350,351,355,357,360,365,366,367,368,372,373,374,376,380,381,384,388,418,432,438],beforehand:[11,13,367],beg:15,beggar:74,begin:[0,3,5,7,8,14,15,22,26,30,32,45,54,74,76,79,81,84,86,89,91,99,101,106,108,110,115,120,124,128,134,139,141,152,186,187,229,240,241,252,254,255,256,257,258,279,294,365,366,372,375,385,440],beginn:[86,102,106,113,118,120,143],behav:[8,13,14,45,76,93,101,106,108,114,115,116,161,388],behavior:[5,13,20,22,26,30,40,51,59,72,74,82,101,112,138,166,175,191,204,207,223,256,258,269,270,280,312,360,372,396,403],behaviour:[13,20,22,32,138,358,368,374,388],behind:[6,11,13,22,31,40,46,55,59,80,82,84,86,90,116,119,138,148,179,239,269,302,307,379],behvaior:373,being:[2,3,5,8,11,13,14,20,22,27,29,30,34,40,41,45,47,48,52,54,64,67,71,74,76,78,81,83,87,90,91,92,97,101,106,109,111,112,113,115,119,121,122,123,135,138,140,147,148,150,154,157,166,172,180,186,190,191,194,199,210,211,224,234,240,241,251,254,255,256,257,258,262,263,269,280,286,294,314,317,324,344,353,355,360,362,365,366,368,372,373,374,375,388,391,392,396,403,407,410,418,439],beipmu:146,belong:[15,46,64,73,82,87,89,110,115,140,157,174,241,252,271,286,297],belov:122,below:[2,3,5,7,8,11,13,14,15,16,18,19,20,22,26,27,30,31,32,35,38,40,41,44,48,54,55,57,59,63,67,73,74,75,76,78,80,81,82,84,87,91,93,95,98,99,100,101,103,114,115,116,120,125,126,129,133,134,135,140,141,144,145,148,150,154,156,161,169,180,188,196,202,204,207,208,211,221,225,240,241,251,252,254,255,256,257,258,264,270,279,280,286,293,294,302,324,344,360,362,363,372,374,380,412],beneath:19,benefici:[80,256],benefit:[8,63,68,121,123,142,150,154,156,157,174,360,366,372],berserk:251,besid:[7,15,20,63,74,81,114,225],best:[0,26,41,43,53,63,68,72,75,76,83,98,99,109,112,120,123,140,146,150,152,157,187,202,240,252,270,299,312,332,374,382,439],bet:[20,44,50,362],beta:[25,147,154],betray:27,better:[3,5,16,27,29,30,40,41,46,59,66,68,74,75,78,82,86,87,88,91,96,99,103,105,106,112,113,120,123,125,126,140,141,145,203,208,248,255,269,280,294,299,329,332,335,343,360,366,418],bettween:126,between:[2,5,11,12,15,18,20,22,29,30,35,40,41,44,46,51,54,59,61,63,67,69,73,74,76,79,80,82,84,87,91,92,95,97,98,99,101,105,106,107,112,113,115,116,119,121,122,126,128,129,136,137,138,150,154,156,172,175,180,185,187,190,191,196,201,204,205,207,208,229,230,233,234,237,239,240,241,250,251,252,254,255,256,257,258,277,279,280,281,282,294,299,307,312,321,324,331,332,335,336,343,344,351,363,365,366,368,372,374,375,376,388,421],bew:222,bewar:95,beyond:[8,12,22,28,36,50,67,75,76,83,87,91,98,122,141,154,175,180,191,196,202,214,241,252,263,269,298,343,360,362,372,374],bg_colormap:387,bgcolor:387,bgfgstart:387,bgfgstop:387,bgstart:387,bgstop:387,bias:180,bidirect:321,big:[13,14,15,18,22,32,50,53,73,75,78,83,92,93,98,107,108,116,119,122,123,126,172,187,189,250,251,263,366,373,385,388],bigger:[61,83,90,101,110,129,240,251,277,279],biggest:[152,251,388],biggui:22,bigmech:90,bigsw:93,bikesh:110,bill:[154,157],bin:[2,75,87,89,111,148,153,156],binari:[5,82,145,148,323,325,340],bind:150,birth:427,bit:[0,3,7,8,11,17,25,40,41,51,53,55,63,74,75,76,77,79,89,93,95,100,101,103,107,110,111,112,115,116,118,120,122,123,125,137,141,148,153,185,192,208,212,290,294,366],bitbucket:98,bite:[81,120],bitten:110,black:[59,116,126,138,365],blackbird:143,blackbox:207,blackhaven:82,blacklist:[18,157,185],blade:[122,208,268],blank:[27,66,134,141,166,223,365],blankmsg:223,blargh:40,blast:[207,208],blatant:55,blaufeuer:110,bleed:[11,59,112,251,374],blend:238,blender:238,blind:[59,135,263],blind_target:263,blindcmdset:263,blindli:290,blink:[108,263,387],blink_msg:263,blist:6,blob:[79,84],block:[5,6,23,24,26,27,29,32,41,53,55,59,71,86,87,91,92,99,101,106,107,115,118,129,131,140,141,154,157,161,178,179,180,215,216,221,222,258,266,267,268,271,277,280,287,296,331,366,372,375,388,436,439],blockedmaplink:[82,280],blocker:82,blocking_cmdset:91,blockingcmdset:91,blockingroom:91,blocknam:53,blocktitl:101,blog:[83,86,88,118,143,154,155],blond:121,blowtorch:146,blue:[14,59,98,103,114,115,122,138,268,365],blueprint:[51,81,98],blurb:147,board:[32,34,80,120,137,143],boat:[20,137,174],bob:[22,49,103,178,221],bodi:[8,17,19,22,27,40,53,71,76,79,84,99,115,121,131,140,228,234,287,314,368],bodyfunct:[41,108,163,164,197,259,264],bog:[90,120],boi:46,boiler:[48,53],bold:147,bolt:299,bone:[86,121,126],bonu:[122,126,154,255,256,302],bonus:[93,122,255],book:[40,53,72,80,100,106,117,122,126,131,143,216],bool:[12,20,22,27,31,33,41,82,166,167,169,171,172,173,174,175,180,185,187,194,195,196,201,202,204,207,210,211,216,219,221,223,225,227,230,239,240,241,251,252,254,255,256,257,258,271,279,280,281,282,284,285,286,290,293,294,298,299,302,303,304,305,306,307,312,317,318,323,324,329,330,331,335,340,341,349,351,353,355,360,361,362,363,365,366,368,370,372,373,374,375,376,379,381,383,385,387,388,391,395,397,400,401,408,435],booleanfield:[140,395,401],booleanfilt:407,boom:[90,113],boost:287,boot:[18,32,107,113,156,161,178,185,194,307],boot_us:185,bootstrap:[24,53,60,89,440],border:[81,99,104,177,191,216,219,221,223,371,374],border_bottom:374,border_bottom_char:374,border_char:374,border_left:374,border_left_char:374,border_right:374,border_right_char:374,border_top:374,border_top_char:374,border_width:374,borderless:99,borderstyl:223,bore:[55,86,120,121,157],borrow:[20,148,173,321],bort:[28,372],boss:99,bot:[5,111,140,149,152,157,163,164,165,169,185,317,323,324,331,353,433],bot_data_in:[167,317],both:[0,2,6,7,8,9,11,13,16,18,19,20,22,29,30,31,33,35,43,44,48,49,53,57,61,66,67,74,76,77,80,81,82,83,84,91,96,97,98,99,100,101,105,106,110,112,114,115,116,121,122,123,125,128,133,137,140,141,143,145,149,150,151,154,157,161,171,173,180,185,190,196,201,205,216,221,225,234,238,247,251,252,257,258,269,273,279,280,282,290,294,298,299,300,302,305,307,321,330,340,341,343,350,352,355,360,361,365,368,372,374,375,383,388,410,413],bother:[9,93,157,360],botnam:[152,185,324,353],botnet:157,boto3:199,boto:199,botstart:167,bottom:[5,7,8,28,48,50,51,53,81,82,89,95,98,99,101,105,107,115,125,140,147,150,174,199,234,257,271,279,299,366,373,374],bottommost:82,bought:105,bouncer:[19,157,371],bound:[19,68,84,98,112,113,227,251,279,284,388],boundari:[82,250,251,388],bounti:88,bow:[122,299],bowl:207,box:[3,7,29,32,34,35,40,43,49,62,72,74,78,79,81,86,99,101,108,110,113,114,115,116,118,121,126,129,131,144,148,151,154,180,214,241,273,279,289,321,366,427],brace:[74,76,91,106,294,365],bracket:[71,84,190,205,375],branch:[2,75,77,82,83,84,107,148,156,219,239,252,439],branchnam:11,brandymail:234,bread:[56,78,207],breadrecip:207,breadth:258,break_lamp:263,break_long_word:374,break_on_hyphen:374,breakag:122,breakdown:190,breakpoint:[7,56,163],breath:[113,116],breez:[41,139],breviti:[99,115],bribe:27,brick:104,bridg:[44,64,76,85,88,119,143,145,269],bridgecmdset:269,bridgeroom:269,brief:[11,50,56,57,66,79,90,91,99,105,108,111,118,131,161,223,270,294,356],briefer:[36,161],briefli:[56,113,122,154,161,263],bright:[59,82,103,115,138,205,263,365],brightbg_sub:365,brighten:59,brighter:59,brilliant:11,bring:[80,82,121,123,129,132,133,137,140,145,156,157,252,258,267,280,354],broad:95,broadcast:[166,194,321],broader:[95,241,294],broken:[30,59,68,84,120,240,263],brown:365,brows:[7,11,51,75,86,91,95,99,100,101,105,106,111,129,131,133,154,157,433],browser:[0,49,51,52,53,56,58,72,75,84,87,88,101,111,112,118,131,133,140,141,144,148,150,153,154,157,160,340,341,435,436],brunt:122,brutal:270,bsd:142,bsubtopicnna:191,btest:59,btn:17,bucket:[199,200,244],bucket_acl:199,bucket_nam:199,buf:[121,370],buff:121,buffer:[22,26,51,76,189,199,200,314,341,370,435],buffer_s:199,bug:[0,3,8,11,14,54,77,83,88,98,115,120,122,123,129,142,147,161,294,362],buggi:[13,372],bui:[105,122,201],build:[2,5,7,10,13,14,15,16,18,19,20,23,24,27,30,34,35,36,40,44,46,48,51,53,54,66,68,69,71,73,75,78,82,86,87,98,101,102,103,107,109,110,112,113,114,115,118,119,121,123,124,125,127,129,132,133,136,143,148,153,156,163,164,170,172,176,178,179,186,187,190,202,219,221,222,228,240,241,247,267,270,273,274,276,277,279,280,281,290,294,298,299,312,323,324,366,374,427,439,440],build_link:280,build_match:172,buildchannel:18,builder:[12,15,18,29,30,32,38,40,46,49,50,57,68,76,82,89,91,97,99,105,109,113,120,123,125,129,178,180,185,186,190,202,204,222,223,238,241,247,263,269,270,271,273,290,294,343,362,366,408],buildier:299,building_menu:[163,164,197],buildingmenu:[76,202],buildingmenucmdset:202,buildprotocol:[309,322,323,324],buildshop:105,built:[5,14,19,24,27,29,56,61,72,84,87,98,99,112,115,120,121,123,126,129,137,147,148,153,156,157,169,196,238,240,279,280,281,286,293,302,307,360,362,363,366,370,372,380],builtin:325,bulk:[30,157],bullet:[84,120],bulletin:[32,34,120,143],bulletpoint:84,bunch:[16,19,68,69,99,110,114,116,121,125],burden:104,buri:[68,119],burn:[119,120,123,126,154,268],busi:[87,88,121,154,201],butter:[56,207],button:[7,11,14,15,20,22,32,35,49,50,51,52,53,64,67,72,75,112,114,115,140,141,180,208,216,263,268,344,373,400],button_expos:268,buy_ware_result:105,byngyri:240,bypass:[4,32,38,54,57,89,99,108,113,119,125,128,138,166,180,194,247,290,362,368,385,388,419],bypass_mut:[18,194],bypass_superus:32,bytecod:365,bytes_or_buff:435,bytestr:[321,388],bytestream:388,c20:185,c_creates_button:344,c_creates_obj:344,c_dig:344,c_examin:344,c_help:344,c_idl:344,c_login:[5,344],c_login_nodig:344,c_logout:[5,344],c_look:[5,344],c_measure_lag:344,c_move:344,c_moves_:344,c_moves_n:344,c_social:344,cabinet:39,cabl:104,cach:[8,13,22,41,48,51,52,53,55,66,82,92,95,113,144,166,175,190,194,199,222,250,267,268,279,290,293,294,316,355,360,362,363,364,377,379,388,396,403],cache_inst:379,cache_lock_bypass:290,cache_s:[355,379],cached_properti:388,cactu:257,cake:20,calcul:[19,41,54,82,91,95,110,126,128,129,174,210,222,233,240,250,251,254,255,257,258,277,280,299,376,379,388,432,438],calculate_path_matrix:279,calculated_node_to_go_to:27,calculu:97,calendar:[77,210,233,376],call:[0,2,3,5,8,9,11,12,13,14,15,18,19,20,26,27,29,31,32,33,36,40,41,43,44,45,47,48,49,51,52,54,56,61,64,66,67,68,70,72,74,76,78,79,80,81,82,84,87,89,90,91,92,93,94,95,97,98,99,100,101,103,105,106,107,108,109,110,111,112,114,115,116,117,120,123,125,126,128,129,131,134,135,136,137,138,139,140,141,145,148,149,151,152,153,154,156,160,161,166,167,171,172,173,174,175,177,180,185,188,189,190,191,192,194,201,202,204,207,208,209,210,211,212,214,216,217,219,221,222,223,224,227,228,229,230,231,233,238,239,240,241,247,249,251,252,254,255,256,257,258,260,262,263,266,267,268,269,270,271,280,282,289,290,293,294,297,298,299,303,305,306,307,309,312,314,316,317,321,322,323,324,325,326,327,328,330,331,332,333,334,335,336,337,339,340,341,343,344,345,350,351,352,353,354,357,360,362,363,365,366,367,368,370,372,373,374,375,376,379,381,383,384,385,388,396,403,408,413,427,431,433,436,437,438],call_async:54,call_command:8,call_ev:[74,229],call_inputfunc:[64,351,353],call_task:306,callabl:[26,27,33,40,47,52,53,70,80,129,202,219,223,230,252,256,279,294,297,298,299,303,307,310,312,314,322,353,367,370,372,373,375,381,383,384,388],callables_from_modul:388,callbac:76,callback1:372,callback:[19,22,26,27,31,33,47,54,76,89,93,100,167,190,202,210,223,227,228,229,230,231,233,245,252,266,294,303,306,307,310,312,314,317,321,322,323,325,339,340,343,354,372,376,381,386,388,440],callback_nam:[227,230],callbackhandl:[163,164,197,226],called_bi:171,calledbi:388,caller:[3,13,14,18,19,22,26,29,30,32,35,36,47,48,54,64,66,67,71,76,78,80,81,82,84,90,91,92,93,94,96,97,99,103,104,105,106,107,113,114,117,125,126,128,129,137,151,167,171,172,173,175,177,180,181,185,186,187,188,190,191,202,207,214,215,216,217,223,228,234,238,241,249,252,263,266,268,269,270,271,290,294,296,298,299,366,370,372,373,375,382,388],callerdepth:388,callertyp:171,callinthread:357,calllback:229,callsign:[27,216,317],calm:81,came:[75,81,86,90,91,107,115,139,143,267,271,294],camp:81,campfir:81,campsit:81,can:[0,2,3,4,5,6,7,8,9,10,11,12,14,15,16,17,18,19,20,22,25,26,27,29,30,31,32,33,34,35,36,38,39,40,41,43,44,45,46,47,48,49,50,51,52,53,54,55,57,58,59,61,62,63,64,66,67,68,69,70,72,73,74,75,77,78,79,80,81,82,83,84,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,103,104,105,106,107,108,109,110,111,112,113,114,115,118,119,120,121,123,125,126,128,129,131,132,133,134,135,136,137,138,140,141,142,143,145,146,147,148,149,150,151,152,153,154,155,156,157,160,161,165,166,167,169,172,173,174,175,177,178,180,185,186,187,188,189,190,191,194,195,196,199,200,201,202,204,205,207,210,211,215,216,217,219,221,222,223,224,225,229,230,233,234,238,239,240,241,244,247,251,252,254,255,256,257,258,262,263,267,268,269,270,271,273,275,276,279,280,282,284,286,289,290,293,294,297,298,299,300,302,303,305,307,312,323,327,330,332,335,336,340,341,343,344,350,351,352,353,354,357,358,359,360,361,362,363,365,366,367,368,370,371,372,373,374,375,382,383,384,385,386,388,389,391,395,408,410,413,427,432,433,435,436,438],can_:229,can_list_top:[187,435],can_read_top:[187,435],cancel:[19,31,93,125,190,229,254,255,256,257,258,294,306],candid:[22,76,117,125,140,172,238,241,287,294,385],candidate_entri:287,candl:174,cannon:110,cannot:[4,8,9,13,14,15,19,20,22,26,27,34,38,40,43,46,50,54,57,59,63,75,76,79,82,88,90,91,92,93,95,96,97,101,105,112,113,114,117,119,120,123,126,129,140,148,154,166,167,174,177,180,187,202,207,219,222,223,227,230,247,252,258,267,268,273,285,290,294,298,307,360,367,369,371,374,379,388],cantanker:382,cantclear:223,cantillon:143,cantmov:91,canva:80,capabl:[2,32,44,64,67,80,87,99,120,177,249,317,339,427],cape:98,capfirst:101,capit:[29,55,67,75,87,91,93,115,116,122,129,180,221,224,239,240,251,365,375],captcha:140,caption:84,captur:[91,106,381,438],car:[35,137],carbon:[207,208],card:[82,157,281,282],cardin:[80,82,96,99,180,279,280,281],care:[22,27,54,55,66,74,80,82,84,87,89,96,97,98,100,106,113,115,122,123,128,137,138,139,142,145,161,166,173,194,207,214,222,238,241,266,267,269,273,279,289,294,343,362,366,370,372,373,374,388],career:123,carefulli:[5,44,50,81,86,140],carri:[20,32,78,104,105,108,112,120,125,128,134,196,204,208,255,267,289,351,361],carv:78,cascad:379,case_insensit:216,caseinsensitivemodelbackend:419,cast:[40,46,92,116,252,257],caster:[92,257],castl:[14,81,82,109,119,222,269],cat:[150,153],catchi:89,categor:46,categori:[2,8,13,22,27,30,40,46,66,73,78,82,84,95,101,107,110,117,175,176,177,178,179,180,185,186,187,188,189,190,191,192,201,202,203,204,207,211,212,214,217,222,223,224,228,234,237,238,241,247,248,249,252,254,255,256,257,258,263,267,268,269,270,273,284,285,286,287,289,294,298,299,343,360,361,363,368,370,372,373,380,382,385,388,407,435],categoris:97,category2:380,category2_id:380,category_id:380,category_index:252,cater:[93,123],caught:[3,6,27,125,195],cauldron:208,caus:[3,8,13,20,32,51,55,73,87,93,94,107,113,128,129,134,145,154,174,194,212,263,271,280,294,343,372,374,388],caution:[51,100,372],cave:[79,82,273,274],caveat:[54,70,125,199],caveman:97,cblue:11,cboot:[55,107,185],cc1:148,cccacccc:371,ccccc2ccccc:99,cccccccc:371,ccccccccccc:99,cccccccccccccccccbccccccccccccccccc:371,ccccccccccccccccccccccccccccccccccc:371,ccreat:[99,107,149,152,155,185],cdesc:[107,185],cdestroi:[107,185],cdmset:20,cdn:157,ceas:180,cel:371,celebr:120,cell:[0,81,99,101,119,223,371,374],celltext:371,cemit:107,censu:361,center:[29,40,53,56,80,81,82,89,95,219,221,225,273,279,365,374,388],center_justifi:40,centos7:150,centr:[30,81],central:[8,18,31,78,81,82,87,139,156,166,174,191,194,196,207,217,277,294,299,321,368,372,379,416],centre_east:81,centre_north:81,centre_south:81,centre_west:81,centric:[32,44,75,129,241],cert:[144,333,337],certain:[6,14,15,20,22,32,41,44,45,47,56,57,58,67,68,83,84,87,91,93,112,121,122,137,145,153,154,180,195,201,240,244,251,263,268,271,279,289,298,305,312,318,335,339,354,360,361,370,374,375,385,388,396,413,427],certainli:[16,96],certbot:[150,154,157],certfil:[333,337],certif:[144,154,333,337,440],certonli:150,cet:381,cfg:150,cflag:153,cgi:154,cha:[27,99],chain:[27,40,54,74,79,82,93,110,229,230,280,312,344,372],chain_1:74,chainedprotocol:332,chainsol:110,chair:[14,36,46,48,106,120],challeng:[102,116,119,126,143,217],chan:[18,185],chanalia:185,chanc:[5,11,20,29,47,62,76,78,90,92,113,119,120,126,128,147,173,208,254,255,256,257,258,263,268,269,344],chance_of_act:[5,344],chance_of_login:[5,344],chandler:128,chang:[0,2,3,5,8,10,12,13,14,15,16,18,20,22,25,26,27,29,30,31,32,33,34,35,36,40,41,43,44,45,46,47,48,51,55,56,57,59,60,62,64,66,72,75,76,78,80,81,82,83,85,87,89,90,93,94,95,98,100,103,105,106,107,108,110,112,114,115,116,118,120,121,125,126,127,128,129,131,135,137,138,139,140,141,142,144,145,147,148,150,151,153,154,156,159,161,166,174,175,177,178,180,185,186,191,194,201,202,204,207,212,216,219,222,224,225,227,230,237,240,241,247,248,250,251,252,254,255,256,257,258,267,268,269,270,271,280,281,282,284,286,294,298,299,302,303,305,306,307,312,317,328,343,350,351,358,360,362,366,369,370,373,374,375,381,382,383,384,395,396,397,400,401,403,436,438],change_name_color:252,changelock:[18,185],changelog:111,changepag:141,channel:[12,13,19,20,22,23,24,32,34,35,45,46,48,52,53,55,57,66,85,86,88,104,107,112,113,117,120,129,143,149,151,152,154,155,159,163,164,166,167,173,174,180,185,191,193,194,195,196,230,263,323,324,331,344,350,351,353,360,368,381,385,393,397,426,428,430,440],channel_:[18,194],channel_ban:[18,185],channel_color:91,channel_connectinfo:351,channel_detail:432,channel_list:432,channel_list_ban:185,channel_list_who:185,channel_msg:[18,166],channel_msg_nick_pattern:[18,194],channel_msg_nick_replac:[18,185,194],channel_msg_pattern:185,channel_prefix:[18,91,194],channel_prefix_str:[18,194],channel_search:195,channel_typeclass:428,channeladmin:397,channelalia:[18,185,194],channelattributeinlin:397,channelcl:185,channelcmdset:[20,107],channelconnect:196,channelcr:185,channelcreateview:194,channeldb:[48,85,163,194,196,359,397],channeldb_db_attribut:397,channeldb_db_tag:397,channeldb_set:[360,363],channeldbmanag:[195,196],channeldeleteview:194,channeldetailtest:428,channeldetailview:[194,432],channelform:397,channelhandl:18,channelkei:195,channellisttest:428,channellistview:432,channelmanag:[194,195],channelmixin:432,channelnam:[18,152,166,167,185,194,323],channeltaginlin:397,channelupdateview:194,char1:[8,126,186,191,428],char2:[8,126,186,428],char_health:269,char_nam:140,charac:33,charact:[2,3,5,6,8,12,13,15,16,17,19,20,22,26,27,29,30,31,32,35,38,41,44,48,49,53,57,59,61,63,66,67,69,71,72,74,75,76,80,81,82,85,86,90,92,93,94,95,97,98,100,101,102,103,105,106,107,108,109,110,111,112,114,115,116,117,118,127,128,133,134,135,136,137,145,151,163,164,165,166,172,173,175,177,180,181,182,186,187,188,190,194,202,203,204,214,216,217,219,222,223,224,225,227,229,230,234,237,239,240,241,244,249,251,252,254,255,256,257,258,260,263,267,268,269,271,273,277,279,280,282,284,286,290,294,305,317,338,351,356,360,362,365,366,371,372,374,375,386,388,389,393,407,413,426,427,428,430,435,437,438,440],character1:126,character2:126,character_cleanup:[217,219],character_cmdset:222,character_ent:219,character_exit:217,character_form:433,character_id:294,character_leav:219,character_list:433,character_manage_list:433,character_typeclass:[8,166,386,428],charactercmdset:[18,20,50,76,82,90,91,94,96,98,99,100,103,113,114,125,129,182,202,204,222,234,237,247,254,255,256,257,258,269],charactercreateview:[428,433],characterdeleteview:[428,433],characterdetailview:433,characterform:[427,433],characterlistview:[428,433],charactermanageview:[428,433],charactermixin:433,characterpuppetview:[428,433],charactersheet:27,characterupdateform:[427,433],characterupdateview:[428,433],characterviewset:413,charapp:140,charat:223,charcreat:[74,79,101,107,177,203],charcter:18,chardata:99,chardelet:[107,177],chardeleteview:[286,362],chardetailview:[175,284,286,362],charfield:[66,140,384,395,396,397,399,400,401,403,427],charfilt:407,charg:[77,154],chargen:[140,163,164,194,197,286,362],chargencmdset:129,chargenroom:129,chargenview:[286,362],charnam:[99,177,375],charpuppetview:362,charset:388,charsheet:99,charsheetform:99,charupdateview:[286,362],chase:119,chat:[0,11,12,23,38,53,75,83,86,88,99,120,122,123,129,143,148,149,152,155,159,341,381],chatroom:98,chatzilla:152,cheap:[11,123],cheaper:47,cheapest:[82,154],cheapli:269,cheat:[84,126,145],chec:191,check:[0,2,3,5,6,7,8,9,10,11,14,15,18,19,20,22,27,29,34,35,36,38,40,41,46,47,48,49,55,57,61,63,66,74,76,78,79,80,81,83,84,88,89,91,92,93,95,96,97,99,101,103,104,105,106,112,113,114,118,122,123,125,126,128,129,133,134,135,137,140,147,148,149,150,151,154,155,156,157,160,161,166,171,172,173,174,175,177,179,180,185,186,187,188,190,191,192,194,196,199,201,203,204,207,212,216,217,219,222,223,230,234,251,254,255,256,257,258,260,263,267,269,270,271,277,280,282,289,290,293,294,298,299,302,304,305,306,311,312,316,321,327,332,350,351,353,355,356,357,360,362,363,365,366,368,375,382,383,388,389,391,395,396,403,408,435,438],check_attr:180,check_character_flag:216,check_circular:341,check_databas:312,check_db:312,check_defeat:126,check_end_turn:128,check_error:311,check_evennia_depend:388,check_flag:[216,217],check_from_attr:180,check_grid:80,check_has_attr:180,check_light_st:269,check_loc:199,check_lock:408,check_lockstr:[32,89,290],check_main_evennia_depend:312,check_mixtur:216,check_obj:180,check_perm:217,check_permiss:298,check_permstr:[166,362],check_to_attr:180,check_warn:311,checkbox:140,checker:[16,80,289,332,389,392],checklockstr:107,checkout:[11,75,156],checkoutdir:2,chemic:208,chest:[38,106,116,117],chicken:214,child:[18,22,27,32,82,87,107,113,114,116,125,128,167,169,175,180,191,207,214,216,219,269,293,299,302,357,380,410],childhood:27,children:[22,46,48,87,90,110,134,169,282,293,294,302,312,361,380,405,433],chillout:180,chime:19,chines:[63,69,91,143],chip:99,chmod:2,choci:202,choic:[8,16,22,27,29,40,41,44,45,69,71,86,89,106,114,115,116,118,125,128,139,142,145,154,166,177,180,201,202,223,254,270,310,370,372,375],choice1:71,choice2:71,choice3:71,choicefield:[395,396,400,401,403,405],choos:[7,14,27,29,53,54,72,73,75,80,82,84,87,98,100,105,110,121,122,126,128,129,136,138,140,152,191,249,252,254,255,256,257,258,263,267,325,372,375,387,440],chop:[22,268],chore:120,chose:[66,99,115,140,147,157,160,252,372],chosen:[7,27,67,76,128,139,223,225,372,375],chown:156,chractercmdset:269,chraract:279,chrome:146,chronicl:223,chroot:150,chug:22,chunk:[14,81,101,199,314,366],church:[19,121],church_clock:19,churn:125,cid:344,cillum:28,cinemat:[219,221],circl:95,circuit:51,circular:[314,367],circumst:[27,70,79,98,105,112,114,115,125,173,257,427],circumv:178,cis:391,citi:[30,82,122,279],citymap:82,cjust:[29,375],clang:153,clank:74,clarifi:91,clariti:[63,66,106,116,129,153,208],clash:[20,30,118,145,154,180,362,372],class_from_modul:388,classic:[14,44,46,47,113,122,128,131,143],classmethod:[95,166,194,207,209,282,286,294,305,362,379,421],classnam:[13,63,116],classobj:362,claus:[135,142],clean:[11,17,18,27,81,89,91,92,113,114,119,125,128,161,173,175,180,190,201,208,217,219,241,254,255,256,257,258,268,269,271,294,302,312,316,330,340,353,362,365,370,372,379,384,387,388,395,396,403,427],clean_attr_valu:396,clean_attribut:[48,166,362],clean_cmdset:[48,362],clean_senddata:353,clean_stale_task:306,clean_str:365,clean_usernam:395,cleaned_data:140,cleaner:[106,116,129],cleanli:[44,87,161,171,175,185,223,314,323,329,340,353,370],cleanup:[8,13,22,26,27,61,76,201,207,219,266,269,372,395],clear:[9,11,13,16,18,22,26,43,46,47,48,51,55,61,69,71,76,81,82,83,84,87,88,89,93,101,103,120,123,125,126,139,161,174,177,178,180,186,223,239,241,250,251,269,273,281,290,293,294,303,306,307,314,351,355,360,362,363,372,379],clear_attribut:360,clear_client_list:348,clear_cont:[36,294],clear_exit:[36,294],clearal:[71,186],clearli:[9,55,83,113,379],cleartext:[245,368],clemesha:357,clever:[18,20,27,54,290],cleverli:44,click:[2,7,9,11,49,50,51,52,53,58,70,72,84,101,111,140,154,372],click_top:187,clickabl:[70,84,187,440],clickable_top:187,client:[2,5,9,22,26,28,29,31,33,43,44,45,49,52,55,58,59,61,68,69,75,76,81,82,84,86,87,91,94,103,106,108,112,113,114,115,122,128,131,133,134,138,143,144,145,147,148,149,150,152,153,156,157,159,160,163,164,166,167,175,177,185,187,190,245,280,282,308,309,313,315,317,321,322,323,324,325,326,327,328,330,332,334,335,336,337,339,340,341,343,344,350,351,352,353,369,370,372,387,388,407,410,436,440],client_address:61,client_class:411,client_default_height:28,client_disconnect:341,client_encod:145,client_opt:[317,336],client_secret:149,client_typ:216,client_width:[22,175],clientconnectionfail:[309,323,324],clientconnectionlost:[309,323,324],clienthelp:51,clientkei:343,clientraw:190,clientsess:[340,341],clientwidth:107,cliff:[108,180],climat:46,climb:[5,22,86,180,216,268],climbabl:[216,268],clipboard:50,clock:[19,22,55,107,126,185],clone:[9,10,63,84,87,111,148],close:[7,11,15,26,27,44,48,51,52,61,74,76,77,79,84,87,91,95,101,113,115,116,140,150,154,156,157,161,190,192,199,200,201,202,212,216,225,247,258,263,266,314,322,323,330,332,340,341,353,360,366,372,375],close_menu:[266,372],closer:[240,258],closest:[59,95,251,388],cloth:[78,163,164,197,366],clothedcharact:204,clothedcharactercmdset:204,clothes_list:204,clothing_typ:204,clothing_type_count:204,clothing_type_ord:204,cloud:[41,139,154,156,157,199],cloudi:41,cloudkeep:77,clr:[29,221,298,375],cls:[95,166,251],club:207,clue:268,clump:116,clunki:[11,258],cluster:145,clutter:[84,174],cma:11,cmd:[5,15,18,20,22,30,32,55,67,76,85,91,92,93,96,99,100,104,105,107,112,115,118,125,129,137,151,160,173,175,177,178,179,180,185,186,187,188,189,190,191,192,201,202,203,204,207,211,212,214,222,223,224,228,234,237,238,241,247,248,249,252,254,255,256,257,258,263,267,268,269,270,273,283,294,336,340,341,343,366,370,372,373,435],cmd_arg:106,cmd_channel:22,cmd_help_dict:187,cmd_help_top:435,cmd_ignore_prefix:172,cmd_kei:106,cmd_last:44,cmd_last_vis:44,cmd_loginstart:22,cmd_multimatch:[22,171],cmd_na_m:67,cmd_name:67,cmd_noinput:[22,171,372],cmd_nomatch:[22,171,269,372],cmd_noperm:22,cmd_on_exit:[27,215,223,252,266,296,372],cmd_or_top:[187,435],cmd_total:44,cmdabil:8,cmdabout:190,cmdaccept:201,cmdaccess:186,cmdaddcom:185,cmdallcom:185,cmdapproach:258,cmdarmpuzzl:238,cmdasync:54,cmdattack:[93,126,128,129,254,255,256,257,258,268],cmdban:178,cmdbare:107,cmdbatchcod:179,cmdbatchcommand:179,cmdbigsw:93,cmdblindhelp:263,cmdblindlook:263,cmdblock:91,cmdboot:178,cmdbridgehelp:269,cmdbui:105,cmdbuildshop:105,cmdcallback:228,cmdcast:257,cmdcboot:185,cmdcdesc:185,cmdcdestroi:185,cmdchannel:[18,185],cmdchannelcr:185,cmdcharactercr:203,cmdcharcreat:177,cmdchardelet:177,cmdclimb:268,cmdclock:185,cmdcloselid:263,cmdcolortest:177,cmdcombathelp:[254,255,256,257,258],cmdconfigcolor:103,cmdconfirm:22,cmdcopi:180,cmdcover:204,cmdcpattr:180,cmdcraft:207,cmdcraftarmour:93,cmdcreat:180,cmdcreatenpc:129,cmdcreateobj:214,cmdcreatepuzzlerecip:238,cmdcwho:185,cmddarkhelp:269,cmddarknomatch:269,cmddeclin:201,cmddefend:128,cmddelcom:185,cmddesc:[180,222],cmddestroi:180,cmddiagnos:94,cmddice:[99,211],cmddig:180,cmddisengag:[128,254,255,256,257,258],cmddoff:255,cmddon:255,cmddrop:[186,204],cmddummyrunnerechorespons:343,cmdeast:269,cmdecho:[22,84,93,107,114,191],cmdedit:202,cmdeditnpc:129,cmdeditorbas:370,cmdeditorgroup:370,cmdeditpuzzl:238,cmdemit:178,cmdemot:[214,241],cmdentertrain:137,cmdevalu:201,cmdevenniaintro:269,cmdevmenunod:372,cmdevscaperoom:214,cmdevscaperoomstart:214,cmdexamin:180,cmdexiterror:96,cmdexiterroreast:96,cmdexiterrornorth:96,cmdexiterrorsouth:96,cmdexiterrorwest:96,cmdextendedroomdesc:222,cmdextendedroomdetail:222,cmdextendedroomgametim:222,cmdextendedroomlook:222,cmdfeint:128,cmdfight:[254,255,256,257,258],cmdfind:180,cmdfinish:201,cmdfocu:214,cmdfocusinteract:214,cmdforc:178,cmdget:[91,114,186,214],cmdgetinput:372,cmdgetweapon:268,cmdgive:[186,204],cmdgiveup:214,cmdgmsheet:99,cmdgoto:273,cmdgrapevine2chan:185,cmdhandler:[20,22,36,64,112,163,164,166,170,172,173,174,175,177,188,189,190,191,214,222,238,269,293,294,302,388],cmdhelp:[30,128,187,214,254,255,256,257,258],cmdhit:[107,114,128],cmdhome:186,cmdic:177,cmdid:317,cmdinsid:137,cmdinterrupt:191,cmdinventori:[104,186,204],cmdirc2chan:185,cmdircstatu:185,cmdjumpstat:214,cmdlaunch:90,cmdlearnspel:257,cmdleavetrain:137,cmdlen:[172,189],cmdlight:268,cmdline:312,cmdlineinput:370,cmdlink:180,cmdlistarmedpuzzl:238,cmdlistcmdset:180,cmdlistpuzzlerecip:238,cmdlock:180,cmdlook:[4,8,94,186,203,214,222,269],cmdlookbridg:269,cmdlookdark:269,cmdmail:234,cmdmailcharact:234,cmdmakegm:99,cmdmap:273,cmdmask:241,cmdmobonoff:267,cmdmore:373,cmdmorelook:373,cmdmultidesc:[98,237],cmdmvattr:180,cmdmycmd:[30,97],cmdname2:172,cmdname3:172,cmdname:[31,51,61,64,67,107,125,129,171,172,175,180,188,189,191,317,335,336,340,341,353],cmdnamecolor:252,cmdnewpassword:178,cmdnick:186,cmdnoinput:202,cmdnomatch:202,cmdnositstand:125,cmdnpc:129,cmdnudg:263,cmdobj:[171,172,189,191],cmdobj_kei:171,cmdobject:[171,172,190],cmdobjectchannel:18,cmdoffer:201,cmdooc:177,cmdooccharactercr:203,cmdooclook:[177,203],cmdopen:[180,247,273],cmdopenclosedoor:247,cmdopenlid:263,cmdoption:[177,214],cmdpage:185,cmdparri:128,cmdparser:[43,163,164,170],cmdpass:[254,255,256,257,258],cmdpassword:177,cmdperm:178,cmdplant:270,cmdpose:[128,186,241],cmdpressbutton:268,cmdpushlidclos:263,cmdpushlidopen:263,cmdpy:190,cmdquell:177,cmdquit:177,cmdread:268,cmdrecog:241,cmdreload:190,cmdremov:204,cmdrerout:214,cmdreset:190,cmdrest:[254,255,256,257,258],cmdroll:106,cmdrss2chan:185,cmdsai:[128,186,241],cmdsaveyesno:370,cmdscript:[180,190],cmdsdesc:241,cmdser:372,cmdserverload:190,cmdservic:190,cmdsession:177,cmdset:[3,6,12,15,18,20,22,27,30,36,41,44,61,63,76,82,85,90,91,96,98,100,101,103,105,111,112,113,125,128,129,137,163,164,166,170,171,172,174,175,180,181,182,183,184,188,189,190,191,201,202,203,204,207,211,214,222,224,228,234,238,241,248,249,254,255,256,257,258,263,266,267,268,269,270,273,293,294,302,343,350,351,362,370,372,373,388,405],cmdset_account:[12,163,164,170,176,203],cmdset_charact:[163,164,170,176,204,254,255,256,257,258],cmdset_mergetyp:[27,215,223,266,296,372],cmdset_prior:[27,215,223,266,296,372],cmdset_sess:[44,163,164,170,176],cmdset_stack:174,cmdset_storag:[169,293,351],cmdset_trad:201,cmdset_unloggedin:[22,163,164,170,176,212],cmdsetattribut:180,cmdsetclimb:268,cmdsetcrumblingwal:268,cmdsetdesc:186,cmdsetevenniaintro:269,cmdsetevscaperoom:214,cmdsetflag:214,cmdsethandl:[44,163,164,170],cmdsethelp:187,cmdsethom:180,cmdsetkei:20,cmdsetkeystr:173,cmdsetlight:268,cmdsetmor:373,cmdsetobj:[173,174,181,182,183,184,201,202,203,204,207,211,214,222,238,241,249,254,255,256,257,258,263,266,267,268,269,273,343,370,372,373],cmdsetobjalia:180,cmdsetpow:129,cmdsetread:268,cmdsetsit:125,cmdsetspe:248,cmdsettestattr:26,cmdsettrad:201,cmdsettrain:137,cmdsetweapon:268,cmdsetweaponrack:268,cmdsheet:99,cmdshiftroot:268,cmdshoot:[90,258],cmdshutdown:190,cmdsit2:125,cmdsit:125,cmdsmashglass:263,cmdsmile:22,cmdspawn:180,cmdspeak:214,cmdspellfirestorm:92,cmdstand2:125,cmdstand:[125,214],cmdstatu:[201,257,258],cmdstop:248,cmdstring:[22,99,107,171,175,188,191],cmdstyle:177,cmdtag:180,cmdtalk:249,cmdtask:190,cmdteleport:[180,273],cmdtest:[3,93,106],cmdtestid:22,cmdtestinput:27,cmdtestmenu:[27,223,372],cmdtime:[100,190],cmdtrade:201,cmdtradebas:201,cmdtradehelp:201,cmdtunnel:180,cmdtutori:269,cmdtutorialgiveup:269,cmdtutoriallook:269,cmdtutorialsetdetail:269,cmdtweet:151,cmdtypeclass:180,cmdunban:178,cmdunconnectedconnect:[192,212],cmdunconnectedcr:[192,212],cmdunconnectedhelp:[192,212],cmdunconnectedlook:[192,212],cmdunconnectedquit:[192,212],cmduncov:204,cmdunlink:180,cmdunwield:255,cmduse:256,cmdusepuzzlepart:238,cmdwait:22,cmdwall:178,cmdwear:204,cmdwerewolf:91,cmdwest:269,cmdwhisper:186,cmdwho:[177,214],cmdwield:255,cmdwipe:180,cmdwithdraw:258,cmdxyzopen:273,cmdxyzteleport:273,cmdyesnoquest:372,cmset:[174,405],cmud:146,cnf:[2,145],coal:[207,208],coast:[81,119],coastal:81,cobj:214,cockpit:90,code:[2,5,6,7,8,12,13,15,16,20,22,24,27,29,30,32,33,36,40,43,44,46,47,48,49,50,52,53,54,55,56,57,59,60,61,63,66,67,71,72,74,75,77,78,79,80,81,82,83,85,86,87,88,89,93,95,97,98,99,100,101,102,106,108,110,111,112,113,114,116,117,118,119,121,123,124,125,127,128,129,130,132,133,134,135,137,138,139,141,143,145,148,155,156,157,159,161,163,164,166,170,171,174,177,179,180,185,187,190,193,197,201,202,206,210,211,216,219,225,227,230,239,256,269,270,279,290,299,302,323,324,340,351,354,362,364,365,370,372,374,385,386,387,388,394,436,439,440],code_exec:366,code_hint:216,code_tri:216,codebas:[8,11,71,73,84,86,97,117,191],codeblock:84,codec:365,codefunc:370,codeinput:216,coder:[0,1,76,97,120,122,123,143,171,294],codestyl:83,coerc:383,coexist:138,coher:130,coin:[77,88,116,117,120,121,201],col:[56,131,374],cold:[55,161,190,299,303,307,350],cole:388,coll_date_func:190,collabor:[11,87,89,120,123,154,187],collat:[30,64,298],collect:[0,13,20,29,30,49,82,116,133,171,173,187,190,198,238,251,360,388,413,435],collect_top:[187,435],collector:133,collectstat:[51,53,133,312,316],collid:[20,147,154,216,372,375],collis:[11,20,355],collist:116,colon:[19,32,108,115,290],color:[18,22,27,29,31,40,51,56,70,71,80,81,82,84,85,99,101,102,107,108,115,143,148,175,177,191,205,208,221,225,241,252,266,270,279,280,282,298,317,324,332,335,340,341,365,374,375,382,387,389,440],color_ansi_bright_bg_extra_map:205,color_ansi_bright_bgs_extra_map:205,color_ansi_extra_map:205,color_markup:[163,164,197],color_no_default:205,color_typ:365,color_xterm256_extra_bg:205,color_xterm256_extra_fg:205,color_xterm256_extra_gbg:205,color_xterm256_extra_gfg:205,colorablecharact:103,colorback:387,colorcod:387,colour:[19,70,180,339,365,374],column:[51,56,66,79,80,81,82,84,87,99,101,175,177,271,282,374,388],com:[8,9,10,11,39,49,53,54,56,63,68,72,75,76,77,79,81,84,86,95,117,120,140,143,144,145,147,148,150,153,154,155,156,157,163,185,190,202,212,287,324,327,336,340,357,374,387,388,427],combat:[11,13,15,20,40,48,68,77,79,81,86,87,91,92,102,107,112,113,119,121,122,126,127,134,143,148,174,254,255,256,257,258,267,302,440],combat_:[254,255,256,257,258],combat_cleanup:[254,255,256,257,258],combat_cmdset:128,combat_handl:128,combat_handler_:128,combat_movesleft:[254,255,256,257],combat_scor:129,combat_status_messag:258,combatcmdset:128,combathandl:128,combatscor:129,combatt:13,combin:[8,13,19,20,22,33,34,40,46,47,55,59,77,78,82,86,92,94,98,99,108,110,114,115,122,135,137,144,150,154,171,172,173,180,191,207,216,237,238,240,251,263,280,282,290,298,307,312,361,363,368,375,382,388],combo:44,come:[5,11,12,13,16,19,22,27,28,30,32,41,44,51,52,53,54,56,59,61,64,67,71,72,74,79,80,81,82,86,87,89,90,91,93,98,99,100,101,105,106,108,112,113,115,116,120,122,123,125,126,128,129,131,135,137,138,140,141,145,150,156,160,166,173,222,239,251,254,255,256,257,258,298,299,330,335,340,341,343,349,365,373,410,436],comet:[51,61,341],comfi:125,comfort:[11,16,86,101,106,123],comg:49,comlist:185,comm:[18,22,34,85,87,111,151,163,164,170,176,368,393,394,418,432],comma:[18,50,66,79,108,115,116,141,145,180,188,207,233,234,290,294],comman:108,command:[0,2,5,7,9,11,12,13,14,16,18,19,23,26,27,28,31,32,34,35,36,38,39,40,43,44,46,48,50,51,52,54,55,57,58,59,60,61,62,63,64,66,68,69,70,71,73,74,75,77,78,79,80,81,82,84,86,87,89,90,97,98,101,102,108,109,111,117,119,120,122,123,126,133,134,135,136,138,143,144,145,146,148,149,150,152,153,154,155,157,160,161,163,164,166,167,194,197,201,202,203,204,207,209,211,212,213,215,216,220,221,222,223,224,226,229,231,234,237,238,241,245,247,248,249,252,254,255,256,257,258,262,263,266,267,268,269,270,271,272,274,275,283,284,286,287,289,290,294,298,299,302,309,312,317,321,322,330,332,335,336,340,341,343,344,350,351,362,364,365,368,370,372,373,382,385,388,413,435,436,440],command_default_arg_regex:22,command_default_class:91,command_default_help_categori:30,command_pars:172,commandhandl:[31,174,189],commandmeta:175,commandnam:[22,31,64,108,270,312,321,351,353],commandset:[32,36,107,174,203],commandtest:[8,191,209,220,231],comment:[14,15,48,75,83,91,107,125,135,144,146,154,279,366,372],commerc:143,commerci:[7,88,123,154],commerror:195,commit:[2,9,10,16,62,68,83,84,87,91,145,155,156,244,396,403],commmand:[247,254,255,256,257,258],common:[0,6,11,16,18,19,22,27,31,32,40,41,44,45,46,47,48,54,55,56,61,64,67,69,78,84,85,87,94,100,101,106,108,109,112,113,115,116,117,120,122,123,124,126,128,129,140,148,150,154,173,180,185,201,207,240,241,248,290,302,340,344,361,371,373,383,385,388,413,420,436],commonli:[9,29,30,35,41,43,44,45,47,53,64,66,82,87,110,114,122,145,148,191,251,280,294,413],commonmark:84,commun:[7,18,22,34,39,51,52,61,64,67,69,76,77,85,86,87,88,98,106,107,111,112,113,122,123,143,144,145,152,154,157,166,182,185,193,194,195,196,214,234,266,281,293,309,321,322,332,333,335,336,337,338,351,353,368,369,384,439,440],compact:[105,110,141,263],compani:[67,87],compar:[6,8,11,14,16,19,20,64,75,82,89,92,93,96,99,105,106,110,123,126,128,129,191,238,240,251,254,255,256,257,258,289,290,299,343,365,388],comparison:[5,14,29,110,111,191,250,289,299,372],compartment:99,compass:108,compat:[15,27,90,180,251,374,381,388],compet:[16,67,122],compil:[5,22,63,68,75,84,97,112,148,153,154,180,186,187,192,204,207,214,241,365,370,372,387],compilemessag:63,complain:[3,9,66,106,125,161],complement:[0,45,123,251],complementari:[24,29,41,69],complet:[2,5,8,9,11,12,13,14,15,16,19,20,22,26,27,36,38,43,44,45,50,52,54,67,76,77,80,81,83,87,91,96,99,100,103,105,110,114,115,119,120,121,122,123,129,145,150,154,160,161,166,173,174,175,188,190,191,205,222,223,225,230,255,263,269,280,294,306,312,314,322,323,340,360,366,371,372,373,385,388,408,427],complete_task:230,complex:[5,8,13,15,16,20,22,29,43,47,66,68,81,82,87,100,108,112,114,115,116,117,120,121,122,125,126,128,129,156,174,194,216,231,239,249,263,299,344,360],complianc:[146,222],compliant:[95,336],complic:[54,74,76,80,81,93,101,106,110,140,141,154,192,212,223,252,360],compon:[0,5,8,22,34,41,49,50,51,53,59,60,61,72,77,80,82,84,93,99,102,111,120,123,128,129,130,132,154,161,163,164,180,190,195,196,197,199,207,210,238,240,250,272,279,281,299,300,302,305,312,341,368,371,385,388,391,416,439,440],componenta:4,componentid:51,componentnam:51,componentst:51,compos:[156,223],composit:[338,361],comprehens:[5,8,32,34,48,86,121,125,148,157],compress:[31,317,321,325,384],compress_object:384,compris:166,compromis:[157,244],comput:[11,47,54,55,69,80,87,97,110,111,122,126,139,148,152,156,160,178,190,241,388,389],computation:47,comsystem:196,con:[99,143,192,212],concaten:[112,365],concept:[11,13,39,47,61,63,78,79,83,84,95,98,101,102,103,115,116,118,120,121,125,203,237,251,439,440],conceptu:[27,80],concern:[63,67,82,96,115,148,173,239,286],conch:[332,335,343],concis:123,conclud:[110,201,372],concurr:145,conda:75,conder:366,condit:[5,29,79,80,86,105,106,107,110,114,120,121,126,129,144,171,211,241,256,290,294,305,311,312,357,388],condition:91,condition_result:211,condition_tickdown:256,conditional_flush:379,conduct:133,conductor:137,conect:353,conf:[2,5,8,11,24,25,31,32,40,41,50,53,61,63,66,72,75,78,82,84,89,91,100,101,103,113,125,136,137,140,141,144,145,147,149,150,154,157,166,205,207,274,276,312,318,319,358,366,440],confer:[143,388],confid:[3,83,95],config:[2,7,10,11,12,29,51,61,75,89,148,150,154,155,157,199,251,312,314,318,319,330,402,440],config_1:12,config_2:12,config_3:12,config_color:103,configcmd:103,configdict:[332,353],configur:[2,8,12,50,74,84,87,91,100,101,102,112,133,136,147,148,154,156,157,166,169,172,177,199,244,245,251,270,314,319,330,353,355,357,358,361,427,440],configut:7,confirm:[22,51,82,108,144,148,157,180,212,238,336,339,438],conflict:[3,122,138],confus:[0,5,6,11,20,35,38,41,51,54,59,63,73,76,82,87,96,99,106,110,113,116,133,138,154,185,212,280,437],conid:331,conj:[29,294,375],conjug:[29,163,164,294,364,375,390,392],conjur:257,conn:[192,212],conn_tim:44,connect:[5,8,12,13,14,17,18,20,22,24,31,36,38,39,41,43,44,45,48,50,51,52,53,55,59,61,62,63,64,67,70,74,75,79,80,81,82,86,87,89,91,98,101,105,106,108,110,111,112,113,114,122,129,133,136,138,144,145,146,148,149,150,152,155,156,157,160,161,166,167,169,177,178,180,185,192,194,196,199,212,225,227,228,230,245,248,277,279,280,282,293,294,300,308,309,312,314,321,322,323,324,325,330,331,332,335,340,341,343,344,350,351,352,353,354,357,360,362,368,384,410,413,440],connection_cr:45,connection_screen:[25,43,112],connection_screen_modul:212,connection_set:147,connection_tim:[166,294],connection_wizard:[163,164,308],connectiondon:314,connectionlost:[314,321,322,332,335,343],connectionmad:[309,321,332,335,343],connectionwizard:310,connector:[309,323,324,330,353],conquer:119,cons3:209,consecut:27,consequ:[154,174],consid:[0,5,6,11,14,15,18,19,20,22,27,29,31,32,40,41,44,46,47,48,50,52,54,55,59,61,66,69,72,74,78,79,82,83,86,87,88,89,95,96,98,104,105,110,112,115,117,120,121,123,125,137,140,141,142,145,148,154,157,166,173,174,223,238,240,241,251,258,270,277,279,280,294,298,299,302,317,332,335,361,366,367,372,373],consider:[43,66,81,113,122,135,299,374],consist:[12,13,17,22,27,30,32,39,40,51,59,66,72,79,82,84,96,115,118,119,121,128,129,161,166,172,187,188,194,195,201,208,238,240,281,283,290,299,336,341,351,360,362,368,374,388,396,403,438],consitut:113,consol:[0,3,6,7,51,57,59,63,75,84,87,113,115,116,118,129,145,148,153,154,156,160,187,190,241,281,312],conson:240,constant:[67,74,321,386],constantli:[134,269],constitu:[174,188],constraint:[74,145],construct:[2,27,87,93,125,140,299,356,360,365,373,427],constructor:[22,76,78,202,207,323],consum:[54,78,207,208,209,216,314,388],consumable_kwarg:207,consumable_nam:207,consumable_tag:[78,207,208],consumable_tag_categori:[78,207],consume_flag:216,consume_on_fail:207,consumer_kei:[136,151],consumer_secret:[136,151],consumpt:[5,145,355],contact:[18,36,154,156],contain:[0,6,8,9,13,14,15,17,20,22,27,29,30,32,34,36,43,44,51,52,53,54,56,59,61,66,71,74,75,76,79,82,83,84,85,86,87,90,91,95,97,98,100,101,106,107,108,110,111,112,113,114,115,121,125,129,133,135,138,140,141,143,148,153,160,163,164,166,167,170,171,172,173,174,176,179,180,185,187,191,193,199,202,207,214,223,224,227,228,229,230,231,233,238,239,240,241,245,246,248,251,252,256,263,268,270,271,279,280,281,282,284,285,288,294,296,298,299,306,308,311,315,317,343,355,356,357,360,361,362,363,364,365,366,369,371,372,373,374,375,385,387,388,389,410,416,425,435,436,438],container:156,contempl:97,content:[5,11,14,17,19,29,34,36,48,50,51,52,53,56,80,84,89,90,95,97,99,101,104,105,106,110,112,114,115,117,118,122,123,124,125,127,129,130,131,132,134,137,140,141,143,150,154,175,178,180,199,200,216,217,241,273,284,293,294,363,365,366,367,370,372,374,385,393,403,410,416,425,439],content_typ:[293,294],contentdisposit:199,contentencod:199,contentof:374,contents_cach:293,contents_get:[117,294],contents_set:294,contentshandl:293,contest:214,context:[53,59,79,86,101,106,118,138,140,202,230,333,337,420,432,433,435,436,438],context_processor:420,contextu:46,continu:[1,3,8,13,19,22,27,46,47,53,54,58,66,79,80,82,83,86,90,93,99,101,105,107,114,115,128,129,133,151,153,154,199,280,294,310,321,357,360,372,381,388,440],contrari:[49,74,84,100,112,122,190,251,363],contrast:[41,69,97,154,336],contrib:[14,15,50,79,84,85,86,87,89,98,99,100,102,108,111,112,115,119,122,124,126,127,128,142,148,163,164,166,169,190,354,365,366,395,396,397,399,400,401,402,403,418,419,427,433,438,440],contribrpcharact:241,contribrpobject:241,contribrproom:241,contribut:[0,8,11,63,76,77,88,89,104,111,121,133,142,159,160,197,201,203,204,205,211,222,234,238,239,241,244,245,247,248,249,270,439,440],contributor:[142,202,251],control:[1,2,3,4,9,12,13,14,15,18,20,22,26,27,28,29,30,31,32,36,39,40,41,44,49,50,55,57,59,64,66,68,72,75,78,83,84,85,87,90,98,99,103,108,110,111,112,113,114,118,120,122,123,126,129,135,137,148,150,154,157,159,161,166,167,177,179,180,185,191,201,203,216,229,241,263,267,269,271,282,289,294,302,312,351,353,362,372,375,408,427,440],contrub:78,convei:[241,294],convenei:45,conveni:[2,7,8,13,18,27,30,31,32,36,38,40,41,48,53,54,61,66,68,73,75,82,86,90,98,101,113,114,115,117,118,140,144,155,161,166,180,190,202,207,219,221,234,294,344,355,366,367,372,373,375,381,384,385],convent:[20,45,66,74,110,138],convention:[175,294,362],convers:[8,18,27,29,35,77,137,240,249,340,341,365,388,439],convert:[9,13,18,19,35,40,59,61,64,67,69,70,80,82,87,95,100,103,105,110,113,118,125,138,143,157,178,210,211,223,252,279,289,298,299,303,321,323,332,335,336,353,357,365,369,372,373,374,375,376,384,387,388,391,410],convert_linebreak:387,convert_url:387,convinc:[27,154],cool:[0,75,76,84,90,120,131,143,180,185],cool_gui:38,cooldown:[93,128,440],coord:[95,277,279,280,282],coordi:95,coordin:[51,80,82,258,271,273,279,280,281,282,440],coordx:95,coordz:95,cope:257,copi:[0,2,5,9,11,14,15,22,26,27,40,43,44,49,50,51,53,72,74,81,87,89,91,100,103,107,108,111,112,129,133,140,150,154,156,179,180,204,230,254,255,256,257,258,269,294,312,321,358,365,381,435,436],copy_object:294,copyright:[142,154],core:[7,8,11,36,43,48,57,63,67,80,83,111,116,121,142,166,169,190,196,197,199,208,234,286,293,294,302,308,319,329,336,350,360,362,363,366,373,380,427,438,439],corner:[17,82,95,98,143,271,279,374],corner_bottom_left_char:374,corner_bottom_right_char:374,corner_char:374,corner_top_left_char:374,corner_top_right_char:374,corpu:240,correct:[8,13,15,19,20,22,26,29,53,54,59,69,83,90,94,106,113,116,123,129,137,138,145,171,177,180,191,195,216,222,238,264,279,290,327,330,332,338,352,365,388],correctli:[2,3,6,19,22,26,27,38,46,47,75,80,82,84,89,93,96,100,105,106,112,129,137,138,144,152,154,161,166,169,174,177,199,207,303,312,321,357,384,410],correl:299,correspond:[22,32,44,53,72,82,105,108,210,238,252,396,403,408,427],correspondingli:9,corrupt:97,cosi:81,cosin:388,cosmet:271,cost:[82,92,105,154,199,257,271],cottag:[58,81],could:[2,3,5,7,8,9,12,13,14,15,16,18,20,22,27,29,30,32,33,34,35,36,38,40,41,46,47,48,53,54,55,57,59,61,64,66,67,68,69,71,72,73,74,75,76,78,79,80,81,82,83,84,86,87,89,90,91,92,93,94,95,96,98,99,100,101,103,104,105,106,107,108,110,112,113,114,115,116,118,120,121,122,123,125,126,128,129,131,133,134,135,136,137,138,139,140,143,148,149,150,151,152,154,155,166,174,180,187,195,196,201,202,207,211,216,217,225,233,239,241,248,251,252,263,269,271,280,282,290,294,305,317,336,341,357,362,365,366,370,374,375,376,379,383,388],couldn:[13,57,73,87,95,96,106,107,115,138,141,239],count:[18,43,49,52,87,110,113,115,128,136,173,204,252,256,294,326,330,343,347,353,355,361,365,372,375,381],count_loggedin:330,count_queri:347,countdown:[41,93,108],counter:[9,41,44,76,93,101,105,121,128,163,164,167,197,250,269,330,343,344,351,372],counterpart:[14,59,121,317,353,369],countertrait:251,countri:178,coupl:[11,38,76,101,134,156,194,248],cours:[0,5,7,10,16,22,47,53,55,68,73,74,75,76,78,79,82,84,87,89,90,98,106,113,114,115,116,119,120,129,139,142,160,255,258,266],courtesi:55,cousin:[71,106],cover:[0,8,11,14,15,30,53,60,61,65,66,75,82,83,93,98,110,111,112,114,115,117,121,122,123,136,143,144,145,148,154,159,204,208,216,222,263,269,280,294,388],coverag:8,coveral:8,cpanel:154,cpattr:[107,180],cpu:[5,55,154,157,190],cpython:5,crack:66,craft:[32,81,93,120,163,164,197,223,440],craft_recipe_modul:[78,207],craft_recipes_modul:207,craft_result:207,crafted_result:207,crafter:[207,208,209],crafting_consumable_err_msg:207,crafting_materi:[78,207,208],crafting_recipe_modul:78,crafting_result:207,crafting_skil:78,crafting_tool:[78,207],crafting_tool_err_msg:207,craftingcmdset:207,craftingerror:207,craftingrecip:[78,207,208,209],craftingrecipebas:[78,207],craftingvalidationerror:[78,207],craftrecip:207,cram:119,crank:47,crash:[0,81,115,120,143,157,316,360],crate:[35,108],crave:159,crawl:157,crawler:326,cre:[192,212],creat:[0,3,5,7,8,10,11,13,14,15,16,18,20,25,26,27,29,30,32,34,35,38,40,41,43,44,45,46,49,50,51,53,56,57,60,61,62,68,71,72,73,75,76,77,78,79,80,82,83,84,86,87,88,89,91,93,95,96,97,98,99,100,103,105,106,110,112,114,116,117,118,119,120,121,123,124,125,126,127,128,130,132,133,134,135,136,139,141,142,143,145,147,148,149,151,152,153,154,157,160,163,164,166,167,169,172,173,174,175,177,180,185,186,187,188,189,190,191,192,194,196,199,200,201,202,203,204,207,209,210,211,212,214,215,216,217,219,221,222,223,224,229,230,231,233,234,237,238,239,240,241,245,247,249,251,252,254,255,256,257,258,260,263,266,267,268,269,270,271,279,280,281,282,284,286,290,293,294,296,297,298,299,302,305,306,307,309,312,316,317,322,324,325,330,332,333,337,344,350,352,353,355,357,360,361,362,363,364,366,367,370,371,372,374,376,381,388,395,400,407,412,413,428,431,433,435,436,437,438,440],creataion:277,create_:[36,48],create_account:[45,48,163,368],create_attribut:360,create_cal:166,create_channel:[18,163,185,194,368],create_charact:[166,294],create_default_channel:350,create_delai:306,create_evscaperoom_object:221,create_exit:[180,247],create_exit_cmdset:294,create_fantasy_word:221,create_forward_many_to_many_manag:[169,196,286,293,302,360,362,363,380],create_game_directori:312,create_grid:80,create_help_entri:[30,163,368],create_kwarg:299,create_match:172,create_messag:[34,163,368],create_object:[14,19,32,36,48,78,81,105,109,129,140,163,207,219,221,263,294,299,316,366,368],create_prototyp:[298,299],create_script:[41,48,97,128,163,305,366,368],create_secret_kei:312,create_settings_fil:312,create_superus:312,create_tag:361,create_wild:271,created_on:227,createobj:214,creater:85,createview:437,creation:[6,11,13,15,27,32,36,44,48,66,73,80,81,82,90,99,103,108,109,111,113,114,120,122,127,129,140,143,163,166,169,180,185,187,194,203,207,238,241,245,247,251,254,255,256,257,258,268,269,273,279,282,286,293,294,299,302,307,345,362,368,370,371,372,374,395,396,400,403,427,431,433,438,439],creation_:368,creativ:[68,78,122],creator:[27,32,73,77,81,85,123,129,143,187,194,254,255,256,257,258,294,374],cred:[11,332],credenti:[11,52,53,154,157,166,332],credentialinterfac:332,credit:[11,115,117,154,157,387,388],creset:11,crew:110,criteria:[27,110,195,229,239,298,361,385],criterion:[11,110,113,114,119,166,201,241,285,294,304,385,388],critic:[0,6,9,20,41,44,57,59,148,150,290,311,312,381],critici:362,cron:150,crontab:150,crop:[29,59,99,180,279,371,374,375,388],crop_str:374,cross:[81,82,208,269,277,280,374],crossbario:340,crossbow:93,crossmaplink:[82,280],crossroad:81,crowd:[120,157],crt:[144,150],crucial:[47,106],crucibl:208,crucible_steel:208,cruciblesteelrecip:208,crud:[412,413],crude:[74,207,208],crumblingwal:268,crumblingwall_cmdset:268,crush:90,crypt:119,cryptocurr:157,cscore:129,csessid:[330,340,341,353],csession:[340,341],csrf_token:140,css:[17,50,51,53,70,72,86,112,133,199,387,416],cssclass:51,ctrl:[5,53,115,118,148,150,154,156,160,161,343],cuddli:[113,116],culpa:28,cumbersom:[9,27,137,252],cumul:344,cup:88,cupidatat:28,cur_valu:225,cure:[256,257],cure_condit:256,curi:80,curiou:68,curli:205,curly_color_ansi_bright_bg_extra_map:205,curly_color_ansi_bright_bgs_extra_map:205,curly_color_ansi_extra_map:205,curly_color_xterm256_extra_bg:205,curly_color_xterm256_extra_fg:205,curly_color_xterm256_extra_gbg:205,curly_color_xterm256_extra_gfg:205,curr_sess:353,curr_tim:222,currenc:[105,136],current:[5,6,7,8,9,11,12,13,14,15,18,19,20,22,26,27,29,31,36,38,41,42,43,44,46,47,51,52,53,55,57,59,66,74,75,76,78,79,80,82,84,87,90,91,92,93,99,105,107,108,110,111,112,113,114,116,121,125,128,129,136,137,140,143,150,156,160,166,169,171,172,174,175,177,178,180,185,186,187,189,190,199,201,202,204,207,214,216,219,222,223,225,230,233,237,239,241,247,248,250,251,252,254,255,256,257,258,262,266,268,269,271,273,280,282,285,293,294,299,302,306,307,312,317,322,328,329,332,333,344,351,353,355,361,362,370,372,374,375,376,381,382,385,388,395,410,432,433,435,436],current_choic:202,current_cmdset:180,current_coordin:271,current_kei:[297,298],current_tim:343,current_us:140,current_weath:41,current_weight:280,currentroom:137,curriculum:143,curs:[3,121],curtain:30,curv:[86,97],curx:80,cushion:125,custom:[0,6,12,13,15,16,17,19,20,22,25,31,35,36,40,43,46,48,52,55,56,60,62,64,66,70,73,74,80,82,85,86,87,90,91,94,97,99,101,102,105,108,110,112,114,119,120,121,122,125,126,128,129,133,134,135,137,138,139,140,142,143,149,151,154,156,161,166,167,168,169,171,173,174,175,180,185,186,187,194,201,203,204,207,210,211,214,215,216,217,219,222,223,224,230,233,238,240,241,244,245,251,263,266,268,269,271,275,279,280,284,285,292,294,296,297,298,299,301,307,312,316,318,321,343,352,362,367,370,372,373,374,379,382,383,387,388,394,395,397,402,412,413,418,419,436,440],custom_add:230,custom_cal:[230,233],custom_domain:199,custom_evennia_launcher_command:312,custom_gametim:[100,163,164,197],custom_helpstr:216,custom_kei:298,custom_pattern:[89,101,131,140,141],customis:271,customiz:[17,77,125,202,223,225,241,263],customlog:144,cut:[18,26,61,78,80,81,86,106,108,122,129,279,299],cute:133,cutoff:388,cvcc:240,cvccv:240,cvccvcv:240,cvcvcc:240,cvcvccc:240,cvcvccvv:240,cvcvcvcvv:240,cvcvvcvvcc:240,cvv:240,cvvc:240,cwho:[107,185],cyan:[59,138],cyberpunk:[18,117],cyberspac:143,cycl:[14,15,91,97,100,120,139,254,255,256,257,258],cyril:16,daemon:[5,144,150,156,157,161,329,357],daffodil:117,dai:[2,11,19,68,97,100,120,121,136,138,139,150,156,157,208,210,222,376,381,388,389],daili:35,dailylogfil:381,dali:240,dalnet:185,dalton:110,dam:97,damag:[15,90,92,105,119,121,122,126,128,157,254,255,256,257,258,267,268],damage_rang:257,damage_taken:97,damage_valu:[254,255,256,257,258],damascu:208,damn:143,danc:82,dandi:73,danger:[6,14,20,44,84,104,173],dare:[22,107,391],dark:[14,15,17,20,30,59,81,82,115,119,121,123,126,138,143,174,222,251,263,269,302,365,366],darkcmdset:269,darker:[59,138],darkgrai:138,darkroom:269,darkroom_cmdset:269,darkstat:269,dash:[84,239,252],dashcount:252,dashlin:29,data:[5,6,9,12,14,16,18,19,29,30,35,40,41,43,46,48,49,50,51,53,54,64,66,67,69,72,76,78,82,87,91,97,98,99,112,113,116,120,123,140,141,145,150,153,154,156,166,167,175,180,187,190,199,207,223,225,229,230,241,244,245,250,251,279,280,281,293,294,296,298,300,305,307,309,310,314,318,319,321,322,323,324,325,330,331,332,333,335,336,337,339,340,341,343,345,350,351,352,353,355,359,360,361,362,363,365,366,367,368,369,371,372,373,374,375,378,381,382,383,384,388,396,397,399,401,403,407,410,413,418,427,431,433,435,436,438],data_default_valu:251,data_in:[61,64,245,321,323,324,330,331,335,340,341,351,352,353],data_out:[61,245,330,332,335,336,341,351,352,353],data_to_port:309,data_to_serv:322,databa:312,databas:[2,5,8,10,11,13,14,16,17,18,19,20,23,31,32,33,34,35,36,41,43,44,45,46,47,48,49,50,52,53,55,57,72,73,74,81,82,84,86,87,89,90,92,93,95,97,98,99,106,107,109,111,112,114,115,117,120,121,122,125,128,129,133,140,141,145,148,156,159,160,161,166,169,173,174,180,187,190,194,195,196,222,229,230,241,257,269,281,282,283,284,285,286,289,293,294,298,300,302,303,306,307,312,316,318,329,343,350,359,360,361,362,363,366,368,369,377,379,384,385,388,393,397,400,401,403,413],dataclass:375,datareceiv:[314,321,335,343],dataset:298,datastor:66,date:[9,11,13,30,55,63,66,77,80,100,138,140,145,150,153,174,178,190,244,376,381,389],date_appli:140,date_cr:[48,166,169,196,286,302,360,362],date_join:[169,395],date_s:34,datetim:[48,100,140,199,360,376,381,382,388,389],datetime_format:388,datetimefield:[66,140,169,196,286,293,302,360,362,388,395],davewiththenicehat:435,david:143,dawn:108,day_rot:381,daylight:121,db3:[5,9,11,81,112,145,160],db3_backup:5,db_:[33,48,66,110,241,294,303,317,385],db_account:[204,293,302,395,400],db_account__db_kei:400,db_account__id:407,db_account__usernam:407,db_account_id:[293,302],db_account_subscript:[196,397],db_attribut:[45,169,196,293,302,362,395,397,400],db_attribute_categori:251,db_attribute_kei:251,db_attributes__db_kei:110,db_attributes__db_value__gt:110,db_attrtyp:[360,410],db_attryp:35,db_categori:[66,110,360,363,403,410],db_category__iequ:66,db_cmdset_storag:[169,204,293,395,400],db_data:[363,403,410],db_date_cr:[66,169,196,204,286,293,302,360,362,395,397,399,400,401,410],db_desc:[302,407],db_destin:[204,293,395,400],db_destination__isnul:136,db_destination_id:293,db_entrytext:[286,399,410],db_header:[196,397],db_help_categori:[286,399,410],db_help_dict:187,db_help_top:435,db_hide_from_account:[196,397],db_hide_from_object:[196,397],db_hide_from_receiv:196,db_hide_from_send:196,db_home:[204,293,395,400,410],db_home__db_kei:407,db_home__id:407,db_home_id:293,db_index:66,db_interv:[302,401,407,410],db_is_act:[302,407,410],db_is_bot:[169,395,407],db_is_connect:[169,395,407],db_kei:[33,48,49,66,82,101,109,110,113,204,229,286,303,319,360,362,363,395,397,399,400,401,402,403,407,410,427],db_key__contain:48,db_key__exact:110,db_key__icontain:[66,110],db_key__iexact:110,db_key__in:110,db_key__startswith:48,db_locat:[33,49,110,113,204,293,395,400,410],db_location__db_kei:[400,407],db_location__db_tags__db_key__iexact:110,db_location__id:407,db_location__isnul:136,db_location_id:293,db_lock_storag:[196,204,286,360,362,395,397,399,400,401],db_messag:[196,397],db_model:[360,363,403],db_obj:[302,369,401],db_obj__db_kei:407,db_obj__id:407,db_obj_id:302,db_object_subscript:[196,397],db_permiss:66,db_persist:[302,401,407,410],db_properti:317,db_protototyp:298,db_receiver_extern:[196,397],db_receivers_account:[196,397],db_receivers_accounts__db_kei:397,db_receivers_object:[196,397],db_receivers_objects__db_kei:397,db_receivers_script:[196,397],db_receivers_scripts__db_kei:397,db_repeat:[302,401,410],db_sender_account:[196,397],db_sender_accounts__db_kei:397,db_sender_extern:[196,397],db_sender_object:[196,397],db_sender_objects__db_kei:397,db_sender_script:[196,397],db_sender_scripts__db_kei:397,db_sessid:[204,293,395,400],db_start_delai:[302,401,410],db_strvalu:360,db_tag:[110,169,196,286,293,302,362,363,395,397,399,400],db_tags__db_categori:[95,110,407],db_tags__db_kei:[95,110,397,407],db_tags__db_key__iexact:110,db_tags__db_key__in:95,db_tagtyp:[363,403,407,410],db_text:66,db_typeclass_path:[66,136,204,293,362,388,395,397,400,401,407,410],db_valu:[33,110,319,360,402,410,413],dbef:385,dbentri:187,dbhandler:427,dbholder:360,dbid:[48,167,185,362],dbid_to_obj:388,dbmodel:361,dbobj:[13,360],dbobject:[13,361,362],dbprototyp:[190,298],dbref:[9,14,29,32,34,40,48,55,62,81,82,99,108,113,119,128,137,166,169,178,180,185,190,195,223,238,241,247,269,271,273,282,289,293,294,299,302,304,361,362,368,375,385,388],dbref_search:361,dbref_to_obj:388,dbrefmax:180,dbrefmin:180,dbsafe_decod:384,dbsafe_encod:384,dbserial:[6,13,163,164,303,364],dbshell:[9,66,145,161],dbstore:250,dbunseri:369,ddesc:97,deactiv:[87,103,134,148,185,222,267,372],dead:[46,122,251,267,268,350,353,379],deadli:119,deal:[11,13,16,18,27,30,44,46,53,54,55,69,87,101,106,121,126,128,138,141,157,166,201,202,210,223,254,255,256,257,258,279,280,293,294,351,362,365,382,438],dealt:[188,256,257],dealth:256,death:[27,120,126,136],death_msg:267,death_pac:267,debat:106,debian:[11,144,145,148,150],debuff:251,debug:[1,7,15,19,27,31,41,53,72,77,106,114,115,152,171,175,179,190,214,215,223,266,296,312,317,323,324,335,357,366,372,381,388,440],debugg:[3,16,161,163],dec:63,decemb:154,decend:171,decent:[5,240],decic:240,decid:[15,16,22,29,44,46,66,67,78,79,89,91,99,101,105,120,126,128,138,154,157,159,171,201,254,290,373],decis:[47,122,126,410],declar:[59,384],declared_field:[395,396,397,399,400,401,403,427],declared_filt:407,declin:[27,201],decod:[16,336,365,388,435],decode_gmcp:336,decode_msdp:336,decoded_text:388,decompos:140,decompress:[321,384],deconstruct:[119,191,199,209,220,250,264,277,338,386,411],decor:[11,22,45,74,78,79,93,169,191,221,293,302,309,321,322,362,368,372,373,388],decoupl:[75,298],decoupled_mut:13,decreas:[121,257,269,370],decrease_ind:370,dedent:[26,30,388],dedic:[8,38,115,116,126,150,154],deduc:370,deduce_ind:370,deduct:[105,126,254,255,256,257,258],deem:[11,71,83,98,197,431,433,438],deep:[30,111,143],deeper:[24,102,119,252],deepest:180,deepli:13,deepsiz:388,def:[3,5,8,13,19,20,22,26,27,29,31,32,33,36,38,40,41,45,48,54,61,76,78,80,81,84,89,90,91,92,93,94,95,96,97,98,99,100,101,103,104,105,106,107,113,114,115,116,117,125,126,128,129,131,134,135,136,137,139,140,141,143,151,191,202,216,222,251,270,271,297,341,354,370,372,373,375,388],def_down_mod:256,defafultobject:113,defalt_cmdset:151,default_access:[13,360,368],default_acl:199,default_categori:285,default_charact:224,default_client_width:29,default_cmd:[4,18,76,82,85,90,91,92,93,94,96,98,99,100,103,107,114,128,163,202,204,222,234],default_cmdset:[25,44,76,91,94,96,98,99,100,103,113,114,125,129,174,202,203,204,222,223,237,247,252,254,255,256,257,258],default_command:[91,112],default_confirm:[180,238],default_content_typ:199,default_create_permiss:49,default_error_messag:384,default_help_categori:[30,187,284,435],default_hom:40,default_in:51,default_kei:251,default_kwarg:[29,375],default_list_permiss:49,default_out:51,default_pass:368,default_screen_width:22,default_set:[8,131],default_sit:418,default_transaction_isol:145,default_unload:51,default_weight:[82,280],default_xyz_path_interrupt_msg:273,defaultaccount:[12,48,85,87,113,114,163,166,167,181,294,386,410,427,431],defaultchannel:[18,48,85,113,163,185,194,432],defaultcharact:[8,36,48,66,76,85,91,98,99,100,103,113,114,125,126,129,163,166,182,202,204,224,241,254,255,256,257,258,294,386,427,433],defaultcmdset:211,defaultdict:303,defaultexit:[36,48,82,85,105,113,163,247,248,268,271,282,294,386],defaultguest:[85,163,166],defaultmod:381,defaultobject:[0,4,29,36,48,66,81,85,87,104,105,109,111,113,116,117,125,134,137,163,166,204,216,241,249,251,255,258,262,263,268,294,362,386,410,427,438],defaultpath:388,defaultroom:[36,48,80,82,85,95,97,105,113,139,163,217,222,241,269,271,282,294,386],defaultrout:[409,412],defaultscript:[41,48,85,97,113,128,136,137,163,167,201,210,230,238,239,240,254,255,256,257,258,260,271,281,298,304,305,345,376,386],defaultsess:[114,183],defaulttyp:357,defaultunloggedin:[114,184],defeat:[119,120,126,128,254,255,256,257,258,267],defeat_msg:267,defeat_msg_room:267,defend:[27,119,128,254,255,256,257,258,268,294],defens:[121,128,254,255,256,257,258],defense_valu:[254,255,256,257,258],defer:[19,22,54,93,140,169,171,190,196,222,248,286,293,294,302,306,309,319,321,322,353,357,360,362,363,380,381,395],deferredlist:357,defin:[2,3,4,5,6,7,8,12,13,14,15,19,25,26,30,31,36,38,40,43,47,48,49,51,53,54,55,58,59,61,64,67,69,70,71,72,74,76,78,79,80,81,84,85,86,87,89,90,91,94,96,97,98,99,100,101,103,105,106,107,108,110,112,114,115,116,120,122,125,126,129,133,134,137,138,140,142,163,165,169,171,173,174,175,177,180,186,187,188,190,191,194,195,196,200,202,204,205,207,210,211,214,220,222,223,229,230,233,238,239,240,241,249,251,252,256,257,260,268,269,279,283,284,285,286,288,289,290,291,293,294,298,299,302,305,307,308,309,312,319,322,343,344,351,352,353,356,359,360,361,362,363,365,366,367,370,372,375,376,380,383,385,388,397,399,400,410,413,420,427,435,436],define_charact:27,definin:115,definit:[3,8,12,15,22,30,35,36,38,40,47,54,55,58,67,74,82,86,95,101,104,112,125,173,175,180,185,188,227,238,268,288,290,293,298,299,304,366,368,372,375,384],deflist:357,degrad:8,degre:[30,84,118],deindent:388,del:[13,38,55,93,99,119,125,128,178,180,222,237,238,250,251,362],del_callback:[228,230],del_detail:222,del_pid:312,delai:[22,74,92,136,190,210,223,230,248,263,268,306,307,324,330,353,367,388],delaliaschan:185,delayed_import:353,delchanalia:185,delcom:[99,107,185],deleg:[169,196,286,293,302,360,362,363,380],delet:[8,9,11,12,13,14,18,20,26,27,29,32,35,36,41,44,45,46,50,55,62,76,78,81,82,89,112,113,114,119,125,128,145,148,155,156,160,166,174,177,178,179,180,185,186,187,190,194,196,199,207,217,221,222,227,228,230,231,234,237,238,247,250,251,268,281,286,290,294,298,303,304,305,306,307,318,330,351,360,362,365,366,372,379,395,396,403,408,412,428,433,437,438],delete_attribut:360,delete_default:[20,174],delete_dupl:221,delete_prototyp:298,deletet:222,deleteview:437,deliber:[3,13,71,121,388],delic:204,delimit:[63,106,188,366],deliv:[154,234,241],delpart:238,delresult:238,deltatim:388,delux:154,demand:[41,47,94,99,120,122,126,134,154,166,194,222,251,294,354,367],demo:[53,76,77,86,102,118,119,124,127,130,132,143,265,266,372],democommandsetcomm:266,democommandsethelp:266,democommandsetroom:266,demon:40,demonin:388,demonstr:[74,76,89,125,138,140,202,223,244,256],demowiki:89,deni:[18,144,157,229,233],denot:[97,141,279,366],denounc:371,depart:80,depend:[5,6,7,11,13,15,16,18,19,20,22,27,29,31,34,41,43,44,47,48,51,54,55,56,59,61,63,64,67,74,76,77,78,79,80,81,82,83,86,87,89,98,99,101,105,112,113,114,119,120,122,125,126,128,129,135,140,141,145,148,152,153,154,156,157,165,171,173,175,177,190,202,203,211,222,228,240,251,263,271,279,280,282,284,290,294,298,307,312,332,335,341,343,353,362,363,370,372,373,388],depict:217,deplet:[251,256],deploi:[79,84,154,157],deploy:[2,7,84,143,154,156,159],depmsg:381,deprec:[19,27,40,163,164,299,308,365,372,381,388],deprecationwarn:311,depth:[2,17,30,56,82,119,187,252,287,299],dequ:[13,355],deriv:[8,48,68,97,145,148,150,156,270,365,389],desc:[15,18,31,32,33,36,40,41,50,76,78,81,82,90,98,99,101,104,105,107,108,113,121,128,136,141,163,164,174,177,180,185,191,197,202,204,207,208,216,222,237,238,247,252,257,263,271,302,310,366,368,370,371,372,427,433,438],desc_add_lamp_broken:263,desc_al:267,desc_closed_lid:263,desc_dead:267,desc_open_lid:263,descend:[110,427],describ:[8,10,11,13,14,15,18,20,22,27,32,39,40,48,50,51,53,59,63,66,67,69,72,75,76,79,81,82,83,84,86,87,90,94,99,100,101,105,107,108,112,113,115,116,121,125,128,140,143,145,148,151,153,154,161,173,180,184,185,186,196,204,207,210,215,222,239,241,251,257,263,279,280,299,305,309,330,332,335,345,372,387,388,400],descripion:267,descript:[11,15,16,18,27,31,40,46,50,53,71,72,74,76,77,79,80,81,82,84,86,90,95,98,99,105,108,111,120,121,138,140,141,147,154,177,180,185,186,194,201,202,204,215,222,237,239,241,247,250,251,252,262,263,266,267,268,269,270,271,279,282,294,302,366,368,372,382,383,395,400,409,413],description_str:81,descvalidateerror:237,deseri:[6,13,382,410],deserunt:28,design:[0,15,22,36,40,46,53,56,68,71,78,81,83,86,95,98,106,110,112,120,121,122,123,125,134,135,140,143,145,174,180,202,229,241,244,268,294,366,382,388],desir:[19,46,47,51,59,68,80,82,89,92,93,98,99,106,129,137,140,180,194,205,221,240,290,312,357,360,368,374,389],desired_perm:290,desk:125,desktop:[16,56],despit:[13,14,44,87,98,103,143,148,269],dest:[270,294],destin:[22,31,36,40,50,74,76,80,81,82,91,105,106,117,125,137,180,244,247,248,254,255,256,257,258,268,269,273,274,279,280,282,293,294,299,368,413,433],destinations_set:293,destroi:[8,18,36,74,107,108,128,157,166,167,180,185,238,256,294],destroy:247,destroy_channel:185,destroy_compon:216,destroy_lock:408,destruct:[20,173],detach:7,detail:[0,5,9,11,12,16,18,22,27,30,32,36,40,41,44,48,50,55,57,59,67,71,72,75,76,77,78,79,81,82,83,84,87,94,99,106,108,112,113,114,115,119,120,121,123,128,133,135,141,145,148,154,174,175,180,194,199,202,207,216,222,238,239,241,251,255,269,271,279,284,286,287,299,306,314,315,351,353,362,365,370,375,388,391,395,400,412,413,428,435,437,438],detail_color:180,detailkei:[222,269],detailview:[435,437],detect:[2,18,20,22,36,44,67,84,103,120,125,135,157,172,175,324,412],determ:361,determin:[5,12,14,16,18,19,20,22,26,27,28,30,32,35,40,41,51,64,78,80,82,89,93,95,96,104,105,108,114,125,126,128,129,133,145,148,161,166,173,174,175,177,185,187,188,191,194,201,240,241,248,252,254,255,256,257,258,268,280,284,286,290,294,298,336,360,361,362,365,370,373,381,388,395,397,400,407,408,416],determinist:280,detour:[64,90,112,116,353],dev:[30,83,86,87,98,115,123,143,145,148,150,151,154,155,439],devel:112,develop:[0,2,3,5,6,7,11,16,18,19,22,29,30,38,40,43,49,51,53,56,57,63,66,67,68,72,75,77,81,83,84,86,87,88,91,97,99,106,108,109,111,112,113,114,115,116,120,122,123,131,133,138,140,145,147,148,151,152,154,160,175,178,179,185,186,187,190,194,214,227,228,233,244,284,286,294,299,358,362,366,372,439],deviat:123,devoid:365,dex:[13,27,99,113,115,121,371],dexter:[121,254,255,256,257,258],diagnos:[6,94],diagon:[82,277],diagram:48,dialog:51,dialogu:[74,77,121,440],dice:[78,106,116,122,126,128,148,163,164,197],dicecmdset:211,dicenum:211,dicetyp:211,dict:[8,13,14,20,27,29,30,40,41,45,49,53,67,74,78,79,82,85,91,107,166,167,173,175,180,187,191,194,204,207,210,222,223,227,230,233,240,241,244,245,251,252,256,258,262,269,279,280,281,284,287,294,296,297,298,299,305,307,309,310,312,317,322,323,325,330,332,335,340,341,352,353,355,361,366,367,369,371,372,373,375,383,388,427,432,435,436,438],dict_of_kwarg_convert:29,dictat:[20,100,134],dictionari:[6,13,14,20,32,40,54,74,80,86,91,97,100,101,126,128,141,178,180,199,204,210,222,223,227,230,233,240,241,244,245,246,252,256,257,269,271,290,299,306,317,330,339,351,352,353,355,361,365,367,371,372,379,382,383,384,388,427,436,438],did:[11,12,43,63,76,81,87,90,93,98,106,107,108,113,114,115,125,129,166,201,294,306,363,384,388,392],did_declin:201,didn:[3,8,27,32,43,73,76,80,82,84,96,99,106,107,108,109,113,114,115,116,119,133,137,138,140,152,156,281],die:[7,106,119,122,126,134,211,240,353],dies:[122,267],diff:[11,153,211,299],differ:[3,5,7,8,11,12,13,14,15,16,19,20,22,26,27,29,30,32,33,35,40,41,44,45,46,47,51,56,57,59,61,62,64,67,69,70,71,73,74,75,76,77,78,79,80,81,82,83,84,86,87,88,90,91,95,96,98,99,100,101,102,104,106,107,108,109,110,112,113,114,115,116,118,120,123,125,126,128,133,135,136,137,138,140,143,144,146,147,148,156,157,160,161,163,166,171,173,174,177,180,187,189,190,192,194,202,207,210,211,212,215,216,219,230,231,234,239,241,248,251,252,254,255,256,257,258,270,271,277,279,280,282,296,299,302,307,310,314,336,341,343,360,362,366,368,372,381,384,388,392,395,396,403,407,412,413,436,438],differenti:[97,98,99,112,113,121,122,204,241,252,294,388],differnt:216,difficult:[5,89,95,122,140,157,257,258],difficulti:[78,140],dig:[5,20,22,36,40,61,73,74,82,98,99,107,108,112,114,119,129,137,180,214,247,344],digit:[29,55,59,154,239,356,365,375,381],digitalocean:[150,154],dijkstra:[82,279,280],diku:[86,87,102,440],dikumud:71,dime:68,dimens:[80,86],dimension:99,dimenst:116,diminish:59,dimli:81,dinner:[79,122],dip:115,dir:[2,8,9,11,41,53,63,75,77,84,87,90,99,102,113,115,116,141,143,145,147,148,150,153,154,156,381,388,416],direcetli:375,direct:[9,13,20,27,31,40,51,54,55,67,74,76,77,80,81,82,84,88,96,99,108,128,131,135,137,144,154,156,180,191,216,229,245,271,273,277,279,280,281,282,290,305,312,372,374,375,381,385,388,440],direction_alias:[82,280],direction_nam:280,direction_spawn_default:280,directli:[3,4,9,11,12,14,15,19,22,26,27,30,32,34,36,40,41,43,48,50,51,52,53,59,61,67,78,79,81,82,83,86,87,90,93,94,96,97,99,100,107,108,109,110,111,112,113,115,116,117,120,128,129,135,144,145,152,154,156,161,175,191,195,199,201,202,203,211,214,219,221,233,241,252,257,258,263,269,270,280,281,282,285,290,293,294,298,302,318,323,332,335,340,343,345,351,360,362,366,368,372,373,375,386,388],director:[77,241,294],directori:[1,2,5,7,8,9,10,11,14,19,48,51,53,72,75,83,87,89,91,99,100,101,111,112,129,133,140,141,144,145,148,153,156,180,199,244,312,332,333,357,366,381,388],directorylist:357,dirnam:312,dirti:86,disabl:[5,7,8,26,32,51,59,70,74,89,91,103,125,146,175,191,223,241,250,251,252,263,270,290,298,335,355,373,375,379,389],disableloc:335,disableremot:335,disadvantag:[99,122,128,154,258],disambigu:[152,175,294,362],disappear:157,discard:365,disconcert:123,disconnect:[6,9,12,13,18,39,44,45,46,51,55,61,98,122,128,129,160,161,166,177,180,185,188,190,194,294,322,323,324,330,331,332,335,340,341,344,350,351,352,353],disconnect_al:330,disconnect_all_sess:353,disconnect_duplicate_sess:353,disconnect_session_from_account:166,discontinu:146,discord:[75,88,123,143,148,152],discordia:68,discourag:[87,122,153],discours:122,discov:[106,119,122,360],discoveri:245,discret:[34,112,413],discrimin:157,discuss:[0,18,22,53,77,82,83,86,88,89,91,101,117,122,128,145,148],discworld:67,disengag:[77,128,166,254,255,256,257,258],disk:[13,19,66,68,156,161,240,244,279,284,296],dislik:98,disonnect:13,dispatch:83,dispel:138,displai:[3,5,17,20,22,26,27,30,32,36,41,43,49,51,52,53,58,59,64,67,72,74,76,77,79,81,82,84,91,94,99,101,103,104,105,106,113,120,125,128,129,133,140,141,157,166,175,177,180,185,187,190,191,192,201,202,204,212,215,219,221,222,223,225,228,230,234,241,251,252,263,266,268,269,270,271,277,279,280,282,284,294,298,299,310,312,329,347,350,355,362,363,370,371,372,373,374,382,383,384,387,388,389,397,399,401,402,403,410,427,432,436,437,438],display:307,display_all_channel:185,display_buff:370,display_choic:202,display_formdata:223,display_help:370,display_helptext:[296,372],display_len:388,display_map:277,display_met:225,display_nam:375,display_nodetext:372,display_subbed_channel:185,display_symbol:[82,279,280,282],display_symbol_alias:280,display_titl:202,dispos:[81,238],disput:128,disregard:22,dissect:107,dist:[82,148,277,279],distanc:[19,48,79,80,82,87,95,109,240,257,258,277,279,294,388,405],distance_inc:258,distance_to_room:95,distant:[80,222,269],distinct:[44,73,86,87,110,258,407],distinguish:[76,175,252,258],distribut:[3,6,8,9,16,18,20,75,87,111,142,144,145,148,194,196,199,241,365,368,388,391],distribute_messag:194,distro:[144,145,148,150,152],disturb:[19,73],distutil:148,distutilserror:148,ditto:148,div:[17,29,40,51,56,84,131],dive:[76,116,117,118,148],diverg:64,divid:[14,29,87,101,210,269,388],dividend:210,divis:250,divisiblebi:101,divisor:210,divivid:121,django:[0,2,8,9,12,16,41,43,45,46,48,49,50,51,52,53,63,66,69,75,86,89,91,95,101,102,112,113,117,118,125,126,131,133,136,141,143,145,148,157,166,169,175,192,194,196,198,199,200,209,212,250,277,282,284,286,293,298,302,311,312,318,319,332,338,340,341,348,354,355,356,357,360,362,363,366,369,373,378,379,380,384,386,388,392,393,394,395,396,397,398,399,400,401,402,403,407,408,410,412,413,418,419,422,427,431,432,433,435,436,437,438,440],django_admin:428,django_filt:[407,413],django_nyt:89,djangofilterbackend:413,djangonytconfig:89,djangoproject:[145,427],djangowebroot:357,dmg:126,dnf:[144,148,150],do_attack:267,do_batch_delet:360,do_batch_finish:360,do_batch_update_attribut:360,do_craft:207,do_create_attribut:360,do_delete_attribut:360,do_flush:[362,379],do_gmcp:336,do_hunt:267,do_mccp:325,do_msdp:336,do_mssp:326,do_mxp:327,do_naw:328,do_nested_lookup:180,do_not_exce:91,do_noth:266,do_patrol:267,do_pickl:369,do_search:187,do_sit:125,do_stand:125,do_task:[190,306,388],do_task_act:190,do_unpickl:369,do_update_attribut:360,do_xterm256:365,doabl:15,doc:[10,17,18,22,24,27,30,40,48,50,53,56,66,71,82,85,87,88,91,102,110,111,112,116,121,123,125,133,143,145,160,161,163,180,190,239,270,273,294,323,388,427,439,440],docker:[143,148,154,159,160,440],dockerfil:156,dockerhub:156,docstr:[30,31,84,91,107,113,114,125,175,180,191,202,214,228,240,241,251,252,263,269,270,279,287,343,372],document:[0,1,4,5,7,8,11,17,24,28,30,41,43,48,49,50,52,53,56,59,60,63,66,72,74,75,76,77,78,79,81,82,86,87,88,91,93,98,99,102,111,112,113,115,116,118,119,129,131,133,137,140,143,145,146,154,157,159,160,174,188,202,239,270,287,360,363,371,379,407,432,435],dodg:255,doe:[0,8,11,12,13,18,20,22,27,29,30,32,34,36,38,40,41,43,46,48,51,52,53,58,59,61,67,69,71,73,75,78,80,81,82,83,84,86,87,89,90,91,93,95,97,98,99,101,105,106,107,108,111,112,113,115,116,119,120,121,125,126,128,129,133,134,135,137,138,139,140,142,145,146,147,148,150,156,161,166,167,177,188,190,191,192,203,204,205,207,212,214,221,222,237,238,251,252,254,255,256,257,258,268,269,270,271,279,280,294,298,299,305,306,311,312,316,317,318,321,324,332,333,339,360,362,367,372,375,381,384,388,419,427,435,438],doesn:[0,2,8,9,13,14,16,22,27,29,34,36,48,51,52,53,66,67,74,75,76,78,79,80,81,82,83,89,93,95,96,98,101,106,107,113,115,116,120,122,125,126,129,133,137,138,140,142,148,151,152,153,154,157,160,161,174,185,194,196,199,203,207,222,229,230,241,256,279,280,290,294,312,325,332,336,360,365,372,383,388,395],doesnotexist:[166,167,169,194,196,201,204,210,216,217,222,224,230,238,239,240,241,247,248,249,254,255,256,257,258,260,262,263,267,268,269,271,281,282,286,293,294,298,302,305,319,345,360,363,368,376,380],doff:255,dog:19,doing:[2,5,6,8,12,13,19,20,22,27,36,38,44,47,48,51,53,54,59,78,79,80,84,87,88,89,93,95,98,99,101,107,110,113,115,116,121,122,127,138,140,141,143,154,161,166,177,194,201,204,207,216,221,229,241,252,254,255,256,257,258,262,267,268,271,289,294,307,343,372,379,384,392,418],doll:[78,207],dolor:28,dolphin:107,dom:51,domain:[53,86,144,150,154,157,368],domexcept:154,domin:122,dominion:75,dompc:75,don:[0,3,5,6,7,8,9,11,13,18,19,20,22,26,27,29,30,32,41,43,44,48,53,54,59,63,64,66,67,72,73,74,75,76,78,79,81,82,83,84,87,88,89,90,91,93,94,95,96,99,100,101,102,103,105,106,107,108,110,112,113,114,115,116,118,119,120,121,122,123,126,128,129,131,133,138,139,140,141,145,147,148,150,152,153,154,157,166,167,173,174,180,185,186,187,188,189,194,202,208,211,216,217,229,233,240,241,250,255,256,257,263,269,270,271,273,279,280,290,293,294,298,299,307,317,324,329,330,335,337,344,351,358,362,365,366,372,379,381,384,388,396,408,427,436],donald:5,donat:[88,154],done:[0,2,5,9,11,13,20,22,27,29,30,32,35,45,47,50,51,52,53,54,63,68,75,76,80,82,83,84,86,87,88,89,90,91,93,94,95,96,97,98,99,100,101,104,105,106,108,112,113,115,116,122,125,126,128,129,133,134,135,136,137,138,140,145,148,150,154,156,161,166,175,177,185,191,201,211,240,258,271,279,281,290,293,294,305,306,307,312,316,325,329,331,333,337,341,347,350,351,353,358,360,365,366,373,375,379,388,392,436],donoth:305,dont:[143,334],doom:[82,299],door:[19,30,32,36,74,76,80,82,105,108,117,120,157,180,221,247,280],doorwai:247,dot:[4,53,76,174,180,366,388],dotal:[365,387],dotpath:388,doubl:[6,76,84,98,115,140,173,192,387,388],doublet:[173,174],doubt:[76,82,270],down:[2,4,5,7,13,20,22,26,27,43,51,55,66,68,74,76,78,80,81,84,86,89,90,93,95,98,99,103,105,106,111,115,118,119,120,122,124,125,126,127,129,130,132,133,148,154,156,157,166,180,185,190,216,230,244,252,255,256,268,271,277,279,280,287,289,294,299,305,307,312,314,321,322,329,330,350,351,353,365,373,374,388],download:[0,9,10,11,75,87,111,143,145,148,152,153,154,156,160],downmaplink:[82,280],downtim:[93,157,376],downward:177,dozen:[68,86,91],drag:51,dragon:[97,107,109,113,114,116,122],drain:251,drama:30,dramat:[13,110,120,125],dramati:30,drape:204,draw:[15,80,82,84,95,126,374],draw_room_on_map:80,drawback:[15,27,66,92,93,99,109,122,125,126,145,203,366],drawn:[80,81,99],drawtext:126,dream:[0,71,86,120,123],dress:204,drf:[407,410],drift:122,drink:[121,216,360,362],drinkabl:216,drive:[11,29,57,75,87,90,111,116,120,122,123,137,140,148,156],driven:[77,91,121,122,123,129,143,249,296],driver:145,drizzl:[41,139],drop:[9,15,22,32,34,35,36,51,61,66,67,75,83,86,88,90,91,98,99,101,105,107,108,109,112,113,114,115,122,125,134,135,137,145,154,180,186,204,238,249,255,258,263,294,321,362,366,388],drop_whitespac:374,dropdown:7,droplet:150,dropper:[255,258,294],drum:154,dry:150,dtobj:388,duck:[19,115],duckclient:146,due:[5,20,22,43,45,48,55,61,73,76,87,93,99,100,106,115,138,148,154,174,190,293,294,314,350,353,365,381,396],duh:68,dull:[0,81,108],dum:287,dumb:[108,353,365],dummi:[5,8,22,32,75,78,115,122,147,207,241,290,312,330,343,344,351],dummycli:343,dummyfactori:343,dummyrunn:[163,164,308,312,330,342,344,346],dummyrunner_act:343,dummyrunner_actions_modul:343,dummyrunner_echo_respons:343,dummyrunner_set:[5,163,164,308,312,342],dummyrunner_settings_modul:5,dummyrunnercmdset:343,dummysess:353,dump:[244,321],dungeon:[46,82,86,112,117],dungeonmap:82,dupic:20,duplic:[20,83,173,180,307,362,381],durat:[54,92,139,190,256,382,389,440],dure:[6,13,20,32,44,45,51,61,62,72,73,75,82,84,93,116,120,122,128,129,133,139,143,148,156,166,173,185,191,199,207,214,222,238,267,269,270,279,280,290,306,321,331,366,368,372,381,400,427],duti:87,dwarf:81,dwarv:122,dying:[122,254,255,256,257,258],dynam:[8,12,41,47,51,52,53,66,77,81,82,104,110,112,131,140,154,166,169,175,187,190,191,196,223,241,251,252,254,255,256,257,258,277,280,282,286,293,294,298,302,307,360,362,363,368,370,372,380,382,388,395,400,416,438,440],dyndns_system:154,each:[2,3,5,6,8,12,13,14,18,19,20,22,24,27,29,30,32,40,43,44,46,47,48,50,51,53,54,57,59,61,64,66,68,73,74,76,77,78,80,81,82,84,86,87,89,93,95,97,98,99,100,101,104,105,107,110,111,113,114,115,116,118,120,126,127,128,129,133,137,138,139,140,156,166,172,173,174,178,180,185,187,189,191,194,201,203,204,205,207,216,221,222,223,238,240,241,251,252,254,256,257,258,263,264,271,277,279,280,281,282,284,286,287,290,293,294,297,298,299,304,307,314,317,330,332,335,339,344,351,352,353,360,362,363,365,366,368,370,371,372,373,374,375,379,388,410,413,416],eagl:125,eaoiui:240,earler:108,earli:[2,123,254,255,256,257,258,314],earlier:[2,7,11,14,18,20,27,30,31,75,87,99,100,105,107,114,115,116,120,129,131,137,141,147,280,284,317],earn:123,earnest:[117,122],earth:[104,157],eas:[20,22,66,95,113,138,154,156],easi:[0,7,8,9,11,14,17,22,27,30,36,41,48,53,54,67,68,69,73,74,76,79,81,82,84,86,93,95,97,100,101,103,104,105,107,114,115,116,120,122,123,125,126,128,129,135,138,140,141,143,145,150,152,154,156,174,178,204,207,219,223,252,372,379],easier:[13,27,30,40,41,49,50,53,54,55,66,76,82,83,84,86,89,91,95,97,98,99,100,101,106,107,110,113,114,115,116,118,119,120,122,123,125,126,133,138,154,180,208,240,252,254,255,256,257,258,268,273,282,354,360,363,388],easiest:[9,11,16,19,49,53,55,63,72,74,78,79,82,91,94,99,113,129,140,148,150,244,362],easili:[7,11,13,14,15,17,18,19,22,27,30,32,34,40,44,45,46,51,53,55,63,64,67,68,73,74,78,79,80,81,83,84,88,89,91,92,95,99,100,105,106,108,110,112,113,114,117,119,120,121,122,126,129,131,133,140,148,154,155,156,157,185,194,196,201,202,204,223,225,229,240,247,251,252,254,255,256,257,258,270,273,284,285,286,307,366,372,383],east:[80,81,82,91,96,180,269,279,280],east_exit:269,east_west:81,eastern:[81,100,279,281],eastward:269,eat:[214,216],eccel:374,echo1:93,echo2:93,echo3:93,echo:[0,2,19,22,26,29,40,43,54,55,73,80,84,92,93,96,107,108,114,115,121,128,129,135,139,149,151,154,155,156,161,166,167,178,180,185,190,191,204,211,241,262,267,268,269,273,294,310,317,332,335,370,372,388],echocmdset:107,echol:160,echowoo:107,econom:[66,86,112,113,116,122,143],economi:[41,68,120,126,136,201],ecosystem:156,edg:[11,19,56,82,191,208,279,280,374,388],edgi:80,edibl:216,edit:[0,6,7,9,13,14,15,18,22,25,30,32,38,40,43,49,51,52,61,63,66,72,74,75,77,79,81,82,83,89,91,94,97,99,100,101,103,113,118,122,133,140,141,143,145,147,150,153,156,178,180,187,190,202,212,223,227,228,230,231,237,238,290,294,296,298,299,360,370,399,400,408,427,433,437,438,440],edit_callback:[228,230],edit_handl:180,editcmd:76,editor:[6,11,16,22,29,30,40,49,63,68,74,75,76,79,81,84,85,90,98,115,116,143,148,150,180,187,189,190,202,237,302,366,370],editor_command_group:370,editorcmdset:370,editsheet:99,edu:391,effect:[8,9,13,15,18,19,20,25,35,41,43,45,47,53,54,59,71,73,77,81,82,84,92,93,95,97,98,99,115,116,120,121,122,125,126,128,134,138,161,166,173,174,180,189,194,198,211,216,230,251,255,256,257,267,269,280,294,300,302,325,388,439],effici:[0,5,13,35,41,46,47,48,66,86,87,92,93,95,97,110,116,125,139,143,157,201,241,248,279,280,282,290,294,307,360,361,363,370,373],effort:[11,83,97,112,141,433],egg:[78,153,207],egg_info:148,egi:314,eight:216,eightbal:117,either:[5,6,9,11,14,17,19,20,22,27,29,32,38,40,41,44,46,48,51,53,55,58,64,74,75,78,79,80,81,82,83,84,89,93,95,96,97,98,99,101,106,107,109,110,112,113,115,116,119,122,125,126,128,129,137,138,145,154,157,161,166,167,173,174,175,185,190,195,202,207,227,233,234,240,241,247,251,252,254,257,258,263,279,280,281,282,290,294,297,299,302,304,305,307,310,321,333,337,344,361,362,363,372,374,375,381,383,385,388,391],elabor:[76,84,89,105,106,129],electr:154,eleg:83,element:[5,17,27,29,53,56,58,76,78,82,86,106,113,114,115,117,172,177,187,191,199,202,210,239,240,279,281,282,294,299,360,361,363,366,371,372,373,375,388],elev:[77,79,104,440],elif:[27,41,74,80,99,107,117,126,128,129,134],elig:[199,375],elimin:[156,365],ellow:[59,365],els:[3,8,11,12,18,19,22,27,30,32,33,41,47,51,53,54,55,57,74,75,76,78,79,80,81,84,90,91,93,94,95,99,101,103,104,105,106,107,108,114,115,117,120,123,125,126,128,129,134,136,137,140,141,145,154,157,185,191,199,201,204,223,239,254,255,256,257,258,271,293,341,362,372,388],elsennsometh:191,elsewher:[12,20,46,53,93,99,111,113,140,174,269,280,312,353,360],elv:122,elvish:240,emac:[15,143],email:[11,23,34,87,112,117,118,148,150,160,166,212,368,382,388,389,395,427],email_login:[163,164,197],emailaddress:388,emailfield:[395,427],emb:[40,82,84,99,222,299],embark:137,embed:[29,40,48,53,70,82,112,121,187,194,279,297,371,375,388],emerg:[38,63,157],emi:240,emit:[51,68,91,107,166,174,178,194,224,294,351,381],emit_to_obj:[174,294],emo:90,emoji:146,emot:[18,22,29,30,77,86,121,122,123,128,166,186,201,214,240,241,360,375],emoteerror:241,emoteexcept:241,emphas:84,emphasi:84,emploi:389,empti:[3,6,8,9,11,12,15,18,20,22,27,33,36,41,47,48,50,51,53,54,66,67,74,75,78,80,82,84,87,99,101,106,107,110,112,113,114,115,116,117,121,125,126,129,131,134,141,147,148,150,156,160,171,172,178,180,185,191,202,207,225,227,241,251,279,280,298,299,310,317,321,343,344,360,366,368,372,374,385,388,396,403],emptor:199,empty_color:225,empty_permit:[397,399,401,403,427],empty_symbol:279,empty_threadpool:357,emptyset:20,emul:[5,44,71,87,121,122,129,153,190,251],enabl:[7,51,52,59,138,141,144,145,146,151,156,157,166,200,223,250,335,389],enable_recog:241,enableloc:335,enableremot:335,enact:214,encamp:79,encapsul:382,encarnia:143,encas:370,enclos:[25,26,115,192,212,375],encod:[19,60,81,82,99,280,323,336,340,341,365,384,388,435,440],encode_gmcp:336,encode_msdp:336,encoded_text:388,encompass:19,encount:[174,280,375,389],encourag:[76,88,95,106,131,146],encrypt:[64,144,150,157,185,199,332,333,337],encumb:121,end:[0,5,9,11,13,14,15,19,20,22,26,27,29,30,32,35,40,44,45,51,54,57,58,59,61,63,64,66,67,68,72,73,75,76,82,84,86,87,90,91,92,93,95,99,100,101,103,106,108,110,112,114,115,116,117,118,119,121,122,125,126,128,129,135,137,138,140,141,144,145,147,149,150,154,156,160,166,167,173,174,180,186,187,201,203,204,208,211,216,219,225,237,241,249,252,254,255,256,257,258,269,279,280,285,316,323,324,332,335,336,343,346,351,355,357,361,365,366,368,372,373,374,375,381,388,436],end_convers:27,end_direct:280,end_turn:128,end_xi:[82,279],endblock:[53,101,131,140,141],endclr:375,endcolor:29,endcoord:277,endfor:[101,140,141],endhour:91,endif:[101,140,141],endless:53,endlessli:157,endpoint:[49,157,412,413],endpoint_url:199,endsep:388,endswith:365,enemi:[13,27,40,93,119,120,128,256,257,258,267,268,269],enemynam:27,enforc:[22,38,54,59,120,126,138,332,335,373,374,433],enforce_s:374,engag:[86,258,267],engin:[2,8,11,22,30,36,43,73,76,77,87,97,114,119,126,133,143,145,157,159,171,174,187,189,190,207,245,269,285,312,323,329,332,335,340,350,352,366,368],english:[6,16,29,63,69,143,391],enhanc:[59,103,115,244,365,437],enigmat:108,enjoi:[7,106,119,120,123,148],enough:[3,18,32,33,35,46,47,68,78,82,84,86,87,88,89,90,93,95,98,99,101,105,106,107,110,111,113,114,116,120,125,129,133,138,148,150,154,174,180,191,207,239,240,263,271,280,372,373,374],enpoint:410,ensdep:388,ensur:[7,8,80,101,134,138,145,156,252,355,386,433],ensure_ascii:341,enter:[0,2,3,5,9,11,14,15,16,18,19,20,22,25,27,29,30,35,36,38,40,52,53,59,62,64,71,72,74,75,76,77,79,81,82,87,90,91,93,96,99,100,101,105,106,114,115,118,119,125,128,129,131,134,140,145,148,153,156,160,163,166,172,174,179,187,188,190,201,202,204,216,219,222,223,233,252,254,255,256,257,258,267,269,271,289,294,299,302,310,351,372,416,427],enter_guild:27,enter_nam:27,enter_wild:271,enterpris:2,enthusiasm:123,enthusiast:[77,122],entir:[8,13,14,15,19,22,26,27,29,30,32,47,48,53,54,57,66,68,76,79,80,81,82,93,101,106,111,112,115,120,122,129,133,154,202,240,241,252,270,279,280,281,282,290,294,298,299,362,366,372,374,379,388,436],entireti:[27,126,215,223,372],entit:368,entiti:[13,18,19,27,29,30,32,33,34,35,36,40,41,44,45,46,48,50,53,82,85,87,109,110,111,112,113,117,120,125,128,138,165,166,175,180,185,190,194,195,196,207,216,241,247,251,262,281,282,284,286,287,289,294,296,297,298,299,300,302,303,305,307,353,360,361,363,368,372,373,375,378,385,388,403,413],entitii:45,entitl:154,entranc:[81,82],entri:[11,13,16,19,20,22,24,27,32,45,53,85,89,91,99,101,106,107,111,113,117,122,137,146,147,148,152,166,175,187,188,191,199,207,216,225,239,252,254,255,256,257,258,283,284,285,286,287,290,294,307,331,344,355,360,366,368,370,372,374,381,382,385,388,389,399,407,410,413,428,432,435],entriest:177,entrypoint:156,entrytext:[30,101,284,286,368],enul:144,enumar:388,enumer:141,env:[199,312,322],environ:[1,2,9,14,52,75,84,87,89,91,104,115,120,122,123,148,149,154,156,157,190,191,199,209,220,264,266,277,312,322,338,347,366,372,386,411,428],environment:312,envvar:148,eof:332,epic:143,epilog:270,epoch:[19,100,376],epollreactor:357,epub:143,equal:[6,20,22,56,57,59,74,79,82,91,95,106,108,110,113,114,122,137,173,185,222,241,250,251,254,255,256,257,258,294,388],equip:[15,59,77,98,112,121,122,204,254,255,257,258],equival:[9,13,14,29,35,43,50,53,54,59,61,67,82,111,115,117,148,157,161,165,180,273,279,280,285,330,336,360,388,408,436],eras:[75,258],err:[32,99,321,343,366],err_travers:[36,294],errback:[54,309,312,321,322,388],errmessag:173,errmsg:[129,381],erron:[69,129,321,374],error:[0,3,4,6,8,9,11,13,15,16,18,19,20,22,27,29,31,32,35,36,38,40,43,44,48,53,54,63,64,66,69,72,75,76,78,81,82,83,84,87,97,98,99,102,106,108,113,114,116,117,119,123,125,129,135,136,140,144,145,146,148,150,151,153,154,157,163,164,166,171,173,174,180,185,194,207,209,230,239,241,251,252,268,270,278,280,281,282,290,294,297,298,305,306,309,311,312,314,316,321,335,343,362,365,366,368,371,372,375,381,384,388,389,393,408,410,426,430,435,440],error_check_python_modul:312,error_class:[397,399,401,403,427],error_cmd:96,error_consumable_excess_messag:207,error_consumable_missing_messag:207,error_consumable_order_messag:207,error_msg:355,error_tool_excess_messag:207,error_tool_missing_messag:207,error_tool_order_messag:207,errorlist:[397,399,401,403,427],errorlog:144,escal:[12,38,57,122,177,289],escap:[29,59,77,82,101,186,190,214,217,270,365,375,387,427],escape_char:375,escaperoom:217,escript:[76,202],esom:187,especi:[5,16,32,38,44,46,76,81,93,112,113,115,120,144,145,148,225,240,366],esqu:113,ess:28,essai:143,essenti:[7,69,80,92,97,112,122,143,150,153,195,312,368],est:[28,191],establish:[22,44,120,121,122,126,150,166,254,294,309,321,323,330,332,335,340,343,350,352],estim:[94,279,299,379],esult:294,etc:[0,8,11,12,13,18,19,22,25,27,29,30,32,33,34,35,36,38,40,41,44,45,48,50,51,52,53,55,61,64,66,67,68,70,76,77,80,82,84,85,86,87,91,93,94,97,98,99,100,107,108,110,111,112,120,121,122,125,126,128,136,138,139,143,144,145,148,150,156,157,161,166,169,171,172,173,174,177,179,180,185,188,190,199,201,205,208,210,216,217,223,225,238,240,241,247,251,255,257,263,270,279,280,281,282,294,298,299,330,332,335,339,340,341,351,352,360,362,365,366,368,369,370,371,372,375,381,388,396,403,407,413,416,438],etern:27,ev_channel:167,evadventur:[122,127],eval:[29,40,201,388],eval_rst:84,evalstr:290,evalu:[22,29,84,110,121,123,172,201,290,372,375],evbot:[185,353],evcast:143,evcel:[371,374],evcolor:143,evcolum:374,evcolumn:374,eve:388,eveditor:[24,30,76,85,163,164,202,364,440],eveditorcmdset:370,even:[0,3,5,6,7,11,13,15,18,19,20,26,27,30,32,38,41,44,47,48,49,50,55,57,59,63,66,68,71,72,75,76,77,79,80,82,83,86,87,88,89,90,91,93,95,97,98,99,100,101,102,105,106,110,111,113,114,115,116,119,120,121,122,123,125,126,127,128,129,135,138,147,148,154,157,161,173,175,178,185,187,204,207,210,222,223,240,251,254,255,256,257,258,269,270,279,280,282,294,298,299,335,372,374,375,379,388,435],evenia:111,evenli:[19,82,210,280,388],evenn:156,evenna:75,evenni:89,evennia:[1,2,5,6,10,12,13,14,15,16,17,18,19,20,22,24,25,26,27,28,30,31,32,33,34,35,36,38,39,41,43,44,45,46,47,48,50,52,53,54,57,58,59,60,61,62,64,66,67,68,69,71,72,74,76,77,78,79,80,81,82,83,85,87,88,90,92,93,94,95,96,100,101,102,103,105,107,108,109,110,112,113,114,116,117,118,119,120,121,123,125,126,128,129,131,133,134,135,136,137,139,140,141,142,146,148,149,152,155,157,159,160,440],evennia_access:144,evennia_admin:398,evennia_channel:[149,152,155,185],evennia_dir:388,evennia_error:144,evennia_gener:133,evennia_launch:[7,163,164,308,310],evennia_logo:[53,133],evennia_superuser_email:148,evennia_superuser_password:148,evennia_superuser_usernam:148,evennia_vers:312,evennia_websocket_webcli:340,evennia_wsgi_apach:144,evenniaadminapp:418,evenniaadminsit:418,evenniaapiroot:409,evenniacreateview:[431,437,438],evenniadeleteview:[437,438],evenniadetailview:[437,438],evenniaform:427,evenniagameindexcli:314,evenniagameindexservic:315,evenniaindexview:[53,436],evennialogfil:381,evenniapasswordvalid:356,evenniapermiss:[408,413],evenniareverseproxyresourc:357,evenniaserv:39,evenniatest:[191,220,231,246,264,277,338,386,411,428],evenniaupdateview:[437,438],evenniausernameavailabilityvalid:[166,356],evenniawebtest:428,event:[27,30,45,51,77,87,123,126,157,163,167,201,210,216,229,230,231,233,241,244,263,302,305,354,440],event_nam:[229,233],eventdict:381,eventfunc:[74,163,164,197,226,230],eventhandl:230,eventi:[175,202,270],eventu:[13,22,38,55,57,63,64,67,88,89,93,99,119,120,122,123,128,129,133,140,154,161,166,171,172,189,211,216,217,240,241,263,269,290,294,299,309,317,343,351,352,363,367,368,372,374,425],evenv:[2,6,7,87,89,148,153],evenwidth:374,ever:[9,11,13,14,15,16,22,29,41,44,46,48,55,66,69,76,81,82,87,98,106,110,113,121,126,135,145,160,161,214,217,240,280,307,323,324,330,360,372],everi:[0,2,5,8,9,10,11,13,14,18,19,20,22,27,29,30,31,34,40,41,43,46,47,48,66,68,69,72,74,79,80,81,82,83,87,89,90,92,95,98,100,101,105,106,107,108,110,112,113,115,116,121,126,128,129,133,136,137,139,140,141,148,150,153,154,156,166,180,185,191,199,204,209,215,223,230,240,241,252,254,255,256,257,258,260,266,271,279,280,294,299,305,307,317,334,344,350,359,360,362,372,373,374,375,388,396,403],everror:230,everyon:[8,9,11,18,22,27,30,32,35,41,46,57,63,87,90,99,113,116,117,120,122,123,126,128,129,137,139,142,146,151,155,160,161,180,185,186,187,211,216,217,219,254,255,256,257,258,330],everyth:[0,2,3,6,8,9,11,13,20,35,38,40,43,47,49,50,51,53,57,64,69,72,75,80,81,82,84,86,87,90,92,99,101,103,105,106,107,112,113,114,115,116,117,118,119,120,121,123,125,126,128,130,133,143,148,150,152,153,154,156,157,160,161,170,175,185,186,188,190,191,192,203,207,208,212,251,269,289,293,302,316,343,351,360,362,366,372],everywher:[75,97,112,150],evform:[19,85,163,164,364],evgam:185,evgamedir:84,evict:355,evid:152,evil:[5,15,150,263,299],evilus:185,evmenu:[19,22,24,76,77,85,99,105,122,163,164,190,191,202,215,223,249,252,266,296,364,373,440],evmenucmdset:372,evmenuerror:372,evmenugotoabortmessag:372,evmenugotomessag:372,evmor:[24,30,85,163,164,298,364,440],evscaperoom:[163,164,197],evscaperoommenu:215,evscaperoomobject:[216,217],evtabl:[19,22,80,81,85,163,164,175,185,223,298,364,371,373,388],ewmaplink:[82,280],ewonewaymaplink:[82,280],exact:[5,22,27,38,71,110,113,117,166,172,180,185,189,195,207,241,251,258,285,294,298,299,361,362,384,385,388],exact_consum:207,exact_consumable_ord:[207,208],exact_tool:207,exact_tool_ord:207,exactli:[3,5,9,11,12,29,30,41,47,50,54,57,58,59,61,64,66,78,79,81,82,84,87,99,100,101,106,107,110,111,113,115,117,121,122,126,129,133,148,156,161,185,207,241,251,279,280,294,312,362,385],exam:180,examin:[7,11,12,13,22,32,47,51,55,64,73,76,99,105,106,107,108,110,126,129,166,180,191,201,214,263,268,269,344,395,408],exampl:[2,4,5,6,7,10,11,12,13,14,15,16,17,18,19,20,22,30,31,33,34,35,36,38,40,43,44,46,47,48,49,50,54,57,58,59,61,63,64,66,67,70,71,72,73,74,76,78,80,81,83,84,86,87,89,90,91,92,93,94,96,97,98,99,100,103,104,105,106,107,108,109,110,112,113,114,115,116,117,119,120,121,122,123,125,129,133,134,135,137,138,139,140,144,145,148,150,151,155,156,157,161,163,164,166,169,172,173,174,175,178,179,180,185,186,187,188,189,190,191,194,196,197,201,202,204,207,208,209,210,211,214,216,221,222,223,224,225,234,238,239,240,241,244,247,248,249,251,252,254,255,256,257,258,260,263,267,269,270,271,272,273,277,279,280,281,282,284,286,287,290,293,294,299,302,305,307,312,317,332,335,336,341,344,353,357,360,362,363,364,365,367,371,372,373,374,375,376,380,381,382,385,386,388,389,391,396,403,412,413,427,436,440],example_batch_cod:[14,163,164,197,259],example_recip:[163,164,197,206,207],example_recipi:207,excalibur:105,exce:[104,200,254,255,256,257,258,355,379],exceed:355,excel:[32,68,97,143,150],excempt:173,except:[6,13,15,19,20,22,26,29,30,32,36,40,41,49,50,53,54,57,59,64,75,76,78,79,81,82,84,87,89,90,92,93,95,99,106,108,110,112,114,115,116,117,122,128,129,135,136,137,138,140,141,148,153,154,166,167,169,171,174,175,188,189,194,195,196,201,204,207,210,216,217,222,224,229,230,233,237,238,239,240,241,247,248,249,251,254,255,256,257,258,260,262,263,267,268,269,270,271,278,279,280,281,282,286,289,290,293,294,298,302,305,306,312,317,319,321,333,335,337,341,345,357,360,363,365,368,371,372,374,375,376,380,381,383,388,395],excepteur:28,excerpt:26,excess:[32,40,76,125,188,207,293,366],exchang:[14,52,121,154,201,369],excit:[25,107,108,122,147],exclam:90,exclud:[87,110,117,129,136,194,204,238,269,293,294,370,372,405,407],exclude_cov:204,excluded_par:405,excluded_typeclass_path:190,exclus:[27,30,32,34,120,263,294,302,361,372],exclusiv:368,exe:[7,9,148],exec:[27,29,40,105,299,372,388],exec_kwarg:372,exec_str:347,execcgi:144,execut:[2,7,8,9,14,15,20,22,26,27,29,35,36,40,41,51,52,53,54,55,57,58,64,70,74,75,76,79,81,87,91,92,93,100,101,105,106,112,115,119,122,148,153,166,167,169,170,171,175,178,179,188,190,191,196,202,214,230,241,252,262,263,269,270,286,289,290,293,294,299,300,302,306,309,317,319,322,323,329,332,335,340,343,344,347,350,351,360,362,363,366,372,373,375,380,388,416],execute_cmd:[12,22,36,129,134,135,166,167,175,294,317,351],execute_command:22,executor:2,exemplifi:[30,61,82,92,116,119,121],exercis:[3,81,90,99,105,115,128,129,139,200,209,250,338,348,380],exhaust:[18,76],exhaustedgener:239,exidbobj:294,exis:96,exist:[0,2,5,6,9,11,12,13,14,18,19,20,22,25,27,32,40,41,44,46,47,53,55,61,63,66,74,76,78,79,80,81,82,87,90,91,95,96,97,98,99,101,108,109,110,112,114,115,119,120,123,125,128,129,131,133,134,141,145,149,152,156,165,166,167,173,174,175,180,185,187,188,190,199,200,202,203,208,215,221,222,227,229,230,233,234,237,238,240,241,248,251,257,268,271,279,280,281,282,287,289,290,293,294,296,298,299,306,312,316,318,332,333,335,337,345,350,351,353,360,361,362,363,366,368,370,371,372,374,375,381,383,388,395,413],existen:351,exit:[7,9,20,26,27,32,40,48,49,50,66,76,80,81,82,85,90,95,99,102,105,106,107,108,109,112,113,115,116,117,119,129,137,145,148,156,160,163,171,173,174,180,190,201,202,217,231,247,248,252,258,263,267,268,269,270,271,273,274,279,280,281,282,289,293,294,299,316,332,344,360,368,370,372,373,386,407,410,413,428,440],exit_alias:[180,247],exit_back:99,exit_cmd:[27,373],exit_command:294,exit_dest_x_coordin:82,exit_dest_y_coordin:82,exit_dest_z_coordin:82,exit_nam:[80,180,247],exit_on_lastpag:373,exit_ther:99,exit_to_her:180,exit_to_ther:180,exit_typeclass:[271,386,428],exitbuildingmenu:76,exitcmdset:[20,294],exitcommand:294,exitnam:247,exitobject:96,exitviewset:413,exixt:330,exot:22,exp:371,expand:[11,31,36,43,49,59,72,73,74,77,78,80,81,87,88,89,90,98,99,103,105,107,108,110,112,113,114,115,116,120,121,122,123,129,130,134,136,139,145,154,163,164,180,197,212,247,254,255,256,257,258,273,294,365,374],expand_tab:374,expandtab:[365,374],expans:[77,96,120],expect:[5,6,8,9,22,29,34,35,36,45,47,53,54,63,64,67,69,74,75,82,83,84,97,99,106,112,113,115,117,119,120,122,123,129,138,141,150,153,154,180,188,191,199,202,207,227,229,239,251,271,277,279,280,289,294,298,299,310,312,362,372,373,379,388,392,396,403,413,419,438],expected1:191,expected2:191,expected_direct:277,expected_input:191,expected_path:277,expected_return:8,expectlst:277,expectstr:277,expens:[47,154,385],experi:[0,3,11,27,29,72,78,81,98,100,103,107,110,115,116,119,120,126,127,148,154,156,185,216,262],experienc:[1,27,87,115,118,143],experienced_betray:27,experienced_viol:27,experiment:[31,53,190,397,400],expert:251,expir:199,explain:[8,11,22,27,49,53,66,71,76,82,86,87,95,99,108,112,122,125,133,137,138,141,143,151],explan:[20,22,50,59,87,91,95,101,217,356],explanatori:50,explicit:[20,43,61,67,71,74,76,84,101,106,133,145,151,239,312,334,360,372],explicitli:[6,20,30,32,33,35,40,41,46,47,48,59,64,66,75,82,84,89,90,94,99,105,113,114,116,121,122,148,150,174,175,180,187,191,239,251,280,284,294,299,307,362,365,368,384,410],exploit:[122,375],explor:[3,12,43,48,53,54,64,74,81,82,101,108,113,115,119,128,148,190],expos:[141,157,263,435],express:[22,27,29,32,40,52,72,73,84,97,110,113,117,131,141,180,210,239,258,360,388,416],ext:27,extend:[18,19,29,41,48,50,53,66,68,81,84,86,95,97,101,105,107,111,112,114,115,118,124,126,127,130,131,132,134,135,140,141,143,159,160,169,175,187,191,194,199,203,205,207,222,230,233,271,279,293,294,362,382,400,427,436,437,438,440],extended_room:[163,164,197],extendedloopingcal:307,extendedroom:222,extendedroomcmdset:222,extendng:208,extens:[6,8,27,30,43,59,67,75,81,82,84,86,87,97,108,112,113,120,131,145,148,169,199,245,254,274,327,335,368,378,387],extent:[76,97,122,126],exter:185,extern:[7,16,34,40,58,61,68,77,81,84,98,112,116,120,122,123,125,144,145,147,148,149,150,152,154,155,159,163,174,185,191,193,196,244,298,310,312,314,368],external_discord_hello:317,external_receiv:196,extra1:29,extra2:29,extra:[0,8,15,18,20,22,27,29,30,32,36,45,48,51,53,56,70,82,83,90,91,93,98,99,107,115,116,117,121,122,129,133,138,141,144,145,154,166,169,175,187,191,194,201,207,222,224,237,241,251,263,269,294,297,298,307,309,361,365,366,370,372,373,374,381,382,383,387,388,395,396,403],extra_environ:366,extra_launcher_command:[82,274,275],extra_opt:372,extra_spac:388,extract:[6,13,29,45,97,106,175,207,216,241,245,279,290,326,340,388],extract_goto_exec:372,extrainfoauthserv:332,extral:196,extran:223,extrem:[0,9,97,106,116,161,254,255,257,258,325,382],eye:[6,30,59,81,120,299,373],eyed:[53,125,133],eyes:[22,83,98],eyesight:[32,59,99],f6d4ca9b2b22:156,face:[82,107,119,122,150,154,157,224,356,372],facil:381,facilit:122,fact:[7,13,15,22,36,41,48,54,64,73,86,90,93,98,99,111,112,113,120,129,134,138,141,157,160,353,355,375],faction:148,factor:[74,100,104,255,257,309,323,324],factori:[61,251,309,314,322,323,324,330,331,332,333,335,343],factory_path:167,fade:[68,240],fail:[8,13,14,15,18,19,20,27,29,30,36,40,45,54,55,69,75,78,82,89,106,114,119,120,125,128,134,137,146,148,157,161,174,185,189,194,207,209,211,241,247,250,251,263,268,289,290,294,298,309,310,312,316,323,324,334,355,360,362,375,382,384,388,391,396,433],failmsg:355,failtext:126,failur:[8,15,54,78,121,126,148,166,207,269,314,321,323,324,343,355,365,388],failure_messag:207,failure_teleport_msg:269,failure_teleport_to:269,faint:41,fair:[121,122,126,211],fairli:[95,101,153,204,223,252,255],fake:[82,205,280,343,353,360,365],fall:[0,6,20,41,69,81,82,84,87,100,113,126,163,166,189,207,224,241,263,269,388,427],fall_exit:269,fallback:[80,96,171,175,196,222,290,305,312,341,360,372,383,388],fals:[8,12,13,18,19,20,22,26,27,29,30,31,32,33,36,38,41,47,48,51,66,76,80,82,84,89,90,91,93,96,99,100,103,104,107,108,113,117,125,128,129,135,136,137,140,157,166,169,171,172,173,174,175,180,185,187,191,194,196,199,201,202,204,205,207,210,211,214,215,216,219,223,227,230,234,240,241,247,252,254,255,256,257,258,266,270,271,279,280,282,284,285,286,289,290,293,294,296,298,299,302,303,305,306,307,309,312,314,318,321,322,329,330,331,332,335,341,343,349,350,351,353,355,357,360,361,362,363,365,366,368,370,372,373,374,375,376,379,383,384,385,387,388,389,391,392,395,396,397,399,400,401,403,407,408,427,435],falsestr:223,falsi:[107,114,194,207,279],fame:[119,123],famili:[27,75,98,125],familiar:[1,20,22,48,75,81,93,95,99,105,106,110,113,114,115,123,131,140,148,154],famou:[28,370],fan:143,fanci:[2,16,17,18,49,82,126,204,280],fantasi:[77,117,122,240],faq:[84,334,440],far:[7,11,14,18,20,22,53,59,67,74,76,79,80,81,82,86,90,95,96,98,106,108,110,112,113,115,116,147,153,154,156,173,258,271,279,282,314,339,360,370,379],fare:113,fart:125,fascilit:281,fashion:81,fast:[0,11,13,16,19,36,47,68,82,87,93,97,100,104,115,122,123,145,178,287,344],faster:[5,82,100,117,122,145,196,201,360],fastest:[84,280],fatal:312,fault:123,faulti:115,favor:[19,82,280],favorit:[83,90],fear:19,feasibl:145,feat:122,featgmcp:336,featur:[0,2,3,9,11,16,17,19,20,22,26,40,45,48,53,58,59,71,74,76,77,79,80,81,83,86,87,88,89,91,97,98,100,102,103,105,106,107,108,119,120,121,122,129,142,148,152,157,166,174,175,222,230,241,252,270,307,329,350,354,362,370,388,434,439,440],feb:63,februari:100,fed:[22,32,54,330,360,369,371],fedora:[11,144,148,150],feed:[9,16,27,40,80,126,155,167,185,279,314,331,332,362,373],feedback:[3,36,83,120,123,135,195,370],feedpars:[155,331],feedread:167,feel:[11,17,48,54,63,68,74,76,79,83,84,86,87,88,95,98,101,106,110,113,118,119,120,122,123,125,126,129,132,135,140,148,151,154,216,240,252,255,263,269],feelabl:216,feend78:234,feint:128,fel:63,felin:19,fellow:371,felt:[41,139],femal:224,fetch:[9,11,13,49,52,53,110,140,148,154,156,281,360,373,438],few:[0,2,3,5,8,11,13,16,17,20,22,26,29,30,31,32,36,50,53,54,59,62,66,67,74,75,80,84,86,87,89,106,108,111,113,115,120,121,122,123,126,128,129,137,138,143,145,150,157,161,190,210,240,263,293,327,336,355,365,374,388,436],fewer:[68,115,279,353,361],fg_colormap:387,fgstart:387,fgstop:387,fiction:[27,86,100,372],fictional_word:240,fictiv:240,fictou:221,fiddl:269,field:[7,9,13,29,30,31,33,34,35,36,41,45,46,48,50,53,63,66,72,97,99,109,113,131,140,145,147,169,196,223,227,241,258,267,273,286,287,289,293,294,298,299,302,303,307,319,360,361,362,363,371,380,384,385,395,396,397,399,400,401,403,407,410,415,427,438],field_class:427,field_nam:[287,407],field_or_argnam:31,field_ord:427,fieldevmenu:223,fieldfil:[163,164,197],fieldnam:[33,99,223,303,362,379,427],fieldset:[395,397,399,400,401,403],fieldtyp:223,fifo:388,fifth:80,fight:[20,41,93,114,119,120,128,254,255,256,257,258,268],fighter:[254,255,256,257,258],figur:[0,3,5,6,11,22,30,55,64,80,83,106,111,113,120,123,131,137,140,154,201,203,207,210,241,280,298,312,391],file:[0,2,3,5,6,7,9,10,12,18,19,20,38,39,49,50,51,52,53,57,61,62,63,66,72,75,76,78,81,82,83,87,89,90,91,96,97,98,99,100,101,103,105,107,108,111,112,114,115,116,118,122,129,131,133,134,136,137,140,141,143,144,145,147,148,149,150,152,153,154,155,156,157,159,160,161,163,164,166,179,187,194,199,200,202,204,205,207,210,212,217,240,244,251,270,271,284,299,311,312,332,333,336,337,344,345,346,350,357,358,364,371,372,381,384,385,388,396,397,399,401,403,413,416,420,427,435,440],file_end:[366,388],file_help_entry_modul:[30,187,284],file_help_top:435,file_name_charset:199,file_overwrit:199,fileentri:187,filehelp:[30,163,164,283],filehelpentri:[187,284,435],filehelpstoragehandl:284,filelogobserv:381,filenam:[11,19,111,194,199,240,366,371,381],filename1:312,filename2:312,filepath:199,files:199,filesystem:[148,156,157],fill:[2,7,26,53,63,72,80,81,82,99,115,140,149,223,251,279,282,360,365,371,372,373,374,375,388,403],fill_char:374,fill_color:225,fillabl:[77,223],fillchar:[29,365,375,388],filo:388,filter:[7,20,34,48,49,59,66,82,95,101,110,136,140,163,164,173,178,202,222,241,282,293,294,388,393,406,413,433],filter_backend:413,filter_famili:[48,110],filter_nam:407,filter_xyz:[82,282],filter_xyz_exit:[82,282],filterset:407,filterset_class:413,filthi:142,final_path:199,final_valu:54,find:[0,3,5,6,8,9,11,13,14,15,17,19,20,22,26,29,30,31,32,33,34,35,36,40,41,46,48,50,53,54,55,58,59,61,63,66,68,72,73,74,76,77,78,79,80,82,83,84,86,88,89,90,91,93,97,98,99,100,101,106,107,108,109,110,111,112,113,114,116,118,119,120,122,123,125,126,127,129,131,133,140,141,142,143,145,146,148,150,153,154,156,157,161,166,172,180,187,207,210,216,219,222,241,247,251,252,269,270,273,274,279,280,282,294,298,299,304,312,326,360,361,365,367,375,385,388,418],find_apropo:285,find_topicmatch:285,find_topics_with_categori:285,find_topicsuggest:285,findfoo:117,fine:[16,22,36,41,44,46,47,55,66,79,82,87,96,105,108,112,113,114,116,118,119,121,125,129,135,167,269,280,360,368,388],finer:[55,279,280],finish:[9,15,22,45,52,54,78,84,93,99,119,120,129,133,140,156,163,166,175,177,188,190,201,207,208,214,219,222,238,268,269,280,294,312,324,335,350,357,367,372,388,416],finish_chargen:27,finit:106,fire:[7,12,19,22,27,41,45,47,79,81,90,92,93,99,108,113,116,120,135,136,139,166,167,171,230,256,257,294,299,312,321,323,340,372,373,379],firebal:[78,122,207],firebreath:[99,113,116],firefox:[53,152],firestorm:92,firestorm_lastcast:92,firewal:[145,150,154],first:[0,3,5,6,7,8,9,11,12,13,14,15,16,19,20,22,25,26,27,29,30,32,36,38,40,41,43,44,45,48,50,51,53,54,55,56,57,59,61,63,64,66,68,69,72,75,77,80,84,86,89,90,93,95,97,99,100,101,102,103,105,106,107,108,109,110,111,112,114,116,117,118,119,120,121,122,123,125,126,128,129,131,132,133,135,136,137,138,139,140,141,145,146,148,149,151,153,154,155,156,157,159,161,166,167,169,172,173,180,187,188,191,192,194,196,199,201,202,204,205,210,212,216,217,219,222,239,240,241,247,249,250,254,255,256,257,258,260,263,267,268,269,270,271,274,279,280,286,289,293,294,298,299,302,305,312,316,317,319,330,332,335,340,341,343,344,350,353,360,362,363,365,366,368,370,371,372,374,375,376,379,380,387,388,408],first_lin:129,first_nam:395,firsthand:32,firstli:[6,36,53,75,109,110,154],fish:[126,174,238],fist:[114,299],fit:[10,13,29,30,38,67,71,78,95,99,112,123,125,132,137,140,145,208,255,258,371,373,374,388],five:[22,81,92,110,118,123,132,154,174,252,388,389],fix:[0,3,6,8,14,15,19,22,27,40,48,56,64,82,83,87,88,98,105,113,115,116,120,122,125,129,137,142,148,153,154,161,240,282,312,371,373,374,384],fix_sentence_end:374,fixer:110,fixing_strange_bug:11,fixtur:[191,200,209,220,250,264,277,338,348,380,386,411],fizzl:122,flag:[11,14,15,20,22,27,31,47,50,61,64,66,68,75,92,93,94,99,108,113,115,118,120,125,129,166,171,173,175,180,207,209,214,216,217,219,263,267,289,290,294,312,319,323,332,335,340,351,370,372,388],flagnam:[214,216,217],flair:125,flame:[92,257],flash:[15,263],flat:[0,19,48,76,85,97,111,163,299,391,440],flatfil:97,flatpag:418,flatten:299,flatten_diff:299,flatten_prototyp:299,flattened_diff:299,flavor:[108,121,154,257],flavour:[35,138],flaw:137,fled:[128,267],fledg:[16,68,70,122,129,130,140,154,179,211],flee:[128,134,258,267],fleevalu:128,flesh:[77,99,108,122],flexibl:[14,27,40,41,67,68,76,81,90,93,95,98,113,116,121,122,125,126,128,141,154,169,180,201,202,207,223,252,360,372,388,436],fli:116,flick:389,flicker:263,flip:[27,103],flood:[19,26],floor:[74,104,214,216,241,250],flour:[78,207],flourish:360,flourrecip:207,flow:[2,11,17,47,51,61,64,66,82,86,120,125,148,368,372],flower:[35,36,55,108,109,110,117,120,121,180,375],flowerpot:[55,98],fluent:143,fluffi:[113,114,116],fluid:[17,56],flurri:241,flush:[9,22,81,145,190,360,362,379],flush_cach:379,flush_cached_inst:379,flush_from_cach:379,flush_instance_cach:379,flusher:379,flushmem:190,fluttersprit:77,fly:[19,20,22,27,29,30,40,41,55,78,87,90,105,110,112,113,117,131,166,186,188,196,286,294,298,307,319,330,333,337,360,366,376,388],fnmatch:360,foci:122,focu:[77,89,118,120,122,128,214,216],focus:[7,97,98,129,143,214,216,258,410],focused_object:214,foe:255,foilag:82,fold:[122,252],folder:[7,8,9,14,15,19,50,51,53,63,66,72,77,80,81,84,87,90,94,98,99,101,108,111,112,113,115,126,128,129,131,133,134,135,140,141,144,148,153,156,157,160,161,198,254,255,256,257,258,312,418],folder_nam:87,follow:[3,5,6,7,9,11,12,13,14,15,17,18,20,22,26,27,29,30,31,32,36,38,41,46,48,50,51,53,54,56,57,59,61,63,66,67,72,74,75,76,79,80,82,83,84,89,91,95,99,100,101,104,105,106,107,108,110,112,113,114,115,116,118,120,123,125,126,127,128,129,134,136,137,140,141,143,144,145,147,148,149,150,151,153,154,156,157,161,166,167,169,171,172,175,180,187,188,191,194,196,202,204,205,207,211,224,230,234,241,251,252,256,257,269,279,280,284,286,287,290,293,294,297,298,299,302,303,316,317,327,336,340,341,344,354,360,362,365,366,368,371,372,373,374,381,388,412],follwo:290,fond:100,font:[51,81,84,91,112,280],foo:[8,18,22,27,29,30,33,41,45,46,61,64,67,82,107,110,111,112,113,115,117,148,252,279,281,287,312,372,375,386],foo_bar:67,foobarfoo:55,food:207,fooerror:372,fool:122,foolish:263,footer:[53,82,101,140,175,373],footnot:[16,84],footprint:190,footwear:98,for_cont:294,forai:112,forbidden:11,forc:[8,20,22,41,48,54,74,82,99,103,104,106,107,116,123,125,126,128,129,137,144,148,156,157,161,167,174,178,180,185,201,208,222,224,238,240,241,251,279,290,294,298,304,323,324,330,335,353,355,373,374,379,381,388],force_add:251,force_init:294,force_repeat:[41,128],force_str:384,forcibl:304,fore:350,forebod:222,foreground:[3,59,138,156,205,312,365,375],foreign:[48,110],foreignkei:[169,293,302,362,380,396,403],forens:245,forest:[14,46,73,81,82,112,222],forest_meadow:46,forest_room:46,forestobj:73,forget:[11,14,19,22,54,66,75,91,100,105,107,113,115,116,129,131,143,147,152,156,241,366],forgiv:125,forgo:268,forgotten:[80,92,105,113],fork:[75,143],forloop:101,form:[6,8,13,14,18,19,20,22,27,29,30,31,32,36,38,40,46,47,48,50,52,64,67,69,70,71,72,77,78,82,84,85,86,87,99,107,112,114,116,117,118,120,123,128,129,135,163,164,166,167,172,174,175,178,180,185,188,191,194,195,196,201,207,214,221,223,224,240,241,245,251,282,284,286,289,290,294,298,299,303,305,307,310,330,332,336,340,351,353,360,361,362,365,366,368,369,370,371,372,374,375,381,384,385,388,389,391,393,395,396,397,399,400,401,403,405,410,426,431,433,438],form_char:371,form_class:[53,431,433],form_template_to_dict:223,form_url:395,form_valid:[431,433,438],formal:[32,120,294,336],format:[3,11,15,17,18,19,20,22,30,40,57,59,63,64,67,68,69,71,74,76,79,81,82,83,84,86,99,100,101,103,110,114,115,125,140,143,145,155,157,173,175,177,180,187,191,194,199,202,204,205,207,210,215,221,223,233,241,244,251,252,256,262,266,270,271,279,284,286,294,296,298,299,303,312,317,327,332,352,354,360,362,365,366,368,370,372,373,374,376,381,383,388,389,410,413],format_attribut:180,format_available_protfunc:298,format_callback:227,format_diff:299,format_extern:194,format_grid:388,format_help:270,format_help_entri:187,format_help_index:187,format_messag:194,format_output:180,format_send:194,format_t:388,format_text:202,format_usag:270,formatt:[209,223,298,372,373],formcallback:223,formchar:[99,371],formdata:223,former:[17,87,138,145,207,372],formfield:384,formhelptext:223,formset:[396,403],formstr:99,formtempl:223,formul:141,forth:[11,19,180,257],fortress:81,fortun:[9,22,89,95,101,113,119],forum:[9,63,75,83,86,88,98,122,123,148,154,155],forward:[3,14,15,26,27,84,100,101,108,118,121,122,137,138,154,166,169,196,234,244,286,293,302,357,360,362,363,371,373,380],forwardfor:150,forwardmanytoonedescriptor:[293,302,380],forwardonetoonedescriptor:[293,302,380],foster:18,foul:40,found:[3,4,6,8,9,12,14,15,16,18,19,20,22,27,30,31,32,36,37,38,40,43,46,48,49,50,51,53,54,61,63,64,72,75,76,77,80,82,84,86,89,91,95,98,99,105,106,107,110,111,112,113,114,115,117,119,125,126,128,129,141,142,145,148,154,157,163,166,170,171,172,173,175,180,185,188,189,194,199,201,202,227,229,230,241,251,269,279,280,281,282,284,286,290,294,297,298,299,304,307,311,312,318,327,330,341,351,353,360,361,362,365,366,367,368,372,374,375,379,383,385,388,416],foundat:[80,86,110,143,254],four:[15,19,35,59,61,66,81,84,89,95,104,117,126,130,174,196,222,290],fourth:95,fqdn:154,fractal:97,fraction:[8,122],frame:51,framework:[49,51,52,53,56,87,123,131,133,140,191,254,257,384,407,408,410,412,413],frankli:71,free:[7,10,30,46,63,74,76,83,86,87,93,98,110,120,122,128,129,138,140,143,154,199,201,214,241,252,255,298],freedn:154,freedom:[0,15,96,122,148],freeform:[122,126,128,204],freeli:[82,156,157,366],freenod:[75,88,143,148,152,154,167,185,353],freetext:[34,195,385],freez:[3,22,93,229],french:63,frequenc:[5,240],frequent:[106,202],fresh:[9,13,20,82,99,113,160,312],freshli:81,fri:55,friend:[83,99,104,107,120,123,157],friendli:[76,84,115,140,142,169,251],friendlier:[194,294],frighten:256,from:[0,1,2,3,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,22,25,26,28,29,31,32,33,34,35,36,38,39,40,41,43,44,45,46,47,48,49,50,52,53,54,55,56,57,59,61,62,63,64,66,68,69,71,72,73,74,75,76,77,78,79,80,81,82,84,87,88,90,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,109,110,111,112,113,114,116,117,118,119,120,121,122,123,125,126,128,129,131,133,134,135,136,137,138,139,141,143,144,145,147,148,150,151,152,153,155,157,159,160,161,163,164,166,167,169,170,171,172,173,174,175,177,178,179,180,185,186,187,188,189,190,191,192,194,195,196,199,201,202,203,204,205,207,208,209,210,211,212,214,215,216,217,219,221,222,223,224,229,230,233,234,237,238,239,240,241,244,245,246,247,248,250,251,252,254,255,256,257,258,263,267,268,269,270,271,273,274,279,280,281,282,284,285,286,289,290,291,293,294,298,299,302,303,304,306,307,309,312,316,317,318,319,321,322,323,324,325,329,330,331,332,335,340,341,343,344,346,350,351,352,353,355,357,358,359,360,361,362,363,364,365,366,367,368,369,370,371,373,374,375,376,379,380,381,382,384,385,387,388,389,391,396,397,403,405,407,408,410,413,416,418,427,433,435,438,439,440],from_channel:167,from_db_valu:384,from_nod:372,from_obj:[64,103,135,166,167,175,224,262,294],from_pickl:369,from_tz:389,frombox:321,fromstr:321,fromtimestamp:376,front:[11,14,32,40,51,105,107,110,115,126,144,157,159,162],frontend:[49,252,360],frontpag:[50,53,111,117,163,164,393,394,404],frost:121,frozen:[22,93,230],fruit:238,ftabl:388,ftp:387,fuel:[90,121,251,257],fugiat:28,fulfil:[78,113,119,123,312],full:[0,4,6,8,9,11,14,15,16,17,19,22,27,29,32,33,36,38,40,41,44,47,48,56,67,68,70,72,75,78,81,82,83,84,86,87,89,90,91,98,99,102,107,108,110,111,115,116,121,122,125,126,128,129,130,133,134,137,140,141,145,146,153,154,156,160,161,167,172,174,175,179,180,185,189,190,191,194,201,202,207,211,215,219,221,222,225,237,240,241,251,252,257,266,270,279,281,282,290,299,303,324,330,343,353,354,360,362,366,370,372,374,375,388,439],full_desc:216,full_justifi:40,full_nam:35,full_result:211,fullchain:150,fuller:99,fullest:123,fulli:[5,13,22,27,57,63,66,77,82,86,89,99,105,118,125,148,154,157,161,166,240,290,294,305,340,352,368,388],fun:[0,5,81,103,108,120,121,122,133,143],func1:[180,290,344],func2:[180,290,344],func:[3,22,26,27,29,32,54,64,76,84,90,91,92,93,94,96,97,99,100,103,104,105,106,107,112,114,117,125,126,128,129,137,151,171,175,177,178,179,180,185,186,187,188,189,190,191,192,201,202,203,204,207,210,211,212,214,222,223,224,228,234,237,238,241,247,248,249,252,254,255,256,257,258,263,267,268,269,270,273,289,290,294,323,343,344,348,357,370,372,373,375,376,388,436],func_test_cmd_task:191,funcdef:375,funciton:257,funcnam:[29,31,70,112,290,297,298,307,372,375,388],funcool:143,funcpars:[24,70,85,163,164,297,353,364,388,440],funcparser_cal:[70,297,375],funcparser_callable_add:375,funcparser_callable_center_justifi:375,funcparser_callable_choic:375,funcparser_callable_clr:375,funcparser_callable_conjug:375,funcparser_callable_crop:375,funcparser_callable_div:375,funcparser_callable_ev:375,funcparser_callable_justifi:375,funcparser_callable_left_justifi:375,funcparser_callable_mult:375,funcparser_callable_pad:375,funcparser_callable_randint:375,funcparser_callable_random:375,funcparser_callable_right_justifi:375,funcparser_callable_round:375,funcparser_callable_search:375,funcparser_callable_search_list:375,funcparser_callable_spac:375,funcparser_callable_sub:375,funcparser_callable_toint:375,funcparser_callable_y:375,funcparser_outgoing_messages_modul:353,funcparser_parse_outgoing_messages_en:70,function_nam:190,functioncal:321,functionnam:[29,321],functionpars:[29,298],functool:148,fundament:[22,36,46,98,112,113,115,116,122,294],fur:208,furnac:[207,208],furnitur:[14,46,48],furst:251,further:[3,7,10,11,13,18,19,20,30,40,43,44,48,49,64,66,74,75,78,80,81,82,84,96,98,105,106,113,117,125,154,156,161,174,180,203,240,256,258,280,282,299,312,336,388],furthermor:[83,84,138],fuss:156,futur:[13,26,35,54,75,84,99,100,108,114,115,118,120,123,124,125,127,129,130,132,145,148,156,177,208,230,268,271,317,361,382,389],futurist:100,fuzzi:[30,185,207,285,385,388],fuzzy_import_from_modul:388,gag:146,gain:[5,13,93,110,120,125,175,190,196,241,290,294],galosch:240,gambl:211,game:[1,2,3,5,6,7,10,12,13,14,15,16,17,20,22,23,25,26,27,28,29,32,34,35,36,38,39,40,43,44,45,46,47,48,49,50,51,52,54,57,59,62,63,64,66,67,68,69,70,71,72,73,74,75,76,78,79,82,83,84,85,87,89,90,91,92,93,94,96,97,101,102,103,105,106,107,109,110,111,113,114,115,116,117,119,121,124,125,127,128,130,131,132,133,134,135,137,139,140,141,142,143,144,145,146,148,149,150,151,152,153,155,157,161,163,164,165,166,167,169,171,173,174,175,177,178,179,180,184,185,186,187,190,191,192,193,194,195,196,197,201,202,203,204,206,208,210,211,212,214,215,216,219,222,223,225,228,229,230,231,234,239,240,241,248,252,254,255,256,257,258,263,265,266,269,270,274,276,279,280,281,282,284,286,291,293,294,302,304,305,308,312,314,315,316,317,323,324,329,331,332,335,336,343,344,345,350,351,353,361,362,363,366,367,368,370,371,376,379,381,388,395,396,403,408,413,436,439,440],game_dir:[381,388],game_epoch:[19,376],game_index_cli:[163,164,308],game_index_en:147,game_index_list:147,game_nam:[147,420],game_slogan:[53,75,420],game_statu:147,game_templ:[53,111],game_websit:147,gamedir:[27,40,53,82,118,159,312,358,440],gamedirnam:99,gameindexcli:315,gameplai:[122,154,199,214],gamer:[149,152],gamesrc:19,gametim:[19,29,85,163,164,210,222,230,364,440],gametime_to_realtim:210,gametimescript:210,gameworld:114,gammon:[143,327],gandalf:27,garbag:360,garbl:121,garden:143,garment:[77,204],gate:[30,82,120,280],gatekeep:30,gatewai:[161,341],gather:[8,22,30,52,64,133,139,146,171,172,269,310,314,368,385],gaug:[121,163,164,197],gaugetrait:251,gave:[87,90,106,113,138,391,392],gbg:365,gcc:[115,116,148],gcreat:190,gear:[7,133,154,167,174,192,212],gemer:239,gen:17,gender:[77,224],gendercharact:224,gendersub:[163,164,197],gener:[2,5,7,8,13,18,20,22,27,30,32,35,38,40,41,43,44,46,50,51,53,54,55,59,63,64,66,67,74,75,80,81,82,83,84,86,87,91,93,98,99,100,102,107,108,112,117,120,125,126,128,138,141,145,148,150,154,163,164,166,167,170,175,176,177,180,187,188,189,191,192,194,200,201,202,203,204,207,211,212,214,216,217,222,223,224,230,234,237,239,240,241,244,245,247,248,249,252,254,255,256,257,258,263,266,267,269,270,273,280,286,290,294,296,299,323,330,332,335,336,340,343,351,352,353,357,360,363,364,365,367,368,370,373,374,375,381,383,384,388,411,412,413,419,427,431,432,433,435,436,437,439,440],general_context:[163,164,393,417],generalviewsetmixin:413,generate_prototype_kei:280,generate_sessid:330,generic_mud_communication_protocol:336,genericbuildingcmd:202,genericbuildingmenu:202,genesi:154,geniu:238,genr:[83,87,326],genuin:122,geoff:[77,270],geograph:73,geographi:95,geoip:244,geometr:81,geometri:81,get:[0,3,5,6,7,8,9,10,11,12,13,14,16,17,18,20,22,26,29,30,31,32,33,34,35,38,39,41,43,44,45,46,48,49,51,53,54,55,56,59,61,63,64,66,67,72,74,75,76,78,79,80,81,82,84,86,87,90,91,92,93,94,95,96,97,98,99,100,101,103,104,105,106,107,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,135,137,138,140,141,144,145,147,149,151,152,153,154,156,157,159,161,166,167,169,173,174,175,177,178,180,181,185,186,187,192,194,195,196,199,202,204,211,214,216,217,219,227,229,230,233,234,238,239,241,248,249,250,251,252,254,255,256,257,258,260,263,268,269,271,273,277,279,280,281,282,284,285,286,290,293,294,296,298,299,302,304,307,310,312,317,321,322,326,330,332,335,336,338,340,341,349,351,352,353,355,360,361,362,363,365,366,367,370,372,374,375,376,378,379,381,382,383,385,388,391,392,395,397,400,401,405,407,410,412,427,435,436,439,440],get_absolute_url:[141,194,286,362],get_account:[290,351],get_al:360,get_alia:361,get_alias:410,get_all_attribut:360,get_all_cached_inst:379,get_all_categori:285,get_all_channel:195,get_all_charact:217,get_all_cmd_keys_and_alias:173,get_all_cmdset:388,get_all_mail:234,get_all_puppet:166,get_all_sync_data:353,get_all_top:285,get_all_typeclass:388,get_and_load_cmdset:405,get_and_load_typeclass:405,get_and_merge_cmdset:174,get_app_list:418,get_attack:[254,255,256,257,258],get_attr:180,get_attribut:[361,410],get_available_nam:199,get_available_overwrite_nam:199,get_buff:370,get_by_alia:361,get_by_attribut:361,get_by_nick:361,get_by_permiss:361,get_by_tag:361,get_cach:360,get_cache_kei:355,get_cached_inst:379,get_callback:230,get_channel:195,get_channel_alias:185,get_channel_histori:185,get_charact:351,get_client_opt:317,get_client_s:351,get_client_sess:[340,341],get_client_sessid:341,get_cmd_signatur:216,get_command_info:[175,188],get_components_with_symbol:279,get_cont:410,get_context_data:[53,432,435,436,438],get_damag:[254,255,256,257,258],get_db_prep_lookup:384,get_db_prep_valu:384,get_dbref_rang:361,get_def:306,get_default:384,get_defens:[254,255,256,257,258],get_direct:[82,280],get_display_nam:[3,29,76,79,82,99,104,166,241,271,282,294,362],get_display_symbol:[82,280],get_err_msg:[32,108],get_ev:230,get_evennia_pid:388,get_evennia_vers:388,get_event_handl:233,get_exit:[82,281,410],get_exit_spawn_nam:[82,280],get_extra_info:[175,294,362],get_famili:[48,110],get_fieldset:400,get_form:[395,397,400,401],get_formset:[396,403],get_game_dir_path:388,get_height:374,get_help:[22,30,101,175,191,216,228,270,372],get_help_categori:435,get_help_text:356,get_help_top:435,get_hint:219,get_id:[140,306,361],get_info_dict:[329,350],get_initi:438,get_input:[191,372],get_inputfunc:[317,336,353],get_internal_typ:384,get_kwarg:428,get_linked_neighbor:280,get_location_nam:271,get_log_filenam:194,get_map:[82,281],get_mass:104,get_message_by_id:195,get_messages_by_receiv:195,get_messages_by_send:195,get_min_height:374,get_min_width:374,get_modified_tim:199,get_msg_by_receiv:34,get_msg_by_send:34,get_new:331,get_new_coordin:271,get_next_by_date_join:169,get_next_by_db_date_cr:[169,196,286,293,302,360,362],get_next_wait:233,get_nick:[361,410],get_nicklist:[167,324],get_node_from_coord:279,get_numbered_nam:294,get_obj_coordin:271,get_object:[219,413,432,435,438],get_object_paramet:199,get_object_with_account:385,get_objs_at_coordin:271,get_oth:201,get_permiss:[361,410],get_pid:312,get_player_count:326,get_posit:216,get_previous_by_date_join:169,get_previous_by_db_date_cr:[169,196,286,293,302,360,362],get_puppet:[12,166,351],get_puppet_or_account:351,get_queryset:[432,433,435],get_rang:258,get_redirect_url:433,get_regex_tupl:241,get_respons:421,get_room:[82,281],get_room_at:95,get_rooms_around:95,get_serializer_class:413,get_sess:353,get_session_id:410,get_short_desc:216,get_shortest_path:[82,279],get_spawn_xyz:280,get_stat:113,get_statu:322,get_subscript:195,get_success_url:438,get_sync_data:352,get_system_cmd:173,get_tag:[361,410],get_tag_queri:407,get_time_and_season:222,get_typeclass_tot:361,get_uptim:326,get_url:400,get_username_valid:166,get_valu:[317,336],get_value_displai:410,get_vari:[227,230],get_view_detail:411,get_visual_rang:[82,279],get_weight:280,get_width:374,get_worn_cloth:204,get_xyz:[82,282],get_xyz_exit:[82,282],get_xyzgrid:[82,281],getattr:33,getbootstrap:56,getchild:357,getclientaddress:[61,332],getdefaultencod:435,getel:51,getenv:[312,322],getgl:51,getinput:372,getitem:251,getkeypair:332,getloadavg:153,getpeer:332,getpid:388,getsizof:379,getsslcontext:[333,337],getston:22,getter:[169,196,204,241,255,258,293,294,319,360,392],gettext:63,gfg:365,ghost:30,ghostli:269,giant:90,giantess:113,gid:[5,156,344],gidcount:343,gift:101,gig:122,girl:[118,294],gist:[53,240,388],git:[2,9,10,63,66,68,75,84,91,143,145,148,153,154,156],github:[10,11,63,75,77,79,83,88,91,98,111,120,143,148,153,155,202,340,357,388],gitignor:11,give:[0,4,5,8,9,12,13,14,16,18,19,22,27,28,29,32,36,38,40,41,44,45,46,47,48,50,53,54,55,57,67,69,73,74,75,76,77,79,81,82,84,86,87,89,90,91,94,95,98,99,100,101,102,104,105,106,107,108,110,111,112,113,114,115,116,117,118,120,121,123,126,127,128,129,131,133,134,135,140,141,143,145,148,153,154,155,156,157,161,166,171,173,174,177,185,186,188,190,194,195,202,203,204,208,214,216,217,219,222,239,240,249,252,254,255,256,257,258,263,269,271,279,280,294,302,316,338,344,351,357,360,362,365,372,374,385,386,388,391,392,410,439,440],given:[0,3,5,6,8,11,12,13,14,15,19,20,22,26,27,29,30,31,32,33,34,36,38,40,41,44,47,48,53,54,55,58,59,63,64,66,67,69,72,73,74,76,79,80,82,84,87,88,89,90,91,95,99,100,105,107,108,109,112,113,115,116,119,121,122,126,128,129,134,138,140,141,154,156,161,166,171,172,173,174,175,177,178,180,185,187,189,190,191,194,195,196,202,203,204,207,208,210,211,212,214,216,217,219,221,222,223,224,225,227,229,233,238,239,240,241,247,251,252,254,255,256,257,258,262,263,268,269,270,273,279,280,281,282,287,289,290,294,296,298,299,303,304,305,307,310,312,317,318,321,330,335,336,341,344,347,351,352,353,354,355,356,357,360,361,362,363,365,366,368,369,370,371,372,373,374,375,376,379,381,383,384,385,386,388,391,392,395,408,416,419,432,433,435],given_class:415,giver:[121,255,258,294],glad:106,glade:[82,112],glanc:[19,20,22,76,95,99,106,202,241],glance_exit:76,glass:[238,263],glob:[186,372],global:[5,11,14,22,25,27,29,31,36,40,41,43,44,47,48,51,68,73,76,78,82,87,97,105,117,120,136,139,150,156,180,190,194,199,207,222,230,239,241,247,273,281,294,299,300,302,306,309,312,317,319,322,343,344,366,367,368,372,375,376,385,386,388,420],global_script:[163,367],global_search:[14,19,76,99,106,166,241,294,361],globalscriptcontain:367,globalth:386,globe:[133,154],glori:119,glorifi:251,gloriou:110,glossari:[148,440],glow:81,glu:39,glyph:321,gmcp:[31,64,336],gmsheet:99,gmt:112,gmud:146,gno:76,gnome:[63,146],gnu:15,go_back:[252,372],go_up_one_categori:252,goal:[41,84,106,119,120,123,125,143,157,240,439],goals_of_input_valid:427,goblin:[27,40,112,180,299],goblin_arch:299,goblin_archwizard:299,goblin_wizard:299,goblinwieldingclub:40,god:[30,38,108,160,284],godlik:241,goe:[0,3,22,24,41,61,66,74,75,76,80,82,83,87,93,101,116,119,122,126,129,135,137,153,154,173,174,216,219,258,271,279,280,294,332,335,350,351,387,388,438],goff:[77,239],going:[0,8,27,29,50,53,61,67,74,79,80,81,82,88,91,99,100,101,104,106,108,110,113,115,117,120,122,128,131,137,140,149,150,154,156,159,202,241,254,255,256,257,258,263,266,269,271,294,309,314,365,372,410],goings:314,gold:[27,40,104,105,116,121,366],gold_valu:105,goldenlayout_config:51,goldenlayout_default_config:51,gone:[11,32,55,105,108,113,115,117,119,122,156,217,279],good:[0,5,6,7,8,11,12,13,15,18,19,20,22,27,29,32,34,35,40,41,43,48,50,53,55,59,61,74,75,76,77,78,79,80,81,83,84,86,89,90,91,95,97,98,101,102,105,106,107,108,110,111,115,118,120,121,122,123,125,126,127,129,137,138,140,141,143,147,148,152,154,156,157,161,166,173,174,175,191,201,229,241,277,335,344,372,375],goodby:332,goodgui:290,googl:[84,143,153,154,185,374],googlegroup:39,googli:[53,133],gorgeou:82,gossip:[143,149,185],got:[9,14,49,54,107,113,114,115,116,128,252,268],goto_cal:372,goto_cleanup_cmdset:266,goto_command_demo_comm:266,goto_command_demo_help:266,goto_command_demo_room:266,goto_kwarg:372,goto_next_room:137,gotostr_or_func:372,gotten:[11,86,123,258,268,294,339],gpl2:391,graaah:134,grab:[22,107,108,126,140,186,268,410,438],gracefulli:[0,177,190,241,294,312,388],gradual:[14,15,93,120,121,143,240,251],grai:[59,138],grain:[47,368],gram:104,grammar:[216,240],grammat:[123,240],grand:[13,30],grant:[11,32,38,57,145,196,254,255,256,257,258,289,290,298,360,408,431,437],granular:258,grapevin:[159,163,164,167,185,308,320,440],grapevine2chan:[30,107,149,185],grapevine_:185,grapevine_channel:[149,167,185],grapevine_client_id:149,grapevine_client_secret:149,grapevine_en:[149,185],grapevinebot:167,grapevinecli:323,graph:[11,80,279],graphic:[3,9,32,33,49,50,52,64,72,77,81,99,123,163,212,225,336],grasp:[138,140],grayscal:205,great:[11,15,27,29,30,41,45,50,56,68,74,76,78,82,83,88,89,90,93,95,98,101,106,115,120,123,126,129,141,143,202,223,357],greater:[6,20,32,44,76,110,289,372],greatli:142,greek:16,green:[11,20,32,40,59,82,115,138,180,190,216,268,365],greenforest:82,greenskin:299,greet:[25,43,44,75,79,134,317],greetjack:35,greg:143,grei:[40,82,138,365],grenad:36,grep:[11,153],greyscal:[59,365],greyskinnedgoblin:40,griatch:[66,77,78,90,107,110,201,203,205,207,210,211,212,222,224,234,237,240,241,247,248,249,251,266,268,371,379,384,387,391],grid:[56,81,118,129,159,187,258,271,273,275,276,277,279,280,281,282,388,440],gridmap:82,gridpoint:[277,279],gridsiz:277,grief:55,griefer:141,grin:[22,121,360,375,392],grip:[84,208],gritti:22,ground:[81,86,90,108,110,114,118],group:[0,8,18,22,30,40,46,48,50,54,55,57,73,75,79,83,88,89,90,106,107,112,117,122,143,156,169,176,180,186,187,195,222,238,240,268,269,294,298,299,321,344,360,363,365,368,395,403],groupd:360,grow:[0,14,18,86,91,110,114,120,121,143,148,161,251,279,323,324,374,388],grown:[27,71,75,91],grudg:126,grungies1138:[77,234,249],grunt:[180,299],gstart:190,gthi:103,gtranslat:63,guarante:[13,38,41,66,83,121,150,154,211,230,298,330,351,362,375],guard:[27,82,122,208,280],guess:[16,26,69,76,79,101,106,157,202,299],guest1:62,guest9:62,guest:[24,38,85,166,440],guest_en:[38,62],guest_hom:[62,140],guest_list:62,guest_start_loc:62,guestaccount:46,gui:[51,52,64,98,122,234,440],guid:[2,9,83,103,133,140,407],guidelin:[83,84,143],guild:[18,46,66,122,135,143,185],guild_memb:27,gun:90,guru:86,gzip:[199,200],gzip_content_typ:199,habit:97,habitu:47,hack:[86,126,128,321],hacker:[143,157],had:[0,9,15,16,20,41,57,72,75,78,83,86,90,93,108,110,113,114,115,116,120,122,129,144,154,156,175,179,191,204,214,268,280,299,302,312,362,366,373,391,392,427],hadn:[11,100,120],hair:208,half:[68,286],hall:[30,80],hallwai:80,halt:81,hammer:[207,208],hand:[16,27,35,36,44,61,68,83,84,86,88,97,98,99,110,114,116,121,124,126,141,175,186,188,190,201,208,410],hander:110,handi:[3,115,140,153,256],handl:[5,6,9,11,12,13,14,16,18,19,22,26,27,29,31,32,35,36,38,43,44,47,48,51,52,53,61,64,66,67,68,71,74,75,76,78,80,82,83,85,86,87,89,96,97,100,105,106,107,110,111,112,114,115,116,117,120,123,125,128,134,138,139,144,146,150,153,156,166,167,170,171,173,174,180,181,185,186,189,199,201,207,208,212,216,221,222,230,233,241,245,247,249,252,254,255,256,257,258,263,268,269,270,273,280,283,284,293,294,297,298,299,302,303,306,309,312,316,317,321,322,324,325,332,335,336,339,341,343,352,353,360,362,365,366,368,369,370,372,373,374,376,379,387,388,396,403,421],handle_appli:216,handle_consum:216,handle_egd_respons:314,handle_eof:332,handle_error:[185,230,306],handle_ff:332,handle_foo_messag:372,handle_int:332,handle_messag:372,handle_mix:216,handle_numb:372,handle_posit:216,handle_quit:332,handle_setup:316,handler:[12,13,20,22,32,33,34,35,36,38,41,43,44,46,47,48,64,66,87,111,112,113,121,126,166,171,174,189,193,196,201,219,227,230,231,233,241,251,267,271,289,290,293,294,299,303,304,306,307,317,329,330,350,353,359,360,362,363,367,368,371,372,382,383,388,396,403,435],handlertyp:363,handshak:[28,64,146,322,328,330,335],handshake_don:335,hang:[84,88,116,120,123,131],happen:[0,3,5,6,8,9,11,18,19,20,22,27,29,32,38,41,44,45,47,52,53,55,57,64,66,67,68,74,81,82,83,86,87,95,96,98,99,100,106,107,108,113,114,115,122,123,125,126,128,129,138,140,147,152,154,161,166,173,174,185,194,210,216,219,248,254,255,256,257,258,267,269,271,279,294,299,306,314,321,324,344,349,351,352,353,362,372,373,379,381,388,408],happend:299,happi:[14,121,122,372],happier:106,happili:[18,107],haproxi:[154,159,440],hard:[0,5,6,8,11,13,14,16,19,20,22,29,30,40,41,46,47,54,57,61,63,67,75,84,87,99,110,111,113,116,117,120,123,125,137,140,143,148,154,156,189,223,252,302,312,360,362,372],hardcod:[73,81,98,99,113,156,360],hardcor:82,harden:148,harder:[5,8,55,82,97,110,113,120,122,125,268],hardwar:[154,325],hare:143,harm:[13,93,125,256],harsh:122,harvest:433,has:[2,3,5,6,8,9,11,12,13,14,15,16,18,19,20,22,26,27,29,30,31,32,34,35,36,38,40,41,43,44,45,46,47,48,49,50,51,53,54,55,56,57,59,61,63,64,66,67,69,71,72,74,75,76,77,79,80,82,83,84,85,86,87,89,90,91,92,93,95,96,97,98,99,100,101,105,106,107,108,109,110,112,113,114,115,116,117,119,121,122,123,125,128,129,130,133,134,135,137,138,139,140,141,142,143,144,145,147,148,149,150,151,153,154,156,157,160,161,162,165,166,167,172,173,174,175,177,179,180,185,187,188,190,191,192,194,195,200,201,202,207,210,211,212,214,216,222,223,230,234,238,239,241,251,252,254,255,256,257,258,260,263,267,268,269,270,271,277,279,280,281,282,284,286,289,290,293,294,298,299,302,305,306,307,312,314,317,321,324,326,330,334,339,340,344,350,351,352,353,355,360,361,362,363,368,370,371,372,374,375,379,381,382,385,388,392,395,396,403,407,408,413,427,428,435,437,438],has_account:[36,267,289,293,294],has_add_permiss:395,has_attribut:360,has_cmdset:174,has_connect:[18,194],has_consum:216,has_delete_permiss:395,has_drawn:80,has_nick:360,has_object_permiss:408,has_par:388,has_perm:[188,290],has_permiss:408,has_sub:194,has_tag:363,has_thorn:[13,117],hasattr:[22,92],hasbutton:216,hash:[15,40,82,154,299,307,340,344,353,361],hasher:5,hasn:[76,80,239,268,360,403,434],hassl:100,hast:256,hat:[83,88,204],hau:[149,167,185,323],have:[0,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,18,19,20,22,25,26,27,29,30,31,32,33,34,35,36,38,39,40,41,43,44,46,47,48,50,51,52,53,54,55,56,57,59,61,62,63,64,66,67,68,69,71,72,73,74,75,76,78,79,80,81,82,83,84,86,87,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,117,119,120,121,123,124,125,126,127,128,130,131,132,133,134,135,136,137,138,139,140,141,142,145,147,148,149,150,151,152,153,154,155,156,157,159,160,161,166,167,171,173,174,175,177,180,182,185,188,189,190,191,192,194,195,196,198,199,201,202,203,204,207,210,212,216,217,222,223,224,229,230,233,237,239,240,241,244,245,251,252,254,255,256,257,258,263,269,270,279,280,284,285,286,287,289,293,294,297,298,299,300,302,305,306,307,317,322,325,326,330,332,335,336,350,351,352,353,358,359,360,361,362,363,365,366,367,368,369,371,372,373,374,375,381,384,385,386,388,389,391,392,396,403,408,410,413,418,420,427,435,436,438,439],haven:[3,8,9,40,76,81,89,93,100,107,134,135,136,140,141,150,355],havint:50,head:[7,20,30,63,79,90,101,108,110,118,121,123,129,137,160],header:[14,15,19,29,30,34,36,50,63,71,75,83,84,104,107,115,148,157,175,187,196,234,241,294,366,368,373,374],header_color:180,header_line_char:374,headi:374,heading1:374,heading2:374,headless:294,headlong:148,heal:[117,121,122,256,257,269],healing_rang:257,health:[33,40,67,94,112,121,122,126,128,154,225,251,299,336],health_bar:[163,164,197],healthi:251,hear:[18,79,93,120,191],heard:[81,119],heart:[30,113,138],heartbeat:[47,323],heat:208,heavi:[13,19,22,32,87,104,108,122,126,128,129,145,199,201,241,255,325,388],heavier:[41,255],heavili:[19,43,61,66,75,82,83,98,119,153,202,254,255,256,257,258,362,439],heed:[44,290],hei:[108,121,201,234,240],height:[28,31,51,163,279,317,332,351,371,374],held:[20,128,279,289],hello:[18,27,29,31,35,44,64,67,68,71,74,79,93,106,116,121,122,129,152,185,186,191,194,241,317,365],hello_valu:68,hello_world:[68,115,116],helmet:[93,121],help:[3,5,8,11,14,15,16,18,19,21,22,24,25,26,27,29,32,38,40,41,44,45,46,49,51,53,55,57,63,66,68,69,74,76,77,78,79,80,81,82,84,85,87,89,93,95,96,98,99,102,106,107,109,111,113,114,115,117,118,119,120,121,122,123,128,129,138,140,143,145,148,150,151,152,154,160,161,163,164,170,171,173,175,176,177,185,188,190,191,192,201,210,212,214,216,219,223,227,228,230,234,240,244,251,254,255,256,257,258,263,266,269,270,275,278,296,306,310,312,314,315,323,330,332,333,335,337,340,341,343,344,360,361,365,368,369,370,372,373,383,384,385,386,393,394,395,397,398,401,407,410,413,418,421,426,427,428,430,439,440],help_categori:[22,30,76,99,101,105,107,128,129,151,175,177,178,179,180,185,186,187,188,189,190,191,192,201,202,203,204,207,211,212,214,222,223,224,228,234,237,238,241,247,248,249,252,254,255,256,257,258,263,267,268,269,270,273,284,285,286,294,343,370,372,373,385,435],help_cateogori:370,help_detail:435,help_entri:[30,284,370,435],help_entry1:284,help_entry_dict:[30,284],help_file_modul:284,help_kei:180,help_list:435,help_messag:187,help_mor:187,help_more_en:30,help_search_with_index:287,help_system:101,help_text:[187,230,427],help_top:435,helpact:270,helparg:191,helpdetailtest:428,helpdetailview:435,helpentri:[30,32,49,101,187,284,285,286,368,399,410,432,435],helpentry_db_tag:399,helpentry_set:363,helpentryadmin:399,helpentryform:399,helpentrymanag:[285,286],helper:[27,29,38,40,57,82,99,107,109,110,113,114,117,122,163,166,174,177,180,185,187,195,199,202,207,209,210,216,221,240,251,278,280,281,282,294,298,299,309,321,322,341,353,366,372,373,375,381,386,387,388,397,405,411],helpfil:187,helpfilterset:[407,413],helplistseri:[410,413],helplisttest:428,helplistview:435,helplockeddetailtest:428,helpmixin:435,helpseri:[410,413],helptaginlin:399,helptext:[27,296,372],helptext_formatt:[27,296,372],helpviewset:413,henc:[4,7,74,76,79,115,116,269,270,366],henceforth:[6,11,14,32,44,62,73,81,96,129,139,154,353],henddher:238,hendher:77,her:[8,119,121,204,224],herbal:371,herd:145,here:[2,3,5,7,8,9,10,11,12,13,14,15,16,17,19,22,27,29,30,31,32,33,34,35,36,38,39,40,41,43,44,45,47,48,49,51,53,54,56,57,59,61,63,64,66,67,68,69,71,72,74,75,76,78,79,80,81,82,83,84,85,87,88,89,90,91,93,94,95,96,97,98,99,100,101,103,105,106,107,108,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,131,133,134,135,136,137,138,140,141,143,145,146,148,149,150,151,152,153,155,156,157,160,161,166,167,173,174,175,180,188,189,190,191,192,199,201,202,203,204,207,208,210,211,212,214,215,216,219,221,229,230,239,240,241,248,251,254,255,256,257,260,267,268,269,270,271,273,280,282,286,290,294,298,299,312,314,317,321,323,329,330,332,335,344,350,351,353,359,360,362,365,368,372,374,379,396,403,405,408,410,416,432,435,436],hereaft:121,heroism:122,herself:121,hesit:[76,95],hfill_char:374,hidden:[11,13,51,80,82,87,117,119,120,121,196,204,211,270],hide:[13,20,22,30,32,38,75,81,82,108,120,121,126,187,196,211,241,268],hide_from:[34,196],hide_from_accounts_set:169,hide_from_objects_set:293,hieararci:289,hierarch:[12,38,57,177],hierarchi:[38,57,62,76,89,101,120,186,204,289,408],high:[20,38,82,86,89,108,110,116,119,144,148,173,207,208,257,294,354],higher:[5,9,18,20,27,32,38,44,49,57,68,82,91,96,97,99,100,110,113,121,125,126,129,148,154,166,173,177,190,240,254,255,256,257,258,269,280,289,314,372,388],highest:[20,99,251,365,388],highest_protocol:384,highli:[0,17,27,32,45,47,66,75,77,82,86,87,97,115,134,225,366,379],highlight:[15,59,84,98,99,138],hijack:[141,150],hilight:387,hilit:387,hill:35,hilt:[122,208],him:[27,79,113,224,241],hint:[9,40,53,86,91,102,107,113,118,123,129,133,143,148,161,210,219,358,439],hire:[105,157],his:[8,27,40,79,99,121,204,224,241,373,387],histogram:388,histor:[41,71,100,118,311,381],histori:[11,18,26,51,87,89,99,108,115,122,145,156,174,185,194,223,381],hit:[11,28,75,90,93,114,119,126,128,167,207,254,255,256,257,258,267,268,310,351,381,384],hit_msg:267,hite:59,hitter:107,hnow:59,hoard:122,hobbi:[78,120,123,154],hobbit:100,hoc:86,hold:[0,2,6,7,11,12,14,15,20,27,30,32,36,40,43,44,46,48,56,62,73,75,80,81,82,84,87,90,99,105,107,112,113,120,125,126,128,129,133,140,148,156,173,174,197,202,204,207,208,211,216,219,239,249,252,254,255,256,257,258,265,267,268,283,287,289,290,298,299,300,303,308,319,321,330,340,341,343,353,362,363,364,368,371,372,374,375,377,381,388,393],holder:[75,101,154,360],hole:122,home:[0,11,36,40,52,53,56,62,82,87,107,112,113,122,140,144,148,154,157,174,180,186,267,293,294,299,368,388],home_loc:180,homepag:[5,19,143,148,154],homes_set:293,homogen:[19,123,298,299,302],homogenize_prototyp:298,honcho:123,honor:[122,241],honour:199,hood:[9,18,22,27,29,35,41,48,66,84,87,98,108,110,113,120,121,207,241,251,270],hook:[8,12,18,22,31,32,36,41,45,47,78,80,82,91,94,103,113,126,128,129,134,135,136,137,139,161,166,171,173,175,177,180,185,186,188,190,191,194,200,204,207,209,214,216,220,222,230,238,239,241,245,250,254,255,256,257,258,262,264,266,267,268,269,271,273,277,280,294,302,305,307,316,323,335,338,340,343,348,350,351,352,354,362,370,373,375,379,380,382,386,388,397,400,401,411,427,431,432,433,435,438],hooligan:55,hop:86,hope:[3,99,106,119,122],hopefulli:[0,51,80,81,115,119,123,140,144,154],horizon:100,horizont:[268,279,374,388],hors:19,host1plu:154,host:[0,11,19,36,55,72,87,120,132,145,150,155,156,157,159,199,240,357,388],host_os_i:388,hotbutton:51,hotel:154,hotspot:157,hould:122,hour:[19,100,122,139,210,376,388],hous:[40,82,123,154,180,375],housecat:19,how:[0,3,5,6,7,8,9,10,11,13,14,15,16,17,18,19,20,25,27,29,32,33,34,35,38,40,41,43,44,46,49,50,51,52,53,54,55,57,61,62,64,66,67,68,72,73,74,76,78,79,80,81,82,83,84,86,87,89,90,91,92,93,94,95,96,97,98,100,101,103,104,105,106,107,108,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,138,139,140,141,144,145,148,150,152,153,154,157,159,160,161,167,172,174,175,187,189,190,191,194,202,204,207,208,210,211,214,216,219,224,239,240,241,248,251,252,256,257,258,263,267,271,279,280,281,282,287,289,293,294,299,302,307,312,317,322,326,331,336,339,343,344,350,351,352,353,357,362,366,370,372,373,374,375,381,382,387,388,396,397,399,402,403,427,439,440],howev:[9,11,12,13,14,15,16,17,20,22,26,29,32,40,41,47,48,50,54,55,59,61,67,68,69,71,72,74,76,79,81,82,83,84,86,89,93,94,96,99,100,105,106,108,113,115,117,119,121,122,125,126,129,136,139,145,154,161,174,175,180,187,190,191,199,202,223,225,230,239,252,257,263,289,365,410],howto:[84,439,440],hpad_char:374,href:[17,101,140],hrs:210,htm:327,html5:112,html:[51,52,59,72,81,84,86,87,101,112,133,141,143,146,157,175,190,194,239,270,284,286,334,336,340,341,357,362,384,387,407,416,431,432,433,435,436,438],htmlchar:387,htop:[5,161],http404:[101,141],http:[2,8,9,10,11,39,45,49,50,51,52,53,54,56,63,68,72,75,76,77,79,81,84,86,87,89,95,101,112,118,128,131,140,141,143,145,147,148,149,153,154,155,157,160,163,167,185,199,202,239,270,287,314,321,323,324,325,326,327,328,334,336,339,340,341,357,365,374,387,388,391,407,427,440],http_request:[72,157],httpchannel:357,httpchannelwithxforwardedfor:357,httpd:144,httprequest:166,httprespons:[395,397,400],httpresponseredirect:140,hub:[30,143,156,368],hue:59,huge:[8,56,66,90,93,95,100,116,120,122,131,271,373],huh:[22,76],human:[5,55,61,87,89,98,105,120,126,134,140,207,251,433],humanizeconfig:89,hundr:[69,122,140,152],hung:123,hungri:66,hunt:[121,126,251,267],hunting_pac:267,hunting_skil:126,hurdl:80,hurri:114,hurt:[94,121,122,251],huzzah:75,hwejfpoiwjrpw09:75,hybrid:[122,126],hype:159,i18n:[63,111,294],iac:67,iattribut:360,iattributebackend:360,ice:82,ice_and_fir:117,icon:7,id_:[397,399,401,403,427],id_str:33,idcount:343,idea:[0,7,8,10,11,22,30,32,45,50,53,55,68,74,75,80,83,84,86,95,97,101,105,110,112,115,116,120,121,122,123,125,126,127,129,137,140,141,148,151,152,175,187,188,191,201,240,299,379,387,437],ideal:[22,63,71,79,83,154,169,290],idenfi:173,ident:[6,20,22,59,64,75,96,98,107,121,161,166,188,241,247,290,294,365,366],identif:[19,47,353],identifi:[3,5,6,20,22,26,27,31,33,40,41,47,48,64,67,74,78,80,84,92,94,95,99,101,110,113,114,120,128,141,144,145,172,175,180,185,188,191,195,202,207,219,222,240,241,252,269,280,290,294,298,304,307,309,312,317,319,322,336,340,349,351,353,360,361,365,368,371,372,375,388],identify_object:195,idl:[44,55,166,167,267,294,344,351,353],idle_command:22,idle_tim:[166,294],idle_timeout:167,idmap:379,idmapp:[48,66,163,164,190,196,286,319,345,360,361,362,364],idnum:195,ids:[55,99,137,222,343,353,371],idstr:[33,47,303,307,349,388],idtifi:195,idx:137,ietf:328,ifconfig:150,ifier:251,ifram:51,ignor:[3,11,15,18,19,20,22,27,29,30,31,32,38,44,48,59,64,66,84,93,99,106,107,108,112,116,125,126,134,137,145,148,154,166,172,173,174,175,180,191,222,241,273,279,280,282,289,293,294,307,312,317,323,324,339,340,341,360,362,365,366,371,372,383,388,389],ignore_ansi:388,ignore_error:166,ignorecas:[180,186,187,192,204,207,214,365,370,372,387],ignoredext:357,illumin:81,illus:54,imag:[7,17,51,52,53,72,89,101,112,133,140,148,154,199,416],imagesconfig:89,imagin:[15,20,27,79,93,107,114,119,120,123,125,128,134,139,263,366],imaginari:[81,90,143],imeplement:271,img:17,immedi:[16,19,22,27,31,40,41,50,64,74,80,82,87,88,93,107,110,113,115,125,128,136,140,141,154,156,160,178,190,207,267,280,316,323,366,368,372,373],immers:78,immobil:91,immort:267,immut:[13,307],impact:138,impass:[82,119],impati:148,implement:[0,6,8,9,11,13,18,20,22,23,27,29,32,34,36,46,47,48,51,53,59,61,66,67,68,72,73,77,78,80,81,83,86,90,91,92,93,97,98,99,102,103,109,112,114,116,120,121,125,128,129,134,135,136,142,143,150,169,173,174,177,178,179,180,181,182,185,186,187,188,189,190,194,195,196,199,201,203,204,207,210,211,222,224,237,240,241,245,247,248,249,250,252,254,255,258,267,268,269,271,273,279,285,286,290,293,294,302,304,307,318,323,325,326,327,328,329,330,332,334,335,336,339,340,341,343,350,357,360,361,362,363,365,366,369,370,372,373,380,383,384,387,388,395,412,434,436,440],impli:[46,76],implicit:[59,106,138],implicit_keep:299,impmement:290,impopular:122,import_cmdset:174,importantli:[18,27,108,113,121,140,290],importerror:[4,75,89,388],impos:[86,143,355],imposs:[16,27,57,69,80,81,82,84,137,140,154,280,298,374],impract:[22,40,82,299],imprecis:379,impress:[3,81,122],improperlyconfigur:199,improv:[9,13,63,74,83,88,106,114,115,120,123,439],impur:208,in_game_error:[0,157],inabl:157,inaccess:[32,74],inact:[216,267],inactiv:190,inadvert:258,inadyn:154,inarticul:68,inbuilt:[46,129],incant:153,incapacit:122,incarn:427,incid:245,includ:[2,5,7,8,11,12,14,19,20,22,27,29,31,32,33,36,40,43,44,45,46,47,48,50,51,53,55,56,59,67,68,72,75,76,77,81,82,83,84,85,86,87,89,90,94,95,96,99,100,101,105,106,107,108,109,112,113,114,115,116,117,118,120,121,122,124,125,126,127,128,130,132,133,137,140,141,142,143,148,153,156,166,171,172,173,175,178,179,180,188,191,194,199,201,204,207,208,209,214,219,222,223,224,230,240,241,245,251,252,254,255,256,257,258,269,270,271,277,279,280,281,282,287,289,294,305,312,330,332,335,336,344,349,352,360,361,362,363,365,366,367,368,369,371,372,374,376,381,388,410,416,420,436],include_account:360,include_children:361,include_par:361,include_prefix:172,include_unloggedin:[330,353],inclus:[30,361,375],incoher:138,incol:[99,371,374],incom:[22,43,52,61,67,145,154,167,172,189,214,245,255,280,312,321,325,328,331,335,336,340,341,343,351,352,353,357,372,373,375,395,397,400,401,408],incomplet:[175,248,374],inconsist:[6,54,239],incorpor:[177,374],incorrect:195,increas:[32,48,59,82,100,110,113,121,126,157,201,251,255,257,258,269,280,324,330,344,370,372],increase_ind:370,incred:[252,314],increment:[148,360],incur:19,indata:[61,360],inde:[75,86,106,154],indefinit:[256,268,368],indent:[14,15,19,26,29,51,71,74,75,84,98,107,115,116,279,341,366,370,372,375,388],independ:[34,41,52,74,87,97,138,160,201,244],indetermin:314,index:[30,52,53,66,68,72,80,81,84,97,105,113,120,133,137,143,154,159,163,164,172,185,186,187,201,216,252,268,279,280,284,286,287,310,314,315,357,363,365,373,374,388,393,426,427,428,430,432,435,440],index_category_clr:187,index_to_select:252,index_topic_clr:187,index_type_separator_clr:187,indexerror:[141,271,361],indexread:216,indextest:428,indic:[34,74,76,80,81,82,84,100,105,106,108,115,116,144,167,180,187,188,199,216,224,245,252,279,280,302,305,323,324,332,339,340,353,355,357,360,365,366,372,373,388,413],individu:[13,14,15,22,29,40,67,74,76,79,80,81,82,90,98,99,105,113,116,126,139,142,151,154,174,178,194,207,211,217,227,230,257,296,299,351,363,365,374,375,382,383],ineffici:[47,134,365],inf:[391,392],infact:22,infinit:[41,74,77,82,120,148,167,271,280,298,391,392],infinitely_lock:216,inflat:122,inflect:[375,391],inflict:256,inflict_condit:256,influenc:[27,54,56,76,79,120,129,201,219,388],influenti:143,info1:249,info2:249,info3:249,info:[0,5,7,11,13,14,17,18,19,22,25,28,30,36,37,41,43,44,46,48,49,53,56,66,67,82,83,86,87,91,99,112,113,115,121,131,142,145,146,148,156,166,167,169,177,178,180,187,190,192,197,201,203,212,216,222,225,234,269,282,286,294,312,317,321,329,330,350,351,353,361,362,363,368,371,381,388],infomsg:381,inforamt:[241,271,282,294,362],inform:[2,5,8,11,12,19,22,27,33,34,40,41,43,44,46,51,53,59,62,64,66,70,72,74,75,76,79,82,84,91,92,101,105,106,107,108,112,115,122,126,128,129,131,133,134,136,139,140,141,144,145,149,150,156,157,166,167,175,178,180,185,186,190,196,202,207,211,214,239,241,245,246,251,256,257,258,286,294,312,317,326,327,328,330,339,352,353,361,362,365,368,370,381,388,427],infrastructur:[64,84,87,123,154,157,171,322],infrequ:79,ing:[15,75,99,114,122,211],ingam:79,ingame_python:[163,164,197],ingame_tim:100,ingen:63,ingo:[20,27,31,82,99,173,324,375,391],ingot:[207,208],ingredi:[78,122,207,216],ingredient1:216,ingredient2:216,ingredient3:216,ingredient_recip:216,inher:[35,54,68,89,251],inherit:[2,3,8,12,18,19,20,22,36,40,48,50,53,59,61,66,76,78,82,87,94,98,101,103,107,109,111,113,114,117,122,129,134,169,173,175,180,188,190,191,194,196,201,202,204,207,214,216,222,224,238,241,248,251,254,255,256,257,258,266,267,269,270,273,291,293,294,299,302,304,343,352,359,361,362,370,373,374,379,386,388,410,413,431,432,433,435,437,438],inheritng:299,inherits_from:[134,141,190,388],inifinit:298,init:[7,11,43,51,61,75,76,80,82,84,99,111,118,148,153,160,201,202,219,223,274,293,312,330,331,341,353,388],init_delayed_messag:223,init_django_pagin:373,init_evt:373,init_f_str:373,init_fill_field:223,init_game_directori:312,init_iter:373,init_menu:266,init_mod:174,init_new_account:388,init_pag:[298,373],init_pars:270,init_queryset:373,init_rang:258,init_sess:[61,352],init_spawn_valu:298,init_st:219,init_str:373,init_tree_select:252,init_tru:174,initi:[0,6,8,10,11,13,22,26,27,41,44,45,51,52,53,75,78,80,82,84,87,90,93,99,105,107,111,120,121,125,126,129,136,140,161,166,167,174,175,191,194,199,201,207,212,219,223,227,231,233,240,241,251,252,254,255,256,257,258,263,266,267,268,278,279,280,281,284,293,294,298,303,306,307,309,310,312,314,315,316,321,322,323,325,326,327,328,330,331,332,333,334,335,336,337,339,340,341,343,351,352,353,360,365,367,370,371,372,373,375,383,384,388,396,397,399,401,403,405,421,427,438],initial_formdata:223,initial_ind:374,initial_setup:[163,164,308,350],initialdelai:[309,323,324,343],initialize_for_combat:[254,255,256,257,258],initialize_nick_templ:360,initil:340,initpath:82,inject:[52,112,125,157,216,281,298,312,343,344,351,366,372],inlin:[43,51,70,85,98,105,294,310,375,395,396,397,399,400,401,403],inlinefunc:[40,43,64,112,375],inlinetagform:403,inmemori:360,inmemoryattribut:360,inmemoryattributebackend:360,inmemorybackend:360,inmemorysavehandl:383,innermost:29,innoc:[55,178],innocu:157,inobject:321,inp:[27,180,195,298,310,373,375,388],inpect:27,input:[5,8,11,15,16,17,18,19,20,26,31,35,40,43,44,47,51,52,53,54,61,64,69,70,72,75,76,77,78,81,82,85,88,94,98,99,102,106,107,108,112,113,114,118,125,135,140,143,161,166,170,171,172,175,180,185,187,188,189,190,191,195,202,207,208,211,219,223,240,241,245,250,251,252,257,268,280,285,294,297,298,299,310,312,317,321,332,340,351,353,360,361,363,370,371,372,373,374,375,382,384,388,389,427],input_arg:191,input_cmdset:372,input_func_modul:[31,317],input_str:[29,372],input_validation_cheat_sheet:427,inputcmdset:372,inputcommand:[31,64,67],inputcompon:51,inputdebug:[31,317],inputfuc:112,inputfunc:[24,43,61,112,163,164,167,308,340,351,353,440],inputfunc_nam:340,inputfunct:31,inputhandl:163,inputlin:[35,186,194,360,361],insecur:154,insensit:[30,110,117,187,222,241,269,284,361,419],insert:[14,15,26,29,35,40,78,87,91,99,115,118,148,151,174,207,216,224,237,298,366,372,374,375,388],insid:[3,5,7,8,13,14,16,19,20,22,27,29,32,36,39,40,41,44,48,49,53,54,57,59,63,66,67,68,72,74,79,81,82,84,87,90,91,92,98,101,104,105,106,107,108,110,111,112,115,116,117,125,126,129,133,134,137,139,140,141,145,150,151,152,156,161,163,167,190,194,199,202,222,225,229,230,241,267,269,271,289,293,294,297,312,329,350,357,366,367,375,388],inside_rec:289,insiderecurs:289,insight:[3,108,119,133],insist:[106,154],inspect:[27,55,82,105,145,166,180,201,310,312,372],inspectdb:66,inspir:[8,22,71,77,121,126,128,203,224,374,388],instac:[175,207,294,351],instal:[0,3,5,6,7,8,9,10,15,63,68,74,77,78,79,83,84,86,87,98,99,108,111,115,118,119,121,131,141,143,147,149,155,157,161,163,164,197,199,201,203,204,205,206,211,212,222,234,237,238,241,245,247,248,254,255,256,257,258,418,439,440],installed_app:[8,66,89,101,140,141,418],instanc:[3,6,8,10,11,12,13,17,19,26,27,29,33,40,44,45,50,51,56,63,74,76,79,82,87,91,92,93,95,97,98,99,100,101,105,106,107,109,110,112,113,115,117,125,128,131,133,137,138,144,157,166,169,171,172,173,174,175,184,187,189,190,191,194,196,200,202,207,221,230,233,239,252,270,271,282,286,293,294,298,299,302,306,307,309,312,321,322,323,324,325,326,327,328,330,334,335,339,343,344,352,353,357,360,362,363,365,368,369,372,374,379,380,384,388,389,395,396,397,399,400,401,403,407,408,410,412,427,435],instanci:202,instant:133,instanti:[8,22,66,116,166,174,191,251,263,304,307,329,350,353,360,371],instantli:[396,403],instead:[0,5,7,8,9,11,13,15,18,19,20,22,27,29,33,36,38,40,41,43,44,46,48,53,54,55,56,57,59,63,64,66,72,74,75,76,77,78,79,80,81,82,83,84,87,90,91,93,94,95,98,99,100,105,106,108,109,110,112,113,114,115,116,117,118,120,122,123,125,128,129,131,133,134,135,137,138,139,140,141,143,145,148,150,154,156,157,159,161,166,167,174,175,177,178,180,182,185,189,190,192,194,202,207,211,212,214,216,221,223,233,240,241,248,252,254,255,256,257,258,266,268,270,271,273,279,280,282,289,290,294,299,307,312,340,341,351,355,360,362,363,368,372,373,375,379,381,383,384,385,388,396,403,418,427,431,432,433,435],instig:178,instil:[73,256],instnac:306,instr:[321,388],instruct:[3,6,7,11,14,15,19,31,64,74,75,77,79,83,84,86,94,98,99,105,111,115,116,118,119,120,122,143,144,145,148,150,153,154,156,159,160,166,175,190,199,241,245,299,307,309,312,322,324,330,335,336,340,341,343,351,353,372,382],instructrion:78,insur:122,integ:[20,22,29,40,44,48,59,95,105,106,129,172,204,210,211,223,251,254,255,256,257,258,269,280,282,289,294,361,375,384,388,389],integerfield:[140,401,427],integr:[1,49,51,87,89,116,121,141,143,157,191,241,315,317,372,407,440],intellig:[64,106,122,126,141,157,174,199,343],intend:[3,11,14,17,19,20,22,29,34,40,46,51,68,76,81,82,83,86,108,120,125,133,138,154,157,166,198,199,201,202,207,221,241,282,286,294,299,330,361,363,368,369,371,374,375,385,386,388,389,405,433,436],intens:[59,110,122,143],intent:[157,240,388],inter:[14,82,122,279],interact:[3,7,12,22,27,61,68,82,84,86,93,97,108,116,119,122,123,125,128,140,143,145,156,161,163,179,191,214,258,263,312,329,366,381,388],intercept:353,interchang:[118,128,284,372,437],interconnect:279,interest:[0,3,5,13,15,22,30,40,61,66,74,76,78,79,80,82,83,86,88,89,90,98,106,108,116,118,119,120,123,127,129,133,136,137,143,154,157,174,189,201,210,269,271,280],interestingli:121,interf:[148,263],interfac:[0,2,3,6,32,43,50,51,52,61,72,75,76,81,87,88,90,91,101,111,115,140,143,145,148,154,177,180,194,294,305,323,352,357,360,363,365,388,397,402,436],interfaceclass:332,interfer:[6,145,298],interim:[47,93],interlink:[329,350],intermediari:[241,290,303,372],intern:[9,13,16,18,19,27,32,35,40,43,44,45,46,54,61,67,69,84,110,111,112,122,128,148,150,154,156,157,161,166,167,196,207,212,224,241,251,262,271,277,279,280,294,298,304,340,341,360,362,363,365,369,372,374,388],internal:372,internal_port:154,internation:[69,440],internet:[22,53,54,55,56,61,145,148,150,152,154,157,160,178,309,314,322,323,324,332,335,343,357],interpret:[3,5,22,40,41,43,97,106,115,116,141,157,175,179,180,282,298,299,340,365,384],interract:82,interrupt:[125,148,171,175,191,227,230,233,273,277,332],interrupt_path:[82,280],interruptcommand:[22,106,125,163,171,175],interruptev:233,interruptmaplink:[82,280],interruptmapnod:[82,280],intersect:[20,173],interv:[31,41,47,87,128,136,137,139,167,208,210,230,251,254,255,256,257,258,260,267,269,302,307,317,368,376,388],interval1:307,intim:[20,22],intimid:99,intoexit:[180,273],intpropv:129,intricaci:100,intrigu:[77,147],intro:[89,101,107,116,118,119,141,266,269],intro_menu:[163,164,197,265],introduc:[0,6,8,11,20,29,78,93,98,121,122,123,126,129,241],introduct:[1,11,14,15,16,56,57,77,102,108,114,118,124,127,130,131,132,148,202,439,440],introductori:[86,148],introroom:269,introspect:238,intrus:138,intuit:[11,27,66,76,106,120,122,125,173],intxt:19,inv:[20,104,186,204,214],invalid:[13,29,40,82,106,166,223,241,251,280,298,374,375,384,388,389],invalid_formchar:371,invent:251,inventori:[6,19,20,32,78,90,91,105,106,107,108,110,114,117,122,123,186,204,207,208,214,241,289,294,362],invers:[32,59,82,107,113,138,241,250,280,338,387],invert:[59,138],investig:[53,113],invis:[82,146,277,280],invisiblesmartmaplink:280,invit:[54,74,120,132,263],invitingli:[108,263],invok:[13,14,15,41,244],involv:[32,36,41,44,45,60,61,82,97,114,120,122,128,129,153,207,208,223,258,280,362,363,365,408],ioerror:366,ipregex:178,ipstart:[148,156,161],iptabl:157,ipv4:145,ipython:[0,5,99],irc2chan:[30,107,152,185],irc:[0,11,75,86,88,123,143,148,155,159,163,164,167,185,193,308,317,320,330,353,440],irc_botnam:167,irc_channel:167,irc_en:[152,185,289],irc_network:167,irc_port:167,irc_rpl_endofnam:324,irc_rpl_namrepli:324,irc_ssl:167,ircbot:[167,324],ircbotfactori:[167,324],ircclient:[324,353],ircclientfactori:330,irchannel:[152,185],ircnetwork:[152,185],ircstatu:[107,185],iron:[121,201,207,208,439],ironrealm:336,irregular:[260,267,269],irregular_echo:267,irrelev:[157,321],irur:28,is_account_object:97,is_act:[302,395],is_aggress:134,is_anonym:[89,101],is_anyon:89,is_authent:140,is_ban:166,is_bot:169,is_build:89,is_categori:252,is_channel:22,is_connect:[169,294],is_craft:93,is_dark:113,is_exit:[22,175],is_fight:93,is_full_moon:91,is_giving_light:268,is_gm:99,is_in_chargen:129,is_in_combat:[254,255,256,257,258],is_inst:19,is_it:388,is_iter:388,is_lit:[268,269],is_next:[169,196,286,293,302,360,362],is_o:388,is_ouch:[13,117],is_prototype_bas:298,is_rest:125,is_sai:135,is_staff:395,is_subprocess:388,is_superus:[12,50,89,166,169,290,294,368,395],is_thief:187,is_turn:[254,255,256,257,258],is_typeclass:[166,362],is_valid:[41,137,140,201,302,305],is_valid_coordin:271,isalnum:365,isalpha:365,isb:191,isbinari:[323,340],isclos:51,isconnect:51,isdigit:[99,365],isfiremag:92,isinst:[95,388],isleaf:341,islow:365,isn:[3,17,26,74,76,79,89,97,100,101,106,110,125,148,202,227,231,258,269,270,314,365,382,391,396,403,419],isnul:384,iso:[16,69],isol:[8,14,83,84,87,106,115,118,120,148,156,160],isp:[154,157],isspac:365,issu:[3,5,8,11,13,14,15,20,22,36,48,54,68,73,76,77,81,83,84,88,90,93,99,105,116,121,125,129,138,143,144,145,147,148,154,157,185,298,312,343,344,374,439],istart:[3,161,163],istep:344,istitl:365,isub:128,isupp:365,italian:63,itch:[122,148],item:[27,51,66,77,101,104,105,108,111,112,121,122,128,134,148,186,199,201,204,207,217,223,241,256,263,271,331,360,375,388],item_consum:256,item_func:256,item_kwarg:256,item_selfonli:256,item_us:256,itemcoordin:271,itemfunc:256,itemfunc_add_condit:256,itemfunc_attack:256,itemfunc_cure_condit:256,itemfunc_h:256,itend:388,iter:[6,13,27,29,46,80,107,113,166,241,262,271,280,294,299,305,341,343,344,360,362,363,365,366,369,373,388],iter_cal:373,iter_to_str:388,itl:[76,202],its:[3,5,8,9,10,11,12,13,15,16,18,19,20,22,26,27,28,29,30,32,33,36,38,40,41,43,44,47,48,49,50,51,52,55,56,59,61,64,66,67,71,72,74,75,76,77,78,80,81,82,83,84,86,87,88,90,91,93,95,96,97,98,99,100,101,103,104,105,106,107,108,110,111,112,113,114,115,116,117,118,119,121,123,125,126,129,131,133,134,135,137,138,140,141,145,148,149,152,153,154,155,156,157,166,167,169,171,172,173,174,175,178,180,188,190,191,194,195,201,202,207,208,216,219,223,224,230,238,240,241,248,251,252,254,255,256,257,258,262,263,267,268,270,271,273,280,282,293,294,299,306,307,312,316,317,321,325,338,339,340,341,344,352,353,357,358,360,361,362,363,366,371,372,374,375,379,381,382,383,384,385,388,395,396,403,405,407,416,427,431,432,433,435,437],itself:[2,5,7,8,11,13,16,17,18,19,22,27,30,32,36,38,41,43,44,47,48,53,61,63,66,72,74,75,76,77,79,80,81,82,83,84,86,87,89,90,91,93,96,104,105,107,108,111,112,113,115,116,117,119,128,129,133,135,140,141,142,145,148,150,153,159,160,166,167,187,194,202,207,211,215,216,217,219,223,233,239,241,251,252,257,260,268,269,271,280,283,286,287,289,294,296,297,299,306,312,336,341,353,357,360,363,365,368,370,372,383,385,388,396,403,427,437],iusernamepassword:332,iwar:105,iweb:154,iwebsocketclientchannelfactori:323,iwth:307,jack:35,jail:[14,55],jam:77,jamochamud:146,jan:[55,100],januari:100,jarin:154,java:115,javascript:[49,51,52,53,67,72,86,133,157,199,340,341],jenkin:[77,129,204,223,225,252,254,255,256,257,258],jet:257,jetbrain:[7,143],jinja:112,jnwidufhjw4545_oifej:75,job:[22,32,101,150,166],jobfusc:240,johhni:77,john:[99,249],johnni:[244,245],johnsson:35,join:[46,75,76,80,88,99,110,120,122,128,129,140,148,149,152,166,185,194,199,201,215,240,365,388],join_fight:[254,255,256,257,258],join_rangefield:258,joiner:194,jointli:[87,174],joker_kei:[76,202],journal:81,json:[49,51,64,67,244,323,336,340,341,369,410],jsondata:67,jsonencod:341,jsonifi:341,jtext:365,judgement:126,jump:[0,11,14,15,27,28,36,68,77,80,86,90,96,120,122,148,214,252,310,375],jumpstat:214,june:63,junk:321,just:[0,3,4,5,6,7,8,9,11,13,14,15,16,17,18,19,20,22,27,28,29,30,31,32,34,35,36,40,41,44,45,46,47,48,50,51,53,54,55,57,59,61,63,64,66,67,69,72,73,74,75,76,77,78,79,80,81,82,83,84,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,103,105,106,107,108,110,111,112,113,114,115,116,117,118,119,120,121,123,125,126,128,129,131,133,134,135,136,137,138,139,140,141,143,145,147,148,150,154,156,160,161,166,173,174,175,178,180,185,188,189,190,191,194,199,201,202,204,207,208,211,214,219,221,222,227,229,230,240,241,249,251,252,254,255,256,257,258,263,267,269,271,273,280,282,290,294,299,303,317,330,340,344,350,357,360,361,362,365,369,370,372,374,375,383,384,388,389,433,436],justif:[373,388],justifi:[29,40,365,373,375,388],justifii:373,justify_kwarg:373,kcachegrind:5,keen:83,keep:[0,3,5,6,9,11,13,14,15,16,22,27,30,39,40,44,53,56,74,75,87,89,91,93,94,97,98,99,100,101,103,104,105,106,107,110,114,115,116,119,120,121,122,123,125,126,128,135,137,138,139,140,141,142,145,148,150,153,156,160,167,174,222,225,230,239,244,263,268,269,298,299,314,355,372,374,388],keep_log:[194,368],keepal:[44,335,341],keeper:[105,122],keepint:87,kei:[0,3,6,8,11,13,14,18,19,20,22,26,28,29,30,31,32,33,36,38,41,45,46,47,48,49,51,53,54,63,66,67,71,74,75,78,80,81,82,84,85,90,91,92,93,94,95,96,97,98,99,100,101,103,104,105,106,107,109,113,114,115,116,125,127,128,129,136,137,140,144,151,166,167,169,171,173,174,175,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,194,195,201,202,203,204,207,208,210,211,212,214,215,216,219,221,222,223,224,228,229,234,237,238,240,241,247,248,249,251,252,254,255,256,257,258,263,266,267,268,269,270,271,273,279,280,281,282,284,286,287,289,293,294,297,298,299,302,303,304,305,306,307,310,312,317,318,319,321,330,333,336,337,339,340,341,343,344,351,352,353,355,360,361,362,363,367,368,370,371,372,373,375,381,382,383,385,388,407,427,438],kept:[5,8,22,30,38,53,98,106,112,180,229,230,299,360],kept_opt:252,kernel:0,key1:237,key2:[27,237,294],key_mergetyp:[20,173,263],keydown:51,keyerror:[207,298,307,383,388],keyfil:[333,337],keynam:[194,297,299,368],keypair:332,keys_go_back:[76,202],keystr:363,keystrok:332,keywod:374,keyword:[5,8,13,19,22,26,27,28,29,31,32,40,41,45,47,48,54,64,66,74,76,91,93,94,99,100,103,106,109,110,115,125,129,141,166,167,171,175,180,186,194,199,204,210,219,221,222,227,229,230,233,240,241,245,254,255,256,257,258,269,270,282,290,294,298,299,303,306,307,310,312,317,321,323,324,330,331,332,335,340,341,351,352,353,355,360,361,362,368,371,372,373,374,375,379,382,384,385,388,436],keyword_ev:233,kick:[18,20,27,55,99,122,154,167,173,178,185,192,212,373],kildclient:146,kill:[5,19,27,44,108,112,120,123,128,153,156,201,267,268,303,307,312,350,357],killsign:312,kilogram:104,kind:[6,13,32,43,61,74,83,84,106,113,114,115,120,124,128,135,137,140,254,255,256,257,290,362,389],kindli:138,kitchen:[96,114,125,180,273],klass:63,knee:[82,216,280],kneeabl:216,kneed:216,kneel:216,kneelabl:216,knew:[113,115],knife:[78,207,208],knock:[27,119],knot:204,know:[0,3,5,6,8,9,11,12,13,14,15,16,18,20,22,27,29,30,31,32,33,36,43,44,48,53,54,56,59,61,63,64,66,69,74,76,78,80,81,82,83,84,87,88,90,93,95,96,97,98,99,101,103,104,105,106,107,108,110,112,113,114,115,116,117,118,120,121,122,123,125,126,128,133,134,135,137,138,139,140,141,143,144,145,147,150,152,154,155,156,161,175,179,180,188,191,201,229,234,240,252,257,263,268,280,293,294,317,351,353,360,366,367,372,388,396,403,434],knowledg:[14,16,22,86,334,353],known:[22,26,30,35,38,39,47,48,51,88,108,120,125,126,141,143,146,159,165,189,257,373,439],knuth:5,korean:63,koster:143,kovash:27,kwar:362,kwarg:[18,22,27,29,31,32,33,40,45,47,48,51,54,61,64,67,70,78,82,91,93,99,103,125,135,137,139,141,166,167,168,169,171,174,175,177,178,179,180,185,186,187,188,189,190,191,192,194,195,196,199,201,202,203,204,207,208,210,211,212,214,215,216,217,219,221,222,223,224,227,228,229,230,234,237,238,239,240,241,245,247,248,249,251,252,254,255,256,257,258,260,262,263,266,267,268,269,270,271,273,280,281,282,285,286,289,290,292,293,294,296,297,298,299,301,302,303,305,306,307,309,310,317,318,319,321,322,323,324,329,330,331,332,333,335,336,337,340,341,343,345,351,352,353,354,355,357,360,361,362,363,365,368,370,371,372,373,374,375,376,378,379,381,382,383,384,385,386,388,389,395,396,397,400,401,403,407,409,410,413,427,431,432,433,435,436,437,438],kwargtyp:388,label:[46,66,73,108,117,118,140,407,427],label_suffix:[397,399,401,403,427],laborum:28,labyrinth:82,lack:[14,53,71,84,97,107,120,123,241,263,294,360,388],laddad:63,ladder:99,ladi:113,lag:[5,80,148],lair:15,lambda:[27,40,54,95,101,230,299,388],lamp:[81,263],lamp_breaks_msg:263,land:[106,128,267,268],landscap:[81,157],lang:240,langcod:241,langnam:241,languag:[8,10,16,29,48,51,52,53,60,61,68,69,71,84,86,87,97,98,99,106,107,110,111,112,113,114,115,121,123,135,143,157,240,241],language_cod:63,languageerror:[240,241],languageexistserror:240,languagehandl:240,larg:[6,8,13,14,15,27,40,41,53,54,56,66,68,77,82,83,86,97,108,118,119,120,123,125,145,154,216,240,263,271,274,298,330,366,371,379],larger:[15,29,32,66,68,80,84,98,104,115,120,222,294,338,365,379,388,416,439],largest:251,largesword:66,last:[0,2,3,8,11,13,14,15,18,20,22,27,31,35,36,44,45,51,63,66,76,82,89,93,99,101,106,109,114,115,116,117,119,120,122,123,128,133,137,138,141,147,150,161,171,172,174,180,185,186,199,201,210,222,230,241,252,254,255,256,257,258,294,316,365,366,367,372,373,374,376,381,388],last_cmd:[22,113],last_initial_setup_step:350,last_login:395,last_nam:395,last_step:316,lastcast:92,lastli:[81,103,140,171,207],lastsit:91,late:[298,367],later:[6,11,12,13,14,18,22,30,31,33,40,41,47,48,55,61,64,66,73,74,75,76,78,79,81,82,84,86,87,99,101,103,107,108,110,113,114,115,116,118,120,121,122,123,125,126,127,129,134,136,137,140,145,148,154,173,177,178,180,188,194,210,238,241,280,298,299,307,332,363,375,388],latest:[2,11,19,20,53,77,84,87,90,99,148,150,153,155,180,185,190,294,299,331,355,372,375,381,407],latin:[16,63,69,294,388],latin_nam:294,latinifi:[294,388],latter:[19,32,36,47,82,87,93,106,138,241,251,284,302,304,363],launch:[7,8,15,77,82,90,105,119,147,148,153,154,161,174,263,311,312,322,324,343,370,388],launchcmd:[82,163,164,197,272,274],launcher:[5,7,82,274,275,311,312,321,322,343],lava:82,law:143,layer:[20,76,77,111,116,293,362],layout:[9,19,30,39,48,51,53,80,82,97,99,113,117,271,279],lazi:388,lazy_properti:[251,388],lazyencod:341,lazyset:381,lc_messag:63,lcnorth:58,ldesc:97,ldflag:153,lead:[13,14,17,20,27,29,41,50,52,53,64,66,70,74,76,77,80,81,82,83,86,87,97,101,108,110,117,120,122,137,143,145,157,166,172,173,180,190,207,230,233,239,247,273,278,280,281,282,294,299,351,360,362,372,374,375,388],leak:[53,72],lean:[34,121,241],leap:[100,115,125,135],learn:[3,7,11,16,17,20,22,49,53,56,68,74,76,77,79,80,82,93,97,98,101,103,107,109,110,111,113,114,115,116,119,120,121,122,123,125,133,138,141,143,148,160,240,257,440],learnspel:257,least:[3,7,22,27,32,34,50,66,80,86,95,98,99,113,115,116,118,120,123,126,131,137,144,150,154,166,174,195,201,216,240,251,285,294,299,305,365,371,374,375,385,388],leasur:267,leather:[105,122,208],leatherrecip:208,leav:[5,12,18,31,51,53,74,76,90,91,99,105,108,118,126,128,129,157,177,179,180,194,201,202,214,216,217,269,271,273,294,306,340,341,372,375,379,410],leaver:194,led:113,left:[2,19,22,29,31,32,40,51,66,76,81,82,95,98,101,105,106,110,114,119,125,148,166,180,186,188,216,225,254,255,256,257,258,263,268,271,279,280,290,299,362,365,374,388],left_justifi:40,leftmost:82,leg:349,legaci:[29,40,41,67,122,160,166,241,375],legal:[154,157],legend:[26,80,163,164,197,272,279,281],legend_key_except:279,legenddict:281,leisur:389,len:[40,80,91,99,105,110,117,128,136,137,151,172,189,210,388],lend:26,length:[62,66,76,80,82,91,100,106,115,119,122,145,151,154,172,199,207,210,221,223,225,233,240,241,279,280,314,355,360,365,374,375,388,438],lengthi:91,lenient:40,less:[7,27,30,53,63,66,68,76,82,87,96,97,106,113,114,120,122,125,126,128,139,140,154,210,255,257,280,360],lesson:[107,108,109,110,111,113,114,116,117,120,122,123,125],let:[5,7,8,11,13,15,16,18,20,22,27,29,31,32,36,38,47,51,53,55,59,61,64,73,74,75,76,78,79,80,81,82,83,87,90,91,92,95,96,97,98,99,100,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,131,132,133,134,135,137,138,140,141,144,148,149,152,153,155,157,166,174,175,180,186,191,201,204,211,223,225,251,252,271,279,290,294,322,341,353,368,372,382,387,407,427,434,435],letsencrypt:[150,154],letter:[16,34,59,63,69,76,81,82,95,115,129,140,154,177,186,202,216,239,240,251,356,365,388],leve:298,level:[0,2,4,12,13,14,18,19,26,27,29,30,32,38,43,44,46,48,49,50,53,57,61,62,63,68,73,76,78,81,84,86,94,98,99,101,105,108,110,115,120,122,123,125,126,140,143,151,154,166,177,182,183,190,194,202,203,208,210,214,234,240,252,263,279,284,289,294,299,314,351,360,362,368,370,375,376,388,408,438],lever:[22,48,214],leverag:[52,84,125,131],levi:66,lexicon:216,lhs:[91,99,188],lhslist:188,liabl:216,lib:[6,145,148,150,153],libapache2:144,libcrypt:153,libjpeg:153,librari:[0,4,8,9,14,40,48,49,51,63,68,85,87,97,98,102,106,113,116,118,133,140,142,143,148,153,156,157,160,197,239,270,298,299,325,360,362,374,388,440],licenc:365,licens:[7,77,83,122,239,365,391,440],lid:263,lidclosedcmdset:263,lidopencmdset:263,lie:[81,216],lied:216,lies:[11,22,114],life:[13,35,83,100,118,122,123,125,138,210,267,439],lift:[32,108,126,129,216,258,290],lifter:32,light:[15,19,41,68,84,119,120,123,145,174,255,268,269,282,299,306,365],lightabl:268,lighter:[59,255],lightest:19,lightli:[56,255],lightsail:154,lightsourc:268,lightsource_cmdset:268,like:[0,2,3,5,6,7,8,9,11,12,13,15,16,17,18,19,20,22,23,25,27,28,29,30,31,32,33,34,36,38,40,41,43,44,45,46,47,48,50,51,52,53,54,55,56,57,59,61,63,64,66,67,68,71,72,73,74,75,76,78,79,80,81,82,83,84,85,86,87,88,90,91,92,93,94,95,96,98,99,100,101,103,105,106,107,108,109,110,112,113,114,115,116,117,118,119,120,121,123,125,126,128,131,133,134,136,137,138,139,140,141,143,144,145,147,148,149,150,151,152,153,154,156,157,160,166,167,169,170,172,173,174,177,179,180,185,188,191,192,193,194,195,201,202,204,207,208,212,216,222,223,224,225,233,239,240,241,247,248,251,252,254,255,256,257,258,262,263,269,270,271,280,286,287,289,290,293,294,298,299,312,317,325,341,344,346,350,352,353,360,361,362,365,366,368,371,372,373,374,375,376,379,382,384,385,388,391,412,427,436,440],limbo:[14,15,19,43,62,74,75,76,77,81,82,108,112,113,119,137,141,148,180,202,269,273,316],limbo_exit:81,limit:[0,5,8,12,13,18,19,20,22,27,29,30,32,34,40,41,43,46,48,49,50,56,57,66,73,74,79,82,83,85,86,87,91,92,99,106,108,110,112,114,115,117,120,121,123,128,129,138,145,151,154,159,166,175,177,178,179,180,194,195,204,216,230,241,250,251,252,254,256,257,263,279,284,285,286,287,290,294,299,302,307,317,330,355,360,361,362,363,366,368,370,381,385,388,391,405,433],limit_valu:166,limitedsizeordereddict:388,limp:119,line2:114,line:[0,2,5,6,8,9,14,15,16,18,19,20,22,27,29,31,34,35,36,39,40,43,48,51,53,54,57,59,63,64,66,68,74,75,76,77,78,79,81,82,84,85,89,91,93,94,95,97,98,99,100,101,103,106,107,108,111,113,114,116,117,122,129,137,140,141,145,147,148,150,154,155,156,161,163,166,171,174,180,185,187,189,190,199,202,211,212,223,237,240,241,252,263,270,271,275,279,298,312,317,332,335,340,351,362,366,370,371,372,373,374,381,388,427,432],linear:80,linebreak:[101,387],lineeditor:370,lineend:387,lineno:84,linenum:370,liner:324,linereceiv:[332,335],linesend:341,lingo:[44,66,72,98],linguist:388,link:[0,9,11,12,15,17,18,20,22,27,30,36,44,49,52,53,61,70,75,76,77,79,80,81,83,86,87,89,91,93,95,98,101,105,107,108,110,111,112,113,115,122,129,131,137,140,141,147,148,152,154,155,159,166,169,180,185,227,270,273,277,278,279,280,281,290,294,302,310,312,323,327,332,335,362,387,388,400,439,440],link_button:400,link_object_to_account:400,linkdemo:84,linknam:147,linknod:280,linkref:84,linktext:84,linkweight:280,linod:154,linux:[0,5,6,7,11,35,75,84,87,89,91,115,116,144,145,150,152,153,154,156,244,388],liquid:362,list:[5,6,7,9,11,12,13,14,15,16,18,19,20,22,27,29,30,31,32,34,36,40,41,44,46,48,49,50,51,53,55,59,61,62,63,66,67,69,71,72,74,76,78,79,80,81,82,83,86,88,89,91,95,98,99,101,104,105,106,107,108,110,111,112,115,117,119,120,121,123,125,126,128,129,131,137,140,141,143,145,147,148,152,154,155,157,161,166,167,169,172,173,174,175,177,178,179,180,185,186,187,188,190,191,194,195,196,199,201,202,203,204,205,207,214,215,216,222,223,224,225,227,228,230,231,233,234,237,238,239,240,241,244,245,251,252,254,255,256,257,258,263,266,267,268,271,273,279,280,281,282,284,285,287,290,293,294,298,299,303,304,305,307,310,312,317,318,322,324,326,328,330,331,336,341,344,353,355,357,360,361,362,363,365,366,367,368,369,372,374,375,381,382,385,388,391,395,396,403,405,408,410,411,412,418,420,431,432,433,435,437,438,439],list_attribut:180,list_callback:228,list_channel:185,list_displai:[395,397,399,400,401,402,403],list_display_link:[395,397,399,400,401,402],list_filt:[395,399,400,403],list_nod:372,list_of_all_rose_attribut:13,list_of_all_rose_ndb_attr:13,list_of_myscript:41,list_prototyp:298,list_select_rel:[397,399,400,401,402],list_serializer_class:413,list_set:312,list_styl:177,list_task:228,list_to_str:388,listabl:180,listcmdset:180,listcmset:180,listdir:199,listen:[12,18,32,44,51,55,102,145,150,157,185,194,216,240,241,263,432,440],listen_address:145,listing_contact:147,listnod:372,listobj:190,listobject:190,listscript:190,listview:[432,433,435],lit:[268,269,375],liter:[14,29,30,40,50,62,84,98,108,186,365,375,384,388],literal_ev:[29,372,375,388,396],literari:123,littl:[3,11,16,22,40,41,48,53,54,74,75,78,81,82,84,87,89,90,91,92,98,99,101,105,106,107,108,110,112,113,114,115,116,117,118,119,120,121,122,123,125,133,134,135,141,151,154,156,161,216,255,266,269,347,360,372,388,427],live:[7,53,84,88,113,122,143,144,145,148,150,154,156],ljust:[29,365,375],lne:252,load:[0,5,6,7,8,13,14,16,20,22,26,27,40,51,52,53,55,63,81,82,93,96,97,98,99,101,104,113,114,115,116,120,126,129,133,137,157,169,174,186,187,190,196,209,219,222,230,240,279,281,284,286,290,293,294,298,302,306,316,319,321,352,360,362,363,366,367,370,375,380,382,383,386,388,405,425],load_buff:370,load_data:367,load_kwarg:383,load_module_prototyp:298,load_stat:219,load_sync_data:352,loader:[27,281,362,388],loadfunc:[26,370,383],loc:[180,273],local0:150,local:[2,6,7,11,29,49,50,53,59,63,82,83,87,91,100,107,111,114,133,140,145,150,152,156,157,199,227,230,241,299,335,360],local_non_red_ros:110,local_ros:110,localecho:154,localevenniatest:386,localhost:[49,50,51,52,53,72,75,89,101,118,131,140,141,145,146,148,150,153,154,160,341],locat:[4,5,8,9,11,12,13,14,19,20,22,25,27,31,32,36,40,41,46,48,49,50,51,53,55,62,72,73,74,75,77,78,79,80,81,82,84,87,89,90,91,94,95,98,99,105,106,107,108,110,111,112,113,114,115,119,121,122,125,129,133,134,135,137,140,144,148,150,154,156,157,160,166,171,180,186,190,194,195,199,202,203,204,207,219,221,222,238,241,247,262,267,269,271,273,277,279,280,281,282,289,293,294,299,341,350,360,361,362,363,366,368,372,374,381,385,413,416,418],location_nam:271,location_set:110,locations_set:[110,293],locattr:[268,289],lock:[18,20,22,24,29,34,36,38,40,41,43,46,48,50,54,55,57,76,82,85,89,90,91,92,93,95,96,99,100,104,105,107,108,111,112,113,125,129,140,145,151,154,161,163,164,166,175,177,178,179,180,185,186,187,189,190,191,192,194,196,201,202,203,204,207,208,211,212,214,216,222,224,227,228,230,231,234,237,238,241,247,249,263,267,268,269,271,273,280,284,286,293,294,298,299,357,360,362,368,370,372,382,389,400,408,435,440],lock_definit:290,lock_func_modul:[32,290],lock_storag:[175,177,178,179,180,185,186,187,188,189,190,191,192,196,201,202,203,204,207,211,212,214,222,223,224,228,234,237,238,241,247,248,249,252,254,255,256,257,258,263,267,268,269,270,273,284,286,294,343,360,362,370,372,373],lockabl:[34,99,216,247],lockablethreadpool:357,lockdown:[32,360],lockdown_mod:154,lockexcept:290,lockfunc1:32,lockfunc2:32,lockfunc:[18,22,32,38,43,85,91,112,114,137,163,164,180,185,288],lockhandl:[13,30,32,48,107,163,164,175,202,270,288,289],lockset:294,lockstr:[6,13,18,22,30,32,40,89,114,125,180,185,187,194,196,247,290,294,299,360,368,408],locktyp:[18,173,185,207,299,375],log:[2,5,7,9,10,11,12,13,22,25,27,31,34,36,41,44,45,50,51,52,53,54,55,62,63,66,72,77,81,82,85,86,87,89,90,91,95,96,98,99,107,108,114,118,122,125,126,129,137,140,141,144,145,146,148,149,150,151,152,153,154,156,161,166,174,178,192,194,203,212,217,223,244,245,279,280,281,294,302,306,312,317,321,322,326,329,330,332,335,343,344,345,351,353,355,357,362,368,381,388,395,432,433],log_dep:[19,381],log_depmsg:381,log_dir:[18,194,244,381],log_err:[19,381],log_errmsg:381,log_fil:[18,19,194,381],log_file_exist:381,log_info:[19,381],log_infomsg:381,log_msg:381,log_sec:381,log_secmsg:381,log_serv:381,log_trac:[19,41,135,136,381],log_tracemsg:381,log_typ:381,log_typemsg:381,log_warn:[19,381],log_warnmsg:381,logdir:2,logentry_set:169,logfil:[312,381,432],loggad:63,logged_in:44,loggedin:[53,330],logger:[19,41,85,135,136,163,164,244,324,364],logic:[3,6,53,54,74,78,80,81,82,89,95,96,101,112,122,125,141,216,240,293,297,316,360,372,389,410],login:[5,6,11,12,22,25,27,32,44,45,52,53,75,82,89,91,101,122,140,154,166,177,192,212,290,316,317,332,335,340,341,344,353,388,419,421,428,440],login_func:344,loginrequiredmixin:[433,438],logintest:428,logout:[343,344,428],logout_func:344,logouttest:428,logprefix:[322,332,335,357],lon:375,lone:[81,120,180,187],long_descript:147,long_running_funct:54,long_text:28,longer:[22,26,28,29,47,48,66,71,74,90,91,93,99,101,106,107,113,115,116,138,143,147,173,178,194,204,240,241,248,254,255,256,257,258,303,306,370,374],longest:[19,241],longrun:22,longsword:49,loo:[175,191],look:[0,2,3,5,6,8,11,13,14,15,16,17,19,20,22,25,27,29,31,32,35,36,38,40,41,44,46,48,50,52,53,54,55,56,57,59,61,63,64,66,67,68,72,74,75,76,77,78,79,80,81,82,83,84,86,87,88,89,90,91,93,94,95,96,98,99,100,101,103,104,105,106,107,110,111,112,113,114,115,116,117,118,119,120,121,123,125,126,128,131,132,133,134,135,137,138,140,141,145,148,150,151,153,154,156,157,161,166,167,172,174,175,177,180,186,188,191,192,199,203,204,207,212,214,215,216,222,223,229,237,238,240,241,252,256,262,263,266,268,269,271,280,281,282,285,289,290,293,294,296,299,317,332,333,340,344,360,362,366,372,373,374,382,385,387,388,395,400,427],look_str:166,lookaccount:99,lookat:22,looker:[5,29,80,82,99,129,166,204,216,217,222,241,262,271,282,294,362],lookm:22,lookstr:294,lookup:[6,13,22,32,46,66,171,186,244,284,293,331,363,365,378,379,384,385,388,389],lookup_env:199,lookup_expr:407,lookup_typ:384,lookup_usernam:27,lookuperror:365,loom:81,loop:[5,13,29,48,74,79,80,82,86,87,90,101,105,110,128,135,163,167,254,280,299,330],loopingcal:315,loos:[15,83,166,185,204,258,285,332,343,366],loot:120,lop:110,lore:[30,99,187,284],lose:[13,44,97,120,122,128,129,156,161,244,256,323,324,332,335],lost:[48,72,74,81,84,95,97,106,143,161,185,248,309,322,323,324,332,335,340,360,365],lot:[0,3,5,8,11,14,16,18,19,29,30,32,40,41,46,48,50,52,53,54,63,66,68,72,74,76,78,79,81,82,83,85,86,88,89,92,95,98,99,100,101,106,107,110,112,113,114,115,116,117,118,119,120,121,122,123,125,126,127,129,137,140,143,148,150,154,202,210,212,223,241,249,255,268,271,357],loud:[90,125],love:[30,51,123,284],low:[20,61,62,79,122,154,173],lower:[5,12,18,20,22,27,38,51,54,57,59,66,80,82,91,93,99,100,105,119,122,154,172,173,177,188,190,241,251,279,280,317,365],lower_bound_inclus:251,lowercas:[115,175,365],lowest:[62,154,251,289,365],lpmud:71,lsarmedpuzzl:238,lspuzzlerecip:238,lst:[80,368],lstart:26,lstrip:[106,365],ltthe:190,ltto:58,luc:371,luciano:143,luck:[27,78,106,113,144],luckili:[8,11,32,81],lue:[59,365],lug:86,luggag:117,luhttp:190,lunch:79,lunr:[30,187,287],lunrj:287,lurk:122,luxuri:[46,359],lycanthrophi:110,lycantrhopi:110,lycantrophi:110,lycantrroph:110,lying:[81,216],m2m:363,m2m_chang:45,m_len:388,mac:[5,7,11,75,84,87,115,118,145,146,156,160,388],machin:[7,11,14,91,115,122,145,156,267],macport:[11,148],macro:[89,128],macrosconfig:89,mad:[11,251],made:[0,2,11,13,25,27,29,32,38,40,43,49,53,57,77,81,82,84,90,91,97,99,107,108,113,114,116,117,120,122,125,129,131,137,141,154,155,157,171,173,190,191,194,201,204,223,251,252,256,257,258,275,290,306,314,344,358,365,366,370,372,375,388],mag:[8,371],magazin:143,mage:[27,110],mage_guild_block:27,mage_guild_welcom:27,magenta:138,magic:[32,46,73,77,78,94,119,120,121,122,137,201,225,250,257,314],magic_meadow:46,magicalforest:73,magnific:27,mai:[1,3,5,6,7,8,9,10,11,13,14,18,19,20,22,27,29,30,32,33,35,36,40,41,43,44,47,48,49,53,54,57,59,61,62,63,64,66,67,68,72,74,75,77,78,81,82,83,84,87,88,89,90,91,92,93,97,98,100,101,103,108,110,112,113,115,117,118,119,120,121,123,125,126,128,129,133,135,136,140,141,143,144,145,147,148,150,151,153,154,156,157,161,166,167,171,172,173,175,177,178,180,185,187,190,191,194,195,197,199,201,203,204,207,208,210,216,219,223,225,240,241,251,254,255,256,257,258,268,269,279,280,290,294,298,299,300,314,351,353,354,358,360,362,363,365,367,368,369,370,372,374,375,376,382,385,388,391,396,403,416,433],mail:[5,9,27,34,75,83,86,88,98,107,128,143,163,164,195,196,197],mailbox:[34,234],main:[4,11,14,15,16,20,22,27,30,33,36,38,39,40,41,43,44,46,47,48,49,51,52,53,61,64,66,72,76,80,82,83,87,90,94,97,101,103,105,106,108,111,113,114,121,122,125,128,140,141,143,145,147,154,156,159,161,166,169,171,177,180,185,187,191,194,196,202,207,209,223,230,234,240,241,271,275,281,286,287,293,299,302,312,316,317,319,324,329,331,336,350,352,357,362,363,372,373,377,385,387,388,395,401,418,436],mainli:[5,22,27,34,36,44,54,55,64,98,114,115,143,177,283,360,366,388],maintain:[5,30,47,57,68,77,83,84,85,89,97,117,123,145,154,156,159,160,190,192,212,275,307,439],mainten:[154,157,439],major:[15,16,29,87,98,121,137,140,145,148],make:[0,1,2,3,5,6,7,9,10,12,13,14,15,16,18,20,22,26,27,29,30,31,32,34,35,36,38,40,41,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,61,63,64,66,68,69,73,74,75,76,77,78,79,80,81,82,83,84,86,87,88,89,91,92,93,94,95,96,97,100,102,103,105,106,109,110,111,112,114,116,117,118,119,120,121,123,124,126,127,128,130,132,133,134,135,138,139,140,141,142,143,144,145,146,147,148,151,152,153,154,156,157,160,161,166,167,169,172,173,174,175,177,178,180,185,188,191,195,199,201,202,204,207,208,214,216,222,223,225,231,234,240,241,246,247,248,251,252,254,255,256,257,260,263,267,268,269,273,279,280,282,285,289,290,294,298,299,304,307,312,316,324,329,343,344,350,351,353,354,356,357,360,361,362,363,365,366,367,368,369,370,372,374,375,376,379,385,387,388,396,403,405,428,436,438,440],make_it:388,make_shared_login:421,make_uniqu:173,makeconnect:321,makefactori:332,makefil:84,makeit:343,makemessag:63,makemigr:[2,66,140],male:224,malevol:15,malform:[191,281,389],malici:[29,157],malign:290,man2x1:68,man:[35,68,71,121,154,186,234,241],mana:[92,94],manaag:399,manag:[5,8,9,11,12,13,18,20,32,36,41,44,47,48,61,64,66,75,82,85,95,97,98,105,110,112,121,125,140,156,161,163,164,165,166,169,185,190,191,193,194,196,199,219,237,241,258,269,282,283,286,291,293,294,298,300,302,307,308,312,319,359,360,362,363,364,367,368,377,380,381,385,388,428,431,432,433,438,440],manager_nam:360,manchest:388,mandat:427,mandatori:[40,45,71,74,76,82],mandatorytraitkei:251,maneuv:252,mangl:338,mango:238,manhol:332,manhole_ssh:332,mani:[0,5,8,9,11,12,13,15,16,17,18,19,20,22,27,29,30,36,40,41,43,44,45,47,48,49,52,53,54,55,59,60,61,62,63,66,67,68,69,71,72,73,74,75,77,80,81,82,84,86,87,88,89,94,96,97,98,99,100,105,106,107,108,109,110,112,114,115,116,120,122,123,126,128,129,135,136,137,138,140,141,148,152,154,155,157,161,169,173,175,180,185,191,196,199,201,204,207,209,212,216,223,241,248,249,252,256,257,267,270,279,280,282,286,287,290,293,299,302,307,312,326,334,336,355,360,362,363,365,372,373,375,379,380,381,436],manifest:[6,112],manipul:[13,20,27,40,41,50,66,74,76,87,96,107,129,180,195,222,227,251,285,294,318,368,373,433,435],manner:[15,241,271,294,330,362],manpow:83,manual:[5,6,9,11,15,22,30,32,36,40,41,48,50,52,59,61,63,66,73,81,82,84,86,89,90,94,99,105,108,112,113,115,120,123,125,134,137,141,143,145,148,150,154,161,163,167,180,252,263,266,270,280,294,299,305,312,329,336,372,373,375,439,440],manual_paus:[41,305],manual_transl:240,manytomanydescriptor:[169,196,286,293,302,360,362,363],manytomanyfield:[169,196,286,293,302,360,362,363],map10:277,map11:277,map12a:277,map12atransit:277,map12b:277,map12btransit:277,map1:[82,277,280],map2:[82,277,280],map3:277,map4:277,map5:277,map6:277,map7:277,map8:277,map9:277,map:[6,16,18,27,29,35,67,72,74,79,87,91,95,98,99,150,156,163,164,177,185,191,194,197,199,205,210,216,240,241,251,271,272,273,274,276,277,278,279,281,282,287,294,298,299,336,360,362,365,371,372,375,388,440],map_align:[82,282],map_area_cli:282,map_character_symbol:[82,282],map_data:[277,279],map_displai:[82,277,282],map_exampl:274,map_fill_al:[82,282],map_mod:[82,282],map_modul:81,map_module_or_dict:279,map_separator_char:[82,282],map_str:[80,81,271],map_target_path_styl:[82,282],map_visual_rang:[82,282],mapa:82,mapb:82,mapbuild:[163,164,197],mapc:82,mapcorner_symbol:279,mapdata:281,maperror:[278,279],maplink:[82,279,280],mapnam:[273,281],mapnod:[82,279,280],mapparsererror:[278,280],mapper:[279,379],mapprovid:271,maps_from_modul:281,mapstr:[82,281],mapstructur:279,maptransit:278,maptransitionnod:[82,280],march:[143,381],margin:17,mark:[11,14,15,22,29,30,32,50,51,53,58,59,70,72,73,80,82,84,90,99,107,110,115,121,148,152,154,172,179,208,221,222,230,239,252,277,279,280,353,360,362,366,371,372,375,384],mark_categori:252,markdown:[30,84,89,147],marker:[14,18,22,29,35,53,59,77,82,87,115,121,125,185,186,207,216,221,222,224,241,252,279,280,294,324,332,335,340,341,360,363,365,371,372,373,416],market:[122,154],markup:[30,59,84,103,133,163,164,205,364,387,388],mask:[77,121,238,241,245,246],maskout_protodef:238,mass:[5,102,120,440],massiv:[86,92],master:[75,79,83,84,98,120,126,128,135,141,148,155,156,251,358],match:[9,11,13,19,20,22,27,29,30,31,32,35,36,38,40,41,43,44,46,48,50,51,53,59,64,66,67,72,75,76,78,80,81,82,95,96,98,99,100,106,108,110,112,117,125,133,135,140,141,145,166,171,172,173,174,175,178,180,185,186,187,189,191,195,202,205,207,210,222,223,233,234,237,238,241,251,257,271,279,280,282,284,285,287,289,290,294,298,299,304,307,317,318,330,343,353,360,361,362,363,365,370,372,374,375,383,385,387,388,389,391,416,438],match_index:172,matched_charact:223,matches2:66,matchobject:[365,387],mate:87,materi:[78,115,122,207,208],math:95,mathemat:[121,173],matlab:0,matplotlib:345,matric:[82,279],matrix:[82,374],matter:[2,8,13,20,27,30,33,44,45,63,68,74,75,78,82,89,91,98,100,101,106,115,116,120,125,126,128,133,134,148,157,173,207,258,267,280,293,317,360],matur:[9,30,53,68,71,115],maverick:87,max:[18,56,80,121,122,128,151,187,223,241,251,279,287,355,381,388],max_damag:256,max_dbref:361,max_depth:388,max_dist:80,max_heal:256,max_l:80,max_length:[66,80,140,199,241],max_lin:374,max_memory_s:199,max_nest:375,max_nr_charact:122,max_num_lin:432,max_pathfinding_length:279,max_popular:432,max_rmem:379,max_siz:[277,279,381],max_tim:277,max_valu:[225,427],max_w:80,max_width:80,maxconn:150,maxdelai:[309,323,324,343],maxdepth:299,maxdiff:[191,209,411,422],maximum:[56,59,66,81,95,106,121,122,151,166,199,223,225,251,254,255,256,257,258,279,294,299,357,365,372,374,375,388],maxiumum:277,maxlengthvalid:166,maxnum:388,maxrotatedfil:381,maxsplit:365,maxthread:357,maxval:[375,388],maxvalu:375,maxwidth:374,may_use_red_door:40,mayb:[13,14,15,19,20,22,40,66,73,75,76,78,80,82,84,90,91,96,101,104,105,110,112,113,114,117,120,122,123,126,128,147,148,154,174,201,208,233,240,330],mccp:[31,146,163,164,308,317,320],mccp_compress:325,md5:145,meadow:[46,73,76,121,375],mean:[3,4,5,6,8,9,11,13,14,15,16,18,19,20,22,27,31,32,33,34,35,38,41,43,44,46,48,52,54,55,59,61,64,66,67,69,72,74,76,78,79,80,81,82,83,86,87,92,98,99,100,103,105,108,110,111,112,113,114,115,116,119,120,123,125,126,128,129,133,134,137,138,141,142,145,154,156,157,161,166,167,174,180,187,211,216,230,240,251,268,270,279,282,289,294,298,299,303,307,312,336,352,360,362,365,372,374,375,379,381,384,385],meaning:[175,191],meaningless:129,meant:[20,30,34,41,48,49,51,52,56,64,73,76,77,96,100,108,112,114,121,138,147,173,202,216,224,241,249,251,254,255,256,257,258,269,271,284,294,317,366],meanwhil:30,measaur:5,measur:[5,129,154,172,189,279,343,344,388],meat:[118,124,127,130,132,140],mech:[102,440],mechan:[4,18,19,22,26,27,40,41,48,92,95,99,101,106,119,120,126,128,129,138,166,167,171,217,222,241,257,288,299,307,312,316,322,330,341,352,362,370,373,377,383,433,438],mechcmdset:90,mechcommand:90,mechcommandset:90,meck:90,med:63,medan:63,media:[56,112,199,340,357,384,395,396,397,399,400,401,402,403,427],median:80,mediat:126,mediev:208,medium:56,mediumbox:321,meet:[2,91,112,119,121,229,271,356],mele:[121,258],melt:[207,208],mem:190,member:[13,18,50,66,75,122,185,186,188,294,388],membership:[75,89,110],memori:[5,20,22,30,48,53,55,66,69,72,92,97,113,115,145,153,154,166,190,194,294,306,307,345,355,360,364,373,379,383,388],memoryerror:148,memoryusag:345,memplot:[163,164,308,342],meni:202,mental:138,mention:[8,13,14,15,16,22,30,31,38,47,54,61,68,69,75,80,90,93,97,98,108,110,115,120,138,148,154,174,212],menu:[0,7,9,13,20,40,44,53,79,85,91,101,111,120,121,122,127,129,147,148,149,161,163,164,180,197,202,213,214,217,223,249,252,266,295,299,310,312,364,382,440],menu_cmdset:372,menu_data:27,menu_edit:202,menu_login:[163,164,197],menu_modul:372,menu_module_path:372,menu_quit:202,menu_setattr:202,menu_start_nod:249,menu_templ:372,menuchoic:[27,372],menudata:[215,223,266,296,372],menudebug:[27,372],menufil:372,menunode_fieldfil:223,menunode_inspect_and_bui:105,menunode_shopfront:105,menunode_treeselect:252,menunodename1:27,menunodename2:27,menunodename3:27,menuopt:252,menutest:107,menutre:372,merchandis:122,merchant:79,mercuri:68,mere:[134,225],merg:[6,11,22,27,29,76,83,87,96,98,100,110,113,114,125,131,171,172,173,174,263,269,271,299,302,336,372],merge_prior:372,merger:[20,81,83,173,174],mergetyp:[20,27,128,173,263,269,370,372],merit:125,mess:[5,11,13,18,19,57,84,122,154,252],messag:[5,8,9,11,14,16,18,19,22,23,24,26,27,28,29,31,32,34,36,39,41,43,44,51,54,61,63,69,70,73,76,78,79,81,84,85,87,88,90,92,93,96,99,100,103,104,105,106,107,108,115,117,120,121,122,125,126,128,129,135,139,144,148,149,151,154,157,159,161,166,167,171,174,175,178,180,185,186,187,191,193,194,195,196,201,202,204,207,209,216,217,219,223,224,228,230,234,238,239,241,245,251,254,255,256,257,258,260,262,263,264,266,267,268,269,270,273,280,294,312,314,321,323,324,330,331,332,335,336,338,340,349,351,353,355,357,368,370,372,373,381,385,388],message_rout:51,message_search:195,message_transform:194,messagepath:440,messagewindow:51,messeng:262,messsag:219,meta:[34,43,48,112,362,379,395,396,397,399,400,403,407,410,413,427],metaclass:[48,66,175,362],metadata:[34,245,314],metavar:270,meteor:104,meter:[77,225,251],method:[3,8,11,12,13,18,19,20,27,29,30,32,36,40,43,44,45,46,47,48,51,53,54,61,64,66,67,75,76,78,79,80,81,82,84,86,87,91,92,93,94,95,99,100,101,106,107,109,110,111,114,116,117,125,126,128,129,134,135,136,137,139,140,141,159,166,169,171,173,174,175,177,180,181,185,187,188,190,191,194,195,196,199,200,201,202,207,209,210,214,216,219,220,221,222,227,230,237,238,239,240,241,244,245,247,250,251,254,255,256,257,258,263,264,266,267,268,269,270,271,273,277,280,282,284,285,286,289,290,294,306,307,309,314,317,318,319,321,322,323,324,325,330,332,335,338,340,341,343,344,348,350,351,352,353,355,360,362,365,366,368,370,372,373,374,375,376,379,380,381,382,383,385,386,387,388,397,403,407,408,410,411,413,433,436,438],methodnam:[191,200,209,220,231,246,250,264,277,307,338,348,380,386,392,411,422,428],metric:[104,240],microsecond:13,microsoft:[81,148],mid:[68,93,137],middl:[22,80,93,154,255,277,365],middleman:150,middlewar:[163,164,393,417],midnight:[91,100],midst:119,midwai:59,mighht:106,might:[0,3,6,8,11,13,15,16,17,19,20,22,27,28,30,32,36,38,41,43,44,47,54,55,59,61,63,74,76,79,81,86,88,89,91,92,93,94,95,99,100,101,103,104,105,106,107,108,118,120,122,126,128,129,133,136,138,139,140,144,145,148,153,154,155,156,157,161,174,178,180,201,239,245,248,254,255,256,257,270,294,341,362,365,370,381,382,388,410,427],mighti:[18,81,93,113],migrat:[2,5,8,10,11,45,66,75,81,84,112,118,140,145,148,153,160,161,199,299],mike:180,million:[140,145],mime:368,mimic:[5,26,41,86,122,126,145,196,284,351,370],mimick:[26,87,126,343,370,373],mimim:363,min:[41,80,100,121,210,223,251,375,376],min_damag:256,min_dbref:361,min_heal:256,min_height:374,min_shortcut:[76,202],min_valu:427,min_width:374,mind:[14,15,27,54,55,83,86,97,98,102,115,116,119,120,121,123,125,138,141,145,147,201,225,230,239,314,388],mindex:172,mine:[79,122,157],mini:[81,86,112,113,114],miniatur:119,minim:[5,44,53,82,120,123,128,157,199,240,299],minimalist:[22,68,99],minimum:[44,76,78,87,99,122,126,223,251,254,255,256,257,258,317,357,362,374,375,383,388],minimum_create_permiss:408,minimum_list_permiss:408,mininum:374,minlengthvalid:166,minor:174,mint:[11,148,150],minthread:357,minu:[66,110,294,376],minut:[19,41,92,100,106,123,128,143,156,185,190,201,210,355,376,388],minval:[375,388],mirc:324,mirror:[44,82,115,143,152,163,164,197,259],mis:98,misanthrop:110,misc:24,miscelan:364,miscellan:[111,112],misconfigur:145,mismatch:[31,388],miss:[6,18,53,63,80,88,98,107,122,148,154,207,209,254,255,256,257,258,298,317,439],missil:[90,257],mission:101,mistak:[50,84],misus:154,mit:[143,365],mitig:[98,157,437],mix:[13,22,27,59,63,82,85,94,110,125,138,140,166,187,201,208,216,241,279,294,298,299,356,363,366,374,375],mixabl:216,mixer:216,mixer_flag:216,mixin:[163,164,298,346,393,410,413,426,430,431,432,433,435,438],mixtur:[103,216,375],mkdir:[2,75,148],mktime:100,mmorpg:123,mob0:97,mob:[15,32,44,86,97,119,120,163,164,174,180,197,265,269,299,366],mob_data:97,mob_db:97,mob_vnum_1:97,mobcmdset:267,mobdb:97,mobil:[15,40,102,119,122,151,159,267,289],moboff:267,mobon:267,mock:[8,191,208,306,386],mock_delai:191,mock_get_vers:422,mock_random:264,mock_repeat:191,mock_set:422,mock_tim:[250,348],mockdeferlat:386,mockdelai:386,mocked_idmapp:348,mocked_o:348,mocked_open:348,mockrandom:209,mockval:386,mod:[144,157,250,251,298],mod_import:388,mod_import_from_path:388,mod_or_prototyp:298,mod_prototype_list:298,mod_proxy_http:144,mod_proxy_wstunnel:144,mod_sslj:144,mode:[3,5,7,12,20,26,27,31,53,60,72,77,82,101,108,113,115,116,122,128,129,134,140,143,144,150,156,157,163,179,187,190,199,200,203,234,263,267,277,279,282,294,312,317,322,329,340,341,350,366,370,372,375,381,388,440],mode_clos:341,mode_init:341,mode_input:341,mode_keepal:341,mode_rec:341,model:[13,30,32,34,35,41,43,46,47,48,49,50,60,72,75,84,87,101,110,122,126,133,139,163,164,165,166,193,194,195,283,291,294,300,303,307,308,318,359,360,361,363,364,369,377,378,380,384,385,388,395,396,397,399,400,401,402,403,407,410,427,431,432,433,437,438,440],model_inst:384,modeladmin:[397,399,400,401,402,403],modelattributebackend:360,modelbackend:419,modelbas:379,modelchoicefield:[395,400],modelclass:[13,46],modelform:[395,396,397,399,400,401,403,427],modelmultiplechoicefield:[395,397,399,400],modelnam:[175,194,284,286,362],modelseri:410,modelviewset:413,moder:[89,95,201],modern:[13,16,54,68,81,94,138,143,150,157,325],modif:[11,22,29,53,64,74,79,83,91,106,129,144,156,251,358,427],modifi:[0,9,11,12,13,18,20,22,27,29,30,36,40,41,43,44,48,49,51,52,59,61,72,73,74,76,77,78,79,81,82,84,85,86,89,91,95,96,97,98,99,105,107,108,112,114,115,116,117,119,121,122,123,125,126,129,132,135,142,145,156,161,166,174,187,194,199,202,207,211,216,217,219,222,224,230,238,241,248,250,251,254,255,256,257,258,268,270,286,294,299,307,362,366,372,379,384,387,395,416,427,431,432,433,435,437,438],modified_tim:199,modul:[0,4,5,6,8,13,14,16,19,20,22,25,26,27,29,30,31,32,36,41,43,44,45,48,53,61,64,68,72,78,81,82,83,84,86,90,93,97,98,99,100,103,104,105,107,108,111,112,113,114,116,121,122,125,127,129,131,134,137,149,153,155,157,161,171,172,174,175,180,182,183,184,187,189,191,201,202,203,204,205,207,208,209,210,211,212,214,216,219,221,222,223,225,227,228,229,231,239,240,241,246,247,248,250,251,252,254,255,256,257,258,263,267,268,269,270,273,279,281,284,289,290,293,294,297,298,299,303,305,306,307,309,311,312,316,317,321,329,331,332,335,336,339,341,343,344,345,350,352,353,354,360,362,363,364,365,366,367,368,369,370,371,372,373,375,376,386,388],module_path:281,module_with_cal:375,modulepath:321,moifi:222,mold:116,mollit:28,moment:[20,30,47,63,72,79,90,98,105,106,113,121,166,279,302],mona_lisa_overdr:117,monei:[66,75,120,121,122,123,154],monetari:[83,88,201],monitor:[5,33,67,85,303,317,336,379],monitor_handl:[33,163,303],monitorhandl:[24,31,163,164,300,440],monlit:110,mono:91,monster:[30,36,40,87,93,98,113,116,120,121,122,127,180,299],monster_move_around:116,month:[83,100,150,154,210,376,381,388],monthli:100,montorhandl:33,moo:[68,71,86,98,118,143,287,375],mood:[79,119,122,123,251],moon:[91,100,104,110],moonlight:110,moonlit:110,moor:119,moral:6,more:[2,3,4,5,6,8,11,12,13,14,15,16,17,18,19,20,22,25,26,27,28,29,30,31,34,35,36,38,40,41,43,44,46,47,48,51,53,54,55,57,60,61,62,63,64,66,67,68,69,70,74,75,76,77,79,80,81,82,83,86,87,88,89,90,91,92,95,96,97,99,100,101,102,105,106,107,108,110,111,112,113,115,116,117,118,119,120,121,123,124,125,126,128,129,130,131,133,135,137,138,139,140,141,143,145,148,150,151,152,153,154,156,157,161,163,165,166,169,172,173,174,179,180,185,186,187,190,191,192,194,197,199,201,202,203,204,207,210,212,214,216,222,225,230,233,239,240,241,248,249,251,252,254,255,256,257,258,263,267,268,269,270,271,279,280,281,282,287,294,298,299,322,324,327,343,344,353,358,360,361,365,366,368,369,370,371,372,373,374,375,379,385,388,389,400,409,410,427,436,440],more_command:373,more_funcparser_cal:29,morennanoth:191,morennthird:191,moreov:[41,154],morn:[121,222,223],morph_engli:391,morpholog:391,mortal:[30,119],most:[3,5,6,9,13,14,17,18,19,20,22,25,27,30,31,32,34,36,43,44,45,47,48,49,50,51,53,54,59,61,64,66,67,68,69,71,73,74,75,76,78,79,80,81,82,83,84,87,89,91,94,95,97,98,99,100,101,104,106,107,108,109,110,111,112,115,116,117,118,119,121,122,123,125,126,128,129,134,137,138,140,144,145,148,154,156,157,160,166,169,173,174,177,180,188,191,196,202,207,208,221,225,240,241,248,251,254,255,256,257,258,277,279,280,286,287,290,293,294,298,299,302,306,335,340,350,360,361,362,363,372,373,379,380,388,432],mostli:[27,48,51,53,61,82,98,101,106,126,129,154,173,211,240,256,271,280,332,395],motiv:[14,15,36,83,86,88,120,323,324,330,331,332,335,340,341,352,353],mount:156,mountain:[68,81],mous:[51,58,372],mouth:273,movabl:216,move:[15,16,18,22,26,27,28,36,74,75,76,79,80,81,82,89,90,93,96,99,101,104,105,106,112,113,115,116,119,120,121,122,127,128,134,138,140,141,143,145,147,148,174,180,186,201,202,216,217,219,223,229,248,251,254,255,256,257,258,267,268,269,271,273,280,285,289,294,344,362,366,373],move_around:[113,116],move_callback:190,move_delai:190,move_hook:294,move_obj:271,move_posit:216,move_to:[36,74,105,125,137,248,294],movecommand:96,moved_obj:[217,269,271,294],moved_object:294,movement:[40,82,99,121,137,190,248,254,255,256,257,258,279,280,294],mover:258,mptt:89,mratio:[172,189],msdp:[64,317,336],msdp_list:317,msdp_report:317,msdp_send:317,msdp_unreport:317,msdp_var:336,msg:[3,8,12,13,14,18,19,22,23,26,27,28,29,32,33,36,38,44,51,54,61,66,67,71,74,76,78,79,81,84,85,91,92,93,94,96,97,99,100,104,105,106,107,113,114,115,116,125,126,128,129,135,137,151,163,166,167,175,177,181,185,191,194,195,196,207,216,219,224,234,245,251,262,263,270,279,280,281,282,290,294,323,324,351,366,368,370,372,373,381,388,396,397,403,440],msg_all:128,msg_all_sess:[22,175],msg_already_sit:125,msg_arriv:74,msg_channel:185,msg_char:216,msg_cinemat:221,msg_content:[19,22,36,41,74,79,90,100,129,135,137,139,294],msg_db_tag:397,msg_help:187,msg_leav:74,msg_locat:294,msg_other:201,msg_other_sit:125,msg_receiv:294,msg_room:216,msg_self:294,msg_set:363,msg_sitting_down:125,msg_standing_fail:125,msg_standing_up:125,msg_system:216,msgadmin:397,msgform:397,msglauncher2port:[312,321],msgmanag:[195,196],msgobj:194,msgportal2serv:321,msgserver2port:321,msgstatu:[312,321],msgtaginlin:397,mssp:[43,112,163,164,308,320],mtt:339,much:[0,1,3,5,8,13,14,15,16,27,30,32,36,40,41,47,48,53,54,63,69,74,76,78,80,81,82,83,84,87,89,91,93,95,97,100,101,104,106,107,108,110,113,114,115,116,118,119,122,123,125,126,127,128,136,137,139,140,141,143,145,148,154,169,174,179,188,202,210,211,240,241,251,252,258,263,268,279,352,360,365,366,367,374,388,405,416],muck:[98,118],mud:[6,9,16,31,32,35,39,43,44,47,51,59,61,67,68,72,73,76,77,80,81,86,87,90,94,97,106,108,112,115,119,120,123,126,128,134,138,139,144,145,146,148,152,154,155,156,159,160,161,169,174,177,258,266,309,325,326,327,332,335,336,339,366,376],mudbyt:143,mudconnector:143,mudderi:143,muddev:148,mudform:371,mudinfo:107,mudlab:143,mudlet:[146,317,327],mudmast:146,mudramm:146,muhammad:387,mukluk:146,mult:[29,40,375],multi:[20,27,43,44,54,76,77,84,86,113,117,118,119,120,125,129,156,172,190,208,216,241,252,277,279,280,287,294,353,372,388,435],multiaccount_mod:6,multidesc:[163,164,197],multilin:387,multilink:[82,280],multimatch:[20,117,172,241,294,375,388],multimatch_str:[166,241,294,388],multimedia:[51,199],multipart:199,multipl:[11,15,18,19,20,22,29,30,33,36,40,43,44,45,47,48,50,55,59,61,67,68,76,77,78,82,87,94,99,100,110,112,113,115,119,120,126,129,143,145,154,166,171,173,178,179,180,185,187,189,190,191,205,207,211,212,222,224,225,231,237,241,250,252,254,255,256,257,262,269,279,280,290,294,298,299,307,310,314,317,321,336,344,360,361,366,372,374,385,388,396,403],multiplay:[18,77,86,98,118,122,123,124,143],multipleobjectsreturn:[166,167,169,194,196,201,204,210,216,217,222,224,230,238,239,240,241,247,248,249,254,255,256,257,258,260,262,263,267,268,269,271,281,282,286,293,294,298,302,305,319,345,360,363,376,380],multipli:[29,115],multisess:[12,60,101,372,440],multisession_mod:[22,44,50,87,121,122,129,140,146,166,177,181,203,224,294,353],multisession_modd:27,multitud:[59,81,98],multumatch:294,mundan:90,murri:388,muscular:121,muse:143,mush:[2,68,75,77,86,102,118,126,128,143,205,237,440],mushclient:[31,146,317,327],musher:143,mushman:68,music:52,musoapbox:[98,143],must:[0,5,6,8,9,11,12,13,16,20,22,26,27,29,30,31,32,33,34,35,36,40,41,43,46,47,48,49,50,51,52,53,54,58,61,63,64,69,72,73,74,80,82,83,84,87,89,91,93,97,99,100,103,105,107,109,112,113,114,115,116,117,120,121,123,125,128,129,133,134,140,144,146,148,149,150,151,152,154,156,157,161,167,172,173,175,180,185,191,194,195,199,201,204,205,207,210,212,216,219,238,240,241,245,251,252,254,255,256,257,258,263,266,268,269,279,280,282,284,286,287,289,294,297,298,303,307,312,317,330,332,335,352,354,355,360,361,362,365,366,367,368,369,370,371,372,373,375,376,382,383,384,385,387,388,389,391,396,403,410,418,435,436],must_be_default:174,mustn:82,mutabl:369,mute:[17,18,166,185,194],mute_channel:185,mutelist:[18,194],mutltidesc:237,mutual:[263,361],mux2:71,mux:[22,60,68,86,90,99,108,118,157,170,188,205,440],mux_color_ansi_extra_map:205,mux_color_xterm256_extra_bg:205,mux_color_xterm256_extra_fg:205,mux_color_xterm256_extra_gbg:205,mux_color_xterm256_extra_gfg:205,muxaccountcommand:[188,234],muxaccountlookcommand:177,muxcommand:[22,85,91,92,93,94,96,99,104,107,129,163,164,170,176,177,178,179,180,185,186,187,189,190,192,204,211,212,214,222,228,234,237,238,247,249,256,257,269,273,294,370],mvattr:[107,180],mxp:[31,58,146,163,164,187,308,317,320,332,335,365,372,387,388],mxp_pars:327,mxp_re:365,mxp_sub:365,mxp_url_r:365,mxp_url_sub:365,my_callback:354,my_datastor:66,my_func:116,my_funct:93,my_github_password:11,my_github_usernam:11,my_identsystem:35,my_object:93,my_port:61,my_portal_plugin:61,my_script:41,my_server_plugin:61,my_servic:61,my_word_fil:240,myaccount:46,myaccountnam:117,myapp:66,myarx:75,myattr:[13,166],mybot:185,mycar2:35,mychair:46,mychan:18,mychannel1:185,mychannel2:185,mychannel:[18,55,185],mycharact:103,mychargen:27,mycmd:[22,30,312],mycmdget:114,mycmdset:[20,22,107,114],mycommand1:20,mycommand2:20,mycommand3:20,mycommand:[20,22,30,64,94,107,114,117,191],mycommandtest:191,mycompon:51,myconf:2,mycontrib:8,mycss:51,mycssdiv:51,mycustom_protocol:61,mycustomchannelcmd:18,mycustomcli:61,mycustomview:72,mydatastor:66,mydefault:29,mydhaccount:156,mydhaccountt:156,mydhacct:156,myevennia:152,myevilcmdset:[20,173],myevmenu:27,myfix:11,myformclass:53,myfunc:[8,47,54,388],myfuncparser_cal:29,mygam:[0,3,5,7,8,9,11,12,14,15,18,19,20,25,27,31,32,36,40,41,43,48,49,50,51,53,61,63,66,72,75,78,80,81,82,85,90,91,94,96,97,98,99,100,101,103,104,105,107,111,112,113,114,115,116,118,125,126,128,129,131,133,135,136,137,140,141,145,147,148,149,150,151,153,154,156,160,161,202,203,205,222,234,237,247,248,251,274,276,337,386,388],mygamedir:84,mygamegam:103,mygrapevin:185,mygreatgam:53,mygreatpwd:148,myhandl:45,myhousetypeclass:180,myinstanc:66,myircchan:185,mykwarg:27,mylayout:51,mylink:84,mylist2:13,mylist:[6,13,362],mylog:19,mymap:82,mymenu:27,mymethod:97,mymodul:47,mymud:[7,144],mymudgam:154,mynam:[122,156],mynestedlist:369,mynod:27,mynoinputcommand:22,mynpc:129,myobj1:46,myobj2:46,myobj:[13,19,32,41,307],myobject:13,myobjectcommand:91,myothercmdset:20,myownfactori:61,myownprototyp:40,mypassw:212,mypassword:49,mypath:8,myplugin:51,myproc:61,myproc_en:61,myprotfunc:40,myrecip:78,myreserv:29,myroom:[41,46,97,110,180],myros:36,myscript:[41,46,48],myself:123,myserv:212,myservic:61,mysess:44,mysql:[2,9,87,388],mysqlclient:145,mysteri:[30,35,77,153],myston:117,mytag:51,mytestview:53,mythic:119,mytick:307,mytickerhandl:307,mytickerpool:307,mytrait:251,mytup1:13,mytup:13,myusernam:49,myvar:22,myview:72,myxyzroom:82,naccount:353,nail:207,naiv:[175,194,199,271,284,286,362],nake:22,name1:180,name2:180,name:[2,3,4,5,7,8,9,10,11,12,13,14,15,16,18,20,22,27,28,29,30,31,32,33,35,36,38,40,41,43,44,45,46,48,49,50,51,53,54,57,61,62,64,66,69,72,73,74,75,76,77,78,79,80,81,82,84,87,89,91,93,96,97,98,99,100,101,103,104,105,106,107,108,109,110,111,112,114,115,116,117,118,119,120,121,125,128,129,131,133,134,137,138,139,140,141,143,145,146,147,149,150,151,152,153,154,156,157,160,161,163,166,167,169,171,172,173,174,175,177,178,180,185,186,187,188,189,190,191,192,194,195,196,199,202,203,204,207,208,210,212,214,216,217,219,221,223,227,229,230,233,238,239,240,241,247,251,252,256,257,267,269,270,271,273,279,280,281,282,284,285,286,287,293,294,298,299,302,303,305,307,312,315,317,318,319,321,322,324,329,332,335,336,339,340,341,344,353,355,357,360,361,362,363,365,366,367,368,370,371,372,373,375,379,380,381,382,384,385,387,388,389,391,396,403,407,411,412,413,418,419,427,432,433,438],namecolor:252,namedtupl:227,nameerror:[3,115],namelist:234,namesak:6,namespac:[48,51,101,230,270,299,355,366,404],namn:63,napoleon:84,narg:270,narr:258,narrow:[49,82,106,114,122,125],nativ:[3,41,49,67,84,110,122,244,355,357,438],nattempt:27,nattribut:[13,27,48,128,180,299,351,360,362,368,372],nattributehandl:360,natur:[13,16,18,19,46,67,86,143,167,374],natural_height:374,natural_kei:360,natural_width:374,navbar:53,navig:[7,9,27,75,80,81,82,84,140,141,258,435],naw:[28,146,163,164,308,320],nbsp:387,nchar:136,nclient:343,ncolumn:374,ncurs:163,ndb:[14,22,27,41,44,48,76,91,93,128,166,169,190,293,302,351,362,372],ndb_:[40,180,299],ndb_del:351,ndb_get:351,ndb_set:351,ndk:153,nearbi:[82,173,174,175,258],nearli:[112,125,365],neat:[74,131,427],neatli:[68,388],necess:61,necessari:[2,11,48,59,61,68,74,76,82,89,95,98,99,106,111,112,120,135,137,145,161,174,175,196,203,216,230,245,269,270,280,298,299,341,366,372,374,375,382,384,388,396,403],necessarili:[40,67,84,98,119,154,388],necessit:354,neck:[40,204],necklac:[121,204],need:[0,2,3,5,6,7,8,9,10,11,12,13,14,15,16,18,19,20,22,25,26,27,29,30,31,32,33,35,36,40,41,43,44,46,47,48,50,51,52,53,54,57,59,61,62,63,64,66,67,69,72,73,75,76,77,78,79,80,81,82,83,84,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,103,104,105,106,107,108,110,111,112,113,115,116,117,119,120,121,123,125,126,128,129,130,131,133,134,135,137,138,140,141,143,144,145,147,148,149,150,151,152,153,154,155,156,157,160,161,166,167,169,173,175,177,180,185,186,188,190,191,194,199,201,202,207,208,212,216,217,219,221,222,224,228,229,230,231,238,239,240,241,251,252,254,255,256,257,258,263,267,268,269,270,271,273,279,280,281,284,290,293,294,298,299,312,314,317,321,329,336,341,343,351,352,353,357,360,362,365,366,368,372,373,374,375,376,382,383,385,388,391,396,398,403,405,432,436],need_gamedir:312,needl:238,needless:113,neg:[100,138,173,370,388],negat:[59,110,290,391],negoti:[201,326,328,330,339,353],negotiate_s:328,neighbor:[95,122,280],neither:[6,13,126,147,161,187,211,298,336,360,363,372,389],nenter:27,neophyt:251,nerror:63,nest:[4,13,15,22,27,29,30,166,180,241,252,289,294,299,336,369,375],nested_mut:13,nested_r:180,nestl:81,neswmaplink:[82,280],net:[75,98,122,143,148,152,154,167,185,325,326,336,339,353],netrc:11,network:[61,69,85,86,87,88,123,143,145,149,151,152,154,157,159,167,185,323,324,329,350,353],neu:202,neural:122,neutral:[29,224],never:[0,1,8,11,15,19,20,22,27,29,34,38,43,47,48,55,59,66,67,82,87,97,100,106,112,113,115,116,117,120,121,122,125,135,137,140,147,150,166,190,229,240,241,257,258,267,274,290,294,351,360,369,388],nevertheless:[0,27,66,138,177,202],new_alias:175,new_arriv:269,new_attrobj:360,new_channel:[99,185],new_charact:267,new_coordin:271,new_create_dict:216,new_datastor:66,new_goto:372,new_kei:[45,175,294],new_loc:180,new_menu:202,new_nam:[45,180],new_name2:180,new_obj:[32,219,221,294,299],new_obj_lockstr:180,new_object:[40,299],new_po:216,new_posit:216,new_progress:217,new_raw_str:172,new_room_lockstr:180,new_ros:36,new_scor:217,new_script:41,new_typeclass:[166,362],new_typeclass_path:48,new_valu:[33,360],newbi:[86,91],newcom:[122,134],newer:75,newindex:252,newli:[11,49,62,79,99,110,115,140,180,194,202,207,219,221,234,239,270,279,282,294,299,305,368],newlin:[22,51,187,366,374],newnam:[22,180,362],newpassword:178,newstr:51,nexist:76,nexit:[8,136],next:[0,2,3,7,11,13,14,15,20,22,26,27,28,29,30,32,36,38,41,49,50,51,52,53,54,55,59,63,64,66,74,75,76,78,79,80,81,82,84,87,89,90,91,92,93,94,95,97,99,100,102,103,105,107,108,110,112,113,115,116,117,118,119,120,121,122,123,125,126,128,129,137,140,141,143,145,149,150,152,153,154,155,156,157,161,202,210,216,219,237,252,254,255,256,257,258,268,280,290,312,366,372,373,376,388,435],next_nod:27,next_stat:[216,219],next_turn:[254,255,256,257,258],nextnod:372,nextnodenam:372,nextrpi:143,nfkc:166,ng2:374,nginx:144,nice:[8,19,30,53,55,73,74,76,80,81,82,99,100,103,113,114,120,121,147,154,156,180,201,204,241,298,440],nicer:[108,115],niceti:180,nick:[12,13,18,24,31,36,71,98,107,143,166,167,180,185,186,194,241,293,294,324,360,361,410,440],nick_typ:35,nickhandl:[13,35,360],nicklist:[167,185,324],nicknam:[11,35,36,71,186,241,293,294,324,360,361],nickreplac:360,nickshandl:410,nicktemplateinvalid:360,nicktyp:[241,294],nifti:[114,144],night:[29,99,120,121,139,150,222],nine:62,nineti:389,nit:100,nline:381,nmisslyckad:63,nnode:280,no_act:372,no_channel:[20,22,173,372],no_default:[48,166,362],no_exit:[20,22,128,173,263,266,372],no_gmcp:336,no_log:174,no_match:202,no_mccp:325,no_more_weapons_msg:268,no_msdp:336,no_mssp:326,no_mxp:327,no_naw:328,no_obj:[20,173,263,266,372],no_of_subscrib:397,no_prefix:[166,194],no_superuser_bypass:[166,194,290,294,362],no_tel:32,noansi:191,nobj:136,nocaptcha:140,nocaptcha_recaptcha:140,nocolor:[103,317,332,335,340,341],nod:121,nodaemon:7,node1:[27,372],node2:[27,372],node3:[27,372],node:[14,40,105,215,223,252,266,274,277,279,280,281,282,296,310,372],node_abort:27,node_apply_diff:296,node_attack:27,node_background:27,node_betrayal_background:27,node_border_char:[215,372],node_create_room:215,node_destin:296,node_examine_ent:296,node_exit:27,node_formatt:[27,215,223,372],node_four:27,node_game_index_field:310,node_game_index_start:310,node_hom:296,node_index:[274,277,280,296,372],node_join_room:215,node_kei:296,node_loc:296,node_login:27,node_mssp_start:310,node_mylist:27,node_on:27,node_opt:215,node_or_link:[278,280],node_parse_input:27,node_password:27,node_prototype_desc:296,node_prototype_kei:296,node_prototype_sav:296,node_prototype_spawn:296,node_quit:215,node_readus:27,node_select:27,node_set_desc:215,node_set_nam:27,node_start:310,node_test:27,node_usernam:27,node_validate_prototyp:296,node_view_and_apply_set:310,node_view_sheet:27,node_violent_background:27,node_with_other_nam:372,nodebox:391,nodefunc:372,nodekei:372,nodenam:[27,372],nodetext:[27,215,223,296,372],nodetext_formatt:[27,215,223,296,372],noecho:[115,190],noerror:294,nofound_str:[166,241,294,388],nogoahead:334,nohom:368,nois:[90,125],noisi:[154,309,314,322,332,335,343,357],noloc:180,nomarkup:[31,103],nomatch:[76,189,202,370,388],nomatch_exit:76,nomatch_single_exit:76,nomigr:8,nomin:433,non:[11,15,16,18,19,20,22,26,28,29,30,31,40,41,44,48,51,53,59,66,67,73,76,80,82,84,86,87,88,89,93,96,99,100,104,108,110,113,114,117,120,122,125,138,149,161,166,167,169,171,173,180,185,190,194,196,208,211,219,230,239,247,249,251,252,268,273,282,284,285,293,294,297,298,299,302,303,305,307,312,321,335,336,350,351,353,360,362,365,368,369,370,372,374,385,388,410,413],nonc:340,nondatabas:[13,351,362],none:[3,5,12,13,14,15,16,18,20,22,26,27,29,31,32,33,35,41,44,46,49,54,59,61,64,66,67,74,76,80,81,82,87,91,94,95,96,97,99,100,101,103,105,106,107,109,110,113,114,117,125,128,129,135,137,166,167,171,172,173,174,175,177,180,181,182,183,184,185,187,188,191,194,195,196,199,200,201,202,203,204,207,209,211,214,215,216,217,219,221,222,223,224,227,229,230,233,238,239,240,241,247,249,251,252,254,255,256,257,258,262,263,266,267,268,269,270,271,273,274,277,278,279,280,281,282,284,285,287,289,290,293,294,296,298,299,303,304,306,307,309,310,312,314,316,318,321,322,323,324,331,332,340,341,343,351,352,353,355,356,357,360,361,362,363,365,366,367,368,369,370,371,372,373,374,375,376,379,381,383,384,385,388,389,392,395,396,397,399,400,401,403,405,407,411,413,419,422,427,432,435,438],nonpc:129,nonsens:240,noon:[32,63,108,126],nop:335,nopkeepal:[146,335],nor:[3,7,13,14,20,63,68,82,93,113,122,128,138,147,211,212,270,294,298,336,360,363],norecapcha:140,norecaptcha_secret_kei:140,norecaptcha_site_kei:140,norecaptchafield:140,normal:[4,5,6,8,9,12,13,14,15,16,18,19,20,22,27,29,30,31,32,34,35,38,40,43,44,46,48,50,51,53,54,57,59,62,63,64,66,67,69,72,73,75,77,79,80,81,82,84,86,87,90,91,93,94,96,97,98,99,100,101,103,104,105,107,108,110,113,114,115,116,119,121,128,129,131,137,138,141,145,152,153,154,156,161,166,167,169,171,172,173,174,175,177,180,187,190,191,194,199,200,201,207,210,211,216,254,255,256,257,258,263,267,270,271,279,280,282,284,293,294,296,299,307,312,321,324,325,326,328,330,344,351,353,359,360,361,362,365,366,369,372,373,379,385,387,388,393,410],normal_turn_end:128,normalize_nam:294,normalize_usernam:166,north:[36,58,74,76,79,80,81,82,96,108,125,137,180,202,248,273,279,280,281,344],north_south:81,northeast:[82,108,180,271,280],northern:[76,81],northwest:[82,180,279,280,281],nose:360,not_don:357,not_error:312,not_found:180,notabl:[5,6,11,18,54,61,75,148,175,180,191,201,316,362,369,388],notat:[4,53,180,365,388],notdatabas:48,note:[0,3,5,7,9,10,11,12,13,14,18,19,29,31,32,36,38,40,41,44,45,47,48,51,53,55,57,58,59,63,64,66,67,69,72,74,75,78,80,82,87,89,90,91,93,98,99,100,101,105,107,108,110,113,114,115,116,117,118,119,120,122,125,126,128,129,133,134,137,138,140,141,145,146,148,153,154,156,157,159,161,163,166,167,172,173,174,175,177,180,181,182,185,186,187,188,190,191,192,194,195,199,201,203,204,205,207,208,210,211,212,216,221,222,224,229,230,233,237,238,239,240,241,247,248,251,252,254,255,256,257,258,263,269,270,271,273,279,280,281,282,284,289,290,293,294,298,299,307,309,312,317,321,322,324,325,329,330,331,332,335,336,337,339,340,343,345,346,351,353,357,358,360,361,362,363,365,366,367,368,369,370,371,372,373,374,375,376,379,381,383,384,385,388,395,396,408,410,413,416,420,435,440],notepad:[118,148],notfound:388,notgm:99,noth:[3,8,13,15,19,22,29,36,47,54,64,68,74,76,81,82,93,97,98,100,105,107,108,113,115,117,122,125,128,166,180,189,252,254,257,258,267,271,280,294,305,324,360,362,372],nother:136,notic:[2,3,11,14,22,54,55,74,76,79,82,83,88,93,95,100,101,106,108,112,113,122,125,134,137,138,145,202,260,325,434],notif:[11,51,89,153,234],notifi:[117,155,159,185,207,254,255,256,257,258,269,298],notificationsconfig:89,notimplementederror:335,notion:[47,78,100,127,128,251],noun:[240,241],noun_postfix:240,noun_prefix:240,noun_transl:240,nov:63,now:[0,2,6,7,8,9,11,12,13,15,18,19,20,22,27,29,32,34,36,37,40,41,44,47,48,49,51,52,53,54,55,59,66,68,72,73,74,75,76,78,79,80,81,82,86,87,90,91,92,93,95,97,98,99,100,101,103,104,105,106,107,108,110,111,112,113,114,115,116,117,118,119,120,121,122,123,125,126,129,130,131,133,134,135,137,138,140,141,143,145,148,149,150,151,152,153,154,155,156,157,160,161,174,185,187,201,209,210,223,230,251,252,263,271,275,290,294,324,332,353,384,386,388,439],nowher:[81,115,122,280],noxterm256:335,npc:[22,27,75,79,81,87,120,126,201,249,289,440],npcname:135,npcshop:105,nprot:136,nr_start:304,nroom:[76,136],nroom_desc:8,nrow:374,nsmaplink:[82,279,280],nsonewaymaplink:[82,280],ntf:148,nthe:263,nuanc:59,nudg:[142,263,357],nuisanc:157,nulla:28,num:[29,32,80,241,294],num_lines_to_append:381,num_object:110,num_objects__gt:110,num_tag:110,number:[0,2,5,6,8,11,13,14,19,20,22,26,27,29,34,35,41,43,44,45,46,47,48,49,53,54,55,72,73,74,80,81,82,84,87,90,98,99,100,103,105,107,110,113,114,115,116,117,119,122,125,126,128,129,136,141,145,150,151,154,155,156,163,166,167,172,173,174,178,180,185,186,187,195,196,199,204,207,210,211,216,223,225,227,229,230,233,239,240,241,252,254,255,256,257,258,273,277,279,280,282,294,298,299,304,310,312,317,323,324,326,330,343,344,353,355,357,360,361,363,365,366,368,370,372,373,374,375,376,379,381,385,388,391,397,412,413,427],number_of_dummi:312,number_tweet_output:136,numberfilt:407,numbertweetoutput:136,numer:[6,120,126,225,250,251,279,365],numpi:345,oak:208,oakbarkrecip:208,oakwood:208,obelisk:[119,268],obfusc:[77,240,241],obfuscate_languag:[240,241],obfuscate_whisp:[240,241],obj1:[6,13,29,38,40,117,180,207,214,238,258],obj1_search:214,obj2:[6,8,13,29,38,40,117,180,207,214,238,258,366],obj2_search:214,obj3:[13,117,180,207],obj4:[13,117],obj5:13,obj:[3,8,12,13,19,20,22,29,32,33,35,36,40,41,46,47,48,54,66,76,91,97,99,104,106,107,109,110,114,117,125,134,137,166,173,174,175,178,180,186,188,190,191,195,200,202,204,214,216,219,222,223,224,227,229,230,233,234,238,241,251,252,254,255,256,257,258,262,263,268,269,271,289,290,293,294,299,302,303,304,341,343,344,351,360,361,362,363,366,368,369,373,375,383,384,385,388,395,396,397,400,401,403,408,410],obj_desc:257,obj_detail:269,obj_kei:257,obj_prototyp:299,obj_to_chang:48,obj_typeclass:257,objattr:[268,289],objclass:[379,388],object1:22,object2:[22,201,294],object:[0,2,3,4,5,8,12,14,15,16,18,20,22,23,24,26,27,28,29,30,31,33,34,35,38,40,43,45,47,48,49,51,52,54,55,57,61,64,66,67,68,71,72,73,74,75,76,77,78,79,80,82,84,85,86,90,93,94,95,96,97,98,99,100,101,102,103,105,106,107,111,112,118,119,121,126,128,129,134,135,136,139,140,141,143,145,157,161,163,164,165,166,167,168,169,171,172,173,174,175,177,178,179,180,181,182,185,186,187,188,190,191,192,194,195,196,197,199,201,202,203,204,207,212,213,214,215,217,219,221,222,223,224,227,228,229,230,231,233,234,238,239,241,244,245,246,247,248,249,250,251,252,254,255,256,257,258,260,262,263,265,266,267,269,270,271,273,277,279,280,281,282,284,285,286,289,290,296,297,298,299,300,302,303,304,305,306,307,310,312,314,316,317,318,319,321,322,325,326,327,328,329,330,331,332,334,336,339,341,343,344,350,351,352,353,355,356,357,360,361,362,363,365,366,367,368,369,370,371,372,373,374,375,379,380,382,383,384,385,386,387,388,389,393,394,395,396,397,399,401,403,407,408,410,412,413,418,419,421,426,427,428,430,431,432,433,435,436,437,440],object_confirm_delet:438,object_detail:[433,438],object_from_modul:388,object_id:[141,400],object_paramet:199,object_search:141,object_subscription_set:293,object_tot:361,object_typeclass:[386,428],objectadmin:[50,400],objectattributeinlin:400,objectcr:427,objectcreateform:[395,400],objectcreateview:[433,438],objectdb:[13,46,48,50,85,136,140,163,293,294,299,359,360,368,373,385,395,396,400,403,407,412],objectdb_db_attribut:400,objectdb_db_tag:[396,400,403],objectdb_set:[169,360,363],objectdbfilterset:[407,413],objectdbmanag:[292,293],objectdbseri:[410,413],objectdbviewset:[412,413],objectdeleteview:[433,438],objectdetailview:[432,433,438],objectdoesnotexist:[169,196,286,293,302,319,360,363,380],objecteditform:400,objectform:427,objectlistseri:[410,413],objectmanag:[282,292,294,361],objectnam:99,objectpuppetinlin:395,objects_objectdb:66,objectsessionhandl:[12,294],objecttaginlin:400,objectupd:427,objectupdateview:[433,438],objid:32,objlist:[29,40,375],objlocattr:[268,289],objmanip:180,objmanipcommand:180,objnam:[19,48,180],objparam:299,objs2:46,objsparam:299,objtag:289,objtyp:195,obnoxi:314,obs:362,obscur:[104,152,240,241],observ:[14,15,67,103,108,180,186,198,222,241,260,269,336,366,388],obtain:[5,22,74,95,106,148,154,156,202,268],obviou:[9,18,74,82,137,157,225,438],obvious:[15,44,68,74,80,86,89,137,363],occaecat:28,occas:9,occasion:[117,154],occat:115,occation:[122,374],occur:[3,22,41,51,54,75,91,98,189,239,256,270,290,294,306,344,372,381],occurr:[79,106,129,365],ocean:[119,154],oct:[115,116],octet:199,odd:[76,80,120,138,157,279],odor:99,off:[2,13,15,18,20,22,26,27,30,31,32,41,45,47,53,59,61,62,66,67,68,72,74,78,80,82,86,87,93,103,108,109,115,117,118,120,123,125,127,129,138,145,146,154,156,157,161,166,175,185,190,191,194,204,208,223,241,263,267,269,282,290,294,317,325,332,335,351,362,365,366,368,370,372,373,374,381,389,439],off_bal:93,offend:55,offer:[0,7,8,9,11,13,15,20,22,26,27,31,35,36,40,41,47,51,59,61,64,66,68,71,76,77,81,82,83,86,87,89,92,95,96,97,98,100,106,107,111,112,113,115,120,121,126,128,129,139,152,154,166,173,174,179,180,187,190,199,201,202,216,222,240,269,296,303,353,372],offernam:201,offici:[8,11,50,84,152,156,157,381],officia:28,offlin:[16,18,40,75,143,154,179,185,366],offscreen:75,offset:[49,241,370,381],often:[0,3,5,6,9,11,12,13,16,18,20,22,24,27,29,38,43,44,46,47,53,54,59,60,61,63,66,67,76,79,80,82,84,87,92,98,100,102,106,112,113,115,116,117,118,122,125,128,154,157,167,173,178,188,190,194,202,252,254,255,256,257,258,290,293,302,304,312,317,331,351,360,362,366,368,374,375,381,388,410,433],ohloh:83,okai:[3,9,27,80,81,82,99,122,125,129,153,233,280],olc:[111,180,296,299],olcmenu:296,old:[5,7,9,19,20,26,27,30,32,44,48,59,67,74,75,81,84,86,90,91,95,97,99,103,105,119,122,129,138,148,150,154,166,173,174,177,180,201,221,241,290,294,299,321,361,362,365,368],old_default_set:8,old_kei:[45,294],old_nam:45,old_obj:216,old_po:216,older:[12,44,53,75,87,143,146,148,180],oldnam:362,oliv:59,omit:[40,106,156],on_:202,on_bad_request:314,on_ent:[76,202],on_leav:[76,202],on_nomatch:[76,202],onbeforeunload:51,onbuild:156,onc:[3,5,6,9,11,12,14,18,22,27,30,32,34,36,41,44,48,51,53,54,56,59,61,63,64,68,74,75,76,79,80,82,83,84,86,87,90,91,95,98,99,100,105,108,110,111,112,113,114,115,116,120,122,123,125,128,137,138,140,143,145,148,150,152,154,156,160,166,167,172,175,180,185,188,191,194,201,202,214,216,217,223,224,230,234,238,240,247,252,254,255,256,257,258,260,263,267,268,269,270,271,275,280,294,298,302,305,317,322,335,339,350,360,365,372,373,381,386,388],onclos:[61,323,340],onconnectionclos:51,ond:363,one:[0,2,3,4,5,6,7,8,9,11,12,13,14,15,16,18,19,20,22,25,26,27,28,29,30,31,32,34,35,36,38,39,40,41,43,44,46,47,48,50,51,53,54,55,56,57,59,63,64,66,67,68,69,72,73,74,75,76,77,78,79,80,81,82,83,84,86,87,88,89,90,91,92,93,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,125,126,128,129,131,133,135,137,138,139,140,141,143,145,147,148,149,150,152,154,155,156,157,159,165,166,169,172,173,174,175,177,178,180,185,186,189,190,191,194,195,196,199,201,202,204,207,208,209,211,216,217,219,221,222,224,230,233,234,239,240,241,249,251,252,254,255,256,257,258,263,266,268,269,270,271,277,279,280,281,282,284,285,286,289,290,293,294,296,297,298,299,302,307,312,314,316,317,322,323,324,332,335,336,344,351,352,353,357,359,360,361,362,365,366,368,369,371,372,373,374,375,376,379,380,381,383,384,385,386,388,389,400,413,427,428,433],one_consume_onli:216,ones:[8,15,18,19,20,22,29,30,31,32,34,40,59,64,72,75,76,89,98,99,103,107,108,114,123,128,138,149,152,154,156,157,173,174,175,196,202,230,254,255,256,257,258,284,298,299,316,321,353,365,374,382],onewai:180,ongo:[41,92,106,122,128,201,248],ongotopt:51,onkeydown:51,onli:[0,3,5,7,8,11,12,13,14,15,16,18,19,20,22,26,27,28,29,30,31,32,34,35,36,38,40,41,43,44,45,46,48,49,50,51,52,53,54,55,57,58,59,61,64,66,67,72,73,74,75,76,77,78,79,80,81,82,83,85,86,87,89,90,91,92,93,95,96,97,98,99,100,101,103,104,105,106,107,108,109,112,113,114,115,116,117,118,119,120,121,123,125,126,128,129,133,134,135,137,138,139,140,141,143,145,146,147,148,149,150,151,152,154,156,157,163,166,167,171,172,173,174,175,177,178,179,180,185,186,187,188,189,190,191,194,195,196,199,201,202,203,204,207,208,209,211,214,216,217,221,222,223,225,230,234,240,241,249,251,252,254,255,256,257,258,260,268,269,270,271,273,274,279,280,281,286,289,290,294,298,299,302,305,306,307,312,316,317,324,327,329,330,332,335,344,350,351,353,355,356,357,360,361,362,363,365,366,367,368,370,372,373,374,375,379,381,383,384,385,386,388,391,395,396,403,427,432,433,435,436,438,439],onlin:[9,16,18,36,43,53,55,68,71,83,86,87,88,90,98,99,101,102,112,116,118,120,122,123,124,126,127,128,129,130,132,143,145,149,151,155,159,160,163,177,185,194,202,214,223,326,366,440],onloggedin:51,onlook:294,only_nod:279,only_tim:385,only_valid:299,onmessag:[61,323,340],onopen:[61,323,340],onoptionsui:51,onprompt:51,onsend:51,onset:13,ontext:51,onto:[18,20,22,51,82,86,91,96,114,120,137,152,154,174,185,208,269,293,324,369,372],onunknowncmd:51,onward:45,oob:[22,37,43,51,64,94,146,166,167,187,224,262,294,317,335,336,340,341,353,372,440],oobfunc:43,oobhandl:379,oobobject:41,ooc:[12,18,44,77,85,99,107,109,113,129,166,169,177,180,181,188,196,203,234,294],ooccmdsetchargen:203,ooclook:[44,203,373],oop:114,opaqu:[16,157],open:[0,3,7,10,11,20,26,30,32,44,52,53,58,74,75,76,77,79,81,82,83,84,86,87,88,89,98,99,101,107,108,111,113,114,115,116,122,125,126,128,129,131,140,141,143,145,148,149,150,151,152,153,154,157,159,180,187,190,199,200,201,202,214,216,221,223,247,248,258,263,268,273,279,355,360,368,381,388,439],open_chest:38,open_flag:216,open_parent_menu:202,open_submenu:[76,202],open_wal:268,openadventur:122,openhatch:143,opensourc:365,oper:[3,6,11,13,15,18,19,22,27,29,31,36,38,41,46,47,49,51,52,55,63,67,75,76,77,79,82,87,98,104,109,110,113,115,121,138,148,150,152,154,160,161,166,171,173,175,177,180,185,190,191,194,199,202,207,211,214,219,241,250,268,280,290,294,299,307,309,312,321,322,326,328,332,334,335,341,343,344,351,352,360,361,362,365,368,372,373,374,375,379,388,412,413,440],opic:191,opinion:[78,121],opnli:360,oppon:[13,126,255,257,267],opportun:[74,76,89,106,140,258],oppos:[19,36,59,157,161,351,363],opposit:[81,82,99,107,137,180,263,280],opt:[51,99,270],optim:[5,18,19,22,34,41,47,66,87,95,97,125,145,175,194,298,299,347,350,360],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,5,7,8,12,13,17,18,19,20,22,26,29,30,31,32,34,40,41,43,46,51,53,54,59,64,66,67,68,69,71,72,77,78,81,84,86,87,89,91,93,98,100,103,105,107,108,111,112,114,118,121,125,128,129,134,140,141,143,144,145,146,147,148,150,156,160,163,166,167,171,172,173,174,175,177,178,180,185,187,188,191,194,195,196,201,202,203,204,207,210,211,214,215,216,217,219,221,222,223,224,225,227,229,230,234,238,239,240,241,249,251,252,256,258,262,263,266,269,270,271,273,275,277,279,280,281,282,284,285,287,289,290,293,294,296,298,299,302,303,304,305,306,307,309,310,312,314,317,318,321,322,325,326,327,328,329,330,331,332,334,335,336,339,340,341,343,344,351,353,355,360,361,362,363,365,366,367,368,370,371,372,373,374,375,376,379,381,382,383,384,385,387,388,389,391,395,396,397,399,400,401,402,403,405,407,419,420],option_class:[163,367],option_dict:372,option_gener:372,option_kei:389,option_str:270,option_typ:383,option_valu:383,optiona:[166,309,362],optionclass:[163,164,364,367],optioncontain:367,optionhandl:[163,164,364,382],optionlist:[27,215,266,296,372],options2:51,options_dict:383,options_formatt:[27,215,223,266,296,372],optionsl:298,optionslist:266,optionsmenu:215,optionstext:[27,215,223,372],optlist:252,optlist_to_menuopt:252,optuon:240,oracl:[145,388],orang:[59,115,238,270,365],orc:[40,98,134],orc_shaman:40,orchestr:156,order:[0,2,5,8,9,10,11,12,13,14,15,19,20,22,26,27,29,30,32,33,35,36,40,41,43,49,50,51,54,58,63,69,74,75,76,78,80,81,82,83,87,88,95,96,99,100,101,110,112,113,114,115,119,121,122,123,128,129,133,137,138,140,141,145,148,151,160,166,171,174,175,181,186,187,190,191,199,201,202,203,204,205,207,209,211,216,223,238,239,241,251,254,255,256,257,258,267,268,269,270,279,280,282,289,290,294,299,323,335,340,344,351,360,362,365,366,372,373,374,381,385,388,395,397,399,400,401,402,438],order_bi:110,order_clothes_list:204,ordered_clothes_list:204,ordered_permutation_regex:241,ordereddict:[13,388],ordin:365,ore:[122,207,208],org:[63,68,84,87,128,154,239,270,328,334,340,365,388,427],organ:[11,18,30,36,38,41,46,50,68,71,75,76,81,82,84,101,110,116,125,126,139,175,187,191,281,391],organiz:125,orient:[86,87,98,116],origin:[7,11,27,36,44,49,50,53,63,74,75,77,80,86,89,90,91,93,98,103,106,110,113,114,123,133,143,150,153,157,166,167,173,180,202,234,240,241,270,280,294,298,299,321,355,362,365,372,384,387,388,391,439],origo:[82,279],orm:29,ormal:365,orthogon:82,oscar:[175,194,284,286,362],osnam:388,oss:7,ostr:[166,195,285,385],osx:[11,148],other:[2,6,8,9,11,12,13,14,15,16,17,18,19,20,23,26,27,29,30,31,32,34,35,36,40,44,45,46,47,48,49,51,52,54,55,56,57,58,59,61,63,64,66,67,68,69,72,73,74,75,76,77,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,95,96,98,99,100,101,103,104,105,106,107,108,109,110,112,113,114,116,118,120,121,123,125,126,128,129,133,134,135,136,137,138,140,141,144,148,149,150,151,156,157,159,160,161,166,171,172,173,174,175,180,185,186,187,188,191,192,194,195,199,201,204,207,210,212,214,215,216,221,223,229,234,240,241,245,247,252,254,255,256,257,258,263,269,270,271,279,280,282,284,286,290,293,294,298,299,303,305,307,310,312,317,321,323,324,330,332,335,344,351,352,354,360,362,364,365,366,368,370,371,372,373,374,375,382,383,385,388,389,403,432,433,435],other_modul:111,other_obj:216,othercondit:107,othermodul:53,otherroom:247,others_act:216,otherwis:[3,5,6,11,13,16,19,20,22,27,29,36,40,41,44,59,63,64,66,72,74,82,83,89,91,93,95,100,101,106,110,115,117,120,129,137,142,145,154,156,157,163,172,173,177,180,185,194,199,201,205,207,216,219,221,222,223,227,230,241,251,254,255,256,257,258,262,271,273,284,290,294,297,298,299,306,312,323,324,332,351,355,356,365,372,373,375,381,385,386,388,396,431,432,433,435,437],ought:391,our:[0,2,3,8,9,11,12,13,15,20,22,32,38,47,51,56,61,63,64,67,71,72,73,75,78,79,80,81,83,84,86,87,88,89,90,91,94,95,96,98,99,100,102,103,104,105,106,108,110,112,114,116,117,118,121,123,124,125,126,127,128,129,130,131,132,133,134,139,141,142,143,144,145,148,150,152,153,154,155,156,157,160,169,174,188,208,222,252,267,268,271,290,303,357,381,396,403,410],ourself:[114,129],ourselv:[32,35,50,74,99,107,108,110,114,120,122,125,135,139,166,203,325,326,328,339],out:[0,3,5,6,8,11,14,15,16,17,18,22,24,27,29,30,34,36,38,40,41,43,44,49,51,52,53,54,55,56,57,62,66,67,68,71,72,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,90,91,92,93,95,96,97,98,100,101,106,108,109,110,111,112,113,114,115,116,117,118,119,120,121,123,124,125,127,128,129,130,131,132,134,137,138,140,143,144,145,147,148,150,151,154,156,160,165,166,172,173,177,179,180,185,201,203,207,208,210,212,214,216,223,234,240,241,244,245,247,248,251,254,255,256,257,258,266,268,273,279,280,281,282,298,299,305,312,314,336,340,341,343,352,353,360,369,371,372,374,375,387,388,391,395,403,427,439],outcom:[66,84,126,173,207,211,290,294,298],outdat:[144,150],outdata:[61,353],outdoor:[46,82,119,122,139,269],outer:[110,111,374],outermost:[13,29,31,93,111,115,125],outerwear:204,outfunc_nam:61,outgo:[29,44,67,70,82,150,154,167,280,294,324,336,352,388],outgoing_port:154,outlet:154,outlin:[2,81,82,140,323],outlist:279,outmessag:294,output:[0,5,7,9,15,19,27,28,29,30,31,44,49,51,59,61,63,67,68,69,71,72,76,77,81,82,89,99,106,107,108,112,113,115,117,118,122,128,129,136,137,138,143,145,156,161,163,164,175,180,185,187,190,191,197,202,207,208,210,224,242,243,245,254,255,256,257,258,279,280,312,317,332,336,344,351,365,372,373,375,381,384,388],output_nam:207,output_prototyp:[78,207,208],outputcmd:336,outputcommand:[31,64],outputfunc:[24,61,64,294,317,323,440],outputfunc_nam:[61,317],outputfunct:64,outrank:361,outright:[55,154],outro:[119,269],outroroom:269,outsid:[14,16,29,30,40,43,46,49,52,53,63,67,68,74,77,82,84,87,90,95,98,108,112,115,116,117,121,122,126,137,141,150,156,161,187,199,239,257,267,274,279,280,284,289,336,351,352,360,363,374,418],outtempl:360,outtxt:19,outward:[80,154],oven:78,over:[2,4,5,6,8,9,13,14,15,16,17,18,19,20,22,27,41,44,46,47,48,49,51,53,56,59,60,61,64,67,68,69,71,80,81,82,83,84,92,95,98,99,103,105,107,110,113,114,115,116,120,122,125,126,128,133,135,138,140,144,147,154,156,157,166,174,195,208,223,247,252,254,255,256,257,258,269,280,307,316,330,332,335,337,341,343,345,358,362,366,379,384,436],overal:[49,54,66,97,98,151,154,173,188,255],overcom:81,overdo:113,overhead:[19,41,69,139,145,241,271,360],overhear:240,overlap:[20,100,240,365,374],overload:[6,20,22,27,31,36,43,47,61,76,94,96,98,114,129,133,134,166,173,175,189,194,202,203,207,214,222,224,238,241,247,248,254,255,256,257,258,266,267,268,269,270,273,294,299,307,316,335,343,352,370,372,373,374,382],overpow:122,overrid:[2,5,18,20,27,29,30,32,40,41,44,45,49,50,51,53,64,72,75,76,78,82,85,89,90,91,101,106,107,108,112,114,116,131,133,134,135,137,147,166,175,180,185,187,191,194,195,199,202,207,219,222,230,240,256,258,262,269,270,273,280,281,282,284,290,294,298,299,305,335,353,357,360,365,372,373,375,379,381,382,385,395,396,397,401,403,413,432,433,435,438],overridden:[34,53,61,82,89,133,166,180,202,250,270,280,298,373,375,395,438],override_set:45,overriden:[166,187,241],overrod:56,overrul:[12,38,166,174,241,294,374],overseen:126,overshadow:120,overshoot:388,oversight:98,overview:[0,1,5,16,50,56,77,79,98,102,118,121,124,127,129,145,157,440],overwhelm:[79,110,120],overwrit:[63,114,133,180,187,199,330,361,436],overwritten:[22,29,141,199,269,363],owasp:427,owen:207,own:[0,4,5,8,9,11,13,14,17,18,19,20,27,29,30,32,35,40,41,43,44,45,46,48,49,52,53,54,57,64,66,67,68,71,72,75,76,77,78,81,82,83,84,86,87,89,90,91,93,94,98,100,102,103,105,106,108,111,112,113,114,116,118,119,120,121,123,124,127,129,130,131,132,133,137,139,140,141,142,144,148,150,151,152,153,155,157,163,164,169,171,172,173,174,180,185,188,197,204,210,215,216,222,223,234,240,241,245,254,255,256,257,258,268,270,271,279,280,289,290,294,299,317,344,352,362,365,366,367,373,374,379,381,382,386,388,413,433,440],owner:[32,38,57,89,105,122,145,166,290,382],owner_object:32,ownership:[154,156,199],p_id:140,pace:[122,267],pack:[52,64,321],packag:[4,5,6,8,9,30,50,67,68,72,75,82,84,87,111,112,142,144,145,148,152,153,154,156,160,163,165,170,176,193,197,219,265,283,288,291,300,308,312,321,336,340,359,364,393,407],package_nam:87,packagenam:87,packed_data:321,packeddict:[6,362],packedlist:[6,362],packet:[64,332],pad:[17,29,365,374,375,388],pad_bottom:374,pad_char:374,pad_left:374,pad_right:374,pad_top:374,pad_width:374,page1:216,page2:216,page:[0,2,7,8,10,11,14,15,17,20,22,23,27,28,30,34,36,43,48,49,50,51,52,55,56,61,63,67,68,71,75,83,84,86,87,88,90,91,92,98,99,102,103,107,108,111,120,121,123,126,138,140,141,143,144,145,150,152,153,154,156,157,159,161,162,175,185,186,194,216,284,286,298,341,362,372,373,388,393,398,400,401,403,416,425,429,435,436,438,439,440],page_back:373,page_ban:185,page_end:373,page_formatt:[298,373],page_next:373,page_quit:373,page_titl:[432,433,435,437],page_top:373,pageno:[298,373],pager:[28,30,373],pages:[27,372],pagin:[30,49,85,298,373],paginag:373,paginate_bi:[432,433,435],paginated_db_queri:298,paginator_django:373,paginator_index:373,paginator_slic:373,pai:[97,105,122,154,157,268],paid:[123,154],pain:154,painstakingli:14,pair:[20,51,64,82,128,166,173,204,280,289,294,353,427,438],pal:35,palac:82,palett:138,pallet:81,palm:223,pane:[67,192,212,266,282],panel:[7,150],panic:[40,107],pant:120,pantheon:[30,284],paper:[102,128,143],paperback:126,paperwork:82,par:145,paradigm:[75,120,135,255],paragraph:[15,19,30,84,237,366,374,388],parallel:[98,100,101,118,361],paralyz:256,param:[150,180,294,307,314,324,357,387,407,408,410],paramat:[166,175,294,351],paramet:[2,3,7,8,20,49,74,76,79,80,95,100,106,110,117,122,146,156,163,166,167,171,172,173,174,175,180,185,187,191,194,195,196,199,201,202,204,207,210,211,214,215,216,217,219,221,222,223,224,225,227,228,229,230,233,234,239,240,241,244,245,247,251,252,254,255,256,257,258,262,263,266,269,270,271,279,280,281,282,284,285,286,287,290,293,294,296,298,299,303,304,305,306,307,309,310,311,312,314,316,317,318,319,321,322,323,324,325,326,327,328,329,330,331,332,334,335,336,337,339,340,341,343,349,350,351,352,353,355,356,357,360,361,362,363,365,366,367,368,369,370,371,372,373,374,375,376,379,381,382,383,385,386,387,388,389,391,395,397,400,401,405,408,419,435],paramount:8,paramt:389,paremt:299,parent1:40,parent2:40,parent:[12,19,20,22,36,40,41,48,61,73,76,78,82,84,87,91,96,103,107,109,113,114,116,129,135,137,169,177,180,188,190,202,207,209,214,216,241,251,252,270,280,293,294,298,299,302,360,361,362,370,380,381,388,405,407,413,436],parent_categori:252,parent_kei:[76,202],parent_model:[395,396,397,399,400,401,403],parenthes:[50,115],parenthesi:[115,116],paretn:405,pari:[143,154],pariatur:28,paricular:22,park:202,parlanc:[53,131],parri:[128,208,268],parrot:135,pars:[6,16,20,22,26,27,29,40,43,59,61,64,67,68,71,82,84,85,102,103,113,118,125,129,131,141,148,170,171,172,175,180,186,187,188,190,191,201,202,207,211,212,214,216,221,222,234,241,244,245,246,252,263,268,269,270,273,279,280,281,287,290,294,297,298,299,317,324,327,336,340,341,343,353,360,365,366,370,371,372,375,387,388,440],parse_ansi:365,parse_ansi_to_irc:324,parse_entry_for_subcategori:287,parse_fil:366,parse_for_perspect:221,parse_for_th:221,parse_html:387,parse_input:372,parse_irc_to_ansi:324,parse_languag:241,parse_menu_templ:372,parse_nick_templ:360,parse_opt:252,parse_sdescs_and_recog:241,parse_to_ani:[29,375],parseabl:[298,375],parsed_str:[29,324],parsedfunc:375,parseerror:270,parser:[22,30,40,43,68,70,82,111,141,143,171,172,177,180,187,188,190,212,214,216,222,238,240,241,268,269,270,278,279,280,298,331,365,375,387],parsingerror:[29,375,388],part1:[238,440],part2:[238,440],part3:440,part4:440,part5:440,part:[0,2,3,4,7,8,11,13,14,15,16,18,22,27,30,32,38,39,41,44,48,49,51,52,53,56,61,66,67,70,72,73,75,76,77,78,79,80,81,82,83,84,88,89,93,95,96,98,99,101,105,106,108,110,112,113,114,115,116,119,120,121,123,126,128,129,133,134,145,154,172,173,175,185,188,189,191,194,199,201,202,207,208,211,214,238,241,252,257,263,269,277,279,280,285,289,290,297,298,305,312,316,341,343,352,355,357,360,361,365,366,370,372,375,388],part_a:201,part_b:201,parth:337,parti:[3,9,14,19,29,58,75,83,87,115,116,121,123,141,144,145,152,153,154,196,201,211,375],partial:[30,82,91,185,187,240,284,298,314,327,353,383,385,388,389],particip:[157,254,255,256,257,258],participl:[391,392],particular:[5,6,11,14,15,20,30,31,32,36,38,41,43,44,45,46,48,55,59,61,64,67,69,72,76,82,84,87,88,92,96,99,102,105,108,110,111,112,114,115,116,117,120,121,122,125,135,137,139,143,144,150,152,153,166,172,173,180,195,207,217,222,245,256,257,279,280,282,285,289,290,302,353,355,362,375,379,385,434,436,439],particularli:[8,27,55,74,84,89,95,175,188,191,241,251,299,316],partit:365,partli:[13,20,66,71,111,173],party_oth:201,pass:[2,8,10,18,19,22,27,28,29,31,32,34,38,40,41,44,45,47,48,54,61,64,67,77,78,80,81,82,89,90,91,92,93,94,100,101,104,105,106,107,109,113,114,116,117,122,125,134,137,141,145,154,156,161,166,167,173,185,191,192,194,199,204,207,210,211,214,219,221,223,224,229,244,245,247,251,252,254,255,256,257,258,262,263,268,279,280,282,289,290,294,297,298,303,306,307,310,312,322,330,332,335,340,341,351,357,360,362,371,372,373,374,375,381,382,383,384,387,388,407,413,433,436,438],passabl:280,passag:[64,128,204,268,269,376],passant:138,passavataridterminalrealm:332,passiv:[93,128,140],passthrough:[20,279,305],password123:49,password1:[395,427],password2:[395,427],password:[2,5,11,25,27,31,32,53,55,75,77,87,89,107,112,113,118,145,148,150,157,160,166,177,178,192,212,216,239,245,317,332,335,356,368,395,419,427],password_chang:428,passwordresettest:428,past:[0,14,26,43,50,51,68,74,79,81,82,83,99,100,101,108,112,122,128,129,140,150,256,280,358,366,376,391,392,436],pastebin:83,pastpl:391,patch:[48,49,386],patfind:277,path:[4,7,12,15,19,27,29,30,31,32,34,36,40,41,44,48,52,53,61,62,63,66,67,72,74,76,82,84,87,89,90,93,95,105,108,109,110,113,115,116,118,125,129,133,134,135,137,141,144,148,150,154,156,166,167,169,172,173,174,175,179,180,181,182,183,184,185,190,194,196,199,200,201,202,203,204,207,210,211,214,216,217,219,221,222,224,230,233,238,239,240,241,247,248,249,254,255,256,257,258,260,262,263,266,267,268,269,271,273,277,279,280,281,282,284,286,293,294,298,299,302,304,305,307,312,319,321,330,337,343,345,349,353,357,360,361,362,366,368,370,371,372,373,375,376,379,380,385,388,405,413,433],path_or_typeclass:233,pathdata:273,pathfind:[77,273,277,279,280],pathnam:386,patient:88,patreon:88,patrol:267,patrolling_pac:267,patron:[83,88],pattern:[18,35,56,72,73,89,101,131,140,141,178,241,356,360,388,404],pattern_is_regex:360,paul:48,paus:[27,41,54,79,95,128,156,161,190,191,229,305,306,372,388],pausabl:388,pauseproduc:314,paxboard:143,payload:[323,340],payment:122,paypal:[83,88],pdb:163,pdbref:[32,289],pdf:143,peac:134,peek:[0,27,82,106,108,113],peer:[323,340],peform:317,peg:157,pem:150,pemit:[68,178],pen:102,penalti:[66,120,256],pend:357,pennmush:[68,71,98],pentagon:157,peopl:[0,6,12,18,29,30,32,53,59,68,77,83,86,87,90,99,103,105,108,110,112,120,121,122,123,125,126,128,143,147,151,152,154,157,159,185,186,212,241,268,269,368,396,403],pep8:0,per:[5,12,13,18,22,27,36,40,44,57,64,66,78,82,84,87,89,99,100,101,115,121,122,125,128,129,156,166,185,199,216,217,222,240,251,254,255,256,257,258,267,279,280,298,325,326,328,336,339,355,372,373,374,379,381,382],perceiv:[100,122],percent:[22,163,164,197,388],percentag:[128,250,251,361,388],percentil:388,perception_method_test:348,perfect:[11,26,86,120,121,125,153,156,199,279],perfectli:[41,46,71,89,101,365],perform:[3,5,6,13,14,15,18,28,31,32,36,41,76,86,91,95,106,115,128,129,134,140,141,145,151,153,157,166,171,173,177,180,185,187,202,204,207,214,223,229,230,241,244,252,254,255,256,257,258,277,294,298,302,303,316,321,335,343,344,360,361,362,369,372,373,375,382,385,388,389,427],perhap:[3,6,18,56,68,76,79,100,101,106],period:[8,9,10,115,154,156,157,388],perist:48,perm:[13,18,22,30,32,38,40,46,55,57,76,89,91,99,105,107,113,129,140,151,169,178,179,180,185,186,187,190,214,222,228,238,247,269,273,286,289,290,293,294,302,360,362],perm_abov:[32,38,289],perm_us:178,perma:122,permadeath:122,perman:[18,20,27,53,55,82,89,90,91,105,107,114,119,120,129,146,154,166,173,174,177,180,185,186,190,240,294,306,362],permiss:[5,12,13,18,20,40,49,50,55,60,62,68,75,89,90,91,108,113,125,129,140,144,145,151,153,163,164,166,168,169,173,175,177,178,179,180,185,186,188,194,217,228,241,258,284,286,289,290,293,294,298,299,302,360,361,362,363,366,368,375,381,385,393,395,406,407,410,413,438,440],permission_account_default:[38,343],permission_class:413,permission_func_modul:289,permission_guest_default:62,permission_hierarchi:[38,57,289,290],permissiondeni:408,permissionerror:298,permissionfilt:407,permissionhandl:[140,363],permissionshandl:[403,410],permit:[142,145,180,356],permstr:[32,166,362,368],permut:241,perpetu:5,persis:93,persist:[18,19,20,22,27,33,36,40,41,43,44,47,48,66,74,76,86,87,90,97,98,102,109,112,115,118,121,128,129,137,143,161,166,169,174,180,190,196,202,210,215,223,230,240,241,248,251,252,254,255,256,257,258,263,266,268,281,286,293,294,296,298,302,303,305,306,307,317,318,319,350,351,355,359,362,368,370,372,374,376,388],persit:34,person:[18,29,44,55,71,88,90,107,120,121,123,126,135,148,154,166,180,185,186,194,199,201,211,216,217,221,241,375,391,392],persona:30,perspect:[44,126,221],pertain:[133,138,157,420],pertin:140,perus:51,peski:105,pester:[98,120],peter:214,pg_ctlcluster:145,pg_hba:145,pg_lscluster:145,phantom:30,phase:[80,120],philosophi:[32,115,216],phone:[56,87,153,239],phone_gener:239,phonem:240,php:[68,87,427],phrase:[79,233],phrase_ev:233,physic:[12,34,80,120,257,267],pick:[7,14,16,20,22,25,27,29,30,32,41,43,53,75,81,82,83,86,90,95,100,105,108,114,115,118,121,122,125,126,139,152,154,156,172,177,180,186,188,204,225,241,258,268,269,294,298,344,375],pickl:[13,47,50,64,82,93,200,251,303,307,309,319,321,322,360,361,369,370,372,384,388],pickle_protocol:384,pickledfield:384,pickledformfield:[384,396],pickledobject:384,pickledobjectfield:384,pickledwidget:384,picklefield:[163,164,364,396],pickpocket:187,pickup:[258,294],pictur:[7,61,78,90,98],pid:[2,11,32,50,140,156,161,289,294,312,322,388],piddir:2,pidfil:312,pie:214,piec:[5,14,34,53,54,78,87,114,115,121,150,207,208,238,339,366,373],pierc:268,pig:[207,208],piggyback:166,pigironrecip:[207,208],pile:[174,366],pillow:153,pinch:122,ping:[167,185,312,324],pink:365,pip:[0,3,5,6,8,9,10,75,84,111,115,140,145,148,149,151,153,155,156,160,163],pipe:[44,324,369],pitfal:[0,15,59,138],pixel:[53,146],pizza:[169,196,286,293,302,360,362,363],pkg:153,pki:144,place:[0,9,11,12,13,15,16,18,27,32,34,36,40,41,43,44,49,52,53,63,64,65,71,72,74,75,77,78,79,80,81,82,83,84,86,87,89,90,91,94,100,101,106,108,111,112,114,115,117,122,125,126,129,131,133,137,138,139,140,144,148,151,153,154,156,157,166,178,180,186,194,201,202,204,208,210,216,223,238,241,244,251,254,255,256,257,258,263,268,269,271,279,280,282,294,305,321,330,335,351,352,353,360,366,367,369,372,388],placehold:[52,53,63,141,290,294,374],plai:[12,13,15,30,44,53,57,59,64,74,76,77,79,81,86,87,93,95,99,102,103,106,115,118,119,120,121,123,125,126,128,129,137,139,140,153,154,160,166,254,258,336,353,368,440],plain:[14,15,66,67,84,99,108,129,185,194,201,202,237,299,317,343,369,436],plaintext:245,plan:[3,15,16,18,48,61,75,86,97,102,110,114,117,118,124,127,130,132,154,156,366,440],plane:[82,117,137],planet:[100,112,143],plant:270,plate:[48,53,104,239],platform:[7,11,56,75,97,148,154],playabl:[122,140,428],player1:294,player2:294,player:[5,6,13,18,20,27,29,32,38,41,44,46,50,52,53,54,55,57,61,63,64,68,69,75,76,77,81,82,85,86,87,90,91,93,99,103,105,106,108,109,112,113,114,115,116,118,119,120,121,124,126,127,128,129,130,132,134,135,136,137,140,147,149,151,154,155,160,161,174,177,180,185,190,195,198,199,201,202,214,215,216,217,219,223,225,233,234,238,240,241,245,249,252,257,258,263,269,270,271,279,285,302,326,335,352,366,371,372,388,413,427,433],playernam:151,playerornpc:75,pleas:[0,5,8,11,17,20,27,30,40,48,56,59,81,83,88,89,108,114,122,125,134,135,136,140,142,144,148,151,152,153,154,190,314,343,379,384,427],pleasur:56,plenti:[15,71,86],plop:53,plot:345,plu:[0,7,19,76,87,190],pluck:22,plug:[34,45,133,157,271],plugin:[43,61,64,68,85,89,111,112,143,152,199,241,310,440],plugin_handl:51,plugin_manag:51,plural:[38,57,99,257,294,391],plusmaplink:[82,280],png:[39,53,133],po1x1jbkiv:83,pocoo:388,poeditor:63,poet:110,point:[2,3,5,6,7,8,10,11,12,14,15,16,19,20,22,27,29,30,34,36,41,43,44,46,47,48,50,53,64,66,67,69,72,74,76,77,80,82,83,84,86,89,90,91,93,95,97,100,101,102,103,105,106,107,108,112,113,114,115,116,120,122,123,126,128,129,130,133,137,140,141,144,148,150,153,154,156,160,166,171,175,180,185,188,190,201,207,214,224,241,247,254,269,270,271,273,277,279,280,294,296,298,307,312,316,330,332,340,351,353,360,362,366,372,375,388,396,403,416,438],pointer:[0,80,97,106],pointless:[36,47,54,187],poison:[121,251,256,299],pole:238,polici:[116,154,157,245,286,356,360],polish:63,polit:[77,116,122,157],poll:[61,133,177,267,312,341],pommel:[122,208],pong:324,pool:[20,47,145,307,357,369],poor:99,poorli:157,pop:[7,54,84,91,99,105,145],popen:322,popul:[2,72,76,98,100,103,120,145,173,181,182,183,184,202,204,207,214,222,238,241,249,254,255,256,257,258,263,266,267,268,269,273,306,307,343,366,370,371,373,396,403],popular:[68,75,77,87,98,110,118,143,157,159,432],popup:51,port:[2,5,74,75,86,118,144,145,147,148,150,152,156,161,167,185,321,324,332,344,353,357],portal:[5,7,9,24,36,42,43,51,52,61,67,85,111,112,137,143,154,157,161,163,164,167,190,205,308,309,312,350,351,352,353,376,381,388,440],portal_connect:353,portal_disconnect:353,portal_disconnect_al:353,portal_l:322,portal_pid:[322,388],portal_receive_adminserver2port:322,portal_receive_launcher2port:322,portal_receive_server2port:322,portal_receive_statu:322,portal_reset_serv:353,portal_restart_serv:353,portal_run:312,portal_service_plugin_modul:61,portal_services_plugin:[43,61,112],portal_services_plugin_modul:61,portal_sess:61,portal_session_sync:353,portal_sessions_sync:353,portal_shutdown:353,portal_st:312,portal_uptim:376,portallogobserv:381,portalsess:[44,61,330],portalsessiondata:353,portalsessionhandl:[61,163,164,308,320,331,353],portalsessionsdata:353,portion:[199,202,225],portuges:63,pos:[216,280],pose:[93,99,107,121,122,128,166,186,214,230,241,263],pose_transform:194,posgresql:145,posit:[14,27,41,51,76,80,81,82,95,106,108,116,121,128,138,174,192,199,202,212,214,216,237,258,268,269,270,271,279,280,282,294,306,365,366,369,370,374,388,389],position:216,position_prep_map:216,positive_integ:389,positiveinteg:382,posix:[381,388],possess:224,possibl:[0,5,8,9,11,13,18,20,22,26,27,29,30,31,32,34,40,41,43,44,46,50,52,53,54,59,62,74,75,76,79,81,83,84,86,87,91,95,98,99,106,110,111,112,115,116,119,121,122,123,125,126,128,129,133,138,141,145,148,153,156,163,166,169,171,173,180,187,188,199,201,207,216,222,229,238,240,241,249,251,267,269,271,279,280,282,287,290,294,297,298,299,303,307,317,337,341,351,353,360,361,363,365,368,370,371,372,374,384,385,388,391,405],post:[18,20,32,45,49,53,63,81,83,86,88,98,99,101,118,120,133,136,140,148,151,155,245,305,341,412,433],post_craft:[78,207],post_delet:45,post_init:45,post_join_channel:[18,194],post_leave_channel:[18,194],post_migr:45,post_sav:45,post_send_messag:194,post_text:225,post_url_continu:[395,397,400],postfix:240,postgr:[87,145],postgresql:388,postgresql_psycopg2:145,postinit:51,posttext:223,postupd:[136,151],pot:[55,109],potato:[146,270],potenti:[0,13,14,29,54,59,64,78,81,104,116,121,122,128,129,154,155,175,195,245,246,289,290,294,298,382,385,388],potion:[117,121,122,216,362],pow:29,power:[3,16,20,22,26,27,29,34,36,38,40,50,51,53,57,79,81,86,87,93,94,97,99,108,110,114,115,116,117,119,121,122,125,128,129,173,174,179,180,252,257,270,287,366,372,388],powerfulli:74,ppart:391,pperm:[18,32,38,55,113,140,151,177,185,238,289,294],pperm_abov:289,pprofil:312,pprogram:312,practial:16,practic:[0,2,11,14,15,22,36,40,41,44,50,74,76,77,83,87,88,93,98,99,113,114,115,116,117,121,122,125,138,148,150,154,280,366],pre:[22,36,49,80,81,120,122,147,148,151,154,166,180,187,207,240,290,294,298,299,340,341,344,370,375,384],pre_craft:[78,207],pre_delet:45,pre_init:45,pre_join_channel:[18,194],pre_leave_channel:[18,194],pre_migr:45,pre_sav:[45,384],pre_send_messag:194,pre_text:225,preced:[20,40,57,59,82,125,173,175,252,294,299,361,374],preceed:[29,108],precend:171,precis:[13,41,138,207,365],predefin:[137,356],predict:[48,115,123,140],prefer:[7,11,18,20,32,40,51,76,81,83,86,88,90,98,106,112,114,118,129,145,151,154,173,175,178,202,241,255,267,280,285,287,294],prefix:[3,6,18,48,66,76,145,157,166,172,189,194,225,240,317,324,355,365,375,381,385,388,396,397,399,401,403,407,427],prefix_str:91,preload_metadata:199,prelogout_loc:113,prematur:[5,19,41,201],premis:214,prep:214,prepai:154,prepar:[8,35,40,52,80,82,98,131,166,185,241,254,255,256,257,258,267,302,369,384],prepars:84,prepend:[234,241,294,365,366,372,375,388],prepopul:[396,403,436,438],preposit:216,preprocess:180,prerequisit:[2,75],prescrib:[86,98,121],presen:29,presenc:[17,29,75,82,86,97,112,113,133,138,145,154,166,294,357,393],present:[3,6,11,27,30,43,44,49,53,76,77,79,80,89,100,101,105,106,120,121,128,129,144,202,223,225,239,240,249,252,270,299,370,388,391,392,396,410],present_participl:392,preserv:[138,188,362,365,366,381,388],preset:375,press:[0,3,7,15,16,20,22,27,32,64,67,75,76,108,112,115,118,148,156,161,202,216,263,268,310,372,400],pressur:104,presto:108,presum:[34,100,126,174,381,382],pretend:153,pretext:223,pretti:[0,11,36,41,50,67,74,76,83,84,87,91,95,105,113,115,116,119,120,128,129,137,138,140,152,154,175,194,204,221,239,251,283,290,298,371,373,382,388],prettier:[5,74,427],prettifi:[98,388],prettili:100,pretty_corn:374,prettyt:[19,104,374],prev:[27,125,373],prev_entri:27,prevent:[13,22,79,84,100,108,115,199,229,258,270,355,373,396,433],preview:84,previou:[3,13,15,20,22,27,28,29,30,32,35,43,45,49,53,54,56,59,66,74,76,93,99,100,101,105,106,107,110,111,113,114,115,119,122,125,127,129,138,156,185,251,252,269,296,372,381,435],previous:[8,20,26,31,41,43,53,59,80,82,106,108,114,133,140,150,152,175,178,180,185,194,201,281,317,333,337,344,353,363,388],previu:41,prgmr:154,price:[122,154,199,268],primadonna:30,primari:[17,48,113,140,156,241,294,360,385],primarili:[2,12,55,68,83,84,86,120,121,166,201,241,285,287,330,369,388],primarli:84,primary_kei:140,prime:[171,201],primer:[53,54],primit:[122,180],princess:[81,119],princip:123,principl:[0,12,18,22,27,29,32,34,36,50,57,61,75,78,83,84,94,98,105,110,112,113,116,121,122,129,139,154,155,174,177,201,269],print:[0,3,4,5,6,13,19,26,27,41,48,54,61,66,69,75,89,90,91,99,106,110,113,115,116,161,177,211,240,251,270,279,281,298,311,312,371,372,373,374,381,388],print_debug_info:372,print_error:281,print_help:270,print_stat:5,print_usag:270,printabl:338,printable_order_list:279,printout:[116,335],prio:[20,22,91,113,171,269],prior:[134,229,294],priorit:[82,240,280],prioriti:[6,20,22,27,82,89,91,96,125,128,173,177,181,182,183,184,188,202,214,266,268,269,294,370,372,373],prison:[110,120],privat:[11,18,84,89,98,101,120,122,144,145,154,185,186,324,337],private_set:75,privatestaticroot:357,priveleg:114,privileg:[82,90,120,129,145,148,149,152,155,186,241,271,282,294,362],privkei:150,privkeyfil:332,privmsg:324,prize:119,proactiv:47,probabl:[5,9,13,22,27,30,36,41,49,50,53,56,66,68,76,79,82,83,86,87,89,90,91,93,98,101,105,113,122,125,128,133,137,140,141,145,154,187,199,202,233,239,251,269,314,324,332,379,388,389],problem:[0,2,6,8,13,14,16,19,32,69,73,76,81,84,87,88,90,91,97,101,102,107,115,117,120,122,123,125,145,146,150,153,154,156,157,161,166,174,207,230,279,294,321,366,375],problemat:[91,388],proce:[15,16,63,137,138,156,185,339,431,433],procedur:[252,332,335],proceed:[11,388],process:[0,2,3,5,7,11,13,14,15,16,22,27,29,34,36,39,49,52,53,63,64,67,74,75,76,80,82,84,87,89,91,93,95,106,112,115,120,122,124,125,126,140,144,145,150,153,154,156,166,171,173,180,190,194,201,207,208,241,252,270,275,288,290,294,298,303,306,312,317,321,322,329,332,335,340,341,344,350,351,353,360,365,366,369,372,382,387,388,389,405,440],process_languag:241,process_recog:241,process_sdesc:241,processed_result:388,processor:[24,81,122,130,161,163,164,179,190,364,440],procpool:388,produc:[11,18,22,27,30,59,121,123,129,177,180,207,208,216,221,238,240,268,271,294,298,299,311,343,360,362,371,372,388],produce_weapon:268,producion:19,product:[0,2,5,7,9,11,52,53,72,145,154,157,159,343,346,372],production_set:75,prof:5,profess:110,profession:[68,87,98,115,122,123,131],profil:[1,149,163,164,169,223,308,440],profile_templ:223,profunc:40,prog:[270,391],progmat:97,program:[0,5,7,8,9,12,16,18,29,39,49,52,54,66,68,85,87,95,97,98,111,112,115,116,119,123,124,125,143,145,148,150,153,154,156,157,161,190,270,308,312,335,341,343],programiz:95,programm:[106,118,123],progress:[11,88,105,126,143,217,219,254,255,256,257,258,280,370],proident:28,project:[8,11,16,68,72,77,80,81,83,87,89,91,106,123,133,143,152,382,439],projectil:257,promin:30,promis:0,promisqu:138,prompt:[0,3,48,51,64,67,75,81,87,102,115,118,145,146,147,148,153,156,160,175,191,252,310,324,335,340,341,366,372,440],promptli:15,prone:[9,174,362],pronoun:224,pronounc:221,prop:120,propag:[144,173,316,384],proper:[2,8,11,16,19,29,30,51,72,87,90,95,96,97,98,105,106,120,121,122,125,128,129,140,145,156,157,180,191,201,202,231,240,371,375],properi:187,properli:[7,8,9,10,11,29,33,48,68,73,75,93,99,100,101,134,138,140,175,199,201,246,269,277,289,306,307,332,388,398],properti:[4,6,8,14,30,32,33,35,40,41,43,47,53,66,76,78,81,85,86,91,95,97,98,103,107,111,113,117,122,126,128,129,137,138,161,166,167,169,175,177,180,188,190,191,194,196,199,202,207,214,216,217,223,229,238,241,250,251,252,254,256,257,258,263,267,268,269,270,271,280,281,282,284,286,287,289,290,293,294,298,299,302,304,305,306,316,317,319,324,330,343,344,351,352,353,360,362,363,367,369,372,375,382,383,384,385,388,395,396,397,399,400,401,402,403,410,427,435,437],propnam:129,propos:26,proprietari:145,propval:129,propvalu:129,prose:123,prosimii:[140,141],prospect:[120,207],prot:299,prot_func_modul:[40,297],protect:[5,20,154,180,208,263],protfunc:[163,164,295,298,299,375],protfunc_callable_protkei:297,protfunc_modul:298,protfunc_pars:298,protfunct:298,protkei:[40,297,298],proto:[321,332],proto_def:238,protocol:[19,22,24,31,39,43,44,51,60,64,85,87,111,112,123,143,146,152,154,157,161,166,167,175,178,224,245,262,294,308,309,312,314,317,321,322,323,324,325,326,327,328,330,331,332,334,335,336,337,339,340,341,343,350,351,352,353,370,384,388,440],protocol_flag:[334,335,339,351],protocol_kei:352,protocol_path:[330,353],protodef:238,prototocol:190,protototyp:[296,298,299],protototype_tag:40,prototoyp:297,prototyp:[24,29,78,79,85,111,112,120,136,163,164,180,190,197,207,238,255,256,268,272,279,280,281,440],prototype1:299,prototype2:299,prototype_:40,prototype_desc:[40,299],prototype_dict:180,prototype_diff:299,prototype_diff_from_object:299,prototype_from_object:299,prototype_kei:[40,78,82,180,207,298,299],prototype_keykei:180,prototype_lock:[40,299],prototype_modul:[40,82,180,276,298,299],prototype_pagin:298,prototype_par:[40,82,180,276,299],prototype_tag:299,prototype_to_str:298,prototypeevmor:298,prototypefunc:299,protpar:[298,299],protpart:298,provid:[2,6,8,11,13,17,18,22,29,30,40,41,48,49,50,51,52,53,55,56,68,70,74,76,78,84,86,89,91,93,101,106,114,115,116,117,121,122,125,131,133,138,140,141,150,153,154,156,157,166,175,180,185,194,199,202,204,207,216,223,225,228,238,239,252,254,255,256,257,258,270,271,279,284,289,294,297,305,312,332,355,361,372,382,383,384,388,389,412,413,427,433,436,438],provok:[3,143],prowl:30,proxi:[48,111,150,157,159,199,357,396,403],proxypass:144,proxypassrevers:144,prudent:2,prune:20,pseudo:[61,68,77,80,106,239,240],psionic:257,psql:145,pstat:5,psycopg2:145,pty:75,pub:[185,194],pubkeyfil:332,publicli:[53,122,143,147],publish:[2,90,143,156],pudb:163,puff:97,pull:[2,9,11,20,22,29,52,53,83,84,87,91,112,123,133,156,233,268,314,435],pullrequest:83,pummel:119,punch:[20,107],punish:[122,258],puppet:[6,12,20,22,31,32,38,44,45,50,57,61,75,76,78,90,95,98,99,100,113,129,135,140,165,166,171,177,180,188,203,207,234,273,294,351,353,362,395,400,428,433,435],puppet_object:[12,166],puppeted_object:395,purchas:[105,150],pure:[48,59,67,79,97,122,138,150,302,312,360,365],pure_ascii:388,purg:[13,48,161,190],purpos:[13,39,46,64,89,110,116,129,138,140,150,154,167,171,175,211,221,229,280,332,360,369,372,388],pursu:[119,267],push:[76,84,114,138,156,157,216,233,263,268],pushd:148,put:[3,7,8,12,14,15,22,26,27,32,35,36,38,40,43,44,48,49,53,54,55,57,59,64,66,71,72,74,78,79,80,81,82,83,84,87,88,90,91,98,99,105,107,108,112,114,115,117,120,121,123,125,126,128,129,131,133,137,140,143,145,154,157,159,174,177,178,180,182,186,200,203,204,207,208,221,223,225,241,252,254,255,256,257,258,260,290,321,335,373,374,388,440],putti:154,puzzl:[78,119,143,163,164,197,207,268,269],puzzle_desc:268,puzzle_kei:269,puzzle_nam:238,puzzle_valu:269,puzzleedit:238,puzzlerecip:238,puzzlesystemcmdset:238,pvp:120,pwd:[5,156],py3:321,pyc:112,pycharm:[1,84,118,440],pyflak:0,pylint:0,pyopenssl:149,pypath:388,pypath_prefix:388,pypath_to_realpath:388,pypi:[5,87,143,154,365],pypiwin32:[75,148],pyprof2calltre:5,pyramid:271,pyramidmapprovid:271,pyself:121,python2:[6,75,148],python37:148,python3:[87,148,153,251],python:[3,5,6,7,8,9,10,12,13,15,16,19,20,22,26,27,29,30,32,34,36,40,43,48,49,50,52,53,54,55,57,59,62,63,66,68,69,70,72,74,75,76,79,80,81,82,83,84,85,87,89,90,93,95,97,99,100,101,102,104,105,106,107,108,109,110,111,113,114,117,118,121,122,123,124,125,126,127,128,129,130,131,132,135,140,141,145,148,149,152,153,154,155,156,157,160,161,172,174,179,180,184,190,191,202,207,211,227,228,229,230,231,233,239,270,271,281,284,290,293,297,299,304,307,312,314,321,325,330,340,351,353,357,359,361,362,365,366,368,369,370,371,372,374,375,376,379,381,384,388,405,410,416,439,440],python_execut:87,python_path:[174,388],pythonista:143,pythonpath:[174,312,322,366],pytz:389,q_lycantrop:110,q_moonlit:110,q_recently_bitten:110,qualiti:[120,122,172],queen:82,quell:[12,107,108,113,115,119,125,137,177,247],quell_color:180,queri:[11,13,29,40,46,49,56,64,66,82,87,95,97,102,117,118,125,169,185,187,196,241,282,285,286,287,293,294,298,299,302,319,332,347,360,361,362,363,373,375,380,385,388,389,440],query_al:360,query_categori:360,query_info:312,query_kei:360,query_statu:312,query_util:407,queryset:[41,46,87,195,217,234,281,282,285,298,318,361,373,385,396,403,407,413,432,433,435,438],queryset_maxs:373,querystr:407,querystring_auth:199,querystring_expir:199,quest:[77,86,98,102,119,120,121,123,127,134,148,269],question:[0,8,11,22,26,27,54,72,76,98,120,122,123,124,126,144,148,150,154,180,191,293,309,310,360,370,372,388],queu:312,queue:[2,128,357],qui:28,quick:[6,20,22,34,41,46,68,73,76,84,86,95,106,115,116,120,128,143,154,159,167,180,202,240,284,299,317,360,363,374,412],quicker:[35,66,74,83,122],quickli:[9,13,16,22,27,34,36,46,54,59,66,82,91,95,122,123,133,136,159,180,202,219,221,240,363,366],quickstart:[6,43,63,66,84,99,153,154,156,161,439,440],quiescentcallback:314,quiet:[82,91,105,117,166,178,180,185,202,204,241,273,294,373,388],quiethttp11clientfactori:314,quietli:[29,64,67,93,360],quirk:[1,146,174,440],quit:[3,5,8,9,12,17,22,26,27,44,54,61,74,76,79,82,84,86,89,90,94,95,98,105,107,108,110,113,115,116,117,119,122,125,140,145,147,150,153,177,192,202,212,214,219,223,229,257,332,370,372,373],quitfunc:[26,370],quitfunc_arg:370,quitsave_yesno:370,quo:47,quot:[19,25,26,32,40,115,121,135,145,180,192,212,241,370,372,384,388],qux:252,ra4d24e8a3cab:25,rabbit:122,race:[86,97,120,126,134,140,143,144,388],rack:[208,268],radio:[18,122],radiu:[80,81,95],rage:[119,251],ragetrait:251,rail:[87,137],railroad:137,railwai:280,rain:[41,119,122,139],raini:269,rais:[16,19,22,29,40,54,64,78,101,106,110,126,141,166,167,191,195,199,202,207,211,222,227,229,230,239,240,241,251,279,280,281,282,290,297,298,307,311,312,330,335,341,356,360,361,363,365,366,368,371,372,374,375,381,382,383,384,388,389,408],raise_error:[29,375,383,388],raise_except:[207,360],ram:[13,154],ramalho:143,ran:[2,3,8,14,115,305],rand:41,randint:[29,40,78,106,113,126,128,129,136,254,255,256,257,258,299,375],random:[25,29,40,41,43,75,78,79,106,108,113,119,121,122,126,128,129,136,139,154,208,221,239,240,254,255,256,257,258,260,263,264,268,269,271,299,343,344,375,388],random_string_from_modul:388,random_string_gener:[163,164,197],randomli:[5,41,66,136,139,254,255,256,257,258,263,267,268,312,344,375],randomstringgener:239,randomstringgeneratorscript:239,rang:[3,5,8,20,26,40,67,77,80,81,82,95,97,106,108,119,121,128,135,136,146,148,157,180,210,223,250,251,255,258,277,279,282,361,370,375,427,438],rank:[57,289],raph:143,raphkost:143,rapidli:174,rapier:110,raptur:336,rare:[7,9,22,43,47,54,66,76,84,148,185,281,290,368],rascal:46,rase:209,rate:[5,22,83,87,121,154,163,164,185,197,307,312,331,388],ratetarget:[121,250,251],rather:[0,6,8,9,11,12,13,14,22,30,36,41,43,46,47,53,66,71,72,76,77,78,81,82,83,84,86,87,91,93,95,98,106,108,112,115,117,118,121,122,125,128,131,141,150,151,161,166,169,173,177,180,181,185,187,188,190,194,201,225,229,237,241,251,254,255,256,257,258,280,281,283,294,296,298,299,360,362,365,374,383,384,387,396,403,436],ration:[121,201],raw:[22,31,40,55,59,64,66,84,87,97,108,115,116,118,122,131,166,172,175,180,188,189,191,241,245,251,270,294,317,332,335,340,341,351,360,365,370,372,382,388],raw_cmdnam:[107,172,189],raw_desc:222,raw_id_field:[397,400,401],raw_input:[105,372],raw_nick:35,raw_str:[22,27,105,107,166,167,171,172,175,191,215,223,252,266,294,296,351,360,372],raw_templ:35,rawhid:208,rawhiderecip:208,rawstr:[175,191],rcannot:76,rdelet:190,re_bg:387,re_bgfg:387,re_blink:387,re_bold:387,re_color:387,re_dblspac:387,re_double_spac:387,re_fg:387,re_format:365,re_hilit:387,re_invers:387,re_mxplink:387,re_mxpurl:387,re_norm:387,re_str:387,re_ulin:387,re_underlin:387,re_unhilit:387,re_url:387,reach:[27,35,63,67,76,82,95,107,108,119,125,126,137,154,163,175,223,227,251,258,280,332,336,355,372,373,385,439],reachabl:[47,87,279],react:[27,47,52,134,135,267,294],reactiv:190,reactor:[323,350,357,386],read:[5,8,9,11,13,14,16,17,19,20,22,27,29,30,32,34,40,43,44,49,53,56,63,66,67,70,74,75,76,79,82,83,84,86,87,88,89,91,93,95,97,99,101,105,106,107,108,110,111,112,113,114,115,116,119,121,122,123,125,129,138,140,141,143,144,145,151,152,154,157,160,166,169,179,186,187,196,199,202,216,222,225,233,234,239,241,251,268,269,279,280,284,286,293,294,298,299,302,319,321,344,360,362,363,366,367,371,373,380,381,395,432,435],read_batchfil:366,read_default_fil:2,read_flag:216,read_only_field:410,readabl:[5,19,47,48,59,68,80,84,187,200,207,216,268,279,365,372,435],readable_text:268,reader:[31,84,99,103,125,140,143,155,185,225,258,317,331],readi:[2,3,5,7,11,12,16,32,36,54,55,61,83,91,93,108,112,113,123,133,137,147,148,153,166,175,241,254,255,256,257,258,294,341,373,382,388],readili:[81,145],readin:371,readlin:[199,381],readm:[10,11,15,79,83,112,197,199,245],readonly_field:[395,397,400,401],readonlypasswordhashfield:395,readthedoc:[143,407],real:[3,4,5,11,12,19,20,29,36,40,48,54,62,68,76,79,81,84,86,90,95,99,100,110,115,116,122,126,128,129,130,138,148,150,152,154,156,161,169,174,196,201,208,210,240,241,256,280,281,289,343,366,375,376],real_address:12,real_nam:12,real_seconds_until:[210,376],real_word:240,realist:[5,8,122,123,139,216],realiti:[5,81,86,90,97,120,138,143],realiz:[11,113,138],realli:[0,3,4,8,9,13,14,15,18,20,22,27,29,32,36,41,43,46,47,49,54,55,57,68,76,81,82,84,87,89,91,95,99,100,105,106,107,108,113,114,116,117,121,123,125,135,137,150,152,155,161,175,191,201,202,203,252,270,280,290,321,365,366,372,384],really_all_weapon:110,realm:332,realnam:36,realpython:54,realtim:[99,112,210],realtime_to_gametim:210,reason:[5,6,7,11,13,14,18,27,30,32,34,35,36,40,41,43,47,50,55,59,61,64,66,71,75,76,78,80,82,83,84,87,91,93,95,96,97,98,99,101,104,107,113,114,120,122,123,125,126,128,138,144,148,150,157,166,178,180,185,190,207,212,217,239,240,251,279,280,294,298,303,309,314,321,322,323,324,330,331,332,335,340,341,343,351,352,353,362,370,375,381,388,438],reasourc:40,reassign:80,reattach:[7,323,324],rebas:11,reboot:[9,13,19,26,33,41,44,47,66,86,92,112,128,150,154,156,160,166,174,185,190,205,223,251,267,268,294,302,303,305,307,312,352,353,370,372],reboot_evennia:312,rebuild:[9,82,99,148,150,156,281,324],rebuilt:[22,82,150,279],rec:241,recach:269,recal:[268,432],recaptcha:140,receipt:[157,314],receiv:[3,8,18,20,22,27,28,29,34,35,44,51,52,64,69,78,83,99,106,112,134,140,166,173,174,191,192,194,195,196,212,217,234,241,245,251,279,294,314,317,321,323,324,330,340,341,343,350,351,368,373,375,385,388,397],receive_functioncal:321,receive_status_from_port:312,receiver1:191,receiver2:191,receiver_account_set:169,receiver_extern:196,receiver_object_set:293,receiver_script_set:302,recent:[17,53,89,91,110,129,150,355],recently_bitten:110,recev:341,recip:[47,74,92,122,163,164,197,206,208,209,238],recipe_modul:207,recipe_nam:207,recipenam:78,recipes_pot:207,recipes_weapon:207,recipi:[18,29,34,99,166,194,195,234,294,321,375],reckon:[75,77],recoc:121,recog:[35,77,121,241],recog_regex:241,recogerror:241,recoghandl:241,recogn:[8,31,36,56,107,108,116,122,141,148,154,161,241,251,357],recognit:[123,241,360],recommend:[0,2,5,8,11,27,36,40,48,55,66,67,68,72,75,82,83,84,86,91,99,101,102,109,115,120,122,126,143,145,146,148,154,160,190,225,229,244,251,270,279,290,294,314,366,372,385],recommonmark:84,reconfigur:154,reconnect:[166,167,185,194,309,312,321,323,324,350,353],reconnectingclientfactori:[309,323,324,343],record:[16,129,145,154,245,258,355,427],record_ip:355,recours:55,recov:[19,92,93,97,251,254,255,256,257,258,290,388],recoveri:128,recreat:[9,41,81,112,145,148,167,174,281,366,367],rectangl:371,rectangular:[99,371],recur:87,recurs:[13,280,289,298],red:[14,15,20,35,38,40,53,59,82,108,112,114,115,116,138,180,190,216,263,268,365,375,389],red_button:[14,15,35,108,112,163,164,180,197,259],red_kei:38,red_ros:110,redbutton:[14,15,35,108,112,180,263],redd:157,reddit:157,redefin:[22,36,76,86,294,427],redhat:[148,150],redirect:[44,53,61,72,76,101,112,140,144,202,216,219,372,429,433,438],redirectlink:280,redirectview:433,redit:202,redmapnod:82,redo:[26,115,116,120,370],redraw:332,reduc:[128,254,255,256,257,258,325],reduced_redund:199,reduct:199,redund:365,reel:174,reen:[59,365],ref:[48,84,145,241,294,388,427],refactor:[98,294,391,439],refer:[7,8,10,11,14,20,22,27,29,35,36,40,41,43,44,48,53,57,61,66,67,71,74,75,76,78,79,80,81,83,87,97,98,100,101,102,107,110,112,113,114,115,116,118,121,122,123,126,128,138,140,141,143,144,154,156,161,166,174,180,185,189,194,201,208,219,223,239,241,254,255,256,257,258,273,279,282,289,294,304,306,307,314,324,344,352,361,372,375,379,384,385,388,396,403,438,439],referenc:[36,40,43,50,97,175,180,185,194,199,241,279,284,286,362,388],referenti:388,referr:154,refin:[80,208],reflect:[115,119,121,438],reflow:56,reformat:[299,374,381],reformat_cel:374,reformat_column:[81,374],refresh:[0,53,82,141,332,355],refus:[18,55,122],regain:93,regard:[8,138,239,407],regardless:[8,20,22,38,44,48,55,57,64,99,103,120,126,137,166,173,194,201,216,224,241,294,307,329,332,335,350,352,360,363,366,379,381,388],regener:256,regex:[18,22,26,35,51,53,175,178,190,191,205,239,241,356,360,372,388,416],regex_nick:35,regex_tupl:241,regex_tuple_from_key_alia:241,regexfield:395,region:[73,82,99,154,178],region_nam:199,regist:[11,43,51,52,53,64,72,82,128,136,140,149,151,157,159,166,185,233,267,268,303,312,323,324,330,353,355,357,365,375,412,418,428,431],register_error:365,register_ev:233,registercompon:51,registertest:428,registr:[49,149,431],registrar:150,registri:[239,355,357],regress:298,regul:290,regular:[17,18,22,30,34,41,44,47,50,52,72,82,84,101,108,109,110,112,115,116,120,125,131,139,141,143,154,167,173,204,238,239,269,280,284,290,307,360,363,375,379,388,416,439],regulararticl:380,regulararticle_set:380,regularcategori:380,regularli:[9,105,136,139,150,155,210,267,269,305,307,315,345,376],reilli:143,reinforc:143,reiniti:161,reinstal:148,reinvent:98,reject:[223,239],rejectedregex:239,rejoin:18,rel:[11,14,15,20,27,30,43,50,54,57,76,80,82,104,122,129,140,210,216,258,366,372],relai:[19,22,44,152,166,185,201,224,279,294,330,353,372,373,388],relat:[18,20,22,27,30,43,48,51,53,92,97,98,110,112,113,116,122,125,139,143,152,157,161,169,170,173,188,193,195,196,210,215,216,217,233,245,254,255,256,257,258,266,269,279,280,286,293,294,302,307,317,353,360,362,363,365,372,380,381,393,395,396,403,410,420,427],related_field:[395,396,397,399,400,401,403],related_nam:[169,196,286,293,302,360,362,363,380],relationship:[34,48,80],relay:167,releas:[75,77,83,86,92,112,123,142,143,148,154,190,439],relev:[13,15,22,32,36,45,46,48,50,53,59,72,73,75,76,82,83,84,94,99,100,125,128,129,131,140,143,166,171,173,201,202,207,251,280,290,304,326,344,351,352,353,365,370,372,382,396,403],relevant_choic:202,reli:[8,27,47,59,66,67,72,75,88,100,103,105,106,117,122,138,224,241,251,269,312,362,372],reliabl:[14,48,91,93,145,379],religion:[30,284],reload:[0,2,3,7,9,12,14,15,19,20,22,25,26,27,30,31,39,41,43,44,47,48,50,52,53,55,57,61,62,72,74,76,78,82,90,92,93,95,96,98,99,100,101,103,107,112,113,114,115,125,126,128,129,131,133,134,135,137,140,141,148,149,150,151,155,166,167,174,179,180,190,194,202,203,211,212,222,230,237,241,247,248,251,268,269,271,279,281,284,290,294,303,305,307,312,321,322,324,326,350,353,357,360,366,368,370,371,372,376,388,440],reload_evennia:312,reluct:122,remain:[6,14,20,22,26,27,40,41,45,57,69,94,99,106,112,113,114,125,154,161,172,174,180,182,186,203,207,210,219,222,240,254,255,256,257,258,267,294,312,340,341,372,373,388],remaind:[22,90,210],remaining_repeat:41,remap:[84,115,360],rememb:[1,5,6,9,11,13,14,20,22,27,30,38,46,47,51,53,55,59,66,67,74,76,80,81,82,89,90,92,93,95,97,99,100,101,106,113,115,117,119,120,121,122,123,125,129,138,147,148,154,178,180,203,229,280,294,303,366,385],remind:[26,74,84,89],remit:178,remnisc:98,remot:[91,150,156,157,159,185,199,321,323,335],remov:[2,8,9,11,13,18,19,20,23,26,27,29,30,33,35,36,38,41,47,55,74,75,76,82,86,89,90,95,99,101,103,105,106,107,112,113,119,122,128,133,140,155,163,173,174,178,180,185,186,187,190,191,194,196,202,204,208,216,221,222,223,227,231,238,239,240,241,250,251,252,254,255,256,257,258,263,280,281,290,293,294,299,303,306,307,312,330,341,353,355,360,363,365,369,372,379,384,386,387,388,413],remove_alia:185,remove_backspac:387,remove_bel:387,remove_charact:128,remove_default:[20,174],remove_map:281,remove_object:281,remove_receiv:196,remove_send:196,remove_user_channel_alia:[18,194],removeth:360,renam:[5,75,99,103,107,108,115,116,125,133,180,186,294,362],render:[45,52,53,76,84,101,103,131,133,140,141,187,225,357,382,384,395,396,397,399,400,401,403,410,416,425,427,438],render_post:341,renew:[93,99,150,355],repair:[90,120],repeat:[3,5,67,74,81,100,115,120,122,128,133,135,137,153,161,166,167,201,210,239,252,302,305,312,317,336,360,368,372,376,388],repeatedli:[3,15,31,100,112,267,302,305,307,312,317,343,420],repeatlist:31,repetit:[77,100,128,239],replac:[2,18,20,22,26,27,29,30,31,32,35,36,40,43,44,49,51,59,72,75,76,77,81,82,84,91,93,94,98,101,102,107,112,115,117,118,121,125,128,133,141,145,150,156,166,172,173,174,175,178,186,187,190,191,194,201,203,205,207,212,215,221,222,223,227,230,237,238,240,241,263,266,269,270,279,280,290,294,296,298,299,324,327,340,341,351,360,365,370,371,372,374,375,387,388,416,418],replace_data:374,replace_timeslot:222,replace_whitespac:374,replacement_str:186,replacement_templ:186,replenish:[254,255,256,257,258],repli:[22,27,122,149,167,201,234,310,334,335,341,353,372],replic:[76,123,133],replica:113,repo:[7,11,63,84,98,111,120,143,388],repoint:53,report:[0,5,6,8,11,22,33,41,43,47,76,77,78,82,83,88,106,117,120,122,125,126,128,133,145,146,148,153,157,180,185,207,227,230,241,270,280,294,312,317,324,327,328,335,336,340,343,351,353,365,368,372,388],report_to:368,repositori:[2,10,63,75,77,91,111,142,144,145,156,299],repositri:63,repr:[106,388,435],reprehenderit:28,repres:[8,12,20,22,29,30,34,36,44,45,48,53,61,66,69,74,75,76,79,80,82,85,87,90,91,97,100,101,107,108,110,111,112,113,114,116,118,123,128,133,138,140,166,171,195,204,219,223,225,227,233,239,240,241,245,247,251,252,256,268,269,270,279,280,281,284,294,299,306,307,309,323,324,340,341,351,352,353,357,360,361,365,367,368,372,373,374,375,384,388,391,413],represen:113,represent:[12,13,29,34,35,44,61,66,67,69,87,92,99,113,126,138,195,227,230,241,279,298,302,321,340,341,363,369,376,410],reprocess:157,reproduc:[54,82,280,294],reput:[120,244],reqhash:[361,388],reqiur:223,request:[0,11,27,32,45,49,52,53,61,72,83,101,112,116,129,131,140,141,144,148,154,157,166,167,178,201,230,294,298,312,314,321,324,326,331,332,334,341,357,363,372,395,396,397,398,400,401,403,407,408,413,418,419,420,421,425,432,434,435,438],request_finish:45,request_start:45,requestavatarid:332,requestfactori:357,requestor:[166,355],requir:[2,5,8,13,15,16,22,26,29,30,32,33,36,38,40,47,48,49,50,51,52,53,54,58,66,71,75,76,77,78,79,80,81,82,83,84,89,99,101,105,107,120,122,123,125,128,133,135,138,139,140,141,142,143,144,145,147,150,151,153,154,159,161,179,180,185,190,195,196,199,207,208,211,212,222,223,237,239,241,251,252,256,257,269,270,279,280,282,285,289,294,298,306,312,323,324,337,345,356,361,366,371,372,373,374,375,379,383,384,385,388,395,396,397,399,400,401,403,427,433],require_singl:298,requirements_extra:0,requr:40,requri:[298,375],rerout:[52,177,181,324,404],rerun:[14,15,27,82,207],research:[122,143,229],resembl:[71,86,91],resend:22,reserv:[22,29,54,81,107,113,115,298,356,361,375,388],reserved_keyword:29,reserved_kwarg:[29,375],reset:[16,17,19,20,22,26,41,43,44,48,55,59,62,74,81,93,96,103,107,112,121,126,128,129,137,138,145,166,167,174,180,190,210,214,216,230,241,250,251,268,290,312,316,322,332,350,360,363,366,374,375,376,386,388],reset_cach:[360,363],reset_callcount:41,reset_gametim:[19,376],reset_serv:316,reset_tim:222,resid:[68,111,290],residu:[190,256],resist:[299,388],resiz:[52,99,371,374],resolut:[122,128,251,279],resolv:[0,3,11,43,93,102,115,116,122,123,128,154,238,254,255,256,257,258,410],resolve_attack:[254,255,256,257,258],resolve_combat:128,resort:[22,99,147,185,241,388],resourc:[0,8,47,49,52,53,68,72,75,84,85,92,97,107,110,111,112,113,114,115,116,117,122,133,145,154,157,251,257,278,287,303,310,341,357,367,386,439],respawn:[82,120],respect:[22,32,41,43,44,48,49,74,78,82,99,114,125,129,145,178,180,187,201,207,234,238,241,248,290,294,351,352,362,363,366,368,374,385,388,427],respond:[27,33,45,64,74,79,112,120,134,135,138,161,339,343],respons:[5,17,27,29,30,49,52,53,54,56,67,80,83,87,88,105,106,135,136,137,148,154,166,167,174,175,185,194,207,269,271,284,286,294,310,312,314,321,343,344,353,362,382,384,388,410],response_add:[395,397,400],resport:388,rest:[7,17,18,22,27,29,35,41,43,52,53,66,81,93,97,104,105,112,113,115,116,119,120,122,126,129,148,160,172,188,189,251,254,255,256,257,258,360,365,374,407,408,410,411,412,413],rest_api_en:49,rest_framework:[49,407,408,409,410,411,413],restart:[0,3,7,9,11,39,43,51,55,63,72,99,113,116,128,145,150,154,157,161,163,166,190,194,202,205,230,294,303,305,306,307,316,329,350,351,352,388],restartingwebsocketserverfactori:[167,323],restock:105,restor:[20,74,138,202,257,303,307],restrain:[180,251,289,371,388],restrict:[13,32,40,47,48,51,57,81,89,108,111,112,117,121,126,141,144,154,180,185,204,239,257,258,279,284,290,299,368,370,372,374,385],restructur:[84,97],result1:238,result2:[27,238],result:[6,8,11,13,19,20,22,27,29,30,32,40,43,44,47,49,52,54,59,63,67,72,78,82,84,94,96,99,106,107,110,111,113,114,115,117,121,122,125,126,128,129,133,135,138,141,145,154,166,172,173,175,180,187,191,194,196,201,207,208,209,211,216,223,238,239,240,241,244,251,254,255,256,257,258,269,279,280,285,287,290,294,298,299,312,321,343,360,362,365,370,371,372,374,375,379,381,382,385,388,389,391,405,435],result_nam:238,resum:[22,82,93,125,306],resurrect:267,resync:[167,321,351],ret1:375,ret:[22,191],ret_index:388,retain:[6,19,20,30,53,54,63,81,116,224,251,284,286,299,358,362,366,368,381,388],retext:84,retract:201,retreat:258,retri:312,retriev:[6,18,22,31,46,49,66,68,73,74,82,101,129,166,169,171,174,180,185,190,191,195,222,229,251,273,280,285,289,293,298,310,317,318,324,330,339,360,363,369,379,383,385,388,392,407,408,412,413,432,435,438],retriv:[167,367],retro:18,retroact:[48,99],retur:28,return_alias:280,return_appear:[80,82,129,204,216,217,222,241,262,268,282,294],return_apper:282,return_cmdset:187,return_detail:[222,269],return_dict:284,return_iter:298,return_key_and_categori:363,return_list:[29,360,363,375],return_map:81,return_minimap:81,return_obj:[13,35,360,363,383],return_par:299,return_prototyp:136,return_puppet:166,return_str:[29,279,375],return_tagobj:363,return_tupl:[35,211,360],returnvalu:[22,54],reus:[115,117,379],rev342453534:388,reveal:[82,119,204],reveng:123,reverend:199,revers:[20,22,53,59,81,93,95,137,138,141,169,185,196,250,271,279,286,293,302,357,360,362,363,365,380,413],reverseerror:[312,321],reversemanytoonedescriptor:[169,293,380],reverseproxyresourc:357,revert:[11,53,138,154,177,285],review:[9,20,72,74,83,87,107,121],revis:120,revisit:[2,372],reviu:27,revok:99,revolutionari:11,reward:127,rework:[93,113,120],rewrit:53,rfc1073:328,rfc858:334,rfc:[328,334],rfind:365,rgb:[59,115,365],rgbmatch:365,rgh:115,rhel:144,rhello:29,rhostmush:[68,71,98],rhs:[91,99,188,191],rhs_split:[180,186,188],rhslist:188,ricardo:388,riccardomurri:388,rich:[76,98,142,143,369],richard:143,rick:40,rid:[97,114],riddanc:55,riddick:223,ride:137,right:[0,3,4,5,8,9,15,22,27,29,31,32,35,40,41,49,51,52,53,54,63,74,78,79,81,82,84,86,90,91,92,93,95,97,98,99,105,106,107,110,111,112,113,115,116,119,120,123,125,129,134,137,138,140,141,144,145,148,150,153,154,174,177,180,188,190,194,199,203,207,214,216,222,223,225,230,231,238,258,263,267,268,269,271,279,280,290,299,302,352,365,366,370,374,388,389],right_justifi:40,rightmost:[82,280],rigid:98,rindex:365,ring:[117,240],rise:[20,100],risen:100,risk:[29,52,84,98,120,122,129,148,154,179,190,388],rival:81,rjust:[29,365,375],rm_attr:180,rnormal:59,rnote:190,road:[20,79,81,137,173],roam:[119,174,267],roar:81,robot:140,robust:[105,106,157],rock:[66,128,174],rocki:119,rod:174,role:[17,86,98,106,114,120,126,145,254],roleplai:[13,30,75,86,98,120,121,126,128,129,143,211,241,440],roll1:126,roll2:126,roll:[13,77,78,99,106,116,121,122,126,128,129,148,211,254,255,256,257,258,355],roll_challeng:126,roll_dic:211,roll_dmg:126,roll_hit:126,roll_init:[254,255,256,257,258],roll_result:211,roll_skil:126,roller:[78,121,122,126,128,207,211],rom:143,roof:180,room1:8,room56:14,room:[3,8,14,15,16,18,19,20,22,23,32,34,40,41,43,46,48,49,50,55,68,71,73,75,76,79,81,82,85,86,87,90,96,97,98,100,105,106,108,109,110,112,113,114,115,116,117,119,125,126,128,129,134,135,136,137,139,140,148,163,164,171,172,173,174,178,180,186,191,197,202,204,211,213,214,215,216,219,221,222,229,241,247,248,249,254,255,256,257,258,263,265,266,267,268,270,271,273,274,276,279,280,281,282,289,294,302,316,344,366,386,407,413,428,440],room_flag:97,room_lava:97,room_replac:214,room_typeclass:[271,386,428],room_x_coordin:82,room_y_coordin:82,room_z_coordin:82,roombuildingmenu:[76,202],roomnam:[99,180],roomref:137,rooms_with_five_object:110,roomstat:216,roomviewset:413,root:[0,2,4,5,6,7,9,10,14,32,36,53,66,72,75,76,84,85,87,101,103,111,133,141,142,145,148,150,153,154,156,163,164,268,294,299,312,357,369,393,406,418,440],rose:[13,35,36,48,109,110,117],roster:[75,121,254,255,256,257,258],rosterentri:75,rot:8,rotat:[18,112,216,381],rotate_flag:216,rotate_log_fil:381,rotatelength:381,rough:[84,120],roughli:[99,120,388],round:[5,17,29,240,251,258,343,374,375],rounder:240,rout:[51,80,82,97,108,137,166,273,279,280],router:[154,409,412],routerlink:82,routermaplink:[82,280],routin:[241,347,385,388],row:[51,56,59,66,74,80,81,84,87,99,101,110,128,131,138,279,282,374,388],rpcharact:241,rpcommand:241,rpg:[99,102,112,113,120,126,211,258],rpi:143,rplanguag:[121,163,164,197,241],rpm:148,rpobject:241,rpsystem:[84,121,163,164,197,237,240],rpsystemcmdset:241,rred:365,rsa:[332,333],rspli8t:106,rsplit:[129,365],rss2chan:[107,155,185],rss:[9,143,159,163,164,167,185,193,308,317,320,330,440],rss_enabl:[155,185],rss_rate:167,rss_update_interv:185,rss_url:[155,167,185],rssbot:167,rssbotfactori:331,rsschan:185,rssfactori:331,rssreader:331,rst:84,rstop:190,rstrip:[106,365],rsyslog:244,rtest2:59,rtext:[105,375],rthe:76,rthi:[59,115],rtype:357,rubbish:177,rubbl:82,rubi:87,rudimentari:267,ruin:[119,222,269],rule:[4,8,11,14,15,22,32,55,59,86,90,99,112,116,120,121,127,138,143,202,239,240,251,254,255,258,286,366,440],rulebook:[122,128],rumor:30,rumour:119,run:[0,2,5,6,9,10,11,12,13,14,15,16,18,19,20,25,27,29,30,32,38,39,40,41,43,47,48,49,50,51,52,53,54,61,63,66,70,74,75,77,79,81,82,84,85,87,90,91,92,93,97,98,100,101,103,105,106,107,108,110,112,113,114,115,116,118,119,120,121,122,123,125,126,129,131,133,137,138,139,140,141,143,144,145,146,147,148,150,152,154,157,160,161,163,166,167,171,172,174,175,179,180,185,186,187,190,191,194,207,215,230,231,241,244,248,251,252,254,255,256,257,258,266,271,279,280,289,290,294,298,299,302,305,306,307,312,316,318,322,329,330,337,341,343,346,350,351,355,357,362,365,366,370,372,373,375,376,381,385,386,388,413,438,439,440],run_async:[54,388],run_connect_wizard:312,run_custom_command:312,run_dummyrunn:312,run_evscaperoom_menu:215,run_exec:372,run_exec_then_goto:372,run_init_hook:350,run_initial_setup:350,run_menu:312,run_option_menu:215,run_start_hook:[48,362],rundown:118,runexec:372,runexec_kwarg:372,runnabl:40,runner:[2,5,7,268,343],runsnak:5,runsnakerun:5,runtest:[191,200,209,220,231,246,250,264,277,338,348,380,386,392,411,422,428],runtim:[19,22,55,100,175,202,270,376,388],runtimeerror:[126,166,167,207,227,230,233,239,240,251,278,281,298,330,360,372,375,388],runtimewarn:[278,298],rusernam:27,rush:93,russian:63,rusti:[49,105],ruv:2,ryou:76,s3boto3storag:199,s3boto3storagefil:199,s3boto3storagetest:200,s3boto3testcas:200,sad:[140,335,372],safe:[0,6,11,13,20,36,43,52,53,70,77,79,82,87,94,97,104,121,122,140,150,159,166,177,201,290,307,321,353,357,362,366,369,375,379,388],safe_convert_input:388,safe_convert_to_typ:[29,388],safe_ev:388,safe_join:199,safer:[14,55],safest:[44,74,154,362],safeti:[12,36,48,97,121,129,154,180,201,293,366],sai:[0,5,8,9,11,15,17,18,19,20,22,27,32,36,38,40,48,50,51,53,54,55,59,61,71,73,74,76,79,82,87,91,93,95,96,97,98,99,100,101,106,107,108,110,113,115,116,121,122,123,125,126,128,129,134,135,138,142,148,154,174,186,194,201,203,211,214,216,223,233,240,241,251,252,263,269,294,372,375],said:[0,8,27,46,54,64,74,76,79,80,81,89,96,98,106,113,115,121,122,135,141,172,185,189,241,271,279,294,324,362,372],sake:[14,72,98,115,120,122,123,138,192,212,437,438],sale:105,salt:[78,207],same:[0,3,5,6,7,8,9,11,12,13,14,15,16,18,19,20,22,26,29,30,31,32,33,34,36,40,41,43,44,46,47,48,50,52,53,54,55,56,57,59,61,62,63,64,66,67,68,69,74,75,76,77,81,82,83,84,86,87,90,92,93,96,98,99,100,101,103,105,106,107,108,110,111,112,113,114,115,116,117,122,123,125,126,128,129,133,137,138,140,141,142,145,148,150,154,155,156,160,161,166,171,172,173,174,175,178,180,185,188,189,190,191,199,200,202,204,207,210,216,217,221,222,225,229,230,234,239,240,241,247,249,251,252,254,255,256,257,258,267,269,270,271,273,280,282,284,289,294,298,299,302,303,307,316,321,333,336,337,351,352,353,355,357,360,361,362,363,365,366,368,372,373,374,375,376,381,382,388,391,396,403,413,427,438],sampl:[2,97,144,156,252],san:225,sand:[100,208],sandi:81,sane:[1,82,84,120,143,280,438],sanit:[427,438],saniti:[8,75,80,81,82,115,382],sarah:[71,186],sat:[73,90,216],satisfi:[68,188,360],satur:157,sauc:115,save:[2,3,6,11,16,19,22,26,27,33,34,35,36,40,41,44,45,46,47,48,50,53,66,74,75,76,79,87,90,93,97,107,109,112,113,115,128,129,140,146,147,150,156,157,161,166,177,180,190,194,196,200,202,230,240,290,293,294,296,298,299,303,305,306,307,310,317,330,345,350,357,360,362,369,370,379,382,383,384,388,395,396,397,400,401,403],save_a:[397,399,400,401,402],save_as_new:[396,403],save_buff:370,save_data:382,save_for_next:[22,175],save_handl:382,save_kwarg:383,save_model:[395,397,400,401],save_nam:307,save_on_top:[397,399,400,401,402],save_prototyp:298,save_recip:238,savefunc:[26,370,383],savehandl:383,saver:369,saverdict:369,saverlist:369,saverset:369,saveyesnocmdset:370,savvi:123,saw:[54,79,101,113,115],say_text:135,saytext:241,scale:[7,50,59,84,98,112,120,126,145,240,439],scalewai:154,scam:122,scan:[82,144,171,267,269,279,280,282],scarf:204,scari:[113,115],scatter:[256,366],scedul:376,scenario:[99,277],scene:[6,13,31,40,46,59,84,86,90,116,119,122,126,128,138,239,269,302,307,379],schedul:[19,100,210,230,306,376],schema:[11,48,66,87,89,388],scheme:[22,59,66,92,115,148,180,190,365],school:122,sci:82,scienc:80,scientif:143,scipi:280,scissor:[78,128],scm:75,scope:[31,50,86,87,93,120,121,122,125,141,239,368],score:[99,217,388],scraper:433,scratch:[9,10,53,61,79,98,99,121,122,129,133,148,215,251,281,316],scream:119,screen:[6,22,24,27,28,30,31,40,41,43,44,56,59,62,82,103,105,112,114,121,140,156,192,212,225,258,317,332,373,375,388,395,440],screenheight:[31,317],screenread:[31,317,340,341],screenshot:140,screenwidth:[31,175,317],script:[2,5,7,10,13,14,15,19,24,29,32,33,34,36,40,43,44,45,46,47,48,49,51,66,68,77,82,85,86,97,98,100,105,107,108,111,112,113,117,119,122,123,128,134,136,139,140,148,151,154,157,161,163,164,166,167,179,180,190,195,196,197,201,210,213,222,226,227,233,238,239,240,248,254,255,256,257,258,260,263,269,271,281,293,294,298,299,312,345,350,366,367,368,375,376,383,385,386,388,393,394,407,410,413,418,428,440],script_path:180,script_typeclass:[264,386,428],scriptadmin:401,scriptattributeinlin:401,scriptbas:305,scriptclass:304,scriptdb:[48,85,163,302,359,401,407,410],scriptdb_db_attribut:401,scriptdb_db_tag:401,scriptdb_set:[169,293,360,363],scriptdbfilterset:[407,413],scriptdbmanag:[301,302],scriptdbseri:[410,413],scriptdbviewset:413,scriptform:401,scripthandl:[163,164,300],scriptkei:180,scriptlistseri:[410,413],scriptmanag:301,scriptnam:367,scripttaginlin:401,scroll:[6,28,30,111,115,129,148,373],scrollback:18,scrub:353,sdesc:[77,97,121,237,241],sdesc_regex:241,sdescerror:241,sdeschandl:241,sdk:148,sea:[81,119],seal:121,seamless:241,seamlessli:39,search:[3,8,11,12,14,18,22,26,29,30,34,35,36,40,41,43,48,63,73,74,75,76,82,86,87,90,94,99,102,107,110,111,112,113,114,115,118,122,123,125,126,128,129,133,141,163,164,166,171,173,175,180,185,187,190,194,195,201,216,219,229,234,238,241,254,255,256,257,258,269,271,273,279,280,282,284,285,286,287,289,294,298,304,318,360,361,362,363,364,365,368,370,375,388,407,416,440],search_:[19,110,117],search_account:[45,99,117,163,294,385],search_account_tag:385,search_at_multimatch_input:294,search_at_result:[241,294],search_channel:[163,185,195,385],search_channel_tag:385,search_field:[187,395,397,399,400,401,402,403],search_for_obj:180,search_help:[30,163,285],search_help_entri:385,search_helpentri:285,search_index_entri:[175,177,178,179,180,185,186,187,188,189,190,191,192,201,202,203,204,207,211,212,214,222,223,224,228,234,237,238,241,247,248,249,252,254,255,256,257,258,263,267,268,269,270,273,284,286,287,294,343,370,372,373],search_messag:[34,163,195,385],search_mod:241,search_multimatch_regex:294,search_object:[13,14,18,19,48,81,113,115,117,137,163,166,385],search_object_attribut:117,search_objects_with_prototyp:298,search_prototyp:298,search_script:[41,82,163,385],search_script_tag:385,search_tag:[46,73,110,117,163,385],search_tag_account:46,search_tag_script:46,search_target:234,searchabl:[111,229],searchdata:[166,241,294,385],searching_cal:70,season:[77,120,121,123,222],seat:120,sec:[31,54,93,100,210,324,376],secmsg:381,second:[5,8,13,15,19,20,22,27,29,32,38,40,41,43,47,54,56,59,66,67,74,76,82,84,90,91,93,95,100,101,104,105,106,107,113,115,117,121,128,129,136,137,138,139,141,148,154,157,161,166,167,172,180,185,187,191,207,210,221,229,230,233,241,248,251,254,255,256,257,258,260,267,279,289,294,299,306,307,312,317,326,331,344,355,365,368,372,376,381,388,389],secondari:[103,352],secondli:[36,109],secreci:11,secret:[75,112,120,145,149,151,211,312],secret_kei:[75,199],secret_key_nam:199,secret_set:[75,89,112,145,149,312],sect_insid:80,section:[0,2,5,8,13,16,20,22,25,27,29,30,32,36,41,48,50,51,53,61,66,69,75,76,81,82,84,89,90,91,93,95,99,100,101,102,108,110,111,113,114,115,117,118,122,140,145,148,153,154,156,160,187,222,240,299,365,366,372,389,407],sector:80,sector_typ:80,secur:[0,13,14,29,32,40,59,68,76,98,105,129,140,141,148,154,159,163,164,175,179,190,194,197,199,284,286,294,332,362,375,381,388,427,440],secure_attr:32,secure_url:199,security_token:199,security_token_nam:199,sed:2,sedat:251,see:[0,3,4,5,7,8,9,10,11,12,13,14,15,18,19,20,21,22,25,26,27,28,29,30,31,32,34,35,36,38,40,41,43,44,47,48,50,51,52,53,54,55,57,59,61,63,66,67,68,69,72,74,75,76,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,103,104,106,107,108,110,111,112,113,114,115,116,118,119,121,122,123,125,128,129,131,133,134,135,136,137,138,139,140,141,144,145,148,149,150,151,152,153,154,155,156,157,161,166,175,177,179,180,185,186,187,188,190,191,194,197,199,201,202,207,208,212,214,216,219,221,225,227,234,238,239,240,241,245,248,249,251,252,254,255,256,257,258,260,263,267,269,270,271,273,278,279,280,282,284,286,287,293,294,306,310,312,314,315,323,324,325,326,328,332,333,335,337,339,340,341,343,344,352,353,357,360,365,368,369,370,371,374,375,383,384,388,391,421,427,432,435,438,439],seed:[78,207,209,280],seek:[119,216,290,381],seem:[20,40,51,76,89,95,97,118,120,123,125,129,137,146,148,153,161,360,366],seen:[8,11,20,27,44,61,74,76,79,80,81,93,98,99,101,103,106,107,110,113,114,116,118,125,136,137,138,202,324,374],sefsefiwwj3:75,segment:[137,357],seldomli:[175,191],select:[7,11,12,19,20,27,38,43,44,50,51,52,53,66,73,76,81,84,101,105,108,121,129,136,140,147,148,172,173,178,215,252,255,362,370,372,405,410],selet:372,self:[3,8,12,13,14,19,20,22,26,27,32,35,36,38,40,41,47,48,50,54,61,63,66,71,74,75,76,78,80,82,84,90,91,92,93,94,95,96,97,98,99,100,103,104,105,107,108,113,114,115,116,117,121,122,125,126,128,129,134,135,136,137,139,141,148,151,152,166,167,169,171,173,174,175,177,180,181,185,188,190,191,194,196,201,202,203,204,207,211,214,215,216,219,222,223,227,234,237,238,241,251,252,254,255,256,257,258,260,263,266,267,268,269,270,271,273,278,281,284,289,294,306,310,312,314,315,319,323,324,330,332,333,335,337,339,340,341,343,351,352,353,360,362,363,365,370,372,373,375,379,382,383,384,388,421],self_pid:388,selfaccount:99,selfself:41,sell:[105,121,122,142,201],semi:[5,108,115,139,221,240],semicolon:[32,290,368],send:[5,12,18,19,22,27,28,29,31,32,36,38,41,44,45,47,49,51,52,53,55,64,69,73,76,78,82,87,88,91,93,99,103,106,107,112,114,117,122,126,128,129,135,136,138,140,150,151,157,159,161,166,167,174,175,178,185,191,194,195,196,199,201,207,216,223,224,234,241,245,258,260,262,266,267,279,280,294,306,307,309,312,314,315,317,321,322,323,324,325,327,330,331,332,334,335,336,338,340,341,343,344,351,352,353,354,365,368,369,372,374,388],send_:[61,64,330],send_adminportal2serv:322,send_adminserver2port:309,send_authent:323,send_channel:[323,324],send_default:[61,64,323,324,330,332,335,340,341],send_defeated_to:267,send_emot:241,send_functioncal:321,send_game_detail:314,send_heartbeat:323,send_instruct:312,send_mail:234,send_msgportal2serv:322,send_msgserver2port:309,send_p:324,send_privmsg:324,send_prompt:[332,335,340,341],send_random_messag:260,send_reconnect:324,send_request_nicklist:324,send_status2launch:322,send_subscrib:323,send_testing_tag:266,send_text:[61,64,332,335,340,341],send_to_online_onli:[18,194],send_unsubscrib:323,sender:[18,34,45,166,167,194,195,196,201,216,241,262,294,323,354,368,379,385,397],sender_account_set:169,sender_extern:196,sender_object:354,sender_object_set:293,sender_script_set:302,sender_str:194,senderobj:368,sendlin:[332,335,340],sendmessag:[61,223],sens:[20,32,36,52,53,54,63,66,76,82,83,97,99,116,125,137,145,173,251,263,368,369,372],sensibl:[18,30,154],sensit:[13,27,30,32,99,110,195,199,202,210,222,230,245,246,282,285,361,376,385],sensivit:239,sent:[5,18,27,29,31,34,44,45,51,53,64,67,69,91,99,101,106,112,115,150,166,167,171,185,191,194,195,196,202,212,216,223,230,234,245,262,264,270,294,309,312,314,317,321,322,323,324,332,336,340,351,353,360,372,385,410],sentenc:[63,79,106,216,233,240,241],senwmaplink:[82,280],sep:[63,365,388],sep_kei:[76,202],separ:[5,7,11,13,14,15,18,20,22,30,32,33,35,36,39,41,44,46,47,51,53,61,66,71,73,77,78,79,82,83,84,87,93,98,99,100,105,106,107,108,110,114,115,116,120,121,129,133,137,138,140,144,145,151,152,153,155,157,172,174,175,180,186,187,188,190,191,202,207,230,233,234,240,241,252,254,255,256,257,258,269,271,275,279,280,282,285,290,293,294,298,303,307,331,336,341,353,365,366,368,371,375,385,388,396],separatli:93,sepat:207,seq:35,sequenc:[14,15,16,22,32,35,36,52,54,69,84,87,103,112,119,122,125,138,175,179,191,194,207,210,219,241,279,290,310,316,365,366,372,374,387,388],sequenti:122,seri:[4,11,18,27,59,115,121,122,123,125,133,143,374],serial:[13,50,64,163,164,297,306,307,330,369,382,384,388,393,395,397,400,401,406,413],serializ:341,serialized_str:[395,397,400,401],serializer_class:413,seriou:[95,161],serious:148,serv:[43,52,53,64,72,80,81,87,107,112,116,117,122,150,157,173,199,256,341,357,366,368,425],server:[0,2,5,6,7,8,9,11,12,13,14,16,18,19,20,22,25,27,29,30,31,32,33,36,40,41,45,47,48,50,51,52,53,54,55,57,61,62,64,66,67,69,72,74,75,78,81,82,83,84,85,86,87,88,89,90,91,92,93,97,98,99,100,101,103,106,107,111,113,114,115,116,118,119,122,123,125,126,128,133,135,137,140,141,142,143,147,148,149,150,151,152,153,156,157,161,163,164,166,167,174,178,180,185,190,192,194,197,199,202,205,207,212,214,222,230,237,241,242,243,244,247,248,251,267,268,269,271,274,275,281,284,294,302,303,305,307,358,362,366,368,369,372,376,379,381,388,393,394,410,418,439,440],server_connect:330,server_disconnect:330,server_disconnect_al:330,server_epoch:[19,376],server_l:322,server_logged_in:330,server_nam:43,server_pid:[322,388],server_receive_adminportal2serv:309,server_receive_msgportal2serv:309,server_receive_statu:309,server_reload:[303,307],server_run:312,server_runn:350,server_servic:388,server_services_plugin:[43,61,112],server_services_plugin_modul:61,server_session_class:44,server_session_sync:330,server_st:312,server_twistd_cmd:322,server_twisted_cmd:322,serverconf:[178,307],serverconfig:[306,307,318,319],serverconfigadmin:402,serverconfigmanag:[318,319],serverfactori:[322,332,335],serverload:190,serverlogobserv:381,servermsg:381,servernam:[31,43,53,75,89,144,147,154],serverprocess:190,serversess:[44,61,107,163,164,245,290,308,330,353,360],serversessionhandl:[44,61,353],serverset:[32,185,289],servic:[11,43,55,61,107,112,140,145,150,151,154,156,157,161,163,164,190,199,308,309,312,313,321,322,329,350,357,388],sessdata:[352,353],sessid:[12,22,44,129,293,294,309,321,322,330,353],session:[8,12,16,20,22,24,27,29,31,33,36,41,45,55,61,67,85,98,103,104,106,107,111,113,114,122,129,146,156,163,164,166,167,169,171,172,173,175,177,178,181,183,188,192,212,215,223,224,244,245,246,266,293,294,296,297,298,303,308,309,317,321,322,323,324,330,331,332,335,340,341,350,351,353,355,370,372,373,375,388,389,410,440],session_data:353,session_from_account:353,session_from_sessid:353,session_handl:[44,163],session_id:410,session_portal_partial_sync:353,session_portal_sync:353,sessioncmdset:[20,114,183],sessionhandl:[61,64,163,164,166,294,308,317,323,324,330,331,351,352],sessionid:330,sessions_from_account:353,sessions_from_charact:353,sessions_from_csessid:[330,353],sessions_from_puppet:353,sessionsmain:85,sesslen:294,set:[0,2,3,5,6,9,10,12,13,14,15,16,17,18,19,21,22,24,25,26,28,29,30,31,34,35,36,38,40,41,44,45,46,48,49,50,51,53,54,55,56,57,59,61,62,63,64,66,68,69,70,71,72,74,76,77,78,79,81,82,83,84,85,86,87,90,91,93,94,95,96,97,98,99,101,104,105,106,107,108,109,110,111,112,114,115,116,120,123,125,127,128,131,133,134,136,137,138,140,141,144,145,146,148,150,151,153,156,159,160,161,163,165,166,167,169,171,172,173,174,175,177,178,180,181,182,183,184,185,187,188,191,193,194,199,200,202,203,204,205,207,209,210,211,212,214,215,216,217,219,220,222,223,224,228,230,233,237,238,240,241,244,247,248,250,251,252,254,255,256,257,258,263,264,266,267,268,269,270,271,273,274,275,276,277,279,280,282,284,289,290,293,294,297,298,299,304,305,306,307,309,311,312,316,317,318,319,322,323,325,326,328,329,332,334,335,337,338,343,344,346,348,350,351,352,353,355,357,358,360,361,362,363,365,366,367,368,369,370,371,372,373,374,375,376,379,380,381,382,383,384,385,386,387,388,389,396,399,400,402,403,408,409,411,412,413,416,420,427,428,435,440],set_active_coordin:271,set_al:267,set_alias:175,set_atribut:413,set_attr:180,set_attribut:413,set_cach:360,set_character_flag:216,set_class_from_typeclass:362,set_dead:267,set_desc:185,set_descript:27,set_detail:[222,269],set_flag:[216,217],set_game_name_and_slogan:420,set_gamedir:312,set_kei:175,set_lock:185,set_log_filenam:194,set_nam:27,set_password:166,set_posit:216,set_task:230,set_trac:[3,163],set_webclient_set:420,setcolor:103,setdesc:[98,107,186,247],setflag:[214,216],setgend:224,sethelp:[30,107,108,187,284],sethom:[107,180],setlock:247,setnam:61,setobjalia:180,setperm:178,setspe:248,sett:155,settabl:[31,66,113,335],setter:95,settestattr:26,settingnam:32,settings_chang:45,settings_default:[8,43,89,111,163,164,381,388],settings_ful:43,settings_mixin:[5,163,164,308,342],settl:[81,128],setup:[0,5,6,8,11,16,30,43,49,53,61,63,66,71,82,84,99,105,120,128,136,150,151,153,156,161,166,177,185,191,200,209,210,220,231,250,263,264,266,269,277,287,294,305,316,329,338,343,347,348,350,357,360,362,379,380,386,411,428,439,440],setup_str:347,setuptool:[148,153],sever:[2,3,13,15,20,22,26,28,32,40,41,43,48,49,51,53,57,69,74,76,82,84,93,97,98,100,101,110,115,118,121,122,127,128,143,179,180,188,190,222,229,230,267,269,294,338,339,363,368,388],sewag:82,sex:224,shadow:30,shall:[138,141],shaman:[40,98],shape:[76,81,95,99,108,120,208,271,374],sharabl:40,share:[2,3,18,20,32,44,46,48,52,66,72,75,79,83,87,91,98,112,118,122,128,140,148,149,154,157,229,230,299,307,343,360,361,363,374,388,395,410,413,421],shared_field:410,sharedloginmiddlewar:421,sharedmemorymanag:[361,378],sharedmemorymodel:[196,286,360,362,379,380],sharedmemorymodelbas:[169,196,286,293,302,360,362,379,380],sharedmemorystest:380,sharp:208,shaw:143,she:[22,30,74,76,97,106,121,138,202,224,240,391],sheer:180,sheet:[27,51,84,121,122,140,141,145,371],sheet_lock:99,shell:[0,2,5,9,35,48,66,68,91,98,99,115,145,148,150,153,154,156,157,161,332,360],shell_plu:0,shield:[66,93],shift:[15,16,19,68,82,230,268,285,388],shiftroot:268,shine:[82,90,269],shini:[49,388],shinier:49,ship:[81,86,87,108,119,143,153],shire:100,shirt:204,shoe:204,shoot:[90,257,258,371],shop:[27,68,98,122,440],shop_exit:105,shopcmdset:105,shopkeep:[102,121],shopnam:105,shopper:105,short_descript:147,shortcom:105,shortcut:[4,18,19,20,22,29,45,48,71,74,76,78,84,93,101,106,111,115,128,131,140,141,145,156,163,167,174,175,180,185,202,227,271,290,294,382,388],shorten:[3,48,79,299,410],shorter:[43,48,61,68,82,113,125,134,135,139,194,240,360,361,368,381],shortest:[82,95,241,273,277,279,280],shorthand:[36,138,180],shortli:[74,76,125],shortsword:110,shot:257,should:[0,3,5,6,7,8,9,10,11,12,13,14,15,16,18,19,20,22,27,29,30,31,32,34,36,38,40,41,43,44,45,46,47,48,50,51,53,54,55,56,57,59,61,62,63,64,66,67,68,69,71,72,73,74,75,76,77,78,79,81,82,83,84,86,87,89,91,93,95,98,99,100,101,103,104,105,106,107,108,110,112,113,114,115,116,117,118,119,120,121,123,125,126,128,129,131,133,137,138,140,141,144,145,146,148,149,150,152,153,154,155,156,157,160,161,166,167,169,171,173,174,175,177,179,180,181,184,185,187,188,190,191,194,196,199,200,202,204,207,208,209,210,214,216,217,219,221,222,227,230,233,234,237,238,239,240,241,244,250,251,254,255,256,257,258,266,267,269,270,273,275,277,279,280,281,282,284,289,290,293,294,296,298,299,302,305,306,307,310,311,312,316,319,323,329,332,335,336,338,340,341,343,344,350,351,352,353,355,356,358,360,362,363,365,366,368,369,370,372,373,374,375,376,381,382,383,384,386,388,389,395,396,403,427,428,433],should_join:194,should_leav:194,should_list_top:187,should_show_help:187,shoulddrop:[258,294],shoulder:[99,204],shouldget:[258,294],shouldgiv:[258,294],shouldmov:[254,255,256,257,258,294],shouldn:[14,74,76,90,93,99,138,202,230,233,257,343],shouldrot:381,shout:[93,214,216],shove:90,show:[0,3,6,7,8,9,11,14,15,18,19,22,25,27,28,29,30,41,43,44,50,51,53,55,58,59,61,66,71,74,76,77,78,79,80,81,82,83,84,86,87,88,94,95,98,99,100,101,103,104,105,106,107,108,112,113,114,115,116,118,119,120,121,122,124,125,126,127,128,130,132,133,134,135,136,138,140,141,146,147,148,150,151,154,155,157,161,166,177,178,180,185,186,187,188,190,192,201,203,204,211,212,214,222,223,225,237,251,252,257,258,263,269,270,271,273,277,279,280,282,284,294,296,298,299,310,312,321,370,372,381,382,383,388,427],show_change_link:395,show_foot:373,show_map:80,show_non_edit:298,show_non_us:298,show_valu:225,show_version_info:312,show_warn:312,showcas:[20,81,112,119],shown:[25,27,30,40,41,50,58,74,75,76,80,89,91,93,98,100,113,125,137,140,147,175,178,185,189,191,202,204,207,221,239,241,263,268,279,280,294,312,372,373,416],showtim:100,shrink:[114,374],shrug:79,shuffl:19,shun:[0,68,154],shut:[5,43,51,74,89,93,115,156,166,190,294,305,307,312,314,321,322,329,330,350,353],shutdown:[5,20,41,44,55,57,99,107,161,166,167,190,307,312,321,322,329,350,351,362,368,372],shy:[0,71,120,123],sibl:[41,54,98,116],sid:178,side:[2,8,13,31,41,44,46,51,53,64,74,77,80,82,84,99,106,110,121,122,126,138,140,146,166,167,169,186,188,196,201,211,247,280,286,293,302,309,321,322,330,333,336,337,340,351,352,353,360,362,363,365,374,380],sidebar:53,sidestep:57,sidewai:374,sigint:312,sign:[7,15,47,64,74,79,82,106,108,110,112,117,129,139,154,185,216,222,279,294,307,360,365,389],signal:[5,24,161,163,164,254,255,256,257,258,278,308,312,335,341,343,379,440],signal_acccount_post_first_login:45,signal_account_:45,signal_account_post_connect:45,signal_account_post_cr:45,signal_account_post_last_logout:45,signal_account_post_login:45,signal_account_post_login_fail:45,signal_account_post_logout:45,signal_account_post_renam:45,signal_channel_post_cr:45,signal_helpentry_post_cr:45,signal_object_:45,signal_object_post_cr:45,signal_object_post_puppet:45,signal_object_post_unpuppet:45,signal_script_post_cr:45,signal_typed_object_post_renam:45,signatur:[22,29,126,175,219,227,251,278,284,306,310,312,314,315,323,332,333,335,337,340,341,360,365,372,383,384,421],signature_vers:199,signed_integ:389,signedinteg:382,signedon:324,signifi:[15,289,360],signific:[6,29,82,191,375],significantli:26,signup:89,silenc:[185,314],silenced_system_check:8,silent:[54,100,135,178,185,263,316,324],silli:[36,40,110],silmarillion:117,silvren:154,similar:[0,7,13,14,22,27,30,36,48,49,51,52,53,66,71,73,74,76,82,86,87,90,91,99,108,113,119,120,126,133,137,150,154,166,175,177,191,194,202,207,223,240,254,255,256,257,258,271,286,294,353,363,368,372,388,410,436],similarli:[46,82,99,100,154,251,255,270,396,403,410],simpl:[0,12,14,15,16,17,20,22,25,26,29,30,31,36,40,44,46,53,54,61,63,66,67,68,72,74,75,78,79,80,81,82,84,86,87,88,89,91,92,94,95,97,98,99,101,103,105,106,107,113,114,116,117,119,120,121,125,126,127,128,129,130,134,135,136,138,139,140,150,154,155,156,157,180,194,199,201,202,203,207,212,214,216,222,223,224,229,234,238,239,240,241,247,248,249,251,252,254,255,256,257,258,260,262,263,267,268,269,271,277,283,293,294,299,305,322,331,333,366,367,372,375,388,424,425,427,440],simple_ev:29,simpledoor:[163,164,197],simpleev:29,simplemu:146,simpleobjectdbseri:410,simpler:[16,54,84,97,179,180,369,436],simpleresponsereceiv:314,simplest:[53,93,99,107,126,128,154,174,366,389],simpli:[8,9,11,13,14,17,20,27,32,38,40,43,46,48,53,55,59,61,64,73,76,80,83,84,90,91,93,95,99,103,105,108,111,114,120,121,125,126,129,135,137,139,144,145,148,151,152,157,166,173,174,175,191,192,194,202,212,222,231,241,248,252,254,255,256,257,258,262,263,268,279,284,286,294,330,360,362,366,367,371,373,388],simplic:[76,95,138,192,212,268],simplif:[122,128],simplifi:[5,54,63,81,101,113,128,135,156,227],simplist:[51,128,129,139,240,249],simul:[5,22,116,122,126,248],simultan:[67,99,122,128,388],sinc:[0,3,5,6,8,11,13,14,15,18,19,20,22,25,26,27,29,30,31,32,33,34,36,41,43,47,48,52,53,54,57,59,61,63,64,66,67,72,74,75,76,80,81,82,84,86,87,89,90,91,92,93,95,96,97,98,99,100,101,105,106,107,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,125,128,129,131,135,137,138,140,141,145,147,150,154,156,161,166,167,169,173,174,175,180,188,189,190,191,195,201,202,203,207,210,216,222,234,241,252,254,255,256,257,258,263,268,269,275,279,280,289,294,298,299,303,306,307,312,314,317,329,334,336,350,351,353,355,360,361,362,366,367,368,370,372,376,379,381,384,385,386,388,396,403,427],singl:[5,8,9,15,20,22,27,29,34,35,41,44,46,48,54,56,64,67,68,71,74,76,77,81,82,83,84,86,87,96,98,99,110,114,115,116,119,121,122,126,145,150,154,166,178,180,185,186,190,196,202,208,239,244,251,252,254,255,256,257,258,269,270,271,277,279,280,282,294,298,299,306,307,344,351,353,360,361,363,365,366,371,372,374,388,391,427],single_type_count:204,singleton:[33,44,47,82,303,306,367],singular:[84,99,294,391,392],sink:0,sint:28,sir:79,sit:[13,15,18,22,48,64,86,93,107,112,114,115,116,122,125,129,137,148,154,188,191,194,216,219,233,234,241,268,269,280,290,304,307,325,368,383,386],sitabl:48,sitat:269,site:[6,17,32,39,50,53,56,81,83,101,140,141,143,144,145,150,151,154,155,156,157,280,357,398,418],site_head:[50,418],site_id:53,sitsondthi:125,sitsonthi:125,sittabl:[216,440],sittablein:125,sitter:125,situ:[13,362,369],situat:[3,11,13,22,29,30,41,44,48,52,63,64,66,74,76,79,83,100,114,117,125,174,175,180,217,229,379],six:[106,126,211,252],sixti:100,sizabl:199,size:[3,6,51,56,68,80,81,82,99,123,146,163,199,200,271,279,280,314,328,365,371,373,374,379,381,388],size_limit:388,skeleton:129,sketch:128,skill:[8,86,88,92,93,94,102,110,112,115,120,121,126,128,137,140,141,143,161,208,240,241,251,282,371],skill_combat:126,skill_craft:78,skillnam:126,skillrecip:78,skim:[110,123],skin:[40,208],skip:[0,7,11,18,20,22,40,47,53,67,80,82,100,107,108,110,112,114,116,120,123,153,156,166,179,180,199,208,294,360,369,388,405],skip_cal:216,skipkei:341,skippabl:71,skull:40,sky:[41,139],slack:143,slam:223,slash:[53,84,86,108,118,119,126,128,200,268],slate:[81,114],sleep:[22,29,54,93,122,126],slew:[126,153,366],slice:[177,365,373],slice_bright_bg:177,slice_bright_fg:177,slice_dark_bg:177,slice_dark_fg:177,slide:[208,263],slider:53,slight:[106,144,210,230],slightli:[3,30,100,121,128,129,143,148,196,222,255,270,395,438],slip:387,slogan:75,slot:[53,77,99,141,222,223,251,255,257,299,388],slow:[5,19,121,128,190,195,248,267,271,275,280,298,325,331,365,385,388],slow_exit:[163,164,190,197],slower:[5,41,100,122,154],slowexit:248,slowli:[143,251,439],slug:[175,194,284,286,362,435,438],slugifi:[432,435],slugify_cat:435,small:[5,6,8,9,15,16,22,34,52,56,68,78,81,82,83,86,88,89,91,94,98,99,101,102,103,105,106,119,120,121,122,123,125,129,130,143,148,154,155,207,211,251,257,263,271,273,274,277,279,335,370,371,374,388],smaller:[14,15,56,84,251,277,374],smallest:[38,99,100,154,210,240,251,371,388],smallshield:66,smart:[106,271,280],smarter:40,smartmaplink:280,smartreroutermaplink:280,smartteleportermaplink:280,smash:263,smaug:[107,113,114,116],smedt:391,smell:[82,120,216],smellabl:216,smelli:40,smile:[22,29,113,121,186,214,392],smith:371,smithi:93,smoothi:238,smoothli:141,snake:[53,133],snap:104,snapshot:11,snazzi:142,sneak:290,snippet:[14,20,32,40,52,54,59,86,87,90,107,121,190,321,387,388],snonewaymaplink:[82,280],snoop:[150,157],snow:207,snowbal:207,snuff:0,soak:114,social:[86,122,151],socializechat:344,societi:110,sofa:125,soft:[60,87,89,240,440],softcod:[29,71,122],softli:142,softwar:[2,11,148,154],solar:100,soldier:[105,116],sole:[77,98,101,167],solid:[59,80,86,123],solo:[112,122,148],solut:[8,15,19,30,47,48,74,75,81,82,91,93,95,97,101,105,106,119,122,125,126,135,137,154,157,189,279,280,290],solv:[6,19,77,80,81,82,90,96,102,119,120,148,219,238,268,279],some:[0,1,2,3,6,7,8,9,11,13,14,15,16,18,19,20,22,26,27,29,30,31,32,34,35,36,38,40,41,43,44,45,46,47,48,49,50,51,53,55,56,59,61,63,64,66,68,69,74,75,76,78,79,80,81,82,83,84,86,87,88,89,90,91,92,93,98,99,100,101,102,104,105,106,107,108,109,110,112,113,114,116,117,118,119,120,123,124,125,126,127,128,129,131,133,134,135,137,138,140,141,142,143,144,145,146,148,150,152,153,154,157,159,160,161,166,174,175,180,182,185,186,189,190,194,195,199,201,202,203,207,212,216,219,230,233,239,240,247,251,252,255,256,257,258,263,266,268,269,270,271,280,290,294,298,299,302,314,316,321,324,350,360,362,365,366,371,372,375,376,379,381,382,388,391,395,400,413,427,438,440],some_long_text_output:373,some_modul:111,somebodi:74,someclass:111,somehow:[22,35,53,61,69,73,125,126,154,204,370],someon:[22,32,45,47,50,74,79,80,93,99,105,107,110,115,123,125,134,135,154,157,166,186,204,263,267,268,294],somepassword:145,someplac:267,someth:[5,8,9,13,15,18,19,22,27,28,29,30,32,36,40,41,43,45,47,48,50,51,52,54,55,59,61,64,66,68,71,72,74,75,76,78,79,80,81,82,84,86,87,88,89,91,93,94,95,96,97,98,99,100,101,104,105,106,107,108,110,113,115,116,117,119,120,123,125,126,129,131,140,141,144,145,149,150,151,152,153,154,159,166,173,175,180,186,188,191,201,202,204,208,224,233,239,241,248,251,254,255,256,257,258,268,269,270,271,280,290,294,299,351,362,366,372,373,375,382,388,433],something_els:41,sometim:[3,5,19,22,26,27,32,38,40,41,53,61,66,76,87,100,106,110,114,115,117,133,161,187],sometypeclass:109,somewhat:[8,76,89,98,202],somewher:[11,40,41,48,55,74,82,83,114,125,126,137,154,175,180,194,273,284,286,362,388],somon:216,soon:[3,8,44,101,120,122,152,156,341,388],sophist:[19,54,68,86,128],sorl:89,sorri:[32,162,290],sort:[13,20,33,38,44,46,53,64,72,73,78,80,87,95,101,110,113,114,115,120,126,128,131,134,154,161,201,216,225,251,254,255,256,257,258,269,280,294,299,302,360,361,362,372,388,418,427,432,433,435,436,437],sort_kei:341,sort_stat:5,sortkei:5,sought:[166,172,194,284,286,294,360,362],soul:[81,123],sound:[11,32,43,47,63,64,76,81,83,93,99,104,110,120,121,125,240,336],sourc:[1,2,6,8,9,10,11,16,17,19,20,29,36,54,55,56,63,67,68,74,75,76,77,79,83,86,87,88,89,90,98,111,115,118,119,121,141,143,145,148,150,152,153,163,166,167,168,169,171,172,173,174,175,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,194,195,196,199,200,201,202,203,204,207,208,209,210,211,212,214,215,216,217,219,220,221,222,223,224,225,227,228,229,230,231,233,234,237,238,239,240,241,244,245,246,247,248,249,250,251,252,254,255,256,257,258,260,262,263,264,266,267,268,269,270,271,273,274,275,277,278,279,280,281,282,284,285,286,287,289,290,292,293,294,296,297,298,299,301,302,303,304,305,306,307,309,310,311,312,314,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,343,344,345,347,348,349,350,351,352,353,355,356,357,360,361,362,363,365,366,367,368,369,370,371,372,373,374,375,376,378,379,380,381,382,383,384,385,386,387,388,389,391,392,395,396,397,398,399,400,401,402,403,405,407,408,409,410,411,413,415,418,419,420,421,422,425,427,428,431,432,433,434,435,436,437,438,439],source_loc:[91,134,217,268,269,271,294],source_object:[192,212],sourceforg:[325,326,336,339],sourceurl:324,south:[74,76,80,81,82,96,125,137,180,273,279,280,344],south_north:81,southeast:[180,280],southern:81,southwest:[82,108,180,280],space:[18,22,25,29,30,32,35,40,41,51,59,71,75,76,79,80,81,82,84,90,91,98,106,107,108,114,115,116,118,128,135,138,172,175,180,185,186,187,188,191,192,199,237,240,241,258,268,279,280,294,356,362,365,366,371,372,374,375,387,388,416],spaceship:137,spacestart:387,spaghetti:[14,372],spam:[18,41,55,92,102,128,157,185,355],spammi:[55,128],span:[17,56,68],spanish:63,spare:[254,255,256,257,258,279],sparkly_mag:110,spatial:81,spawen:238,spawn:[5,18,34,51,78,82,85,107,111,119,122,136,163,178,180,207,238,255,256,274,277,279,280,281,296,297,298,299],spawn_alias:[82,280],spawn_link:[279,280],spawn_nod:279,spawner:[24,36,82,136,163,164,180,256,257,295,297],spawng:78,spd:141,speak:[16,18,57,69,74,77,79,122,134,135,138,140,186,216,241,294],speaker:[79,216,240,241],spear:40,special:[0,3,8,11,12,13,14,15,16,18,19,20,22,25,27,29,32,36,38,43,45,46,48,50,51,52,53,54,57,59,63,64,66,67,69,81,82,83,87,91,94,99,101,103,105,108,110,111,112,113,114,115,116,117,121,128,129,141,157,167,169,171,174,186,189,214,216,217,221,222,224,241,252,256,257,268,269,271,282,287,290,294,316,317,340,344,360,362,366,372,387,400],specic:279,specif:[0,2,3,8,11,12,13,19,20,22,26,27,32,35,36,38,44,45,46,47,48,49,51,55,61,67,72,74,75,76,77,78,79,81,82,83,84,85,86,87,89,91,95,97,100,101,104,106,110,111,112,113,115,116,117,119,120,122,128,129,137,138,139,140,141,142,143,145,146,150,154,156,161,166,171,178,180,187,190,196,197,198,201,202,207,208,214,216,227,228,229,230,234,239,241,273,279,280,281,285,289,294,303,312,316,317,324,340,341,351,360,362,365,366,370,372,373,374,388,396,398,407,438,439],specifi:[8,13,18,19,20,27,30,33,40,44,46,47,53,55,56,57,59,64,66,67,76,78,79,80,81,82,84,90,93,95,99,100,106,108,109,113,114,116,117,125,129,131,133,141,147,148,154,155,156,157,171,172,180,187,191,194,202,204,205,207,211,216,222,223,227,229,230,234,238,239,241,251,252,255,256,257,271,273,279,280,289,290,294,297,298,299,303,323,349,360,363,365,366,368,371,372,376,382,383,384,388,391,407,410,427,435,438],specifici:217,spectacular:3,spectrum:122,speech:[214,294],speed:[5,13,35,66,100,104,122,128,141,248,299,330,363,385],spell:[16,40,46,57,92,98,252,257,299],spell_attack:257,spell_conjur:257,spell_heal:257,spell_nam:257,spellbook:[78,207],spellcast:121,spellnam:257,spend:[36,95,106,117,122,123,254,255,256,257,258],spend_act:[254,255,256,257,258],spend_item_us:256,spent:257,sphinx:84,spike:207,spiked_club:207,spin:[52,100,154,191],spit:[115,128,131,207],splashscreen:212,splinter:119,split:[11,20,22,43,44,75,81,82,91,99,106,114,115,122,129,133,135,137,172,188,210,268,271,287,296,338,353,365,366,376],split_nested_attr:180,spoiler:77,spoken:[74,79,121,152,240,241,294],spoof:[150,396,403],spool:148,sport:35,spot:[53,87,98,166,277,280],spread:[5,29,40,88,110,125,126],spring:[104,222],sprint:248,sprofil:312,spy:34,spyrit:146,sql:[2,48,66,87,97,98,117,347,440],sqlite3:[5,8,9,11,66,87,112,129,159,160,388],sqlite3_prep:350,sqlite:[9,66,145,350],sqllite:2,sqrt:95,squar:[29,71,84,95],squeez:66,src:[17,32,36,51,54,108,140,153,156,245],srcobj:[175,188],srun:316,srv:2,ssessionhandl:64,ssh:[44,61,64,75,87,91,154,161,163,164,308,320,351,352],ssh_interfac:154,ssh_port:154,sshd:157,sshfactori:332,sshprotocol:332,sshserverfactori:332,sshuserauthserv:332,ssl:[64,67,87,144,150,163,164,167,185,308,320,324,337,352],ssl_context:[333,337],ssl_interfac:154,ssl_port:154,sslcertificatefil:144,sslcertificatekeyfil:144,sslciphersuit:144,sslengin:144,ssllab:144,sslprotocol:[144,333,337],ssltest:144,sslv3:150,sstem:101,sta:371,stab:[93,119,268],stabil:[120,191,240],stabl:[53,61,83,97,156],stabli:[6,307],stack:[14,20,51,120,125,137,173,174,294,298,353,372],stackedinlin:395,stackexchang:8,stackoverflow:8,stacktrac:298,staf:68,staff:[18,38,40,50,57,68,75,81,91,98,120,126,129,140,173,282,299,366],staffer:[50,75,122],staffernam:75,stage:[2,11,12,81,97,120,129,140,395,397,400],stagger:324,stai:[20,27,48,80,106,115,137,138,148,154,159,271,280],stale:[48,156,306],stale_timeout:306,stalker:433,stall:77,stamina:[94,121,225,251,257],stamp:[19,44,48,51,166,169,178,190,293,302,344,349,362],stanc:[29,122,128,241,294,375,391],stand:[8,11,14,17,32,50,66,76,80,81,82,84,90,91,93,97,108,111,115,117,119,121,125,126,128,129,137,140,148,152,154,186,201,214,216,241,267,282,294,302,307,343,363,366,368,374,403],standalon:[150,157],standard:[11,16,18,19,26,49,53,59,60,64,67,69,74,75,77,82,87,90,94,98,99,106,110,113,115,128,133,136,138,143,144,148,150,157,163,166,177,211,212,241,270,282,294,332,334,339,356,360,365,374,376,389,412,440],stander:125,stanza:322,stapl:122,star:180,stare:11,start:[3,5,6,7,8,9,10,11,12,14,15,16,18,19,20,22,26,27,29,31,32,33,35,38,40,41,43,44,45,48,51,52,53,55,56,58,59,61,62,63,64,66,68,74,77,78,80,81,82,84,86,87,88,89,90,91,93,95,96,98,100,101,106,108,110,111,112,113,116,120,121,122,123,125,126,128,129,131,133,136,137,139,140,143,145,147,149,150,152,153,154,155,157,159,166,167,172,173,179,180,185,186,187,188,189,190,191,194,201,202,207,211,214,215,216,222,223,224,225,230,240,241,251,252,254,255,256,257,258,263,266,267,269,271,279,280,294,296,298,302,304,305,306,307,309,312,314,316,317,322,323,324,325,329,330,331,336,337,343,344,349,350,353,357,361,365,366,367,368,370,372,373,374,375,376,381,388,416,439,440],start_all_dummy_cli:343,start_attack:267,start_bot_sess:353,start_char:375,start_delai:[41,128,136,137,302,307,368],start_direct:280,start_driv:137,start_evennia:312,start_hunt:267,start_idl:267,start_index:185,start_lines1:312,start_lines2:312,start_loc_on_grid:80,start_of_messag:397,start_olc:296,start_only_serv:312,start_open:216,start_ov:27,start_patrol:267,start_plugin_servic:61,start_portal_interact:312,start_posit:216,start_read:216,start_rotat:216,start_serv:322,start_server_interact:312,start_sunrise_ev:100,start_text:252,start_turn:[254,255,256,257,258],start_xi:[82,279],startapp:[66,101,140,141],startclr:375,startcolor:29,startcoord:277,startedconnect:[309,323,324],starter:[75,118,119,133],starthour:91,startnod:[27,105,215,223,266,296,372],startnode_input:[27,215,223,266,296,372],startproduc:314,startservic:[315,357],startset:269,startswith:[30,33,180,191,365],starttupl:332,startup:[13,25,43,61,100,112,133,154,294,302,305,341,350,381,388],stat:[5,17,53,102,105,112,113,115,116,120,121,128,129,133,140,141,151,190,201,251,254,255,256,257,258,436,440],state:[3,11,13,14,15,20,22,26,27,32,41,44,51,59,86,87,97,112,113,116,119,122,128,137,138,156,161,163,164,166,171,173,174,177,184,192,194,197,213,214,216,217,220,221,247,254,255,256,257,258,263,267,269,299,302,304,305,307,312,332,360,370,372],state_chang:219,state_nam:219,state_unlog:184,statefultelnetprotocol:[335,343],statehandl:[217,219],statement:[3,14,15,19,20,27,53,54,66,80,86,99,110,115,135,263,366,387],statenam:[214,216,219],static_overrid:[51,72,112,133],static_root:133,staticfil:199,statict:190,statictrait:251,station:[122,137],stationari:267,statist:[43,44,52,53,55,72,131,136,190,225,345,361,379],statu:[11,27,43,44,47,50,67,93,99,108,112,120,121,145,150,154,201,256,257,258,267,307,310,312,321,322,323,326,340,395],status:120,status_cod:314,stderr:270,stdin_open:156,stdout:[156,270,312,381],steadi:87,steal:[34,105,187],stealth:122,steel:208,steer:137,step1:93,step2:93,step3:93,step:[0,2,6,7,9,14,15,18,20,22,26,66,68,74,79,82,84,89,90,93,95,99,101,102,104,105,106,122,123,124,126,129,137,138,141,144,145,148,156,179,185,202,208,250,269,277,279,280,307,316,328,339,343,344,353,362,366,369,370,372,373],step_sequ:273,stepper:[82,280],stick:[16,22,27,69,84,148,178],still:[0,1,7,9,11,13,14,15,16,18,20,22,44,45,48,50,57,59,61,63,64,68,74,75,76,78,80,82,83,84,86,87,89,91,93,95,98,99,100,106,107,108,112,113,114,115,122,125,129,137,138,141,142,143,148,150,157,161,173,180,185,187,194,207,212,219,251,252,254,255,256,257,258,266,269,271,280,294,298,304,344,372,374,375,376,384,388,435],sting:81,stock:[86,105,123,245,427],stolen:[157,365],stone:[22,108,117,123],stop:[3,5,7,9,15,18,19,27,29,31,36,38,41,43,44,47,51,54,55,63,68,75,80,82,91,93,98,99,100,104,108,111,112,115,118,121,122,125,128,129,136,137,148,150,154,156,159,177,180,185,190,194,201,208,210,229,231,241,247,248,251,255,258,263,280,294,304,305,306,307,311,312,314,317,329,330,350,351,357,365,366,368,388,440],stop_driv:137,stop_evennia:312,stop_serv:322,stop_server_onli:312,stopproduc:314,stopservic:[315,357],storag:[13,14,22,48,66,87,92,93,97,105,111,123,126,140,145,169,190,196,199,200,233,240,251,271,284,290,293,294,298,299,302,305,307,319,355,359,360,362,367,382,383],storage_modul:367,storagecontain:41,storagescript:41,store:[4,6,8,9,11,12,14,16,18,19,20,22,23,26,30,32,34,35,36,38,41,43,44,46,47,48,50,51,61,66,69,72,74,75,77,78,79,80,82,83,87,90,92,93,95,96,97,98,99,101,104,105,106,107,110,112,113,114,115,116,120,125,126,128,129,133,137,140,141,145,153,156,166,167,169,174,177,178,180,181,183,187,188,196,199,201,207,217,219,222,223,230,237,239,240,241,245,248,249,251,256,260,268,269,271,280,281,284,289,290,293,297,298,299,300,303,304,305,306,307,312,316,317,318,319,322,324,325,326,328,336,339,344,350,351,352,353,355,357,360,361,362,363,365,367,368,369,370,371,372,373,379,382,383,384,388,413,427,438],store_kei:[307,388],store_tru:270,stored_obj:91,storekei:[105,307],storenam:105,storeroom:105,storeroom_exit:105,storeroom_kei:105,storeroom_key_nam:105,stori:[6,30,75,131,140],storm:92,storypag:131,storytel:129,stove:294,str:[8,13,19,26,27,29,31,33,34,41,48,54,61,69,74,76,82,91,95,99,106,107,113,114,115,121,126,140,141,163,166,167,171,172,173,174,175,180,185,187,191,194,195,196,199,201,202,204,207,210,215,216,217,219,221,222,223,224,225,227,228,229,230,233,234,239,240,241,245,247,251,252,254,255,256,257,258,262,263,266,269,270,271,279,280,281,282,284,285,286,287,290,293,294,297,298,299,303,304,305,307,309,310,312,316,317,318,319,321,322,323,324,325,327,330,331,332,335,336,337,340,341,343,349,350,351,352,353,355,356,357,360,361,362,363,365,366,367,368,370,371,372,373,374,375,381,382,383,384,385,386,387,388,389,391,396,405,407,410,419,433,435],straght:280,straight:[80,82,123,138,280],straightforward:[91,105,106,129,137],strang:[11,15,41,93,97,113,144,174],strangl:154,strap:122,strategi:[3,258],strattr:[13,360],strawberri:270,stream:[7,199,321,325,351],streamlin:[2,201],stren:115,strength:[13,32,98,99,112,113,121,122,126,128,141,251],stress:[5,277,343],stretch:[81,82],stribg:388,strict:[54,209,298,365,435],stricter:[123,298],strictli:[27,57,110,140,212,257,374],strike:[27,104,128,186,249,257,258],string1:388,string2:388,string:[3,5,6,8,13,14,16,18,19,20,22,24,25,26,27,29,30,33,35,36,38,40,43,46,47,48,50,51,55,57,63,64,66,67,69,71,75,76,80,81,84,86,91,93,98,99,100,104,107,108,110,112,113,114,115,116,117,121,122,125,128,140,141,145,147,148,151,154,163,164,166,167,169,171,172,175,178,180,185,186,187,188,189,190,191,194,195,196,199,201,202,204,207,212,216,221,223,233,234,238,239,240,241,245,246,251,252,254,255,256,257,258,263,266,267,271,279,281,282,285,286,288,289,290,293,294,297,298,299,302,305,307,312,314,317,321,324,332,335,336,338,344,349,351,353,356,360,361,362,363,364,365,366,368,369,370,371,373,374,375,381,382,384,385,386,387,388,389,391,396,403,410,435,438],string_from_modul:388,string_partial_match:388,string_similar:388,string_suggest:388,stringproduc:314,stringvalu:251,strip:[22,27,29,30,31,40,59,68,76,84,90,99,103,105,107,114,125,129,135,172,180,188,189,191,199,208,216,241,299,317,332,335,336,365,366,370,372,375,388],strip_ansi:[103,365,387],strip_control_sequ:388,strip_dir:5,strip_mxp:365,strip_raw_ansi:365,strip_raw_cod:365,strippabl:372,stroll:248,strong:[32,59,123,129,387],strongest:32,strongli:[18,49,87,115,122,126,240],strr:239,struct:97,structur:[13,22,29,30,38,40,53,64,67,75,80,83,86,87,97,101,107,110,111,112,115,122,133,140,141,148,180,185,194,199,241,279,281,287,294,298,299,336,341,363,369,372,408,424,436],strvalu:[13,360,361],stuck:[27,107,119,125,148],stuff:[13,20,27,29,32,40,41,44,45,53,75,80,83,84,90,93,98,102,105,107,114,115,116,117,118,119,120,121,122,125,126,131,150,174,180,191,224,250,251,270,307,350,420],stumbl:[6,123],stupid:[117,123],sturdi:371,stutter:68,style:[7,18,19,22,27,35,56,59,61,71,77,78,81,83,84,86,90,98,99,102,107,115,118,119,120,122,123,127,128,131,143,169,175,177,188,204,205,207,221,223,234,254,270,298,370,374,375,388],styled_foot:175,styled_head:[22,175],styled_separ:175,styled_t:[22,175],sub:[2,13,18,29,30,40,41,51,53,67,68,75,83,84,98,101,110,112,128,149,154,165,170,185,187,193,197,202,241,270,277,283,285,287,288,291,299,300,308,359,364,365,375,387,393,397,429],sub_ansi:365,sub_app:140,sub_brightbg:365,sub_dblspac:387,sub_mxp_link:387,sub_mxp_url:387,sub_text:387,sub_to_channel:185,sub_xterm256:365,subbed_chan:185,subcategori:[187,287],subclass:[19,40,44,48,82,87,110,112,135,180,202,251,271,293,298,302,322,335,341,362,380,384,388,395,396,403],subcommand:82,subcrib:18,subdir:8,subdirectori:[8,83],subdomain:[144,154,157],subfold:[66,72,112,115,141],subhead:84,subject:[2,34,66,95,103,110,154,224,234],sublim:118,submarin:137,submenu:[7,202,296],submenu_class:202,submenu_obj:202,submiss:[223,427],submit:[17,53,83,140,157,223,427,431,433,438],submitcmd:223,submodul:336,subnegoti:336,subnet:[55,145,178],subpackag:[8,67],subprocess:[91,388],subreddit:143,subscrib:[9,18,22,32,47,55,85,87,99,139,167,185,194,195,256,307,323,354],subscribernam:185,subscript:[18,22,41,47,99,139,143,185,195,196,307,397],subscriptionhandl:18,subsect:279,subsequ:[13,22,54,115,128,148,185,214,240,366,388],subsequent_ind:374,subset:[8,46,97,112,122,279],subsid:48,substanti:[199,207],substitut:[7,35,151,294,365,387],substr:[114,365,375],subsub:[30,187,191],subsubhead:84,subsubsubhead:84,subsubtop:[30,187,191],subsubtopicn:191,subsystem:[66,75,121,148,290],subtext:217,subtitl:17,subtop:[185,187,191,284,287],subtopic_separator_char:187,subtract:[29,105,250],subturn:128,subword:388,suc:78,succe:[78,119,120,128,207,211],succeed:[185,211,270],success:[78,110,121,122,126,128,129,141,166,185,194,201,207,211,254,255,256,257,258,263,268,269,290,298,306,312,316,362,370,382,388,438],success_messag:207,success_teleport_msg:269,success_teleport_to:269,success_url:[431,433],successfuli:[207,238],successfulli:[2,10,22,54,81,92,116,125,161,166,207,209,238,268,271,294,306,312,324,356,362,438],suddenli:[0,6,362],sudo:[148,150,156,157],sue:121,suffic:[17,98,115],suffici:[66,154,199],suffix:[6,19,29,365,375,381,388,413],suggest:[6,27,28,30,48,73,83,84,86,91,120,121,122,123,145,154,172,187,201,208,241,251,269,287,294,388],suggestion_cutoff:187,suggestion_maxnum:[187,287],suggests:30,suit:[10,87,93,123,134,191,388,436],suitabl:[11,22,29,32,35,41,46,50,64,67,82,83,86,87,90,91,107,110,115,118,148,154,173,185,207,216,279,290,346,353,368,372,375],sum:[82,83,104,106,111,118,174,217],summar:[74,107,143],summari:[50,74,79,129,143,161,202],summer:[121,122,222],sun:[82,100],sunris:100,sunt:28,super_long_text:373,superclass:395,superfici:240,superflu:387,supersus:290,superus:[5,12,14,15,32,50,57,75,81,89,90,91,99,103,108,112,113,114,115,118,119,122,125,141,145,148,160,166,169,179,190,194,204,247,267,289,290,294,299,312,362,366,368,395],supplement:27,suppli:[5,8,13,19,27,30,31,33,40,41,44,46,47,49,54,67,83,99,114,122,128,129,148,152,169,174,175,178,180,185,190,191,195,202,210,212,222,225,251,279,293,294,298,302,307,323,353,362,370,375,376,385,388],supporst:339,support:[3,12,13,18,22,26,27,29,30,31,34,35,40,41,58,59,61,62,63,64,66,69,75,77,80,83,84,86,87,88,89,96,97,98,99,103,106,111,114,115,117,118,120,121,122,123,129,138,144,145,148,149,153,154,155,156,157,159,160,161,166,177,186,187,190,199,205,210,211,216,222,233,270,280,289,294,298,299,307,317,325,326,327,328,332,334,335,336,337,339,341,352,360,365,369,372,373,374,375,385,388,391,419,435,440],supports_set:[31,317],suppos:[22,27,40,49,64,74,110,166,202],supposedli:[150,240,336],suppress:[146,334],suppress_ga:[163,164,308,320],suppressga:334,supress:334,sur:143,sure:[2,3,6,7,8,9,11,12,13,14,15,16,18,20,22,27,30,32,35,36,38,40,41,44,46,47,48,49,50,51,53,55,57,63,66,69,73,74,75,80,81,82,83,84,89,90,91,92,93,94,96,98,99,100,103,106,108,110,113,114,115,118,119,120,121,122,123,125,126,128,129,133,135,138,140,141,142,144,145,148,150,151,152,153,154,156,160,161,166,167,173,174,175,177,180,188,195,199,202,204,207,216,231,239,240,241,246,251,252,257,260,267,268,269,280,285,289,290,294,298,299,304,312,316,322,324,329,350,356,357,358,361,362,365,367,369,372,379,384,385,387,388,396,403,405,428,436,438],surfac:[99,104,157,216],surpris:[32,76,95,101,106,115],surround:[20,22,29,71,81,82,128,178,221,267,280,384,388],surviv:[13,19,20,26,27,29,33,41,44,47,92,113,128,138,167,174,190,202,251,302,303,307,368,370,372,388],survivor:122,suscept:[19,97,290],suspect:140,suspend:[7,156,157],suspici:27,suspicion:140,svg:199,svn:[2,68],swallow:[135,321,387],swam:[391,392],swap:[8,51,59,180,222,237,362,370],swap_autoind:370,swap_object:362,swap_typeclass:[48,166,362],swapcas:365,swapper:362,swedish:63,sweep:41,swiftli:54,swim:[391,392],swing:[22,92,93,104,114],switch1:71,switch2:71,switch_map:190,switch_opt:[177,178,179,180,185,186,187,188,190,222],sword:[22,49,66,77,78,92,105,108,110,117,119,121,122,125,126,163,164,197,201,206,207,209,216,241,251,299,385,388],swordbladerecip:208,swordguardrecip:208,swordhandlerecip:208,swordmanship:121,swordpommelrecip:208,swordrecip:[207,208],swordsmithingbaserecip:208,swum:[391,392],symbol:[7,15,16,22,68,80,82,110,153,252,271,274,277,279,280,282,373],symlink:[84,148],symmetr:374,sync:[11,44,52,64,87,279,280,281,330,335,350,351,352,353,360,369],sync_node_to_grid:280,sync_port:353,syncdata:[352,353],syncdb:8,synchron:381,syntact:[290,388],syntax:[6,14,15,16,22,32,59,71,76,77,78,79,86,90,93,99,100,106,108,113,129,141,145,163,164,175,179,180,187,188,191,202,207,211,214,222,223,270,290,294,312,324,351,360,362,364,365,440],syntaxerror:115,sys:435,sys_cmd:173,syscmdkei:[22,85,163],syscommand:[163,164,170,176,294],syslog:244,sysroot:153,system:[0,2,5,6,8,9,11,12,13,18,19,20,23,24,31,33,34,35,38,40,41,43,44,45,46,47,48,53,54,57,61,63,64,66,68,71,73,74,75,76,79,80,81,82,83,84,85,86,87,89,90,92,93,95,96,97,100,103,105,111,112,113,115,118,119,125,133,137,138,139,141,143,145,148,150,153,154,157,160,161,163,164,167,169,170,171,173,175,176,177,179,187,189,191,193,194,195,196,199,201,202,204,207,208,209,212,216,228,229,230,231,233,234,237,238,240,241,244,245,246,252,254,255,256,257,258,266,269,271,277,278,279,280,282,283,284,286,289,290,293,294,296,298,299,300,312,335,341,349,359,362,366,368,371,372,381,395,413,439,440],system_command:22,systemat:95,systemctl:144,systemd:150,systemmultimatch:189,systemnoinput:189,systemnomatch:189,tab:[0,2,7,15,51,52,59,75,94,101,115,116,118,123,365,374,387],tabl:[6,9,14,16,48,59,67,69,74,79,81,85,87,89,99,101,104,110,117,141,175,177,185,187,190,223,336,355,365,371,373,374,385,388,439],table_char:371,table_format:177,table_lin:374,table_str:99,tablea:371,tableb:371,tablechar:[99,371],tableclos:[67,336],tablecol:374,tableopen:[67,336],tablet:56,tabletop:[99,126,143,254,258],tabsiz:[365,374],tabstop:387,tabularinlin:[396,403],tack:[108,174],tackl:83,tactic:[122,126,128],taction:128,tag:[14,18,19,22,24,27,30,31,34,35,38,40,41,48,50,51,52,53,55,59,60,63,66,67,73,75,78,82,85,87,98,99,102,107,108,110,115,133,141,146,156,163,164,175,177,178,179,180,185,186,187,188,189,190,191,192,194,196,201,202,203,204,205,207,208,211,212,214,216,217,222,223,224,228,234,237,238,239,241,244,247,248,249,251,252,254,255,256,257,258,263,266,267,268,269,270,273,280,282,286,287,289,294,298,299,327,341,343,349,359,361,362,365,368,370,371,372,373,374,385,388,393,394,395,397,399,400,401,407,410,440],tag_all_charact:217,tag_categori:403,tag_charact:217,tag_data:403,tag_kei:403,tag_typ:[403,407],tagadmin:403,tagcategori:[216,217],tagcount:110,taget_map_xyz:280,tagform:403,tagformset:[396,403],taghandl:[46,48,363,403],taginlin:[395,397,399,400,401,403],tagkei:[289,363,368],taglin:17,tagnam:299,tagseri:410,tagshandl:410,tagstr:[299,363],tagtyp:[46,361,363,385,407],tagtypefilt:407,tail:[112,154,156,312,381],tail_log_fil:[312,381],tail_log_funct:381,tailor:[89,101,427],take:[0,3,7,8,13,14,15,16,17,18,19,20,22,27,28,29,31,32,38,40,43,44,48,54,56,57,59,61,63,64,68,74,75,76,77,78,79,80,81,82,83,84,86,87,88,89,90,91,92,93,97,98,99,100,101,102,105,106,108,112,113,114,115,118,119,121,122,123,124,125,127,128,129,130,131,132,133,137,138,140,141,143,153,154,157,159,166,167,172,173,177,189,191,194,196,201,204,207,210,214,219,221,222,223,238,239,241,244,248,252,254,255,256,257,258,263,266,267,269,273,277,290,299,332,340,343,352,353,361,362,365,370,371,372,373,382,388,389],taken:[0,20,87,97,116,128,129,136,137,157,186,212,244,254,255,256,257,258,294,332,356,365,368],takeov:354,tale:131,talk:[11,19,22,52,61,79,83,99,106,115,122,123,145,154,185,186,201,240,241,249,269,309],talker:86,talki:[18,87,122],talking_npc:[163,164,197],talkingcmdset:249,talkingnpc:249,tall:[71,121,122,186,241],tallman:186,tan:208,tang:[107,208],tannin:208,tantal:15,target1:257,target2:257,target:[8,22,34,61,67,82,90,91,92,93,94,99,107,108,114,115,122,125,126,128,129,133,157,166,175,180,185,186,190,194,196,204,211,214,216,219,222,234,251,252,254,255,256,257,258,267,271,273,274,277,279,280,294,361,365,368,372,388],target_flag:216,target_loc:[217,248,269,271,294],target_map_xyz:[82,274,277,280],target_obj:290,target_path_styl:279,targetlist:234,task:[2,5,18,19,41,46,61,74,106,112,150,161,190,191,228,230,252,273,306,307,388],task_handl:[163,306,388],task_id:[190,230,306],taskhandl:[163,164,300,388],taskhandlertask:[306,388],tast:[76,119,123,140],tasti:207,tavern:241,tax:[5,153],taylor:143,tb_basic:[163,164,197,253],tb_equip:[163,164,197,253],tb_filenam:366,tb_item:[163,164,197,253],tb_iter:366,tb_magic:[163,164,197,253],tb_rang:[163,164,197,253],tbbasiccharact:254,tbbasicturnhandl:254,tbearmor:255,tbequipcharact:255,tbequipturnhandl:255,tbeweapon:255,tbitemscharact:256,tbitemscharactertest:256,tbitemsturnhandl:256,tbmagiccharact:257,tbmagicturnhandl:257,tbodi:141,tbrangecharact:258,tbrangeobject:258,tbrangeturnhandl:258,tchar:128,tcp:157,tcpserver:[61,357],teach:[102,123],team:[2,11,22,30,68,87,120,122,123],teardown:[8,191,209,220,231,250,264,277,338,386,411],teaser:154,tech:[102,118,123,124,127,130,132,143],technic:[13,27,46,48,54,57,59,61,63,64,68,75,82,87,88,89,95,108,120,123,145,154,163,164,197,199,201,259,360],techniqu:[93,122,125,365],technolog:122,tediou:[7,81],teenag:[90,157],tehom:[75,77,110],tehomcd:75,tel:[55,74,99,106,107,137,148,180,273],telepath:122,telephathi:18,teleport:[15,55,73,99,105,108,119,180,186,269,273,277,280,366],teleportermaplink:[82,280],teleportmaplink:82,teleportroom:269,televis:20,tell:[0,3,4,8,9,10,11,14,20,22,27,31,32,34,35,38,40,41,54,55,57,63,64,66,72,74,76,78,79,80,90,93,99,101,106,107,108,112,113,114,115,116,122,126,128,131,134,137,139,141,144,145,153,154,156,157,161,167,177,185,186,196,211,241,269,280,294,312,330,341,353,370,436],telnet:[5,16,44,51,52,58,61,64,70,75,86,87,91,94,115,118,143,148,153,156,157,160,161,163,164,187,190,308,320,325,326,327,328,332,333,334,336,337,339,343,351,352,387],telnet_:154,telnet_hostnam:147,telnet_interfac:154,telnet_oob:[67,163,164,308,320],telnet_port:[2,5,75,112,147,154,344],telnet_ssl:[163,164,308,320],telnetoob:336,telnetprotocol:[333,335,337],telnetserverfactori:335,telport:119,temp:196,tempat:223,templat:[11,12,19,20,35,40,43,45,48,49,50,51,52,53,72,87,89,103,112,116,122,129,131,133,141,160,163,164,185,186,188,194,223,266,312,341,351,352,360,364,371,416,420,425,435,436,438],template2menu:372,template_nam:[53,431,432,433,435,436,438],template_overrid:[51,72,89,112,133],template_regex:360,template_rend:45,template_str:35,templates_overrid:72,templatestr:371,templatetag:[163,164,393],templateview:[53,436],tempmsg:196,temporari:[8,11,13,119,161,174,196,199,233,254,255,256,257,258,307,372],temporarili:[0,6,8,18,20,27,41,52,108,113,121,154,185,190,207,230,238,251,263],tempt:[29,43,113,115,120,178],ten:[81,93,154],tend:[5,6,66,71,87,98,122,126,137,154,157,180,240,244],tens:[391,392],tent:81,term:[20,30,54,63,74,87,100,101,106,112,113,114,123,138,148,154,175,216,239,355],term_siz:[3,163],termin:[0,3,5,6,7,11,19,53,59,82,84,87,89,107,115,116,118,129,138,145,148,153,154,156,157,160,161,163,190,229,252,254,255,256,257,258,311,312,332,339,355,436],terminalrealm:332,terminals:332,terminalsessiontransport:332,terminalsessiontransport_getp:332,terrain:[80,280],terribl:325,ters:41,test1:[13,31,374],test2010:107,test2028:107,test2:[13,22,31,59],test3:[13,374],test4:[13,374],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,32,36,38,40,41,45,47,51,53,54,57,74,76,78,79,81,83,84,90,91,93,97,99,100,101,103,105,106,108,110,114,116,120,122,123,125,127,128,130,136,139,140,143,145,146,148,149,150,152,154,155,163,164,170,172,176,177,179,187,190,197,198,204,206,207,211,213,222,223,226,242,243,250,252,254,255,256,257,258,259,260,266,272,279,298,308,314,317,320,341,342,343,347,362,364,365,366,368,372,377,386,388,390,393,406,417,420,426,435,440],test_:8,test_about:191,test_accept:231,test_access:191,test_active_task:191,test_add:231,test_add_trait:250,test_add_valid:231,test_al:250,test_all_com:191,test_all_st:220,test_alternative_cal:8,test_amp_in:338,test_amp_out:338,test_at_repeat:264,test_attribute_command:191,test_audit:246,test_auto_creating_bucket:200,test_auto_creating_bucket_with_acl:200,test_ban:191,test_base_pars:220,test_base_search:220,test_base_st:220,test_batch_command:191,test_bold:338,test_boundaries__bigmod:250,test_boundaries__change_boundari:250,test_boundaries__dis:250,test_boundaries__invers:250,test_boundaries__minmax:250,test_build:277,test_c_creates_button:348,test_c_creates_obj:348,test_c_dig:348,test_c_examin:348,test_c_help:348,test_c_login:348,test_c_login_no_dig:348,test_c_logout:348,test_c_look:348,test_c_mov:348,test_c_move_:348,test_c_move_n:348,test_c_soci:348,test_cach:250,test_cal:[191,231],test_cancel:191,test_cas:8,test_cboot:191,test_cdesc:191,test_cdestroi:191,test_channel__al:191,test_channel__alias__unalia:191,test_channel__ban__unban:191,test_channel__boot:191,test_channel__cr:191,test_channel__desc:191,test_channel__destroi:191,test_channel__histori:191,test_channel__list:191,test_channel__lock:191,test_channel__msg:191,test_channel__mut:191,test_channel__noarg:191,test_channel__sub:191,test_channel__unlock:191,test_channel__unmut:191,test_channel__unsub:191,test_channel__who:191,test_char_cr:191,test_char_delet:191,test_clean_nam:200,test_clean_name_norm:200,test_clean_name_trailing_slash:200,test_clean_name_window:200,test_clear:250,test_clock:191,test_color:338,test_color_test:191,test_comparisons_numer:250,test_comparisons_trait:250,test_compress_content_len:200,test_connection_thread:200,test_content_typ:200,test_copi:191,test_craft__nocons__failur:209,test_craft__notools__failur:209,test_craft__success:209,test_craft_cons_excess__fail:209,test_craft_cons_excess__sucess:209,test_craft_cons_order__fail:209,test_craft_hook__fail:209,test_craft_hook__succe:209,test_craft_missing_cons__always_consume__fail:209,test_craft_missing_cons__fail:209,test_craft_missing_tool__fail:209,test_craft_sword:209,test_craft_tool_excess__fail:209,test_craft_tool_excess__sucess:209,test_craft_tool_order__fail:209,test_craft_wrong_tool__fail:209,test_creat:[191,411],test_curr:250,test_cwho:191,test_data_in:338,test_data_out:338,test_del:231,test_delet:[250,411],test_desc:[191,250],test_desc_default_to_room:191,test_destroi:191,test_destroy_sequ:191,test_dig:191,test_do_nested_lookup:191,test_do_task:191,test_echo:191,test_edit:231,test_edit_valid:231,test_emit:191,test_emot:220,test_empty_desc:191,test_error_format:209,test_examin:191,test_exit:231,test_exit_command:191,test_extended_path_tracking__horizont:277,test_extended_path_tracking__vert:277,test_find:191,test_floordiv:250,test_focu:220,test_focus_interact:220,test_forc:191,test_func_name_manipul:191,test_general_context:422,test_generated_url_is_encod:200,test_get:[250,428],test_get_and_drop:191,test_get_authent:428,test_get_dis:428,test_get_shortest_path:277,test_get_visual_range__nodes__charact:277,test_get_visual_range__nodes__character_0:277,test_get_visual_range__nodes__character_1:277,test_get_visual_range__nodes__character_2:277,test_get_visual_range__nodes__character_3:277,test_get_visual_range__nodes__character_4:277,test_get_visual_range__nodes__character_5:277,test_get_visual_range__nodes__character_6:277,test_get_visual_range__nodes__character_7:277,test_get_visual_range__nodes__character_8:277,test_get_visual_range__nodes__character_9:277,test_get_visual_range__scan:277,test_get_visual_range__scan_0:277,test_get_visual_range__scan_1:277,test_get_visual_range__scan_2:277,test_get_visual_range__scan_3:277,test_get_visual_range__scan__charact:277,test_get_visual_range__scan__character_0:277,test_get_visual_range__scan__character_1:277,test_get_visual_range__scan__character_2:277,test_get_visual_range__scan__character_3:277,test_get_visual_range_with_path:277,test_get_visual_range_with_path_0:277,test_get_visual_range_with_path_1:277,test_get_visual_range_with_path_2:277,test_get_visual_range_with_path_3:277,test_get_visual_range_with_path_4:277,test_giv:191,test_grid_cr:277,test_grid_creation_0:277,test_grid_creation_1:277,test_grid_pathfind:277,test_grid_pathfind_0:277,test_grid_pathfind_1:277,test_grid_vis:277,test_grid_visibility_0:277,test_grid_visibility_1:277,test_handl:231,test_hello_world:116,test_help:191,test_hom:191,test_ic:191,test_ic__nonaccess:191,test_ic__other_object:191,test_ident:338,test_idl:348,test_info_command:191,test_init:250,test_interrupt_command:191,test_invalid_access:428,test_inventori:191,test_ital:338,test_large_msg:338,test_list:[231,411],test_list_cmdset:191,test_load_recip:209,test_location_leading_slash:200,test_lock:[191,231],test_lock_with_perm:428,test_locked_entri:428,test_look:[191,220],test_mask:246,test_memplot:348,test_menu:252,test_messag:349,test_misformed_command:191,test_msg:209,test_mudlet_ttyp:338,test_mul_trait:250,test_multimatch:191,test_mux_command:191,test_mycmd_char:8,test_mycmd_room:8,test_nam:191,test_nested_attribute_command:191,test_new_task_waiting_input:191,test_nick:191,test_no_input:191,test_no_task:191,test_node_from_coord:277,test_object:191,test_object_cach:428,test_object_search:8,test_ooc:191,test_ooc_look:191,test_opt:191,test_override_class_vari:200,test_override_init_argu:200,test_overwrit:220,test_pag:191,test_parse_for_perspect:220,test_parse_for_th:220,test_password:191,test_path:277,test_paths_0:277,test_paths_1:277,test_pause_unpaus:191,test_percentag:250,test_perm:191,test_persistent_task:191,test_pi:191,test_pickle_with_bucket:200,test_pickle_without_bucket:200,test_plain_ansi:338,test_pos:191,test_pos_shortcut:250,test_pre_craft:209,test_pre_craft_fail:209,test_quel:191,test_queri:[163,164,308,342],test_quit:191,test_remov:[191,250],test_repr:250,test_resourc:[8,163,164,191,220,231,246,264,277,338,364,411,428],test_responce_of_y:191,test_retriev:411,test_return_valu:8,test_room_method:220,test_sai:191,test_script:191,test_seed__success:209,test_send_random_messag:264,test_server_load:191,test_sess:191,test_set:250,test_set_attribut:411,test_set_focu:220,test_set_game_name_and_slogan:422,test_set_help:191,test_set_hom:191,test_set_obj_alia:191,test_set_webclient_set:422,test_shortest_path:277,test_shortest_path_00:277,test_shortest_path_01:277,test_shortest_path_02:277,test_shortest_path_03:277,test_shortest_path_04:277,test_shortest_path_05:277,test_shortest_path_06:277,test_shortest_path_07:277,test_shortest_path_08:277,test_shortest_path_09:277,test_shortest_path_0:277,test_shortest_path_10:277,test_shortest_path_1:277,test_shortest_path_2:277,test_shortest_path_3:277,test_shortest_path_4:277,test_shortest_path_5:277,test_shortest_path_6:277,test_shortest_path_7:277,test_shortest_path_8:277,test_shortest_path_9:277,test_simpl:8,test_simple_default:191,test_spawn:[191,277],test_special_charact:200,test_speech:220,test_split_nested_attr:191,test_start:231,test_storage_delet:200,test_storage_exist:200,test_storage_exists_doesnt_create_bucket:200,test_storage_exists_fals:200,test_storage_listdir_bas:200,test_storage_listdir_subdir:200,test_storage_mtim:200,test_storage_open_no_overwrite_exist:200,test_storage_open_no_writ:200,test_storage_open_writ:200,test_storage_s:200,test_storage_sav:200,test_storage_save_gzip:200,test_storage_save_gzip_twic:200,test_storage_save_with_acl:200,test_storage_url:200,test_storage_url_slash:200,test_storage_write_beyond_buffer_s:200,test_str_output:277,test_strip_signing_paramet:200,test_sub_trait:250,test_subtopic_fetch:191,test_subtopic_fetch_00_test:191,test_subtopic_fetch_01_test_creating_extra_stuff:191,test_subtopic_fetch_02_test_cr:191,test_subtopic_fetch_03_test_extra:191,test_subtopic_fetch_04_test_extra_subsubtop:191,test_subtopic_fetch_05_test_creating_extra_subsub:191,test_subtopic_fetch_06_test_something_els:191,test_subtopic_fetch_07_test_mor:191,test_subtopic_fetch_08_test_more_second_mor:191,test_subtopic_fetch_09_test_more_mor:191,test_subtopic_fetch_10_test_more_second_more_again:191,test_subtopic_fetch_11_test_more_second_third:191,test_tag:191,test_task_complete_waiting_input:191,test_teleport:191,test_timer_r:250,test_timer_ratetarget:250,test_toggle_com:191,test_trait:[163,164,197],test_trait_db_connect:250,test_trait_getset:250,test_tunnel:191,test_tunnel_exit_typeclass:191,test_typeclass:191,test_upd:411,test_upp:8,test_valid_access:428,test_valid_access_multisession_0:428,test_valid_access_multisession_2:428,test_valid_char:428,test_validate_input__fail:250,test_validate_input__valid:250,test_valu:250,test_verb_actor_stance_compon:392,test_verb_actor_stance_components_00_hav:392,test_verb_actor_stance_components_01_swim:392,test_verb_actor_stance_components_02_g:392,test_verb_actor_stance_components_03_given:392,test_verb_actor_stance_components_04_am:392,test_verb_actor_stance_components_05_do:392,test_verb_actor_stance_components_06_ar:392,test_verb_actor_stance_components_07_had:392,test_verb_actor_stance_components_08_grin:392,test_verb_actor_stance_components_09_smil:392,test_verb_actor_stance_components_10_vex:392,test_verb_actor_stance_components_11_thrust:392,test_verb_conjug:392,test_verb_conjugate_0_inf:392,test_verb_conjugate_1_inf:392,test_verb_conjugate_2_inf:392,test_verb_conjugate_3_inf:392,test_verb_conjugate_4_inf:392,test_verb_conjugate_5_inf:392,test_verb_conjugate_6_inf:392,test_verb_conjugate_7_2sgpr:392,test_verb_conjugate_8_3sgpr:392,test_verb_get_all_tens:392,test_verb_infinit:392,test_verb_infinitive_0_hav:392,test_verb_infinitive_1_swim:392,test_verb_infinitive_2_g:392,test_verb_infinitive_3_given:392,test_verb_infinitive_4_am:392,test_verb_infinitive_5_do:392,test_verb_infinitive_6_ar:392,test_verb_is_past:392,test_verb_is_past_0_1st:392,test_verb_is_past_1_1st:392,test_verb_is_past_2_1st:392,test_verb_is_past_3_1st:392,test_verb_is_past_4_1st:392,test_verb_is_past_5_1st:392,test_verb_is_past_6_1st:392,test_verb_is_past_7_2nd:392,test_verb_is_past_participl:392,test_verb_is_past_participle_0_hav:392,test_verb_is_past_participle_1_swim:392,test_verb_is_past_participle_2_g:392,test_verb_is_past_participle_3_given:392,test_verb_is_past_participle_4_am:392,test_verb_is_past_participle_5_do:392,test_verb_is_past_participle_6_ar:392,test_verb_is_past_participle_7_had:392,test_verb_is_pres:392,test_verb_is_present_0_1st:392,test_verb_is_present_1_1st:392,test_verb_is_present_2_1st:392,test_verb_is_present_3_1st:392,test_verb_is_present_4_1st:392,test_verb_is_present_5_1st:392,test_verb_is_present_6_1st:392,test_verb_is_present_7_1st:392,test_verb_is_present_participl:392,test_verb_is_present_participle_0_hav:392,test_verb_is_present_participle_1_swim:392,test_verb_is_present_participle_2_g:392,test_verb_is_present_participle_3_given:392,test_verb_is_present_participle_4_am:392,test_verb_is_present_participle_5_do:392,test_verb_is_present_participle_6_ar:392,test_verb_is_tens:392,test_verb_is_tense_0_inf:392,test_verb_is_tense_1_inf:392,test_verb_is_tense_2_inf:392,test_verb_is_tense_3_inf:392,test_verb_is_tense_4_inf:392,test_verb_is_tense_5_inf:392,test_verb_is_tense_6_inf:392,test_verb_past:392,test_verb_past_0_1st:392,test_verb_past_1_1st:392,test_verb_past_2_1st:392,test_verb_past_3_1st:392,test_verb_past_4_1st:392,test_verb_past_5_1st:392,test_verb_past_6_1st:392,test_verb_past_7_2nd:392,test_verb_past_participl:392,test_verb_past_participle_0_hav:392,test_verb_past_participle_1_swim:392,test_verb_past_participle_2_g:392,test_verb_past_participle_3_given:392,test_verb_past_participle_4_am:392,test_verb_past_participle_5_do:392,test_verb_past_participle_6_ar:392,test_verb_pres:392,test_verb_present_0_1st:392,test_verb_present_1_1st:392,test_verb_present_2_1st:392,test_verb_present_3_1st:392,test_verb_present_4_1st:392,test_verb_present_5_1st:392,test_verb_present_6_1st:392,test_verb_present_7_2nd:392,test_verb_present_8_3rd:392,test_verb_present_participl:392,test_verb_present_participle_0_hav:392,test_verb_present_participle_1_swim:392,test_verb_present_participle_2_g:392,test_verb_present_participle_3_given:392,test_verb_present_participle_4_am:392,test_verb_present_participle_5_do:392,test_verb_present_participle_6_ar:392,test_verb_tens:392,test_verb_tense_0_hav:392,test_verb_tense_1_swim:392,test_verb_tense_2_g:392,test_verb_tense_3_given:392,test_verb_tense_4_am:392,test_verb_tense_5_do:392,test_verb_tense_6_ar:392,test_view:428,test_wal:191,test_whisp:191,test_who:191,test_without_migr:8,test_wrong_func_nam:191,testabl:8,testaccount:191,testadmin:191,testampserv:338,testapp:140,testbatchprocess:191,testbodyfunct:264,testbuild:191,testbuildexamplegrid:277,testcas:[8,200,209,250,277,338,348,380,386,392,422],testcmdcallback:231,testcmdtask:191,testcomm:191,testcommand:27,testcommschannel:191,testcraftcommand:209,testcraftingrecip:209,testcraftingrecipebas:209,testcraftsword:209,testcraftutil:209,testdefaultcallback:231,testdummyrunnerset:348,tester:[110,154,330],testevenniarestapi:411,testeventhandl:231,testevscaperoom:220,testevscaperoomcommand:220,testform:371,testgener:191,testgeneralcontext:422,testhelp:191,testid:22,testinterruptcommand:191,testirc:338,testmap10:277,testmap11:277,testmap1:277,testmap2:277,testmap3:277,testmap4:277,testmap5:277,testmap6:277,testmap7:277,testmap8:277,testmap9:277,testmapstresstest:277,testmemplot:348,testmenu:[223,372],testmixedrefer:380,testmod:353,testmymodel:8,testnnmain:191,testnumerictraitoper:250,testobj:[8,219,221],testobject:8,testobjectdelet:380,testok:106,testregularrefer:380,testrenam:107,testset:8,testsharedmemoryrefer:380,teststat:220,teststr:8,testsystem:191,testsystemcommand:191,testtabl:107,testtelnet:338,testtrait:250,testtraitcount:250,testtraitcountertim:250,testtraitgaug:250,testtraitgaugetim:250,testtraitstat:250,testunconnectedcommand:191,testutil:220,testvalu:13,testverbconjug:392,testview:53,testwebsocket:338,testxyzgrid:277,testxyzgridtransit:277,text2html:[163,164,364],text:[0,6,8,11,12,14,15,16,17,18,22,25,26,28,29,30,32,34,35,38,40,41,46,51,53,54,58,59,61,63,64,66,67,68,74,75,76,79,81,82,83,85,86,90,94,97,98,99,103,105,106,108,112,114,116,118,119,121,122,123,124,125,126,129,135,137,138,140,142,143,146,148,150,152,154,155,156,161,166,167,172,175,177,178,179,180,185,186,187,188,189,190,191,192,195,196,199,201,202,203,204,207,211,212,214,215,216,221,222,223,224,225,228,230,234,237,238,240,241,245,247,248,249,251,252,254,255,256,257,258,262,263,267,268,269,270,273,284,286,287,290,294,296,299,302,309,310,317,323,324,327,330,331,332,335,336,340,341,343,351,352,353,356,357,360,361,363,365,366,368,370,371,372,373,374,375,382,385,387,388,389,395,397,401,427,439,440],text_:84,text_color:225,text_descript:251,text_exit:[76,202],text_single_exit:76,textarea:[384,427],textbook:61,textbox:427,textfield:[66,140],textn:191,textstr:31,texttag:[103,138,440],texttohtmlpars:387,textual:95,textwrap:374,textwrapp:374,than:[0,3,4,5,6,7,8,9,11,12,13,14,15,18,20,22,24,25,27,28,29,30,32,36,38,40,41,43,44,46,47,48,51,53,56,57,59,63,66,69,71,72,74,77,78,79,80,82,83,84,86,87,89,91,93,95,98,99,100,101,104,106,107,110,112,113,114,115,117,118,119,120,121,123,125,126,128,129,138,141,144,145,147,150,151,154,157,159,161,166,169,172,173,174,177,178,179,180,181,185,187,188,190,191,201,202,203,207,210,216,219,225,230,239,240,241,248,251,252,254,255,256,257,258,268,270,275,279,280,281,282,289,294,296,298,312,338,353,358,360,361,362,365,366,372,373,374,375,379,381,383,384,385,387,388,396,403,416,436],thank:[89,141,234,357],thankfulli:140,the_answ:117,the_one_r:117,thead:141,theathr:30,theatr:30,thei:[3,4,5,6,7,8,11,12,13,14,15,16,17,18,19,20,22,27,29,30,32,36,38,39,40,41,44,45,46,48,50,51,52,53,54,55,56,57,59,61,62,63,64,66,67,68,69,73,74,75,76,77,78,79,81,82,83,84,86,87,89,90,91,93,94,95,96,97,98,99,101,102,103,105,106,107,108,109,110,112,113,114,115,116,117,120,121,123,125,126,128,129,133,135,137,138,139,141,142,144,145,148,153,154,157,160,161,166,173,174,177,179,180,185,186,188,189,190,194,199,201,202,204,207,208,211,216,222,224,229,240,241,251,254,255,256,257,258,268,269,270,271,279,280,282,284,289,290,293,294,298,299,300,302,304,305,307,312,332,333,335,336,337,341,344,350,351,352,353,355,360,365,366,367,369,372,374,375,388,389,396,403,408,410,413,427,433,437,438],theirs:[128,203,224],them:[0,5,6,7,8,9,11,12,13,14,15,16,18,19,20,22,25,26,27,29,30,31,32,34,35,36,38,40,41,43,44,46,47,48,50,51,53,54,55,56,59,61,62,63,64,66,67,69,72,73,74,75,76,77,78,79,81,82,83,84,86,87,89,90,92,93,94,95,98,99,100,101,104,105,106,107,110,112,113,114,115,116,117,119,120,121,123,125,126,128,129,132,133,135,137,138,140,141,145,147,151,153,154,155,157,161,166,171,172,173,175,177,179,180,185,187,188,191,194,199,203,204,205,207,208,217,222,223,224,225,227,229,238,239,241,251,252,254,255,256,257,258,263,267,269,270,279,285,290,294,299,304,307,312,330,332,335,343,347,350,351,353,360,362,363,365,366,368,372,375,384,387,396,403,405,410,418,433,436,438],themat:120,theme:[53,112,120,122,141],themself:256,themselv:[6,8,13,18,20,22,27,32,36,45,48,57,69,73,74,80,84,86,90,92,99,101,103,105,112,121,122,125,126,129,137,139,152,180,216,241,280,294,302,305,312,361,363,384],theoret:[20,68,82,124,282],theori:[3,20,98,129,143,166,173],thereaft:35,therefor:[8,41,74,80,82,100,106,119,179,202,216,227],therein:[16,22,177,188,190,214,222,238,269],thereof:[241,294],thet:112,thi:[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,18,19,20,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,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,75,76,77,78,79,80,81,82,83,84,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,124,125,126,127,128,129,130,131,133,134,135,136,137,138,139,140,141,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,159,160,161,162,163,165,166,167,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,199,201,202,203,204,205,207,208,209,210,211,212,214,215,216,217,219,221,222,223,224,225,227,228,229,230,233,234,237,238,239,240,241,244,245,247,248,249,251,252,254,255,256,257,258,260,262,263,265,266,267,268,269,270,271,273,274,275,276,277,279,280,281,282,283,284,285,286,287,288,289,290,291,293,294,297,298,299,300,302,303,304,305,306,307,308,309,310,311,312,314,316,317,318,319,321,322,323,324,325,326,327,328,329,330,331,332,333,334,335,336,337,339,340,341,343,344,345,346,347,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,379,380,381,382,383,384,385,386,387,388,389,391,393,395,396,397,399,400,401,402,403,405,407,408,410,413,416,418,419,420,424,425,427,429,431,432,433,434,435,436,437,438,439],thie:27,thieveri:187,thin:[54,76,81,93,204,381],thing:[0,1,5,6,8,9,10,11,13,14,16,18,19,20,22,26,27,29,30,31,36,38,40,43,44,45,47,48,51,53,54,55,57,59,61,63,64,66,68,71,72,74,75,76,78,79,80,81,82,83,86,87,88,89,90,91,92,93,94,95,99,101,102,104,105,106,107,108,110,111,112,114,115,119,120,121,123,125,126,127,128,129,131,133,135,137,138,139,140,141,143,144,148,151,153,154,156,157,159,160,161,166,173,174,180,201,202,207,208,216,221,222,230,240,241,251,252,258,263,266,269,270,290,293,294,321,325,357,360,362,365,366,374,375,384,396,403,405,436,438,439,440],things_styl:221,think:[6,20,27,34,38,40,46,47,52,53,59,72,79,81,82,83,86,88,93,100,103,106,107,108,115,117,118,120,124,125,126,127,130,132,143,150,159,353,436],third:[3,8,9,19,27,29,58,74,75,83,84,87,95,101,115,123,125,137,141,144,145,152,153,154,180,191,216,365,372,375],third_person:221,thirdnod:27,this_sign:354,thoma:[35,55,178],thorn:[13,36,117],thorough:0,those:[2,8,9,10,11,12,13,14,15,16,18,20,22,25,27,29,32,36,38,40,44,46,48,53,57,59,66,67,72,75,81,82,86,87,89,90,92,94,96,97,98,99,100,102,103,105,107,108,110,113,114,115,117,118,119,120,121,123,125,126,129,131,133,135,137,142,143,145,148,151,154,157,159,161,174,175,177,180,185,186,187,191,195,202,214,221,241,245,251,252,254,263,268,269,290,298,299,306,335,340,343,361,362,372,373,374,382,383,386,388,410,427,432,433,435],though:[0,6,8,9,11,12,13,14,15,16,19,20,27,36,43,50,54,55,63,71,76,82,83,87,94,95,98,100,101,103,106,107,109,111,113,115,119,121,122,123,125,128,129,137,138,143,145,148,150,152,153,154,156,157,161,166,175,202,203,225,251,254,255,257,258,269,270,280,294,298,299,360,365,372,388],thought:[32,33,95,115,120,122,143,145],thousand:[81,95,140,154],thread:[19,77,143,145,161,331,357,381,388],threadpool:357,threadsaf:[396,403],threat:157,three:[14,18,20,22,27,30,32,35,36,55,56,59,64,72,74,76,79,84,89,91,101,105,109,115,117,121,127,140,141,154,172,185,187,252,257,281,290,365,372],threshold:[82,264,355,366],thrill:105,throttl:[163,164,166,308,317,330],through:[5,6,7,12,14,15,17,19,20,22,27,28,29,30,32,35,36,40,41,43,44,45,50,52,53,61,64,67,68,73,74,75,79,82,84,86,87,88,91,94,95,96,97,98,99,100,101,105,106,111,112,116,117,118,119,122,123,124,125,127,128,132,133,134,137,145,151,154,155,157,159,161,163,166,174,180,185,187,191,201,219,220,222,227,245,247,254,255,256,257,258,271,279,280,288,290,293,294,303,304,307,312,314,319,328,332,335,341,344,349,351,352,361,362,366,368,371,372,373,387,388,396,403,427,436],throughout:[13,27,43,80,86,108,256,277],throughput:[194,368],thrown:128,thrust:[268,392],thu:[15,18,20,22,27,29,32,34,38,48,57,59,64,66,68,72,81,95,96,98,99,110,115,122,126,129,133,137,141,147,177,181,203,240,279,280,282,290,294,307,344,358,360,361,368],thud:224,thumb:[4,11,59],thumbnail:89,thunder:145,thunderstorm:119,thusli:153,tick:[5,11,22,27,41,47,84,87,139,145,220,256,267,269,307,344],ticker1:[47,307],ticker2:[47,307],ticker:[31,41,85,107,139,167,267,269,303,307,317,388],ticker_class:307,ticker_handl:[47,139,163,307,388],ticker_pool_class:307,ticker_storag:307,tickerhandl:[19,24,41,128,139,163,164,248,256,269,300,388,440],tickerpool:307,tickerpool_layout:307,ticket:88,tidbit:86,tidi:156,tie:[128,282],tied:[18,87,117,174,187,204,216,219,263,281,286],tier:[154,199],ties:[53,72,80,182],tight:204,tightli:[38,157,194],tild:110,tim:[77,204,223,225,252,254,255,256,257,258],time:[0,2,3,5,7,8,9,11,12,13,14,15,17,18,20,27,28,29,30,32,34,36,40,43,44,47,48,54,55,59,61,62,64,66,67,69,71,72,74,75,76,77,78,80,82,83,85,86,87,88,89,90,91,92,93,94,95,97,99,101,102,106,107,108,110,112,113,114,115,116,117,119,120,121,123,125,126,128,129,134,137,139,140,144,145,147,148,149,150,152,153,154,156,161,166,167,169,171,172,174,175,178,185,190,194,196,199,201,207,210,211,216,222,229,230,233,238,239,240,247,248,250,251,252,254,255,256,257,258,260,263,267,268,269,286,293,294,297,299,300,302,305,306,307,312,314,316,318,319,324,330,335,337,343,344,345,349,350,351,353,355,360,362,363,365,366,367,368,373,376,379,380,381,384,388,396,403],time_ev:233,time_factor:[19,100,210,376],time_format:388,time_game_epoch:[19,100,376],time_to_tupl:210,time_unit:[100,210],time_until_next_repeat:41,timed_script:41,timedelai:[93,306,386,388],timedelta:[382,389],timeeventscript:230,timefactor:100,timeformat:[381,388],timeit:5,timelin:123,timeout:[77,128,136,150,335,355,379],timer:[19,22,47,64,87,97,108,111,112,122,128,190,222,250,256,260,263,268,300,305,306,307,343,351,385,413],timerobject:41,timerscript:41,timescript:376,timeslot:222,timestamp:[19,63,91,343,344,355,376],timestep:[5,344],timestr:381,timetrac:[163,164,308,342],timetupl:100,timezon:[145,199,381,382,389],tin:116,tini:[95,103,145],tinker:6,tintin:[146,325,326,336,339],tinyfugu:146,tinymud:[68,98],tinymush:[68,71,98],tinymux:[68,98],tip:[46,83,88,143,157],tire:[108,174],titeuf87:[77,271],titl:[17,51,76,101,155,185,187,202,217,285,365,368,438],title_lone_categori:187,titlebar:51,titleblock:101,tlen:151,tls:144,tlsv10:150,tlsv1:144,tmp:[2,148],tmpmsg:18,to_be_impl:434,to_byt:388,to_closed_st:263,to_cur:256,to_displai:202,to_dupl:173,to_execut:388,to_exit:74,to_fil:244,to_init:258,to_non:294,to_obj:[166,175,294],to_object:195,to_open_st:263,to_pickl:369,to_str:388,to_syslog:244,tobox:321,todai:[122,225],todo:[23,37,42,65,99,109,127,130,132,158],toe:[68,115],togeth:[11,15,20,22,29,30,36,39,48,60,64,74,75,76,80,82,84,87,93,98,99,110,112,115,116,117,119,120,121,122,123,125,126,128,129,130,131,138,144,151,154,171,180,182,187,207,208,217,222,237,238,240,241,268,269,279,280,293,299,321,340,353,365,366,385,396,403,440],toggl:[103,335],toggle_nop_keepal:335,togglecolor:103,toi:78,toint:[29,40,375],token:[18,125,151,332,335,366,375],told:[9,59,69,96,106,112,115,129,154,384],tolkien:100,tom:[29,35,71,99,121,129,180,186,224,241,371,375,391],tomdesmedt:391,tommi:[35,38,57,375],ton:[98,104],tone:59,tonon:[180,273],too:[3,5,7,9,11,13,14,15,17,18,19,22,27,30,33,38,48,50,55,59,64,74,75,76,79,80,84,89,90,91,93,95,98,99,105,106,107,108,111,113,114,117,118,120,121,122,123,125,126,128,129,137,140,148,178,180,197,208,209,252,257,263,280,281,289,317,321,355,357,366,371,372,373,374,385,388],took:[8,111,388],tool2:209,tool:[29,40,46,50,53,59,66,68,77,78,81,82,85,87,89,93,98,100,113,115,117,118,120,122,123,124,127,130,132,133,144,145,148,150,154,156,207,208,209,439],tool_kwarg:207,tool_nam:207,tool_tag:[78,207,208],tool_tag_categori:[78,207],toolbox:143,toolkit:53,tooltip:51,top:[0,5,10,11,14,20,22,26,28,29,30,41,43,46,48,50,53,75,76,81,82,84,93,95,98,99,101,105,107,111,114,115,116,129,134,140,141,143,148,153,161,169,174,196,202,204,210,214,237,241,252,270,271,279,280,284,286,293,302,312,354,360,362,363,366,373,374,381],topcistr:285,topic:[3,5,20,22,30,44,50,54,61,66,86,89,101,108,110,115,122,138,187,214,216,254,255,256,257,258,285,287,385,427,435],topicstr:285,topolog:[82,279,280],tostr:321,total:[5,19,32,43,44,49,59,82,100,104,106,121,135,190,199,211,280,349,373,374,376],total_num:379,touch:[6,43,59,84,112,113,144,147,157,355],tour:[106,112,118,124,127,130,132],toward:[3,22,61,76,81,82,106,120,122,123,225,258,267],tower:[81,222,269],town:[82,273],trace:[64,82,230,280,349,372],traceback:[6,8,14,19,41,53,63,72,98,107,115,129,140,161,230,237,297,321,362,366,381,388],tracemessag:349,track:[9,13,19,41,44,66,80,87,94,98,104,112,115,120,121,126,128,137,139,140,155,156,166,174,194,251,258,277,280,303,323,324,329,332,335,350,355,369,370,382],tracker:[11,77,88],trade:[77,79,121,122,201],tradehandl:201,trader:79,tradetimeout:201,tradit:[2,16,31,54,59,64,108,112,115,122,126,128,154,157,207,271,335,351,373],tradition:[64,98,120,122,123,208],traffic:[144,157,199,325],trail:[53,200],train:[102,107,122,143,251],traindriv:137,traindrivingscript:137,trainobject:137,trainscript:137,trainstop:137,trainstoppedscript:137,trait1:251,trait2:251,trait:[19,84,122,126,163,164,197,250,299],trait_class_path:251,trait_data:251,trait_kei:251,trait_properti:251,trait_typ:251,traitexcept:251,traithandl:[250,251],traithandlertest:250,transact:[121,201],transfer:[105,140,174,323,333,337,374],transform:[2,110],transit:[36,274,277,279,280],transitionmapnod:[82,274,277,280],transitiontocav:274,transitiontolargetre:274,transitiontomapa:82,transitiontomapc:82,translat:[15,35,59,61,67,69,112,138,143,199,240,241,299,314,365],transmiss:244,transmit:[69,410],transpar:[18,44,51,138,150,293,307],transport:[321,332,341],transportfactori:332,transpos:138,trap:[15,104,119],traumat:27,travel:[64,67,80,104,248,271],travers:[13,32,36,80,82,96,105,137,199,247,248,267,268,271,279,280,289,294,413],traverse_:22,traversing_object:[247,248,271,294],travi:[1,440],travis_build_dir:10,treasur:[75,117,121,271],treasurechest:38,treat:[15,22,44,46,48,54,81,82,87,110,116,117,166,171,174,224,262,280,284,294,299,344,353,372,374,385],tree:[11,13,22,27,38,73,78,82,84,87,120,121,131,148,163,164,197,202,206,241,252,270,274,294,299,312,341,357,372,388,409],tree_select:[163,164,197],treestr:252,trembl:[113,116],treshold:379,trhr:199,tri:[13,15,22,32,34,35,44,45,55,63,64,69,93,99,106,107,114,117,120,122,125,128,140,146,154,172,190,201,203,223,268,269,316,355,388,389],trial:[7,338],tribal:81,trick:[76,114,125,143,144,362,427],tricki:[8,40,138],trickier:[75,101],tried_kei:38,trigger:[2,3,18,20,22,27,31,33,36,44,45,47,58,64,72,79,80,90,97,98,101,123,128,134,135,137,141,146,156,166,167,171,172,175,177,191,202,216,233,263,267,269,293,294,299,307,314,317,321,343,350,354,368,372],trim:365,tripl:[19,84,115,388],triumph:[119,122],trivial:[3,5,19,22,61,106,119,125],troll:55,troubl:[11,34,44,75,79,88,99,106,108,115,118,144,145,148,153,159,160,360],troubleshoot:[75,160],troublesom:[14,15,55],trove:[75,121],truestr:223,truli:[44,55,74,95,222],trunc:199,trust:[27,29,57,98,121,122,190,366],truth:3,truthfulli:22,truthi:[107,306],try_num_differenti:172,ttarget:128,tto:335,tty:[75,156],ttype:[163,164,308,320,332,335],ttype_step:339,tuck:81,tulip:117,tun:180,tune:[112,122,138,150],tunnel:[74,76,80,82,96,99,107,108,114,125,137,180,337],tup:[95,241],tupl:[3,5,13,27,29,35,38,40,50,66,67,95,107,110,125,128,141,154,163,166,172,178,180,185,187,188,195,199,201,202,207,210,211,215,221,224,227,241,256,257,262,266,271,273,279,280,281,282,287,289,290,294,298,299,307,309,321,322,332,333,337,344,351,353,360,363,365,367,368,370,372,376,381,383,388,391,411],tuple_of_arg_convert:29,tupled:381,turbo:153,turkish:166,turn:[8,11,19,20,22,26,27,32,44,45,53,54,55,59,62,64,67,72,74,77,81,82,84,87,98,99,103,107,113,114,115,116,117,119,121,122,125,134,135,137,138,140,143,154,161,166,175,185,190,191,194,233,241,252,254,255,256,257,258,267,269,282,294,299,312,317,325,332,335,343,353,359,362,366,368,372,373,374,375,388,396,416,418,440],turn_act:128,turn_end_check:[254,255,256,257,258],turnbattl:[163,164,197],turnchar:256,tut:[119,269],tutor:266,tutori:[3,17,20,21,22,25,27,46,47,53,54,56,59,72,76,80,81,83,84,86,87,89,91,92,93,95,98,99,103,104,106,107,108,110,112,113,114,115,116,121,123,131,138,140,143,148,151,154,160,202,248,255,268,269,439,440],tutorial_bridge_posist:269,tutorial_cmdset:269,tutorial_exampl:[14,15,108,112,115,163,164,197],tutorial_info:269,tutorial_world:[76,119,148,163,164,197],tutorialclimb:268,tutorialevmenu:266,tutorialmirror:[115,262],tutorialobject:[267,268],tutorialread:268,tutorialroom:[267,269],tutorialroomcmdset:269,tutorialroomlook:269,tutorialweapon:[267,268],tutorialweaponrack:268,tutorialworld:[268,269],tutoru:115,tweak:[6,18,30,40,48,53,75,82,91,98,99,107,113,121,127,134,144,150,166,191,263,357,365,395,400],tweet:[102,440],tweet_output:136,tweet_stat:136,tweetstat:136,twenti:99,twice:[27,91,100,119,128,200,230,258,372],twist:[6,19,22,52,54,61,93,143,148,152,153,157,294,306,309,312,314,315,321,322,323,324,329,332,335,338,340,341,343,350,353,357,381],twistd:[7,148,161,329,350],twistedcli:61,twistedweb:157,twitch:128,twitter:[136,159,440],twitter_api:151,two:[4,5,6,8,11,13,14,15,16,19,20,22,26,27,29,30,31,32,33,36,39,40,41,43,44,46,48,51,56,57,61,63,64,66,67,68,69,71,72,73,74,76,79,80,81,82,84,87,89,91,92,93,95,96,98,99,101,105,106,108,109,110,111,112,113,114,115,116,117,118,119,121,122,123,124,125,126,127,128,129,137,138,140,141,145,149,150,154,156,157,161,173,180,185,194,196,201,202,207,208,211,216,234,239,247,248,251,252,256,258,263,269,270,277,279,280,294,296,312,341,352,353,361,363,366,372,374,375,381,388,389],twowai:180,txt:[0,26,61,75,84,115,142,153,154,167,240,328,336,370,372,391],tying:[154,416],typclass:241,type:[0,3,6,9,15,17,18,19,20,22,25,26,27,29,30,32,34,35,40,41,44,45,46,47,48,49,50,51,55,56,57,59,64,66,67,68,69,74,76,77,78,79,80,81,82,83,84,86,87,90,91,92,93,96,97,98,99,100,103,104,106,108,109,110,111,112,113,115,116,119,120,121,122,125,126,127,128,129,134,135,136,137,138,140,143,144,146,153,154,157,161,163,164,166,167,175,180,185,187,190,191,192,194,195,196,197,200,202,204,207,208,212,214,216,217,219,223,227,230,233,234,241,248,254,255,256,257,258,263,268,269,270,278,279,280,282,284,286,289,290,293,294,298,299,306,307,310,312,314,315,323,324,330,332,333,335,336,337,339,340,341,343,351,353,357,360,361,362,363,365,366,368,369,372,373,374,375,383,384,385,387,388,395,396,403,407,408,410,413,421,427,435],type_count:204,typecalass:360,typecalss:230,typeclas:113,typeclass:[0,8,12,13,14,18,19,22,24,30,32,33,34,36,38,40,41,44,45,46,50,53,55,62,63,64,74,75,76,77,78,80,81,82,84,90,91,95,96,97,99,100,101,102,104,105,106,108,109,110,111,116,118,121,126,127,128,129,134,135,136,137,139,140,141,163,164,166,167,168,169,174,180,185,190,194,195,196,197,204,207,214,216,219,221,222,226,229,230,233,238,241,247,248,249,254,255,256,257,258,263,269,271,273,282,285,290,292,293,294,298,299,301,302,303,305,307,350,367,368,385,386,388,405,407,410,413,418,428,437,440],typeclass_path:[41,48,169,180,302,361,362],typeclass_search:361,typeclasses:113,typeclasslistserializermixin:410,typeclassmanag:[168,195,292,301],typeclassmixin:[431,432,433,437],typeclassserializermixin:410,typeclassviewsetmixin:413,typedobject:[48,169,175,196,241,271,282,293,294,302,360,361,362,363,383,388],typedobjectmanag:[195,285,361],typeerror:[3,211,341],typelass:18,typenam:[76,166,167,169,194,196,201,204,210,216,217,222,224,230,238,239,240,241,247,248,249,254,255,256,257,258,260,262,263,267,268,269,271,281,282,286,293,294,298,302,305,319,345,360,362,376,379,380],typeobject:363,types_count:204,typic:[8,19,86,106,251,257,258,410,437],typo:[83,84,88,157],ubbfwiuvdezxc0m:83,ubuntu:[6,11,144,145,148,150,154,157],ufw:157,ugli:[40,51,97,115,382],uid:[156,169,324,331,352,353],uit:[76,202],ulrik:99,ultima:143,umlaut:16,unabl:[151,225],unaccept:22,unaffect:[27,128,256,306],unalia:[18,185],unari:250,unarm:255,unarmor:255,unauthenticated_respons:428,unavoid:47,unban:[18,55,107,178,185,191,194],unban_us:185,unbias:211,unbroken:371,uncal:306,uncas:365,uncategor:385,unchang:[6,35,240,299,388],unclear:[82,94,123,280],uncolor:[59,103],uncom:[150,154],uncommit:11,uncompress:325,unconnect:[82,192,212],uncov:204,undefin:[2,46,66],under:[2,3,5,7,9,18,22,27,29,30,41,48,51,53,63,66,68,72,75,77,79,84,87,98,107,108,110,113,114,116,120,121,122,126,129,133,140,141,142,143,146,148,153,156,161,175,177,180,207,223,251,252,270,290,305,312,339,360,365,372,373,374,388,391,404],undergar:204,undergon:230,underground:82,underli:[11,32,50,87,98,120],underlin:[374,387],underneath:[75,362],underpin:130,underscor:[6,27,29,31,67,74,78,84,115,173,375,388],underscror:173,understand:[0,3,11,16,20,22,40,43,44,52,54,59,64,69,70,78,80,81,83,84,86,89,91,93,94,95,96,102,103,106,107,110,112,113,114,115,116,120,121,122,123,125,129,133,140,141,143,145,146,148,157,172,173,185,239,240,241,357,365,388,440],understood:[8,30,64,81,106,122,280,340,341],undertak:123,undestand:91,undo:[26,157,370],undon:177,undoubtedli:98,uneven:280,unexpect:[8,106,138,372],unexpectedli:379,unfair:122,unfamiliar:[31,32,53,67,77,115,135,148,154],unfocu:214,unfocus:216,unformat:[27,372,376],unfortun:[89,120],unhappi:75,unhilit:387,unicod:[16,64,69,77,82,166,280,365,388],unicodeencodeerror:365,unifi:[140,352],uniform:44,unimpl:440,uninflect:391,uninform:144,uninstal:148,uninstati:388,unintent:270,union:[20,27,113,173,263,372],uniqu:[2,8,12,14,20,22,25,32,33,34,40,44,46,48,50,51,55,61,64,79,82,84,87,98,108,110,113,117,129,151,154,166,171,173,175,180,185,190,192,194,195,203,207,210,212,216,229,239,240,241,247,252,255,256,267,269,273,279,280,282,285,294,298,299,307,309,321,322,330,343,344,352,353,360,361,362,363,368,370,382,385,388],unit:[1,2,10,19,20,45,53,83,87,100,104,143,195,209,210,220,233,250,256,314,368,376,388,392,420,440],unittest:[8,10,91,191,353,368,386],univers:[15,16,100,185],unix:[0,28,35,77,84,146,148,150,186,270,373,381,388],unixcommand:[163,164,197],unixcommandpars:270,unixtim:381,unjoin:201,unknown:[51,97,101,113,280,298,388],unknown_top:435,unleash:92,unless:[13,18,19,22,27,29,32,33,34,36,47,55,67,73,76,82,84,89,90,93,113,116,120,122,129,142,145,150,152,154,161,166,173,174,178,180,185,187,188,191,194,229,239,240,241,258,268,284,289,290,294,299,310,325,341,353,360,362,375,385,388,389,435],unlik:[45,82,83,87,122,126,154,166,202,256,280,362],unlimit:[271,279],unlink:[107,180],unload:[82,386],unload_modul:386,unlock:[18,38,99,113,185,216,360],unlock_flag:216,unlocks_red_chest:38,unlog:[5,178,183,184,192,212,353],unloggedin:[44,163,164,170,176,353],unloggedincmdset:[25,44,114,184,212],unlucki:55,unmask:241,unmodifi:[172,189,222,372],unmonitor:317,unmut:[18,185,194],unmute_channel:185,unnam:[46,173],unneccesari:69,unnecessari:[2,120],unnecessarili:110,unneed:271,unpaced_data:321,unpack:[106,289],unpars:[31,35,172,340,341,375],unpaus:[41,156,190,306],unpickl:[50,64,321,360,369,384],unplay:[44,91],unpredict:388,unprivileg:299,unprogram:126,unpuppet:[45,129,177,395],unpuppet_al:166,unpuppet_object:[12,166],unquel:[38,108,115,177],unreal:143,unrecogn:375,unrecord_ip:355,unregist:72,unrel:[11,27],unrepat:388,unrepeat:[317,388],unreport:317,unrestrict:121,unsaf:[161,173,269],unsatisfactori:81,unsav:370,unsel:105,unset:[22,36,80,99,128,178,191,216,217,219,241,251,267,279,281,290,294,298,299,307,368,372,373,374,375,381],unset_character_flag:216,unset_flag:[216,217],unset_lock:185,unsign:389,unsigned_integ:[382,389],unsignedinteg:382,unskil:251,unspawn:280,unstabl:156,unstrip:172,unsub:[18,185],unsub_from_channel:185,unsubscrib:[18,47,99,185,307,323],unsuccessful:63,unsuit:[57,298,363],unsur:[16,29,83,107,128,148,151,154,248],unsurprisingli:115,untag:51,untest:[8,146,148],until:[0,2,5,6,11,13,14,20,22,27,35,41,47,51,52,54,55,59,66,82,87,93,94,108,110,115,116,119,120,121,122,125,129,133,138,144,148,201,204,210,233,250,251,254,255,256,257,258,263,267,268,269,279,294,306,312,341,343,365,366,376,388],untouch:[82,116,365],untrust:[14,29,77,122,388],unus:[22,78,82,103,122,166,171,175,185,194,222,252,258,262,269,282,294,305,335,351,356,361],unusu:[123,157],unwield:255,unwieldli:174,upcom:[147,159],updat:[1,2,5,6,8,12,13,14,15,22,27,30,33,36,41,47,49,63,64,66,67,72,75,80,82,84,87,89,92,93,94,95,98,99,100,103,106,112,115,120,125,126,128,129,133,140,141,143,144,145,146,148,150,151,153,154,155,156,159,167,174,175,180,185,188,190,191,194,205,222,230,241,250,257,269,275,281,286,290,293,294,296,297,299,303,328,330,331,336,350,351,353,355,360,362,369,370,371,372,373,374,379,388,395,396,403,408,412,427,428,437,438,440],update_attribut:360,update_buff:370,update_cached_inst:379,update_charsheet:99,update_current_descript:222,update_default:350,update_flag:351,update_lock:408,update_method:51,update_po:80,update_session_count:351,update_undo:370,update_weath:269,updated_bi:227,updated_on:227,updatemethod:51,updateview:[437,438],upenn:391,upfir:7,upgrad:[87,148,153],upload:[87,89,148,154,156,199],upmaplink:[82,280],upon:[15,32,49,53,66,69,93,120,129,134,154,156,157,223,245,254,255,256,257,258,304,314,323,355,373,437],upp:269,upper:[8,49,59,66,82,93,95,177,251,279,280,365],upper_bound:251,upper_bound_inclus:251,uppercas:[59,365],upping:59,upsel:154,upset:107,upsid:271,upstart:61,upstream:[0,9,43,87],upt:174,uptim:[19,29,55,100,190,326,376],urfgar:40,uri:[175,194,284,286,362],url:[11,49,50,52,53,58,72,84,87,112,133,141,144,154,155,163,164,167,175,185,194,199,200,284,286,331,341,357,362,387,393,394,406,413,423,426,432,433,435,438],url_nam:[413,428],url_or_ref:84,url_path:413,url_protocol:199,url_to_online_repo:11,urlencod:101,urlpattern:[53,72,89,101,131,140,141],usabl:[62,89,115,121,129,180,202,216,225,256,289,355,372],usag:[3,5,22,27,30,34,40,47,55,71,74,76,84,87,90,92,93,94,99,103,104,105,106,107,114,115,125,126,128,129,137,151,154,160,175,177,178,179,180,185,186,187,190,191,192,201,202,203,204,207,210,211,212,214,222,223,224,234,237,238,240,241,245,247,248,249,254,255,256,257,258,263,266,267,268,269,270,271,273,275,289,297,306,312,343,372,374,375,379],use:[0,2,3,4,5,7,8,9,10,11,12,13,14,15,16,17,19,20,22,25,26,27,28,29,30,31,32,33,34,35,36,38,40,41,43,44,45,46,48,49,50,51,52,53,54,55,56,57,59,61,62,63,64,66,67,68,69,71,72,73,74,75,76,77,78,79,80,81,82,83,84,87,88,89,90,91,92,93,95,97,98,99,100,101,102,103,104,105,106,107,108,109,110,112,113,114,115,116,117,118,119,120,123,124,125,126,127,128,129,130,131,132,133,135,136,137,138,139,140,141,143,144,145,146,147,148,149,150,151,152,154,155,156,157,159,160,163,166,167,169,171,172,173,174,175,177,180,181,185,186,187,188,190,191,194,196,199,201,202,203,204,207,208,211,214,216,217,221,222,224,225,229,233,234,237,238,239,240,241,247,249,251,252,254,255,256,257,258,260,263,266,267,268,269,270,271,273,274,275,279,280,282,284,289,290,293,294,298,299,306,307,310,317,321,334,336,337,340,343,344,351,352,353,360,361,362,363,365,366,367,368,370,371,372,373,374,375,379,381,382,384,388,389,396,398,403,408,410,413,433,436],use_dbref:[241,294,385],use_destin:294,use_i18n:63,use_item:256,use_nick:[166,241,294],use_required_attribut:[397,399,401,403,427],use_ssl:199,use_success_location_messag:238,use_success_messag:238,use_tz:199,use_xterm256:365,useabl:271,used:[5,8,9,11,12,13,14,16,17,18,19,20,23,25,26,27,28,29,30,31,32,33,34,35,36,38,40,41,43,44,45,46,47,48,50,51,52,53,54,56,57,59,61,63,64,66,67,68,69,70,71,72,74,75,76,77,78,79,81,82,84,87,93,94,97,98,99,100,101,104,105,106,108,109,110,111,112,113,114,115,116,117,118,119,122,125,126,128,129,131,133,135,136,137,138,140,141,143,145,146,147,148,150,152,154,156,157,161,163,166,167,171,173,174,175,177,180,185,187,188,189,190,191,194,199,201,202,204,207,208,210,212,216,217,219,222,223,224,225,227,229,230,233,234,239,240,241,248,251,252,254,255,256,257,258,263,267,268,269,270,271,273,276,279,280,281,282,284,285,286,287,288,289,290,294,298,299,305,306,307,308,309,310,314,317,318,321,322,323,324,325,326,327,328,329,330,332,334,335,336,339,340,341,344,351,353,354,360,361,362,363,364,365,366,368,369,370,372,373,374,375,381,382,383,384,385,388,389,395,396,400,403,405,410,413,420,427,431,433,435,436,437],useful:[0,1,2,3,5,8,11,13,14,15,16,17,19,20,26,27,29,30,32,35,36,40,41,43,45,46,47,48,50,53,54,55,56,57,59,62,74,76,78,79,81,82,83,84,85,87,89,91,92,93,94,95,98,99,101,102,103,106,107,108,110,111,113,114,115,116,117,119,122,124,125,128,129,136,139,140,145,148,154,159,161,171,173,174,175,177,179,180,187,188,191,194,197,201,202,207,216,221,229,230,234,240,241,245,251,263,269,270,271,280,281,289,294,298,299,312,332,360,362,366,372,376,384,388,409,439],usefulli:114,useless:[113,125,267],user:[2,3,5,6,8,10,12,13,14,15,18,20,25,26,27,28,29,30,31,32,35,38,40,43,44,45,48,49,50,51,52,54,55,58,59,61,62,67,69,70,72,76,77,78,80,82,83,84,86,87,88,89,91,92,93,94,102,103,105,106,107,108,112,113,115,117,118,122,125,129,133,137,138,140,141,143,144,145,148,149,150,151,152,153,154,155,156,160,166,167,169,172,175,178,180,185,187,190,191,194,195,196,199,200,202,204,207,215,216,222,224,228,230,241,244,245,252,256,258,262,269,271,280,282,284,286,290,294,299,305,308,310,316,324,331,332,335,340,341,351,353,356,360,362,365,370,372,373,374,375,382,388,389,395,408,416,419,427,432,433,434,435,436,438,440],user_change_password:395,user_input:27,user_permiss:[169,395],useradmin:395,userauth:332,userchangeform:395,usercreationform:[395,427],usernam:[11,12,25,27,31,45,49,89,121,141,148,156,166,169,212,332,356,395,407,410,419,427],usernamefield:427,userpassword:[55,107,178],uses:[5,8,10,11,14,16,17,18,20,22,27,29,30,32,34,40,41,45,46,47,48,50,51,53,56,59,61,66,67,69,74,75,76,78,84,87,93,94,95,96,98,101,103,110,112,113,115,116,121,133,145,154,155,173,187,191,201,207,211,216,222,234,240,241,256,269,270,271,279,280,290,302,307,321,341,355,360,363,381,382,388,407,410,416,435],uses_databas:388,using:[0,2,5,6,9,11,12,13,14,15,16,18,19,20,22,26,27,29,30,31,32,35,36,40,41,44,45,46,47,48,49,50,51,52,53,54,55,57,59,64,66,67,68,71,73,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,97,98,99,100,103,105,106,107,108,109,110,111,112,115,116,120,121,122,123,125,126,127,128,129,134,135,136,137,138,139,140,141,142,143,144,145,146,148,150,151,152,154,156,157,160,161,166,169,171,174,175,177,179,180,185,187,188,189,190,191,194,199,201,202,203,207,208,209,210,211,216,222,223,225,229,238,240,241,247,248,249,251,252,254,255,256,257,258,266,267,269,270,271,273,274,279,280,282,284,287,290,294,297,298,299,302,306,307,323,324,325,330,331,335,341,344,353,354,355,357,360,362,363,365,366,370,372,373,376,381,382,383,384,385,386,388,393,408,412,413,427,435,436,439,440],usr:[87,148,153,156],usu:41,usual:[0,5,6,7,8,11,12,13,18,19,20,22,26,27,28,31,32,34,35,36,40,41,44,46,47,48,50,52,53,57,59,61,63,74,75,76,77,79,82,83,84,87,89,90,91,93,94,98,100,103,106,107,109,110,112,113,115,116,117,119,122,123,125,133,138,140,144,145,148,150,152,154,156,161,166,167,172,173,174,175,177,180,185,186,190,191,196,210,219,229,230,233,239,240,241,251,269,270,279,280,282,290,293,294,298,299,312,314,319,344,351,360,362,365,367,368,372,373,375,381,383,385,388,396,403],usuallyj:82,utc:[145,389],utf8:[2,145],utf:[16,31,69,81,99,146,199,317,323,340,374,388],util:[6,8,13,14,15,26,27,28,36,41,50,51,54,56,59,66,70,80,81,98,99,100,103,105,109,111,118,123,134,140,141,144,148,157,163,164,179,190,191,194,196,197,199,209,210,213,215,220,222,223,226,230,231,246,248,251,257,263,264,266,272,277,283,286,294,296,298,305,306,319,338,343,360,361,362,393,394,396,397,399,401,403,411,427,428,440],utilis:372,uyi:240,v19:148,vagu:90,val1:375,val2:375,val:[13,67,166,177,336,388],valid:[0,3,6,10,13,14,20,22,27,29,36,40,53,58,59,67,78,82,94,96,99,101,106,112,115,129,140,141,150,154,157,161,163,164,166,172,174,180,188,191,194,195,201,202,207,209,223,227,230,231,239,241,250,251,252,257,268,269,270,271,279,290,294,296,298,299,303,305,306,307,308,310,312,336,340,351,360,361,363,366,368,372,375,382,383,384,385,387,388,389,410,427,431,433,438],valid_handl:382,validate_cal:375,validate_email_address:388,validate_input:251,validate_nam:294,validate_onli:290,validate_password:[27,166],validate_prototyp:298,validate_sess:353,validate_usernam:166,validated_consum:[78,207],validated_input:207,validated_tool:[78,207],validationerror:[166,298,356,382,384],validator_config:166,validator_kei:382,validatorfunc:[163,164,364],valign:374,valu:[3,6,8,9,12,13,17,19,20,22,26,29,31,32,33,35,41,47,48,49,50,51,54,55,59,66,67,74,76,80,81,82,87,89,91,92,95,99,100,101,103,104,105,107,108,110,112,113,114,115,117,120,121,126,128,129,138,140,141,148,150,154,166,169,171,173,175,177,178,180,191,194,196,199,202,204,211,216,223,224,225,227,230,231,238,239,240,241,246,250,251,254,255,256,257,258,262,264,269,271,279,280,282,286,289,290,293,294,297,298,299,302,306,307,310,317,318,319,321,330,335,336,351,352,353,358,360,361,362,363,365,367,368,369,370,371,372,375,379,380,382,383,384,385,388,389,407,410,420,427,436,438],valuabl:119,value1:40,value2:40,value_displai:410,value_from_datadict:384,value_to_obj:298,value_to_obj_or_ani:298,value_to_str:384,valueerror:[40,106,129,199,202,237,239,360,363,365,368,388,389],valuei:81,values_list:110,valuex:81,vampir:110,vanilla:[0,48,66,75,80,97,99,113,120],vaniti:27,vari:[11,30,48,61,63,68,82,87,94,104,112,115,228,240,251,258,282,351,360,362],variabl:[4,5,6,7,13,14,20,22,27,29,30,32,40,41,43,51,62,63,67,69,72,74,79,80,82,84,86,87,92,97,99,101,106,107,110,113,114,115,116,131,137,140,141,148,156,157,166,169,171,175,177,180,185,188,190,191,194,199,205,214,222,223,227,229,230,233,238,251,269,279,281,289,293,294,298,299,309,312,322,325,326,328,332,334,344,351,358,365,366,372,375,388,420],variable_from_modul:388,variable_nam:[227,230],variablenam:388,varianc:240,variant:[13,46,77,86,115,174,202,212,248,323,365],variat:[100,110,122,125,126,128,173,222,240,388],varieti:[86,104,128,136,256,257],variou:[5,6,8,13,16,22,34,36,40,41,44,46,47,48,51,53,61,65,67,70,79,82,83,85,98,100,101,103,110,111,112,115,117,121,125,126,128,129,130,150,154,157,161,173,189,210,216,240,241,252,256,257,263,267,268,280,290,293,294,299,300,307,344,368,374,385,386,416],varnam:336,vast:[66,68,81,145],vastli:87,vcc:240,vccv:240,vccvccvc:240,vcpython27:75,vcv:240,vcvccv:240,vcvcvcc:240,vcvcvvccvcvv:240,vcvvccvvc:240,vector:388,vehicl:[90,440],velit:28,venu:[11,195],venv:[148,153],ver:145,verb:[29,91,294,348,375,391,392],verb_actor_stance_compon:391,verb_all_tens:391,verb_conjug:[163,164,364],verb_infinit:391,verb_is_past:391,verb_is_past_participl:391,verb_is_pres:391,verb_is_present_participl:391,verb_is_tens:391,verb_past:391,verb_past_participl:391,verb_pres:391,verb_present_participl:391,verb_tens:391,verb_tenses_kei:391,verbal:294,verbatim:[29,108,115],verbatim_el:388,verbos:[0,8,84,128,241],verbose_nam:[140,362,395,396,403],verbose_name_plur:[396,403],veri:[0,3,5,6,8,9,11,12,13,14,15,17,18,19,20,22,25,26,27,28,29,30,31,32,40,41,43,45,46,47,48,50,51,53,54,59,61,66,67,68,71,73,74,75,76,79,80,81,82,83,84,86,87,88,89,90,92,93,95,97,98,99,102,105,106,108,110,112,113,115,116,117,118,119,120,121,122,123,125,126,128,129,137,139,141,142,143,144,145,150,152,154,161,166,167,173,175,191,194,196,202,204,207,229,230,239,240,241,247,248,249,251,252,257,267,270,271,285,293,298,316,361,363,368,370,372,388,436],verif:154,verifi:[2,5,11,27,113,148,154,180,191,199,207,223,257,337],verify_online_play:223,verify_or_create_ssl_key_and_cert:337,verify_ssl_key_and_cert:333,verifyfunc:223,versa:[44,53,61,67,82,128,185,273,321],version:[1,2,9,12,13,14,15,18,20,22,25,27,30,31,34,35,41,48,51,53,59,63,66,68,78,81,82,83,87,89,90,93,94,98,103,106,107,108,112,114,115,120,122,125,129,133,138,143,145,146,147,148,153,154,156,160,180,188,190,192,199,203,204,212,221,222,241,255,256,257,258,263,268,294,299,312,317,331,355,360,365,373,388,395,396,397,400,401,404,410,427,439,440],version_info:312,versionad:84,versionchang:84,versu:86,vertic:[268,277,279,280,374,388],very_strong:290,very_weak:32,vest:157,vet:40,veteran:143,vex:392,vfill_char:374,via:[5,11,13,18,19,27,28,29,31,39,40,41,48,49,51,54,59,61,64,66,68,77,83,86,88,97,98,105,110,112,113,115,120,126,129,138,148,150,154,157,193,195,196,199,244,263,273,293,302,360,363,365,380],viabl:[78,122,267],vice:[44,53,61,67,82,128,185,273,321],vicin:[22,186,222,269],video:[51,59,112,143],vidual:82,vienv:75,view:[0,3,11,17,19,26,27,28,30,32,41,47,49,50,52,53,66,81,82,84,86,87,89,99,102,104,107,112,113,115,118,122,128,129,133,148,152,154,159,160,161,163,164,166,175,177,178,180,185,186,187,190,194,204,241,254,255,256,257,258,271,284,286,294,296,347,362,373,393,398,405,406,408,410,412,416,420,423,426,427,440],view_attr:180,view_lock:408,view_on_sit:[395,397,399,400,401,403],viewabl:[85,86,187],viewer:[84,91,101,241,271,294,362],viewport:3,viewset:[49,412,413],vim:[15,26,118,143,370],vincent:[77,202,222,239,270],violent:27,virtual:[82,86,89,98,143,148,154,190,222,280,376],virtual_env:153,virtualenv:[0,2,5,6,7,9,63,75,84,145,148,153,154,156,160,161],virtualhost:144,visibl:[2,11,14,20,30,34,44,48,53,59,82,84,91,101,103,120,121,122,125,129,147,148,150,154,160,186,187,241,277,279,280,294,324,357,372,388,435],vision:[13,99,120],visit:[76,80,81,140,141,154,270,372],visitor:[72,141,157],vista:148,visual:[5,30,51,59,82,91,98,148,166,187,225,277,279,280,282],visual_rang:282,vital:106,vlgeoff:[77,210],vniftg:148,vnum:97,vocabulari:[79,388],voic:[22,77,79,440],volatil:298,volcano:117,volum:[81,90,120,156],volund:110,volunt:63,voluntari:83,volupt:28,vowel:240,vpad_char:374,vscode:118,vulner:[93,157],vvc:240,vvcc:240,vvccv:240,vvccvvcc:240,w001:8,wai:[3,5,6,7,8,9,11,12,13,14,15,16,19,20,22,29,30,31,32,33,34,35,36,38,39,40,41,43,44,45,46,47,48,52,53,54,55,57,59,61,64,66,67,69,71,73,74,75,76,78,79,80,81,83,84,86,87,88,90,92,94,95,96,97,98,99,100,101,102,104,105,106,107,108,109,110,111,112,113,116,117,119,120,122,123,125,126,128,129,133,134,135,137,138,139,140,143,145,147,148,152,153,154,155,157,160,161,166,172,173,180,187,194,201,207,210,211,216,219,222,223,225,229,233,240,247,248,251,252,254,255,256,257,258,263,266,267,268,270,273,277,280,284,290,294,298,307,312,317,321,332,353,355,357,358,359,361,363,366,371,372,374,379,381,384,405,412,413,436,438],wail:80,waist:204,wait:[3,19,22,27,41,54,74,91,92,93,108,119,121,122,137,167,191,229,233,251,254,255,256,257,258,263,312,322,341,343,355,368,372,388],wait_for_disconnect:322,wait_for_server_connect:322,wait_for_statu:312,wait_for_status_repli:312,waiter:312,waitinf:191,wake:223,walias:180,walk:[15,20,74,77,79,80,82,86,90,95,100,105,120,122,125,248,249,252,263,271,273,280,366],walki:[18,87,122],wall:[81,107,115,119,125,178,186,222,268,269],wand:[78,207],wanna:[83,121,201,263],want:[0,3,4,5,6,7,8,9,11,12,13,14,15,16,18,19,20,22,25,26,27,29,30,31,32,33,34,35,36,38,40,41,43,44,45,47,48,49,50,51,53,54,55,57,59,61,62,63,64,66,67,68,69,72,73,74,75,76,77,78,79,80,81,82,83,84,87,88,89,90,91,92,93,94,95,96,98,99,100,101,103,104,105,106,107,108,110,111,112,113,114,115,116,117,118,120,121,123,124,125,126,127,129,130,131,132,133,135,137,138,139,140,141,142,144,145,146,147,148,150,151,152,153,154,155,157,159,160,161,166,173,174,175,177,186,187,191,201,202,207,212,216,222,223,225,239,241,244,251,252,254,255,256,257,258,263,269,271,279,280,282,289,290,294,299,305,307,328,330,336,343,353,358,360,362,370,372,373,379,384,388,396,403,405,412,427,432,435,436,438,439],wanted_id:32,war:[30,284],warchannel:185,ware:105,warehous:[244,366],wari:[59,271,294,362],warm:[41,161,316],warn:[9,19,20,30,43,44,73,77,81,82,87,106,112,115,141,144,148,154,173,194,199,245,311,312,337,381,439],warnmsg:381,warrior:[92,98,99,119,122,129,185],wasclean:[323,340],wasn:[3,74,141],wast:[15,47],watch:[7,15,33],water:[78,174,207,208,238],waterballon:238,wave:81,wavi:82,wcach:190,wcactu:257,wcommandnam:270,wcure:257,wdestin:180,weak:299,weakref:379,weaksharedmemorymodel:[319,379],weaksharedmemorymodelbas:[319,379],weakvalu:379,wealth:105,weapon:[27,40,66,87,93,104,105,107,109,110,114,119,120,121,126,127,128,208,255,267,268,299],weapon_ineffective_msg:267,weapon_prototyp:268,weaponrack_cmdset:268,weaponstr:114,weapoon:119,wear:[77,104,121,127,204,241,255,263],wearabl:204,wearer:204,wearstyl:204,weather:[41,46,47,73,81,94,102,112,119,120,126,269,440],weather_script:41,weatherroom:[139,269],web:[17,30,32,40,49,52,56,58,63,75,84,85,86,87,89,91,94,101,108,111,115,118,120,132,143,144,145,148,152,153,160,161,163,164,199,314,316,326,330,336,340,341,351,355,357,363,369,440],web_client_url:147,web_get_admin_url:[175,194,284,286,362],web_get_create_url:[194,286,362],web_get_delete_url:[194,286,362],web_get_detail_url:[175,194,284,286,362],web_get_puppet_url:362,web_get_update_url:[194,286,362],web_help_entri:435,web_plugin:112,webclient:[24,44,51,53,58,59,61,64,67,70,72,85,87,94,101,112,115,146,147,150,157,161,163,164,187,190,199,216,266,308,317,320,336,341,352,372,393,420,421,428,440],webclient_ajax:[51,163,164,308,320],webclient_en:157,webclient_opt:317,webclientdata:341,webclienttest:428,webpag:[17,144,154,424],webport:2,webserv:[2,24,43,49,53,61,72,75,111,112,131,144,145,150,154,156,159,163,164,308,440],webserver_en:157,webserver_interfac:[150,154],webserver_port:154,webservic:157,websit:[17,49,50,51,52,75,85,86,87,98,101,102,112,131,133,140,143,150,154,155,157,163,164,341,357,393,395,421,440],websocket:[51,52,61,87,154,156,323,329,340,352,440],websocket_client_interfac:[150,154],websocket_client_port:154,websocket_client_url:[144,150,154],websocket_clos:340,websocketcli:340,websocketclientfactori:323,websocketclientprotocol:323,websocketserverfactori:329,websocketserverprotocol:340,weed:[0,173],week:[100,112,210,381,389],weeklylogfil:381,weigh:[104,343],weight:[68,82,84,120,145,225,240,279,280,361,440],weird:[30,107,122,125,388],welcom:[25,53,63,76,83,89,105,118,131,148,152],well:[0,7,8,9,11,12,13,17,18,22,26,27,28,29,30,31,36,40,43,44,48,50,53,55,56,57,61,62,67,68,69,72,75,76,77,79,80,82,83,84,86,87,89,90,91,95,96,98,99,100,101,103,105,106,110,113,114,115,116,117,119,121,122,123,125,128,129,133,135,136,140,141,145,151,153,155,157,160,169,173,174,175,180,185,190,193,194,201,204,214,215,216,222,229,237,240,241,251,252,256,257,258,263,267,279,282,294,302,306,308,312,321,323,324,330,347,355,360,361,365,369,372,375,376,384,388,396,403],went:[8,11,98,116,125,160,161,303,307],weonewaymaplink:[82,280],were:[3,8,13,14,18,20,22,27,29,40,41,43,48,51,54,66,68,78,82,83,84,87,96,99,101,104,105,106,110,112,113,114,115,116,122,129,138,146,156,166,172,173,174,185,194,239,252,279,280,294,298,359,362,366,375,385,388,391,392],weren:100,werewolf:91,werewolv:110,werkzeug:388,west:[80,81,82,91,96,108,180,269,279,280],west_east:81,west_exit:269,western:81,westward:269,wet:122,wether:[201,368],wevennia:76,wflame:257,wflushmem:190,wfull:257,wguild:185,what:[0,3,5,6,8,9,10,11,12,14,15,18,19,20,22,27,29,30,31,32,34,36,40,41,43,44,47,48,49,52,53,54,55,57,59,61,64,66,67,68,69,71,73,74,75,76,78,79,80,81,82,84,87,88,89,90,91,93,95,96,97,98,99,100,101,103,105,107,108,110,111,113,114,115,119,120,121,124,125,126,127,128,129,130,132,133,134,135,137,138,139,140,141,142,143,144,145,148,150,152,154,155,157,161,166,171,173,174,175,177,180,191,194,207,214,216,217,221,230,238,239,241,244,249,251,256,257,267,269,279,280,281,282,284,286,290,294,297,298,299,312,314,317,324,336,341,356,358,360,362,363,365,366,372,382,383,388,389,410,416,418,419,427,436,437,440],whatev:[8,11,12,13,15,19,22,27,29,36,61,76,79,81,82,87,90,97,99,104,106,115,116,120,121,123,129,140,141,142,145,150,156,160,166,167,174,180,207,214,223,257,262,267,268,294,299,302,303,323,332,335,340,353,360,373,382,436],wheat:207,wheel:[47,98,148,153],whelp:[187,270],when:[0,1,2,3,6,7,8,9,11,12,13,14,15,16,17,18,19,20,22,25,26,27,28,29,30,31,32,33,35,36,38,40,41,43,44,45,46,48,50,51,52,53,54,55,57,59,61,62,63,64,66,67,68,69,71,74,75,76,77,79,80,81,82,83,84,87,89,90,93,94,95,96,97,98,99,100,101,104,105,106,107,108,110,111,112,113,114,115,116,117,118,119,121,122,123,124,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,142,143,144,145,146,148,149,150,153,154,155,156,157,160,161,163,166,167,169,171,173,174,175,177,179,180,185,186,187,188,189,190,192,194,195,196,199,200,201,202,203,204,207,208,210,211,212,216,217,219,222,223,224,225,230,231,233,234,237,238,239,240,241,247,249,251,252,254,255,256,257,258,260,263,264,266,267,268,269,270,271,278,279,280,281,285,286,290,293,294,296,298,299,302,303,305,306,307,309,312,314,318,319,321,322,323,324,325,326,327,328,330,332,333,334,335,336,337,340,341,343,344,350,351,352,353,354,355,360,362,363,365,366,368,369,370,371,372,373,374,379,380,381,383,388,400,416,418,427,431,433,438],when_stop:312,whenev:[7,9,13,18,22,31,32,33,35,40,41,45,54,62,69,76,79,81,87,91,113,125,134,154,155,156,166,174,194,219,267,268,269,294,303,305,314,331,351,352,353],where:[0,2,3,4,5,8,11,13,14,15,18,20,22,26,27,28,29,30,32,34,38,40,41,43,44,48,50,51,53,54,55,58,59,61,63,64,66,67,68,69,72,74,75,76,78,79,80,81,82,84,87,90,91,93,95,97,98,99,100,101,105,106,107,108,112,113,114,115,116,118,119,120,122,124,125,126,127,129,131,133,134,135,137,140,141,145,153,154,156,157,159,160,172,173,178,180,186,187,189,191,194,195,199,203,208,211,216,234,240,241,245,250,251,256,268,269,271,279,280,281,282,287,289,290,294,298,299,303,312,314,317,321,344,349,353,360,362,365,366,370,372,373,374,375,382,383,388,403,410,438,440],wherea:[0,3,5,6,9,13,14,20,22,32,40,44,48,55,57,59,61,66,69,82,90,97,103,105,115,128,157,207,240,280,307,341,360,379],whereabout:119,wherebi:257,wherev:[8,13,81,87,117,148,150,156,202,244,256,280],whether:[27,55,74,79,86,95,100,101,114,137,166,167,174,180,185,187,194,223,252,254,255,256,257,258,294,307,323,340,355,360,361,365,382,384,388,391],whewiu:75,which:[0,2,3,4,5,6,7,8,11,13,14,15,16,18,19,20,22,24,27,28,29,30,31,32,34,35,36,38,40,41,43,44,45,46,47,48,49,51,52,54,55,57,59,61,62,64,66,67,68,69,72,73,74,75,76,78,79,80,81,82,83,84,87,89,91,92,93,94,95,96,97,98,99,100,101,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,119,120,121,122,123,125,126,128,129,131,133,134,135,136,137,138,139,140,141,145,146,148,149,150,151,152,154,156,157,160,161,166,167,171,173,174,175,177,178,180,186,187,188,190,191,194,195,196,199,201,202,203,204,205,207,208,210,214,216,221,222,223,225,233,234,237,241,244,245,247,249,251,252,254,255,256,257,258,263,267,268,269,270,271,279,280,281,282,286,290,293,294,298,299,302,303,305,307,309,311,312,316,317,324,330,332,340,341,343,344,351,352,353,355,358,360,361,362,363,365,366,368,369,372,373,374,375,376,379,381,382,384,385,386,388,391,396,403,410,413,416,418,419,420,427,433,436,438],whichev:[19,120,123,154,157,269],whilst:81,whimper:119,whisk:219,whisp:240,whisper:[77,79,107,186,214,216,233,240,241,294],white:[31,59,138,365,388],whitelist:31,whitenois:251,whitespac:[15,19,22,99,103,107,110,118,125,129,188,237,241,365,366,374,388],who:[13,18,27,29,30,32,35,38,40,41,48,49,54,55,59,63,79,80,86,89,90,97,99,110,114,115,116,119,120,121,123,125,126,128,129,137,139,140,157,167,175,177,180,185,194,201,214,216,223,230,240,241,254,255,256,257,258,268,284,286,290,294,299,362,370,372,375,408],whoever:140,whole:[35,46,56,71,80,81,82,86,89,98,107,120,122,125,129,150,173,180,190,214,258,374,418],wholist:[18,194],whome:180,whomev:[126,137,263],whoopi:125,whose:[29,48,67,78,110,112,113,166,175,191,230,241,252,254,255,256,257,258,317,367,372,375,388],whould:372,why:[13,27,48,55,74,76,79,81,84,86,87,91,95,96,104,106,108,121,123,125,129,138,148,157,160,178,239,254,257,258,280,309,310,372],wick:360,wide:[19,29,34,56,66,82,91,95,99,106,115,126,150,178,256,257,271,371,374,388],widen:[55,125],wider:[55,91,95,178,374],widest:388,widget:[384,395,396,397,399,400,401,403,410,427],width:[17,19,22,29,30,31,40,56,80,81,82,91,163,175,279,282,317,332,351,365,370,371,373,374,375,388],wield:[40,104,121,127,255],wifi:[154,157],wiki:[22,48,63,68,75,81,83,86,87,99,102,128,143,202,340,439,440],wiki_account_handl:89,wiki_account_signup_allow:89,wiki_can:89,wiki_can_admin:89,wiki_can_assign:89,wiki_can_assign_own:89,wiki_can_change_permiss:89,wiki_can_delet:89,wiki_can_moder:89,wiki_can_read:89,wiki_can_writ:89,wikiconfig:89,wikipedia:[8,11,16,69,86,87,128,340],wil:18,wild:[11,53,68,82,110,120,138,281,282],wildcard:[35,55,82,98,178,180,279,281,282,388],wildcard_to_regexp:388,wilder:[163,164,197],wildernessexit:271,wildernessmap:271,wildernessmapprovid:271,wildernessroom:271,wildernessscript:271,wildli:240,will_suppress_ga:334,will_transform:110,will_ttyp:339,willing:[99,120,123,143],win10:148,win7:148,win8:148,win:[75,106,128,146,214],wind:[119,139],winder:122,windmil:207,window:[0,5,6,7,9,11,20,28,36,44,51,52,64,67,80,82,84,87,89,91,96,108,115,118,121,145,152,160,161,175,187,216,312,328,351,355,373,388],windowid:351,windows10:148,wine:[117,119],wingd:81,winner:77,winpti:75,winter:222,wintertim:121,wintext:126,wip:[84,439],wipe:[9,14,18,75,81,107,115,145,173,180,190,256],wire:[19,61,64,67,69,87,150,154,189,309,321,322,353,365],wis:99,wisdom:5,wise:[0,11,13,14,15,16,32,72,99,113,121,135],wiser:[41,108,125],wish:[2,11,22,95,133,136,153,202,258,365,387,427],with_tag:238,withdraw:[128,258],withdrawl:258,within:[0,6,11,13,20,22,27,29,30,47,51,54,75,76,80,82,83,84,87,95,97,99,110,112,115,117,125,128,133,134,135,136,138,141,144,145,146,154,156,166,169,171,180,201,222,225,227,245,281,285,294,299,306,355,360,361,365,375,381,388,427,433,438],withot:280,without:[3,5,6,8,9,11,13,14,15,18,19,20,22,25,26,27,29,34,38,39,40,41,43,45,47,48,50,52,53,55,56,59,61,62,63,66,67,68,71,74,76,78,79,80,82,83,84,87,90,91,93,94,96,98,99,106,107,108,109,110,112,114,115,116,120,121,122,123,125,129,133,135,137,138,140,144,145,148,150,154,156,160,166,167,172,175,177,178,180,185,186,188,189,190,191,194,196,200,201,203,204,207,219,222,227,230,240,241,247,251,252,254,257,258,263,267,269,280,290,294,297,298,299,305,306,321,332,335,336,343,353,354,360,362,365,366,368,369,370,372,373,375,381,384,385,388,420],withstand:32,wiz:99,wizard:[40,122,269,299,310,312],wkei:180,wlocat:180,wlock:180,wmagic:257,wmass:257,wndb_:180,wnn:18,woah:[113,114],woman:[121,122],won:[3,8,12,13,14,16,20,48,49,51,54,55,59,64,66,74,76,79,81,84,89,90,93,98,101,103,105,106,107,110,114,115,120,122,124,126,129,141,142,145,148,156,174,223,239,260,263,277,357,365,384],wonder:[56,75,97,104],wont_suppress_ga:334,wont_ttyp:339,woo:107,wood:[78,122,207,208],wooden:[40,78,207,208],woodenpuppetrecip:78,woosh:90,word:[5,6,11,15,18,19,22,26,29,30,36,63,67,79,80,81,88,100,101,106,107,113,115,118,121,123,133,138,152,172,187,188,192,212,221,233,240,241,324,370,385,388],word_fil:240,word_length_vari:240,wordi:240,work:[0,2,3,4,5,6,7,8,9,12,13,14,15,16,18,19,20,27,29,30,32,33,36,38,40,41,44,46,47,50,52,53,54,56,59,62,64,66,68,71,74,75,76,78,80,81,83,84,87,88,89,90,91,92,93,96,97,98,99,100,103,105,107,108,110,111,112,113,114,115,116,117,118,120,121,123,125,128,129,130,132,133,134,138,139,140,141,144,145,146,148,150,151,152,153,154,157,159,160,171,174,175,177,180,185,186,188,190,194,201,202,203,207,209,214,222,237,238,241,247,252,256,257,258,269,270,271,280,284,286,289,290,294,298,299,312,316,317,329,344,357,359,360,362,366,371,372,373,374,382,388,420,431,432,433,435,437],workaround:[11,148,156],workflow:395,world:[8,11,13,14,15,16,18,19,20,22,27,30,38,40,43,53,54,66,68,69,75,78,80,81,82,86,87,90,95,98,99,100,104,109,113,114,116,118,123,124,126,127,128,129,130,132,134,137,142,143,148,152,154,166,179,180,185,187,191,201,207,210,237,241,251,254,255,256,257,258,268,269,271,279,284,286,302,351,353,365,366,376,440],world_map:81,worm:[80,122],worm_has_map:80,worn:[204,255],worri:[2,8,13,16,27,43,50,59,69,74,95,110,119,125,129,201,216,217],wors:[121,123],worst:120,worth:[5,27,41,48,74,90,93,106,121,122,123,140,143,144,201],worthi:120,worthless:154,would:[2,3,5,7,8,9,13,14,15,16,19,20,22,27,29,30,32,34,36,40,41,44,46,47,48,52,53,54,56,57,59,66,67,72,73,74,75,76,78,79,80,81,82,84,86,87,89,90,91,93,95,96,97,98,99,100,101,103,104,105,106,107,108,110,111,112,113,114,115,116,118,120,121,122,123,125,126,128,129,133,134,135,137,138,140,141,144,148,154,156,166,172,173,174,175,180,189,194,199,201,207,210,216,230,240,251,252,263,270,271,279,280,284,286,290,298,299,324,362,365,366,369,372,383,384,386,388,396,403],wouldn:[30,95,114,138],wound:257,wow:[101,123],wpermiss:180,wprototype_desc:180,wprototype_kei:180,wprototype_lock:180,wprototype_par:180,wprototype_tag:180,wrap:[27,40,41,54,80,94,110,115,117,125,133,204,208,216,223,241,319,359,374,388],wrap_conflictual_object:384,wrapper:[5,19,27,31,44,48,54,66,78,93,166,169,195,196,219,221,247,251,286,287,293,294,302,306,317,319,351,360,362,363,365,374,375,379,380,381,388,398,403],wresid:190,write:[5,10,11,13,15,16,19,20,22,27,30,35,48,54,56,67,68,71,74,76,79,83,84,88,89,91,96,97,99,100,101,106,107,108,110,113,114,115,116,119,121,122,123,125,129,145,148,149,151,152,180,185,187,194,199,200,202,244,245,270,294,325,381,386,436,438,440],writeabl:153,written:[8,16,18,19,40,52,82,84,97,98,99,107,110,112,113,114,115,116,117,140,141,143,147,157,162,187,244,280,366,436],wrong:[0,3,8,103,105,115,121,145,148,161,173,180,190,207,209,241],wrote:[110,113,191],wserver:190,wservic:185,wsgi:[144,357],wsgi_resourc:357,wsgiwebserv:357,wsl:[84,148],wss:[144,154,440],wtypeclass:180,wwhere:294,www:[9,49,68,75,76,84,86,87,95,140,143,144,154,163,190,327,328,334,336,387,391,427],wyou:104,x0c:180,x1b:[365,387],x2x:99,x4x:371,x5x:371,x6x:371,x7x:371,x8x:371,x9x:371,x_r:95,xcode:148,xforward:357,xgettext:63,xgiven:282,xit:[76,202],xml:199,xmlcharrefreplac:365,xp_gain:126,xpo:374,xtag:391,xterm256:[31,51,64,70,103,115,177,205,225,317,332,335,365,440],xterm256_bg:365,xterm256_bg_sub:365,xterm256_fg:365,xterm256_fg_sub:365,xterm256_gbg:365,xterm256_gbg_sub:365,xterm256_gfg:365,xterm256_gfg_sub:365,xterm:[59,115,138],xterms256:59,xval:22,xxx:[3,91,239],xxxx:239,xxxxx1xxxxx:371,xxxxx3xxxxx:371,xxxxxxx2xxxxxxx:371,xxxxxxxxxx3xxxxxxxxxxx:99,xxxxxxxxxx4xxxxxxxxxxx:99,xxxxxxxxxxx:371,xxxxxxxxxxxxxx1xxxxxxxxxxxxxxx:99,xxxxxxxxxxxxxxxxxxxxxx:99,xxxxxxxxxxxxxxxxxxxxxxxxxxxxxx:99,xygrid:[279,280],xymap:[163,164,197,272,273,274,277,280,281,282],xymap_data:[82,279,281],xymap_data_list:[82,279,281],xymap_legend:[82,163,164,197,272,274,277],xyroom:282,xyz:[35,82,273,276,280,281,282],xyz_destin:[82,282],xyz_destination_coord:282,xyz_exit:[82,276,280],xyz_room:[82,276,280],xyzcommand:[82,274,275],xyzexit:[281,282],xyzexit_parent_prototype_overrid:82,xyzexitmanag:282,xyzgrid:[163,164,197,440],xyzgrid_cmdset:273,xyzgridcmdset:[82,273],xyzmanag:282,xyzmap:82,xyzroom:[163,164,197,272,281],xyzroom_parent_prototype_overrid:82,y_r:95,yan:[59,365],yank:26,year:[67,68,86,100,118,122,154,199,210,376,381,388,427],yearli:[100,154],yeast:[78,207],yellow:[11,59,82,138,268],yer:121,yes:[22,27,54,79,95,138,180,190,233,310,370,372,388],yes_act:372,yes_no_question_cmdset:372,yesno:[27,370],yesnoquestioncmdset:372,yet:[2,3,9,11,12,15,25,27,40,44,55,63,66,74,76,79,80,81,82,87,89,91,92,107,110,113,123,125,137,140,141,143,147,148,150,154,160,162,166,185,192,201,212,230,263,280,290,293,306,330,353,357,365,434],yield:[22,32,54,68,145,180,191,245,374,388],yml:[10,156],yogurt:238,you:[1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,22,25,26,27,29,30,31,32,33,34,35,36,38,39,40,41,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,61,62,63,64,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,115,116,117,120,121,123,124,125,126,127,128,129,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,159,160,161,166,174,175,177,180,185,186,187,188,189,190,191,192,194,199,201,202,203,204,205,207,208,210,214,216,217,221,222,223,225,228,229,230,233,234,237,238,239,240,241,244,245,247,248,249,251,252,254,255,256,257,258,260,263,268,269,270,271,273,275,279,280,284,289,290,294,299,304,305,306,307,314,323,324,325,341,343,353,355,357,358,360,362,365,366,368,371,372,374,375,376,384,385,388,391,407,410,412,413,427,436,438,439],you_obj:29,you_replac:214,your:[2,3,5,7,8,10,13,14,15,16,17,18,19,20,25,26,27,29,30,32,34,35,38,40,41,43,44,45,46,47,48,49,50,52,53,54,55,56,59,62,63,64,67,69,71,72,73,74,75,76,77,78,79,80,81,82,83,84,86,87,88,90,91,93,94,96,97,98,99,100,101,102,103,104,105,106,110,111,113,114,115,116,117,118,119,120,121,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,141,142,143,144,145,147,148,149,150,151,152,153,155,159,160,161,163,164,166,169,172,174,175,177,178,180,185,186,187,190,191,192,197,199,201,202,204,205,207,210,211,212,214,216,222,223,225,229,239,240,241,244,245,248,252,254,255,256,257,258,260,263,268,269,270,271,273,274,279,289,290,293,343,362,365,370,372,374,384,385,386,388,389,396,403,413,427,433,436,440],your_act:216,your_email:11,yourchar:115,yourgam:244,yourhostnam:150,yournam:[107,113,114,144],yourpassword:145,yourrepo:7,yourself:[0,3,10,11,12,15,20,27,32,36,48,53,56,57,66,68,72,74,76,77,81,82,83,86,99,101,106,114,115,117,121,122,123,125,126,129,142,145,148,154,180,186,201,214,216,224,241,247,251,257,260,273,372],yoursit:140,yourusernam:11,yourwebsit:140,yousuck:55,yousuckmor:55,youth:223,youtub:11,ypo:374,yrs:210,ythi:59,yum:[11,144,150],yvonn:99,z_destin:282,z_r:95,z_sourc:282,zcoord:[273,277,279,281],zed:143,zero:[19,34,40,108,113,115,117,185,207,241,281,287,294,360,365,375],zip:[157,199],zlib:[153,321,325],zmud:[146,327],zone:[46,79,88,97,102,112,123,143,363,381,440],zoord:281,zope:6,zopeinterfac:148,zuggsoft:327},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","The Inline Function Parser","Help System","Inputfuncs","Locks","MonitorHandler","Msg","Nicks","Objects","Outputfuncs","Permissions","Portal And Server","Spawner and Prototypes","Scripts","Server component","Server Conf","Sessions","Signals","Tags","TickerHandler","Typeclasses","Evennia REST API","The Web Admin","Web Client","Webserver","Game website","Async Process","Banning","Bootstrap & Evennia","Building Permissions","Clickable links","Colors","Core Concepts","Custom Protocols","Guest Logins","Internationalization","Messagepath","Multisession modes","New Models","OOB","Soft Code","Text Encodings","In-text tags parsed by Evennia","Using MUX as a Standard","Web Features","Zones","A voice operated elevator using events","Arxcode installing help","Building menus","Contrib modules","Crafting system contrib","Dialogues in events","Dynamic In Game Map","Static In Game Map","XYZGrid contrib","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","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","Our own commands","Using the game and building stuff","Creating things","Django Database queries","Overview of the Evennia library","Overview of your new Game Dir","Persistent objects and typeclasses","More about Commands","Starting to code Evennia","Python Classes and objects","Searching for things","Starting Tutorial (Part 1)","The Tutorial World","On Planning a Game","Planning the use of some useful contribs","Planning our tutorial game","Where do I begin?","Evennia Starting Tutorial (Part 2)","Making a sittable object","Implementing a game rule system","Evennia Starting Tutorial (Part 3)","Turn based Combat System","Tutorial for basic MUSH like game","Evennia Starting Tutorial (Part 4)","Add a simple new web page","Evennia Starting Tutorial (part 5)","Web Tutorial","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","Making Evennia, HTTPS and WSS (Secure Websockets) play nicely together","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.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.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.crafting","evennia.contrib.crafting.crafting","evennia.contrib.crafting.example_recipes","evennia.contrib.crafting.tests","evennia.contrib.custom_gametime","evennia.contrib.dice","evennia.contrib.email_login","evennia.contrib.evscaperoom","evennia.contrib.evscaperoom.commands","evennia.contrib.evscaperoom.menu","evennia.contrib.evscaperoom.objects","evennia.contrib.evscaperoom.room","evennia.contrib.evscaperoom.scripts","evennia.contrib.evscaperoom.state","evennia.contrib.evscaperoom.tests","evennia.contrib.evscaperoom.utils","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.example_batch_code","evennia.contrib.tutorial_examples.mirror","evennia.contrib.tutorial_examples.red_button","evennia.contrib.tutorial_examples.tests","evennia.contrib.tutorial_world","evennia.contrib.tutorial_world.intro_menu","evennia.contrib.tutorial_world.mob","evennia.contrib.tutorial_world.objects","evennia.contrib.tutorial_world.rooms","evennia.contrib.unixcommand","evennia.contrib.wilderness","evennia.contrib.xyzgrid","evennia.contrib.xyzgrid.commands","evennia.contrib.xyzgrid.example","evennia.contrib.xyzgrid.launchcmd","evennia.contrib.xyzgrid.prototypes","evennia.contrib.xyzgrid.tests","evennia.contrib.xyzgrid.utils","evennia.contrib.xyzgrid.xymap","evennia.contrib.xyzgrid.xymap_legend","evennia.contrib.xyzgrid.xyzgrid","evennia.contrib.xyzgrid.xyzroom","evennia.help","evennia.help.filehelp","evennia.help.manager","evennia.help.models","evennia.help.utils","evennia.locks","evennia.locks.lockfuncs","evennia.locks.lockhandler","evennia.objects","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.manager","evennia.scripts.models","evennia.scripts.monitorhandler","evennia.scripts.scripthandler","evennia.scripts.scripts","evennia.scripts.taskhandler","evennia.scripts.tickerhandler","evennia.server","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.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.funcparser","evennia.utils.gametime","evennia.utils.idmapper","evennia.utils.idmapper.manager","evennia.utils.idmapper.models","evennia.utils.idmapper.tests","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.utils.verb_conjugation","evennia.utils.verb_conjugation.conjugate","evennia.utils.verb_conjugation.tests","evennia.web","evennia.web.admin","evennia.web.admin.accounts","evennia.web.admin.attributes","evennia.web.admin.comms","evennia.web.admin.frontpage","evennia.web.admin.help","evennia.web.admin.objects","evennia.web.admin.scripts","evennia.web.admin.server","evennia.web.admin.tags","evennia.web.admin.urls","evennia.web.admin.utils","evennia.web.api","evennia.web.api.filters","evennia.web.api.permissions","evennia.web.api.root","evennia.web.api.serializers","evennia.web.api.tests","evennia.web.api.urls","evennia.web.api.views","evennia.web.templatetags","evennia.web.templatetags.addclass","evennia.web.urls","evennia.web.utils","evennia.web.utils.adminsite","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.tests","evennia.web.website.urls","evennia.web.website.views","evennia.web.website.views.accounts","evennia.web.website.views.channels","evennia.web.website.views.characters","evennia.web.website.views.errors","evennia.web.website.views.help","evennia.web.website.views.index","evennia.web.website.views.mixins","evennia.web.website.views.objects","Evennia Documentation","Toc"],titleterms:{"break":110,"case":[74,122],"class":[8,19,22,48,76,112,113,116,122],"default":[29,31,32,51,53,82,91,94,96,113,114,158,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192],"final":[80,153],"function":[3,29,32,36,53,76,85,115,117],"goto":27,"import":[0,4,82,84,111,115,116],"new":[6,8,41,48,53,66,78,89,99,101,112,113,122,131,140,160],"public":[147,159],"return":[27,44,110,115],"static":[81,251],"super":[57,114],Adding:[20,31,46,50,53,61,66,74,75,78,89,91,95,96,108,114,137,140,251],And:[39,88],Are:122,Going:159,One:82,PMs:99,TLS:144,The:[0,5,13,14,15,26,27,29,30,40,41,50,54,56,57,64,72,76,77,79,80,82,93,99,101,102,105,119,120,123,128,129,131,158,160],Use:[0,157],Uses:29,Using:[5,8,10,18,28,29,30,33,40,46,53,66,71,73,80,102,108,154,251],Will:122,Yes:27,__init__:[111,113],_famili:110,_should:122,abl:122,abort:93,about:[4,9,47,48,82,93,114,116,122],absolut:111,abus:55,access:[50,60],access_typ:32,account:[6,12,50,87,99,109,122,165,166,167,168,169,177,395,431],across:125,action:122,activ:[98,122,140],actor_stance_cal:29,actual:[22,48],add:[53,89,91,131,145],add_choic:76,addclass:415,adding:8,addit:[75,95,96,156],address:91,admin:[6,50,72,87,178,394,395,396,397,398,399,400,401,402,403,404,405],administr:[18,120,122],adminsit:418,advanc:[1,35,85,93,114,145,161],aggress:134,ainnev:77,alia:6,alias:[46,117],all:[91,101,113,122,150],allow:[18,122],alpha:120,also:122,altern:[7,75],amount:122,amp:321,amp_client:309,amp_serv:322,analyz:5,android:153,ani:[14,86],annot:110,anoth:[41,84,114],ansi:[19,59,138,365],apach:144,api:[4,49,51,84,85,111,406,407,408,409,410,411,412,413],app:[101,140],appear:122,arbitrari:27,area:[81,129],arg:106,arg_regex:22,argument:[27,106,113,115],arm:90,around:108,arx:75,arxcod:[75,77],ascii:19,ask:[22,27],asset:123,assign:[22,57],assort:[15,20,22,27,46,54,61,135],async:54,asynchron:54,at_object_cr:113,attach:[7,41,45],attack:[122,129],attribut:[6,13,50,87,113,117,360,396],attributehandl:13,audit:[77,243,244,245,246],auto:30,automat:91,avail:[25,45],awai:1,aws_s3_cdn:199,awsstorag:[198,199,200],backend:419,ban:55,bank:122,bar:77,barter:[77,121,122,201],base:[40,82,91,122,128],basic:[8,14,15,52,86,89,129,133,151],batch:[14,15,16,366],batchcod:14,batchprocess:179,batchprocessor:366,befor:0,begin:123,behavior:18,best:106,beta:120,between:[14,27,48],block:[14,82,84,93],blockquot:84,blurb:53,board:122,bodyfunct:260,bold:84,boot:55,bootstrap:[17,56],border:17,bot:167,branch:[11,27],brief:101,briefli:67,broken:122,bug:[6,84],build:[50,57,76,77,80,81,84,90,99,105,108,120,122,180],builder:[77,122],building_menu:[76,202],built:122,bulletin:122,busi:105,button:[17,108],calendar:100,call:[22,113],callabl:29,callback:[51,74,79],callbackhandl:227,caller:27,can:[13,76,86,116,117,122],cannot:122,capabl:122,capcha:140,card:17,care:157,carri:122,caveat:[14,15,48,59,153],certain:110,certif:150,chair:[122,125],chang:[6,9,11,50,53,63,68,74,84,91,99,113,122,133,157],channel:[18,87,91,99,122,432],charact:[18,36,50,77,79,87,91,99,104,113,120,121,122,125,126,129,140,141,146,433],chargen:[77,129,203],chat:18,cheat:3,check:[13,32],checker:0,checkpoint:140,children:116,choic:76,choos:145,clean:75,clickabl:58,client:[51,64,67,72,118,146,154,314],client_opt:31,clone:[11,75],cloth:[77,121,204],cloud9:154,cmdhandler:171,cmdparser:172,cmdset:[107,114,173],cmdset_account:181,cmdset_charact:182,cmdset_sess:183,cmdset_unloggedin:184,cmdsethandl:174,code:[0,1,3,9,11,14,18,19,26,34,35,41,68,76,84,91,105,107,115,120,122,126,144,207,366],coin:122,collabor:98,color:[17,19,53,59,77,91,103,138],color_markup:205,colour:59,combat:[128,129],comfort:156,comm:[185,193,194,195,196,397],command:[3,6,8,15,20,21,22,24,25,30,41,67,76,85,91,92,93,94,96,99,100,103,105,106,107,112,113,114,115,118,125,128,129,137,151,156,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,214,228,273,366],comment:[80,96,116],commit:11,commom:53,commun:[14,23],complet:32,complex:[76,110],compon:[17,24,42,280],comput:154,concept:[1,60,80,122,128],conclud:[95,129],conclus:[76,81,106,110,113,115,121,122,123,125],condit:91,conf:[43,112],config:[77,85,103,144],configur:[7,11,103,140,144,145,149,150,151,152,155,159],congratul:120,conjug:391,connect:[6,25,147,151,154],connection_wizard:310,contain:[41,156,367],content:91,continu:[2,125],contrib:[8,76,77,78,82,83,121,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],contribut:[83,84,85],control:11,convert:[29,106],cooldown:92,coordin:95,copi:144,core:[24,60,85,87,97],counter:251,cprofil:5,craft:[77,78,122,206,207,208,209],crafter:78,creat:[2,6,12,19,22,36,48,55,66,74,81,85,90,101,102,107,108,109,113,115,122,129,131,137,140,156,368],create_object:113,createnpc:129,creation:123,creatur:156,credit:[113,119],crop:19,current:[3,100],custom:[8,18,27,29,30,32,44,49,50,51,53,54,61,69,72,76,77,78,89,98,100,103,107,159],custom_gametim:210,dai:122,data:[7,13,27,44,52,61],databas:[6,9,24,30,40,66,75,85,110,113],dbref:117,dbserial:369,deal:41,death:122,debug:[3,14,157],debugg:7,decid:122,decor:[27,54],dedent:19,dedic:140,deep:102,deeper:78,defaultobject:6,defeat:122,defin:[11,20,22,27,29,32,41,66,82],definit:32,delai:[19,41,54,93],delimit:91,demo:120,depend:[9,75],deploi:156,deprec:[84,311],desc:[27,251],descer:98,descript:[122,156],design:105,detail:[101,140],detect:122,develop:[1,8,98,143,156,157,161],dialogu:79,dice:[77,99,121,211],dictionari:27,differ:[48,97,122],diku:97,dir:[112,118,159],direct:7,directori:[43,154],disabl:157,discuss:143,displai:[19,80,100,146],dive:102,django:[32,72,87,110,140,161],doc:[0,84],docker:156,docstr:116,document:[71,83,84,439],doe:122,doing:123,don:[14,86,125,156],donat:83,done:119,door:77,down:[82,108,137,161],dummyrunn:[5,343],dummyrunner_set:344,durat:93,dure:161,dynam:[22,27,80],each:[117,122],echo:31,economi:122,edit:[26,76,84,129],editnpc:129,editor:[26,118],elev:74,els:122,email:77,email_login:212,emul:97,encod:[16,69],encrypt:154,enemi:122,enforc:122,engin:123,enjoi:144,enough:[119,122],enter:137,entir:74,entit:24,entiti:122,entri:[30,108],error:[41,96,107,115,161,434],eveditor:[26,370],even:78,evennia:[0,3,4,7,8,9,11,29,40,49,51,56,63,70,73,75,84,86,89,91,97,98,99,106,111,115,122,124,127,130,132,138,143,144,145,147,150,151,153,154,156,158,161,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,388,389,390,391,392,393,394,395,396,397,398,399,400,401,402,403,404,405,406,407,408,409,410,411,412,413,414,415,416,417,418,419,420,421,422,423,424,425,426,427,428,429,430,431,432,433,434,435,436,437,438,439],evennia_launch:312,evenniatest:8,event:[74,79,100],eventfunc:229,everi:94,everyth:76,evform:[99,371],evmenu:[27,91,372],evmor:[28,373],evscaperoom:[77,213,214,215,216,217,218,219,220,221],evtabl:[91,99,374],examin:[3,113],exampl:[3,8,26,27,29,32,41,51,53,68,77,79,82,95,111,126,128,154,274,366],example_batch_cod:261,example_recip:208,except:125,execut:3,exist:[48,122],exit:[22,36,74,77,91,96],expand:[128,137,251],experi:122,explan:76,explor:[0,111],extend:[60,77,82,121],extended_room:222,extern:157,extra:[113,119],fail:122,familiar:[97,98],faq:[91,102],faster:8,featur:[60,72,84,101],feel:97,field:[77,87,110],fieldfil:223,fight:122,figur:107,file:[8,11,14,15,16,30,43,84,158,366],filehelp:284,fill:[19,77],filter:407,find:[1,95,115,117],firewal:157,first:[74,76,79,82,98,113,115],fix:11,flat:[4,53],flexibl:84,flow:[52,122],flower:122,folder:[0,11,75],foreground:161,forget:6,fork:[11,83],form:[17,53,122,140,427],formal:122,format:27,forum:143,framework:143,from:[4,27,30,51,86,89,91,108,115,140,154,156,372],front:[53,133],frontpag:398,full:[76,77,101],funcpars:[29,375],funcparser_cal:29,further:[54,133,144],futur:90,gain:122,game:[0,8,9,11,18,19,30,41,53,77,80,81,86,95,98,99,100,108,112,118,120,122,123,126,129,136,147,154,156,159,160,207],game_index_cli:[313,314,315],gamedir:84,gameplai:119,gametim:[77,100,376],gaug:251,gendersub:[77,224],gener:[17,60,76,77,121,122,129,140,143,186,372],general_context:420,get:[27,88,102,108,110,148,150],get_client_opt:31,get_input:27,get_inputfunc:31,get_valu:31,git:[11,87],github:[84,87],give:[88,122],given:46,global:[85,106,122],global_script:41,glossari:87,gmcp:67,godhood:108,goldenlayout:51,good:116,googl:140,grant:[50,99],grapevin:[149,323],graphic:115,grid:[77,80,82,146],group:110,guest:62,guid:75,had:119,handl:[55,101,122,157,161],handler:[45,85,128],haproxi:150,have:[102,116,118,122,129],head:84,health:77,health_bar:225,hello:115,help:[0,1,30,75,83,88,101,108,187,283,284,285,286,287,399,435],here:[0,86],hidden:122,hide:122,hierarchi:[99,122],hint:[5,41,63,119,144],hit:107,hold:114,hook:48,host:154,hous:108,how:[12,22,36,48,69,88,99,102,122,137,151,156],howto:102,html:[53,131,140],http:[144,150],human:122,idmapp:[377,378,379,380],imag:[156,157],implement:[122,126],improv:[101,122],index:[101,140,147,436],infinit:122,influenc:122,info:[143,161],inform:154,infrastructur:126,ingame_python:[226,227,228,229,230,231,232,233],ingo:64,inherit:[73,116],inherits_from:19,initi:[91,128,145,160],initial_setup:316,inlin:29,input:[22,27,29,67,115],inputfunc:[31,64,67,317],instal:[11,75,82,89,140,144,145,148,150,151,153,154,156,159,160,207],instanc:[22,48,66,116],instruct:67,integr:2,interact:[0,14,15,54,115,148],interfac:157,internation:63,interpret:7,interrupt:82,intro_menu:266,introduct:[0,5,27,75,80,81,86,140],inventori:104,ipython:115,irc:[152,324],issu:146,ital:84,item:120,itself:125,join:18,jumbotron:17,jupyt:0,just:[86,122],kei:[27,40,76,117],keyword:[79,113],kill:[122,161],kind:122,know:[86,157],known:[6,122],languag:[63,77],larg:122,last:91,latest:[9,156],latin:91,launch:[26,27],launchcmd:275,layout:56,learn:[0,86],leav:137,legend:[82,146,280],lesson:[118,124],let:[3,14,101,154],librari:111,licens:142,life:159,lift:55,like:[14,97,122,129],limit:[14,15,122],line:[3,26,90,110,115,118,125],link:[50,58,82,84,143],linux:[2,148,161],list:[3,84,113,114,122],list_nod:27,listen:135,literatur:143,live:161,local:[84,106,154],locat:117,lock:[13,30,32,114,137,288,289,290],lockdown:154,lockfunc:[125,289],lockhandl:290,log:[18,19,75,101,112,115,157,160],logfil:7,logger:381,login:[31,62,77],logo:[53,133],longer:79,look:[30,97,108,122,129],lookup:[85,110],loop:113,loot:122,mac:[148,161],machin:154,magic:6,mai:122,mail:[11,77,234],main:[84,85,117,439],make:[8,11,19,90,98,99,107,108,113,115,122,125,129,137,150],manag:[51,89,168,195,285,292,301,318,361,378],manual:[103,122,147],map:[77,80,81,82,280],mapbuild:235,mapper:80,mariadb:145,markup:[77,365],mass:104,master:[11,99,122],match:[6,114],matter:122,mccp:325,mean:122,mech:90,mechan:122,memplot:345,menu:[19,27,76,77,105,215,296,372],menu_login:236,merg:20,messag:[64,67,74,91],messagepath:64,method:[6,22,41,103,113,115],middlewar:421,migrat:[9,87,89],mind:11,mini:8,minimap:81,mirror:262,mixin:437,mob:[102,122,267],mod_proxi:144,mod_ssl:144,mod_wsgi:144,mode:[14,15,44,65,87,154,161],model:[8,66,85,140,169,196,286,293,302,319,362,379],modif:99,modifi:[53,94,113,144],modul:[40,77,115,126,128,151],monitor:31,monitorhandl:[33,303],more:[0,9,32,56,59,72,78,84,85,93,98,103,114,122],most:0,motiv:123,move:[91,125,137],movement:77,msdp:67,msg:[34,64,103],mssp:326,mud:[118,143],multi:[98,114,115,116,122],multidesc:[77,98,237],multipl:[13,122,125],multisess:[44,65,87],mush:[98,129],must:122,mutabl:[6,13],mux:71,muxcommand:188,mxp:327,mysql:145,name:[6,55,67,113,122],naw:328,ndb:13,need:[74,86,114,118,122],nest:76,network:24,next:[98,148,151,160],nice:150,nick:35,night:122,node:[27,82],non:[13,91,92,147,148],nop:146,note:[8,15,16,20,22,27,30,35,46,52,54,61,84,135,144],notebook:0,npc:[77,102,105,121,122,129,134,135],number:106,numer:122,object:[6,13,19,32,36,41,44,46,50,81,87,91,104,108,109,110,113,114,115,116,117,120,122,125,137,216,268,291,292,293,294,400,438],obtain:140,off:[91,122],offici:143,olc:40,onc:119,one:[95,122],onli:[84,110,122,161],onlin:[11,84,154],oob:67,oop:116,open:105,oper:[54,74],option:[27,76,82,99,106,154,157,161],optionclass:382,optionhandl:383,other:[22,41,43,50,53,115,117,122,143,145,154],our:[68,74,76,101,107,113,115,120,122,137,140],ourselv:113,out:[61,99,107,122],outgo:64,output:[18,244],outputcommand:67,outputfunc:[37,67],outsid:154,overal:126,overload:[48,72,103],overrid:6,overview:[2,66,82,111,112,128,133],own:[12,22,31,36,51,61,107,115,122,154,156,251],page:[53,72,89,101,131,133],parent:[66,98],pars:[70,91,106,114,115],parser:29,part3:102,part:[102,118,124,127,130,132],parti:143,pass:115,patch:83,path:[14,64,112],pathfind:82,paus:[22,74,93],pax:75,pdb:3,penalti:122,percent:251,perman:122,permiss:[32,38,46,57,99,408],perpetu:120,persist:[13,26,92,93,107,113],person:[108,122],physic:122,picklefield:384,pictur:140,pip:[87,89],plai:[122,150],plan:[0,81,120,121,122],player:[98,122],plugin:51,point:0,polici:71,port:[154,157],portal:[39,44,64,320,321,322,323,324,325,326,327,328,329,330,331,332,333,334,335,336,337,338,339,340,341],portalsess:64,portalsessionhandl:[64,330],post:122,postgresql:145,practic:106,prepar:2,prerequisit:153,prevent:91,prioriti:30,prison:122,privileg:[89,122],problem:68,process:[54,60,161],processor:[14,15,16,366],product:[90,156],profil:[5,342,343,344,345,346,347,348,349],program:[3,86],project:[2,7],prompt:[27,94],prop:122,properti:[12,13,18,20,22,27,34,36,44,46,48,82,87,110],protfunc:[40,297],protocol:[61,67],prototyp:[40,82,276,295,296,297,298,299],proxi:[144,154],publicli:11,pudb:3,puppet:87,push:[11,108],put:[11,101,150],puzzl:[77,238],pvp:122,pycharm:7,python:[0,14,77,86,98,112,115,116,143,151],quell:[38,57,114],queri:[48,110,113],queryset:[110,117],quest:122,quick:[2,122,148],quickstart:160,quiet:106,quirk:6,race:122,rais:125,random:77,random_string_gener:239,rate:251,read:[0,54,59,72,133],real:14,reboot:161,recapcha:140,receiv:[61,67],recip:[78,207],red_button:263,refer:[84,91],regist:154,regular:122,rel:[111,117],relat:[77,100,102],releas:[84,120],relev:154,reli:14,reload:[6,91,116,144,161],remark:129,rememb:[4,84,116],remind:101,remot:[11,145,154],remov:[46,91,114],repair:122,repeat:[27,31,41],replac:114,repo:75,report:84,repositori:[0,11,83,84,87],reput:122,request:84,requir:148,reset:[9,161],reshuffl:108,resourc:143,respawn:122,rest:[49,84,125],restart:[144,160],restrict:18,retriev:13,role:[99,122],roleplai:[77,99,122],roller:99,rom:97,room:[36,74,77,80,91,95,99,104,120,121,122,217,269],root:409,router:82,rpg:122,rplanguag:240,rpsystem:241,rss:[155,331],rule:[20,77,122,126,128],run:[3,7,8,22,86,89,153,156,159],runner:8,safe:29,safeti:14,same:[27,79],save:13,schema:9,score:129,screen:25,script:[41,87,137,218,230,300,301,302,303,304,305,306,307,401],scripthandl:304,search:[19,20,46,66,85,95,106,117,385],searching_cal:29,season:122,secret:140,section:439,secur:[77,144,150,157,242,243,244,245,246],see:[6,101,160],select:[77,91],self:106,send:[61,67,94,115],sent:94,separ:[76,122,125],serial:410,server:[24,39,42,43,44,60,63,77,112,129,144,145,154,159,160,245,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,402],serverconf:43,serversess:[64,351],serversessionhandl:64,servic:315,session:[44,64,87,91,99,352],sessionhandl:[44,353],set:[1,7,8,11,20,27,32,43,75,80,89,100,103,113,118,122,129,147,149,152,154,155,157,158],setpow:129,settings_default:358,settings_mixin:346,setup:[2,75,144,145,148,154,159,160],sever:[79,95,106],share:11,sharedmemorymodel:66,sheet:[3,99],shop:105,shortcut:[13,85],should:122,show:[102,129],shut:161,sidebar:84,signal:[45,354],similar:122,simpl:[3,5,8,27,32,41,76,77,93,122,131],simpledoor:247,singl:13,singleton:85,site:[72,87],sitekei:140,sittabl:125,skill:[78,122,123],slow:77,slow_exit:248,snippet:77,soft:68,softcod:[68,98],solut:68,solv:122,some:[95,97,115,121,122],someth:122,somewher:86,sort:122,sourc:[7,30,84],space:[17,113],spawn:[40,98],spawner:[40,299],special:[84,122],spread:83,spuriou:146,sql:[110,145],sqlite3:145,ssh:[67,157,332],ssl:[154,333],stack:122,staff:122,standard:[71,100],start:[0,75,99,102,105,115,118,124,127,130,132,148,156,160,161],stat:136,state:219,statement:107,statu:[122,161],status:122,step:[3,11,75,98,108,120,140,149,151,152,153,155,160],stop:[160,161],storag:[27,41],store:[13,27,40,91,122],string:[32,77,82,106,372],strip:106,structur:84,studi:74,stuff:[86,108,129],style:[17,53],sub:76,subclass:36,subtop:30,succe:122,suit:8,summari:[55,85,107,114,116,117],superus:38,support:[0,67,146],suppress_ga:334,surround:3,swap:48,sword:[114,208],synchron:54,syntax:[0,84,98,161,366],syscommand:189,system:[21,22,30,32,56,77,78,101,102,120,121,122,126,128,129,190],tabl:[19,66,84,91],tag:[46,70,95,117,138,363,403],talk:[77,121],talking_npc:249,taskhandl:306,tb_basic:254,tb_equip:255,tb_item:256,tb_magic:257,tb_rang:258,teamciti:2,tech:120,technic:[30,84,263],teleport:82,telnet:[67,146,154,335],telnet_oob:336,telnet_ssl:337,templat:[2,101,140,372],templatetag:[414,415],tempmsg:34,temporari:27,term:116,termux:153,test:[5,8,86,115,129,191,200,209,220,231,246,264,277,338,348,380,392,411,422,428],test_queri:347,test_resourc:386,test_trait:250,text2html:387,text:[19,27,31,60,69,70,84,115,133],than:122,thei:122,them:122,theori:106,thi:[101,123],thing:[4,84,97,98,109,113,116,117,118,122],third:143,those:122,throttl:355,through:[3,83,156],ticker:[47,87],tickerhandl:[47,307],tie:99,time:[19,22,41,68,100,122],time_format:19,timer:[5,41],timetrac:349,tip:11,titl:[50,53],to_byt:19,to_str:19,toc:440,togeth:[101,150],tool:[19,24,55,143],traceback:0,track:[11,122],train:137,trait:[121,251],transit:82,translat:63,travi:10,treat:14,tree:[77,122,208],tree_select:252,trick:11,troubleshoot:[148,153],ttype:339,tupl:[113,114],turn:[6,91,128],turnbattl:[77,121,253,254,255,256,257,258],tutori:[0,8,74,77,79,90,100,101,102,105,118,119,120,122,124,127,128,129,130,132,133,134,135,136,137,139,141],tutorial_exampl:[259,260,261,262,263,264],tutorial_world:[265,266,267,268,269],tweet:[136,151],twist:87,twitter:151,type:[12,13,36,251],typeclass:[6,48,73,85,87,98,103,107,112,113,117,125,232,251,359,360,361,362,363],under:11,understand:138,ungm:99,unimpl:162,uninstal:119,unit:8,unixcommand:[77,270],unloggedin:192,unmonitor:31,unquel:114,unrepeat:31,updat:[9,11,48,91,113],upgrad:9,upload:157,upstream:[6,11],url:[89,101,131,140,404,412,416,424,429],usag:[14,15,26,49,50,82,145],use:[6,18,47,86,121,122],used:[22,91],useful:[22,121,143],user:[11,22,53,57,63,97,98,101,157],using:[3,8,74,113,117],util:[7,17,19,22,24,29,85,93,143,221,233,278,287,364,365,366,367,368,369,370,371,372,373,374,375,376,377,378,379,380,381,382,383,384,385,386,387,388,389,390,391,392,405,417,418,419,420,421,422],valid:[32,356],validatorfunc:389,valu:[27,40,122],vanilla:122,variabl:3,variant:125,vehicl:[102,137],verb_conjug:[390,391,392],verbatim:84,version:[11,84],versu:54,vhost:144,via:122,view:[18,72,101,131,140,141,413,425,430,431,432,433,434,435,436,437,438],virtualenv:87,voic:74,volum:122,wai:[1,27,82,93,114,115],want:[86,102,122,156],warn:84,weapon:122,weather:[122,139],web:[6,50,51,53,60,67,72,102,112,131,133,140,141,154,157,393,394,395,396,397,398,399,400,401,402,403,404,405,406,407,408,409,410,411,412,413,414,415,416,417,418,419,420,421,422,423,424,425,426,427,428,429,430,431,432,433,434,435,436,437,438],webclient:[52,340,423,424,425],webclient_ajax:341,webclient_gui:51,webpag:53,webserv:[52,157,357],websit:[53,72,89,426,427,428,429,430,431,432,433,434,435,436,437,438],websocket:[144,150],weight:[104,122],werewolf:110,what:[2,13,56,86,102,106,116,117,118,122,123,156],when:[4,47,91,125],where:[86,111,123,148],who:[22,107],wiki:89,wilder:[77,271],willing:86,window:[63,75,148],wizard:147,word:83,work:[11,22,48,82,86,101,106,122,137,156],workaround:146,workflow:1,world:[77,102,108,112,115,119,120,122],write:[8,51,61],wss:150,xterm256:[59,138],xymap:[82,279],xymap_legend:280,xyzexit:82,xyzgrid:[77,82,272,273,274,275,276,277,278,279,280,281,282],xyzroom:[82,282],yield:[27,93],you:[0,86,114,118,119,122],your:[0,1,6,9,11,12,22,31,36,51,57,61,66,68,89,95,107,108,112,122,123,140,154,156,157,251],yourself:[108,120],zcoord:82,zone:73}})
\ No newline at end of file
diff --git a/docs/1.0-dev/toc.html b/docs/1.0-dev/toc.html
index 7ee674551b..7c136c6dbd 100644
--- a/docs/1.0-dev/toc.html
+++ b/docs/1.0-dev/toc.html
@@ -262,11 +262,11 @@
- Home page
- Evennia Github
- Game Index
- - IRC -
- Discord -
- Forums
+
-
+ Discord -
+ Discussions -
+ Dev blog
- - Evennia Dev blog
Versions